]> git.lyx.org Git - lyx.git/blob - lib/doc/de/Math.lyx
Tutorial.lyx:
[lyx.git] / lib / doc / de / Math.lyx
1 #LyX 2.0.0svn created this file. For more info see http://www.lyx.org/
2 \lyxformat 402
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 % Damit die Zeichen ° und · in LyX direkt eingegeben werden können,
36 % siehe Kap. 22.11
37 \DeclareInputText{176}{\ifmmode^\circ\else\textdegree\fi}
38 \DeclareInputText{183}{\ifmmode\cdot\else\textperiodcentered\fi}
39
40 % Linkfläche für Querverweise vergrößern und automatisch benennen,
41 \AtBeginDocument{\renewcommand{\ref}[1]{\mbox{\autoref{#1}}}}
42 \newlength{\abc}
43 \settowidth{\abc}{\space}
44 \addto\extrasngerman{
45  \renewcommand{\equationautorefname}{\hspace{-\abc}}
46  \renewcommand{\sectionautorefname}{Kap.\negthinspace}
47  \renewcommand{\subsectionautorefname}{Kap.\negthinspace}
48  \renewcommand{\subsubsectionautorefname}{Kap.\negthinspace}}
49
50 % Makros damit Pakete nicht doppelt geladen werden.
51 % siehe erste Fußnote in Kap. 9.3
52 \@ifundefined{textcolor}{\usepackage{color}}{}
53
54 % Die Seiten des Inhaltsverzeichnisses werden römisch numeriert,
55 % ein PDF-Lesezeichen für das Inhaltsverzeichnis wird hinzugefügt
56 \pagenumbering{roman}
57 \let\myTOC\tableofcontents
58 \renewcommand{\tableofcontents}{%
59  \vspace{1cm}
60  \pdfbookmark[1]{\contentsname}{}
61  \myTOC
62  \cleardoublepage
63  \pagenumbering{arabic}}
64
65 % Damit die Fußnoten einen zusätzlichen vertikalen Abstand von 1,5 mm haben,
66 \let\myFoot\footnote
67 \renewcommand{\footnote}[1]{\myFoot{#1\vspace{1.5mm}}}
68
69 % provides caption formatting
70 \setkomafont{captionlabel}{\bfseries}
71
72 % benutzt in Kap. 22.6
73 \usepackage[samesize]{cancel}
74
75 % enables calculation of values,
76 \usepackage{calc}
77
78 % für Mehrfachzeilen und -spalten
79 \usepackage{multirow}
80 \usepackage{multicol}
81
82 % benutzt in Kap. 19.4
83 \usepackage{remreset}
84
85 % für das Fourier-Transformationssymbol
86 \usepackage{mathrsfs}
87
88 %Mehrfachzeilen zentriert ausrichten (z.B. in Kap. 13.3)
89 \renewcommand{\multirowsetup}{\centering}
90
91 % Farbdefinition aus Kap. 9.3
92 \definecolor{dunkelgruen}{cmyk}{0.5, 0, 1, 0.5}
93
94 % Operatoren deklarieren (siehe Kap. 10.4 und 15.2)
95 \DeclareMathOperator*{\Raute}{\blacklozenge}
96 \DeclareMathOperator{\sgn}{sgn}
97
98 \newcommand{\leer}{\textvisiblespace}
99
100 % Beispielbefehle aus Kap. 20.1 
101 \newcommand{\gr}{\Longrightarrow}
102 \newcommand{\us}[1]{\underline{#1}}
103 \newcommand{\fb}[3]{\framebox#1#2{$#3$}}
104 \newcommand{\cb}[3][white]{\fcolorbox{#2}{#1}{$#3$}}
105 \newcommand{\fracS}[3][]{\genfrac{}{}{#1}{}{#2}{#3}}
106
107 % Beispielmakro aus Kap. 19.4
108 %\def\tagform@#1{\maketag@@@{|#1|}}
109
110 % Makro aus Kap. 10.2
111 \def\clap#1{\hbox to 0pt{\hss #1\hss}}
112 \def\mathclap {\mathpalette \mathclapinternal}
113 \def\mathclapinternal #1#2{\clap{$\mathsurround =0pt #1{#2}$}}
114
115 % Damit der Index einen anderen Namen erhält.
116 \addto\captionsngerman
117 {\renewcommand{\indexname}
118 {Stichwort- und Befehlsverzeichnis}}
119
120 % ------------------------------------
121 % used to check for needed LaTeX packages
122 \usepackage{ifthen}
123
124 % testen ob das Paket eurosym installiert ist
125 % wird benutzt für das Euro-Symbol
126 \newboolean{eurosym}
127 \IfFileExists{eurosym.sty}
128  {\usepackage[gennarrow]{eurosym}
129   \setboolean{eurosym}{true}}
130  {\setboolean{eurosym}{false}}
131
132 % testen ob Paket braket installiert ist
133 % benötigt für physikalische Vektoren
134 \newboolean{braket}
135 \IfFileExists{braket.sty}
136  {\usepackage{braket}
137   \setboolean{braket}{true}}
138  {\setboolean{braket}{false}}
139
140 % testen ob Paket cancel installiert ist
141 \newboolean{cancel}
142 \IfFileExists{cancel.sty}
143  {\usepackage{cancel}
144   \setboolean{cancel}{true}}
145  {\setboolean{cancel}{false}}
146
147 % testen ob Paket upgreek installiert ist
148 \newboolean{upgreek}
149 \IfFileExists{upgreek.sty}
150  {\usepackage{upgreek}
151   \setboolean{upgreek}{true}}
152  {\setboolean{upgreek}{false}}
153
154 % benötigt für Kommas in Formeln, siehe Kap. 22.3
155 \IfFileExists{icomma.sty}
156  {\usepackage{icomma}}{}
157 \end_preamble
158 \options bibliography=totoc,index=totoc,BCOR7.5mm,titlepage,captions=tableheading
159 \use_default_options false
160 \maintain_unincluded_children false
161 \language ngerman
162 \inputencoding auto
163 \fontencoding global
164 \font_roman default
165 \font_sans default
166 \font_typewriter default
167 \font_default_family default
168 \use_xetex false
169 \font_sc false
170 \font_osf false
171 \font_sf_scale 100
172 \font_tt_scale 100
173
174 \graphics default
175 \default_output_format default
176 \output_sync 0
177 \bibtex_command default
178 \index_command default
179 \paperfontsize 12
180 \spacing single
181 \use_hyperref true
182 \pdf_title "LyXs Mathehandbuch"
183 \pdf_author "LyX Team, Uwe Stöhr"
184 \pdf_subject "LyX-Dokumentation der Mathefunktionen"
185 \pdf_keywords "LyX, Mathed"
186 \pdf_bookmarks true
187 \pdf_bookmarksnumbered true
188 \pdf_bookmarksopen true
189 \pdf_bookmarksopenlevel 1
190 \pdf_breaklinks false
191 \pdf_pdfborder false
192 \pdf_colorlinks true
193 \pdf_backref false
194 \pdf_pdfusetitle false
195 \pdf_quoted_options "linkcolor=black, citecolor=black, urlcolor=blue, filecolor=blue,  pdfpagelayout=OneColumn, pdfnewwindow=true, pdfstartview=XYZ, plainpages=false"
196 \papersize a4paper
197 \use_geometry false
198 \use_amsmath 2
199 \use_esint 1
200 \use_mhchem 1
201 \use_mathdots 1
202 \cite_engine basic
203 \use_bibtopic false
204 \use_indices false
205 \paperorientation portrait
206 \suppress_date false
207 \notefontcolor #0000ff
208 \index Stichwortverzeichnis
209 \shortcut idx
210 \color #008000
211 \end_index
212 \secnumdepth 4
213 \tocdepth 3
214 \paragraph_separation skip
215 \defskip medskip
216 \quotes_language german
217 \papercolumns 1
218 \papersides 2
219 \paperpagestyle plain
220 \bullet 1 0 6 -1
221 \bullet 2 2 35 -1
222 \bullet 3 2 7 -1
223 \tracking_changes false
224 \output_changes false
225 \html_math_output 0
226 \html_be_strict false
227 \end_header
228
229 \begin_body
230
231 \begin_layout Title
232 LyXs detailliertes Mathe Handbuch
233 \end_layout
234
235 \begin_layout Author
236 vom LyX Team
237 \begin_inset Foot
238 status collapsed
239
240 \begin_layout Plain Layout
241 \noindent
242 Für Anmerkungen oder Korrekturen senden sie bitte eine Email an LyXs Dokumentati
243 ons-Liste: 
244 \family typewriter
245
246 \begin_inset CommandInset href
247 LatexCommand href
248 name "lyx-docs@lists.lyx.org"
249 target "lyx-docs@lists.lyx.org?subject=LyXs Mathehandbuch"
250
251 \end_inset
252
253
254 \end_layout
255
256 \end_inset
257
258
259 \begin_inset Note Note
260 status collapsed
261
262 \begin_layout Plain Layout
263 Verfasser: Uwe Stöhr
264 \end_layout
265
266 \end_inset
267
268
269 \begin_inset Newline newline
270 \end_inset
271
272
273 \begin_inset Newline newline
274 \end_inset
275
276
277 \family sans
278 Version 2.0.x
279 \end_layout
280
281 \begin_layout Standard
282 \begin_inset CommandInset toc
283 LatexCommand tableofcontents
284
285 \end_inset
286
287
288 \end_layout
289
290 \begin_layout Standard
291 \begin_inset Note Note
292 status open
293
294 \begin_layout Plain Layout
295 Um diese Datei als PDF, PS oder DVI zu exportieren, sollten die LaTeX-Pakete
296  
297 \series bold
298 braket, cancel, eurosym,
299 \series default
300  
301 \series bold
302 mhchem, multirow
303 \series default
304  und 
305 \series bold
306 was
307 \series default
308  installiert sein.
309  Wenn diese nicht installiert sind, kann das Dokument zwar exportiert werden,
310  die Abschnitte in denen die Pakete benötigt werden, erscheinen dann aber
311  nicht im Ausdruck.
312  Eine Ausnahme ist 
313 \series bold
314 mhchem
315 \series default
316 ; wenn es nicht installiert ist, kann dieses Dokument nicht exportiert werden.
317 \end_layout
318
319 \begin_layout Plain Layout
320 Die neueste PDF-Version dieses Dokuments ist hier zu finden:
321 \begin_inset Newline newline
322 \end_inset
323
324
325 \series bold
326 http://wiki.lyx.org/LyX/DocumentationDevelopment#Math
327 \end_layout
328
329 \end_inset
330
331
332 \end_layout
333
334 \begin_layout Standard
335 \begin_inset Newpage newpage
336 \end_inset
337
338
339 \end_layout
340
341 \begin_layout Section
342 Einleitung
343 \end_layout
344
345 \begin_layout Standard
346 Dieses Dokument ist eine Zusammenstellung und Erläuterung der wichtigsten
347  LaTeX-Befehle für mathematische Zeichen und Konstruktionen.
348  Die Erläuterungen sind speziell auf die Benutzung der Befehle mit LyX zugeschni
349 tten.
350  Das setzt voraus, dass bereits das Kapitel 
351 \family typewriter
352 Mathematische
353 \family default
354  
355 \family typewriter
356 Formeln
357 \family default
358  des Benutzerhandbuchs gelesen worden ist.
359 \end_layout
360
361 \begin_layout Standard
362 Die meisten Zeichen und viele Konstruktionen sind auch über das Menü 
363 \family sans
364 Einfügen
365 \series bold
366 \SpecialChar \menuseparator
367
368 \series default
369 Mathe
370 \family default
371  oder die 
372 \family sans
373 Mathe-Werkzeugleiste
374 \family default
375  aufrufbar.
376  Wer viele Formeln zu schreiben hat, wird jedoch feststellen, dass man mit
377  den LaTeX-Befehlen viel schneller eine Formel setzen kann.
378  Daher wird in diesem Handbuch der Fokus auf Befehle gesetzt wobei entsprechende
379  Werkzeugleistenknöpfe, falls vorhanden, erwähnt werden.
380 \end_layout
381
382 \begin_layout Standard
383 Sofern nicht anders angegeben, sind Befehle nur in der Formel-Umgebung von
384  LyX verfügbar.
385  Um alle Befehle nutzen zu können, muss die Option 
386 \family sans
387 AMS-Mathe-Paket verwenden
388 \family default
389  im Menü 
390 \family sans
391 Dokument\SpecialChar \menuseparator
392 Einstellungen\SpecialChar \menuseparator
393 Mathe Optionen
394 \family default
395  aktiviert sein.
396 \begin_inset Foot
397 status collapsed
398
399 \begin_layout Plain Layout
400 Die 
401 \family sans
402 Option
403 \family default
404  
405 \family sans
406 AMS-Mathe-Paket automatisch verwenden
407 \family default
408  verwendet 
409 \begin_inset ERT
410 status collapsed
411
412 \begin_layout Plain Layout
413
414
415 \backslash
416 AmS 
417 \end_layout
418
419 \end_inset
420
421 -Mathe nur wenn im Dokument mathematische Konstrukte gefunden wurden die
422  LyX unterstützt.
423 \end_layout
424
425 \end_inset
426
427
428 \end_layout
429
430 \begin_layout Standard
431 Es wird in diesem Dokument der Übersichtlichkeit halber auf die Auf\SpecialChar \textcompwordmark{}
432 listung
433  aller 
434 \begin_inset ERT
435 status collapsed
436
437 \begin_layout Plain Layout
438
439
440 \backslash
441 AmS 
442 \end_layout
443
444 \end_inset
445
446 -Mathe Befehle
447 \begin_inset Foot
448 status collapsed
449
450 \begin_layout Plain Layout
451 Eine Liste mit allen 
452 \begin_inset ERT
453 status collapsed
454
455 \begin_layout Plain Layout
456
457
458 \backslash
459 AmS
460 \end_layout
461
462 \end_inset
463
464 -Mathe Befehlen findet sich in der Datei 
465 \family sans
466
467 \begin_inset CommandInset href
468 LatexCommand href
469 name "amsguide.ps"
470 target "ftp://ctan.tug.org/tex-archive/macros/amstex/doc/amsguide.ps"
471
472 \end_inset
473
474
475 \family default
476 , die Teil jeder LaTeX-Standardinstallation ist.
477 \end_layout
478
479 \end_inset
480
481  verzichtet.
482 \end_layout
483
484 \begin_layout Section
485 Allgemeine Hinweise
486 \end_layout
487
488 \begin_layout Standard
489 Um eine in einer Textzeile eingebettete Formel
490 \begin_inset Index idx
491 status collapsed
492
493 \begin_layout Plain Layout
494 Formel ! eingebettete
495 \end_layout
496
497 \end_inset
498
499  zu erstellen, drückt man 
500 \family sans
501 Strg+M
502 \family default
503  oder den Werkzeugleistenknopf 
504 \begin_inset Graphics
505         filename ../../images/math-mode.png
506         scale 85
507
508 \end_inset
509
510 .
511 \begin_inset Newline newline
512 \end_inset
513
514 Um eine abgesetzte Formel
515 \begin_inset Index idx
516 status collapsed
517
518 \begin_layout Plain Layout
519 Formel ! abgesetzte
520 \end_layout
521
522 \end_inset
523
524  zu erstellen, drückt man 
525 \family sans
526 Strg+Shift+M
527 \family default
528 .
529 \end_layout
530
531 \begin_layout Standard
532 Um eine abgesetzte Formel in eine eingebettete umzuwandeln, setzt man den
533  Cursor in die Formel und drückt 
534 \family sans
535 Strg+Shift+M
536 \family default
537  oder benutzt das Menü 
538 \family sans
539 Bearbeiten\SpecialChar \menuseparator
540 Mathe\SpecialChar \menuseparator
541
542 \begin_inset Newline linebreak
543 \end_inset
544
545 Formelart ändern
546 \family default
547 .
548  Auf die selbe Weise lässt sich eine eingebettete in eine abgesetzte Formel
549  umwandeln.
550 \end_layout
551
552 \begin_layout Standard
553 Um Teile einer eingebetteten Formel in der Größe einer abgesetzten darzustellen,
554  gibt man in die Formel den Befehl 
555 \series bold
556
557 \backslash
558 displaystyle
559 \series default
560
561 \begin_inset Index idx
562 status collapsed
563
564 \begin_layout Plain Layout
565 Befehle ! D ! 
566 \backslash
567 displaystyle
568 \end_layout
569
570 \end_inset
571
572  ein.
573  Es erscheint ein neues blaues Kästchen, in das dann der Formelteil eingegeben
574  wird.
575 \end_layout
576
577 \begin_layout Standard
578 In einer Tabelle dürfen nur eingebettete Formeln verwendet werden.
579 \end_layout
580
581 \begin_layout Standard
582 Die 
583 \family sans
584 Mathe-Werkzeugleiste
585 \family default
586  kann über das Menü 
587 \family sans
588 Ansicht\SpecialChar \menuseparator
589 Werkzeugleisten
590 \family default
591  eingeblendet werden.
592  Wenn dort auf 
593 \begin_inset Quotes eld
594 \end_inset
595
596 Mathe
597 \begin_inset Quotes erd
598 \end_inset
599
600  geklickt wird, wird die Werkzeugleiste permanent am unteren Rand eingeblendet;
601  diese Einstellung wird durch ein Häkchen im Menü 
602 \family sans
603 Werkzeugleisten
604 \family default
605  angezeigt.
606  Wenn nun im Menü 
607 \family sans
608 Werkzeugleisten
609 \family default
610  nochmal auf 
611 \begin_inset Quotes eld
612 \end_inset
613
614 Mathe
615 \begin_inset Quotes erd
616 \end_inset
617
618  geklickt wird, wird die Werkzeugleiste nur angezeigt, wenn sich der Cursor
619  in einer Formel befindet; diese Einstellung wird durch die Umbenennung
620  des Menüeintrags von 
621 \begin_inset Quotes eld
622 \end_inset
623
624 Mathe
625 \begin_inset Quotes erd
626 \end_inset
627
628  zu 
629 \begin_inset Quotes eld
630 \end_inset
631
632 Mathe
633 \begin_inset space ~
634 \end_inset
635
636 (automatisch)
637 \begin_inset Quotes erd
638 \end_inset
639
640  angezeigt.
641 \end_layout
642
643 \begin_layout Standard
644 In den TeX-Modus
645 \begin_inset Index idx
646 status collapsed
647
648 \begin_layout Plain Layout
649 T@TeX-Modus
650 \end_layout
651
652 \end_inset
653
654  gelangt man über den Werkzeugleistenknopf 
655 \begin_inset Graphics
656         filename ../../images/ert-insert.png
657         scale 85
658
659 \end_inset
660
661  oder das Menü 
662 \family sans
663 Einfügen\SpecialChar \menuseparator
664 Te
665 \begin_inset ERT
666 status collapsed
667
668 \begin_layout Plain Layout
669
670 {}
671 \end_layout
672
673 \end_inset
674
675 X
676 \begin_inset space ~
677 \end_inset
678
679 Code
680 \family default
681  (Tastenkürzel 
682 \family sans
683 Strg+L
684 \family default
685 ).
686 \begin_inset Note Note
687 status collapsed
688
689 \begin_layout Plain Layout
690 In LyX gibt es drei 
691 \begin_inset Quotes gld
692 \end_inset
693
694 Eigennamen
695 \begin_inset Quotes grd
696 \end_inset
697
698 , die im Ausdruck mit hoch bzw.
699  tief gestellten Großbuchstaben erscheinen: TeX, LaTeX und LyX
700 \end_layout
701
702 \begin_layout Plain Layout
703 Um zu verhindern, dass diese Wörter als Eigennamen erkannt werden, fügt
704  man ein TeX-Klammerpaar ein.
705 \end_layout
706
707 \end_inset
708
709
710 \end_layout
711
712 \begin_layout Standard
713 In den LaTeX-Vorspann
714 \begin_inset Index idx
715 status collapsed
716
717 \begin_layout Plain Layout
718 L@LaTeX-Vorspann
719 \end_layout
720
721 \end_inset
722
723  gelangt man über das Menü 
724 \family sans
725 Dokument\SpecialChar \menuseparator
726 Einstellungen\SpecialChar \menuseparator
727 LaT
728 \begin_inset ERT
729 status collapsed
730
731 \begin_layout Plain Layout
732
733 {}
734 \end_layout
735
736 \end_inset
737
738 eX-Vorspann
739 \family default
740 .
741 \end_layout
742
743 \begin_layout Standard
744 Zur nachträglichen Bearbeitung von Matrizen, Fallunterscheidungen und mehrzeilig
745 en Formeln kann man die Menüs 
746 \family sans
747 Bearbeiten\SpecialChar \menuseparator
748 Mathe
749 \family default
750  und 
751 \family sans
752 Bearbeiten\SpecialChar \menuseparator
753 Zeilen
754 \begin_inset space \thinspace{}
755 \end_inset
756
757 &
758 \begin_inset space \thinspace{}
759 \end_inset
760
761 Spalten
762 \family default
763  oder die 
764 \family sans
765 Tabellen-Werkzeugleiste
766 \family default
767  verwenden.
768  Beim Vertauschen von Zeilen und Spalten mit Hilfe dieses Menüs wird immer
769  die Spalte bzw.
770  Zeile, in der der Cursor steht, mit der rechts daneben stehenden Spalte
771  bzw.
772  darunter liegenden Zeile vertauscht.
773  Befindet sich der Cursor in der letzten Spalte bzw.
774  Zeile, wird mit der links daneben stehenden Spalte bzw.
775  darüber liegenden Zeile vertauscht.
776 \end_layout
777
778 \begin_layout Standard
779 Zum Schreiben von Text in einer Formel
780 \begin_inset Foot
781 status collapsed
782
783 \begin_layout Plain Layout
784 Bei mehrzeiligen Formeln wird der Befehl 
785 \series bold
786
787 \backslash
788 intertext
789 \series default
790  verwendet, siehe 
791 \begin_inset CommandInset ref
792 LatexCommand ref
793 reference "sub:Text-in-mehrzeiligen"
794
795 \end_inset
796
797 .
798 \end_layout
799
800 \end_inset
801
802  verwendet man den 
803 \emph on
804 mathematischen Textmodus
805 \emph default
806
807 \begin_inset Index idx
808 status collapsed
809
810 \begin_layout Plain Layout
811 Text ! in Formeln
812 \end_layout
813
814 \end_inset
815
816
817 \begin_inset Index idx
818 status collapsed
819
820 \begin_layout Plain Layout
821 Mathematischer Textmodus
822 \end_layout
823
824 \end_inset
825
826 , in den man mit dem Tastenkürzel 
827 \family sans
828 Alt+M
829 \begin_inset space ~
830 \end_inset
831
832 M
833 \family default
834  oder durch Eingabe des Befehls 
835 \series bold
836
837 \backslash
838 text
839 \begin_inset Index idx
840 status collapsed
841
842 \begin_layout Plain Layout
843 Befehle ! T ! 
844 \backslash
845 text
846 \end_layout
847
848 \end_inset
849
850
851 \series default
852  gelangt.
853  Der Text erscheint in LyX schwarz und lässt sich dadurch gut vom Rest der
854  Formel unterscheiden.
855  Im fertigen Dokument erscheint mathematischer Text im Gegensatz zu allen
856  anderen Zeichen einer Formel nicht kursiv.
857 \end_layout
858
859 \begin_layout Subsection*
860 Befehlsschema
861 \end_layout
862
863 \begin_layout Standard
864 Die meisten LaTeX-Befehle für mathematische Konstruktionen besitzen folgendes
865  Schema:
866 \end_layout
867
868 \begin_layout Standard
869
870 \series bold
871
872 \backslash
873 Befehlsname[optionales
874 \series default
875  
876 \series bold
877 Argument]{anzugebendes
878 \series default
879  
880 \series bold
881 Argument}
882 \end_layout
883
884 \begin_layout Standard
885 Ein Befehl muss immer mit einem Backslash 
886 \begin_inset Quotes gld
887 \end_inset
888
889
890 \series bold
891
892 \backslash
893
894 \series default
895
896 \begin_inset Quotes grd
897 \end_inset
898
899  beginnen.
900  Möchte man ein optionales Argument nicht angeben, müssen auch die zugehörigen
901  eckigen Klammern weggelassen werden.
902  Die geschweiften Klammern werden in diesem Dokument als TeX-Klammern
903 \begin_inset Index idx
904 status collapsed
905
906 \begin_layout Plain Layout
907 T@TeX-Klammern
908 \end_layout
909
910 \end_inset
911
912  bezeichnet.
913  Hängt man in einer Formel an Befehlsnamen eine linke geschweifte Klammer
914  an, erzeugt LyX automatisch eine TeX-Klammer.
915  Ansonsten werden sie in Formeln mit dem Befehl 
916 \series bold
917
918 \backslash
919 {
920 \series default
921  erzeugt.
922  TeX-Klammern erscheinen in LyX rot, im Gegensatz zu normalen geschweiften
923  Klammern, die blau erscheinen.
924  Im TeX-Modus sind für TeX-Klammern keine Befehle notwendig.
925  TeX-Klammern erscheinen nicht im Ausdruck.
926 \end_layout
927
928 \begin_layout Standard
929 Werden Befehle ohne Argumente, wie z.
930 \begin_inset space \thinspace{}
931 \end_inset
932
933 B.
934  Symbolbefehle, im TeX-Modus eingegeben, muss auf den Befehl 
935 \emph on
936 immer
937 \emph default
938  ein Leerzeichen folgen um ihn zu beenden.
939  Dieses Leerzeichen erscheint nicht im Ausdruck.
940  Soll das Leerzeichen auch im Ausdruck erscheinen, muss auf den Befehl im
941  normalen Text ein geschütztes Leerzeichen folgen.
942 \end_layout
943
944 \begin_layout Standard
945 Ein geschütztes Leerzeichen gibt man mit 
946 \family sans
947 Strg+Leertaste
948 \family default
949  ein.
950 \end_layout
951
952 \begin_layout Subsection*
953 Zeichenerklärung
954 \end_layout
955
956 \begin_layout Itemize
957 Das Symbol
958 \begin_inset Foot
959 status collapsed
960
961 \begin_layout Plain Layout
962 Dieses sichtbare Leerzeichen erhält man über den Befehl 
963 \series bold
964
965 \backslash
966 textvisiblespace
967 \series default
968
969 \begin_inset Index idx
970 status collapsed
971
972 \begin_layout Plain Layout
973 Befehle ! T ! 
974 \backslash
975 textvisiblespace
976 \end_layout
977
978 \end_inset
979
980 , der im TeX-Modus einzugeben ist.
981 \end_layout
982
983 \end_inset
984
985  
986 \begin_inset ERT
987 status collapsed
988
989 \begin_layout Plain Layout
990
991
992 \backslash
993 leer 
994 \end_layout
995
996 \end_inset
997
998
999 \begin_inset space ~
1000 \end_inset
1001
1002 steht für ein einzugebendes Leerzeichen.
1003 \end_layout
1004
1005 \begin_layout Itemize
1006 Ein Pfeil wie z.
1007 \begin_inset space \thinspace{}
1008 \end_inset
1009
1010 B.
1011  
1012 \begin_inset Formula $\to$
1013 \end_inset
1014
1015  steht für den Druck der jeweiligen Pfeiltaste auf der Tastatur.
1016 \end_layout
1017
1018 \begin_layout Subsection*
1019 Verfügbare Einheiten
1020 \end_layout
1021
1022 \begin_layout Standard
1023 \align center
1024 \begin_inset Float table
1025 placement H
1026 wide false
1027 sideways false
1028 status open
1029
1030 \begin_layout Plain Layout
1031 \align center
1032 \begin_inset Caption
1033
1034 \begin_layout Plain Layout
1035 \begin_inset CommandInset label
1036 LatexCommand label
1037 name "tab:Verfügbare-Einheiten"
1038
1039 \end_inset
1040
1041 Verfügbare Einheiten
1042 \end_layout
1043
1044 \end_inset
1045
1046
1047 \end_layout
1048
1049 \begin_layout Plain Layout
1050 \align center
1051 \begin_inset Tabular
1052 <lyxtabular version="3" rows="13" columns="2">
1053 <features tabularvalignment="middle">
1054 <column alignment="center" valignment="top" width="0">
1055 <column alignment="center" valignment="top" width="0">
1056 <row>
1057 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1058 \begin_inset Text
1059
1060 \begin_layout Plain Layout
1061 Einheit
1062 \end_layout
1063
1064 \end_inset
1065 </cell>
1066 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
1067 \begin_inset Text
1068
1069 \begin_layout Plain Layout
1070 Name / Beschreibung
1071 \end_layout
1072
1073 \end_inset
1074 </cell>
1075 </row>
1076 <row>
1077 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1078 \begin_inset Text
1079
1080 \begin_layout Plain Layout
1081 mm
1082 \end_layout
1083
1084 \end_inset
1085 </cell>
1086 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1087 \begin_inset Text
1088
1089 \begin_layout Plain Layout
1090 Millimeter
1091 \end_layout
1092
1093 \end_inset
1094 </cell>
1095 </row>
1096 <row>
1097 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1098 \begin_inset Text
1099
1100 \begin_layout Plain Layout
1101 cm
1102 \end_layout
1103
1104 \end_inset
1105 </cell>
1106 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1107 \begin_inset Text
1108
1109 \begin_layout Plain Layout
1110 Zentimeter
1111 \end_layout
1112
1113 \end_inset
1114 </cell>
1115 </row>
1116 <row>
1117 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1118 \begin_inset Text
1119
1120 \begin_layout Plain Layout
1121 in
1122 \end_layout
1123
1124 \end_inset
1125 </cell>
1126 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1127 \begin_inset Text
1128
1129 \begin_layout Plain Layout
1130 Inch / Zoll (1
1131 \begin_inset space \thinspace{}
1132 \end_inset
1133
1134 in = 2,54
1135 \begin_inset space \thinspace{}
1136 \end_inset
1137
1138 cm)
1139 \end_layout
1140
1141 \end_inset
1142 </cell>
1143 </row>
1144 <row>
1145 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1146 \begin_inset Text
1147
1148 \begin_layout Plain Layout
1149 pt
1150 \end_layout
1151
1152 \end_inset
1153 </cell>
1154 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1155 \begin_inset Text
1156
1157 \begin_layout Plain Layout
1158 Punkt (72,27
1159 \begin_inset space \thinspace{}
1160 \end_inset
1161
1162 pt = 1
1163 \begin_inset space \thinspace{}
1164 \end_inset
1165
1166 in)
1167 \end_layout
1168
1169 \end_inset
1170 </cell>
1171 </row>
1172 <row>
1173 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1174 \begin_inset Text
1175
1176 \begin_layout Plain Layout
1177 pc
1178 \end_layout
1179
1180 \end_inset
1181 </cell>
1182 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1183 \begin_inset Text
1184
1185 \begin_layout Plain Layout
1186 Pica (1
1187 \begin_inset space \thinspace{}
1188 \end_inset
1189
1190 pc = 12
1191 \begin_inset space \thinspace{}
1192 \end_inset
1193
1194 pt)
1195 \end_layout
1196
1197 \end_inset
1198 </cell>
1199 </row>
1200 <row>
1201 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1202 \begin_inset Text
1203
1204 \begin_layout Plain Layout
1205 sp
1206 \end_layout
1207
1208 \end_inset
1209 </cell>
1210 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1211 \begin_inset Text
1212
1213 \begin_layout Plain Layout
1214 scaled point (65536
1215 \begin_inset space \thinspace{}
1216 \end_inset
1217
1218 sp = 1
1219 \begin_inset space \thinspace{}
1220 \end_inset
1221
1222 pt)
1223 \end_layout
1224
1225 \end_inset
1226 </cell>
1227 </row>
1228 <row>
1229 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1230 \begin_inset Text
1231
1232 \begin_layout Plain Layout
1233 bp
1234 \end_layout
1235
1236 \end_inset
1237 </cell>
1238 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1239 \begin_inset Text
1240
1241 \begin_layout Plain Layout
1242 big point (72
1243 \begin_inset space \thinspace{}
1244 \end_inset
1245
1246 bp = 1
1247 \begin_inset space \thinspace{}
1248 \end_inset
1249
1250 in)
1251 \end_layout
1252
1253 \end_inset
1254 </cell>
1255 </row>
1256 <row>
1257 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1258 \begin_inset Text
1259
1260 \begin_layout Plain Layout
1261 dd
1262 \end_layout
1263
1264 \end_inset
1265 </cell>
1266 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1267 \begin_inset Text
1268
1269 \begin_layout Plain Layout
1270 Didot (1
1271 \begin_inset space \thinspace{}
1272 \end_inset
1273
1274 dd 
1275 \begin_inset Formula $\approx$
1276 \end_inset
1277
1278  0,376
1279 \begin_inset space \thinspace{}
1280 \end_inset
1281
1282 mm)
1283 \end_layout
1284
1285 \end_inset
1286 </cell>
1287 </row>
1288 <row>
1289 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1290 \begin_inset Text
1291
1292 \begin_layout Plain Layout
1293 cc
1294 \end_layout
1295
1296 \end_inset
1297 </cell>
1298 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1299 \begin_inset Text
1300
1301 \begin_layout Plain Layout
1302 Cicero (1
1303 \begin_inset space \thinspace{}
1304 \end_inset
1305
1306 cc = 12
1307 \begin_inset space \thinspace{}
1308 \end_inset
1309
1310 dd)
1311 \end_layout
1312
1313 \end_inset
1314 </cell>
1315 </row>
1316 <row>
1317 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1318 \begin_inset Text
1319
1320 \begin_layout Plain Layout
1321 ex
1322 \end_layout
1323
1324 \end_inset
1325 </cell>
1326 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1327 \begin_inset Text
1328
1329 \begin_layout Plain Layout
1330 Höhe des Buchstabens 
1331 \emph on
1332 x
1333 \emph default
1334  in der aktuellen Schrift
1335 \end_layout
1336
1337 \end_inset
1338 </cell>
1339 </row>
1340 <row>
1341 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1342 \begin_inset Text
1343
1344 \begin_layout Plain Layout
1345 em
1346 \end_layout
1347
1348 \end_inset
1349 </cell>
1350 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1351 \begin_inset Text
1352
1353 \begin_layout Plain Layout
1354 Breite des Buchstabens 
1355 \emph on
1356 M
1357 \emph default
1358  in der aktuellen Schrift
1359 \end_layout
1360
1361 \end_inset
1362 </cell>
1363 </row>
1364 <row>
1365 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1366 \begin_inset Text
1367
1368 \begin_layout Plain Layout
1369 mu
1370 \end_layout
1371
1372 \end_inset
1373 </cell>
1374 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
1375 \begin_inset Text
1376
1377 \begin_layout Plain Layout
1378 math unit (1
1379 \begin_inset space \thinspace{}
1380 \end_inset
1381
1382 mu = 
1383 \begin_inset Formula $\nicefrac{1}{18}$
1384 \end_inset
1385
1386
1387 \begin_inset space \thinspace{}
1388 \end_inset
1389
1390 em)
1391 \end_layout
1392
1393 \end_inset
1394 </cell>
1395 </row>
1396 </lyxtabular>
1397
1398 \end_inset
1399
1400
1401 \end_layout
1402
1403 \end_inset
1404
1405
1406 \end_layout
1407
1408 \begin_layout Standard
1409 \begin_inset Newpage newpage
1410 \end_inset
1411
1412
1413 \end_layout
1414
1415 \begin_layout Section
1416 Grundlegende Funktionen
1417 \end_layout
1418
1419 \begin_layout Subsection
1420 Exponenten
1421 \begin_inset Index idx
1422 status collapsed
1423
1424 \begin_layout Plain Layout
1425 Exponenten
1426 \end_layout
1427
1428 \end_inset
1429
1430  und Indizes
1431 \begin_inset Index idx
1432 status collapsed
1433
1434 \begin_layout Plain Layout
1435 Indizes
1436 \end_layout
1437
1438 \end_inset
1439
1440
1441 \begin_inset Index idx
1442 status collapsed
1443
1444 \begin_layout Plain Layout
1445 Hochstellen|see
1446 \begin_inset ERT
1447 status collapsed
1448
1449 \begin_layout Plain Layout
1450
1451 {
1452 \end_layout
1453
1454 \end_inset
1455
1456 Exponenten
1457 \begin_inset ERT
1458 status collapsed
1459
1460 \begin_layout Plain Layout
1461
1462 }
1463 \end_layout
1464
1465 \end_inset
1466
1467
1468 \end_layout
1469
1470 \end_inset
1471
1472
1473 \begin_inset Index idx
1474 status collapsed
1475
1476 \begin_layout Plain Layout
1477 Tiefstellen|see
1478 \begin_inset ERT
1479 status collapsed
1480
1481 \begin_layout Plain Layout
1482
1483 {
1484 \end_layout
1485
1486 \end_inset
1487
1488 Indizes
1489 \begin_inset ERT
1490 status collapsed
1491
1492 \begin_layout Plain Layout
1493
1494 }
1495 \end_layout
1496
1497 \end_inset
1498
1499
1500 \end_layout
1501
1502 \end_inset
1503
1504
1505 \end_layout
1506
1507 \begin_layout Standard
1508 Indizes werden mit dem Unterstrich _ oder mit dem Mathe-Werkzeugleistenknopf
1509  
1510 \begin_inset Graphics
1511         filename ../../images/math-subscript.png
1512         scale 85
1513
1514 \end_inset
1515
1516 , Exponenten mit dem Zirkumflexzeichen ^ oder mit dem Mathe-Werkzeugleistenknopf
1517  
1518 \begin_inset Graphics
1519         filename ../../images/math-superscript.png
1520         scale 85
1521
1522 \end_inset
1523
1524  erzeugt.
1525 \end_layout
1526
1527 \begin_layout Standard
1528 \align center
1529 \begin_inset Tabular
1530 <lyxtabular version="3" rows="4" columns="2">
1531 <features tabularvalignment="middle">
1532 <column alignment="center" valignment="top" width="0pt">
1533 <column alignment="center" valignment="top" width="0pt">
1534 <row>
1535 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1536 \begin_inset Text
1537
1538 \begin_layout Plain Layout
1539 Befehl
1540 \end_layout
1541
1542 \end_inset
1543 </cell>
1544 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
1545 \begin_inset Text
1546
1547 \begin_layout Plain Layout
1548 Ergebnis
1549 \begin_inset Note Note
1550 status collapsed
1551
1552 \begin_layout Plain Layout
1553
1554 \series bold
1555
1556 \backslash
1557 raisebox
1558 \series default
1559  dient nur als Abstandhalter.
1560 \end_layout
1561
1562 \end_inset
1563
1564
1565 \end_layout
1566
1567 \end_inset
1568 </cell>
1569 </row>
1570 <row>
1571 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1572 \begin_inset Text
1573
1574 \begin_layout Plain Layout
1575 B_V
1576 \end_layout
1577
1578 \end_inset
1579 </cell>
1580 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1581 \begin_inset Text
1582
1583 \begin_layout Plain Layout
1584 \begin_inset Formula $B_{V}$
1585 \end_inset
1586
1587
1588 \end_layout
1589
1590 \end_inset
1591 </cell>
1592 </row>
1593 <row>
1594 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1595 \begin_inset Text
1596
1597 \begin_layout Plain Layout
1598 B^V
1599 \end_layout
1600
1601 \end_inset
1602 </cell>
1603 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
1604 \begin_inset Text
1605
1606 \begin_layout Plain Layout
1607 \begin_inset Formula $\raisebox{5mm}{}B^{V}$
1608 \end_inset
1609
1610
1611 \end_layout
1612
1613 \end_inset
1614 </cell>
1615 </row>
1616 <row>
1617 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1618 \begin_inset Text
1619
1620 \begin_layout Plain Layout
1621 B^
1622 \begin_inset ERT
1623 status collapsed
1624
1625 \begin_layout Plain Layout
1626
1627
1628 \backslash
1629 leer 
1630 \end_layout
1631
1632 \end_inset
1633
1634 A
1635 \end_layout
1636
1637 \end_inset
1638 </cell>
1639 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
1640 \begin_inset Text
1641
1642 \begin_layout Plain Layout
1643 \begin_inset Formula $\raisebox{5mm}{}B^{A}$
1644 \end_inset
1645
1646
1647 \end_layout
1648
1649 \end_inset
1650 </cell>
1651 </row>
1652 </lyxtabular>
1653
1654 \end_inset
1655
1656
1657 \end_layout
1658
1659 \begin_layout Standard
1660 Da der Zirkumflex ein Akzent ist, werden Selbstlaute akzentuiert statt hochgeste
1661 llt
1662 \begin_inset Foot
1663 status collapsed
1664
1665 \begin_layout Plain Layout
1666 Je nach Tastatureinstellung werden auch andere Buchstaben akzentuiert.
1667 \end_layout
1668
1669 \end_inset
1670
1671 .
1672  Um in diesem Fall Exponenten zu erzeugen, muss nach dem Zirkumflex ein
1673  Leerzeichen eingegeben werden, siehe letztes Beispiel.
1674 \end_layout
1675
1676 \begin_layout Subsection
1677 Brüche
1678 \begin_inset CommandInset label
1679 LatexCommand label
1680 name "sub:Brüche"
1681
1682 \end_inset
1683
1684
1685 \begin_inset Index idx
1686 status collapsed
1687
1688 \begin_layout Plain Layout
1689 Brüche
1690 \end_layout
1691
1692 \end_inset
1693
1694
1695 \end_layout
1696
1697 \begin_layout Standard
1698 Brüche werden mit dem Befehl 
1699 \series bold
1700
1701 \backslash
1702 frac
1703 \series default
1704
1705 \begin_inset Index idx
1706 status collapsed
1707
1708 \begin_layout Plain Layout
1709 Befehle ! F ! 
1710 \backslash
1711 frac
1712 \end_layout
1713
1714 \end_inset
1715
1716  oder mit dem Mathe-Werkzeugleistenknopf 
1717 \begin_inset Graphics
1718         filename ../../images/math/frac.png
1719         scale 50
1720
1721 \end_inset
1722
1723  erstellt.
1724  Die Zeichengröße wird automatisch angepasst, je nachdem, ob sich der Bruch
1725  in einer eingebetteten oder abgesetzten Formel befindet.
1726  Mit dem Mathe-Werkzeugleistenknopf 
1727 \begin_inset Graphics
1728         filename ../../images/math/frac-square.png
1729         scale 85
1730
1731 \end_inset
1732
1733  können verschieden Bruchtypen gewählt werden.
1734 \end_layout
1735
1736 \begin_layout Standard
1737 Mit dem Befehl 
1738 \series bold
1739
1740 \backslash
1741 dfrac
1742 \series default
1743
1744 \begin_inset Index idx
1745 status collapsed
1746
1747 \begin_layout Plain Layout
1748 Befehle ! D ! 
1749 \backslash
1750 dfrac
1751 \end_layout
1752
1753 \end_inset
1754
1755  kann man einen Bruch erzeugen, der immer in der Größe einer abgesetzten
1756  Formel erscheint.
1757  Mit 
1758 \series bold
1759
1760 \backslash
1761 tfrac
1762 \series default
1763
1764 \begin_inset Index idx
1765 status collapsed
1766
1767 \begin_layout Plain Layout
1768 Befehle ! T ! 
1769 \backslash
1770 tfrac
1771 \end_layout
1772
1773 \end_inset
1774
1775  erscheint der Bruch immer in der Größe einer eingebetteten Formel.
1776  Ein Beispiel:
1777 \end_layout
1778
1779 \begin_layout Standard
1780 Eine Zeile mit dem Bruch 
1781 \begin_inset Formula $\frac{1}{2}$
1782 \end_inset
1783
1784 , der mit dem Befehl 
1785 \series bold
1786
1787 \backslash
1788 frac
1789 \series default
1790  erstellt wurde.
1791 \end_layout
1792
1793 \begin_layout Standard
1794 Eine Zeile mit dem Bruch 
1795 \begin_inset Formula $\dfrac{1}{2}$
1796 \end_inset
1797
1798 , der mit dem Befehl 
1799 \series bold
1800
1801 \backslash
1802 dfrac
1803 \series default
1804  erstellt wurde.
1805 \end_layout
1806
1807 \begin_layout Standard
1808 \align center
1809 \begin_inset Tabular
1810 <lyxtabular version="3" rows="4" columns="2">
1811 <features tabularvalignment="middle">
1812 <column alignment="center" valignment="top" width="0pt">
1813 <column alignment="center" valignment="top" width="0pt">
1814 <row>
1815 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1816 \begin_inset Text
1817
1818 \begin_layout Plain Layout
1819 Befehl
1820 \end_layout
1821
1822 \end_inset
1823 </cell>
1824 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
1825 \begin_inset Text
1826
1827 \begin_layout Plain Layout
1828 Ergebnis
1829 \begin_inset Note Note
1830 status collapsed
1831
1832 \begin_layout Plain Layout
1833
1834 \series bold
1835
1836 \backslash
1837 raisebox
1838 \series default
1839  dient nur als Abstandhalter.
1840 \end_layout
1841
1842 \end_inset
1843
1844
1845 \end_layout
1846
1847 \end_inset
1848 </cell>
1849 </row>
1850 <row>
1851 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1852 \begin_inset Text
1853
1854 \begin_layout Plain Layout
1855
1856 \backslash
1857 frac
1858 \begin_inset ERT
1859 status collapsed
1860
1861 \begin_layout Plain Layout
1862
1863
1864 \backslash
1865 leer 
1866 \end_layout
1867
1868 \end_inset
1869
1870 A
1871 \begin_inset Formula $\downarrow$
1872 \end_inset
1873
1874 B
1875 \end_layout
1876
1877 \end_inset
1878 </cell>
1879 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1880 \begin_inset Text
1881
1882 \begin_layout Plain Layout
1883 \begin_inset Formula $\raisebox{4.5mm}{}\frac{A}{B}\raisebox{-2.5mm}{}$
1884 \end_inset
1885
1886
1887 \end_layout
1888
1889 \end_inset
1890 </cell>
1891 </row>
1892 <row>
1893 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1894 \begin_inset Text
1895
1896 \begin_layout Plain Layout
1897
1898 \backslash
1899 dfrac
1900 \begin_inset ERT
1901 status collapsed
1902
1903 \begin_layout Plain Layout
1904
1905
1906 \backslash
1907 leer 
1908 \end_layout
1909
1910 \end_inset
1911
1912 A
1913 \begin_inset Formula $\downarrow$
1914 \end_inset
1915
1916 B
1917 \end_layout
1918
1919 \end_inset
1920 </cell>
1921 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1922 \begin_inset Text
1923
1924 \begin_layout Plain Layout
1925 \begin_inset Formula $\raisebox{7mm}{}\dfrac{A}{B}\raisebox{-4mm}{}$
1926 \end_inset
1927
1928
1929 \end_layout
1930
1931 \end_inset
1932 </cell>
1933 </row>
1934 <row>
1935 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1936 \begin_inset Text
1937
1938 \begin_layout Plain Layout
1939
1940 \backslash
1941 dfrac
1942 \begin_inset ERT
1943 status collapsed
1944
1945 \begin_layout Plain Layout
1946
1947
1948 \backslash
1949 leer 
1950 \end_layout
1951
1952 \end_inset
1953
1954 e^
1955 \begin_inset ERT
1956 status collapsed
1957
1958 \begin_layout Plain Layout
1959
1960
1961 \backslash
1962 leer 
1963 \end_layout
1964
1965 \end_inset
1966
1967
1968 \backslash
1969 frac
1970 \begin_inset ERT
1971 status collapsed
1972
1973 \begin_layout Plain Layout
1974
1975
1976 \backslash
1977 leer 
1978 \end_layout
1979
1980 \end_inset
1981
1982 1
1983 \begin_inset Formula $\downarrow$
1984 \end_inset
1985
1986 2
1987 \begin_inset Formula $\downarrow\downarrow$
1988 \end_inset
1989
1990 3
1991 \end_layout
1992
1993 \end_inset
1994 </cell>
1995 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
1996 \begin_inset Text
1997
1998 \begin_layout Plain Layout
1999 \begin_inset Formula $\raisebox{8mm}{}\dfrac{e^{\frac{1}{2}}}{3}\raisebox{-4mm}{}$
2000 \end_inset
2001
2002
2003 \end_layout
2004
2005 \end_inset
2006 </cell>
2007 </row>
2008 </lyxtabular>
2009
2010 \end_inset
2011
2012
2013 \end_layout
2014
2015 \begin_layout Standard
2016 \begin_inset VSpace bigskip
2017 \end_inset
2018
2019
2020 \begin_inset Newpage newpage
2021 \end_inset
2022
2023 Für Mehrfachbrüche gibt es den Befehl 
2024 \series bold
2025
2026 \backslash
2027 cfrac
2028 \series default
2029
2030 \begin_inset Index idx
2031 status collapsed
2032
2033 \begin_layout Plain Layout
2034 Befehle ! C ! 
2035 \backslash
2036 cfrac
2037 \end_layout
2038
2039 \end_inset
2040
2041 .
2042  Dazu ein Beispiel:
2043 \begin_inset VSpace -3mm
2044 \end_inset
2045
2046
2047 \end_layout
2048
2049 \begin_layout Standard
2050 \begin_inset Formula \begin{align*}
2051 \textrm{mit \textbf{\textbackslash frac} erstellt} &  & \textrm{mit \textbf{\textbackslash cfrac} erstellt}\\
2052 \frac{A}{B+\frac{C+\frac{E}{F}}{D}} &  & \cfrac{A}{B+\cfrac{C+\cfrac{E}{F}}{D}}
2053 \end{align*}
2054
2055 \end_inset
2056
2057
2058 \end_layout
2059
2060 \begin_layout Standard
2061 Der Befehl für obiges Beispiel lautet:
2062 \end_layout
2063
2064 \begin_layout Standard
2065
2066 \series bold
2067
2068 \backslash
2069 cfrac
2070 \begin_inset ERT
2071 status collapsed
2072
2073 \begin_layout Plain Layout
2074
2075
2076 \backslash
2077 leer 
2078 \end_layout
2079
2080 \end_inset
2081
2082 A
2083 \begin_inset Formula $\downarrow$
2084 \end_inset
2085
2086 B+
2087 \backslash
2088 cfrac
2089 \begin_inset ERT
2090 status collapsed
2091
2092 \begin_layout Plain Layout
2093
2094
2095 \backslash
2096 leer 
2097 \end_layout
2098
2099 \end_inset
2100
2101 C+
2102 \backslash
2103 cfrac
2104 \begin_inset ERT
2105 status collapsed
2106
2107 \begin_layout Plain Layout
2108
2109
2110 \backslash
2111 leer 
2112 \end_layout
2113
2114 \end_inset
2115
2116 E
2117 \begin_inset Formula $\downarrow$
2118 \end_inset
2119
2120 F
2121 \begin_inset Formula $\downarrow$
2122 \end_inset
2123
2124 D
2125 \end_layout
2126
2127 \begin_layout Standard
2128 \begin_inset VSpace medskip
2129 \end_inset
2130
2131
2132 \end_layout
2133
2134 \begin_layout Standard
2135
2136 \series bold
2137
2138 \backslash
2139 cfrac
2140 \series default
2141  bewirkt, dass der Bruch immer in der Größe einer abgesetzten Formel erscheint,
2142  auch wenn er selbst Teil eines Bruches ist.
2143 \end_layout
2144
2145 \begin_layout Standard
2146 Es ist möglich die Ausrichtung des Zählers einzustellen.
2147  Der Befehl 
2148 \series bold
2149
2150 \backslash
2151 cfracleft
2152 \series default
2153  richtet ihn links, der Befehl 
2154 \series bold
2155
2156 \backslash
2157 cfracright
2158 \series default
2159  rechts aus.
2160  
2161 \series bold
2162
2163 \backslash
2164 cfrac
2165 \series default
2166  zentriert den Zähler.
2167  Diese Brüche demonstrieren die verschiedenen Ausrichtungen:
2168 \end_layout
2169
2170 \begin_layout Standard
2171
2172 \series bold
2173 \begin_inset Formula $\cfrac[l]{A}{B+C}$
2174 \end_inset
2175
2176
2177 \begin_inset Formula $\cfrac{A}{B+C}$
2178 \end_inset
2179
2180
2181 \begin_inset Formula $\cfrac[r]{A}{B+C}$
2182 \end_inset
2183
2184
2185 \end_layout
2186
2187 \begin_layout Standard
2188 \begin_inset Note Greyedout
2189 status open
2190
2191 \begin_layout Plain Layout
2192
2193 \series bold
2194 Achtung:
2195 \series default
2196  
2197 \series bold
2198
2199 \backslash
2200 cfracleft
2201 \series default
2202  und
2203 \series bold
2204  
2205 \backslash
2206 cfracright
2207 \series default
2208  sind keine echten LaTeX-Befehle, sondern stellen den Befehl 
2209 \series bold
2210
2211 \backslash
2212 cfrac[Ausrichtung]{Zähler}{Nenner}
2213 \series default
2214  dar.
2215  Daher kann man sie nicht im TeX-Code benutzen.
2216 \end_layout
2217
2218 \end_inset
2219
2220
2221 \end_layout
2222
2223 \begin_layout Standard
2224 \begin_inset VSpace medskip
2225 \end_inset
2226
2227 Oftmals ist es am günstigsten 
2228 \series bold
2229
2230 \backslash
2231 cfrac
2232 \series default
2233  und 
2234 \series bold
2235
2236 \backslash
2237 frac
2238 \series default
2239  zu kombinieren:
2240 \begin_inset Formula \[
2241 \cfrac{A}{B+\cfrac{C+\frac{E}{F}}{D}}\]
2242
2243 \end_inset
2244
2245
2246 \end_layout
2247
2248 \begin_layout Standard
2249 Um Brüche mit schrägem Bruchstrich zu erzeugen, kann der Befehl 
2250 \series bold
2251
2252 \backslash
2253 nicefrac
2254 \series default
2255
2256 \begin_inset Index idx
2257 status collapsed
2258
2259 \begin_layout Plain Layout
2260 Befehle ! N ! 
2261 \backslash
2262 nicefrac
2263 \end_layout
2264
2265 \end_inset
2266
2267
2268 \begin_inset Formula $\nicefrac{5}{31}$
2269 \end_inset
2270
2271  oder 
2272 \series bold
2273
2274 \backslash
2275 unitfrac
2276 \series default
2277
2278 \begin_inset Index idx
2279 status collapsed
2280
2281 \begin_layout Plain Layout
2282 Befehle! U ! 
2283 \backslash
2284 unitfrac
2285 \end_layout
2286
2287 \end_inset
2288
2289
2290 \begin_inset Formula $\unitfrac{5}{31}$
2291 \end_inset
2292
2293  benutzt werden.
2294  Des Weiteren gibt es den Befehl 
2295 \series bold
2296
2297 \backslash
2298 unitfracthree
2299 \series default
2300  mit dem man einen Bruch in Kombination mit einer Zahl setzen kann: 
2301 \begin_inset Formula $\unitfrac[2]{1}{3}$
2302 \end_inset
2303
2304
2305 \end_layout
2306
2307 \begin_layout Standard
2308 \begin_inset Note Greyedout
2309 status open
2310
2311 \begin_layout Plain Layout
2312
2313 \series bold
2314 Achtung:
2315 \series default
2316  
2317 \series bold
2318
2319 \backslash
2320 unitfracthree
2321 \series default
2322  ist kein echter LaTeX-Befehl, sondern der Befehl
2323 \begin_inset Newline newline
2324 \end_inset
2325
2326
2327 \series bold
2328
2329 \backslash
2330 unitfrac[Zahl]{Zähler}{Nenner}
2331 \series default
2332  .
2333  Daher kann man ihn nicht im TeX-Code benutzen.
2334 \end_layout
2335
2336 \end_inset
2337
2338
2339 \end_layout
2340
2341 \begin_layout Standard
2342 Wie man eigene Brüche definiert, um die Bruchstrichdicke zu ändern, ist
2343  in 
2344 \begin_inset CommandInset ref
2345 LatexCommand ref
2346 reference "sub:Selbstdefinierte-Brüche"
2347
2348 \end_inset
2349
2350  erklärt.
2351 \end_layout
2352
2353 \begin_layout Subsection
2354 Wurzeln
2355 \begin_inset Index idx
2356 status collapsed
2357
2358 \begin_layout Plain Layout
2359 Wurzeln
2360 \end_layout
2361
2362 \end_inset
2363
2364
2365 \end_layout
2366
2367 \begin_layout Standard
2368 Quadratwurzeln werden mit 
2369 \series bold
2370
2371 \backslash
2372 sqrt
2373 \series default
2374
2375 \begin_inset Index idx
2376 status collapsed
2377
2378 \begin_layout Plain Layout
2379 Befehle ! S ! 
2380 \backslash
2381 sqrt
2382 \end_layout
2383
2384 \end_inset
2385
2386  oder dem Mathe-Werkzeugleistenknopf 
2387 \begin_inset Graphics
2388         filename ../../images/math/sqrt.png
2389         scale 85
2390
2391 \end_inset
2392
2393  gesetzt, alle anderen Wurzeln mit dem Befehl 
2394 \series bold
2395
2396 \backslash
2397 root
2398 \series default
2399
2400 \begin_inset Index idx
2401 status collapsed
2402
2403 \begin_layout Plain Layout
2404 Befehle ! R ! 
2405 \backslash
2406 root
2407 \end_layout
2408
2409 \end_inset
2410
2411  oder dem Mathe-Werkzeugleistenknopf 
2412 \begin_inset Graphics
2413         filename ../../images/math/root.png
2414         scale 85
2415
2416 \end_inset
2417
2418 .
2419 \end_layout
2420
2421 \begin_layout Standard
2422 \align center
2423 \begin_inset Tabular
2424 <lyxtabular version="3" rows="3" columns="2">
2425 <features tabularvalignment="middle">
2426 <column alignment="center" valignment="top" width="0pt">
2427 <column alignment="center" valignment="top" width="0pt">
2428 <row>
2429 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
2430 \begin_inset Text
2431
2432 \begin_layout Plain Layout
2433 Befehl
2434 \end_layout
2435
2436 \end_inset
2437 </cell>
2438 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2439 \begin_inset Text
2440
2441 \begin_layout Plain Layout
2442 Ergebnis
2443 \begin_inset Note Note
2444 status collapsed
2445
2446 \begin_layout Plain Layout
2447
2448 \series bold
2449
2450 \backslash
2451 raisebox
2452 \series default
2453  dient nur als Abstandhalter.
2454 \end_layout
2455
2456 \end_inset
2457
2458
2459 \end_layout
2460
2461 \end_inset
2462 </cell>
2463 </row>
2464 <row>
2465 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
2466 \begin_inset Text
2467
2468 \begin_layout Plain Layout
2469
2470 \backslash
2471 sqrt
2472 \begin_inset ERT
2473 status collapsed
2474
2475 \begin_layout Plain Layout
2476
2477
2478 \backslash
2479 leer 
2480 \end_layout
2481
2482 \end_inset
2483
2484 A-B
2485 \end_layout
2486
2487 \end_inset
2488 </cell>
2489 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2490 \begin_inset Text
2491
2492 \begin_layout Plain Layout
2493 \begin_inset Formula $\raisebox{4.5mm}{}\sqrt{A-B}$
2494 \end_inset
2495
2496
2497 \end_layout
2498
2499 \end_inset
2500 </cell>
2501 </row>
2502 <row>
2503 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
2504 \begin_inset Text
2505
2506 \begin_layout Plain Layout
2507
2508 \backslash
2509 root
2510 \begin_inset ERT
2511 status collapsed
2512
2513 \begin_layout Plain Layout
2514
2515
2516 \backslash
2517 leer 
2518 \end_layout
2519
2520 \end_inset
2521
2522 3
2523 \begin_inset Formula $\downarrow$
2524 \end_inset
2525
2526 A-B
2527 \end_layout
2528
2529 \end_inset
2530 </cell>
2531 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
2532 \begin_inset Text
2533
2534 \begin_layout Plain Layout
2535 \begin_inset Formula $\raisebox{4.5mm}{}\sqrt[3]{A-B}$
2536 \end_inset
2537
2538
2539 \end_layout
2540
2541 \end_inset
2542 </cell>
2543 </row>
2544 </lyxtabular>
2545
2546 \end_inset
2547
2548
2549 \end_layout
2550
2551 \begin_layout Standard
2552 Eine Quadratwurzel kann man auch mit 
2553 \series bold
2554
2555 \backslash
2556 root
2557 \series default
2558  erstellen, indem man das Feld über der Wurzel frei lässt.
2559 \end_layout
2560
2561 \begin_layout Standard
2562 Bei manchen Indizes ist der Abstand zur Wurzel zu gering, wie bei dieser
2563  Formel: 
2564 \begin_inset Formula $\sqrt[\beta]{B}$
2565 \end_inset
2566
2567
2568 \begin_inset Newline newline
2569 \end_inset
2570
2571 Das 
2572 \begin_inset Formula $\beta$
2573 \end_inset
2574
2575  berührt die Wurzel.
2576  Um dies zu verhindern, verwendet man die Befehle 
2577 \series bold
2578
2579 \backslash
2580 leftroot
2581 \series default
2582
2583 \begin_inset Index idx
2584 status collapsed
2585
2586 \begin_layout Plain Layout
2587 Befehle ! L ! 
2588 \backslash
2589 leftroot
2590 \end_layout
2591
2592 \end_inset
2593
2594  und 
2595 \series bold
2596
2597 \backslash
2598 uproot
2599 \series default
2600
2601 \begin_inset Index idx
2602 status collapsed
2603
2604 \begin_layout Plain Layout
2605 Befehle ! U ! 
2606 \backslash
2607 uproot
2608 \end_layout
2609
2610 \end_inset
2611
2612 , die folgendes Schema besitzen:
2613 \end_layout
2614
2615 \begin_layout Standard
2616
2617 \series bold
2618
2619 \backslash
2620 leftroot{Abstand}
2621 \series default
2622  bzw.
2623  
2624 \series bold
2625
2626 \backslash
2627 uproot{Abstand}
2628 \end_layout
2629
2630 \begin_layout Standard
2631 Abstand ist die Anzahl der Big Points (Einheit bp; 
2632 \begin_inset Formula $\mathrm{72\, bp=1\, inch}$
2633 \end_inset
2634
2635 ), um die der Index nach links bzw.
2636  nach oben verschoben werden soll.
2637  Die Befehle werden in den Index geschrieben.
2638  So ergibt der Befehl
2639 \begin_inset Newline newline
2640 \end_inset
2641
2642
2643 \series bold
2644
2645 \backslash
2646 root
2647 \backslash
2648 leftroot{-1
2649 \begin_inset Formula $\to$
2650 \end_inset
2651
2652
2653 \backslash
2654 uproot{2
2655 \begin_inset Formula $\to$
2656 \end_inset
2657
2658
2659 \backslash
2660 beta
2661 \begin_inset ERT
2662 status collapsed
2663
2664 \begin_layout Plain Layout
2665
2666
2667 \backslash
2668 leer 
2669 \end_layout
2670
2671 \end_inset
2672
2673
2674 \begin_inset Formula $\to$
2675 \end_inset
2676
2677 B
2678 \begin_inset Newline newline
2679 \end_inset
2680
2681
2682 \series default
2683 eine korrekt gesetzte Formel: 
2684 \begin_inset Formula $\sqrt[\leftroot{-1}\uproot{2}\beta]{B}$
2685 \end_inset
2686
2687
2688 \end_layout
2689
2690 \begin_layout Subsection
2691 Binomialkoeffizienten
2692 \begin_inset Index idx
2693 status collapsed
2694
2695 \begin_layout Plain Layout
2696 Binomialkoeffizienten
2697 \end_layout
2698
2699 \end_inset
2700
2701
2702 \end_layout
2703
2704 \begin_layout Standard
2705 Binomialkoeffizienten können mit dem Befehl 
2706 \series bold
2707
2708 \backslash
2709 binom
2710 \series default
2711
2712 \begin_inset Index idx
2713 status collapsed
2714
2715 \begin_layout Plain Layout
2716 Befehle ! B ! 
2717 \backslash
2718 binom
2719 \end_layout
2720
2721 \end_inset
2722
2723  oder über das Untermenü des Mathe-Werkzeugleistenknopfs 
2724 \begin_inset Graphics
2725         filename ../../images/math/frac-square.png
2726         scale 85
2727
2728 \end_inset
2729
2730 eingefügt werden.
2731  Analog zu Brüchen (
2732 \series bold
2733
2734 \backslash
2735 frac
2736 \series default
2737 ) gibt es außer 
2738 \series bold
2739
2740 \backslash
2741 binom
2742 \series default
2743  noch die Befehle 
2744 \series bold
2745
2746 \backslash
2747 dbinom
2748 \series default
2749
2750 \begin_inset Index idx
2751 status collapsed
2752
2753 \begin_layout Plain Layout
2754 Befehle ! D ! 
2755 \backslash
2756 dbinom
2757 \end_layout
2758
2759 \end_inset
2760
2761  und 
2762 \series bold
2763
2764 \backslash
2765 tbinom
2766 \series default
2767
2768 \begin_inset Index idx
2769 status collapsed
2770
2771 \begin_layout Plain Layout
2772 Befehle ! T ! 
2773 \backslash
2774 tbinom
2775 \end_layout
2776
2777 \end_inset
2778
2779 .
2780  Für andere Klammern um Binomialkoeffizienten gibt es die Befehle 
2781 \series bold
2782
2783 \backslash
2784 brace
2785 \series default
2786
2787 \begin_inset Index idx
2788 status collapsed
2789
2790 \begin_layout Plain Layout
2791 Befehle ! B ! 
2792 \backslash
2793 brace
2794 \end_layout
2795
2796 \end_inset
2797
2798  und 
2799 \series bold
2800
2801 \backslash
2802 brack
2803 \series default
2804
2805 \begin_inset Index idx
2806 status collapsed
2807
2808 \begin_layout Plain Layout
2809 Befehle ! B ! 
2810 \backslash
2811 brack
2812 \end_layout
2813
2814 \end_inset
2815
2816 .
2817 \end_layout
2818
2819 \begin_layout Standard
2820 \align center
2821 \begin_inset Tabular
2822 <lyxtabular version="3" rows="6" columns="2">
2823 <features tabularvalignment="middle">
2824 <column alignment="center" valignment="top" width="0pt">
2825 <column alignment="center" valignment="top" width="0pt">
2826 <row>
2827 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2828 \begin_inset Text
2829
2830 \begin_layout Plain Layout
2831 Befehl
2832 \end_layout
2833
2834 \end_inset
2835 </cell>
2836 <cell alignment="center" valignment="top" topline="true" bottomline="true" rightline="true" usebox="none">
2837 \begin_inset Text
2838
2839 \begin_layout Plain Layout
2840 Ergebnis
2841 \begin_inset Note Note
2842 status collapsed
2843
2844 \begin_layout Plain Layout
2845
2846 \series bold
2847
2848 \backslash
2849 raisebox
2850 \series default
2851  dient nur als Abstandhalter.
2852 \end_layout
2853
2854 \end_inset
2855
2856
2857 \end_layout
2858
2859 \end_inset
2860 </cell>
2861 </row>
2862 <row>
2863 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
2864 \begin_inset Text
2865
2866 \begin_layout Plain Layout
2867
2868 \backslash
2869 binom
2870 \begin_inset ERT
2871 status collapsed
2872
2873 \begin_layout Plain Layout
2874
2875
2876 \backslash
2877 leer 
2878 \end_layout
2879
2880 \end_inset
2881
2882 A
2883 \begin_inset Formula $\downarrow$
2884 \end_inset
2885
2886 B
2887 \end_layout
2888
2889 \end_inset
2890 </cell>
2891 <cell alignment="center" valignment="top" bottomline="true" rightline="true" usebox="none">
2892 \begin_inset Text
2893
2894 \begin_layout Plain Layout
2895 \begin_inset Formula $\raisebox{5mm}{}\binom{A}{B}\raisebox{-2.5mm}{}$
2896 \end_inset
2897
2898
2899 \end_layout
2900
2901 \end_inset
2902 </cell>
2903 </row>
2904 <row>
2905 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
2906 \begin_inset Text
2907
2908 \begin_layout Plain Layout
2909
2910 \backslash
2911 dbinom
2912 \begin_inset ERT
2913 status collapsed
2914
2915 \begin_layout Plain Layout
2916
2917
2918 \backslash
2919 leer 
2920 \end_layout
2921
2922 \end_inset
2923
2924 A
2925 \begin_inset Formula $\downarrow$
2926 \end_inset
2927
2928 B
2929 \end_layout
2930
2931 \end_inset
2932 </cell>
2933 <cell alignment="center" valignment="top" bottomline="true" rightline="true" usebox="none">
2934 \begin_inset Text
2935
2936 \begin_layout Plain Layout
2937 \begin_inset Formula $\raisebox{5mm}{}\dbinom{A}{B}\raisebox{-2.5mm}{}$
2938 \end_inset
2939
2940
2941 \end_layout
2942
2943 \end_inset
2944 </cell>
2945 </row>
2946 <row>
2947 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
2948 \begin_inset Text
2949
2950 \begin_layout Plain Layout
2951
2952 \backslash
2953 tbinom
2954 \begin_inset ERT
2955 status collapsed
2956
2957 \begin_layout Plain Layout
2958
2959
2960 \backslash
2961 leer 
2962 \end_layout
2963
2964 \end_inset
2965
2966 A
2967 \begin_inset Formula $\downarrow$
2968 \end_inset
2969
2970 B
2971 \end_layout
2972
2973 \end_inset
2974 </cell>
2975 <cell alignment="center" valignment="top" bottomline="true" rightline="true" usebox="none">
2976 \begin_inset Text
2977
2978 \begin_layout Plain Layout
2979 \begin_inset Formula $\raisebox{5mm}{}\tbinom{A}{B}\raisebox{-2.5mm}{}$
2980 \end_inset
2981
2982
2983 \end_layout
2984
2985 \end_inset
2986 </cell>
2987 </row>
2988 <row>
2989 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2990 \begin_inset Text
2991
2992 \begin_layout Plain Layout
2993
2994 \backslash
2995 brack
2996 \begin_inset ERT
2997 status collapsed
2998
2999 \begin_layout Plain Layout
3000
3001
3002 \backslash
3003 leer 
3004 \end_layout
3005
3006 \end_inset
3007
3008 A
3009 \begin_inset Formula $\downarrow$
3010 \end_inset
3011
3012 B
3013 \end_layout
3014
3015 \end_inset
3016 </cell>
3017 <cell alignment="center" valignment="top" topline="true" bottomline="true" rightline="true" usebox="none">
3018 \begin_inset Text
3019
3020 \begin_layout Plain Layout
3021 \begin_inset Formula $\raisebox{5mm}{}{A \brack B}\raisebox{-2.5mm}{}$
3022 \end_inset
3023
3024
3025 \end_layout
3026
3027 \end_inset
3028 </cell>
3029 </row>
3030 <row>
3031 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
3032 \begin_inset Text
3033
3034 \begin_layout Plain Layout
3035
3036 \backslash
3037 brace
3038 \begin_inset ERT
3039 status collapsed
3040
3041 \begin_layout Plain Layout
3042
3043
3044 \backslash
3045 leer 
3046 \end_layout
3047
3048 \end_inset
3049
3050 A
3051 \begin_inset Formula $\downarrow$
3052 \end_inset
3053
3054 B
3055 \end_layout
3056
3057 \end_inset
3058 </cell>
3059 <cell alignment="center" valignment="top" bottomline="true" rightline="true" usebox="none">
3060 \begin_inset Text
3061
3062 \begin_layout Plain Layout
3063 \begin_inset Formula $\raisebox{5mm}{}{A \brace B}\raisebox{-2.5mm}{}$
3064 \end_inset
3065
3066
3067 \end_layout
3068
3069 \end_inset
3070 </cell>
3071 </row>
3072 </lyxtabular>
3073
3074 \end_inset
3075
3076
3077 \end_layout
3078
3079 \begin_layout Subsection
3080 Fallunterscheidungen
3081 \begin_inset Index idx
3082 status collapsed
3083
3084 \begin_layout Plain Layout
3085 Fallunterscheidungen
3086 \end_layout
3087
3088 \end_inset
3089
3090
3091 \end_layout
3092
3093 \begin_layout Standard
3094 \align center
3095 \begin_inset Tabular
3096 <lyxtabular version="3" rows="3" columns="2">
3097 <features tabularvalignment="middle">
3098 <column alignment="center" valignment="top" width="0pt">
3099 <column alignment="center" valignment="top" width="0pt">
3100 <row>
3101 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
3102 \begin_inset Text
3103
3104 \begin_layout Plain Layout
3105 Befehl
3106 \end_layout
3107
3108 \end_inset
3109 </cell>
3110 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
3111 \begin_inset Text
3112
3113 \begin_layout Plain Layout
3114 Ergebnis
3115 \end_layout
3116
3117 \end_inset
3118 </cell>
3119 </row>
3120 <row>
3121 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3122 \begin_inset Text
3123
3124 \begin_layout Plain Layout
3125
3126 \backslash
3127 cases
3128 \begin_inset ERT
3129 status collapsed
3130
3131 \begin_layout Plain Layout
3132
3133
3134 \backslash
3135 leer 
3136 \end_layout
3137
3138 \end_inset
3139
3140 A
3141 \begin_inset Formula $\to$
3142 \end_inset
3143
3144 B>0
3145 \begin_inset Index idx
3146 status collapsed
3147
3148 \begin_layout Plain Layout
3149 Befehle ! C ! 
3150 \backslash
3151 cases
3152 \end_layout
3153
3154 \end_inset
3155
3156
3157 \end_layout
3158
3159 \end_inset
3160 </cell>
3161 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3162 \begin_inset Text
3163
3164 \begin_layout Plain Layout
3165 \begin_inset Formula $\begin{cases}
3166 A & B>0\end{cases}$
3167 \end_inset
3168
3169
3170 \end_layout
3171
3172 \end_inset
3173 </cell>
3174 </row>
3175 <row>
3176 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
3177 \begin_inset Text
3178
3179 \begin_layout Plain Layout
3180
3181 \backslash
3182 cases
3183 \begin_inset ERT
3184 status collapsed
3185
3186 \begin_layout Plain Layout
3187
3188
3189 \backslash
3190 leer 
3191 \end_layout
3192
3193 \end_inset
3194
3195 Strg+Enter
3196 \end_layout
3197
3198 \end_inset
3199 </cell>
3200 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
3201 \begin_inset Text
3202
3203 \begin_layout Plain Layout
3204 \begin_inset Formula $\begin{cases}
3205 A & \textrm{für }x>0\\
3206 B & \textrm{für }x=0
3207 \end{cases}$
3208 \end_inset
3209
3210
3211 \end_layout
3212
3213 \end_inset
3214 </cell>
3215 </row>
3216 </lyxtabular>
3217
3218 \end_inset
3219
3220
3221 \end_layout
3222
3223 \begin_layout Standard
3224 Nach der Eingabe von 
3225 \series bold
3226
3227 \backslash
3228 cases
3229 \series default
3230  oder der Benutzung des Mathe-Werkzeugleistenknopfs 
3231 \begin_inset Graphics
3232         filename ../../images/math/cases.png
3233         scale 85
3234
3235 \end_inset
3236
3237  können mit 
3238 \family sans
3239 Strg+Enter
3240 \family default
3241  oder dem Tabellen-Werkzeugleistenknopf 
3242 \begin_inset Graphics
3243         filename ../../images/tabular-feature_append-row.png
3244         scale 85
3245
3246 \end_inset
3247
3248  neue Zeilen erstellt werden.
3249 \begin_inset Foot
3250 status collapsed
3251
3252 \begin_layout Plain Layout
3253 Umlaute in Formeln, wie in obiger Tabelle, sind in 
3254 \begin_inset CommandInset ref
3255 LatexCommand ref
3256 reference "sub:Akzente-für-ein"
3257
3258 \end_inset
3259
3260  beschrieben.
3261 \end_layout
3262
3263 \end_inset
3264
3265
3266 \end_layout
3267
3268 \begin_layout Standard
3269 Der Befehl 
3270 \series bold
3271
3272 \backslash
3273 cases
3274 \series default
3275  ist auch über das Menü 
3276 \family sans
3277 Einfügen\SpecialChar \menuseparator
3278 Mathe\SpecialChar \menuseparator
3279 Cases-Umgebung
3280 \family default
3281  verfügbar.
3282 \end_layout
3283
3284 \begin_layout Subsection
3285 Verneinungen
3286 \begin_inset Index idx
3287 status collapsed
3288
3289 \begin_layout Plain Layout
3290 Verneinungen
3291 \end_layout
3292
3293 \end_inset
3294
3295
3296 \end_layout
3297
3298 \begin_layout Standard
3299 Durch die Eingabe von 
3300 \series bold
3301
3302 \backslash
3303 not
3304 \series default
3305
3306 \begin_inset Index idx
3307 status collapsed
3308
3309 \begin_layout Plain Layout
3310 Befehle ! N ! 
3311 \backslash
3312 not
3313 \end_layout
3314
3315 \end_inset
3316
3317  kann jedes beliebige Zeichen durchgestrichen dargestellt werden.
3318  Die Zeichen werden quasi mit einem Schrägstrich akzentuiert.
3319 \end_layout
3320
3321 \begin_layout Standard
3322 \align center
3323 \begin_inset Tabular
3324 <lyxtabular version="3" rows="4" columns="2">
3325 <features tabularvalignment="middle">
3326 <column alignment="center" valignment="top" width="0pt">
3327 <column alignment="center" valignment="top" width="0pt">
3328 <row>
3329 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
3330 \begin_inset Text
3331
3332 \begin_layout Plain Layout
3333 Befehl
3334 \end_layout
3335
3336 \end_inset
3337 </cell>
3338 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
3339 \begin_inset Text
3340
3341 \begin_layout Plain Layout
3342 Ergebnis
3343 \end_layout
3344
3345 \end_inset
3346 </cell>
3347 </row>
3348 <row>
3349 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3350 \begin_inset Text
3351
3352 \begin_layout Plain Layout
3353
3354 \backslash
3355 not=
3356 \end_layout
3357
3358 \end_inset
3359 </cell>
3360 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3361 \begin_inset Text
3362
3363 \begin_layout Plain Layout
3364 \begin_inset Formula $\not=$
3365 \end_inset
3366
3367
3368 \end_layout
3369
3370 \end_inset
3371 </cell>
3372 </row>
3373 <row>
3374 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
3375 \begin_inset Text
3376
3377 \begin_layout Plain Layout
3378
3379 \backslash
3380 not 
3381 \backslash
3382 le
3383 \end_layout
3384
3385 \end_inset
3386 </cell>
3387 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
3388 \begin_inset Text
3389
3390 \begin_layout Plain Layout
3391 \begin_inset Formula $\not\le$
3392 \end_inset
3393
3394
3395 \end_layout
3396
3397 \end_inset
3398 </cell>
3399 </row>
3400 <row>
3401 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
3402 \begin_inset Text
3403
3404 \begin_layout Plain Layout
3405
3406 \backslash
3407 not 
3408 \backslash
3409 parallel
3410 \end_layout
3411
3412 \end_inset
3413 </cell>
3414 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
3415 \begin_inset Text
3416
3417 \begin_layout Plain Layout
3418 \begin_inset Formula $\not\parallel$
3419 \end_inset
3420
3421
3422 \end_layout
3423
3424 \end_inset
3425 </cell>
3426 </row>
3427 </lyxtabular>
3428
3429 \end_inset
3430
3431
3432 \end_layout
3433
3434 \begin_layout Standard
3435 Das letzte Beispiel zeigt, dass nicht alle Verneinungen gut aussehen.
3436  Deswegen gibt es für Einige spezielle Befehle (siehe 
3437 \begin_inset CommandInset ref
3438 LatexCommand ref
3439 reference "sub:Mathematische-Symbole"
3440
3441 \end_inset
3442
3443  und 
3444 \begin_inset CommandInset ref
3445 LatexCommand ref
3446 reference "sec:Relationen"
3447
3448 \end_inset
3449
3450 ).
3451 \end_layout
3452
3453 \begin_layout Subsection
3454 Platzhalter
3455 \begin_inset CommandInset label
3456 LatexCommand label
3457 name "sub:Platzhalter"
3458
3459 \end_inset
3460
3461
3462 \begin_inset Index idx
3463 status collapsed
3464
3465 \begin_layout Plain Layout
3466 Platzhalter
3467 \end_layout
3468
3469 \end_inset
3470
3471
3472 \begin_inset Index idx
3473 status collapsed
3474
3475 \begin_layout Plain Layout
3476 chemische Zeichen ! Isotope
3477 \end_layout
3478
3479 \end_inset
3480
3481
3482 \begin_inset Index idx
3483 status collapsed
3484
3485 \begin_layout Plain Layout
3486 Isotope|see
3487 \begin_inset ERT
3488 status collapsed
3489
3490 \begin_layout Plain Layout
3491
3492 {
3493 \end_layout
3494
3495 \end_inset
3496
3497 chemische Zeichen
3498 \begin_inset ERT
3499 status collapsed
3500
3501 \begin_layout Plain Layout
3502
3503 }
3504 \end_layout
3505
3506 \end_inset
3507
3508
3509 \end_layout
3510
3511 \end_inset
3512
3513
3514 \end_layout
3515
3516 \begin_layout Standard
3517 Möchte man z.
3518 \begin_inset space \thinspace{}
3519 \end_inset
3520
3521 B.
3522  Isotope
3523 \begin_inset Foot
3524 status collapsed
3525
3526 \begin_layout Plain Layout
3527 Wie Isotope und chemische Reaktionen erstellt werden, ist in 
3528 \begin_inset CommandInset ref
3529 LatexCommand ref
3530 reference "sub:Chemische-Symbole-und"
3531
3532 \end_inset
3533
3534  beschrieben.
3535 \end_layout
3536
3537 \end_inset
3538
3539  darstellen, tritt folgendes Problem auf:
3540 \end_layout
3541
3542 \begin_layout Standard
3543 \align center
3544 \begin_inset Tabular
3545 <lyxtabular version="3" rows="2" columns="2">
3546 <features tabularvalignment="middle">
3547 <column alignment="center" valignment="top" width="0pt">
3548 <column alignment="center" valignment="top" width="0pt">
3549 <row>
3550 <cell alignment="center" valignment="top" usebox="none">
3551 \begin_inset Text
3552
3553 \begin_layout Plain Layout
3554 durch Hoch- und Tiefstellen erzeugte Indizes:
3555 \end_layout
3556
3557 \end_inset
3558 </cell>
3559 <cell alignment="center" valignment="top" usebox="none">
3560 \begin_inset Text
3561
3562 \begin_layout Plain Layout
3563 \begin_inset Formula $_{9}^{19}\mathrm{F}\raisebox{-3mm}{}$
3564 \end_inset
3565
3566
3567 \end_layout
3568
3569 \end_inset
3570 </cell>
3571 </row>
3572 <row>
3573 <cell alignment="center" valignment="top" usebox="none">
3574 \begin_inset Text
3575
3576 \begin_layout Plain Layout
3577 korrekte Indizes:
3578 \end_layout
3579
3580 \end_inset
3581 </cell>
3582 <cell alignment="center" valignment="top" usebox="none">
3583 \begin_inset Text
3584
3585 \begin_layout Plain Layout
3586 \begin_inset Formula $_{\phantom{1}9}^{19}\mathrm{F}$
3587 \end_inset
3588
3589
3590 \end_layout
3591
3592 \end_inset
3593 </cell>
3594 </row>
3595 </lyxtabular>
3596
3597 \end_inset
3598
3599
3600 \begin_inset Note Note
3601 status collapsed
3602
3603 \begin_layout Plain Layout
3604
3605 \series bold
3606
3607 \backslash
3608 raisebox
3609 \series default
3610  dient nur
3611 \end_layout
3612
3613 \begin_layout Plain Layout
3614 als Abstandhalter.
3615 \end_layout
3616
3617 \end_inset
3618
3619
3620 \end_layout
3621
3622 \begin_layout Standard
3623 Der kürzere Index wird standardmäßig unter oder über das erste Zeichen des
3624  längeren Index gesetzt.
3625  Um das zu verhindern gibt es den Befehl 
3626 \series bold
3627
3628 \backslash
3629 phantom
3630 \series default
3631
3632 \begin_inset Index idx
3633 status collapsed
3634
3635 \begin_layout Plain Layout
3636 Befehle ! P ! 
3637 \backslash
3638 phantom
3639 \end_layout
3640
3641 \end_inset
3642
3643  oder den Mathe-Werkzeugleistenknopf
3644 \begin_inset space \thinspace{}
3645 \end_inset
3646
3647
3648 \begin_inset Foot
3649 status collapsed
3650
3651 \begin_layout Plain Layout
3652 zu finden im Untermenü des Mathe-Werkzeugleistenknopfs 
3653 \begin_inset Graphics
3654         filename ../../images/math/space.png
3655         scale 85
3656
3657 \end_inset
3658
3659
3660 \end_layout
3661
3662 \end_inset
3663
3664  
3665 \begin_inset Graphics
3666         filename ../../images/math/phantom.png
3667         scale 85
3668
3669 \end_inset
3670
3671 , der ein oder mehrere Phantomzeichen erstellt.
3672  Wenn 
3673 \series bold
3674
3675 \backslash
3676 phantom
3677 \series default
3678  eingegeben wird, erscheint ein kleines blaues Kästchen, dass von zwei roten
3679  Pfeilen überlagert wird.
3680  Die Pfeile geben an, dass die komplette Breite und Höhe des Kästcheninhalts
3681  als Leerraum erstellt wird.
3682  Phantomzeichen sind dementsprechend Platzhalter mit der Größe der angegebenen
3683  Zeichen.
3684 \end_layout
3685
3686 \begin_layout Standard
3687 \align center
3688 \begin_inset Tabular
3689 <lyxtabular version="3" rows="4" columns="2">
3690 <features tabularvalignment="middle">
3691 <column alignment="center" valignment="top" width="0">
3692 <column alignment="center" valignment="top" width="0">
3693 <row>
3694 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
3695 \begin_inset Text
3696
3697 \begin_layout Plain Layout
3698 Befehl
3699 \end_layout
3700
3701 \end_inset
3702 </cell>
3703 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
3704 \begin_inset Text
3705
3706 \begin_layout Plain Layout
3707 Ergebnis
3708 \begin_inset Note Note
3709 status collapsed
3710
3711 \begin_layout Plain Layout
3712
3713 \series bold
3714
3715 \backslash
3716 raisebox
3717 \series default
3718  dient nur als Abstandhalter.
3719 \end_layout
3720
3721 \end_inset
3722
3723
3724 \end_layout
3725
3726 \end_inset
3727 </cell>
3728 </row>
3729 <row>
3730 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3731 \begin_inset Text
3732
3733 \begin_layout Plain Layout
3734 ^19
3735 \begin_inset ERT
3736 status collapsed
3737
3738 \begin_layout Plain Layout
3739
3740
3741 \backslash
3742 leer 
3743 \end_layout
3744
3745 \end_inset
3746
3747 _
3748 \backslash
3749 phantom
3750 \begin_inset ERT
3751 status collapsed
3752
3753 \begin_layout Plain Layout
3754
3755
3756 \backslash
3757 leer 
3758 \end_layout
3759
3760 \end_inset
3761
3762 1
3763 \begin_inset Formula $\to$
3764 \end_inset
3765
3766 9
3767 \begin_inset ERT
3768 status collapsed
3769
3770 \begin_layout Plain Layout
3771
3772
3773 \backslash
3774 leer 
3775 \end_layout
3776
3777 \end_inset
3778
3779 F
3780 \end_layout
3781
3782 \end_inset
3783 </cell>
3784 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3785 \begin_inset Text
3786
3787 \begin_layout Plain Layout
3788 \begin_inset Formula $\raisebox{4.5mm}{}{}_{\phantom{1}9}^{19}\mathrm{F}\raisebox{-2.5mm}{}$
3789 \end_inset
3790
3791
3792 \end_layout
3793
3794 \end_inset
3795 </cell>
3796 </row>
3797 <row>
3798 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
3799 \begin_inset Text
3800
3801 \begin_layout Plain Layout
3802 ^235
3803 \begin_inset ERT
3804 status collapsed
3805
3806 \begin_layout Plain Layout
3807
3808
3809 \backslash
3810 leer 
3811 \end_layout
3812
3813 \end_inset
3814
3815 _
3816 \backslash
3817 phantom
3818 \begin_inset ERT
3819 status collapsed
3820
3821 \begin_layout Plain Layout
3822
3823
3824 \backslash
3825 leer 
3826 \end_layout
3827
3828 \end_inset
3829
3830 23
3831 \begin_inset Formula $\to$
3832 \end_inset
3833
3834 9
3835 \begin_inset ERT
3836 status collapsed
3837
3838 \begin_layout Plain Layout
3839
3840
3841 \backslash
3842 leer 
3843 \end_layout
3844
3845 \end_inset
3846
3847 F
3848 \end_layout
3849
3850 \end_inset
3851 </cell>
3852 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
3853 \begin_inset Text
3854
3855 \begin_layout Plain Layout
3856 \begin_inset Formula $\raisebox{4.5mm}{}{}_{\phantom{23}9}^{235}\mathrm{F}\raisebox{-2.5mm}{}$
3857 \end_inset
3858
3859
3860 \end_layout
3861
3862 \end_inset
3863 </cell>
3864 </row>
3865 <row>
3866 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
3867 \begin_inset Text
3868
3869 \begin_layout Plain Layout
3870
3871 \backslash
3872 Lambda^
3873 \begin_inset ERT
3874 status collapsed
3875
3876 \begin_layout Plain Layout
3877
3878
3879 \backslash
3880 leer 
3881 \end_layout
3882
3883 \end_inset
3884
3885
3886 \backslash
3887 phantom
3888 \begin_inset ERT
3889 status collapsed
3890
3891 \begin_layout Plain Layout
3892
3893
3894 \backslash
3895 leer 
3896 \end_layout
3897
3898 \end_inset
3899
3900 ii
3901 \begin_inset Formula $\to$
3902 \end_inset
3903
3904 t
3905 \begin_inset ERT
3906 status collapsed
3907
3908 \begin_layout Plain Layout
3909
3910
3911 \backslash
3912 leer 
3913 \end_layout
3914
3915 \end_inset
3916
3917 _MMt
3918 \end_layout
3919
3920 \end_inset
3921 </cell>
3922 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
3923 \begin_inset Text
3924
3925 \begin_layout Plain Layout
3926 \begin_inset Formula $\raisebox{4.5mm}{}\Lambda_{MMt}^{\phantom{ii}t}\raisebox{-2.5mm}{}$
3927 \end_inset
3928
3929
3930 \end_layout
3931
3932 \end_inset
3933 </cell>
3934 </row>
3935 </lyxtabular>
3936
3937 \end_inset
3938
3939
3940 \end_layout
3941
3942 \begin_layout Standard
3943 Des Weiteren gibt es noch die Befehle 
3944 \series bold
3945
3946 \backslash
3947 vphantom
3948 \series default
3949
3950 \begin_inset Index idx
3951 status collapsed
3952
3953 \begin_layout Plain Layout
3954 Befehle ! V ! 
3955 \backslash
3956 vphantom
3957 \end_layout
3958
3959 \end_inset
3960
3961  (Werkzeugleistenknopf 
3962 \begin_inset space ~
3963 \end_inset
3964
3965
3966 \begin_inset Graphics
3967         filename ../../images/math/vphantom.png
3968         scale 85
3969
3970 \end_inset
3971
3972 ) und 
3973 \series bold
3974
3975 \backslash
3976 hphantom
3977 \series default
3978
3979 \begin_inset Index idx
3980 status collapsed
3981
3982 \begin_layout Plain Layout
3983 Befehle ! H ! 
3984 \backslash
3985 hphantom
3986 \end_layout
3987
3988 \end_inset
3989
3990  (Werkzeugleistenknopf 
3991 \begin_inset space ~
3992 \end_inset
3993
3994
3995 \begin_inset Graphics
3996         filename ../../images/math/hphantom.png
3997         scale 85
3998
3999 \end_inset
4000
4001 ).
4002  
4003 \series bold
4004
4005 \backslash
4006 hphantom
4007 \series default
4008  erzeugt nur Platz für die maximale Höhe der im Kästchen angegebenen Zeichen,
4009  nicht jedoch für deren Breite.
4010  Bei 
4011 \series bold
4012
4013 \backslash
4014 vphantom
4015 \series default
4016  wird nur Platz mit der Breite des Kästchens erstellt.
4017  Daher haben die Kästchen der beiden Befehle nur einen roten Pfeil.
4018 \end_layout
4019
4020 \begin_layout Standard
4021 Zum Beispiel erzeugt 
4022 \series bold
4023
4024 \backslash
4025 vphantom
4026 \series default
4027
4028 \begin_inset ERT
4029 status collapsed
4030
4031 \begin_layout Plain Layout
4032
4033
4034 \backslash
4035 leer 
4036 \end_layout
4037
4038 \end_inset
4039
4040
4041 \series bold
4042 a
4043 \backslash
4044 int
4045 \series default
4046  Platz der Höhe des Integralzeichens,
4047 \begin_inset Foot
4048 status collapsed
4049
4050 \begin_layout Plain Layout
4051 Der Befehl 
4052 \series bold
4053
4054 \backslash
4055 int
4056 \series default
4057  erzeugt ein Integralzeichen, siehe 
4058 \begin_inset CommandInset ref
4059 LatexCommand ref
4060 reference "sub:Große-Operatoren"
4061
4062 \end_inset
4063
4064 .
4065 \end_layout
4066
4067 \end_inset
4068
4069  da dieses das größere Zeichen ist.
4070  Eine Beispielanwendung ist in 
4071 \begin_inset CommandInset ref
4072 LatexCommand ref
4073 reference "sub:Mehrzeilige-Klammern"
4074
4075 \end_inset
4076
4077  zu finden.
4078 \end_layout
4079
4080 \begin_layout Standard
4081 Platzhalter können auch für Text verwendet werden, wenn sie über das Menü
4082  
4083 \family sans
4084 Einfügen\SpecialChar \menuseparator
4085 Formatierung\SpecialChar \menuseparator
4086 Phantom
4087 \family default
4088  eingefügt werden:
4089 \end_layout
4090
4091 \begin_layout Standard
4092 Dies ist ein Satz.
4093 \begin_inset Newline newline
4094 \end_inset
4095
4096
4097 \begin_inset Phantom Phantom
4098 status open
4099
4100 \begin_layout Plain Layout
4101 Dies
4102 \end_layout
4103
4104 \end_inset
4105
4106  ist ein Satz.
4107 \end_layout
4108
4109 \begin_layout Subsection
4110 Linien
4111 \begin_inset Index idx
4112 status collapsed
4113
4114 \begin_layout Plain Layout
4115 Linien
4116 \end_layout
4117
4118 \end_inset
4119
4120
4121 \begin_inset Index idx
4122 status collapsed
4123
4124 \begin_layout Plain Layout
4125 Formel ! unterstrichene
4126 \end_layout
4127
4128 \end_inset
4129
4130
4131 \end_layout
4132
4133 \begin_layout Standard
4134 \align center
4135 \begin_inset Tabular
4136 <lyxtabular version="3" rows="4" columns="2">
4137 <features tabularvalignment="middle">
4138 <column alignment="center" valignment="top" width="0pt">
4139 <column alignment="center" valignment="top" width="0pt">
4140 <row>
4141 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
4142 \begin_inset Text
4143
4144 \begin_layout Plain Layout
4145 Befehl
4146 \end_layout
4147
4148 \end_inset
4149 </cell>
4150 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
4151 \begin_inset Text
4152
4153 \begin_layout Plain Layout
4154 Ergebnis
4155 \begin_inset Note Note
4156 status collapsed
4157
4158 \begin_layout Plain Layout
4159
4160 \series bold
4161
4162 \backslash
4163 raisebox
4164 \series default
4165  dient nur als Abstandhalter.
4166 \end_layout
4167
4168 \end_inset
4169
4170
4171 \end_layout
4172
4173 \end_inset
4174 </cell>
4175 </row>
4176 <row>
4177 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
4178 \begin_inset Text
4179
4180 \begin_layout Plain Layout
4181
4182 \backslash
4183 overline
4184 \begin_inset ERT
4185 status collapsed
4186
4187 \begin_layout Plain Layout
4188
4189
4190 \backslash
4191 leer 
4192 \end_layout
4193
4194 \end_inset
4195
4196 A+B
4197 \begin_inset Index idx
4198 status collapsed
4199
4200 \begin_layout Plain Layout
4201 Befehle ! O ! 
4202 \backslash
4203 overline
4204 \end_layout
4205
4206 \end_inset
4207
4208
4209 \end_layout
4210
4211 \end_inset
4212 </cell>
4213 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
4214 \begin_inset Text
4215
4216 \begin_layout Plain Layout
4217 \begin_inset Formula $\raisebox{5mm}{}\overline{A+B}$
4218 \end_inset
4219
4220
4221 \end_layout
4222
4223 \end_inset
4224 </cell>
4225 </row>
4226 <row>
4227 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
4228 \begin_inset Text
4229
4230 \begin_layout Plain Layout
4231
4232 \backslash
4233 underline
4234 \begin_inset ERT
4235 status collapsed
4236
4237 \begin_layout Plain Layout
4238
4239
4240 \backslash
4241 leer 
4242 \end_layout
4243
4244 \end_inset
4245
4246 A+B
4247 \begin_inset Index idx
4248 status collapsed
4249
4250 \begin_layout Plain Layout
4251 Befehle ! U ! 
4252 \backslash
4253 underline
4254 \end_layout
4255
4256 \end_inset
4257
4258
4259 \end_layout
4260
4261 \end_inset
4262 </cell>
4263 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
4264 \begin_inset Text
4265
4266 \begin_layout Plain Layout
4267 \begin_inset Formula $\underline{A+B}\raisebox{-2.5mm}{}$
4268 \end_inset
4269
4270
4271 \end_layout
4272
4273 \end_inset
4274 </cell>
4275 </row>
4276 <row>
4277 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
4278 \begin_inset Text
4279
4280 \begin_layout Plain Layout
4281
4282 \backslash
4283 overline
4284 \begin_inset ERT
4285 status collapsed
4286
4287 \begin_layout Plain Layout
4288
4289
4290 \backslash
4291 leer 
4292 \end_layout
4293
4294 \end_inset
4295
4296
4297 \backslash
4298 underline
4299 \begin_inset ERT
4300 status collapsed
4301
4302 \begin_layout Plain Layout
4303
4304
4305 \backslash
4306 leer 
4307 \end_layout
4308
4309 \end_inset
4310
4311 A+B
4312 \end_layout
4313
4314 \end_inset
4315 </cell>
4316 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
4317 \begin_inset Text
4318
4319 \begin_layout Plain Layout
4320 \begin_inset Formula $\raisebox{5mm}{}\overline{\underline{A+B}}\raisebox{-2.5mm}{}$
4321 \end_inset
4322
4323
4324 \end_layout
4325
4326 \end_inset
4327 </cell>
4328 </row>
4329 </lyxtabular>
4330
4331 \end_inset
4332
4333
4334 \end_layout
4335
4336 \begin_layout Standard
4337 Beim letzten Beispiel spielt es keine Rolle, ob man zuerst 
4338 \series bold
4339
4340 \backslash
4341 overline
4342 \series default
4343  oder 
4344 \series bold
4345
4346 \backslash
4347 underline
4348 \series default
4349  eingibt.
4350 \end_layout
4351
4352 \begin_layout Standard
4353 Will man Ergebnisse doppelt unterstreichen, verwendet man zweimal hintereinander
4354 \begin_inset Newline linebreak
4355 \end_inset
4356
4357
4358 \series bold
4359
4360 \backslash
4361 underline
4362 \series default
4363 .
4364 \end_layout
4365
4366 \begin_layout Standard
4367 Man kann bis zu 6 Striche über oder unter Zeichen setzen.
4368 \end_layout
4369
4370 \begin_layout Standard
4371 \begin_inset VSpace bigskip
4372 \end_inset
4373
4374 Benutzerdefinierte Linien können mit dem Befehl 
4375 \series bold
4376
4377 \backslash
4378 rule
4379 \series default
4380
4381 \begin_inset Index idx
4382 status collapsed
4383
4384 \begin_layout Plain Layout
4385 Befehle! R ! 
4386 \backslash
4387 rule
4388 \end_layout
4389
4390 \end_inset
4391
4392  erstellt werden, der folgendes Schema besitzt:
4393 \end_layout
4394
4395 \begin_layout Standard
4396
4397 \series bold
4398
4399 \backslash
4400 rule[vertikaler Versatz]{Länge}{Dicke}
4401 \end_layout
4402
4403 \begin_layout Standard
4404 Der optionale vertikale Versatz verschiebt die Linie nach oben (oder nach
4405  unten, wenn der Wert negativ ist).
4406  Die Einheiten, die in 
4407 \begin_inset CommandInset ref
4408 LatexCommand ref
4409 reference "tab:Verfügbare-Einheiten"
4410
4411 \end_inset
4412
4413  aufgelistet sind, können für die Werte benutzt werden.
4414  Hier sind zwei Beispiele, die mit den Befehlen
4415 \begin_inset Newline newline
4416 \end_inset
4417
4418
4419 \series bold
4420
4421 \backslash
4422 rule[-2ex]{3cm}{2pt}
4423 \series default
4424  und 
4425 \series bold
4426
4427 \backslash
4428 rule{2cm}{1pt}
4429 \series default
4430  erzeugt wurden:
4431 \end_layout
4432
4433 \begin_layout Standard
4434 Dies ist ein Satz 
4435 \begin_inset Formula $\rule[-2ex]{3cm}{2pt}\rule{2cm}{1pt}$
4436 \end_inset
4437
4438  mit zwei Linien.
4439 \end_layout
4440
4441 \begin_layout Standard
4442
4443 \series bold
4444
4445 \backslash
4446 rule
4447 \series default
4448  kann auch für Text verwendet werden, wenn eine Linie über das Menü 
4449 \family sans
4450 Einfügen\SpecialChar \menuseparator
4451 Formatierung\SpecialChar \menuseparator
4452 Horizontale
4453 \begin_inset space ~
4454 \end_inset
4455
4456 Line
4457 \family default
4458  eingefügt wird:
4459 \end_layout
4460
4461 \begin_layout Standard
4462 Dies ist ein Satz 
4463 \begin_inset CommandInset line
4464 LatexCommand rule
4465 offset "0.5ex"
4466 width "3cm"
4467 height "1pt"
4468
4469 \end_inset
4470
4471  mit einer Linie.
4472 \end_layout
4473
4474 \begin_layout Subsection
4475 Fortsetzungspunkte
4476 \begin_inset CommandInset label
4477 LatexCommand label
4478 name "sub:Fortsetzungspunkte"
4479
4480 \end_inset
4481
4482
4483 \begin_inset Index idx
4484 status collapsed
4485
4486 \begin_layout Plain Layout
4487 Fortsetzungspunkte
4488 \end_layout
4489
4490 \end_inset
4491
4492
4493 \end_layout
4494
4495 \begin_layout Standard
4496 Es gibt unterschiedliche Arten von Fortsetzungspunkten.
4497 \begin_inset Foot
4498 status collapsed
4499
4500 \begin_layout Plain Layout
4501 In der Mathe-Werkzeugleiste zu finden im Untermenü des Knopfs 
4502 \begin_inset Graphics
4503         filename ../../images/math/ldots.png
4504         scale 85
4505
4506 \end_inset
4507
4508
4509 \end_layout
4510
4511 \end_inset
4512
4513  Für Aufzählungen verwendet man unten sitzende Punkte (
4514 \series bold
4515
4516 \backslash
4517 ldots
4518 \series default
4519
4520 \begin_inset Index idx
4521 status collapsed
4522
4523 \begin_layout Plain Layout
4524 Befehle ! L ! 
4525 \backslash
4526 ldots
4527 \end_layout
4528
4529 \end_inset
4530
4531 ), während man für Operationen Punkte braucht, die auf der selben Höhe wie
4532  die Operatoren sind (
4533 \series bold
4534
4535 \backslash
4536 cdots
4537 \series default
4538
4539 \begin_inset Index idx
4540 status collapsed
4541
4542 \begin_layout Plain Layout
4543 Befehle ! C ! 
4544 \backslash
4545 cdots
4546 \end_layout
4547
4548 \end_inset
4549
4550 ).
4551  Verwendet man den Befehl 
4552 \series bold
4553
4554 \backslash
4555 dots
4556 \series default
4557
4558 \begin_inset Index idx
4559 status collapsed
4560
4561 \begin_layout Plain Layout
4562 Befehle ! D ! 
4563 \backslash
4564 dots
4565 \end_layout
4566
4567 \end_inset
4568
4569 , entscheidet LaTeX anhand des nachfolgenden Zeichens, welche Punktart verwendet
4570  wird.
4571 \end_layout
4572
4573 \begin_layout Standard
4574 \align center
4575 \begin_inset Tabular
4576 <lyxtabular version="3" rows="9" columns="2">
4577 <features tabularvalignment="middle">
4578 <column alignment="center" valignment="top" width="0pt">
4579 <column alignment="center" valignment="top" width="0pt">
4580 <row>
4581 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
4582 \begin_inset Text
4583
4584 \begin_layout Plain Layout
4585 Befehl
4586 \end_layout
4587
4588 \end_inset
4589 </cell>
4590 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
4591 \begin_inset Text
4592
4593 \begin_layout Plain Layout
4594 Ergebnis
4595 \end_layout
4596
4597 \end_inset
4598 </cell>
4599 </row>
4600 <row>
4601 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4602 \begin_inset Text
4603
4604 \begin_layout Plain Layout
4605 A_1
4606 \begin_inset ERT
4607 status collapsed
4608
4609 \begin_layout Plain Layout
4610
4611
4612 \backslash
4613 leer 
4614 \end_layout
4615
4616 \end_inset
4617
4618 ,
4619 \backslash
4620 dots
4621 \begin_inset ERT
4622 status collapsed
4623
4624 \begin_layout Plain Layout
4625
4626
4627 \backslash
4628 leer 
4629 \end_layout
4630
4631 \end_inset
4632
4633 ,A_n
4634 \end_layout
4635
4636 \end_inset
4637 </cell>
4638 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4639 \begin_inset Text
4640
4641 \begin_layout Plain Layout
4642 \begin_inset Formula $A_{1},\dots,A_{n}$
4643 \end_inset
4644
4645
4646 \end_layout
4647
4648 \end_inset
4649 </cell>
4650 </row>
4651 <row>
4652 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4653 \begin_inset Text
4654
4655 \begin_layout Plain Layout
4656 A_1
4657 \begin_inset ERT
4658 status collapsed
4659
4660 \begin_layout Plain Layout
4661
4662
4663 \backslash
4664 leer 
4665 \end_layout
4666
4667 \end_inset
4668
4669 +
4670 \backslash
4671 dots
4672 \begin_inset ERT
4673 status collapsed
4674
4675 \begin_layout Plain Layout
4676
4677
4678 \backslash
4679 leer 
4680 \end_layout
4681
4682 \end_inset
4683
4684 +A_n
4685 \end_layout
4686
4687 \end_inset
4688 </cell>
4689 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4690 \begin_inset Text
4691
4692 \begin_layout Plain Layout
4693 \begin_inset Formula $A_{1}+\dots+A_{n}$
4694 \end_inset
4695
4696
4697 \end_layout
4698
4699 \end_inset
4700 </cell>
4701 </row>
4702 <row>
4703 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4704 \begin_inset Text
4705
4706 \begin_layout Plain Layout
4707 A_1
4708 \begin_inset ERT
4709 status collapsed
4710
4711 \begin_layout Plain Layout
4712
4713
4714 \backslash
4715 leer 
4716 \end_layout
4717
4718 \end_inset
4719
4720 ,
4721 \backslash
4722 ldots
4723 \begin_inset ERT
4724 status collapsed
4725
4726 \begin_layout Plain Layout
4727
4728
4729 \backslash
4730 leer 
4731 \end_layout
4732
4733 \end_inset
4734
4735 ,A_n
4736 \end_layout
4737
4738 \end_inset
4739 </cell>
4740 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4741 \begin_inset Text
4742
4743 \begin_layout Plain Layout
4744 \begin_inset Formula $A_{1},\ldots,A_{n}$
4745 \end_inset
4746
4747
4748 \end_layout
4749
4750 \end_inset
4751 </cell>
4752 </row>
4753 <row>
4754 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
4755 \begin_inset Text
4756
4757 \begin_layout Plain Layout
4758 A_1
4759 \begin_inset ERT
4760 status collapsed
4761
4762 \begin_layout Plain Layout
4763
4764
4765 \backslash
4766 leer 
4767 \end_layout
4768
4769 \end_inset
4770
4771 +
4772 \backslash
4773 cdots
4774 \begin_inset ERT
4775 status collapsed
4776
4777 \begin_layout Plain Layout
4778
4779
4780 \backslash
4781 leer 
4782 \end_layout
4783
4784 \end_inset
4785
4786 +A_n
4787 \end_layout
4788
4789 \end_inset
4790 </cell>
4791 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
4792 \begin_inset Text
4793
4794 \begin_layout Plain Layout
4795 \begin_inset Formula $A_{1}+\cdots+A_{n}$
4796 \end_inset
4797
4798
4799 \end_layout
4800
4801 \end_inset
4802 </cell>
4803 </row>
4804 <row>
4805 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4806 \begin_inset Text
4807
4808 \begin_layout Plain Layout
4809
4810 \backslash
4811 vdots
4812 \end_layout
4813
4814 \end_inset
4815 </cell>
4816 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4817 \begin_inset Text
4818
4819 \begin_layout Plain Layout
4820 \begin_inset Formula $\vdots$
4821 \end_inset
4822
4823
4824 \end_layout
4825
4826 \end_inset
4827 </cell>
4828 </row>
4829 <row>
4830 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4831 \begin_inset Text
4832
4833 \begin_layout Plain Layout
4834
4835 \backslash
4836 ddots
4837 \end_layout
4838
4839 \end_inset
4840 </cell>
4841 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4842 \begin_inset Text
4843
4844 \begin_layout Plain Layout
4845 \begin_inset Formula $\ddots$
4846 \end_inset
4847
4848
4849 \end_layout
4850
4851 \end_inset
4852 </cell>
4853 </row>
4854 <row>
4855 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
4856 \begin_inset Text
4857
4858 \begin_layout Plain Layout
4859
4860 \backslash
4861 iddots
4862 \end_layout
4863
4864 \end_inset
4865 </cell>
4866 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
4867 \begin_inset Text
4868
4869 \begin_layout Plain Layout
4870 \begin_inset Formula $\iddots$
4871 \end_inset
4872
4873
4874 \end_layout
4875
4876 \end_inset
4877 </cell>
4878 </row>
4879 <row>
4880 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
4881 \begin_inset Text
4882
4883 \begin_layout Plain Layout
4884 3
4885 \series bold
4886 ×
4887 \series default
4888 3
4889 \begin_inset space \thinspace{}
4890 \end_inset
4891
4892 Matrix mit obigen Befehlen
4893 \end_layout
4894
4895 \end_inset
4896 </cell>
4897 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
4898 \begin_inset Text
4899
4900 \begin_layout Plain Layout
4901 \begin_inset Formula $\begin{array}{ccc}
4902 A_{11} & \cdots & A_{1m}\\
4903 \vdots & \ddots & \vdots\\
4904 A_{n1} & \cdots & A_{nm}
4905 \end{array}$
4906 \end_inset
4907
4908
4909 \end_layout
4910
4911 \end_inset
4912 </cell>
4913 </row>
4914 </lyxtabular>
4915
4916 \end_inset
4917
4918
4919 \end_layout
4920
4921 \begin_layout Standard
4922 Die im Menü 
4923 \family sans
4924 Einfügen\SpecialChar \menuseparator
4925 Sonderzeichen
4926 \family default
4927  verfügbaren Fortsetzungspunkte sind 
4928 \series bold
4929
4930 \backslash
4931 ldots
4932 \series default
4933 .
4934 \end_layout
4935
4936 \begin_layout Standard
4937
4938 \lang english
4939 \begin_inset VSpace medskip
4940 \end_inset
4941
4942
4943 \lang ngerman
4944 Um 
4945 \series bold
4946
4947 \backslash
4948 iddots
4949 \series default
4950  nutzen zu können, muss eine der Optionen 
4951 \family sans
4952 Mathdots Paket (automatisch) verwenden 
4953 \family default
4954 in den Dokumenteinstellungen unter 
4955 \family sans
4956 Mathe-Optionen
4957 \family default
4958  gewählt sein.
4959 \begin_inset Newline newline
4960 \end_inset
4961
4962 Die Option 
4963 \family sans
4964 Mathdots Paket verwenden
4965 \family default
4966  verbessert das Aussehen aller Fortsetzungspunkte des Dokuments wenn deren
4967  Schriftstil oder die Schriftgröße nicht Standard sind.
4968 \end_layout
4969
4970 \begin_layout Standard
4971 \begin_inset VSpace medskip
4972 \end_inset
4973
4974 Speziell für Matrizen gibt es Fortsetzungspunkte, die sich über mehrere
4975  Spalten erstrecken.
4976  Man erhält sie mit dem Befehl 
4977 \series bold
4978
4979 \backslash
4980 hdotsfor
4981 \series default
4982
4983 \begin_inset Index idx
4984 status collapsed
4985
4986 \begin_layout Plain Layout
4987 Befehle ! H ! 
4988 \backslash
4989 hdotsfor
4990 \end_layout
4991
4992 \end_inset
4993
4994 , der folgendes Schema besitzt:
4995 \end_layout
4996
4997 \begin_layout Standard
4998
4999 \series bold
5000
5001 \backslash
5002 hdotsfor[Abstand]{Anzahl der Spalten}
5003 \end_layout
5004
5005 \begin_layout Standard
5006 Anzahl der Spalten gibt an, über wie viele Spalten sich die Punkte erstrecken
5007  sollen.
5008  Abstand ist ein Faktor, der den Punktabstand festlegt.
5009 \end_layout
5010
5011 \begin_layout Standard
5012 In folgender Matrix wurde in das erste Kästchen der zweiten Zeile der Befehl
5013  
5014 \series bold
5015
5016 \backslash
5017 hdotsfor[2]{4}
5018 \series default
5019  eingegeben, um Fortsetzungspunkte mit doppelt so großem Punktabstand wie
5020  beim Befehl 
5021 \series bold
5022
5023 \backslash
5024 dots
5025 \series default
5026  zu erhalten:
5027 \begin_inset Formula \[
5028 \left(\begin{array}{cccc}
5029 A & B & C & D\\
5030 \hdotsfor[2]{4}\\
5031 q & w & e & r
5032 \end{array}\right)\]
5033
5034 \end_inset
5035
5036 Es ist zu beachten, dass die Matrixfelder über die sich die Punkte erstrecken
5037  sollen leer sein müssen, ansonsten kommt es zu LaTeX-Fehlern.
5038 \end_layout
5039
5040 \begin_layout Standard
5041 \begin_inset VSpace bigskip
5042 \end_inset
5043
5044 Des Weiteren kann man mit dem Befehl 
5045 \series bold
5046
5047 \backslash
5048 dotfill
5049 \series default
5050
5051 \begin_inset Index idx
5052 status collapsed
5053
5054 \begin_layout Plain Layout
5055 Befehle ! D ! 
5056 \backslash
5057 dotfill
5058 \end_layout
5059
5060 \end_inset
5061
5062  den Rest einer Zeile mit Punkten füllen.
5063  Die Wirkungsweise des Befehls entspricht der von 
5064 \series bold
5065
5066 \backslash
5067 hfill
5068 \series default
5069 , siehe 
5070 \begin_inset CommandInset ref
5071 LatexCommand ref
5072 reference "sub:Variabler-Leerraum"
5073
5074 \end_inset
5075
5076 .
5077 \end_layout
5078
5079 \begin_layout Standard
5080 Z.
5081 \begin_inset space \thinspace{}
5082 \end_inset
5083
5084 B.
5085  ergibt der Befehl 
5086 \series bold
5087 A
5088 \backslash
5089 dotfill
5090 \begin_inset ERT
5091 status collapsed
5092
5093 \begin_layout Plain Layout
5094
5095
5096 \backslash
5097 leer 
5098 \end_layout
5099
5100 \end_inset
5101
5102 B
5103 \end_layout
5104
5105 \begin_layout Standard
5106 \begin_inset Formula $A\dotfill B$
5107 \end_inset
5108
5109
5110 \end_layout
5111
5112 \begin_layout Standard
5113 Analog dazu gibt es für eine Linie den Befehl 
5114 \series bold
5115
5116 \backslash
5117 hrulefill
5118 \series default
5119
5120 \begin_inset Index idx
5121 status collapsed
5122
5123 \begin_layout Plain Layout
5124 Befehle ! H ! 
5125 \backslash
5126 hrulefill
5127 \end_layout
5128
5129 \end_inset
5130
5131 :
5132 \end_layout
5133
5134 \begin_layout Standard
5135 \begin_inset Formula $A\hrulefill B$
5136 \end_inset
5137
5138
5139 \end_layout
5140
5141 \begin_layout Standard
5142 Um die Befehle für Text zu verwenden, müssen sie im TeX-Modus eingegeben
5143  werden.
5144 \end_layout
5145
5146 \begin_layout Section
5147 Matrizen
5148 \begin_inset CommandInset label
5149 LatexCommand label
5150 name "sec:Matrizen"
5151
5152 \end_inset
5153
5154
5155 \begin_inset Index idx
5156 status collapsed
5157
5158 \begin_layout Plain Layout
5159 Matrizen
5160 \end_layout
5161
5162 \end_inset
5163
5164
5165 \end_layout
5166
5167 \begin_layout Standard
5168 Matrizen können über den Mathe-Werkzeugleistenknopf
5169 \family sans
5170  
5171 \family default
5172
5173 \begin_inset Graphics
5174         filename ../../images/dialog-show_mathmatrix.png
5175         scale 85
5176
5177 \end_inset
5178
5179  oder das Menü 
5180 \family sans
5181 Einfügen\SpecialChar \menuseparator
5182 Mathe\SpecialChar \menuseparator
5183 Matrix
5184 \family default
5185  eingefügt werden.
5186  Sie werden nach der Spalten- und Zeilenanzahl, der Ausrichtung und der
5187  Verzierung gefragt.
5188  Die vertikale Ausrichtung ist dabei nur bei Matrizen in eingebetteten Formeln
5189  von Bedeutung:
5190 \end_layout
5191
5192 \begin_layout Standard
5193 Die erste Matrix ist oben 
5194 \begin_inset Formula $\begin{array}[t]{cccc}
5195 A & D & G & J\\
5196 B & E & H & K\\
5197 C & F & I & L
5198 \end{array}$
5199 \end_inset
5200
5201 , die zweite mittig 
5202 \begin_inset Formula $\begin{array}{cccc}
5203 A & D & G & J\\
5204 B & E & H & K\\
5205 C & F & I & L
5206 \end{array}$
5207 \end_inset
5208
5209  und die dritte unten 
5210 \begin_inset Formula $\begin{array}[b]{cccc}
5211 A & D & G & J\\
5212 B & E & H & K\\
5213 C & F & I & L
5214 \end{array}$
5215 \end_inset
5216
5217  ausgerichtet.
5218 \end_layout
5219
5220 \begin_layout Standard
5221 Die horizontale Ausrichtung gibt an, wie die Spalteneinträge ausgerichtet
5222  werden sollen.
5223  Dazu wird für jede Spalte ein Buchstabe eingegeben.
5224  
5225 \emph on
5226 l
5227 \emph default
5228  steht für linksbündig, 
5229 \emph on
5230 c
5231 \emph default
5232  für mittig und 
5233 \emph on
5234 r
5235 \emph default
5236  für rechtsbündig.
5237  Möchte man z.
5238 \begin_inset space \thinspace{}
5239 \end_inset
5240
5241 B.
5242  eine 4
5243 \series bold
5244 ×
5245 \series default
5246 4
5247 \begin_inset space ~
5248 \end_inset
5249
5250 Matrix erstellen, bei der der Inhalt der ersten Spalte linksbündig, der
5251  Inhalt der zweiten und dritten mittig und der Inhalt der letzten rechtsbündig
5252  ausgerichtet ist, gibt man für die horizontale Ausrichtung 
5253 \series bold
5254 lccr
5255 \series default
5256  an.
5257  Normalerweise sind in einer Matrix alle Spalteninhalte zentriert, weswegen
5258  die Voreinstellung für jede Spalte ein 
5259 \series bold
5260 c
5261 \series default
5262  ist.
5263 \end_layout
5264
5265 \begin_layout Standard
5266 Horizontale Ausrichtung:
5267 \end_layout
5268
5269 \begin_layout Standard
5270
5271 \series bold
5272 lll
5273 \series default
5274  : 
5275 \begin_inset Formula $\begin{array}{lll}
5276 10000 & D & G\\
5277 B & 10000 & H\\
5278 C & F & 10000
5279 \end{array}$
5280 \end_inset
5281
5282  , 
5283 \series bold
5284 ccc
5285 \series default
5286  : 
5287 \begin_inset Formula $\begin{array}{ccc}
5288 10000 & D & G\\
5289 B & 10000 & H\\
5290 C & F & 10000
5291 \end{array}$
5292 \end_inset
5293
5294  , 
5295 \series bold
5296 rrr
5297 \series default
5298  : 
5299 \begin_inset Formula $\begin{array}{rrr}
5300 10000 & D & G\\
5301 B & 10000 & H\\
5302 C & F & 10000
5303 \end{array}$
5304 \end_inset
5305
5306
5307 \end_layout
5308
5309 \begin_layout Standard
5310 Um nachträglich Zeilen und Spalten hinzuzufügen oder zu entfernen, kann
5311  man die Mathe-Werkzeugleistenknöpfe 
5312 \begin_inset Graphics
5313         filename ../../images/tabular-feature_append-row.png
5314         scale 85
5315
5316 \end_inset
5317
5318
5319 \begin_inset Graphics
5320         filename ../../images/tabular-feature_delete-row.png
5321         scale 85
5322
5323 \end_inset
5324
5325 , usw.
5326 \begin_inset space \space{}
5327 \end_inset
5328
5329 oder das Menü 
5330 \family sans
5331 Bearbeiten\SpecialChar \menuseparator
5332 Zeilen & Spalten
5333 \family default
5334  verwenden.
5335  Neue Zeilen können auch mit 
5336 \family sans
5337 Strg+Enter
5338 \family default
5339  erstellt werden.
5340 \end_layout
5341
5342 \begin_layout Standard
5343 \begin_inset VSpace bigskip
5344 \end_inset
5345
5346 Die 
5347 \family sans
5348 Verzierung
5349 \family default
5350  fügt Klammern um die Matrix in der ausgewählten Art hinzu.
5351  Alternativ können Klammern entweder mit den Befehlen 
5352 \series bold
5353
5354 \backslash
5355 left
5356 \series default
5357
5358 \begin_inset Index idx
5359 status collapsed
5360
5361 \begin_layout Plain Layout
5362 Befehle ! L ! 
5363 \backslash
5364 left
5365 \end_layout
5366
5367 \end_inset
5368
5369  und 
5370 \series bold
5371
5372 \backslash
5373 right
5374 \series default
5375
5376 \begin_inset Index idx
5377 status collapsed
5378
5379 \begin_layout Plain Layout
5380 Befehle ! R ! 
5381 \backslash
5382 right
5383 \end_layout
5384
5385 \end_inset
5386
5387  erstellt werden (Tastenkürzel 
5388 \family sans
5389 Alt+M
5390 \begin_inset space ~
5391 \end_inset
5392
5393 Klammer
5394 \family default
5395 ), siehe 
5396 \begin_inset CommandInset ref
5397 LatexCommand ref
5398 reference "sub:Automatische-Klammergrößen"
5399
5400 \end_inset
5401
5402 , oder man verwendet folgende Befehle:
5403 \begin_inset VSpace bigskip
5404 \end_inset
5405
5406
5407 \end_layout
5408
5409 \begin_layout Standard
5410 \begin_inset space \hfill{}
5411 \end_inset
5412
5413
5414 \begin_inset Tabular
5415 <lyxtabular version="3" rows="4" columns="2">
5416 <features tabularvalignment="middle">
5417 <column alignment="center" valignment="top" width="0">
5418 <column alignment="center" valignment="top" width="0">
5419 <row>
5420 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
5421 \begin_inset Text
5422
5423 \begin_layout Plain Layout
5424 Befehl
5425 \end_layout
5426
5427 \end_inset
5428 </cell>
5429 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
5430 \begin_inset Text
5431
5432 \begin_layout Plain Layout
5433 Ergebnis
5434 \end_layout
5435
5436 \end_inset
5437 </cell>
5438 </row>
5439 <row>
5440 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5441 \begin_inset Text
5442
5443 \begin_layout Plain Layout
5444
5445 \backslash
5446 bmatrix
5447 \begin_inset ERT
5448 status collapsed
5449
5450 \begin_layout Plain Layout
5451
5452
5453 \backslash
5454 leer 
5455 \end_layout
5456
5457 \end_inset
5458
5459 2
5460 \series bold
5461 ×
5462 \series default
5463 2
5464 \begin_inset space \thinspace{}
5465 \end_inset
5466
5467 Matrix
5468 \end_layout
5469
5470 \end_inset
5471 </cell>
5472 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5473 \begin_inset Text
5474
5475 \begin_layout Plain Layout
5476 \begin_inset Formula $\raisebox{7.5mm}{}\begin{bmatrix}\begin{array}{cc}
5477 0 & \textrm{-}\mathrm{i}\\
5478 \mathrm{i} & 0
5479 \end{array}\end{bmatrix}\raisebox{-5.3mm}{}$
5480 \end_inset
5481
5482
5483 \end_layout
5484
5485 \end_inset
5486 </cell>
5487 </row>
5488 <row>
5489 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5490 \begin_inset Text
5491
5492 \begin_layout Plain Layout
5493
5494 \backslash
5495 Bmatrix
5496 \begin_inset ERT
5497 status collapsed
5498
5499 \begin_layout Plain Layout
5500
5501
5502 \backslash
5503 leer 
5504 \end_layout
5505
5506 \end_inset
5507
5508 2
5509 \series bold
5510 ×
5511 \series default
5512 2
5513 \begin_inset space \thinspace{}
5514 \end_inset
5515
5516 Matrix
5517 \end_layout
5518
5519 \end_inset
5520 </cell>
5521 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5522 \begin_inset Text
5523
5524 \begin_layout Plain Layout
5525 \begin_inset Formula $\raisebox{7.5mm}{}\begin{Bmatrix}\begin{array}{cc}
5526 0 & \textrm{-}\mathrm{i}\\
5527 \mathrm{i} & 0
5528 \end{array}\end{Bmatrix}\raisebox{-5.3mm}{}$
5529 \end_inset
5530
5531
5532 \end_layout
5533
5534 \end_inset
5535 </cell>
5536 </row>
5537 <row>
5538 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
5539 \begin_inset Text
5540
5541 \begin_layout Plain Layout
5542
5543 \backslash
5544 pmatrix
5545 \begin_inset ERT
5546 status collapsed
5547
5548 \begin_layout Plain Layout
5549
5550
5551 \backslash
5552 leer 
5553 \end_layout
5554
5555 \end_inset
5556
5557 2
5558 \series bold
5559 ×
5560 \series default
5561 2
5562 \begin_inset space \thinspace{}
5563 \end_inset
5564
5565 Matrix
5566 \end_layout
5567
5568 \end_inset
5569 </cell>
5570 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
5571 \begin_inset Text
5572
5573 \begin_layout Plain Layout
5574 \begin_inset Formula $\raisebox{7.5mm}{}\begin{pmatrix}\begin{array}{cc}
5575 0 & \textrm{-}\mathrm{i}\\
5576 \mathrm{i} & 0
5577 \end{array}\end{pmatrix}\raisebox{-5.3mm}{}$
5578 \end_inset
5579
5580
5581 \end_layout
5582
5583 \end_inset
5584 </cell>
5585 </row>
5586 </lyxtabular>
5587
5588 \end_inset
5589
5590
5591 \begin_inset space \hfill{}
5592 \end_inset
5593
5594
5595 \begin_inset Tabular
5596 <lyxtabular version="3" rows="4" columns="2">
5597 <features tabularvalignment="middle">
5598 <column alignment="center" valignment="top" width="0">
5599 <column alignment="center" valignment="top" width="0">
5600 <row>
5601 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
5602 \begin_inset Text
5603
5604 \begin_layout Plain Layout
5605 Befehl
5606 \end_layout
5607
5608 \end_inset
5609 </cell>
5610 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
5611 \begin_inset Text
5612
5613 \begin_layout Plain Layout
5614 Ergebnis
5615 \end_layout
5616
5617 \end_inset
5618 </cell>
5619 </row>
5620 <row>
5621 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5622 \begin_inset Text
5623
5624 \begin_layout Plain Layout
5625
5626 \backslash
5627 vmatrix
5628 \begin_inset ERT
5629 status collapsed
5630
5631 \begin_layout Plain Layout
5632
5633
5634 \backslash
5635 leer 
5636 \end_layout
5637
5638 \end_inset
5639
5640 2
5641 \series bold
5642 ×
5643 \series default
5644 2
5645 \begin_inset space \thinspace{}
5646 \end_inset
5647
5648 Matrix
5649 \end_layout
5650
5651 \end_inset
5652 </cell>
5653 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5654 \begin_inset Text
5655
5656 \begin_layout Plain Layout
5657 \begin_inset Formula $\raisebox{7.5mm}{}\begin{vmatrix}\begin{array}{cc}
5658 0 & \textrm{-}\mathrm{i}\\
5659 \mathrm{i} & 0
5660 \end{array}\end{vmatrix}\raisebox{-5.3mm}{}$
5661 \end_inset
5662
5663
5664 \end_layout
5665
5666 \end_inset
5667 </cell>
5668 </row>
5669 <row>
5670 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
5671 \begin_inset Text
5672
5673 \begin_layout Plain Layout
5674
5675 \backslash
5676 Vmatrix
5677 \begin_inset ERT
5678 status collapsed
5679
5680 \begin_layout Plain Layout
5681
5682
5683 \backslash
5684 leer 
5685 \end_layout
5686
5687 \end_inset
5688
5689 2
5690 \series bold
5691 ×
5692 \series default
5693 2
5694 \begin_inset space \thinspace{}
5695 \end_inset
5696
5697 Matrix
5698 \end_layout
5699
5700 \end_inset
5701 </cell>
5702 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
5703 \begin_inset Text
5704
5705 \begin_layout Plain Layout
5706 \begin_inset Formula $\raisebox{7.5mm}{}\begin{Vmatrix}\begin{array}{cc}
5707 0 & \textrm{-}\mathrm{i}\\
5708 \mathrm{i} & 0
5709 \end{array}\end{Vmatrix}\raisebox{-5.3mm}{}$
5710 \end_inset
5711
5712
5713 \end_layout
5714
5715 \end_inset
5716 </cell>
5717 </row>
5718 <row>
5719 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
5720 \begin_inset Text
5721
5722 \begin_layout Plain Layout
5723
5724 \backslash
5725 matrix
5726 \begin_inset ERT
5727 status collapsed
5728
5729 \begin_layout Plain Layout
5730
5731
5732 \backslash
5733 leer 
5734 \end_layout
5735
5736 \end_inset
5737
5738 2
5739 \series bold
5740 ×
5741 \series default
5742 2
5743 \begin_inset space \thinspace{}
5744 \end_inset
5745
5746 Matrix
5747 \end_layout
5748
5749 \end_inset
5750 </cell>
5751 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
5752 \begin_inset Text
5753
5754 \begin_layout Plain Layout
5755 \begin_inset Formula $\raisebox{7.5mm}{}\begin{matrix}\begin{array}{cc}
5756 0 & \textrm{-}\mathrm{i}\\
5757 \mathrm{i} & 0
5758 \end{array}\end{matrix}\raisebox{-5.3mm}{}$
5759 \end_inset
5760
5761
5762 \end_layout
5763
5764 \end_inset
5765 </cell>
5766 </row>
5767 </lyxtabular>
5768
5769 \end_inset
5770
5771
5772 \begin_inset space \hfill{}
5773 \end_inset
5774
5775
5776 \end_layout
5777
5778 \begin_layout Standard
5779 \begin_inset VSpace medskip
5780 \end_inset
5781
5782 Wurde z.
5783 \begin_inset space \thinspace{}
5784 \end_inset
5785
5786 B.
5787  
5788 \series bold
5789
5790 \backslash
5791 vmatrix
5792 \series default
5793  eingegeben, erscheint ein blaues Kästchen zwischen zwei senkrechten Strichen,
5794  in das die Matrix eingefügt wird.
5795 \begin_inset Newline newline
5796 \end_inset
5797
5798 Man beachte, dass verzierte Matrizen die vertikale Ausrichtung ignorieren.
5799 \end_layout
5800
5801 \begin_layout Standard
5802 \begin_inset VSpace bigskip
5803 \end_inset
5804
5805 Da alle mehrzeiligen Formeln Matrizen sind, kann man die in 
5806 \begin_inset CommandInset ref
5807 LatexCommand ref
5808 reference "sub:Spaltenabstand"
5809
5810 \end_inset
5811
5812  beschriebene Länge 
5813 \series bold
5814
5815 \backslash
5816 arraycolsep
5817 \series default
5818
5819 \begin_inset Index idx
5820 status collapsed
5821
5822 \begin_layout Plain Layout
5823 Befehle ! A ! 
5824 \backslash
5825 arraycolsep
5826 \end_layout
5827
5828 \end_inset
5829
5830  auch zur Änderung des Spaltenabstands von Matrizen verwenden.
5831 \end_layout
5832
5833 \begin_layout Standard
5834 Möchte man den Zeilenabstand ändern, verwendet man den Befehl 
5835 \series bold
5836
5837 \backslash
5838 arraystretch
5839 \series default
5840
5841 \begin_inset Index idx
5842 status collapsed
5843
5844 \begin_layout Plain Layout
5845 Befehle ! A ! 
5846 \backslash
5847 arraystretch
5848 \end_layout
5849
5850 \end_inset
5851
5852 .
5853  Dieser wird folgendermaßen benutzt:
5854 \end_layout
5855
5856 \begin_layout Standard
5857
5858 \series bold
5859
5860 \backslash
5861 renewcommand{
5862 \backslash
5863 arraystretch}{Dehnungsfaktor}
5864 \begin_inset Index idx
5865 status collapsed
5866
5867 \begin_layout Plain Layout
5868 Befehle ! R ! 
5869 \backslash
5870 renewcommand
5871 \end_layout
5872
5873 \end_inset
5874
5875
5876 \end_layout
5877
5878 \begin_layout Standard
5879 Der Befehl 
5880 \series bold
5881
5882 \backslash
5883 renewcommand
5884 \series default
5885  weist dabei dem vordefinierten Befehl 
5886 \series bold
5887
5888 \backslash
5889 arraystretch
5890 \series default
5891  den Dehnungsfaktor zu.
5892  Möchte man z.
5893 \begin_inset space \thinspace{}
5894 \end_inset
5895
5896 B.
5897  den Zeilenabstand verdoppeln, gibt man für den Faktor eine 2 an.
5898  Dieser wird dann für alle folgenden Matrizen verwendet.
5899  Um wieder zum ursprünglichen Abstand zurückzukehren, weist man 
5900 \series bold
5901
5902 \backslash
5903 arraystretch
5904 \series default
5905  den Faktor 1 zu.
5906 \end_layout
5907
5908 \begin_layout Standard
5909 Um Matrizen in eine Textzeile zu setzen, benutzt man den Befehl 
5910 \series bold
5911
5912 \backslash
5913 smallmatrix
5914 \series default
5915
5916 \begin_inset Index idx
5917 status collapsed
5918
5919 \begin_layout Plain Layout
5920 Befehle ! S ! 
5921 \backslash
5922 smallmatrix
5923 \end_layout
5924
5925 \end_inset
5926
5927 .
5928  Gibt man ihn in eine Formel ein, erscheint ein blaues Kästchen mit zwei
5929  gestrichelten Linien.
5930  In dieses Kästchen wird die Matrix eingegeben.
5931  Man verwendet stattdessen das Menü 
5932 \family sans
5933 Bearbeiten\SpecialChar \menuseparator
5934 Zeilen
5935 \begin_inset space ~
5936 \end_inset
5937
5938 &
5939 \begin_inset space ~
5940 \end_inset
5941
5942 Spalten
5943 \family default
5944  oder die Mathe-Werkzeugleiste um neue Spalten zu erstellen.
5945  Neue Zeilen können auch mit 
5946 \family sans
5947 Strg+Enter
5948 \family default
5949  erstellt werden.
5950 \end_layout
5951
5952 \begin_layout Standard
5953 Dies ist eine Matrix 
5954 \begin_inset Formula $\left(\begin{smallmatrix}A & B\\
5955 C & D
5956 \end{smallmatrix}\right)$
5957 \end_inset
5958
5959  in einer Textzeile.
5960 \end_layout
5961
5962 \begin_layout Standard
5963 \begin_inset Newpage newpage
5964 \end_inset
5965
5966
5967 \end_layout
5968
5969 \begin_layout Section
5970 Klammern und Begrenzungszeichen
5971 \begin_inset Index idx
5972 status collapsed
5973
5974 \begin_layout Plain Layout
5975 Klammern
5976 \end_layout
5977
5978 \end_inset
5979
5980
5981 \begin_inset Index idx
5982 status collapsed
5983
5984 \begin_layout Plain Layout
5985 Begrenzungszeichen
5986 \end_layout
5987
5988 \end_inset
5989
5990
5991 \end_layout
5992
5993 \begin_layout Subsection
5994 Vertikale Klammern und Begrenzungszeichen
5995 \begin_inset Index idx
5996 status collapsed
5997
5998 \begin_layout Plain Layout
5999 Klammern ! vertikale
6000 \end_layout
6001
6002 \end_inset
6003
6004
6005 \end_layout
6006
6007 \begin_layout Standard
6008 \begin_inset space \hfill{}
6009 \end_inset
6010
6011
6012 \begin_inset Tabular
6013 <lyxtabular version="3" rows="9" columns="2">
6014 <features tabularvalignment="middle">
6015 <column alignment="center" valignment="top" width="0pt">
6016 <column alignment="center" valignment="top" width="0pt">
6017 <row>
6018 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
6019 \begin_inset Text
6020
6021 \begin_layout Plain Layout
6022 Befehl
6023 \end_layout
6024
6025 \end_inset
6026 </cell>
6027 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6028 \begin_inset Text
6029
6030 \begin_layout Plain Layout
6031 Ergebnis
6032 \end_layout
6033
6034 \end_inset
6035 </cell>
6036 </row>
6037 <row>
6038 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6039 \begin_inset Text
6040
6041 \begin_layout Plain Layout
6042 (
6043 \end_layout
6044
6045 \end_inset
6046 </cell>
6047 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6048 \begin_inset Text
6049
6050 \begin_layout Plain Layout
6051 \begin_inset Formula $($
6052 \end_inset
6053
6054
6055 \end_layout
6056
6057 \end_inset
6058 </cell>
6059 </row>
6060 <row>
6061 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6062 \begin_inset Text
6063
6064 \begin_layout Plain Layout
6065 {
6066 \end_layout
6067
6068 \end_inset
6069 </cell>
6070 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6071 \begin_inset Text
6072
6073 \begin_layout Plain Layout
6074 \begin_inset Formula $\{$
6075 \end_inset
6076
6077
6078 \end_layout
6079
6080 \end_inset
6081 </cell>
6082 </row>
6083 <row>
6084 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6085 \begin_inset Text
6086
6087 \begin_layout Plain Layout
6088 [
6089 \end_layout
6090
6091 \end_inset
6092 </cell>
6093 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6094 \begin_inset Text
6095
6096 \begin_layout Plain Layout
6097 \begin_inset Formula $[$
6098 \end_inset
6099
6100
6101 \end_layout
6102
6103 \end_inset
6104 </cell>
6105 </row>
6106 <row>
6107 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6108 \begin_inset Text
6109
6110 \begin_layout Plain Layout
6111
6112 \backslash
6113 langle
6114 \end_layout
6115
6116 \end_inset
6117 </cell>
6118 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6119 \begin_inset Text
6120
6121 \begin_layout Plain Layout
6122 \begin_inset Formula $\langle$
6123 \end_inset
6124
6125
6126 \end_layout
6127
6128 \end_inset
6129 </cell>
6130 </row>
6131 <row>
6132 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6133 \begin_inset Text
6134
6135 \begin_layout Plain Layout
6136
6137 \backslash
6138 lceil
6139 \end_layout
6140
6141 \end_inset
6142 </cell>
6143 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6144 \begin_inset Text
6145
6146 \begin_layout Plain Layout
6147 \begin_inset Formula $\lceil$
6148 \end_inset
6149
6150
6151 \end_layout
6152
6153 \end_inset
6154 </cell>
6155 </row>
6156 <row>
6157 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6158 \begin_inset Text
6159
6160 \begin_layout Plain Layout
6161
6162 \backslash
6163 lfloor
6164 \end_layout
6165
6166 \end_inset
6167 </cell>
6168 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6169 \begin_inset Text
6170
6171 \begin_layout Plain Layout
6172 \begin_inset Formula $\lfloor$
6173 \end_inset
6174
6175
6176 \end_layout
6177
6178 \end_inset
6179 </cell>
6180 </row>
6181 <row>
6182 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6183 \begin_inset Text
6184
6185 \begin_layout Plain Layout
6186 /
6187 \end_layout
6188
6189 \end_inset
6190 </cell>
6191 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6192 \begin_inset Text
6193
6194 \begin_layout Plain Layout
6195 \begin_inset Formula $/$
6196 \end_inset
6197
6198
6199 \end_layout
6200
6201 \end_inset
6202 </cell>
6203 </row>
6204 <row>
6205 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
6206 \begin_inset Text
6207
6208 \begin_layout Plain Layout
6209 |
6210 \end_layout
6211
6212 \end_inset
6213 </cell>
6214 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6215 \begin_inset Text
6216
6217 \begin_layout Plain Layout
6218 \begin_inset Formula $|$
6219 \end_inset
6220
6221
6222 \end_layout
6223
6224 \end_inset
6225 </cell>
6226 </row>
6227 </lyxtabular>
6228
6229 \end_inset
6230
6231
6232 \begin_inset space \hfill{}
6233 \end_inset
6234
6235
6236 \begin_inset Tabular
6237 <lyxtabular version="3" rows="9" columns="2">
6238 <features tabularvalignment="middle">
6239 <column alignment="center" valignment="top" width="0pt">
6240 <column alignment="center" valignment="top" width="0pt">
6241 <row>
6242 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
6243 \begin_inset Text
6244
6245 \begin_layout Plain Layout
6246 Befehl
6247 \end_layout
6248
6249 \end_inset
6250 </cell>
6251 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6252 \begin_inset Text
6253
6254 \begin_layout Plain Layout
6255 Ergebnis
6256 \end_layout
6257
6258 \end_inset
6259 </cell>
6260 </row>
6261 <row>
6262 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6263 \begin_inset Text
6264
6265 \begin_layout Plain Layout
6266 )
6267 \end_layout
6268
6269 \end_inset
6270 </cell>
6271 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6272 \begin_inset Text
6273
6274 \begin_layout Plain Layout
6275 \begin_inset Formula $)$
6276 \end_inset
6277
6278
6279 \end_layout
6280
6281 \end_inset
6282 </cell>
6283 </row>
6284 <row>
6285 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6286 \begin_inset Text
6287
6288 \begin_layout Plain Layout
6289 }
6290 \end_layout
6291
6292 \end_inset
6293 </cell>
6294 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6295 \begin_inset Text
6296
6297 \begin_layout Plain Layout
6298 \begin_inset Formula $\}$
6299 \end_inset
6300
6301
6302 \end_layout
6303
6304 \end_inset
6305 </cell>
6306 </row>
6307 <row>
6308 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6309 \begin_inset Text
6310
6311 \begin_layout Plain Layout
6312 ]
6313 \end_layout
6314
6315 \end_inset
6316 </cell>
6317 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6318 \begin_inset Text
6319
6320 \begin_layout Plain Layout
6321 \begin_inset Formula $]$
6322 \end_inset
6323
6324
6325 \end_layout
6326
6327 \end_inset
6328 </cell>
6329 </row>
6330 <row>
6331 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6332 \begin_inset Text
6333
6334 \begin_layout Plain Layout
6335
6336 \backslash
6337 rangle
6338 \end_layout
6339
6340 \end_inset
6341 </cell>
6342 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6343 \begin_inset Text
6344
6345 \begin_layout Plain Layout
6346 \begin_inset Formula $\rangle$
6347 \end_inset
6348
6349
6350 \end_layout
6351
6352 \end_inset
6353 </cell>
6354 </row>
6355 <row>
6356 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6357 \begin_inset Text
6358
6359 \begin_layout Plain Layout
6360
6361 \backslash
6362 rceil
6363 \end_layout
6364
6365 \end_inset
6366 </cell>
6367 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6368 \begin_inset Text
6369
6370 \begin_layout Plain Layout
6371 \begin_inset Formula $\rceil$
6372 \end_inset
6373
6374
6375 \end_layout
6376
6377 \end_inset
6378 </cell>
6379 </row>
6380 <row>
6381 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6382 \begin_inset Text
6383
6384 \begin_layout Plain Layout
6385
6386 \backslash
6387 rfloor
6388 \end_layout
6389
6390 \end_inset
6391 </cell>
6392 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6393 \begin_inset Text
6394
6395 \begin_layout Plain Layout
6396 \begin_inset Formula $\rfloor$
6397 \end_inset
6398
6399
6400 \end_layout
6401
6402 \end_inset
6403 </cell>
6404 </row>
6405 <row>
6406 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6407 \begin_inset Text
6408
6409 \begin_layout Plain Layout
6410
6411 \backslash
6412
6413 \backslash
6414
6415 \end_layout
6416
6417 \end_inset
6418 </cell>
6419 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6420 \begin_inset Text
6421
6422 \begin_layout Plain Layout
6423 \begin_inset Formula $\backslash$
6424 \end_inset
6425
6426
6427 \end_layout
6428
6429 \end_inset
6430 </cell>
6431 </row>
6432 <row>
6433 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
6434 \begin_inset Text
6435
6436 \begin_layout Plain Layout
6437
6438 \backslash
6439 |
6440 \end_layout
6441
6442 \end_inset
6443 </cell>
6444 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6445 \begin_inset Text
6446
6447 \begin_layout Plain Layout
6448 \begin_inset Formula $\|$
6449 \end_inset
6450
6451
6452 \end_layout
6453
6454 \end_inset
6455 </cell>
6456 </row>
6457 </lyxtabular>
6458
6459 \end_inset
6460
6461
6462 \begin_inset space \hfill{}
6463 \end_inset
6464
6465
6466 \end_layout
6467
6468 \begin_layout Standard
6469
6470 \series medium
6471 \begin_inset Note Greyedout
6472 status open
6473
6474 \begin_layout Plain Layout
6475
6476 \series bold
6477 Achtung:
6478 \series default
6479  Im TeX-Modus muss für den Backslash der Befehl 
6480 \series bold
6481
6482 \backslash
6483 textbackslash
6484 \series default
6485
6486 \begin_inset Index idx
6487 status collapsed
6488
6489 \begin_layout Plain Layout
6490 Befehle ! T ! 
6491 \backslash
6492 textbackslash
6493 \end_layout
6494
6495 \end_inset
6496
6497  verwendet werden, denn der Befehl 
6498 \series bold
6499
6500 \backslash
6501
6502 \backslash
6503
6504 \series default
6505  steht dort für einen Zeilenumbruch.
6506 \end_layout
6507
6508 \end_inset
6509
6510
6511 \end_layout
6512
6513 \begin_layout Standard
6514 Für alle oben aufgelisteten Zeichen kann die Größe mit den in den folgenden
6515  zwei Unterkapiteln beschriebenen Befehlen eingestellt werden.
6516  Dabei können dann statt den Befehlen 
6517 \series bold
6518
6519 \backslash
6520 langle
6521 \series default
6522  und 
6523 \series bold
6524
6525 \backslash
6526 rangle
6527 \series default
6528  direkt die Zeichen < und > verwendet werden.
6529 \end_layout
6530
6531 \begin_layout Subsubsection
6532 Manuelle Klammergrößen
6533 \begin_inset CommandInset label
6534 LatexCommand label
6535 name "sub:Manuelle-Klammergrößen"
6536
6537 \end_inset
6538
6539
6540 \begin_inset Index idx
6541 status collapsed
6542
6543 \begin_layout Plain Layout
6544 Klammergrößen ! manuelle
6545 \end_layout
6546
6547 \end_inset
6548
6549
6550 \end_layout
6551
6552 \begin_layout Standard
6553 Möchte man die Klammergröße manuell festlegen, kann man dies mittels der
6554  LaTeX-Befehle 
6555 \series bold
6556
6557 \backslash
6558 big
6559 \series default
6560
6561 \begin_inset Index idx
6562 status collapsed
6563
6564 \begin_layout Plain Layout
6565 Befehle ! B ! 
6566 \backslash
6567 big
6568 \end_layout
6569
6570 \end_inset
6571
6572
6573 \series bold
6574
6575 \backslash
6576 Big
6577 \series default
6578
6579 \series bold
6580
6581 \backslash
6582 bigg
6583 \series default
6584  und 
6585 \series bold
6586
6587 \backslash
6588 Bigg
6589 \series default
6590  tun.
6591  
6592 \series bold
6593
6594 \backslash
6595 big
6596 \series default
6597  steht hierbei für die kleinste und 
6598 \series bold
6599
6600 \backslash
6601 Bigg
6602 \series default
6603  für die größte Klammergröße.
6604 \end_layout
6605
6606 \begin_layout Standard
6607 Diese Befehle werden benutzt um Klammerebenen optisch hervorzuheben:
6608 \end_layout
6609
6610 \begin_layout Standard
6611 \align center
6612 \begin_inset Tabular
6613 <lyxtabular version="3" rows="2" columns="2">
6614 <features tabularvalignment="middle">
6615 <column alignment="center" valignment="top" width="0pt">
6616 <column alignment="center" valignment="top" width="0pt">
6617 <row>
6618 <cell alignment="center" valignment="top" usebox="none">
6619 \begin_inset Text
6620
6621 \begin_layout Plain Layout
6622 einheitliche Klammergröße:
6623 \end_layout
6624
6625 \end_inset
6626 </cell>
6627 <cell alignment="center" valignment="top" usebox="none">
6628 \begin_inset Text
6629
6630 \begin_layout Plain Layout
6631 \begin_inset Formula $((A+B)(A-B))^{C}\raisebox{-4mm}{}$
6632 \end_inset
6633
6634
6635 \end_layout
6636
6637 \end_inset
6638 </cell>
6639 </row>
6640 <row>
6641 <cell alignment="center" valignment="top" usebox="none">
6642 \begin_inset Text
6643
6644 \begin_layout Plain Layout
6645 besser sieht das so aus:
6646 \end_layout
6647
6648 \end_inset
6649 </cell>
6650 <cell alignment="center" valignment="top" usebox="none">
6651 \begin_inset Text
6652
6653 \begin_layout Plain Layout
6654 \begin_inset Formula $\Big((A+B)(A-B)\Big)^{C}$
6655 \end_inset
6656
6657
6658 \end_layout
6659
6660 \end_inset
6661 </cell>
6662 </row>
6663 </lyxtabular>
6664
6665 \end_inset
6666
6667
6668 \begin_inset Note Note
6669 status collapsed
6670
6671 \begin_layout Plain Layout
6672
6673 \series bold
6674
6675 \backslash
6676 raisebox
6677 \series default
6678  dient nur
6679 \end_layout
6680
6681 \begin_layout Plain Layout
6682 als Abstandhalter.
6683 \end_layout
6684
6685 \end_inset
6686
6687
6688 \end_layout
6689
6690 \begin_layout Standard
6691 Für die zweite Formel wurde der Befehl 
6692 \series bold
6693
6694 \backslash
6695 Big((A+B)(A-B)
6696 \backslash
6697 Big)^
6698 \begin_inset ERT
6699 status collapsed
6700
6701 \begin_layout Plain Layout
6702
6703
6704 \backslash
6705 leer 
6706 \end_layout
6707
6708 \end_inset
6709
6710 C
6711 \series default
6712  verwendet.
6713 \end_layout
6714
6715 \begin_layout Standard
6716 Hier alle Klammergrößen in der Übersicht:
6717 \end_layout
6718
6719 \begin_layout Standard
6720 \align center
6721
6722 \backslash
6723 Bigg(
6724 \backslash
6725 exp
6726 \backslash
6727 bigg<
6728 \backslash
6729 Big[
6730 \backslash
6731 big{
6732 \backslash
6733 ln(3x)
6734 \backslash
6735 big}^2
6736 \begin_inset ERT
6737 status collapsed
6738
6739 \begin_layout Plain Layout
6740
6741
6742 \backslash
6743 leer 
6744 \end_layout
6745
6746 \end_inset
6747
6748
6749 \backslash
6750 sin(x)
6751 \backslash
6752 Big]^
6753 \begin_inset ERT
6754 status collapsed
6755
6756 \begin_layout Plain Layout
6757
6758
6759 \backslash
6760 leer 
6761 \end_layout
6762
6763 \end_inset
6764
6765 A
6766 \begin_inset ERT
6767 status collapsed
6768
6769 \begin_layout Plain Layout
6770
6771
6772 \backslash
6773 leer 
6774 \end_layout
6775
6776 \end_inset
6777
6778
6779 \backslash
6780 bigg>
6781 \backslash
6782 Bigg)^0,5
6783 \end_layout
6784
6785 \begin_layout Standard
6786 \align center
6787 \begin_inset Formula $\Bigg(\exp\bigg<\Big[\big\{\ln(3x)\big\}^{2}\sin(x)\Big]^{A}\bigg>\Bigg)^{0,5}$
6788 \end_inset
6789
6790
6791 \end_layout
6792
6793 \begin_layout Standard
6794 Es gibt außer den 
6795 \series bold
6796
6797 \backslash
6798 big
6799 \series default
6800 -Befehlen noch die Variante 
6801 \series bold
6802
6803 \backslash
6804 bigm
6805 \series default
6806
6807 \begin_inset Index idx
6808 status collapsed
6809
6810 \begin_layout Plain Layout
6811 Befehle ! B ! 
6812 \backslash
6813 bigm
6814 \end_layout
6815
6816 \end_inset
6817
6818 , die etwas mehr Leerraum zwischen Klammer und Klammerinhalt erzeugt und
6819  die Variante 
6820 \series bold
6821
6822 \backslash
6823 bigl
6824 \series default
6825 -
6826 \series bold
6827
6828 \backslash
6829 bigr
6830 \series default
6831
6832 \begin_inset Index idx
6833 status collapsed
6834
6835 \begin_layout Plain Layout
6836 Befehle ! B ! 
6837 \backslash
6838 bigl - 
6839 \backslash
6840 bigr
6841 \end_layout
6842
6843 \end_inset
6844
6845 , die keinen zusätzlichen Leerraum erzeugt.
6846  Das 
6847 \emph on
6848 l
6849 \emph default
6850  am Ende des Befehls 
6851 \series bold
6852
6853 \backslash
6854 bigl
6855 \series default
6856  steht für eine linke Klammer; für eine rechte Klammer wird dieses durch
6857  ein 
6858 \emph on
6859 r
6860 \emph default
6861  ersetzt.
6862  Eine linke oder rechte Klammer kann je eine öffnende oder schließende Klammer
6863  sein.
6864 \end_layout
6865
6866 \begin_layout Standard
6867 In der folgenden Tabelle sind die Varianten miteinander verglichen:
6868 \end_layout
6869
6870 \begin_layout Standard
6871 \align center
6872 \begin_inset Tabular
6873 <lyxtabular version="3" rows="5" columns="2">
6874 <features tabularvalignment="middle">
6875 <column alignment="center" valignment="middle" width="0">
6876 <column alignment="center" valignment="middle" width="0">
6877 <row>
6878 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
6879 \begin_inset Text
6880
6881 \begin_layout Plain Layout
6882 Befehl
6883 \end_layout
6884
6885 \end_inset
6886 </cell>
6887 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6888 \begin_inset Text
6889
6890 \begin_layout Plain Layout
6891 Ergebnis
6892 \begin_inset Note Note
6893 status collapsed
6894
6895 \begin_layout Plain Layout
6896
6897 \series bold
6898
6899 \backslash
6900 raisebox
6901 \series default
6902  dient nur als Abstandhalter.
6903 \end_layout
6904
6905 \end_inset
6906
6907
6908 \end_layout
6909
6910 \end_inset
6911 </cell>
6912 </row>
6913 <row>
6914 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6915 \begin_inset Text
6916
6917 \begin_layout Plain Layout
6918
6919 \backslash
6920 Bigm(
6921 \backslash
6922 bigm(
6923 \backslash
6924 ln(3x)
6925 \backslash
6926 bigm)^2
6927 \begin_inset ERT
6928 status collapsed
6929
6930 \begin_layout Plain Layout
6931
6932
6933 \backslash
6934 leer 
6935 \end_layout
6936
6937 \end_inset
6938
6939
6940 \backslash
6941 Bigm)
6942 \end_layout
6943
6944 \end_inset
6945 </cell>
6946 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6947 \begin_inset Text
6948
6949 \begin_layout Plain Layout
6950 \begin_inset Formula $\raisebox{5.5mm}{}\Bigm(\bigm(\ln(3x)\bigm)^{2}\Bigm)\raisebox{-3.25mm}{}$
6951 \end_inset
6952
6953
6954 \end_layout
6955
6956 \end_inset
6957 </cell>
6958 </row>
6959 <row>
6960 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6961 \begin_inset Text
6962
6963 \begin_layout Plain Layout
6964
6965 \backslash
6966 Big(
6967 \backslash
6968 big(
6969 \backslash
6970 ln(3x)
6971 \backslash
6972 big)^2
6973 \begin_inset ERT
6974 status collapsed
6975
6976 \begin_layout Plain Layout
6977
6978
6979 \backslash
6980 leer 
6981 \end_layout
6982
6983 \end_inset
6984
6985
6986 \backslash
6987 Big)
6988 \end_layout
6989
6990 \end_inset
6991 </cell>
6992 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6993 \begin_inset Text
6994
6995 \begin_layout Plain Layout
6996 \begin_inset Formula $\raisebox{5.5mm}{}\Big(\big(\ln(3x)\big)^{2}\Big)\raisebox{-3.25mm}{}$
6997 \end_inset
6998
6999
7000 \end_layout
7001
7002 \end_inset
7003 </cell>
7004 </row>
7005 <row>
7006 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
7007 \begin_inset Text
7008
7009 \begin_layout Plain Layout
7010
7011 \backslash
7012 Bigl(
7013 \backslash
7014 bigl(
7015 \backslash
7016 ln(3x)
7017 \backslash
7018 bigr)^2
7019 \begin_inset ERT
7020 status collapsed
7021
7022 \begin_layout Plain Layout
7023
7024
7025 \backslash
7026 leer 
7027 \end_layout
7028
7029 \end_inset
7030
7031
7032 \backslash
7033 Bigr)
7034 \end_layout
7035
7036 \end_inset
7037 </cell>
7038 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
7039 \begin_inset Text
7040
7041 \begin_layout Plain Layout
7042 \begin_inset Formula $\raisebox{5.5mm}{}\Bigl(\bigl(\ln(3x)\bigr)^{2}\Bigr)\raisebox{-3.25mm}{}$
7043 \end_inset
7044
7045
7046 \end_layout
7047
7048 \end_inset
7049 </cell>
7050 </row>
7051 <row>
7052 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
7053 \begin_inset Text
7054
7055 \begin_layout Plain Layout
7056
7057 \backslash
7058 bigl)
7059 \backslash
7060 ln(3x)
7061 \backslash
7062 bigr(
7063 \end_layout
7064
7065 \end_inset
7066 </cell>
7067 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
7068 \begin_inset Text
7069
7070 \begin_layout Plain Layout
7071 \begin_inset Formula $\raisebox{4.5mm}{}\bigl)\ln(3x)\bigr(\raisebox{-2mm}{}$
7072 \end_inset
7073
7074
7075 \end_layout
7076
7077 \end_inset
7078 </cell>
7079 </row>
7080 </lyxtabular>
7081
7082 \end_inset
7083
7084
7085 \end_layout
7086
7087 \begin_layout Subsubsection
7088 Automatische Klammergrößen
7089 \begin_inset CommandInset label
7090 LatexCommand label
7091 name "sub:Automatische-Klammergrößen"
7092
7093 \end_inset
7094
7095
7096 \begin_inset Index idx
7097 status collapsed
7098
7099 \begin_layout Plain Layout
7100 Klammergrößen ! automatische
7101 \end_layout
7102
7103 \end_inset
7104
7105
7106 \end_layout
7107
7108 \begin_layout Standard
7109 Klammern variabler Größe können mit den Befehlen 
7110 \series bold
7111
7112 \backslash
7113 left
7114 \series default
7115
7116 \begin_inset Index idx
7117 status collapsed
7118
7119 \begin_layout Plain Layout
7120 Befehle ! L ! 
7121 \backslash
7122 left
7123 \end_layout
7124
7125 \end_inset
7126
7127  und 
7128 \series bold
7129
7130 \backslash
7131 right
7132 \series default
7133
7134 \begin_inset Index idx
7135 status collapsed
7136
7137 \begin_layout Plain Layout
7138 Befehle ! R ! 
7139 \backslash
7140 right
7141 \end_layout
7142
7143 \end_inset
7144
7145  oder über den Mathe-Werkzeugleistenknopf
7146 \family sans
7147  
7148 \family default
7149
7150 \begin_inset Graphics
7151         filename ../../images/dialog-show_mathdelimiter.png
7152         scale 85
7153
7154 \end_inset
7155
7156  eingefügt werden.
7157  Auf 
7158 \series bold
7159
7160 \backslash
7161 left
7162 \series default
7163  und 
7164 \series bold
7165
7166 \backslash
7167 right
7168 \series default
7169  muss unmittelbar die gewünschte Klammer folgen.
7170  Die Klammergröße wird dann bei der Ausgabe automatisch berechnet.
7171 \end_layout
7172
7173 \begin_layout Standard
7174 \align center
7175 normale Klammer: Der Befehl 
7176 \series bold
7177
7178 \backslash
7179 ln(
7180 \backslash
7181 frac
7182 \begin_inset ERT
7183 status collapsed
7184
7185 \begin_layout Plain Layout
7186
7187
7188 \backslash
7189 leer 
7190 \end_layout
7191
7192 \end_inset
7193
7194 A
7195 \begin_inset Formula $\downarrow$
7196 \end_inset
7197
7198 C
7199 \begin_inset ERT
7200 status collapsed
7201
7202 \begin_layout Plain Layout
7203
7204
7205 \backslash
7206 leer 
7207 \end_layout
7208
7209 \end_inset
7210
7211 )
7212 \series default
7213  ergibt
7214 \begin_inset Formula \[
7215 \ln(\frac{A}{C})\]
7216
7217 \end_inset
7218
7219
7220 \end_layout
7221
7222 \begin_layout Standard
7223 \align center
7224 mehrzeilige Klammer: Der Befehl 
7225 \series bold
7226
7227 \backslash
7228 ln
7229 \backslash
7230 left(
7231 \backslash
7232 frac
7233 \begin_inset ERT
7234 status collapsed
7235
7236 \begin_layout Plain Layout
7237
7238
7239 \backslash
7240 leer 
7241 \end_layout
7242
7243 \end_inset
7244
7245 A
7246 \begin_inset Formula $\downarrow$
7247 \end_inset
7248
7249 C
7250 \begin_inset ERT
7251 status collapsed
7252
7253 \begin_layout Plain Layout
7254
7255
7256 \backslash
7257 leer 
7258 \end_layout
7259
7260 \end_inset
7261
7262
7263 \backslash
7264 right)
7265 \series default
7266  ergibt
7267 \begin_inset Formula \[
7268 \ln\left(\frac{A}{C}\right)\]
7269
7270 \end_inset
7271
7272
7273 \end_layout
7274
7275 \begin_layout Standard
7276 An Stelle von 
7277 \series bold
7278
7279 \backslash
7280 left
7281 \series default
7282  und 
7283 \series bold
7284
7285 \backslash
7286 right
7287 \series default
7288  kann man die Tastenkürzel 
7289 \family sans
7290 Alt+M
7291 \begin_inset space ~
7292 \end_inset
7293
7294 Klammer
7295 \family default
7296  verwenden.
7297  Das hat den Vorteil, dass man in LyX sofort die wahre Klammergröße sieht
7298  und dass die rechte Klammer gleich mit erstellt wird.
7299 \begin_inset Newline newline
7300 \end_inset
7301
7302 Der Befehl für das letzte Beispiel würde dann lauten: 
7303 \series bold
7304
7305 \backslash
7306 ln Alt+M
7307 \series default
7308  
7309 \series bold
7310 (
7311 \backslash
7312 frac
7313 \begin_inset ERT
7314 status collapsed
7315
7316 \begin_layout Plain Layout
7317
7318
7319 \backslash
7320 leer 
7321 \end_layout
7322
7323 \end_inset
7324
7325 A
7326 \begin_inset Formula $\downarrow$
7327 \end_inset
7328
7329 C
7330 \end_layout
7331
7332 \begin_layout Standard
7333 Will man nur eine Klammerhälfte erstellen, schreibt man für die weggelassene
7334  Klammer einen Punkt.
7335  So ergibt z.
7336 \begin_inset space \thinspace{}
7337 \end_inset
7338
7339 B.
7340  der Befehl 
7341 \series bold
7342
7343 \backslash
7344 left.
7345 \backslash
7346 frac
7347 \begin_inset ERT
7348 status collapsed
7349
7350 \begin_layout Plain Layout
7351
7352
7353 \backslash
7354 leer 
7355 \end_layout
7356
7357 \end_inset
7358
7359 A
7360 \begin_inset Formula $\downarrow$
7361 \end_inset
7362
7363 B
7364 \begin_inset ERT
7365 status collapsed
7366
7367 \begin_layout Plain Layout
7368
7369
7370 \backslash
7371 leer 
7372 \end_layout
7373
7374 \end_inset
7375
7376
7377 \backslash
7378 right}
7379 \series default
7380
7381 \begin_inset space \thinspace{}
7382 \end_inset
7383
7384 :
7385 \series bold
7386
7387 \begin_inset Formula \[
7388 \left.\frac{A}{B}\right\} \]
7389
7390 \end_inset
7391
7392
7393 \series default
7394 Die Befehle 
7395 \series bold
7396
7397 \backslash
7398 left
7399 \series default
7400  und 
7401 \series bold
7402
7403 \backslash
7404 right
7405 \series default
7406  werden beim Neu laden des Dokuments von LyX in Klammern der richtigen Größe
7407  umgewandelt.
7408  Für eine weggelassene Klammer erscheint in LyX eine gestrichelte Linie.
7409 \end_layout
7410
7411 \begin_layout Standard
7412 \begin_inset VSpace bigskip
7413 \end_inset
7414
7415 Da alle gängigen LaTeX-Distributionen eTeX, eine Erweiterung von LaTeX,
7416  verwenden, steht für alle Klammern und Begrenzungszeichen zusätzlich der
7417  Befehl 
7418 \series bold
7419
7420 \backslash
7421 middle
7422 \series default
7423
7424 \begin_inset Index idx
7425 status collapsed
7426
7427 \begin_layout Plain Layout
7428 Befehle ! M ! 
7429 \backslash
7430 middle
7431 \end_layout
7432
7433 \end_inset
7434
7435  zur Verfügung.
7436  Durch diesen wird das folgende Zeichen an die Höhe der umgebenden Klammern
7437  angepasst, was z.
7438 \begin_inset space \thinspace{}
7439 \end_inset
7440
7441 B.
7442  für physikalische Vektoren von Nutzen ist:
7443 \begin_inset Formula \[
7444 \left\langle \phi\:\middle|\: J=\frac{3}{2}\,,\, M_{J}\right\rangle \]
7445
7446 \end_inset
7447
7448 Für physikalische Vektoren gibt es ein spezielles LaTeX-Paket, das in 
7449 \begin_inset CommandInset ref
7450 LatexCommand ref
7451 reference "sub:Physikalische-Vektoren"
7452
7453 \end_inset
7454
7455  beschrieben ist.
7456 \end_layout
7457
7458 \begin_layout Subsection
7459 Horizontale Klammern
7460 \begin_inset Index idx
7461 status collapsed
7462
7463 \begin_layout Plain Layout
7464 Klammern ! horizontale
7465 \end_layout
7466
7467 \end_inset
7468
7469
7470 \end_layout
7471
7472 \begin_layout Standard
7473 \align center
7474 \begin_inset Tabular
7475 <lyxtabular version="3" rows="4" columns="2">
7476 <features tabularvalignment="middle">
7477 <column alignment="center" valignment="top" width="0pt">
7478 <column alignment="center" valignment="top" width="0pt">
7479 <row>
7480 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
7481 \begin_inset Text
7482
7483 \begin_layout Plain Layout
7484 Befehl
7485 \begin_inset Note Note
7486 status collapsed
7487
7488 \begin_layout Plain Layout
7489
7490 \series bold
7491
7492 \backslash
7493 raisebox
7494 \series default
7495  dient nur als Abstandhalter.
7496 \end_layout
7497
7498 \end_inset
7499
7500
7501 \end_layout
7502
7503 \end_inset
7504 </cell>
7505 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
7506 \begin_inset Text
7507
7508 \begin_layout Plain Layout
7509 Ergebnis
7510 \end_layout
7511
7512 \end_inset
7513 </cell>
7514 </row>
7515 <row>
7516 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7517 \begin_inset Text
7518
7519 \begin_layout Plain Layout
7520 \begin_inset ERT
7521 status collapsed
7522
7523 \begin_layout Plain Layout
7524
7525
7526 \backslash
7527 raisebox{2.3mm}{
7528 \end_layout
7529
7530 \end_inset
7531
7532
7533 \backslash
7534 overbrace
7535 \begin_inset ERT
7536 status collapsed
7537
7538 \begin_layout Plain Layout
7539
7540
7541 \backslash
7542 leer 
7543 \end_layout
7544
7545 \end_inset
7546
7547 A+B
7548 \begin_inset ERT
7549 status collapsed
7550
7551 \begin_layout Plain Layout
7552
7553
7554 \backslash
7555 leer 
7556 \end_layout
7557
7558 \end_inset
7559
7560 ^
7561 \begin_inset ERT
7562 status collapsed
7563
7564 \begin_layout Plain Layout
7565
7566
7567 \backslash
7568 leer 
7569 \end_layout
7570
7571 \end_inset
7572
7573 3
7574 \begin_inset ERT
7575 status collapsed
7576
7577 \begin_layout Plain Layout
7578
7579 }
7580 \end_layout
7581
7582 \end_inset
7583
7584
7585 \begin_inset Index idx
7586 status collapsed
7587
7588 \begin_layout Plain Layout
7589 Befehle ! O ! 
7590 \backslash
7591 overbrace
7592 \end_layout
7593
7594 \end_inset
7595
7596
7597 \end_layout
7598
7599 \end_inset
7600 </cell>
7601 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7602 \begin_inset Text
7603
7604 \begin_layout Plain Layout
7605 \begin_inset Formula $\overbrace{A+B}^{3}$
7606 \end_inset
7607
7608
7609 \end_layout
7610
7611 \end_inset
7612 </cell>
7613 </row>
7614 <row>
7615 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
7616 \begin_inset Text
7617
7618 \begin_layout Plain Layout
7619 \begin_inset ERT
7620 status collapsed
7621
7622 \begin_layout Plain Layout
7623
7624
7625 \backslash
7626 raisebox{-2.2mm}{
7627 \end_layout
7628
7629 \end_inset
7630
7631
7632 \backslash
7633 underbrace
7634 \begin_inset ERT
7635 status collapsed
7636
7637 \begin_layout Plain Layout
7638
7639
7640 \backslash
7641 leer 
7642 \end_layout
7643
7644 \end_inset
7645
7646 A+B
7647 \begin_inset ERT
7648 status collapsed
7649
7650 \begin_layout Plain Layout
7651
7652
7653 \backslash
7654 leer 
7655 \end_layout
7656
7657 \end_inset
7658
7659 _5
7660 \begin_inset ERT
7661 status collapsed
7662
7663 \begin_layout Plain Layout
7664
7665 }
7666 \end_layout
7667
7668 \end_inset
7669
7670
7671 \begin_inset Index idx
7672 status collapsed
7673
7674 \begin_layout Plain Layout
7675 Befehle ! U ! 
7676 \backslash
7677 underbrace
7678 \end_layout
7679
7680 \end_inset
7681
7682
7683 \end_layout
7684
7685 \end_inset
7686 </cell>
7687 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
7688 \begin_inset Text
7689
7690 \begin_layout Plain Layout
7691 \begin_inset Formula $\underbrace{A+B}_{5}$
7692 \end_inset
7693
7694
7695 \end_layout
7696
7697 \end_inset
7698 </cell>
7699 </row>
7700 <row>
7701 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
7702 \begin_inset Text
7703
7704 \begin_layout Plain Layout
7705
7706 \backslash
7707 overbrace
7708 \begin_inset ERT
7709 status collapsed
7710
7711 \begin_layout Plain Layout
7712
7713
7714 \backslash
7715 leer 
7716 \end_layout
7717
7718 \end_inset
7719
7720
7721 \backslash
7722 underbrace
7723 \begin_inset ERT
7724 status collapsed
7725
7726 \begin_layout Plain Layout
7727
7728
7729 \backslash
7730 leer 
7731 \end_layout
7732
7733 \end_inset
7734
7735 A+B_w
7736 \begin_inset ERT
7737 status collapsed
7738
7739 \begin_layout Plain Layout
7740
7741
7742 \backslash
7743 leer 
7744 \end_layout
7745
7746 \end_inset
7747
7748
7749 \begin_inset ERT
7750 status collapsed
7751
7752 \begin_layout Plain Layout
7753
7754
7755 \backslash
7756 leer 
7757 \end_layout
7758
7759 \end_inset
7760
7761 _7
7762 \begin_inset ERT
7763 status collapsed
7764
7765 \begin_layout Plain Layout
7766
7767
7768 \backslash
7769 leer 
7770 \end_layout
7771
7772 \end_inset
7773
7774
7775 \begin_inset ERT
7776 status collapsed
7777
7778 \begin_layout Plain Layout
7779
7780
7781 \backslash
7782 leer 
7783 \end_layout
7784
7785 \end_inset
7786
7787 ^
7788 \begin_inset ERT
7789 status collapsed
7790
7791 \begin_layout Plain Layout
7792
7793
7794 \backslash
7795 leer 
7796 \end_layout
7797
7798 \end_inset
7799
7800 C
7801 \end_layout
7802
7803 \end_inset
7804 </cell>
7805 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
7806 \begin_inset Text
7807
7808 \begin_layout Plain Layout
7809 \begin_inset Formula $\overbrace{\underbrace{A+B_{w}}_{7}}^{C}$
7810 \end_inset
7811
7812
7813 \end_layout
7814
7815 \end_inset
7816 </cell>
7817 </row>
7818 </lyxtabular>
7819
7820 \end_inset
7821
7822
7823 \end_layout
7824
7825 \begin_layout Standard
7826 Beim letzten Beispiel spielt es keine Rolle, ob man zuerst 
7827 \series bold
7828
7829 \backslash
7830 overbrace
7831 \series default
7832  oder 
7833 \series bold
7834
7835 \backslash
7836 underbrace
7837 \series default
7838  eingibt.
7839 \end_layout
7840
7841 \begin_layout Standard
7842 \begin_inset VSpace bigskip
7843 \end_inset
7844
7845 Benötigt man Klammern, die sich überschneiden, muss man die in 
7846 \begin_inset CommandInset ref
7847 LatexCommand ref
7848 reference "sec:Mehrzeilige-Formeln"
7849
7850 \end_inset
7851
7852  beschriebenen mehrzeiligen Formeln verwenden:
7853 \begin_inset Formula \begin{eqnarray*}
7854 A & = & \underbrace{gggg+bbqq}_{r}+\: dddd\\
7855  &  & \hphantom{gggg+\:}\underbrace{\hphantom{bbqq+dddd}}_{s}
7856 \end{eqnarray*}
7857
7858 \end_inset
7859
7860 In die erste Zeile wird die Formel zusammen mit der ersten Klammer eingegeben.
7861  Dabei ist es wichtig, dass vor dem ersten 
7862 \begin_inset Formula $d$
7863 \end_inset
7864
7865  der Abstandsbefehl
7866 \begin_inset Foot
7867 status collapsed
7868
7869 \begin_layout Plain Layout
7870 Abstandsbefehle sind in 
7871 \begin_inset CommandInset ref
7872 LatexCommand ref
7873 reference "sub:Vordefinierter-Leerraum"
7874
7875 \end_inset
7876
7877  erklärt.
7878 \end_layout
7879
7880 \end_inset
7881
7882  
7883 \series bold
7884
7885 \backslash
7886 :
7887 \series default
7888  eingegeben wird, denn die nach dem 
7889 \begin_inset Formula $q$
7890 \end_inset
7891
7892  endende Klammer verhindert, dass das nachfolgende 
7893 \begin_inset Quotes gld
7894 \end_inset
7895
7896 +
7897 \begin_inset Quotes grd
7898 \end_inset
7899
7900  von Leerraum umgeben ist.
7901 \begin_inset Foot
7902 status collapsed
7903
7904 \begin_layout Plain Layout
7905 weil eine Klammer nicht als Zeichen gilt, siehe 
7906 \begin_inset CommandInset ref
7907 LatexCommand ref
7908 reference "sub:Binäre-Operatoren"
7909
7910 \end_inset
7911
7912
7913 \end_layout
7914
7915 \end_inset
7916
7917  In die zweite Zeile wird die zweite Klammer eingegeben.
7918  Da sie vor dem 
7919 \begin_inset Formula $b$
7920 \end_inset
7921
7922  beginnen soll, gibt man zuerst 
7923 \series bold
7924
7925 \backslash
7926 hphantom{gggg+
7927 \backslash
7928 :}
7929 \series default
7930  ein.
7931 \begin_inset Foot
7932 status collapsed
7933
7934 \begin_layout Plain Layout
7935 mehr zu 
7936 \series bold
7937
7938 \backslash
7939 hphantom
7940 \series default
7941  siehe 
7942 \begin_inset CommandInset ref
7943 LatexCommand ref
7944 reference "sub:Platzhalter"
7945
7946 \end_inset
7947
7948 .
7949 \end_layout
7950
7951 \end_inset
7952
7953  Dieser Leerraum wird benötigt, weil das 
7954 \begin_inset Quotes gld
7955 \end_inset
7956
7957 +
7958 \begin_inset Quotes grd
7959 \end_inset
7960
7961  in der Formel auch von Leerraum umgeben ist.
7962  Die Klammer wird unter den Befehl 
7963 \series bold
7964
7965 \backslash
7966 hphantom{bbqq+dddd}
7967 \series default
7968  gesetzt.
7969 \end_layout
7970
7971 \begin_layout Standard
7972 Komplizierter wird es, wenn sich Klammern über und unter der Formel überschneide
7973 n, wie in folgendem Beispiel:
7974 \begin_inset ERT
7975 status collapsed
7976
7977 \begin_layout Plain Layout
7978
7979
7980 \backslash
7981 setlength{
7982 \backslash
7983 jot}{-6pt}
7984 \end_layout
7985
7986 \end_inset
7987
7988
7989 \begin_inset Formula \begin{eqnarray*}
7990  &  & \hphantom{gggg+\:}\overbrace{\hphantom{bbqq+dddd}}^{s}\\
7991 A & = & \underbrace{gggg+bbqq}_{r}+\: dddd
7992 \end{eqnarray*}
7993
7994 \end_inset
7995
7996
7997 \begin_inset ERT
7998 status collapsed
7999
8000 \begin_layout Plain Layout
8001
8002
8003 \backslash
8004 setlength{
8005 \backslash
8006 jot}{3pt}
8007 \end_layout
8008
8009 \end_inset
8010
8011 Die erste Formelzeile ist gleich der zweiten Zeile des vorigen Beispiels,
8012  mit dem Unterschied, dass sich die Klammer oben befindet.
8013  Die zweite Zeile enthält die Formel zusammen mit der zweiten Klammer.
8014  Damit sich zwischen oberer Klammer in der ersten Zeile und der Formel in
8015  der zweiten Zeile kein Leerraum befindet, muss der Zeilenabstand verändert
8016  werden.
8017  Aufgrund eines Fehlers in LyX ist dies nicht ohne Weiteres möglich
8018 \begin_inset Foot
8019 status collapsed
8020
8021 \begin_layout Plain Layout
8022 \begin_inset CommandInset href
8023 LatexCommand href
8024 name "LyX-Fehler #1505"
8025 target "http://www.lyx.org/trac/ticket/1505"
8026
8027 \end_inset
8028
8029
8030 \end_layout
8031
8032 \end_inset
8033
8034 .
8035  Es muss als Lösung des Problems der globale Formelzeilenabstand 
8036 \series bold
8037
8038 \backslash
8039 jot
8040 \series default
8041
8042 \begin_inset Index idx
8043 status collapsed
8044
8045 \begin_layout Plain Layout
8046 Befehle ! J ! 
8047 \backslash
8048 jot
8049 \end_layout
8050
8051 \end_inset
8052
8053  vor der Formel mit dem Befehl 
8054 \series bold
8055
8056 \backslash
8057 setlength{
8058 \backslash
8059 jot}{-6pt}
8060 \series default
8061  im TeX-Modus auf den Wert -6
8062 \begin_inset space \thinspace{}
8063 \end_inset
8064
8065 pt geändert.
8066  Nach der Formel wird 
8067 \series bold
8068
8069 \backslash
8070 jot
8071 \series default
8072  mit demselben Befehl wieder auf den Standardwert 3
8073 \begin_inset space \thinspace{}
8074 \end_inset
8075
8076 pt zurückgesetzt.
8077  Genaueres zum Zeilenabstand in Formeln ist in 
8078 \begin_inset CommandInset ref
8079 LatexCommand ref
8080 reference "sub:Zeilenabstand"
8081
8082 \end_inset
8083
8084  erklärt.
8085 \end_layout
8086
8087 \begin_layout Section
8088 Pfeile
8089 \begin_inset Index idx
8090 status collapsed
8091
8092 \begin_layout Plain Layout
8093 Pfeile
8094 \end_layout
8095
8096 \end_inset
8097
8098
8099 \end_layout
8100
8101 \begin_layout Standard
8102 Pfeile können über den Mathe-Werkzeugleistenknopf 
8103 \begin_inset Graphics
8104         filename ../../images/math/leftarrow.png
8105         scale 85
8106
8107 \end_inset
8108
8109  oder mit den Befehlen eingefügt werden, die in den folgenden Unterkapiteln
8110  aufgelistet sind.
8111 \end_layout
8112
8113 \begin_layout Subsection
8114 Horizontale Pfeile
8115 \begin_inset Index idx
8116 status collapsed
8117
8118 \begin_layout Plain Layout
8119 Pfeile ! horizontale
8120 \end_layout
8121
8122 \end_inset
8123
8124
8125 \end_layout
8126
8127 \begin_layout Standard
8128 \begin_inset space \hfill{}
8129 \end_inset
8130
8131
8132 \begin_inset Tabular
8133 <lyxtabular version="3" rows="8" columns="2">
8134 <features tabularvalignment="middle">
8135 <column alignment="center" valignment="top" width="0pt">
8136 <column alignment="center" valignment="top" width="0pt">
8137 <row>
8138 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
8139 \begin_inset Text
8140
8141 \begin_layout Plain Layout
8142 Befehl
8143 \end_layout
8144
8145 \end_inset
8146 </cell>
8147 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8148 \begin_inset Text
8149
8150 \begin_layout Plain Layout
8151 Ergebnis
8152 \end_layout
8153
8154 \end_inset
8155 </cell>
8156 </row>
8157 <row>
8158 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8159 \begin_inset Text
8160
8161 \begin_layout Plain Layout
8162
8163 \backslash
8164 gets
8165 \end_layout
8166
8167 \end_inset
8168 </cell>
8169 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8170 \begin_inset Text
8171
8172 \begin_layout Plain Layout
8173 \begin_inset Formula $\gets$
8174 \end_inset
8175
8176
8177 \end_layout
8178
8179 \end_inset
8180 </cell>
8181 </row>
8182 <row>
8183 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8184 \begin_inset Text
8185
8186 \begin_layout Plain Layout
8187
8188 \backslash
8189 Leftarrow
8190 \end_layout
8191
8192 \end_inset
8193 </cell>
8194 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8195 \begin_inset Text
8196
8197 \begin_layout Plain Layout
8198 \begin_inset Formula $\Leftarrow$
8199 \end_inset
8200
8201
8202 \end_layout
8203
8204 \end_inset
8205 </cell>
8206 </row>
8207 <row>
8208 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
8209 \begin_inset Text
8210
8211 \begin_layout Plain Layout
8212
8213 \backslash
8214 longleftarrow
8215 \end_layout
8216
8217 \end_inset
8218 </cell>
8219 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8220 \begin_inset Text
8221
8222 \begin_layout Plain Layout
8223 \begin_inset Formula $\longleftarrow$
8224 \end_inset
8225
8226
8227 \end_layout
8228
8229 \end_inset
8230 </cell>
8231 </row>
8232 <row>
8233 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
8234 \begin_inset Text
8235
8236 \begin_layout Plain Layout
8237
8238 \backslash
8239 Longleftarrow
8240 \end_layout
8241
8242 \end_inset
8243 </cell>
8244 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
8245 \begin_inset Text
8246
8247 \begin_layout Plain Layout
8248 \begin_inset Formula $\Longleftarrow$
8249 \end_inset
8250
8251
8252 \end_layout
8253
8254 \end_inset
8255 </cell>
8256 </row>
8257 <row>
8258 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
8259 \begin_inset Text
8260
8261 \begin_layout Plain Layout
8262
8263 \backslash
8264 leftharpoonup
8265 \end_layout
8266
8267 \end_inset
8268 </cell>
8269 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
8270 \begin_inset Text
8271
8272 \begin_layout Plain Layout
8273 \begin_inset Formula $\leftharpoonup$
8274 \end_inset
8275
8276
8277 \end_layout
8278
8279 \end_inset
8280 </cell>
8281 </row>
8282 <row>
8283 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
8284 \begin_inset Text
8285
8286 \begin_layout Plain Layout
8287
8288 \backslash
8289 leftharpoondown
8290 \end_layout
8291
8292 \end_inset
8293 </cell>
8294 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
8295 \begin_inset Text
8296
8297 \begin_layout Plain Layout
8298 \begin_inset Formula $\leftharpoondown$
8299 \end_inset
8300
8301
8302 \end_layout
8303
8304 \end_inset
8305 </cell>
8306 </row>
8307 <row>
8308 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
8309 \begin_inset Text
8310
8311 \begin_layout Plain Layout
8312
8313 \backslash
8314 hookleftarrow
8315 \end_layout
8316
8317 \end_inset
8318 </cell>
8319 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
8320 \begin_inset Text
8321
8322 \begin_layout Plain Layout
8323 \begin_inset Formula $\hookleftarrow$
8324 \end_inset
8325
8326
8327 \end_layout
8328
8329 \end_inset
8330 </cell>
8331 </row>
8332 </lyxtabular>
8333
8334 \end_inset
8335
8336
8337 \begin_inset space \hfill{}
8338 \end_inset
8339
8340
8341 \begin_inset Tabular
8342 <lyxtabular version="3" rows="8" columns="2">
8343 <features tabularvalignment="middle">
8344 <column alignment="center" valignment="top" width="0pt">
8345 <column alignment="center" valignment="top" width="0pt">
8346 <row>
8347 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
8348 \begin_inset Text
8349
8350 \begin_layout Plain Layout
8351 Befehl
8352 \end_layout
8353
8354 \end_inset
8355 </cell>
8356 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8357 \begin_inset Text
8358
8359 \begin_layout Plain Layout
8360 Ergebnis
8361 \end_layout
8362
8363 \end_inset
8364 </cell>
8365 </row>
8366 <row>
8367 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8368 \begin_inset Text
8369
8370 \begin_layout Plain Layout
8371
8372 \backslash
8373 to
8374 \end_layout
8375
8376 \end_inset
8377 </cell>
8378 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8379 \begin_inset Text
8380
8381 \begin_layout Plain Layout
8382 \begin_inset Formula $\to$
8383 \end_inset
8384
8385
8386 \end_layout
8387
8388 \end_inset
8389 </cell>
8390 </row>
8391 <row>
8392 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8393 \begin_inset Text
8394
8395 \begin_layout Plain Layout
8396
8397 \backslash
8398 Rightarrow
8399 \end_layout
8400
8401 \end_inset
8402 </cell>
8403 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8404 \begin_inset Text
8405
8406 \begin_layout Plain Layout
8407 \begin_inset Formula $\Rightarrow$
8408 \end_inset
8409
8410
8411 \end_layout
8412
8413 \end_inset
8414 </cell>
8415 </row>
8416 <row>
8417 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8418 \begin_inset Text
8419
8420 \begin_layout Plain Layout
8421
8422 \backslash
8423 longrightarrow
8424 \end_layout
8425
8426 \end_inset
8427 </cell>
8428 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8429 \begin_inset Text
8430
8431 \begin_layout Plain Layout
8432 \begin_inset Formula $\longrightarrow$
8433 \end_inset
8434
8435
8436 \end_layout
8437
8438 \end_inset
8439 </cell>
8440 </row>
8441 <row>
8442 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8443 \begin_inset Text
8444
8445 \begin_layout Plain Layout
8446
8447 \backslash
8448 Longrightarrow
8449 \end_layout
8450
8451 \end_inset
8452 </cell>
8453 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8454 \begin_inset Text
8455
8456 \begin_layout Plain Layout
8457 \begin_inset Formula $\Longrightarrow$
8458 \end_inset
8459
8460
8461 \end_layout
8462
8463 \end_inset
8464 </cell>
8465 </row>
8466 <row>
8467 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8468 \begin_inset Text
8469
8470 \begin_layout Plain Layout
8471
8472 \backslash
8473 rightharpoonup
8474 \end_layout
8475
8476 \end_inset
8477 </cell>
8478 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8479 \begin_inset Text
8480
8481 \begin_layout Plain Layout
8482 \begin_inset Formula $\rightharpoonup$
8483 \end_inset
8484
8485
8486 \end_layout
8487
8488 \end_inset
8489 </cell>
8490 </row>
8491 <row>
8492 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
8493 \begin_inset Text
8494
8495 \begin_layout Plain Layout
8496
8497 \backslash
8498 rightharpoondown
8499 \end_layout
8500
8501 \end_inset
8502 </cell>
8503 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8504 \begin_inset Text
8505
8506 \begin_layout Plain Layout
8507 \begin_inset Formula $\rightharpoondown$
8508 \end_inset
8509
8510
8511 \end_layout
8512
8513 \end_inset
8514 </cell>
8515 </row>
8516 <row>
8517 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
8518 \begin_inset Text
8519
8520 \begin_layout Plain Layout
8521
8522 \backslash
8523 hookrightarrow
8524 \end_layout
8525
8526 \end_inset
8527 </cell>
8528 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
8529 \begin_inset Text
8530
8531 \begin_layout Plain Layout
8532 \begin_inset Formula $\hookrightarrow$
8533 \end_inset
8534
8535
8536 \end_layout
8537
8538 \end_inset
8539 </cell>
8540 </row>
8541 </lyxtabular>
8542
8543 \end_inset
8544
8545
8546 \begin_inset space \hfill{}
8547 \end_inset
8548
8549
8550 \end_layout
8551
8552 \begin_layout Standard
8553 \begin_inset space \hfill{}
8554 \end_inset
8555
8556
8557 \begin_inset Tabular
8558 <lyxtabular version="3" rows="6" columns="2">
8559 <features tabularvalignment="middle">
8560 <column alignment="center" valignment="top" width="0pt">
8561 <column alignment="center" valignment="top" width="0pt">
8562 <row>
8563 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
8564 \begin_inset Text
8565
8566 \begin_layout Plain Layout
8567 Befehl
8568 \end_layout
8569
8570 \end_inset
8571 </cell>
8572 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8573 \begin_inset Text
8574
8575 \begin_layout Plain Layout
8576 Ergebnis
8577 \end_layout
8578
8579 \end_inset
8580 </cell>
8581 </row>
8582 <row>
8583 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8584 \begin_inset Text
8585
8586 \begin_layout Plain Layout
8587
8588 \backslash
8589 leftrightarrow
8590 \end_layout
8591
8592 \end_inset
8593 </cell>
8594 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8595 \begin_inset Text
8596
8597 \begin_layout Plain Layout
8598 \begin_inset Formula $\leftrightarrow$
8599 \end_inset
8600
8601
8602 \end_layout
8603
8604 \end_inset
8605 </cell>
8606 </row>
8607 <row>
8608 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8609 \begin_inset Text
8610
8611 \begin_layout Plain Layout
8612
8613 \backslash
8614 Leftrightarrow
8615 \end_layout
8616
8617 \end_inset
8618 </cell>
8619 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8620 \begin_inset Text
8621
8622 \begin_layout Plain Layout
8623 \begin_inset Formula $\Leftrightarrow$
8624 \end_inset
8625
8626
8627 \end_layout
8628
8629 \end_inset
8630 </cell>
8631 </row>
8632 <row>
8633 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8634 \begin_inset Text
8635
8636 \begin_layout Plain Layout
8637
8638 \backslash
8639 longleftrightarrow
8640 \end_layout
8641
8642 \end_inset
8643 </cell>
8644 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8645 \begin_inset Text
8646
8647 \begin_layout Plain Layout
8648 \begin_inset Formula $\longleftrightarrow$
8649 \end_inset
8650
8651
8652 \end_layout
8653
8654 \end_inset
8655 </cell>
8656 </row>
8657 <row>
8658 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8659 \begin_inset Text
8660
8661 \begin_layout Plain Layout
8662
8663 \backslash
8664 Longleftrightarrow
8665 \end_layout
8666
8667 \end_inset
8668 </cell>
8669 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8670 \begin_inset Text
8671
8672 \begin_layout Plain Layout
8673 \begin_inset Formula $\Longleftrightarrow$
8674 \end_inset
8675
8676
8677 \end_layout
8678
8679 \end_inset
8680 </cell>
8681 </row>
8682 <row>
8683 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
8684 \begin_inset Text
8685
8686 \begin_layout Plain Layout
8687
8688 \backslash
8689 rightleftharpoons
8690 \end_layout
8691
8692 \end_inset
8693 </cell>
8694 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8695 \begin_inset Text
8696
8697 \begin_layout Plain Layout
8698 \begin_inset Formula $\rightleftharpoons$
8699 \end_inset
8700
8701
8702 \end_layout
8703
8704 \end_inset
8705 </cell>
8706 </row>
8707 </lyxtabular>
8708
8709 \end_inset
8710
8711
8712 \begin_inset space \hspace{}
8713 \length 25pt
8714 \end_inset
8715
8716
8717 \begin_inset space \hfill{}
8718 \end_inset
8719
8720
8721 \begin_inset Tabular
8722 <lyxtabular version="3" rows="5" columns="2">
8723 <features tabularvalignment="middle">
8724 <column alignment="center" valignment="top" width="0pt">
8725 <column alignment="center" valignment="top" width="0pt">
8726 <row>
8727 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
8728 \begin_inset Text
8729
8730 \begin_layout Plain Layout
8731 Befehl
8732 \end_layout
8733
8734 \end_inset
8735 </cell>
8736 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8737 \begin_inset Text
8738
8739 \begin_layout Plain Layout
8740 Ergebnis
8741 \end_layout
8742
8743 \end_inset
8744 </cell>
8745 </row>
8746 <row>
8747 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8748 \begin_inset Text
8749
8750 \begin_layout Plain Layout
8751
8752 \backslash
8753 mapsto
8754 \end_layout
8755
8756 \end_inset
8757 </cell>
8758 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8759 \begin_inset Text
8760
8761 \begin_layout Plain Layout
8762 \begin_inset Formula $\mapsto$
8763 \end_inset
8764
8765
8766 \end_layout
8767
8768 \end_inset
8769 </cell>
8770 </row>
8771 <row>
8772 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8773 \begin_inset Text
8774
8775 \begin_layout Plain Layout
8776
8777 \backslash
8778 longmapsto
8779 \end_layout
8780
8781 \end_inset
8782 </cell>
8783 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8784 \begin_inset Text
8785
8786 \begin_layout Plain Layout
8787 \begin_inset Formula $\longmapsto$
8788 \end_inset
8789
8790
8791 \end_layout
8792
8793 \end_inset
8794 </cell>
8795 </row>
8796 <row>
8797 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8798 \begin_inset Text
8799
8800 \begin_layout Plain Layout
8801
8802 \backslash
8803 leadsto
8804 \end_layout
8805
8806 \end_inset
8807 </cell>
8808 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8809 \begin_inset Text
8810
8811 \begin_layout Plain Layout
8812 \begin_inset Formula $\leadsto$
8813 \end_inset
8814
8815
8816 \end_layout
8817
8818 \end_inset
8819 </cell>
8820 </row>
8821 <row>
8822 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
8823 \begin_inset Text
8824
8825 \begin_layout Plain Layout
8826
8827 \backslash
8828 dasharrow
8829 \end_layout
8830
8831 \end_inset
8832 </cell>
8833 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8834 \begin_inset Text
8835
8836 \begin_layout Plain Layout
8837 \begin_inset Formula $\dasharrow$
8838 \end_inset
8839
8840
8841 \end_layout
8842
8843 \end_inset
8844 </cell>
8845 </row>
8846 </lyxtabular>
8847
8848 \end_inset
8849
8850
8851 \begin_inset space \hfill{}
8852 \end_inset
8853
8854
8855 \end_layout
8856
8857 \begin_layout Standard
8858 \begin_inset VSpace medskip
8859 \end_inset
8860
8861 Als Akzent verwendete Pfeile, wie z.
8862 \begin_inset space \thinspace{}
8863 \end_inset
8864
8865 B.
8866  Vektorpfeile, sind in 
8867 \begin_inset CommandInset ref
8868 LatexCommand ref
8869 reference "sec:Akzente"
8870
8871 \end_inset
8872
8873  aufgelistet.
8874 \end_layout
8875
8876 \begin_layout Standard
8877 \begin_inset VSpace bigskip
8878 \end_inset
8879
8880 Des Weiteren gibt es die beschriftbaren Pfeile
8881 \begin_inset Index idx
8882 status collapsed
8883
8884 \begin_layout Plain Layout
8885 Pfeile ! beschriftbare
8886 \end_layout
8887
8888 \end_inset
8889
8890  
8891 \series bold
8892
8893 \backslash
8894 xleftarrow
8895 \series default
8896
8897 \begin_inset Index idx
8898 status collapsed
8899
8900 \begin_layout Plain Layout
8901 Befehle ! X ! 
8902 \backslash
8903 xleftarrow
8904 \end_layout
8905
8906 \end_inset
8907
8908  und 
8909 \series bold
8910
8911 \backslash
8912 xrightarrow
8913 \series default
8914
8915 \begin_inset Index idx
8916 status collapsed
8917
8918 \begin_layout Plain Layout
8919 Befehle ! X ! 
8920 \backslash
8921 xrightarrow
8922 \begin_inset ERT
8923 status collapsed
8924
8925 \begin_layout Plain Layout
8926
8927
8928 \backslash
8929 vspace{4mm}
8930 \end_layout
8931
8932 \end_inset
8933
8934
8935 \end_layout
8936
8937 \end_inset
8938
8939 .
8940  Gibt man einen dieser Befehle in eine Formel ein, erscheint ein Pfeil mit
8941  zwei blauen Kästchen, in die man die Beschriftung eingeben kann.
8942  Die Pfeillänge passt sich der Breite der Beschriftung an.
8943 \end_layout
8944
8945 \begin_layout Standard
8946 \align center
8947 \begin_inset Tabular
8948 <lyxtabular version="3" rows="3" columns="2">
8949 <features tabularvalignment="middle">
8950 <column alignment="center" valignment="top" width="0pt">
8951 <column alignment="center" valignment="top" width="0pt">
8952 <row>
8953 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
8954 \begin_inset Text
8955
8956 \begin_layout Plain Layout
8957 Befehl
8958 \end_layout
8959
8960 \end_inset
8961 </cell>
8962 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8963 \begin_inset Text
8964
8965 \begin_layout Plain Layout
8966 Ergebnis
8967 \begin_inset Note Note
8968 status collapsed
8969
8970 \begin_layout Plain Layout
8971
8972 \series bold
8973
8974 \backslash
8975 raisebox
8976 \series default
8977  dient nur als Abstandhalter.
8978 \end_layout
8979
8980 \end_inset
8981
8982
8983 \end_layout
8984
8985 \end_inset
8986 </cell>
8987 </row>
8988 <row>
8989 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8990 \begin_inset Text
8991
8992 \begin_layout Plain Layout
8993 F(a)
8994 \backslash
8995 xleftarrow
8996 \begin_inset ERT
8997 status collapsed
8998
8999 \begin_layout Plain Layout
9000
9001
9002 \backslash
9003 leer 
9004 \end_layout
9005
9006 \end_inset
9007
9008 x=a
9009 \begin_inset Formula $\downarrow$
9010 \end_inset
9011
9012 x>0
9013 \begin_inset Formula $\to$
9014 \end_inset
9015
9016 F(x)
9017 \end_layout
9018
9019 \end_inset
9020 </cell>
9021 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9022 \begin_inset Text
9023
9024 \begin_layout Plain Layout
9025 \begin_inset Formula $\raisebox{5mm}{}F(a)\xleftarrow[x>0]{x=a}F(x)\raisebox{-4mm}{}$
9026 \end_inset
9027
9028
9029 \end_layout
9030
9031 \end_inset
9032 </cell>
9033 </row>
9034 <row>
9035 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
9036 \begin_inset Text
9037
9038 \begin_layout Plain Layout
9039 F(x)
9040 \backslash
9041 xrightarrow
9042 \begin_inset ERT
9043 status collapsed
9044
9045 \begin_layout Plain Layout
9046
9047
9048 \backslash
9049 leer 
9050 \end_layout
9051
9052 \end_inset
9053
9054 x=a
9055 \begin_inset Formula $\downarrow$
9056 \end_inset
9057
9058 x>0
9059 \begin_inset Formula $\to$
9060 \end_inset
9061
9062 F(a)
9063 \end_layout
9064
9065 \end_inset
9066 </cell>
9067 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
9068 \begin_inset Text
9069
9070 \begin_layout Plain Layout
9071 \begin_inset Formula $\raisebox{5mm}{}F(x)\xrightarrow[x>0]{x=a}F(a)\raisebox{-4mm}{}$
9072 \end_inset
9073
9074
9075 \end_layout
9076
9077 \end_inset
9078 </cell>
9079 </row>
9080 </lyxtabular>
9081
9082 \end_inset
9083
9084
9085 \end_layout
9086
9087 \begin_layout Subsection
9088 Vertikale und diagonale Pfeile
9089 \begin_inset Index idx
9090 status collapsed
9091
9092 \begin_layout Plain Layout
9093 Pfeile ! diagonale
9094 \end_layout
9095
9096 \end_inset
9097
9098
9099 \begin_inset Index idx
9100 status collapsed
9101
9102 \begin_layout Plain Layout
9103 Pfeile ! vertikale
9104 \end_layout
9105
9106 \end_inset
9107
9108
9109 \end_layout
9110
9111 \begin_layout Standard
9112 \begin_inset space \hfill{}
9113 \end_inset
9114
9115
9116 \begin_inset Tabular
9117 <lyxtabular version="3" rows="7" columns="2">
9118 <features tabularvalignment="middle">
9119 <column alignment="center" valignment="top" width="0pt">
9120 <column alignment="center" valignment="top" width="0pt">
9121 <row>
9122 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
9123 \begin_inset Text
9124
9125 \begin_layout Plain Layout
9126 Befehl
9127 \end_layout
9128
9129 \end_inset
9130 </cell>
9131 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
9132 \begin_inset Text
9133
9134 \begin_layout Plain Layout
9135 Ergebnis
9136 \end_layout
9137
9138 \end_inset
9139 </cell>
9140 </row>
9141 <row>
9142 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9143 \begin_inset Text
9144
9145 \begin_layout Plain Layout
9146
9147 \backslash
9148 uparrow
9149 \end_layout
9150
9151 \end_inset
9152 </cell>
9153 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9154 \begin_inset Text
9155
9156 \begin_layout Plain Layout
9157 \begin_inset Formula $\uparrow$
9158 \end_inset
9159
9160
9161 \end_layout
9162
9163 \end_inset
9164 </cell>
9165 </row>
9166 <row>
9167 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9168 \begin_inset Text
9169
9170 \begin_layout Plain Layout
9171
9172 \backslash
9173 Uparrow
9174 \end_layout
9175
9176 \end_inset
9177 </cell>
9178 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9179 \begin_inset Text
9180
9181 \begin_layout Plain Layout
9182 \begin_inset Formula $\Uparrow$
9183 \end_inset
9184
9185
9186 \end_layout
9187
9188 \end_inset
9189 </cell>
9190 </row>
9191 <row>
9192 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9193 \begin_inset Text
9194
9195 \begin_layout Plain Layout
9196
9197 \backslash
9198 updownarrow
9199 \end_layout
9200
9201 \end_inset
9202 </cell>
9203 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9204 \begin_inset Text
9205
9206 \begin_layout Plain Layout
9207 \begin_inset Formula $\updownarrow$
9208 \end_inset
9209
9210
9211 \end_layout
9212
9213 \end_inset
9214 </cell>
9215 </row>
9216 <row>
9217 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9218 \begin_inset Text
9219
9220 \begin_layout Plain Layout
9221
9222 \backslash
9223 Updownarrow
9224 \end_layout
9225
9226 \end_inset
9227 </cell>
9228 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9229 \begin_inset Text
9230
9231 \begin_layout Plain Layout
9232 \begin_inset Formula $\Updownarrow$
9233 \end_inset
9234
9235
9236 \end_layout
9237
9238 \end_inset
9239 </cell>
9240 </row>
9241 <row>
9242 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
9243 \begin_inset Text
9244
9245 \begin_layout Plain Layout
9246
9247 \backslash
9248 Downarrow
9249 \end_layout
9250
9251 \end_inset
9252 </cell>
9253 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
9254 \begin_inset Text
9255
9256 \begin_layout Plain Layout
9257 \begin_inset Formula $\Downarrow$
9258 \end_inset
9259
9260
9261 \end_layout
9262
9263 \end_inset
9264 </cell>
9265 </row>
9266 <row>
9267 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9268 \begin_inset Text
9269
9270 \begin_layout Plain Layout
9271
9272 \backslash
9273 downarrow
9274 \end_layout
9275
9276 \end_inset
9277 </cell>
9278 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9279 \begin_inset Text
9280
9281 \begin_layout Plain Layout
9282 \begin_inset Formula $\downarrow$
9283 \end_inset
9284
9285
9286 \end_layout
9287
9288 \end_inset
9289 </cell>
9290 </row>
9291 </lyxtabular>
9292
9293 \end_inset
9294
9295
9296 \begin_inset space \hfill{}
9297 \end_inset
9298
9299
9300 \begin_inset Tabular
9301 <lyxtabular version="3" rows="5" columns="2">
9302 <features tabularvalignment="middle">
9303 <column alignment="center" valignment="top" width="0pt">
9304 <column alignment="center" valignment="top" width="0pt">
9305 <row>
9306 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
9307 \begin_inset Text
9308
9309 \begin_layout Plain Layout
9310 Befehl
9311 \end_layout
9312
9313 \end_inset
9314 </cell>
9315 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
9316 \begin_inset Text
9317
9318 \begin_layout Plain Layout
9319 Ergebnis
9320 \end_layout
9321
9322 \end_inset
9323 </cell>
9324 </row>
9325 <row>
9326 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9327 \begin_inset Text
9328
9329 \begin_layout Plain Layout
9330
9331 \backslash
9332 nearrow
9333 \end_layout
9334
9335 \end_inset
9336 </cell>
9337 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9338 \begin_inset Text
9339
9340 \begin_layout Plain Layout
9341 \begin_inset Formula $\nearrow$
9342 \end_inset
9343
9344
9345 \end_layout
9346
9347 \end_inset
9348 </cell>
9349 </row>
9350 <row>
9351 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9352 \begin_inset Text
9353
9354 \begin_layout Plain Layout
9355
9356 \backslash
9357 searrow
9358 \end_layout
9359
9360 \end_inset
9361 </cell>
9362 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9363 \begin_inset Text
9364
9365 \begin_layout Plain Layout
9366 \begin_inset Formula $\searrow$
9367 \end_inset
9368
9369
9370 \end_layout
9371
9372 \end_inset
9373 </cell>
9374 </row>
9375 <row>
9376 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
9377 \begin_inset Text
9378
9379 \begin_layout Plain Layout
9380
9381 \backslash
9382 swarrow
9383 \end_layout
9384
9385 \end_inset
9386 </cell>
9387 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
9388 \begin_inset Text
9389
9390 \begin_layout Plain Layout
9391 \begin_inset Formula $\swarrow$
9392 \end_inset
9393
9394
9395 \end_layout
9396
9397 \end_inset
9398 </cell>
9399 </row>
9400 <row>
9401 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9402 \begin_inset Text
9403
9404 \begin_layout Plain Layout
9405
9406 \backslash
9407 nwarrow
9408 \end_layout
9409
9410 \end_inset
9411 </cell>
9412 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9413 \begin_inset Text
9414
9415 \begin_layout Plain Layout
9416 \begin_inset Formula $\nwarrow$
9417 \end_inset
9418
9419
9420 \end_layout
9421
9422 \end_inset
9423 </cell>
9424 </row>
9425 </lyxtabular>
9426
9427 \end_inset
9428
9429
9430 \begin_inset space \hfill{}
9431 \end_inset
9432
9433
9434 \end_layout
9435
9436 \begin_layout Standard
9437 \begin_inset VSpace medskip
9438 \end_inset
9439
9440 Vertikale Pfeile können auch als Begrenzungszeichen zusammen mit den in
9441  
9442 \begin_inset CommandInset ref
9443 LatexCommand ref
9444 reference "sub:Manuelle-Klammergrößen"
9445
9446 \end_inset
9447
9448  und 
9449 \begin_inset CommandInset ref
9450 LatexCommand ref
9451 reference "sub:Automatische-Klammergrößen"
9452
9453 \end_inset
9454
9455  beschriebenen Befehlen verwendet werden.
9456 \end_layout
9457
9458 \begin_layout Section
9459 Akzente
9460 \begin_inset CommandInset label
9461 LatexCommand label
9462 name "sec:Akzente"
9463
9464 \end_inset
9465
9466
9467 \begin_inset Index idx
9468 status collapsed
9469
9470 \begin_layout Plain Layout
9471 Akzente
9472 \end_layout
9473
9474 \end_inset
9475
9476
9477 \end_layout
9478
9479 \begin_layout Standard
9480 Akzente können über den Mathe-Werkzeugleistenknopf 
9481 \begin_inset Graphics
9482         filename ../../images/math/hat.png
9483         scale 85
9484
9485 \end_inset
9486
9487  oder mit den Befehlen eingefügt werden, die in den folgenden Unterkapiteln
9488  aufgelistet sind.
9489 \end_layout
9490
9491 \begin_layout Subsection
9492 Akzente für ein Zeichen
9493 \begin_inset ERT
9494 status collapsed
9495
9496 \begin_layout Plain Layout
9497
9498
9499 \backslash
9500 texorpdfstring{
9501 \end_layout
9502
9503 \end_inset
9504
9505
9506 \begin_inset Foot
9507 status collapsed
9508
9509 \begin_layout Plain Layout
9510 Akzente im Text siehe 
9511 \begin_inset CommandInset ref
9512 LatexCommand ref
9513 reference "sub:Sonderzeichen-Akzente"
9514
9515 \end_inset
9516
9517
9518 \end_layout
9519
9520 \end_inset
9521
9522
9523 \begin_inset ERT
9524 status collapsed
9525
9526 \begin_layout Plain Layout
9527
9528 }{}
9529 \end_layout
9530
9531 \end_inset
9532
9533
9534 \begin_inset Note Note
9535 status collapsed
9536
9537 \begin_layout Plain Layout
9538
9539 \series bold
9540
9541 \backslash
9542 texorpdfstring
9543 \series default
9544  dient dazu, dass die Fußnote nicht im PDF-Lesezeichen erscheint.
9545 \end_layout
9546
9547 \begin_layout Plain Layout
9548 Näheres zu 
9549 \series bold
9550
9551 \backslash
9552 texorpdfstring
9553 \series default
9554  steht in Kapitel 
9555 \begin_inset CommandInset ref
9556 LatexCommand ref
9557 reference "sub:Formeln-in-Überschriften"
9558
9559 \end_inset
9560
9561 .
9562 \end_layout
9563
9564 \end_inset
9565
9566
9567 \begin_inset CommandInset label
9568 LatexCommand label
9569 name "sub:Akzente-für-ein"
9570
9571 \end_inset
9572
9573
9574 \begin_inset Index idx
9575 status collapsed
9576
9577 \begin_layout Plain Layout
9578 Akzente ! für ein Zeichen
9579 \end_layout
9580
9581 \end_inset
9582
9583
9584 \end_layout
9585
9586 \begin_layout Standard
9587 \begin_inset space \hfill{}
9588 \end_inset
9589
9590
9591 \begin_inset Tabular
9592 <lyxtabular version="3" rows="8" columns="2">
9593 <features tabularvalignment="middle">
9594 <column alignment="center" valignment="top" width="0pt">
9595 <column alignment="center" valignment="top" width="0pt">
9596 <row>
9597 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
9598 \begin_inset Text
9599
9600 \begin_layout Plain Layout
9601 Befehl
9602 \end_layout
9603
9604 \end_inset
9605 </cell>
9606 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
9607 \begin_inset Text
9608
9609 \begin_layout Plain Layout
9610 Ergebnis
9611 \begin_inset Note Note
9612 status collapsed
9613
9614 \begin_layout Plain Layout
9615
9616 \series bold
9617
9618 \backslash
9619 raisebox
9620 \series default
9621  dient nur als Abstandhalter.
9622 \end_layout
9623
9624 \end_inset
9625
9626
9627 \end_layout
9628
9629 \end_inset
9630 </cell>
9631 </row>
9632 <row>
9633 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
9634 \begin_inset Text
9635
9636 \begin_layout Plain Layout
9637
9638 \backslash
9639 dot
9640 \begin_inset ERT
9641 status collapsed
9642
9643 \begin_layout Plain Layout
9644
9645
9646 \backslash
9647 leer 
9648 \end_layout
9649
9650 \end_inset
9651
9652 A
9653 \end_layout
9654
9655 \end_inset
9656 </cell>
9657 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
9658 \begin_inset Text
9659
9660 \begin_layout Plain Layout
9661 \begin_inset Formula $\raisebox{5mm}{}\dot{A}$
9662 \end_inset
9663
9664
9665 \end_layout
9666
9667 \end_inset
9668 </cell>
9669 </row>
9670 <row>
9671 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9672 \begin_inset Text
9673
9674 \begin_layout Plain Layout
9675
9676 \backslash
9677 ddot
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" bottomline="true" leftline="true" rightline="true" usebox="none">
9696 \begin_inset Text
9697
9698 \begin_layout Plain Layout
9699 \begin_inset Formula $\raisebox{5mm}{}\ddot{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 dddot
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}{}\dddot{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 ddddot
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}{}\ddddot{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 vec
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 \begin_inset Index idx
9806 status collapsed
9807
9808 \begin_layout Plain Layout
9809 Vektoren
9810 \end_layout
9811
9812 \end_inset
9813
9814
9815 \end_layout
9816
9817 \end_inset
9818 </cell>
9819 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9820 \begin_inset Text
9821
9822 \begin_layout Plain Layout
9823 \begin_inset Formula $\raisebox{5mm}{}\vec{A}$
9824 \end_inset
9825
9826
9827 \end_layout
9828
9829 \end_inset
9830 </cell>
9831 </row>
9832 <row>
9833 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9834 \begin_inset Text
9835
9836 \begin_layout Plain Layout
9837
9838 \backslash
9839 bar
9840 \begin_inset ERT
9841 status collapsed
9842
9843 \begin_layout Plain Layout
9844
9845
9846 \backslash
9847 leer 
9848 \end_layout
9849
9850 \end_inset
9851
9852 A
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}{}\bar{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 mathring
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}{}\mathring{A}$
9900 \end_inset
9901
9902
9903 \end_layout
9904
9905 \end_inset
9906 </cell>
9907 </row>
9908 </lyxtabular>
9909
9910 \end_inset
9911
9912
9913 \begin_inset space \hfill{}
9914 \end_inset
9915
9916
9917 \begin_inset Tabular
9918 <lyxtabular version="3" rows="7" columns="2">
9919 <features tabularvalignment="middle">
9920 <column alignment="center" valignment="top" width="0pt">
9921 <column alignment="center" valignment="top" width="0pt">
9922 <row>
9923 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
9924 \begin_inset Text
9925
9926 \begin_layout Plain Layout
9927 Befehl
9928 \end_layout
9929
9930 \end_inset
9931 </cell>
9932 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
9933 \begin_inset Text
9934
9935 \begin_layout Plain Layout
9936 Ergebnis
9937 \end_layout
9938
9939 \end_inset
9940 </cell>
9941 </row>
9942 <row>
9943 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
9944 \begin_inset Text
9945
9946 \begin_layout Plain Layout
9947
9948 \backslash
9949 tilde
9950 \begin_inset ERT
9951 status collapsed
9952
9953 \begin_layout Plain Layout
9954
9955
9956 \backslash
9957 leer 
9958 \end_layout
9959
9960 \end_inset
9961
9962 A
9963 \end_layout
9964
9965 \end_inset
9966 </cell>
9967 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
9968 \begin_inset Text
9969
9970 \begin_layout Plain Layout
9971 \begin_inset Formula $\raisebox{5mm}{}\tilde{A}$
9972 \end_inset
9973
9974
9975 \end_layout
9976
9977 \end_inset
9978 </cell>
9979 </row>
9980 <row>
9981 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9982 \begin_inset Text
9983
9984 \begin_layout Plain Layout
9985
9986 \backslash
9987 hat
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" bottomline="true" leftline="true" rightline="true" usebox="none">
10006 \begin_inset Text
10007
10008 \begin_layout Plain Layout
10009 \begin_inset Formula $\raisebox{5mm}{}\hat{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 check
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}{}\check{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 acute
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}{}\acute{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 grave
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}{}\grave{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 breve
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}{}\breve{A}$
10162 \end_inset
10163
10164
10165 \end_layout
10166
10167 \end_inset
10168 </cell>
10169 </row>
10170 </lyxtabular>
10171
10172 \end_inset
10173
10174
10175 \begin_inset space \hfill{}
10176 \end_inset
10177
10178
10179 \end_layout
10180
10181 \begin_layout Standard
10182 \begin_inset VSpace bigskip
10183 \end_inset
10184
10185 Akzente wie z.B.
10186  é können direkt in Formeln eingegeben werden.
10187  LyX transformiert sie dann in den entsprechenden Akzentbefehl.
10188  Für Umlaute
10189 \begin_inset Index idx
10190 status collapsed
10191
10192 \begin_layout Plain Layout
10193 Umlaute
10194 \end_layout
10195
10196 \end_inset
10197
10198  ist es besser wenn man ein Anführungszeichen vor den Selbstlaut schreibt.
10199  Diese beiden Zeichen bilden dann für LaTeX 
10200 \emph on
10201 ein
10202 \emph default
10203  Zeichen.
10204  Im Gegensatz zu 
10205 \series bold
10206
10207 \backslash
10208 ddot
10209 \series default
10210  entstehen damit 
10211 \begin_inset Quotes gld
10212 \end_inset
10213
10214 echte
10215 \begin_inset Quotes grd
10216 \end_inset
10217
10218  Umlaute, was folgendes Beispiel zeigt:
10219 \end_layout
10220
10221 \begin_layout Standard
10222 \begin_inset VSpace -2mm
10223 \end_inset
10224
10225
10226 \end_layout
10227
10228 \begin_layout Standard
10229 \align center
10230 \begin_inset Tabular
10231 <lyxtabular version="3" rows="3" columns="2">
10232 <features tabularvalignment="middle">
10233 <column alignment="center" valignment="top" width="0">
10234 <column alignment="center" valignment="top" width="0">
10235 <row>
10236 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
10237 \begin_inset Text
10238
10239 \begin_layout Plain Layout
10240 Befehl
10241 \end_layout
10242
10243 \end_inset
10244 </cell>
10245 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
10246 \begin_inset Text
10247
10248 \begin_layout Plain Layout
10249 Ergebnis
10250 \begin_inset Note Note
10251 status collapsed
10252
10253 \begin_layout Plain Layout
10254
10255 \series bold
10256
10257 \backslash
10258 raisebox
10259 \series default
10260  dient nur als Abstandhalter.
10261 \end_layout
10262
10263 \end_inset
10264
10265
10266 \end_layout
10267
10268 \end_inset
10269 </cell>
10270 </row>
10271 <row>
10272 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10273 \begin_inset Text
10274
10275 \begin_layout Plain Layout
10276 \begin_inset Quotes grd
10277 \end_inset
10278
10279 i
10280 \end_layout
10281
10282 \end_inset
10283 </cell>
10284 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10285 \begin_inset Text
10286
10287 \begin_layout Plain Layout
10288 \begin_inset Formula $"i$
10289 \end_inset
10290
10291
10292 \end_layout
10293
10294 \end_inset
10295 </cell>
10296 </row>
10297 <row>
10298 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
10299 \begin_inset Text
10300
10301 \begin_layout Plain Layout
10302
10303 \backslash
10304 ddot
10305 \begin_inset ERT
10306 status collapsed
10307
10308 \begin_layout Plain Layout
10309
10310
10311 \backslash
10312 leer 
10313 \end_layout
10314
10315 \end_inset
10316
10317 i
10318 \end_layout
10319
10320 \end_inset
10321 </cell>
10322 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
10323 \begin_inset Text
10324
10325 \begin_layout Plain Layout
10326 \begin_inset Formula $\raisebox{5mm}{}\ddot{i}$
10327 \end_inset
10328
10329
10330 \end_layout
10331
10332 \end_inset
10333 </cell>
10334 </row>
10335 </lyxtabular>
10336
10337 \end_inset
10338
10339
10340 \end_layout
10341
10342 \begin_layout Standard
10343 Ein weiterer Vorteil gegenüber 
10344 \series bold
10345
10346 \backslash
10347 ddot
10348 \series default
10349  ist, dass man Umlaute direkt in mathematischen Text konvertieren kann,
10350  denn die obigen Akzentbefehle sind 
10351 \emph on
10352 im mathematischen Text\SpecialChar \-
10353 modus nicht erlaubt
10354 \emph default
10355 .
10356  Um ein akzentuiertes Zeichen in mathematischen Text zu überführen, darf
10357  nur das Zeichen unter dem Akzent umgewandelt werden.
10358  Das gilt auch für alle anderen Umwandlungen wie z.
10359 \begin_inset space \thinspace{}
10360 \end_inset
10361
10362 B.
10363  in kursiv oder fett.
10364 \end_layout
10365
10366 \begin_layout Standard
10367 Im mathematischen Textmodus können Umlaute und andere akzentuierten Zeichen
10368  direkt eingegeben werden.
10369 \end_layout
10370
10371 \begin_layout Subsection
10372 Akzente für Operatoren
10373 \begin_inset Index idx
10374 status collapsed
10375
10376 \begin_layout Plain Layout
10377 Akzente ! für Operatoren
10378 \end_layout
10379
10380 \end_inset
10381
10382
10383 \end_layout
10384
10385 \begin_layout Standard
10386 Zum Akzentuieren von Operatoren gibt es die Befehle 
10387 \series bold
10388
10389 \backslash
10390 overset
10391 \series default
10392
10393 \begin_inset Index idx
10394 status collapsed
10395
10396 \begin_layout Plain Layout
10397 Befehle ! O ! 
10398 \backslash
10399 overset
10400 \end_layout
10401
10402 \end_inset
10403
10404  und 
10405 \series bold
10406
10407 \backslash
10408 underset
10409 \series default
10410
10411 \begin_inset Index idx
10412 status collapsed
10413
10414 \begin_layout Plain Layout
10415 Befehle ! U ! 
10416 \backslash
10417 underset
10418 \end_layout
10419
10420 \end_inset
10421
10422 , mit denen man Zeichen über bzw.
10423  unter einen Operator setzen kann.
10424  Mit dem Befehl 
10425 \series bold
10426
10427 \backslash
10428 sideset
10429 \series default
10430
10431 \begin_inset Index idx
10432 status collapsed
10433
10434 \begin_layout Plain Layout
10435 Befehle ! S ! 
10436 \backslash
10437 sideset
10438 \end_layout
10439
10440 \end_inset
10441
10442  können Zeichen vor und nach einen Operator gesetzt werden.
10443  Das Befehlsschema lautet:
10444 \end_layout
10445
10446 \begin_layout Standard
10447
10448 \series bold
10449
10450 \backslash
10451 sideset{Zeichen
10452 \series default
10453  
10454 \series bold
10455 davor}{Zeichen
10456 \series default
10457  
10458 \series bold
10459 dahinter}
10460 \end_layout
10461
10462 \begin_layout Standard
10463
10464 \series bold
10465
10466 \backslash
10467 sideset
10468 \series default
10469  muss immer vor dem zu akzentuierenden Operator stehen.
10470  Es kann auch mit mehreren Zeichen und sogar mit anderen Operatoren und
10471  Symbolen akzentuiert werden.
10472  Will man mit 
10473 \series bold
10474
10475 \backslash
10476 sideset
10477 \series default
10478  z.
10479 \begin_inset space \thinspace{}
10480 \end_inset
10481
10482 B.
10483  nur Zeichen hinter einen Operator setzen, schreibt man nichts zwischen
10484  die ersten geschweiften Klammern, lässt die Klammern aber nicht weg.
10485 \end_layout
10486
10487 \begin_layout Standard
10488 Z.
10489 \begin_inset space \thinspace{}
10490 \end_inset
10491
10492 B.
10493  ergibt der Befehl 
10494 \series bold
10495
10496 \backslash
10497 sideset{
10498 \begin_inset Formula $\to$
10499 \end_inset
10500
10501
10502 \backslash
10503 {
10504 \series default
10505 '
10506 \series bold
10507
10508 \begin_inset Formula $\to$
10509 \end_inset
10510
10511
10512 \backslash
10513 sum_k=1
10514 \begin_inset ERT
10515 status collapsed
10516
10517 \begin_layout Plain Layout
10518
10519
10520 \backslash
10521 leer 
10522 \end_layout
10523
10524 \end_inset
10525
10526
10527 \series default
10528 ^
10529 \series bold
10530 n
10531 \series default
10532  :
10533 \begin_inset Formula \[
10534 \sideset{}{'}\sum_{k=1}^{n}\]
10535
10536 \end_inset
10537
10538
10539 \end_layout
10540
10541 \begin_layout Standard
10542 Der Befehl 
10543 \series bold
10544
10545 \backslash
10546 overset
10547 \begin_inset ERT
10548 status collapsed
10549
10550 \begin_layout Plain Layout
10551
10552
10553 \backslash
10554 leer 
10555 \end_layout
10556
10557 \end_inset
10558
10559
10560 \backslash
10561 maltese
10562 \begin_inset ERT
10563 status collapsed
10564
10565 \begin_layout Plain Layout
10566
10567
10568 \backslash
10569 leer 
10570 \end_layout
10571
10572 \end_inset
10573
10574
10575 \series default
10576
10577 \begin_inset Formula $\uparrow$
10578 \end_inset
10579
10580
10581 \series bold
10582 a
10583 \series default
10584  ergibt:
10585 \begin_inset Formula \[
10586 \overset{a}{\maltese}\]
10587
10588 \end_inset
10589
10590 Wie man am letzten Beispiel sieht, kann man mit 
10591 \series bold
10592
10593 \backslash
10594 overset
10595 \series default
10596  bzw.
10597  
10598 \series bold
10599
10600 \backslash
10601 underset
10602 \series default
10603  außer Operatoren auch Symbole und Zeichen akzentuieren; mit 
10604 \series bold
10605
10606 \backslash
10607 sideset
10608 \series default
10609  ist dies nicht möglich.
10610 \end_layout
10611
10612 \begin_layout Subsection
10613 Akzente für mehrere Zeichen
10614 \begin_inset Index idx
10615 status collapsed
10616
10617 \begin_layout Plain Layout
10618 Akzente ! für mehrere Zeichen
10619 \end_layout
10620
10621 \end_inset
10622
10623
10624 \end_layout
10625
10626 \begin_layout Standard
10627 \begin_inset space \hfill{}
10628 \end_inset
10629
10630
10631 \begin_inset Tabular
10632 <lyxtabular version="3" rows="5" columns="2">
10633 <features tabularvalignment="middle">
10634 <column alignment="center" valignment="top" width="0pt">
10635 <column alignment="center" valignment="top" width="0pt">
10636 <row>
10637 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
10638 \begin_inset Text
10639
10640 \begin_layout Plain Layout
10641 Befehl
10642 \end_layout
10643
10644 \end_inset
10645 </cell>
10646 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
10647 \begin_inset Text
10648
10649 \begin_layout Plain Layout
10650 Ergebnis
10651 \begin_inset Note Note
10652 status collapsed
10653
10654 \begin_layout Plain Layout
10655
10656 \series bold
10657
10658 \backslash
10659 raisebox
10660 \series default
10661  dient nur als Abstandhalter.
10662 \end_layout
10663
10664 \end_inset
10665
10666
10667 \end_layout
10668
10669 \end_inset
10670 </cell>
10671 </row>
10672 <row>
10673 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
10674 \begin_inset Text
10675
10676 \begin_layout Plain Layout
10677
10678 \backslash
10679 overleftarrow
10680 \begin_inset ERT
10681 status collapsed
10682
10683 \begin_layout Plain Layout
10684
10685
10686 \backslash
10687 leer 
10688 \end_layout
10689
10690 \end_inset
10691
10692 A=B
10693 \end_layout
10694
10695 \end_inset
10696 </cell>
10697 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
10698 \begin_inset Text
10699
10700 \begin_layout Plain Layout
10701 \begin_inset Formula $\raisebox{6mm}{}\overleftarrow{A=B}\raisebox{-2mm}{}$
10702 \end_inset
10703
10704
10705 \end_layout
10706
10707 \end_inset
10708 </cell>
10709 </row>
10710 <row>
10711 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10712 \begin_inset Text
10713
10714 \begin_layout Plain Layout
10715
10716 \backslash
10717 underleftarrow
10718 \begin_inset ERT
10719 status collapsed
10720
10721 \begin_layout Plain Layout
10722
10723
10724 \backslash
10725 leer 
10726 \end_layout
10727
10728 \end_inset
10729
10730 A=B
10731 \end_layout
10732
10733 \end_inset
10734 </cell>
10735 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
10736 \begin_inset Text
10737
10738 \begin_layout Plain Layout
10739 \begin_inset Formula $\raisebox{5mm}{}\underleftarrow{A=B}\raisebox{-3mm}{}$
10740 \end_inset
10741
10742
10743 \end_layout
10744
10745 \end_inset
10746 </cell>
10747 </row>
10748 <row>
10749 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10750 \begin_inset Text
10751
10752 \begin_layout Plain Layout
10753
10754 \backslash
10755 overleftrightarrow
10756 \begin_inset ERT
10757 status collapsed
10758
10759 \begin_layout Plain Layout
10760
10761
10762 \backslash
10763 leer 
10764 \end_layout
10765
10766 \end_inset
10767
10768 A=B
10769 \end_layout
10770
10771 \end_inset
10772 </cell>
10773 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
10774 \begin_inset Text
10775
10776 \begin_layout Plain Layout
10777 \begin_inset Formula $\raisebox{6mm}{}\overleftrightarrow{A=B}\raisebox{-2mm}{}$
10778 \end_inset
10779
10780
10781 \end_layout
10782
10783 \end_inset
10784 </cell>
10785 </row>
10786 <row>
10787 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10788 \begin_inset Text
10789
10790 \begin_layout Plain Layout
10791
10792 \backslash
10793 underleftrightarrow
10794 \begin_inset ERT
10795 status collapsed
10796
10797 \begin_layout Plain Layout
10798
10799
10800 \backslash
10801 leer 
10802 \end_layout
10803
10804 \end_inset
10805
10806 A=B
10807 \end_layout
10808
10809 \end_inset
10810 </cell>
10811 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
10812 \begin_inset Text
10813
10814 \begin_layout Plain Layout
10815 \begin_inset Formula $\raisebox{5mm}{}\underleftrightarrow{A=B}\raisebox{-3mm}{}$
10816 \end_inset
10817
10818
10819 \end_layout
10820
10821 \end_inset
10822 </cell>
10823 </row>
10824 </lyxtabular>
10825
10826 \end_inset
10827
10828
10829 \begin_inset space \hfill{}
10830 \end_inset
10831
10832
10833 \begin_inset Tabular
10834 <lyxtabular version="3" rows="5" columns="2">
10835 <features tabularvalignment="middle">
10836 <column alignment="center" valignment="top" width="0pt">
10837 <column alignment="center" valignment="top" width="0pt">
10838 <row>
10839 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
10840 \begin_inset Text
10841
10842 \begin_layout Plain Layout
10843 Befehl
10844 \end_layout
10845
10846 \end_inset
10847 </cell>
10848 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
10849 \begin_inset Text
10850
10851 \begin_layout Plain Layout
10852 Ergebnis
10853 \end_layout
10854
10855 \end_inset
10856 </cell>
10857 </row>
10858 <row>
10859 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
10860 \begin_inset Text
10861
10862 \begin_layout Plain Layout
10863
10864 \backslash
10865 overrightarrow
10866 \begin_inset ERT
10867 status collapsed
10868
10869 \begin_layout Plain Layout
10870
10871
10872 \backslash
10873 leer 
10874 \end_layout
10875
10876 \end_inset
10877
10878 A=B
10879 \end_layout
10880
10881 \end_inset
10882 </cell>
10883 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
10884 \begin_inset Text
10885
10886 \begin_layout Plain Layout
10887 \begin_inset Formula $\raisebox{6mm}{}\overrightarrow{A=B}\raisebox{-2mm}{}$
10888 \end_inset
10889
10890
10891 \end_layout
10892
10893 \end_inset
10894 </cell>
10895 </row>
10896 <row>
10897 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10898 \begin_inset Text
10899
10900 \begin_layout Plain Layout
10901
10902 \backslash
10903 underrightarrow
10904 \begin_inset ERT
10905 status collapsed
10906
10907 \begin_layout Plain Layout
10908
10909
10910 \backslash
10911 leer 
10912 \end_layout
10913
10914 \end_inset
10915
10916 A=B
10917 \end_layout
10918
10919 \end_inset
10920 </cell>
10921 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
10922 \begin_inset Text
10923
10924 \begin_layout Plain Layout
10925 \begin_inset Formula $\raisebox{5mm}{}\underrightarrow{A=B}\raisebox{-3mm}{}$
10926 \end_inset
10927
10928
10929 \end_layout
10930
10931 \end_inset
10932 </cell>
10933 </row>
10934 <row>
10935 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10936 \begin_inset Text
10937
10938 \begin_layout Plain Layout
10939
10940 \backslash
10941 widetilde
10942 \begin_inset ERT
10943 status collapsed
10944
10945 \begin_layout Plain Layout
10946
10947
10948 \backslash
10949 leer 
10950 \end_layout
10951
10952 \end_inset
10953
10954 A=B
10955 \end_layout
10956
10957 \end_inset
10958 </cell>
10959 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
10960 \begin_inset Text
10961
10962 \begin_layout Plain Layout
10963 \begin_inset Formula $\raisebox{6mm}{}\widetilde{A=B}\raisebox{-2mm}{}$
10964 \end_inset
10965
10966
10967 \end_layout
10968
10969 \end_inset
10970 </cell>
10971 </row>
10972 <row>
10973 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10974 \begin_inset Text
10975
10976 \begin_layout Plain Layout
10977
10978 \backslash
10979 widehat
10980 \begin_inset ERT
10981 status collapsed
10982
10983 \begin_layout Plain Layout
10984
10985
10986 \backslash
10987 leer 
10988 \end_layout
10989
10990 \end_inset
10991
10992 A=B
10993 \end_layout
10994
10995 \end_inset
10996 </cell>
10997 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
10998 \begin_inset Text
10999
11000 \begin_layout Plain Layout
11001 \begin_inset Formula $\raisebox{6mm}{}\widehat{A=B}\raisebox{-2mm}{}$
11002 \end_inset
11003
11004
11005 \end_layout
11006
11007 \end_inset
11008 </cell>
11009 </row>
11010 </lyxtabular>
11011
11012 \end_inset
11013
11014
11015 \begin_inset space \hfill{}
11016 \end_inset
11017
11018
11019 \end_layout
11020
11021 \begin_layout Standard
11022 \begin_inset VSpace medskip
11023 \end_inset
11024
11025 Mit diesen Befehlen können beliebig viele Zeichen akzentuiert werden.
11026  Die Akzente
11027 \begin_inset Newline linebreak
11028 \end_inset
11029
11030
11031 \series bold
11032
11033 \backslash
11034 widetilde
11035 \series default
11036  und 
11037 \series bold
11038
11039 \backslash
11040 widehat
11041 \series default
11042  werden aber im Ausdruck nur mit einer Länge von etwa drei Zeichen gesetzt,
11043  was folgendes Beispiel verdeutlicht:
11044 \begin_inset Formula \[
11045 \widetilde{A+B=C-D}\]
11046
11047 \end_inset
11048
11049
11050 \end_layout
11051
11052 \begin_layout Standard
11053 Mit den im vorigen Kapitel beschriebenen Befehlen 
11054 \series bold
11055
11056 \backslash
11057 overset
11058 \series default
11059
11060 \begin_inset Index idx
11061 status collapsed
11062
11063 \begin_layout Plain Layout
11064 Befehle ! O ! 
11065 \backslash
11066 overset
11067 \end_layout
11068
11069 \end_inset
11070
11071  und 
11072 \series bold
11073
11074 \backslash
11075 underset
11076 \series default
11077
11078 \begin_inset Index idx
11079 status collapsed
11080
11081 \begin_layout Plain Layout
11082 Befehle ! U ! 
11083 \backslash
11084 underset
11085 \end_layout
11086
11087 \end_inset
11088
11089  ist es auch möglich mehrere Zeichen zu akzentuieren.
11090  Der Befehl 
11091 \series bold
11092
11093 \backslash
11094 underset
11095 \begin_inset ERT
11096 status collapsed
11097
11098 \begin_layout Plain Layout
11099
11100
11101 \backslash
11102 leer 
11103 \end_layout
11104
11105 \end_inset
11106
11107 A=B
11108 \begin_inset Formula $\downarrow$
11109 \end_inset
11110
11111 ***
11112 \series default
11113  ergibt:
11114 \begin_inset Formula \[
11115 \underset{***}{A=B}\]
11116
11117 \end_inset
11118
11119
11120 \end_layout
11121
11122 \begin_layout Section
11123 Leerraum
11124 \begin_inset CommandInset label
11125 LatexCommand label
11126 name "sub:Leerraum"
11127
11128 \end_inset
11129
11130
11131 \begin_inset Index idx
11132 status collapsed
11133
11134 \begin_layout Plain Layout
11135 Leerraum ! horizontaler
11136 \end_layout
11137
11138 \end_inset
11139
11140
11141 \end_layout
11142
11143 \begin_layout Subsection
11144 Vordefinierter Leerraum
11145 \begin_inset CommandInset label
11146 LatexCommand label
11147 name "sub:Vordefinierter-Leerraum"
11148
11149 \end_inset
11150
11151
11152 \begin_inset Index idx
11153 status collapsed
11154
11155 \begin_layout Plain Layout
11156 Leerraum ! horizontaler ! vordefiniert
11157 \end_layout
11158
11159 \end_inset
11160
11161
11162 \end_layout
11163
11164 \begin_layout Standard
11165 Ab und an ist es notwendig in einer Formel horizontalen Leerraum einzufügen.
11166  Dazu gibt man ein geschütztes Leerzeichen ein.
11167  Es erscheint ein 
11168 \begin_inset Quotes gld
11169 \end_inset
11170
11171
11172 \color blue
11173
11174 \begin_inset ERT
11175 status collapsed
11176
11177 \begin_layout Plain Layout
11178
11179
11180 \backslash
11181 leer 
11182 \end_layout
11183
11184 \end_inset
11185
11186
11187 \color inherit
11188
11189 \begin_inset Quotes grd
11190 \end_inset
11191
11192  und man kann durch mehrfaches Drücken der Leertaste aus acht verschiedenen
11193  Leerraum-Größen wählen.
11194  Man kann die Leerräume auch über den Mathe-Werkzeugleistenknopf 
11195 \begin_inset Graphics
11196         filename ../../images/math/space.png
11197         scale 85
11198
11199 \end_inset
11200
11201  oder mit einzelnen Befehlen aufrufen.
11202  Unabhängig vom eingegebenen Befehl kann man durch Drücken der Leertaste
11203  danach wieder aus allen Größen wählen.
11204 \end_layout
11205
11206 \begin_layout Standard
11207 \align center
11208 \begin_inset VSpace -5mm
11209 \end_inset
11210
11211
11212 \begin_inset Tabular
11213 <lyxtabular version="3" rows="3" columns="7">
11214 <features tabularvalignment="middle">
11215 <column alignment="center" valignment="middle" width="6.8cm">
11216 <column alignment="center" valignment="top" width="0pt">
11217 <column alignment="center" valignment="top" width="0pt">
11218 <column alignment="center" valignment="top" width="0pt">
11219 <column alignment="center" valignment="top" width="0pt">
11220 <column alignment="center" valignment="top" width="0pt">
11221 <column alignment="center" valignment="top" width="0pt">
11222 <row>
11223 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11224 \begin_inset Text
11225
11226 \begin_layout Plain Layout
11227 Befehl
11228 \end_layout
11229
11230 \end_inset
11231 </cell>
11232 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11233 \begin_inset Text
11234
11235 \begin_layout Plain Layout
11236
11237 \backslash
11238 ,
11239 \end_layout
11240
11241 \end_inset
11242 </cell>
11243 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11244 \begin_inset Text
11245
11246 \begin_layout Plain Layout
11247
11248 \backslash
11249 :
11250 \end_layout
11251
11252 \end_inset
11253 </cell>
11254 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11255 \begin_inset Text
11256
11257 \begin_layout Plain Layout
11258
11259 \backslash
11260 ;
11261 \end_layout
11262
11263 \end_inset
11264 </cell>
11265 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11266 \begin_inset Text
11267
11268 \begin_layout Plain Layout
11269
11270 \backslash
11271 quad
11272 \end_layout
11273
11274 \end_inset
11275 </cell>
11276 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11277 \begin_inset Text
11278
11279 \begin_layout Plain Layout
11280
11281 \backslash
11282 qquad
11283 \end_layout
11284
11285 \end_inset
11286 </cell>
11287 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
11288 \begin_inset Text
11289
11290 \begin_layout Plain Layout
11291
11292 \backslash
11293 !
11294 \end_layout
11295
11296 \end_inset
11297 </cell>
11298 </row>
11299 <row>
11300 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none" width="7cm">
11301 \begin_inset Text
11302
11303 \begin_layout Plain Layout
11304 Anzahl der Leertastendrücke nach Eingabe des geschützten Leerzeichens
11305 \end_layout
11306
11307 \end_inset
11308 </cell>
11309 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11310 \begin_inset Text
11311
11312 \begin_layout Plain Layout
11313 0
11314 \end_layout
11315
11316 \end_inset
11317 </cell>
11318 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11319 \begin_inset Text
11320
11321 \begin_layout Plain Layout
11322 1
11323 \end_layout
11324
11325 \end_inset
11326 </cell>
11327 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11328 \begin_inset Text
11329
11330 \begin_layout Plain Layout
11331 2
11332 \end_layout
11333
11334 \end_inset
11335 </cell>
11336 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11337 \begin_inset Text
11338
11339 \begin_layout Plain Layout
11340 3
11341 \end_layout
11342
11343 \end_inset
11344 </cell>
11345 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11346 \begin_inset Text
11347
11348 \begin_layout Plain Layout
11349 4
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 5
11359 \end_layout
11360
11361 \end_inset
11362 </cell>
11363 </row>
11364 <row>
11365 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11366 \begin_inset Text
11367
11368 \begin_layout Plain Layout
11369 Ergebnis
11370 \end_layout
11371
11372 \end_inset
11373 </cell>
11374 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11375 \begin_inset Text
11376
11377 \begin_layout Plain Layout
11378 \begin_inset Formula $A\, B$
11379 \end_inset
11380
11381
11382 \end_layout
11383
11384 \end_inset
11385 </cell>
11386 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11387 \begin_inset Text
11388
11389 \begin_layout Plain Layout
11390 \begin_inset Formula $A\: B$
11391 \end_inset
11392
11393
11394 \end_layout
11395
11396 \end_inset
11397 </cell>
11398 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11399 \begin_inset Text
11400
11401 \begin_layout Plain Layout
11402 \begin_inset Formula $A\; B$
11403 \end_inset
11404
11405
11406 \end_layout
11407
11408 \end_inset
11409 </cell>
11410 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11411 \begin_inset Text
11412
11413 \begin_layout Plain Layout
11414 \begin_inset Formula $A\quad B$
11415 \end_inset
11416
11417
11418 \end_layout
11419
11420 \end_inset
11421 </cell>
11422 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11423 \begin_inset Text
11424
11425 \begin_layout Plain Layout
11426 \begin_inset Formula $A\qquad B$
11427 \end_inset
11428
11429
11430 \end_layout
11431
11432 \end_inset
11433 </cell>
11434 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
11435 \begin_inset Text
11436
11437 \begin_layout Plain Layout
11438 \begin_inset Formula $A\! B$
11439 \end_inset
11440
11441
11442 \end_layout
11443
11444 \end_inset
11445 </cell>
11446 </row>
11447 </lyxtabular>
11448
11449 \end_inset
11450
11451
11452 \end_layout
11453
11454 \begin_layout Standard
11455 Die letzte Größe scheint überhaupt keinen Leerraum zu produzieren.
11456  In LyX ist diese allerdings auch im Gegensatz zu allen anderen rot eingefärbt,
11457  denn sie erstellt negativen Leerraum.
11458  Es gibt noch zwei weitere negative Leerräume:
11459 \end_layout
11460
11461 \begin_layout Standard
11462 \align center
11463 \begin_inset Tabular
11464 <lyxtabular version="3" rows="3" columns="3">
11465 <features tabularvalignment="middle">
11466 <column alignment="center" valignment="middle" width="6.8cm">
11467 <column alignment="center" valignment="top" width="0pt">
11468 <column alignment="center" valignment="top" width="0pt">
11469 <row>
11470 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11471 \begin_inset Text
11472
11473 \begin_layout Plain Layout
11474 Befehl
11475 \end_layout
11476
11477 \end_inset
11478 </cell>
11479 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11480 \begin_inset Text
11481
11482 \begin_layout Plain Layout
11483
11484 \backslash
11485 negmedspace
11486 \end_layout
11487
11488 \end_inset
11489 </cell>
11490 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
11491 \begin_inset Text
11492
11493 \begin_layout Plain Layout
11494
11495 \backslash
11496 negthickspace
11497 \end_layout
11498
11499 \end_inset
11500 </cell>
11501 </row>
11502 <row>
11503 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11504 \begin_inset Text
11505
11506 \begin_layout Plain Layout
11507 Anzahl der Leertastendrücke nach Eingabe des geschützten Leerzeichens
11508 \end_layout
11509
11510 \end_inset
11511 </cell>
11512 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11513 \begin_inset Text
11514
11515 \begin_layout Plain Layout
11516 6
11517 \end_layout
11518
11519 \end_inset
11520 </cell>
11521 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
11522 \begin_inset Text
11523
11524 \begin_layout Plain Layout
11525 7
11526 \end_layout
11527
11528 \end_inset
11529 </cell>
11530 </row>
11531 <row>
11532 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11533 \begin_inset Text
11534
11535 \begin_layout Plain Layout
11536 Ergebnis
11537 \end_layout
11538
11539 \end_inset
11540 </cell>
11541 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11542 \begin_inset Text
11543
11544 \begin_layout Plain Layout
11545 \begin_inset Formula $A\negmedspace B$
11546 \end_inset
11547
11548
11549 \end_layout
11550
11551 \end_inset
11552 </cell>
11553 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
11554 \begin_inset Text
11555
11556 \begin_layout Plain Layout
11557 \begin_inset Formula $A\negthickspace B$
11558 \end_inset
11559
11560
11561 \end_layout
11562
11563 \end_inset
11564 </cell>
11565 </row>
11566 </lyxtabular>
11567
11568 \end_inset
11569
11570
11571 \end_layout
11572
11573 \begin_layout Standard
11574 Negative Leerräume bewirken, dass sich benachbarte Zeichen überschneiden.
11575  Man kann auf diese Weise Ligaturen erzwingen, was z.
11576 \begin_inset space \thinspace{}
11577 \end_inset
11578
11579 B.
11580  für Summenzeichen von Nutzen ist: 
11581 \end_layout
11582
11583 \begin_layout Standard
11584 \align center
11585 \begin_inset Tabular
11586 <lyxtabular version="3" rows="3" columns="2">
11587 <features tabularvalignment="middle">
11588 <column alignment="center" valignment="top" width="0">
11589 <column alignment="center" valignment="top" width="0">
11590 <row>
11591 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11592 \begin_inset Text
11593
11594 \begin_layout Plain Layout
11595 Befehl
11596 \end_layout
11597
11598 \end_inset
11599 </cell>
11600 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
11601 \begin_inset Text
11602
11603 \begin_layout Plain Layout
11604 Ergebnis
11605 \begin_inset Note Note
11606 status collapsed
11607
11608 \begin_layout Plain Layout
11609
11610 \series bold
11611
11612 \backslash
11613 raisebox
11614 \series default
11615  dient nur als Abstandhalter.
11616 \end_layout
11617
11618 \end_inset
11619
11620
11621 \end_layout
11622
11623 \end_inset
11624 </cell>
11625 </row>
11626 <row>
11627 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11628 \begin_inset Text
11629
11630 \begin_layout Plain Layout
11631
11632 \backslash
11633 sum
11634 \backslash
11635 sum
11636 \begin_inset ERT
11637 status collapsed
11638
11639 \begin_layout Plain Layout
11640
11641
11642 \backslash
11643 leer 
11644 \end_layout
11645
11646 \end_inset
11647
11648 f_kl
11649 \end_layout
11650
11651 \end_inset
11652 </cell>
11653 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11654 \begin_inset Text
11655
11656 \begin_layout Plain Layout
11657 \begin_inset Formula $\raisebox{4.5mm}{}\sum\sum f_{kl}\raisebox{-2.5mm}{}$
11658 \end_inset
11659
11660
11661 \end_layout
11662
11663 \end_inset
11664 </cell>
11665 </row>
11666 <row>
11667 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11668 \begin_inset Text
11669
11670 \begin_layout Plain Layout
11671
11672 \backslash
11673 sum
11674 \backslash
11675 negmedspace
11676 \backslash
11677 sum
11678 \begin_inset ERT
11679 status collapsed
11680
11681 \begin_layout Plain Layout
11682
11683
11684 \backslash
11685 leer 
11686 \end_layout
11687
11688 \end_inset
11689
11690 f_kl
11691 \end_layout
11692
11693 \end_inset
11694 </cell>
11695 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
11696 \begin_inset Text
11697
11698 \begin_layout Plain Layout
11699 \begin_inset Formula $\raisebox{4.5mm}{}\sum\negmedspace\sum f_{kl}\raisebox{-2.5mm}{}$
11700 \end_inset
11701
11702
11703 \end_layout
11704
11705 \end_inset
11706 </cell>
11707 </row>
11708 </lyxtabular>
11709
11710 \end_inset
11711
11712
11713 \end_layout
11714
11715 \begin_layout Standard
11716 Relationen, wie z.
11717 \begin_inset space \thinspace{}
11718 \end_inset
11719
11720 B.
11721  Gleichheitszeichen, sind immer von Leerraum umgeben.
11722  Will man dies unterdrücken, schreibt man das Gleichheitszeichen in eine
11723  TeX-Klammer.
11724  Die Wirkung kann man an folgendem Beispiel gut erkennen:
11725 \end_layout
11726
11727 \begin_layout Standard
11728 \align center
11729 \begin_inset Tabular
11730 <lyxtabular version="3" rows="2" columns="2">
11731 <features tabularvalignment="middle">
11732 <column alignment="center" valignment="top" width="0pt">
11733 <column alignment="center" valignment="top" width="0pt">
11734 <row>
11735 <cell alignment="center" valignment="top" usebox="none">
11736 \begin_inset Text
11737
11738 \begin_layout Plain Layout
11739 normale Gleichung
11740 \end_layout
11741
11742 \end_inset
11743 </cell>
11744 <cell alignment="center" valignment="top" usebox="none">
11745 \begin_inset Text
11746
11747 \begin_layout Plain Layout
11748 \begin_inset Formula $A=B$
11749 \end_inset
11750
11751
11752 \end_layout
11753
11754 \end_inset
11755 </cell>
11756 </row>
11757 <row>
11758 <cell alignment="center" valignment="top" usebox="none">
11759 \begin_inset Text
11760
11761 \begin_layout Plain Layout
11762 \begin_inset Note Note
11763 status collapsed
11764
11765 \begin_layout Plain Layout
11766
11767 \series bold
11768
11769 \backslash
11770 raisebox
11771 \series default
11772  dient nur als Abstandhalter.
11773 \end_layout
11774
11775 \end_inset
11776
11777
11778 \begin_inset Formula $\raisebox{5mm}{}$
11779 \end_inset
11780
11781 Gleichung ohne Leerraum
11782 \end_layout
11783
11784 \end_inset
11785 </cell>
11786 <cell multicolumn="1" alignment="center" valignment="top" usebox="none">
11787 \begin_inset Text
11788
11789 \begin_layout Plain Layout
11790 \begin_inset Formula $A{=}B$
11791 \end_inset
11792
11793
11794 \end_layout
11795
11796 \end_inset
11797 </cell>
11798 </row>
11799 </lyxtabular>
11800
11801 \end_inset
11802
11803
11804 \end_layout
11805
11806 \begin_layout Standard
11807 Der Befehl für die letzte Formel lautet: 
11808 \series bold
11809 A
11810 \backslash
11811 {=
11812 \begin_inset Formula $\to$
11813 \end_inset
11814
11815 B
11816 \end_layout
11817
11818 \begin_layout Standard
11819 \begin_inset VSpace bigskip
11820 \end_inset
11821
11822 Leerräumen werden für physikalische Einheiten benötigt, denn zwischen Wert
11823  und Einheit ist der kleinste Leerraum und kein normales Leerzeichen.
11824  Bei Einheiten im Text fügt man den kleinsten Leerraum über das Menü 
11825 \family sans
11826 Einfügen\SpecialChar \menuseparator
11827 Formatierung\SpecialChar \menuseparator
11828 Kleiner
11829 \begin_inset space ~
11830 \end_inset
11831
11832 Abstand
11833 \family default
11834  (Tastenkürzel 
11835 \family sans
11836 Strg+Shift+Leertaste
11837 \family default
11838 ) ein.
11839 \end_layout
11840
11841 \begin_layout Standard
11842 Ein Beispiel zur Veranschaulichung:
11843 \end_layout
11844
11845 \begin_layout Standard
11846 \begin_inset Tabular
11847 <lyxtabular version="3" rows="2" columns="2">
11848 <features tabularvalignment="middle">
11849 <column alignment="left" valignment="top" width="0">
11850 <column alignment="left" valignment="top" width="0">
11851 <row>
11852 <cell alignment="center" valignment="top" usebox="none">
11853 \begin_inset Text
11854
11855 \begin_layout Plain Layout
11856 24 kW
11857 \begin_inset Formula $\cdot$
11858 \end_inset
11859
11860 h
11861 \end_layout
11862
11863 \end_inset
11864 </cell>
11865 <cell alignment="center" valignment="top" usebox="none">
11866 \begin_inset Text
11867
11868 \begin_layout Plain Layout
11869 Leerzeichen zwischen Wert und Einheit
11870 \end_layout
11871
11872 \end_inset
11873 </cell>
11874 </row>
11875 <row>
11876 <cell alignment="center" valignment="top" usebox="none">
11877 \begin_inset Text
11878
11879 \begin_layout Plain Layout
11880 24
11881 \begin_inset space \thinspace{}
11882 \end_inset
11883
11884 kW
11885 \begin_inset Formula $\cdot$
11886 \end_inset
11887
11888 h
11889 \end_layout
11890
11891 \end_inset
11892 </cell>
11893 <cell alignment="center" valignment="top" usebox="none">
11894 \begin_inset Text
11895
11896 \begin_layout Plain Layout
11897 kleinster Leerraum zwischen Wert und Einheit
11898 \end_layout
11899
11900 \end_inset
11901 </cell>
11902 </row>
11903 </lyxtabular>
11904
11905 \end_inset
11906
11907
11908 \end_layout
11909
11910 \begin_layout Subsection
11911 Variabler Leerraum
11912 \begin_inset ERT
11913 status collapsed
11914
11915 \begin_layout Plain Layout
11916
11917
11918 \backslash
11919 texorpdfstring{
11920 \end_layout
11921
11922 \end_inset
11923
11924
11925 \begin_inset Foot
11926 status collapsed
11927
11928 \begin_layout Plain Layout
11929 für vertikalen Leerraum in Formeln siehe 
11930 \begin_inset CommandInset ref
11931 LatexCommand ref
11932 reference "sub:Zeilenabstand"
11933
11934 \end_inset
11935
11936
11937 \end_layout
11938
11939 \end_inset
11940
11941
11942 \begin_inset ERT
11943 status collapsed
11944
11945 \begin_layout Plain Layout
11946
11947 }{}
11948 \end_layout
11949
11950 \end_inset
11951
11952
11953 \begin_inset Note Note
11954 status collapsed
11955
11956 \begin_layout Plain Layout
11957
11958 \series bold
11959
11960 \backslash
11961 texorpdfstring
11962 \series default
11963  dient dazu, dass die Fußnote nicht mit im PDF-Lesezeichen erscheint.
11964 \end_layout
11965
11966 \begin_layout Plain Layout
11967 Näheres zu 
11968 \series bold
11969
11970 \backslash
11971 texorpdfstring
11972 \series default
11973  steht in Kapitel 
11974 \begin_inset CommandInset ref
11975 LatexCommand ref
11976 reference "sub:Formeln-in-Überschriften"
11977
11978 \end_inset
11979
11980 .
11981 \end_layout
11982
11983 \end_inset
11984
11985
11986 \begin_inset CommandInset label
11987 LatexCommand label
11988 name "sub:Variabler-Leerraum"
11989
11990 \end_inset
11991
11992
11993 \begin_inset Index idx
11994 status collapsed
11995
11996 \begin_layout Plain Layout
11997 Leerraum ! horizontaler ! variabel
11998 \end_layout
11999
12000 \end_inset
12001
12002
12003 \end_layout
12004
12005 \begin_layout Standard
12006 Leerraum mit vorgegebener Länge lässt sich mit dem Befehl 
12007 \series bold
12008
12009 \backslash
12010 hspace
12011 \series default
12012
12013 \begin_inset Index idx
12014 status collapsed
12015
12016 \begin_layout Plain Layout
12017 Befehle ! H ! 
12018 \backslash
12019 hspace
12020 \end_layout
12021
12022 \end_inset
12023
12024  einfügen.
12025  Es erscheint ein langes 
12026 \begin_inset Quotes gld
12027 \end_inset
12028
12029
12030 \color blue
12031
12032 \begin_inset ERT
12033 status collapsed
12034
12035 \begin_layout Plain Layout
12036
12037
12038 \backslash
12039 leer 
12040 \end_layout
12041
12042 \end_inset
12043
12044
12045 \color inherit
12046
12047 \begin_inset Quotes grd
12048 \end_inset
12049
12050 .
12051  Die Länge kann eingestellt werden, indem man mit der linken Maustaste auf
12052  das 
12053 \begin_inset Quotes gld
12054 \end_inset
12055
12056
12057 \color blue
12058
12059 \begin_inset ERT
12060 status collapsed
12061
12062 \begin_layout Plain Layout
12063
12064
12065 \backslash
12066 leer 
12067 \end_layout
12068
12069 \end_inset
12070
12071
12072 \color inherit
12073
12074 \begin_inset Quotes grd
12075 \end_inset
12076
12077  klickt.
12078  Die Länge darf auch negativ sein.
12079  Um so viel Leerraum einzufügen, dass die Formel allen verfügbaren Platz
12080  einnimmt, benutzt man den Befehl 
12081 \series bold
12082
12083 \backslash
12084 hfill
12085 \series default
12086
12087 \begin_inset Index idx
12088 status collapsed
12089
12090 \begin_layout Plain Layout
12091 Befehle ! H ! 
12092 \backslash
12093 hfill
12094 \end_layout
12095
12096 \end_inset
12097
12098 .
12099 \end_layout
12100
12101 \begin_layout Standard
12102 \begin_inset VSpace -1mm
12103 \end_inset
12104
12105
12106 \end_layout
12107
12108 \begin_layout Standard
12109 \align center
12110 \begin_inset Tabular
12111 <lyxtabular version="3" rows="4" columns="2">
12112 <features tabularvalignment="middle">
12113 <column alignment="center" valignment="top" width="0">
12114 <column alignment="center" valignment="top" width="0">
12115 <row>
12116 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
12117 \begin_inset Text
12118
12119 \begin_layout Plain Layout
12120 Befehl (
12121 \backslash
12122 hspace Länge)
12123 \end_layout
12124
12125 \end_inset
12126 </cell>
12127 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
12128 \begin_inset Text
12129
12130 \begin_layout Plain Layout
12131 Ergebnis
12132 \end_layout
12133
12134 \end_inset
12135 </cell>
12136 </row>
12137 <row>
12138 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12139 \begin_inset Text
12140
12141 \begin_layout Plain Layout
12142 A=B
12143 \backslash
12144 hspace{3cm
12145 \begin_inset Formula $\to$
12146 \end_inset
12147
12148 A
12149 \backslash
12150 not=C (3
12151 \begin_inset space \thinspace{}
12152 \end_inset
12153
12154 cm)
12155 \end_layout
12156
12157 \end_inset
12158 </cell>
12159 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12160 \begin_inset Text
12161
12162 \begin_layout Plain Layout
12163 \begin_inset Formula $A=B\hspace{3cm}A\not=C$
12164 \end_inset
12165
12166
12167 \end_layout
12168
12169 \end_inset
12170 </cell>
12171 </row>
12172 <row>
12173 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
12174 \begin_inset Text
12175
12176 \begin_layout Plain Layout
12177 A
12178 \backslash
12179 hspace{-1mm
12180 \begin_inset Formula $\to$
12181 \end_inset
12182
12183 A
12184 \backslash
12185 not=A (-1
12186 \begin_inset space \thinspace{}
12187 \end_inset
12188
12189 mm)
12190 \end_layout
12191
12192 \end_inset
12193 </cell>
12194 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
12195 \begin_inset Text
12196
12197 \begin_layout Plain Layout
12198 \begin_inset Formula $A\hspace{-1mm}A\not=A$
12199 \end_inset
12200
12201
12202 \end_layout
12203
12204 \end_inset
12205 </cell>
12206 </row>
12207 <row>
12208 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
12209 \begin_inset Text
12210
12211 \begin_layout Plain Layout
12212 A=A
12213 \backslash
12214 hfill
12215 \begin_inset ERT
12216 status collapsed
12217
12218 \begin_layout Plain Layout
12219
12220
12221 \backslash
12222 leer 
12223 \end_layout
12224
12225 \end_inset
12226
12227 B=B
12228 \end_layout
12229
12230 \end_inset
12231 </cell>
12232 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
12233 \begin_inset Text
12234
12235 \begin_layout Plain Layout
12236 \begin_inset Formula $A=A\hfill B=B$
12237 \end_inset
12238
12239
12240 \end_layout
12241
12242 \end_inset
12243 </cell>
12244 </row>
12245 </lyxtabular>
12246
12247 \end_inset
12248
12249
12250 \end_layout
12251
12252 \begin_layout Standard
12253 Im letzten Beispiel ist der verfügbare Platz durch die Länge des längsten
12254  Spalteneintrags der Tabelle vorgegeben.
12255  In einer eingebetteten Formel ist der Platz von der Länge der Zeile abhängig,
12256  in die 
12257 \series bold
12258
12259 \backslash
12260 hfill
12261 \series default
12262  eingegeben wird.
12263  Füllt eine Zeile die Breite komplett aus, wird demnach kein Leerraum erstellt.
12264  
12265 \series bold
12266
12267 \backslash
12268 hfill
12269 \series default
12270  wirkt in abgesetzten Formeln nur, wenn der Formelstil 
12271 \series bold
12272 Eingerückt
12273 \series default
12274  eingestellt ist.
12275  (Formelstile sind in 
12276 \begin_inset CommandInset ref
12277 LatexCommand ref
12278 reference "sec:Formelstile"
12279
12280 \end_inset
12281
12282  erklärt.)
12283 \end_layout
12284
12285 \begin_layout Standard
12286 Neben 
12287 \series bold
12288
12289 \backslash
12290 hfill
12291 \series default
12292  gibt es noch die Befehle 
12293 \series bold
12294
12295 \backslash
12296 dotfill
12297 \series default
12298  und 
12299 \series bold
12300
12301 \backslash
12302 hrulefill
12303 \series default
12304 , die den Leerraum mit einem Muster füllen, siehe 
12305 \begin_inset CommandInset ref
12306 LatexCommand ref
12307 reference "sub:Fortsetzungspunkte"
12308
12309 \end_inset
12310
12311  für ein Beispiel.
12312 \end_layout
12313
12314 \begin_layout Standard
12315 Variabler Leerraum kann für Text über das Menü 
12316 \family sans
12317 Einfügen\SpecialChar \menuseparator
12318 Formatierung\SpecialChar \menuseparator
12319 Horizontaler
12320 \begin_inset space ~
12321 \end_inset
12322
12323 Abstand
12324 \family default
12325  eingefügt werden:
12326 \end_layout
12327
12328 \begin_layout Standard
12329 Dies ist eine Zeile mit
12330 \begin_inset space \hspace{}
12331 \length 2cm
12332 \end_inset
12333
12334 2
12335 \begin_inset space \thinspace{}
12336 \end_inset
12337
12338 cm Leerraum.
12339 \end_layout
12340
12341 \begin_layout Standard
12342 Dies ist eine Zeile mit
12343 \begin_inset space \hfill{}
12344 \end_inset
12345
12346 maximalem Leerraum.
12347 \end_layout
12348
12349 \begin_layout Subsection
12350 Leerraum neben eingebetteten Formeln
12351 \begin_inset Index idx
12352 status collapsed
12353
12354 \begin_layout Plain Layout
12355 Leerraum ! neben eingebetteten Formeln
12356 \end_layout
12357
12358 \end_inset
12359
12360
12361 \end_layout
12362
12363 \begin_layout Standard
12364 Über die Länge 
12365 \series bold
12366
12367 \backslash
12368 mathsurround
12369 \series default
12370
12371 \begin_inset Index idx
12372 status collapsed
12373
12374 \begin_layout Plain Layout
12375 Befehle ! M ! 
12376 \backslash
12377 mathsurround
12378 \end_layout
12379
12380 \end_inset
12381
12382  lässt sich der Leerraum einstellen, der neben eingebettete Formeln gesetzt
12383  wird.
12384  Der Wert einer Länge wird mit dem Befehl 
12385 \series bold
12386
12387 \backslash
12388 setlength
12389 \series default
12390
12391 \begin_inset Index idx
12392 status collapsed
12393
12394 \begin_layout Plain Layout
12395 Befehle ! S ! 
12396 \backslash
12397 setlength
12398 \end_layout
12399
12400 \end_inset
12401
12402  gesetzt.
12403  Dieser besitzt folgendes Befehlsschema:
12404 \end_layout
12405
12406 \begin_layout Standard
12407
12408 \series bold
12409
12410 \backslash
12411 setlength{Längenname}{Wert}
12412 \end_layout
12413
12414 \begin_layout Standard
12415 Um 
12416 \series bold
12417
12418 \backslash
12419 mathsurround
12420 \series default
12421  den Wert 5
12422 \begin_inset space \thinspace{}
12423 \end_inset
12424
12425 mm zuzuweisen, gibt man im TeX-Modus den Befehl
12426 \end_layout
12427
12428 \begin_layout Standard
12429
12430 \series bold
12431
12432 \backslash
12433 setlength{
12434 \backslash
12435 mathsurround}{5mm}
12436 \end_layout
12437
12438 \begin_layout Standard
12439 ein.
12440  Neben alle eingebetteten Formeln, die auf den Befehl folgen, wird nun 5
12441 \begin_inset space \thinspace{}
12442 \end_inset
12443
12444 mm Leerraum gesetzt:
12445 \begin_inset ERT
12446 status collapsed
12447
12448 \begin_layout Plain Layout
12449
12450
12451 \backslash
12452 setlength{
12453 \backslash
12454 mathsurround}{5mm}
12455 \end_layout
12456
12457 \end_inset
12458
12459
12460 \end_layout
12461
12462 \begin_layout Standard
12463 Dies ist eine Zeile in der sich 
12464 \begin_inset Formula $A=B$
12465 \end_inset
12466
12467  eine Formel mit 5
12468 \begin_inset space \thinspace{}
12469 \end_inset
12470
12471 mm umgebendem Leerraum befindet.
12472 \begin_inset ERT
12473 status collapsed
12474
12475 \begin_layout Plain Layout
12476
12477
12478 \backslash
12479 setlength{
12480 \backslash
12481 mathsurround}{0pt}
12482 \end_layout
12483
12484 \end_inset
12485
12486
12487 \end_layout
12488
12489 \begin_layout Standard
12490 Um wieder zum voreingestellten Wert zurückzukehren, setzt man 
12491 \series bold
12492
12493 \backslash
12494 mathsurround
12495 \series default
12496  auf den Wert 0
12497 \begin_inset space \thinspace{}
12498 \end_inset
12499
12500 pt.
12501 \end_layout
12502
12503 \begin_layout Section
12504 Boxen und Rahmen
12505 \begin_inset Index idx
12506 status collapsed
12507
12508 \begin_layout Plain Layout
12509 Boxen
12510 \end_layout
12511
12512 \end_inset
12513
12514
12515 \begin_inset Index idx
12516 status collapsed
12517
12518 \begin_layout Plain Layout
12519 Rahmen | see
12520 \begin_inset ERT
12521 status collapsed
12522
12523 \begin_layout Plain Layout
12524
12525 {
12526 \end_layout
12527
12528 \end_inset
12529
12530 Boxen
12531 \begin_inset ERT
12532 status collapsed
12533
12534 \begin_layout Plain Layout
12535
12536 }
12537 \end_layout
12538
12539 \end_inset
12540
12541
12542 \end_layout
12543
12544 \end_inset
12545
12546
12547 \end_layout
12548
12549 \begin_layout Standard
12550 Boxen für Text sind im Kapitel 
12551 \family typewriter
12552 Boxen
12553 \family default
12554  im Handbuch 
12555 \family typewriter
12556 Eingebettete
12557 \begin_inset space ~
12558 \end_inset
12559
12560 Objekte
12561 \family default
12562  beschrieben.
12563 \end_layout
12564
12565 \begin_layout Subsection
12566 Boxen mit Rahmen
12567 \begin_inset CommandInset label
12568 LatexCommand label
12569 name "sub:Boxen-mit-Rahmen"
12570
12571 \end_inset
12572
12573
12574 \begin_inset Index idx
12575 status collapsed
12576
12577 \begin_layout Plain Layout
12578 Boxen ! mit Rahmen
12579 \end_layout
12580
12581 \end_inset
12582
12583
12584 \end_layout
12585
12586 \begin_layout Standard
12587 Es ist möglich Formeln oder Teile davon mit den Befehlen 
12588 \series bold
12589
12590 \backslash
12591 fbox
12592 \series default
12593
12594 \begin_inset Index idx
12595 status collapsed
12596
12597 \begin_layout Plain Layout
12598 Befehle ! F ! 
12599 \backslash
12600 fbox
12601 \end_layout
12602
12603 \end_inset
12604
12605  und 
12606 \series bold
12607
12608 \backslash
12609 boxed
12610 \series default
12611
12612 \begin_inset Index idx
12613 status collapsed
12614
12615 \begin_layout Plain Layout
12616 Befehle ! B ! 
12617 \backslash
12618 boxed
12619 \end_layout
12620
12621 \end_inset
12622
12623  zu umranden.
12624 \end_layout
12625
12626 \begin_layout Standard
12627 Gibt man einen dieser Befehle in eine Formel ein, erscheint ein Eingabefeld
12628  in einem Rahmen.
12629  Bei 
12630 \series bold
12631
12632 \backslash
12633 fbox
12634 \series default
12635  muss in diesem Eingabefeld mit 
12636 \family sans
12637 Strg+M
12638 \family default
12639  noch eine Formel erstellt werden, denn der Inhalt dieser Box wird sonst
12640  als mathematischer Text behandelt.
12641  Verwendet man 
12642 \series bold
12643
12644 \backslash
12645 boxed
12646 \series default
12647 , wird automatisch im Rahmen eine neue Formel erzeugt.
12648 \end_layout
12649
12650 \begin_layout Standard
12651 Der Befehl 
12652 \series bold
12653
12654 \backslash
12655 fbox
12656 \series default
12657  ist nicht zur Umrandung von abgesetzten Formeln geeignet, denn die Formel
12658  wird dann immer in Textzeilengröße gesetzt.
12659  Im Gegensatz dazu ist 
12660 \series bold
12661
12662 \backslash
12663 boxed
12664 \series default
12665  nicht zur Umrandung von Formeln in einer Textzeile geeignet, denn die Formel
12666  wird dann immer in der Größe einer abgesetzten Formel gesetzt.
12667 \end_layout
12668
12669 \begin_layout Standard
12670 Als Erweiterung zu 
12671 \series bold
12672
12673 \backslash
12674 fbox
12675 \series default
12676  gibt es den Befehl 
12677 \series bold
12678
12679 \backslash
12680 framebox
12681 \series default
12682
12683 \begin_inset Index idx
12684 status collapsed
12685
12686 \begin_layout Plain Layout
12687 Befehle ! F ! 
12688 \backslash
12689 framebox
12690 \end_layout
12691
12692 \end_inset
12693
12694 , bei dem man zusätzlich die Rahmenbreite und die Ausrichtung einstellen
12695  kann.
12696  
12697 \series bold
12698
12699 \backslash
12700 framebox
12701 \series default
12702  wird nach folgendem Schema verwendet:
12703 \end_layout
12704
12705 \begin_layout Standard
12706
12707 \series bold
12708
12709 \backslash
12710 framebox[Rahmenbreite][Position]{Boxinhalt}
12711 \end_layout
12712
12713 \begin_layout Standard
12714 Die Position kann entweder 
12715 \emph on
12716 l
12717 \emph default
12718  oder 
12719 \emph on
12720 r
12721 \emph default
12722  sein.
12723  
12724 \emph on
12725 l
12726 \emph default
12727  bewirkt linksbündige, 
12728 \emph on
12729 r
12730 \emph default
12731  rechtsbündige Ausrichtung der Formel in der Box.
12732  Gibt man keine Position an, wird die Formel zentriert.
12733 \begin_inset Newline newline
12734 \end_inset
12735
12736 Gibt man keine Breite an, darf auch keine Position angegeben werden.
12737  In diesem Falle wird die Rahmenbreite wie bei 
12738 \series bold
12739
12740 \backslash
12741 fbox
12742 \series default
12743  an den Boxinhalt angepasst.
12744 \end_layout
12745
12746 \begin_layout Standard
12747 Wenn man den Befehl 
12748 \series bold
12749
12750 \backslash
12751 framebox
12752 \series default
12753  eingibt, erscheint eine Box mit drei Eingabefeldern.
12754  Die ersten beiden sind von eckigen Klammern umgeben und stehen für die
12755  beiden optionalen Argumente.
12756  In das dritte Feld wird wie bei 
12757 \series bold
12758
12759 \backslash
12760 fbox
12761 \series default
12762  die Formel eingegeben.
12763 \end_layout
12764
12765 \begin_layout Standard
12766 \align center
12767 \begin_inset Tabular
12768 <lyxtabular version="3" rows="5" columns="2">
12769 <features tabularvalignment="middle">
12770 <column alignment="center" valignment="top" width="0">
12771 <column alignment="center" valignment="top" width="0">
12772 <row>
12773 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
12774 \begin_inset Text
12775
12776 \begin_layout Plain Layout
12777 Befehl
12778 \end_layout
12779
12780 \end_inset
12781 </cell>
12782 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
12783 \begin_inset Text
12784
12785 \begin_layout Plain Layout
12786 Ergebnis
12787 \begin_inset Note Note
12788 status collapsed
12789
12790 \begin_layout Plain Layout
12791
12792 \series bold
12793
12794 \backslash
12795 raisebox
12796 \series default
12797  dient nur als Abstandhalter.
12798 \end_layout
12799
12800 \end_inset
12801
12802
12803 \end_layout
12804
12805 \end_inset
12806 </cell>
12807 </row>
12808 <row>
12809 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12810 \begin_inset Text
12811
12812 \begin_layout Plain Layout
12813
12814 \backslash
12815 fbox
12816 \begin_inset ERT
12817 status collapsed
12818
12819 \begin_layout Plain Layout
12820
12821
12822 \backslash
12823 leer 
12824 \end_layout
12825
12826 \end_inset
12827
12828
12829 \family sans
12830 Strg+M
12831 \family default
12832  
12833 \backslash
12834 int
12835 \begin_inset ERT
12836 status collapsed
12837
12838 \begin_layout Plain Layout
12839
12840
12841 \backslash
12842 leer 
12843 \end_layout
12844
12845 \end_inset
12846
12847 A=B
12848 \end_layout
12849
12850 \end_inset
12851 </cell>
12852 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12853 \begin_inset Text
12854
12855 \begin_layout Plain Layout
12856 \begin_inset Formula $\raisebox{6mm}{}\fbox{\ensuremath{\int A=B}}\raisebox{-4mm}{}$
12857 \end_inset
12858
12859
12860 \end_layout
12861
12862 \end_inset
12863 </cell>
12864 </row>
12865 <row>
12866 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12867 \begin_inset Text
12868
12869 \begin_layout Plain Layout
12870
12871 \backslash
12872 boxed
12873 \begin_inset ERT
12874 status collapsed
12875
12876 \begin_layout Plain Layout
12877
12878
12879 \backslash
12880 leer 
12881 \end_layout
12882
12883 \end_inset
12884
12885
12886 \backslash
12887 int
12888 \begin_inset ERT
12889 status collapsed
12890
12891 \begin_layout Plain Layout
12892
12893
12894 \backslash
12895 leer 
12896 \end_layout
12897
12898 \end_inset
12899
12900 A=B
12901 \end_layout
12902
12903 \end_inset
12904 </cell>
12905 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12906 \begin_inset Text
12907
12908 \begin_layout Plain Layout
12909 \begin_inset Formula $\raisebox{8.5mm}{}\boxed{\int A=B}\raisebox{-6.5mm}{}$
12910 \end_inset
12911
12912
12913 \end_layout
12914
12915 \end_inset
12916 </cell>
12917 </row>
12918 <row>
12919 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12920 \begin_inset Text
12921
12922 \begin_layout Plain Layout
12923 A+
12924 \backslash
12925 fbox
12926 \begin_inset ERT
12927 status collapsed
12928
12929 \begin_layout Plain Layout
12930
12931
12932 \backslash
12933 leer 
12934 \end_layout
12935
12936 \end_inset
12937
12938 B
12939 \end_layout
12940
12941 \end_inset
12942 </cell>
12943 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12944 \begin_inset Text
12945
12946 \begin_layout Plain Layout
12947 \begin_inset Formula $\raisebox{6mm}{}A+\fbox{B}\raisebox{-3mm}{}$
12948 \end_inset
12949
12950
12951 \end_layout
12952
12953 \end_inset
12954 </cell>
12955 </row>
12956 <row>
12957 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
12958 \begin_inset Text
12959
12960 \begin_layout Plain Layout
12961
12962 \backslash
12963 framebox
12964 \begin_inset ERT
12965 status collapsed
12966
12967 \begin_layout Plain Layout
12968
12969
12970 \backslash
12971 leer 
12972 \end_layout
12973
12974 \end_inset
12975
12976 20mm
12977 \begin_inset Formula $\to$
12978 \end_inset
12979
12980
12981 \begin_inset Formula $\to$
12982 \end_inset
12983
12984
12985 \family sans
12986 Strg+M
12987 \family default
12988  
12989 \backslash
12990 frac
12991 \begin_inset ERT
12992 status collapsed
12993
12994 \begin_layout Plain Layout
12995
12996
12997 \backslash
12998 leer 
12999 \end_layout
13000
13001 \end_inset
13002
13003 A
13004 \begin_inset Formula $\downarrow$
13005 \end_inset
13006
13007 B
13008 \end_layout
13009
13010 \end_inset
13011 </cell>
13012 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
13013 \begin_inset Text
13014
13015 \begin_layout Plain Layout
13016 \begin_inset Formula $\raisebox{6mm}{}$
13017 \end_inset
13018
13019
13020 \begin_inset Formula $\framebox[20mm][]{\ensuremath{\frac{A}{B}}}$
13021 \end_inset
13022
13023
13024 \begin_inset Formula $\raisebox{-4mm}{}$
13025 \end_inset
13026
13027
13028 \end_layout
13029
13030 \end_inset
13031 </cell>
13032 </row>
13033 </lyxtabular>
13034
13035 \end_inset
13036
13037
13038 \end_layout
13039
13040 \begin_layout Standard
13041 Die Rahmendicke kann ebenfalls eingestellt werden.
13042  Dazu müssen vor der Formel im TeX-Modus die Befehle
13043 \end_layout
13044
13045 \begin_layout Standard
13046
13047 \series bold
13048
13049 \backslash
13050 fboxrule
13051 \series default
13052  
13053 \series bold
13054
13055 \begin_inset Quotes gld
13056 \end_inset
13057
13058 Dicke
13059 \begin_inset Quotes grd
13060 \end_inset
13061
13062
13063 \series default
13064  
13065 \series bold
13066
13067 \backslash
13068 fboxsep
13069 \series default
13070  
13071 \series bold
13072
13073 \begin_inset Quotes gld
13074 \end_inset
13075
13076 Abstand
13077 \begin_inset Quotes grd
13078 \end_inset
13079
13080
13081 \end_layout
13082
13083 \begin_layout Standard
13084 eingegeben werden.
13085  
13086 \begin_inset Quotes gld
13087 \end_inset
13088
13089 Abstand
13090 \begin_inset Quotes grd
13091 \end_inset
13092
13093  legt dabei den minimalen Abstand zwischen Rahmen und dem ersten Zeichen
13094  in der Box fest.
13095  Ein Beispiel dafür ist folgende umrandete Formel:
13096 \begin_inset ERT
13097 status collapsed
13098
13099 \begin_layout Plain Layout
13100
13101
13102 \backslash
13103 fboxrule 2mm 
13104 \backslash
13105 fboxsep 3mm
13106 \end_layout
13107
13108 \end_inset
13109
13110
13111 \begin_inset Formula \[
13112 \boxed{A+B=C}\]
13113
13114 \end_inset
13115
13116 Vor dieser Formel wurde im TeX-Modus
13117 \end_layout
13118
13119 \begin_layout Standard
13120
13121 \series bold
13122
13123 \backslash
13124 fboxrule
13125 \series default
13126  
13127 \series bold
13128 2mm
13129 \series default
13130  
13131 \series bold
13132
13133 \backslash
13134 fboxsep
13135 \series default
13136  
13137 \series bold
13138 3mm
13139 \end_layout
13140
13141 \begin_layout Standard
13142 eingegeben.
13143  Diese angegeben Werte werden für alle folgenden Boxen verwendet.
13144 \end_layout
13145
13146 \begin_layout Standard
13147 Möchte man wieder zur Standardrahmengröße zurückkehren, gibt man vor der
13148  nächsten Formel im TeX-Modus folgende Befehle ein:
13149 \end_layout
13150
13151 \begin_layout Standard
13152
13153 \series bold
13154
13155 \backslash
13156 fboxrule
13157 \series default
13158  
13159 \series bold
13160 0.4pt
13161 \series default
13162  
13163 \series bold
13164
13165 \backslash
13166 fboxsep
13167 \series default
13168  
13169 \series bold
13170 3pt
13171 \series default
13172
13173 \begin_inset ERT
13174 status collapsed
13175
13176 \begin_layout Plain Layout
13177
13178
13179 \backslash
13180 fboxrule 0.4pt 
13181 \backslash
13182 fboxsep 3pt
13183 \end_layout
13184
13185 \end_inset
13186
13187
13188 \end_layout
13189
13190 \begin_layout Subsection
13191 Boxen ohne Rahmen
13192 \begin_inset CommandInset label
13193 LatexCommand label
13194 name "sub:Boxen-ohne-Rahmen"
13195
13196 \end_inset
13197
13198
13199 \begin_inset Index idx
13200 status collapsed
13201
13202 \begin_layout Plain Layout
13203 Boxen ! ohne Rahmen
13204 \end_layout
13205
13206 \end_inset
13207
13208
13209 \end_layout
13210
13211 \begin_layout Standard
13212 Für Boxen ohne Rahmen gibt es folgende Box-Befehle: 
13213 \series bold
13214
13215 \backslash
13216 mbox
13217 \series default
13218
13219 \begin_inset Index idx
13220 status collapsed
13221
13222 \begin_layout Plain Layout
13223 Befehle ! M ! 
13224 \backslash
13225 mbox
13226 \end_layout
13227
13228 \end_inset
13229
13230
13231 \series bold
13232
13233 \backslash
13234 makebox
13235 \series default
13236
13237 \begin_inset Index idx
13238 status collapsed
13239
13240 \begin_layout Plain Layout
13241 Befehle ! M ! 
13242 \backslash
13243 makebox
13244 \end_layout
13245
13246 \end_inset
13247
13248  und
13249 \begin_inset Newline linebreak
13250 \end_inset
13251
13252
13253 \series bold
13254
13255 \backslash
13256 raisebox
13257 \series default
13258
13259 \begin_inset Index idx
13260 status collapsed
13261
13262 \begin_layout Plain Layout
13263 Befehle ! R ! 
13264 \backslash
13265 raisebox
13266 \end_layout
13267
13268 \end_inset
13269
13270
13271 \end_layout
13272
13273 \begin_layout Standard
13274 Mit 
13275 \series bold
13276
13277 \backslash
13278 raisebox
13279 \series default
13280  kann man eine Box hoch- oder tiefstellen.
13281  Allerdings behalten die Zeichen in der Box im Gegensatz zum normalen Hochstelle
13282 n die Schriftgröße bei.
13283  
13284 \series bold
13285
13286 \backslash
13287 raisebox
13288 \series default
13289  wird dabei mit folgendem Schema benutzt:
13290 \end_layout
13291
13292 \begin_layout Standard
13293
13294 \series bold
13295
13296 \backslash
13297 raisebox{Höhe}{Boxinhalt}
13298 \end_layout
13299
13300 \begin_layout Standard
13301 Soll in der Box eine Formel stehen, muss man wie bei 
13302 \series bold
13303
13304 \backslash
13305 fbox
13306 \series default
13307  eine weitere Formel erstellen.
13308  
13309 \begin_inset Note Greyedout
13310 status open
13311
13312 \begin_layout Plain Layout
13313
13314 \series bold
13315 Achtung:
13316 \series default
13317  Für 
13318 \series bold
13319
13320 \backslash
13321 raisebox
13322 \series default
13323  wird diese weitere Formel durch zweimaliges statt einmaliges Drücken von
13324  
13325 \family sans
13326 Strg+M
13327 \family default
13328  erstellt, denn LyX unterstützt 
13329 \series bold
13330
13331 \backslash
13332 raisebox
13333 \series default
13334  noch nicht direkt.
13335 \end_layout
13336
13337 \end_inset
13338
13339
13340 \end_layout
13341
13342 \begin_layout Standard
13343 \align center
13344 \begin_inset Tabular
13345 <lyxtabular version="3" rows="4" columns="2">
13346 <features tabularvalignment="middle">
13347 <column alignment="center" valignment="top" width="0">
13348 <column alignment="center" valignment="top" width="0">
13349 <row>
13350 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
13351 \begin_inset Text
13352
13353 \begin_layout Plain Layout
13354 Befehl
13355 \end_layout
13356
13357 \end_inset
13358 </cell>
13359 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
13360 \begin_inset Text
13361
13362 \begin_layout Plain Layout
13363 Ergebnis
13364 \end_layout
13365
13366 \end_inset
13367 </cell>
13368 </row>
13369 <row>
13370 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13371 \begin_inset Text
13372
13373 \begin_layout Plain Layout
13374 H
13375 \backslash
13376 raisebox{2mm
13377 \begin_inset Formula $\to$
13378 \end_inset
13379
13380
13381 \backslash
13382 {al
13383 \begin_inset Formula $\to$
13384 \end_inset
13385
13386  lo
13387 \end_layout
13388
13389 \end_inset
13390 </cell>
13391 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13392 \begin_inset Text
13393
13394 \begin_layout Plain Layout
13395 \begin_inset Formula $H\raisebox{2mm}{al}lo$
13396 \end_inset
13397
13398
13399 \end_layout
13400
13401 \end_inset
13402 </cell>
13403 </row>
13404 <row>
13405 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
13406 \begin_inset Text
13407
13408 \begin_layout Plain Layout
13409 H
13410 \backslash
13411 raisebox{-2mm
13412 \begin_inset Formula $\to$
13413 \end_inset
13414
13415
13416 \backslash
13417 {al
13418 \begin_inset Formula $\to$
13419 \end_inset
13420
13421 lo
13422 \end_layout
13423
13424 \end_inset
13425 </cell>
13426 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
13427 \begin_inset Text
13428
13429 \begin_layout Plain Layout
13430 \begin_inset Formula $H\raisebox{-2mm}{al}lo$
13431 \end_inset
13432
13433
13434 \end_layout
13435
13436 \end_inset
13437 </cell>
13438 </row>
13439 <row>
13440 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
13441 \begin_inset Text
13442
13443 \begin_layout Plain Layout
13444 A=
13445 \backslash
13446 raisebox{-2mm
13447 \begin_inset Formula $\to$
13448 \end_inset
13449
13450
13451 \backslash
13452 {
13453 \family sans
13454 Strg+M Strg+M
13455 \family default
13456  
13457 \backslash
13458 sqrt
13459 \begin_inset ERT
13460 status collapsed
13461
13462 \begin_layout Plain Layout
13463
13464
13465 \backslash
13466 leer 
13467 \end_layout
13468
13469 \end_inset
13470
13471
13472 \end_layout
13473
13474 \end_inset
13475 </cell>
13476 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
13477 \begin_inset Text
13478
13479 \begin_layout Plain Layout
13480 \begin_inset Formula $A=\raisebox{-2mm}{\mbox{\ensuremath{\sqrt{B}}}}$
13481 \end_inset
13482
13483
13484 \end_layout
13485
13486 \end_inset
13487 </cell>
13488 </row>
13489 </lyxtabular>
13490
13491 \end_inset
13492
13493
13494 \end_layout
13495
13496 \begin_layout Standard
13497 Der Befehl 
13498 \series bold
13499
13500 \backslash
13501 mbox
13502 \series default
13503  ist äquivalent zu 
13504 \series bold
13505
13506 \backslash
13507 fbox
13508 \series default
13509  und 
13510 \series bold
13511
13512 \backslash
13513 makebox
13514 \series default
13515  ist äquivalent zu 
13516 \series bold
13517
13518 \backslash
13519 framebox
13520 \series default
13521 , nur dass es keinen Rahmen gibt.
13522 \end_layout
13523
13524 \begin_layout Subsection
13525 Farbige Boxen
13526 \begin_inset CommandInset label
13527 LatexCommand label
13528 name "sub:Farbige-Boxen"
13529
13530 \end_inset
13531
13532
13533 \begin_inset Index idx
13534 status collapsed
13535
13536 \begin_layout Plain Layout
13537 Boxen ! farbige
13538 \end_layout
13539
13540 \end_inset
13541
13542
13543 \end_layout
13544
13545 \begin_layout Standard
13546 Damit die in diesem Kapitel angegebenen Befehle benutzt werden können, muss
13547  im LaTeX-Vorspann das LaTeX-Paket 
13548 \series bold
13549 color
13550 \series default
13551
13552 \begin_inset Foot
13553 status collapsed
13554
13555 \begin_layout Plain Layout
13556 Das Paket 
13557 \series bold
13558 color
13559 \series default
13560  ist Teil jeder LaTeX-Standardinstallation.
13561 \end_layout
13562
13563 \end_inset
13564
13565
13566 \begin_inset Index idx
13567 status collapsed
13568
13569 \begin_layout Plain Layout
13570 Pakete ! color
13571 \end_layout
13572
13573 \end_inset
13574
13575  mit der Zeile
13576 \end_layout
13577
13578 \begin_layout Standard
13579
13580 \series bold
13581
13582 \backslash
13583 usepackage{color}
13584 \end_layout
13585
13586 \begin_layout Standard
13587 geladen werden
13588 \begin_inset Foot
13589 status collapsed
13590
13591 \begin_layout Plain Layout
13592 Wird irgendwo im Dokument Text mit einer vordefinierten Farbe gefärbt, lädt
13593  LyX das LaTeX-Paket 
13594 \series bold
13595 color
13596 \series default
13597  automatisch.
13598  Dadurch kann es vorkommen, dass das Paket doppelt geladen wird, was aber
13599  keine Probleme hervorruft.
13600 \end_layout
13601
13602 \end_inset
13603
13604
13605 \begin_inset Note Note
13606 status collapsed
13607
13608 \begin_layout Plain Layout
13609 Damit das Paket nicht doppelt geladen werden kann, wurde im LaTeX-Vorspann
13610  ein Makro eingefügt.
13611 \end_layout
13612
13613 \end_inset
13614
13615 .
13616 \end_layout
13617
13618 \begin_layout Standard
13619 \begin_inset VSpace medskip
13620 \end_inset
13621
13622 Um Boxen einzufärben, verwendet man den Befehl 
13623 \series bold
13624
13625 \backslash
13626 colorbox
13627 \series default
13628
13629 \begin_inset Index idx
13630 status collapsed
13631
13632 \begin_layout Plain Layout
13633 Befehle ! C ! 
13634 \backslash
13635 colorbox
13636 \end_layout
13637
13638 \end_inset
13639
13640  nach folgendem Schema:
13641 \end_layout
13642
13643 \begin_layout Standard
13644
13645 \series bold
13646
13647 \backslash
13648 colorbox{Farbe}{Boxinhalt}
13649 \end_layout
13650
13651 \begin_layout Standard
13652 Der Boxinhalt kann auch wieder eine Box sein und eine 
13653 \series bold
13654
13655 \backslash
13656 colorbox
13657 \series default
13658  kann auch ein Teil einer anderen Box sein (siehe 2.
13659  und 3.
13660  Beispiel).
13661  Soll in der Box eine Formel stehen, muss wie bei 
13662 \series bold
13663
13664 \backslash
13665 raisebox
13666 \series default
13667  eine weitere Formel erstellt werden.
13668 \begin_inset Foot
13669 status collapsed
13670
13671 \begin_layout Plain Layout
13672 Das gilt auch für den Befehl 
13673 \series bold
13674
13675 \backslash
13676 fcolorbox
13677 \series default
13678 .
13679 \end_layout
13680
13681 \end_inset
13682
13683
13684 \end_layout
13685
13686 \begin_layout Standard
13687 Aus folgenden vordefinierten Farben kann gewählt werden:
13688 \end_layout
13689
13690 \begin_layout Standard
13691
13692 \series bold
13693 black
13694 \series default
13695
13696 \series bold
13697 blue
13698 \series default
13699
13700 \series bold
13701 cyan
13702 \series default
13703
13704 \series bold
13705 green
13706 \series default
13707
13708 \series bold
13709 magenta
13710 \series default
13711
13712 \series bold
13713 red
13714 \series default
13715
13716 \series bold
13717 white
13718 \series default
13719  und 
13720 \series bold
13721 yellow
13722 \end_layout
13723
13724 \begin_layout Standard
13725 \align center
13726 \begin_inset Tabular
13727 <lyxtabular version="3" rows="4" columns="2">
13728 <features tabularvalignment="middle">
13729 <column alignment="center" valignment="top" width="0">
13730 <column alignment="center" valignment="top" width="0">
13731 <row>
13732 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
13733 \begin_inset Text
13734
13735 \begin_layout Plain Layout
13736 Befehl
13737 \end_layout
13738
13739 \end_inset
13740 </cell>
13741 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
13742 \begin_inset Text
13743
13744 \begin_layout Plain Layout
13745 Ergebnis
13746 \begin_inset Note Note
13747 status collapsed
13748
13749 \begin_layout Plain Layout
13750
13751 \series bold
13752
13753 \backslash
13754 raisebox
13755 \series default
13756  dient nur als Abstandhalter.
13757 \end_layout
13758
13759 \end_inset
13760
13761
13762 \end_layout
13763
13764 \end_inset
13765 </cell>
13766 </row>
13767 <row>
13768 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13769 \begin_inset Text
13770
13771 \begin_layout Plain Layout
13772
13773 \backslash
13774 colorbox{yellow
13775 \begin_inset Formula $\to$
13776 \end_inset
13777
13778
13779 \backslash
13780 {A=B
13781 \end_layout
13782
13783 \end_inset
13784 </cell>
13785 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13786 \begin_inset Text
13787
13788 \begin_layout Plain Layout
13789 \begin_inset Formula $\raisebox{6mm}{}\colorbox{yellow}{A=B}\raisebox{-3mm}{}$
13790 \end_inset
13791
13792
13793 \end_layout
13794
13795 \end_inset
13796 </cell>
13797 </row>
13798 <row>
13799 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13800 \begin_inset Text
13801
13802 \begin_layout Plain Layout
13803
13804 \backslash
13805 colorbox{green
13806 \begin_inset Formula $\to$
13807 \end_inset
13808
13809
13810 \backslash
13811 {
13812 \backslash
13813 fbox
13814 \begin_inset ERT
13815 status collapsed
13816
13817 \begin_layout Plain Layout
13818
13819
13820 \backslash
13821 leer 
13822 \end_layout
13823
13824 \end_inset
13825
13826 A=B
13827 \end_layout
13828
13829 \end_inset
13830 </cell>
13831 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13832 \begin_inset Text
13833
13834 \begin_layout Plain Layout
13835 \begin_inset Formula $\raisebox{6mm}{}\colorbox{green}{\fbox{A=B}}\raisebox{-3mm}{}$
13836 \end_inset
13837
13838
13839 \end_layout
13840
13841 \end_inset
13842 </cell>
13843 </row>
13844 <row>
13845 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
13846 \begin_inset Text
13847
13848 \begin_layout Plain Layout
13849
13850 \backslash
13851 fbox
13852 \begin_inset ERT
13853 status collapsed
13854
13855 \begin_layout Plain Layout
13856
13857
13858 \backslash
13859 leer 
13860 \end_layout
13861
13862 \end_inset
13863
13864
13865 \backslash
13866 colorbox{green
13867 \begin_inset Formula $\to$
13868 \end_inset
13869
13870
13871 \backslash
13872 {
13873 \family sans
13874 Strg+M Strg+M
13875 \family default
13876  
13877 \backslash
13878 int
13879 \begin_inset ERT
13880 status collapsed
13881
13882 \begin_layout Plain Layout
13883
13884
13885 \backslash
13886 leer 
13887 \end_layout
13888
13889 \end_inset
13890
13891 C=D
13892 \end_layout
13893
13894 \end_inset
13895 </cell>
13896 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
13897 \begin_inset Text
13898
13899 \begin_layout Plain Layout
13900 \begin_inset Formula $\raisebox{7mm}{}\fbox{\colorbox{green}{\mbox{\ensuremath{\int C=D}}}}\raisebox{-5mm}{}$
13901 \end_inset
13902
13903
13904 \end_layout
13905
13906 \end_inset
13907 </cell>
13908 </row>
13909 </lyxtabular>
13910
13911 \end_inset
13912
13913
13914 \end_layout
13915
13916 \begin_layout Standard
13917
13918 \series bold
13919
13920 \backslash
13921 colorbox
13922 \series default
13923  färbt nur die Box, nicht aber die Zeichen in der Box ein.
13924  Um alle Zeichen zu färben, markiert man die ganze Formel und wählt im Dialog
13925  
13926 \family sans
13927 Textstil
13928 \family default
13929  die gewünschte Farbe aus.
13930  Der Dialog kann mit dem Werkzeugleistenknopf 
13931 \begin_inset Graphics
13932         filename ../../images/dialog-show_character.png
13933         scale 85
13934
13935 \end_inset
13936
13937  oder dem Menü 
13938 \family sans
13939 Bearbeiten\SpecialChar \menuseparator
13940 Textstil\SpecialChar \menuseparator
13941 Benutzerdefiniert
13942 \family default
13943  aufgerufen werden.
13944  Die Formelnummer hat dann dieselbe Farbe wie die Formel.
13945  Soll die Formelnummer eine andere Farbe als die Formelzeichen haben, muss
13946  innerhalb der Formel die Farbe geändert werden.
13947 \end_layout
13948
13949 \begin_layout Standard
13950 Ein Beispiel:
13951 \end_layout
13952
13953 \begin_layout Standard
13954
13955 \color red
13956 \begin_inset Formula \begin{equation}
13957 \int A=B\label{eq:rot}\end{equation}
13958
13959 \end_inset
13960
13961
13962 \color green
13963
13964 \begin_inset Formula \begin{equation}
13965 \textcolor{red}{\int A=B}\label{eq:rotgruen}\end{equation}
13966
13967 \end_inset
13968
13969
13970 \end_layout
13971
13972 \begin_layout Standard
13973 Formel 
13974 \begin_inset CommandInset ref
13975 LatexCommand eqref
13976 reference "eq:rot"
13977
13978 \end_inset
13979
13980  ist komplett rot gefärbt.
13981 \begin_inset Newline newline
13982 \end_inset
13983
13984 Formel 
13985 \begin_inset CommandInset ref
13986 LatexCommand eqref
13987 reference "eq:rotgruen"
13988
13989 \end_inset
13990
13991  wurde zuerst komplett grün gefärbt, um die Farbe der Formelnummer festzulegen.
13992  Anschließend wurden die Formelzeichen rot gefärbt.
13993 \end_layout
13994
13995 \begin_layout Standard
13996 \begin_inset VSpace bigskip
13997 \end_inset
13998
13999 Möchte man den Rahmen anders als den Rest der Box färben, verwendet man
14000  den Befehl 
14001 \series bold
14002
14003 \backslash
14004 fcolorbox
14005 \series default
14006
14007 \begin_inset Index idx
14008 status collapsed
14009
14010 \begin_layout Plain Layout
14011 Befehle ! F ! 
14012 \backslash
14013 fcolorbox
14014 \end_layout
14015
14016 \end_inset
14017
14018  nach folgendem Schema:
14019 \end_layout
14020
14021 \begin_layout Standard
14022
14023 \series bold
14024
14025 \backslash
14026 fcolorbox{Rahmenfarbe}{Farbe}{Boxinhalt}
14027 \end_layout
14028
14029 \begin_layout Standard
14030
14031 \series bold
14032
14033 \backslash
14034 fcolorbox
14035 \series default
14036  stellt also eine Erweiterung des Befehls 
14037 \series bold
14038
14039 \backslash
14040 colorbox
14041 \series default
14042  dar.
14043  Die Rahmenbreite wird, wie bei 
14044 \series bold
14045
14046 \backslash
14047 framebox
14048 \series default
14049 , mit 
14050 \series bold
14051
14052 \backslash
14053 fboxrule
14054 \series default
14055  und 
14056 \series bold
14057
14058 \backslash
14059 fboxsep
14060 \series default
14061  festgelegt.
14062  Ein Beispiel:
14063 \begin_inset ERT
14064 status collapsed
14065
14066 \begin_layout Plain Layout
14067
14068
14069 \backslash
14070 fboxrule 1mm 
14071 \backslash
14072 fboxsep 1mm
14073 \end_layout
14074
14075 \end_inset
14076
14077
14078 \begin_inset Formula \[
14079 \fcolorbox{cyan}{magenta}{A=B}\]
14080
14081 \end_inset
14082
14083
14084 \begin_inset ERT
14085 status collapsed
14086
14087 \begin_layout Plain Layout
14088
14089
14090 \backslash
14091 fboxrule 0.4pt 
14092 \backslash
14093 fboxsep 3pt
14094 \end_layout
14095
14096 \end_inset
14097
14098
14099 \end_layout
14100
14101 \begin_layout Standard
14102 Diese Formel wurde mit folgendem Befehl erstellt:
14103 \begin_inset Newline newline
14104 \end_inset
14105
14106
14107 \series bold
14108
14109 \backslash
14110 fcolorbox{cyan
14111 \begin_inset Formula $\to$
14112 \end_inset
14113
14114
14115 \backslash
14116 {magenta
14117 \begin_inset Formula $\to$
14118 \end_inset
14119
14120
14121 \backslash
14122 {A=B
14123 \end_layout
14124
14125 \begin_layout Standard
14126 \begin_inset VSpace bigskip
14127 \end_inset
14128
14129 Um andere als die vordefinierten Farben zu verwenden, muss man diese zuerst
14130  selbst definieren.
14131 \end_layout
14132
14133 \begin_layout Standard
14134 Man kann z.
14135 \begin_inset space \thinspace{}
14136 \end_inset
14137
14138 B.
14139  mit folgender LaTeX-Vorspannzeile die Farbe 
14140 \begin_inset Quotes gld
14141 \end_inset
14142
14143
14144 \series bold
14145 dunkelgruen
14146 \series default
14147
14148 \begin_inset Quotes grd
14149 \end_inset
14150
14151
14152 \begin_inset Foot
14153 status collapsed
14154
14155 \begin_layout Plain Layout
14156 In Befehlen darf kein Umlaut stehen, siehe 
14157 \begin_inset CommandInset ref
14158 LatexCommand ref
14159 reference "sec:Benutzerdefinierte-Befehle"
14160
14161 \end_inset
14162
14163 .
14164 \end_layout
14165
14166 \end_inset
14167
14168  definieren:
14169 \end_layout
14170
14171 \begin_layout Standard
14172
14173 \series bold
14174
14175 \backslash
14176 definecolor{dunkelgruen}{cmyk}{0.5,
14177 \series default
14178  
14179 \series bold
14180 0,
14181 \series default
14182  
14183 \series bold
14184 1,
14185 \series default
14186  
14187 \series bold
14188 0.5}
14189 \series default
14190
14191 \begin_inset Index idx
14192 status collapsed
14193
14194 \begin_layout Plain Layout
14195 Befehle ! D ! 
14196 \backslash
14197 definecolor
14198 \end_layout
14199
14200 \end_inset
14201
14202
14203 \end_layout
14204
14205 \begin_layout Standard
14206
14207 \series bold
14208 cmyk
14209 \series default
14210  ist der Farbraum und steht für die Farben 
14211 \series bold
14212 cyan
14213 \series default
14214
14215 \series bold
14216 magenta
14217 \series default
14218
14219 \series bold
14220 yellow
14221 \series default
14222  und 
14223 \series bold
14224 black
14225 \series default
14226 .
14227  Die vier Zahlen geben der Reihe nach den Anteil der vier Farben an.
14228  Für den Anteil kann man Werte im Bereich 0
14229 \begin_inset space \thinspace{}
14230 \end_inset
14231
14232 -
14233 \begin_inset space \thinspace{}
14234 \end_inset
14235
14236 1 angeben.
14237  Anstelle von 
14238 \series bold
14239 cmyk
14240 \series default
14241  kann man zur Definition auch den Farbraum 
14242 \series bold
14243 rgb
14244 \series default
14245  verwenden.
14246  
14247 \series bold
14248 rgb
14249 \series default
14250  steht für 
14251 \series bold
14252 red
14253 \series default
14254
14255 \series bold
14256 green
14257 \series default
14258  und 
14259 \series bold
14260 blue
14261 \series default
14262 , so dass man dann mit drei Zahlen die Anteile dieser Farben festlegen kann.
14263  Des Weiteren gibt es noch den Farbraum 
14264 \series bold
14265 gray
14266 \series default
14267 , bei dem man mit einer Zahl den Graustufenanteil festlegen kann.
14268 \end_layout
14269
14270 \begin_layout Standard
14271 Als Beispiel eine gerahmte Box mit der neu definierten Farbe 
14272 \series bold
14273 darkgreen
14274 \series default
14275 , bei der die Zeichenfarbe 
14276 \series bold
14277 yellow
14278 \series default
14279  gewählt wurde:
14280 \begin_inset Formula \begin{equation}
14281 \colorbox{dunkelgruen}{\color{yellow}\boxed{\int A\,\mathrm{d}x=\frac{\sqrt[5]{B}}{\ln\left(\frac{1}{3}\right)}}}\end{equation}
14282
14283 \end_inset
14284
14285
14286 \end_layout
14287
14288 \begin_layout Standard
14289 Selbst definierte Farben können mit dem Befehl 
14290 \series bold
14291
14292 \backslash
14293 textcolor
14294 \series default
14295  auch für Text
14296 \begin_inset Index idx
14297 status collapsed
14298
14299 \begin_layout Plain Layout
14300 Text ! farbiger
14301 \end_layout
14302
14303 \end_inset
14304
14305  verwendet werden:
14306 \end_layout
14307
14308 \begin_layout Standard
14309 \begin_inset ERT
14310 status collapsed
14311
14312 \begin_layout Plain Layout
14313
14314
14315 \backslash
14316 textcolor{dunkelgruen}{
14317 \end_layout
14318
14319 \end_inset
14320
14321 Dieser Satz ist 
14322 \begin_inset Quotes gld
14323 \end_inset
14324
14325 dunkelgruen
14326 \begin_inset Quotes grd
14327 \end_inset
14328
14329 .
14330 \begin_inset ERT
14331 status collapsed
14332
14333 \begin_layout Plain Layout
14334
14335 }
14336 \end_layout
14337
14338 \end_inset
14339
14340
14341 \end_layout
14342
14343 \begin_layout Standard
14344
14345 \series bold
14346
14347 \backslash
14348 textcolor
14349 \series default
14350
14351 \begin_inset Index idx
14352 status collapsed
14353
14354 \begin_layout Plain Layout
14355 Befehle ! T ! 
14356 \backslash
14357 textcolor
14358 \end_layout
14359
14360 \end_inset
14361
14362  wird nach dem Schema 
14363 \series bold
14364
14365 \backslash
14366 textcolor{Farbe}{zu
14367 \series default
14368  
14369 \series bold
14370 färbende
14371 \series default
14372  
14373 \series bold
14374 Zeichen}
14375 \series default
14376  verwendet.
14377 \end_layout
14378
14379 \begin_layout Subsection
14380 Absatzboxen
14381 \begin_inset CommandInset label
14382 LatexCommand label
14383 name "sub:Absatzboxen"
14384
14385 \end_inset
14386
14387
14388 \begin_inset Index idx
14389 status collapsed
14390
14391 \begin_layout Plain Layout
14392 Boxen ! Absatz-
14393 \end_layout
14394
14395 \end_inset
14396
14397
14398 \end_layout
14399
14400 \begin_layout Standard
14401 Mit dem Menü 
14402 \family sans
14403 Einfügen\SpecialChar \menuseparator
14404 Box
14405 \family default
14406  oder dem Werkzeugleistenknopf 
14407 \begin_inset Graphics
14408         filename ../../images/box-insert.png
14409         scale 85
14410
14411 \end_inset
14412
14413  kann man eine Box erstellen, die mehrere Zeilen und Absätze enthalten kann,
14414  eine so genannte 
14415 \emph on
14416 Parbox
14417 \emph default
14418  (Absatzbox).
14419 \end_layout
14420
14421 \begin_layout Standard
14422 Das folgende Beispiel zeigt eine umrahmte Absatzbox in einer Zeile:
14423 \end_layout
14424
14425 \begin_layout Standard
14426 \begin_inset VSpace medskip
14427 \end_inset
14428
14429 Dies ist eine Zeile 
14430 \begin_inset Box Boxed
14431 position "c"
14432 hor_pos "c"
14433 has_inner_box 1
14434 inner_pos "t"
14435 use_parbox 1
14436 use_makebox 0
14437 width "5cm"
14438 special "none"
14439 height "1in"
14440 height_special "totalheight"
14441 status open
14442
14443 \begin_layout Plain Layout
14444 Dies ist die Absatzbox.
14445  Sie ist genau 5
14446 \begin_inset space \thinspace{}
14447 \end_inset
14448
14449 cm lang und kann auch Formeln enthalten: 
14450 \begin_inset Formula $\int A\,\mathrm{d}s=C$
14451 \end_inset
14452
14453
14454 \end_layout
14455
14456 \end_inset
14457
14458  mit einer Absatzbox.
14459 \begin_inset VSpace medskip
14460 \end_inset
14461
14462
14463 \end_layout
14464
14465 \begin_layout Standard
14466 Solch eine Box wird erstellt, indem man mit der rechten Maustaste auf die
14467  graue Box mit dem Namen 
14468 \begin_inset Quotes gld
14469 \end_inset
14470
14471 Box(Gerahmt)
14472 \begin_inset Quotes grd
14473 \end_inset
14474
14475  klickt.
14476  Es erscheint dann ein Fenster in dem man die Boxeigenschaften festlegt.
14477  In diesem Fall: 
14478 \emph on
14479 Verzierung
14480 \emph default
14481 : Rechteckige Box, 
14482 \emph on
14483 Innere Box
14484 \emph default
14485 : Parbox, 
14486 \emph on
14487 Breite
14488 \emph default
14489 : 5
14490 \begin_inset space \thinspace{}
14491 \end_inset
14492
14493 cm, 
14494 \emph on
14495 Vertikale Box Ausrichtung
14496 \emph default
14497 : Mitte
14498 \end_layout
14499
14500 \begin_layout Standard
14501 \begin_inset VSpace medskip
14502 \end_inset
14503
14504 In LaTeX wird eine Absatzbox mit dem Befehl 
14505 \series bold
14506
14507 \backslash
14508 parbox
14509 \series default
14510
14511 \begin_inset Index idx
14512 status collapsed
14513
14514 \begin_layout Plain Layout
14515 Befehle ! P ! 
14516 \backslash
14517 parbox
14518 \end_layout
14519
14520 \end_inset
14521
14522  erstellt, welcher folgendes Schema besitzt:
14523 \end_layout
14524
14525 \begin_layout Standard
14526
14527 \series bold
14528
14529 \backslash
14530 parbox[Position]{Breite}{Boxinhalt}
14531 \end_layout
14532
14533 \begin_layout Standard
14534 Die Positionen 
14535 \emph on
14536 b
14537 \emph default
14538  und 
14539 \emph on
14540 t
14541 \emph default
14542  sind möglich.
14543  
14544 \emph on
14545 b
14546 \emph default
14547  steht für bottom und bedeutet, dass die letzte Absatzzeile in den umstehenden
14548  Text eingepasst wird.
14549  Bei 
14550 \emph on
14551 t
14552 \emph default
14553  wie top geschieht dies für die erste Zeile.
14554  Wird keine Position angegeben, wird der Absatz in mittlerer Höhe eingepasst,
14555  siehe das Kapitel 
14556 \emph on
14557 Boxen
14558 \emph default
14559  des Handbuchs
14560 \emph on
14561  Eingebettete
14562 \begin_inset space ~
14563 \end_inset
14564
14565 Objekte
14566 \emph default
14567  für Beispiele.
14568 \end_layout
14569
14570 \begin_layout Standard
14571 \begin_inset VSpace bigskip
14572 \end_inset
14573
14574 Möchte man Formeln komplett mit Formelnummer umranden, muss man die Formel
14575  in eine Absatzbox setzen.
14576  Dazu schreibt man im TeX-Modus vor die Formel den Befehl 
14577 \series bold
14578
14579 \backslash
14580 fbox{
14581 \backslash
14582 parbox{
14583 \backslash
14584 linewidth-2
14585 \backslash
14586 fboxsep-2
14587 \backslash
14588 fboxrule}{
14589 \series default
14590 .
14591  Hierbei steht 
14592 \series bold
14593
14594 \backslash
14595 linewidth
14596 \series default
14597
14598 \begin_inset Index idx
14599 status collapsed
14600
14601 \begin_layout Plain Layout
14602 Befehle ! L ! 
14603 \backslash
14604 linewidth
14605 \end_layout
14606
14607 \end_inset
14608
14609  für die im Dokument eingestellte Zeilenbreite.
14610  Da sich der Rahmen außerhalb der Absatzbox befindet, muss man von der Zeilenbre
14611 ite zweimal die Rahmendicke und den Rahmenabstand abziehen.
14612  Da dies LyX aufgrund eines Fehlers
14613 \begin_inset Foot
14614 status collapsed
14615
14616 \begin_layout Plain Layout
14617 \begin_inset CommandInset href
14618 LatexCommand href
14619 name "LyX-Fehler #4483"
14620 target "http://www.lyx.org/trac/ticket/4483"
14621
14622 \end_inset
14623
14624
14625 \end_layout
14626
14627 \end_inset
14628
14629  nicht automatisch macht, muss der TeX-Modus verwendet werden.
14630  Damit man in Argumenten multiplizieren und subtrahieren kann, muss im LaTeX-Vor
14631 spann das LaTeX-Paket 
14632 \series bold
14633 calc
14634 \series default
14635
14636 \begin_inset Foot
14637 status collapsed
14638
14639 \begin_layout Plain Layout
14640
14641 \series bold
14642 calc
14643 \series default
14644  ist Teil jeder LaTeX-Standardinstallation.
14645 \end_layout
14646
14647 \end_inset
14648
14649
14650 \begin_inset Index idx
14651 status collapsed
14652
14653 \begin_layout Plain Layout
14654 Pakete ! calc
14655 \end_layout
14656
14657 \end_inset
14658
14659  mit der Zeile
14660 \end_layout
14661
14662 \begin_layout Standard
14663
14664 \series bold
14665
14666 \backslash
14667 usepackage{calc}
14668 \end_layout
14669
14670 \begin_layout Standard
14671 geladen werden.
14672  Nach der Formel werden beide Boxen geschlossen, indem man 
14673 \series bold
14674 }}
14675 \series default
14676  im TeX-Modus eingibt.
14677  Dazu ein Beispiel:
14678 \begin_inset ERT
14679 status collapsed
14680
14681 \begin_layout Plain Layout
14682
14683
14684 \backslash
14685 fboxsep 5mm 
14686 \backslash
14687 fboxrule 5mm
14688 \end_layout
14689
14690 \end_inset
14691
14692
14693 \end_layout
14694
14695 \begin_layout Standard
14696 \begin_inset ERT
14697 status collapsed
14698
14699 \begin_layout Plain Layout
14700
14701
14702 \backslash
14703 fbox{
14704 \backslash
14705 parbox{
14706 \backslash
14707 linewidth-2
14708 \backslash
14709 fboxsep-2
14710 \backslash
14711 fboxrule}{
14712 \end_layout
14713
14714 \end_inset
14715
14716
14717 \begin_inset Formula \begin{equation}
14718 \int A\,\mathrm{d}x=\frac{\sqrt[5]{B}}{\ln\left(\frac{1}{3}\right)}\end{equation}
14719
14720 \end_inset
14721
14722
14723 \begin_inset ERT
14724 status collapsed
14725
14726 \begin_layout Plain Layout
14727
14728 }}
14729 \end_layout
14730
14731 \end_inset
14732
14733
14734 \begin_inset ERT
14735 status collapsed
14736
14737 \begin_layout Plain Layout
14738
14739
14740 \backslash
14741 fboxrule 0.4pt 
14742 \backslash
14743 fboxsep 3pt
14744 \end_layout
14745
14746 \end_inset
14747
14748
14749 \end_layout
14750
14751 \begin_layout Standard
14752 \begin_inset VSpace medskip
14753 \end_inset
14754
14755 Da im Argument von 
14756 \series bold
14757
14758 \backslash
14759 fbox
14760 \series default
14761  eine Absatzbox verwendet wird, gibt es in diesem Fall bei der Formelgröße
14762  keinen Unterschied zwischen 
14763 \series bold
14764
14765 \backslash
14766 fbox
14767 \series default
14768  und 
14769 \series bold
14770
14771 \backslash
14772 boxed
14773 \series default
14774 .
14775 \end_layout
14776
14777 \begin_layout Standard
14778 \begin_inset VSpace bigskip
14779 \end_inset
14780
14781 Sehr nützlich sind Absatzboxen, wenn man Formeln direkt kommentieren möchte.
14782  Dazu verwendet man 
14783 \series bold
14784
14785 \backslash
14786 parbox
14787 \series default
14788  in Verbindung mit dem Befehl 
14789 \series bold
14790
14791 \backslash
14792 tag
14793 \series default
14794 .
14795  (mehr zu 
14796 \series bold
14797
14798 \backslash
14799 tag
14800 \series default
14801  siehe 
14802 \begin_inset CommandInset ref
14803 LatexCommand ref
14804 reference "sub:Benutzerdefinierte-Nummerierung"
14805
14806 \end_inset
14807
14808 )
14809 \end_layout
14810
14811 \begin_layout Standard
14812 Ein Beispiel einer mit Hilfe von 
14813 \series bold
14814
14815 \backslash
14816 parbox
14817 \series default
14818  kommentierten Formel:
14819 \end_layout
14820
14821 \begin_layout Standard
14822 \begin_inset ERT
14823 status collapsed
14824
14825 \begin_layout Plain Layout
14826
14827
14828 \backslash
14829 [5x-7b=3b
14830 \backslash
14831 tag*{
14832 \backslash
14833 parbox{5cm}{
14834 \end_layout
14835
14836 \end_inset
14837
14838 Dies ist eine Beschreibung.
14839  Sie ist deutlich von der Formel getrennt und mehrzeilig.
14840 \begin_inset ERT
14841 status collapsed
14842
14843 \begin_layout Plain Layout
14844
14845 }}
14846 \backslash
14847 ]
14848 \end_layout
14849
14850 \end_inset
14851
14852
14853 \end_layout
14854
14855 \begin_layout Standard
14856 So eine Formel muss komplett im TeX-Modus eingegeben werden, da LyX den
14857  Befehl 
14858 \series bold
14859
14860 \backslash
14861 parbox
14862 \series default
14863  in Formeln noch nicht unterstützt.
14864  Die Formel wird mit folgender Befehlssequenz erstellt:
14865 \end_layout
14866
14867 \begin_layout Standard
14868 Der Befehl 
14869 \series bold
14870
14871 \backslash
14872 [5x-7b=3b
14873 \backslash
14874 tag*
14875 \backslash
14876 {
14877 \backslash
14878 parbox{5cm}{
14879 \series default
14880  wird im TeX-Modus eingegeben.
14881 \begin_inset Foot
14882 status collapsed
14883
14884 \begin_layout Plain Layout
14885 Ist der Formelstil 
14886 \series bold
14887 Eingerückt
14888 \series default
14889  aktiviert, kann 
14890 \series bold
14891
14892 \backslash
14893 tag*
14894 \backslash
14895 {
14896 \series default
14897  auch durch 
14898 \series bold
14899
14900 \backslash
14901 hfill
14902 \series default
14903  ersetzt werden.
14904  (Formelstile siehe 
14905 \begin_inset CommandInset ref
14906 LatexCommand ref
14907 reference "sec:Formelstile"
14908
14909 \end_inset
14910
14911 )
14912 \end_layout
14913
14914 \end_inset
14915
14916  Dann folgt die Beschreibung als normaler Text und zuletzt gibt man 
14917 \series bold
14918 }}
14919 \backslash
14920 ]
14921 \series default
14922  im TeX-Modus ein.
14923  Die Befehle 
14924 \series bold
14925
14926 \backslash
14927 [
14928 \series default
14929  und 
14930 \series bold
14931
14932 \backslash
14933 ]
14934 \series default
14935  erstellen hierbei eine abgesetzte Formel.
14936 \end_layout
14937
14938 \begin_layout Standard
14939 Die Vorteile von 
14940 \series bold
14941
14942 \backslash
14943 parbox
14944 \series default
14945  erkennt man an folgendem Beispiel, in dem mit Hilfe des mathematischen
14946  Textmodus 
14947 \begin_inset Quotes gld
14948 \end_inset
14949
14950 kommentiert
14951 \begin_inset Quotes grd
14952 \end_inset
14953
14954  wurde:
14955 \begin_inset Formula \[
14956 5x-7b=3b\textrm{Dies ist eine Beschreibung. Sie ist nicht von der Formel getrennt ...}\]
14957
14958 \end_inset
14959
14960
14961 \end_layout
14962
14963 \begin_layout Section
14964 Operatoren
14965 \begin_inset Index idx
14966 status collapsed
14967
14968 \begin_layout Plain Layout
14969 Operatoren
14970 \end_layout
14971
14972 \end_inset
14973
14974
14975 \end_layout
14976
14977 \begin_layout Subsection
14978 Große Operatoren
14979 \begin_inset CommandInset label
14980 LatexCommand label
14981 name "sub:Große-Operatoren"
14982
14983 \end_inset
14984
14985
14986 \begin_inset Index idx
14987 status collapsed
14988
14989 \begin_layout Plain Layout
14990 Operatoren ! große
14991 \end_layout
14992
14993 \end_inset
14994
14995
14996 \begin_inset Index idx
14997 status collapsed
14998
14999 \begin_layout Plain Layout
15000 Summen
15001 \end_layout
15002
15003 \end_inset
15004
15005
15006 \begin_inset Index idx
15007 status collapsed
15008
15009 \begin_layout Plain Layout
15010 Integrale
15011 \end_layout
15012
15013 \end_inset
15014
15015
15016 \end_layout
15017
15018 \begin_layout Standard
15019 Um alle großen Integraloperatoren nutzen zu können, die im Folgenden aufgelistet
15020  sind, muss die Option 
15021 \family sans
15022 esint-Paket automatisch verwenden
15023 \family default
15024  in den Dokumenteinstellungen unter 
15025 \family sans
15026 Mathe-Optionen
15027 \family default
15028  gewählt sein.
15029 \end_layout
15030
15031 \begin_layout Standard
15032 \begin_inset space \hfill{}
15033 \end_inset
15034
15035
15036 \begin_inset Tabular
15037 <lyxtabular version="3" rows="11" columns="2">
15038 <features tabularvalignment="middle">
15039 <column alignment="center" valignment="top" width="0pt">
15040 <column alignment="center" valignment="top" width="0pt">
15041 <row>
15042 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
15043 \begin_inset Text
15044
15045 \begin_layout Plain Layout
15046 Befehl
15047 \end_layout
15048
15049 \end_inset
15050 </cell>
15051 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
15052 \begin_inset Text
15053
15054 \begin_layout Plain Layout
15055 Ergebnis
15056 \end_layout
15057
15058 \end_inset
15059 </cell>
15060 </row>
15061 <row>
15062 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15063 \begin_inset Text
15064
15065 \begin_layout Plain Layout
15066
15067 \backslash
15068 int
15069 \begin_inset Index idx
15070 status collapsed
15071
15072 \begin_layout Plain Layout
15073 Befehle ! I ! 
15074 \backslash
15075 int
15076 \end_layout
15077
15078 \end_inset
15079
15080
15081 \end_layout
15082
15083 \end_inset
15084 </cell>
15085 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15086 \begin_inset Text
15087
15088 \begin_layout Plain Layout
15089 \begin_inset Formula $\int$
15090 \end_inset
15091
15092
15093 \end_layout
15094
15095 \end_inset
15096 </cell>
15097 </row>
15098 <row>
15099 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15100 \begin_inset Text
15101
15102 \begin_layout Plain Layout
15103
15104 \backslash
15105 oint
15106 \end_layout
15107
15108 \end_inset
15109 </cell>
15110 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15111 \begin_inset Text
15112
15113 \begin_layout Plain Layout
15114 \begin_inset Formula $\oint$
15115 \end_inset
15116
15117
15118 \end_layout
15119
15120 \end_inset
15121 </cell>
15122 </row>
15123 <row>
15124 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15125 \begin_inset Text
15126
15127 \begin_layout Plain Layout
15128
15129 \backslash
15130 ointctrclockwise
15131 \end_layout
15132
15133 \end_inset
15134 </cell>
15135 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15136 \begin_inset Text
15137
15138 \begin_layout Plain Layout
15139 \begin_inset Formula $\ointctrclockwise$
15140 \end_inset
15141
15142
15143 \end_layout
15144
15145 \end_inset
15146 </cell>
15147 </row>
15148 <row>
15149 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15150 \begin_inset Text
15151
15152 \begin_layout Plain Layout
15153
15154 \backslash
15155 ointclockwise
15156 \end_layout
15157
15158 \end_inset
15159 </cell>
15160 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15161 \begin_inset Text
15162
15163 \begin_layout Plain Layout
15164 \begin_inset Formula $\ointclockwise$
15165 \end_inset
15166
15167
15168 \end_layout
15169
15170 \end_inset
15171 </cell>
15172 </row>
15173 <row>
15174 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15175 \begin_inset Text
15176
15177 \begin_layout Plain Layout
15178
15179 \backslash
15180 sqint
15181 \end_layout
15182
15183 \end_inset
15184 </cell>
15185 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15186 \begin_inset Text
15187
15188 \begin_layout Plain Layout
15189 \begin_inset Formula $\sqint$
15190 \end_inset
15191
15192
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 fint
15206 \end_layout
15207
15208 \end_inset
15209 </cell>
15210 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15211 \begin_inset Text
15212
15213 \begin_layout Plain Layout
15214  
15215 \begin_inset Formula $\fint$
15216 \end_inset
15217
15218
15219 \end_layout
15220
15221 \end_inset
15222 </cell>
15223 </row>
15224 <row>
15225 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15226 \begin_inset Text
15227
15228 \begin_layout Plain Layout
15229
15230 \backslash
15231 landupint
15232 \end_layout
15233
15234 \end_inset
15235 </cell>
15236 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15237 \begin_inset Text
15238
15239 \begin_layout Plain Layout
15240  
15241 \begin_inset Formula $\landupint$
15242 \end_inset
15243
15244
15245 \end_layout
15246
15247 \end_inset
15248 </cell>
15249 </row>
15250 <row>
15251 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15252 \begin_inset Text
15253
15254 \begin_layout Plain Layout
15255
15256 \backslash
15257 landdownint
15258 \end_layout
15259
15260 \end_inset
15261 </cell>
15262 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15263 \begin_inset Text
15264
15265 \begin_layout Plain Layout
15266  
15267 \begin_inset Formula $\landdownint$
15268 \end_inset
15269
15270
15271 \end_layout
15272
15273 \end_inset
15274 </cell>
15275 </row>
15276 <row>
15277 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15278 \begin_inset Text
15279
15280 \begin_layout Plain Layout
15281
15282 \backslash
15283 bigcap
15284 \end_layout
15285
15286 \end_inset
15287 </cell>
15288 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15289 \begin_inset Text
15290
15291 \begin_layout Plain Layout
15292 \begin_inset Formula $\bigcap$
15293 \end_inset
15294
15295
15296 \end_layout
15297
15298 \end_inset
15299 </cell>
15300 </row>
15301 <row>
15302 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
15303 \begin_inset Text
15304
15305 \begin_layout Plain Layout
15306
15307 \backslash
15308 bigcup
15309 \end_layout
15310
15311 \end_inset
15312 </cell>
15313 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
15314 \begin_inset Text
15315
15316 \begin_layout Plain Layout
15317 \begin_inset Formula $\bigcup$
15318 \end_inset
15319
15320
15321 \end_layout
15322
15323 \end_inset
15324 </cell>
15325 </row>
15326 </lyxtabular>
15327
15328 \end_inset
15329
15330
15331 \begin_inset space \hfill{}
15332 \end_inset
15333
15334
15335 \begin_inset Tabular
15336 <lyxtabular version="3" rows="11" columns="2">
15337 <features tabularvalignment="middle">
15338 <column alignment="center" valignment="top" width="0pt">
15339 <column alignment="center" valignment="top" width="0pt">
15340 <row>
15341 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
15342 \begin_inset Text
15343
15344 \begin_layout Plain Layout
15345 Befehl
15346 \end_layout
15347
15348 \end_inset
15349 </cell>
15350 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
15351 \begin_inset Text
15352
15353 \begin_layout Plain Layout
15354 Ergebnis
15355 \end_layout
15356
15357 \end_inset
15358 </cell>
15359 </row>
15360 <row>
15361 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15362 \begin_inset Text
15363
15364 \begin_layout Plain Layout
15365
15366 \backslash
15367 sum
15368 \begin_inset Index idx
15369 status collapsed
15370
15371 \begin_layout Plain Layout
15372 Befehle ! S ! 
15373 \backslash
15374 sum
15375 \end_layout
15376
15377 \end_inset
15378
15379
15380 \end_layout
15381
15382 \end_inset
15383 </cell>
15384 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
15385 \begin_inset Text
15386
15387 \begin_layout Plain Layout
15388 \begin_inset Formula $\sum$
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 prod
15405 \begin_inset Index idx
15406 status collapsed
15407
15408 \begin_layout Plain Layout
15409 Befehle ! P ! 
15410 \backslash
15411 prod
15412 \end_layout
15413
15414 \end_inset
15415
15416
15417 \end_layout
15418
15419 \end_inset
15420 </cell>
15421 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15422 \begin_inset Text
15423
15424 \begin_layout Plain Layout
15425 \begin_inset Formula $\prod$
15426 \end_inset
15427
15428
15429 \end_layout
15430
15431 \end_inset
15432 </cell>
15433 </row>
15434 <row>
15435 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15436 \begin_inset Text
15437
15438 \begin_layout Plain Layout
15439
15440 \backslash
15441 coprod
15442 \end_layout
15443
15444 \end_inset
15445 </cell>
15446 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15447 \begin_inset Text
15448
15449 \begin_layout Plain Layout
15450 \begin_inset Formula $\coprod$
15451 \end_inset
15452
15453
15454 \end_layout
15455
15456 \end_inset
15457 </cell>
15458 </row>
15459 <row>
15460 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15461 \begin_inset Text
15462
15463 \begin_layout Plain Layout
15464
15465 \backslash
15466 bigodot
15467 \end_layout
15468
15469 \end_inset
15470 </cell>
15471 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15472 \begin_inset Text
15473
15474 \begin_layout Plain Layout
15475 \begin_inset Formula $\bigodot$
15476 \end_inset
15477
15478
15479 \end_layout
15480
15481 \end_inset
15482 </cell>
15483 </row>
15484 <row>
15485 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15486 \begin_inset Text
15487
15488 \begin_layout Plain Layout
15489
15490 \backslash
15491 bigotimes
15492 \end_layout
15493
15494 \end_inset
15495 </cell>
15496 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15497 \begin_inset Text
15498
15499 \begin_layout Plain Layout
15500 \begin_inset Formula $\bigotimes$
15501 \end_inset
15502
15503
15504 \end_layout
15505
15506 \end_inset
15507 </cell>
15508 </row>
15509 <row>
15510 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15511 \begin_inset Text
15512
15513 \begin_layout Plain Layout
15514
15515 \backslash
15516 bigoplus
15517 \end_layout
15518
15519 \end_inset
15520 </cell>
15521 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15522 \begin_inset Text
15523
15524 \begin_layout Plain Layout
15525 \begin_inset Formula $\bigoplus$
15526 \end_inset
15527
15528
15529 \end_layout
15530
15531 \end_inset
15532 </cell>
15533 </row>
15534 <row>
15535 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15536 \begin_inset Text
15537
15538 \begin_layout Plain Layout
15539
15540 \backslash
15541 bigwedge
15542 \end_layout
15543
15544 \end_inset
15545 </cell>
15546 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15547 \begin_inset Text
15548
15549 \begin_layout Plain Layout
15550 \begin_inset Formula $\bigwedge$
15551 \end_inset
15552
15553
15554 \end_layout
15555
15556 \end_inset
15557 </cell>
15558 </row>
15559 <row>
15560 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15561 \begin_inset Text
15562
15563 \begin_layout Plain Layout
15564
15565 \backslash
15566 bigvee
15567 \end_layout
15568
15569 \end_inset
15570 </cell>
15571 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15572 \begin_inset Text
15573
15574 \begin_layout Plain Layout
15575 \begin_inset Formula $\bigvee$
15576 \end_inset
15577
15578
15579 \end_layout
15580
15581 \end_inset
15582 </cell>
15583 </row>
15584 <row>
15585 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15586 \begin_inset Text
15587
15588 \begin_layout Plain Layout
15589
15590 \backslash
15591 bigsqcup
15592 \end_layout
15593
15594 \end_inset
15595 </cell>
15596 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15597 \begin_inset Text
15598
15599 \begin_layout Plain Layout
15600 \begin_inset Formula $\bigsqcup$
15601 \end_inset
15602
15603
15604 \end_layout
15605
15606 \end_inset
15607 </cell>
15608 </row>
15609 <row>
15610 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
15611 \begin_inset Text
15612
15613 \begin_layout Plain Layout
15614
15615 \backslash
15616 biguplus
15617 \end_layout
15618
15619 \end_inset
15620 </cell>
15621 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
15622 \begin_inset Text
15623
15624 \begin_layout Plain Layout
15625 \begin_inset Formula $\biguplus$
15626 \end_inset
15627
15628
15629 \end_layout
15630
15631 \end_inset
15632 </cell>
15633 </row>
15634 </lyxtabular>
15635
15636 \end_inset
15637
15638
15639 \begin_inset space \hfill{}
15640 \end_inset
15641
15642
15643 \end_layout
15644
15645 \begin_layout Standard
15646 Alle großen Operatoren können auch über den Mathe-Werkzeugleistenknopf 
15647 \begin_inset Graphics
15648         filename ../../images/math/intop.png
15649         scale 85
15650
15651 \end_inset
15652
15653  eingefügt werden.
15654 \end_layout
15655
15656 \begin_layout Standard
15657 Die Operatoren werden als groß bezeichnet, da sie größer sind als die zum
15658  Teil gleich aussehenden binären Operatoren.
15659  Zu allen großen Operatoren kann man Grenzen angeben, wie im nächsten Abschnitt
15660  beschrieben.
15661 \end_layout
15662
15663 \begin_layout Standard
15664 Für alle Integrale gibt es Befehle, die auf 
15665 \series bold
15666 op
15667 \series default
15668  enden: 
15669 \series bold
15670
15671 \backslash
15672 intop
15673 \series default
15674
15675 \series bold
15676
15677 \backslash
15678 ointop
15679 \series default
15680  usw..
15681  Diese unterscheiden sich von 
15682 \series bold
15683
15684 \backslash
15685 int
15686 \series default
15687  usw.
15688 \begin_inset space \space{}
15689 \end_inset
15690
15691 in der Art wie die Operatorgrenzen dargestellt werden, siehe 
15692 \begin_inset CommandInset ref
15693 LatexCommand ref
15694 reference "sub:Operatorgrenzen"
15695
15696 \end_inset
15697
15698 .
15699  
15700 \end_layout
15701
15702 \begin_layout Subsubsection*
15703 Hinweise zu Integralen
15704 \end_layout
15705
15706 \begin_layout Standard
15707 Der Buchstabe 
15708 \emph on
15709 d
15710 \emph default
15711  in einer Integralen ist ein Operator, der deswegen aufrecht erscheinen
15712  muss.
15713  Dazu markiert man das 
15714 \emph on
15715 d
15716 \emph default
15717  und wandelt es mit der Tastenkombination 
15718 \family sans
15719 Alt+Z
15720 \begin_inset space ~
15721 \end_inset
15722
15723 R
15724 \family default
15725
15726 \begin_inset Foot
15727 status collapsed
15728
15729 \begin_layout Plain Layout
15730 Schriftstile siehe 
15731 \begin_inset CommandInset ref
15732 LatexCommand ref
15733 reference "sub:Schriftstile"
15734
15735 \end_inset
15736
15737
15738 \end_layout
15739
15740 \end_inset
15741
15742  um.
15743  Anschließend fügt man vor dem 
15744 \emph on
15745 d
15746 \emph default
15747 , wie bei Operatoren üblich, den kleinsten Leerraum ein.
15748  Dazu ein Beispiel:
15749 \end_layout
15750
15751 \begin_layout Standard
15752 inkorrekt: 
15753 \begin_inset Formula $\int A(x)dx$
15754 \end_inset
15755
15756
15757 \begin_inset Newline newline
15758 \end_inset
15759
15760
15761 \begin_inset Phantom HPhantom
15762 status open
15763
15764 \begin_layout Plain Layout
15765 in
15766 \end_layout
15767
15768 \end_inset
15769
15770 korrekt: 
15771 \begin_inset Formula $\int A(x)\,\mathrm{d}x$
15772 \end_inset
15773
15774
15775 \end_layout
15776
15777 \begin_layout Standard
15778 \begin_inset VSpace medskip
15779 \end_inset
15780
15781 Für Mehrfachintegrale gibt es folgende Befehle:
15782 \begin_inset VSpace medskip
15783 \end_inset
15784
15785
15786 \end_layout
15787
15788 \begin_layout Standard
15789 \begin_inset space \hfill{}
15790 \end_inset
15791
15792
15793 \begin_inset Tabular
15794 <lyxtabular version="3" rows="4" columns="2">
15795 <features tabularvalignment="middle">
15796 <column alignment="center" valignment="top" width="0">
15797 <column alignment="center" valignment="top" width="0">
15798 <row>
15799 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
15800 \begin_inset Text
15801
15802 \begin_layout Plain Layout
15803 Befehl
15804 \end_layout
15805
15806 \end_inset
15807 </cell>
15808 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
15809 \begin_inset Text
15810
15811 \begin_layout Plain Layout
15812 Ergebnis
15813 \begin_inset Note Note
15814 status collapsed
15815
15816 \begin_layout Plain Layout
15817
15818 \series bold
15819
15820 \backslash
15821 raisebox
15822 \series default
15823  dient nur als Abstandhalter.
15824 \end_layout
15825
15826 \end_inset
15827
15828
15829 \end_layout
15830
15831 \end_inset
15832 </cell>
15833 </row>
15834 <row>
15835 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15836 \begin_inset Text
15837
15838 \begin_layout Plain Layout
15839
15840 \backslash
15841 iint
15842 \end_layout
15843
15844 \end_inset
15845 </cell>
15846 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15847 \begin_inset Text
15848
15849 \begin_layout Plain Layout
15850 \begin_inset Formula $\raisebox{4.5mm}{}\iint\raisebox{-2.5mm}{}$
15851 \end_inset
15852
15853
15854 \end_layout
15855
15856 \end_inset
15857 </cell>
15858 </row>
15859 <row>
15860 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15861 \begin_inset Text
15862
15863 \begin_layout Plain Layout
15864
15865 \backslash
15866 oiint
15867 \end_layout
15868
15869 \end_inset
15870 </cell>
15871 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15872 \begin_inset Text
15873
15874 \begin_layout Plain Layout
15875 \begin_inset Formula $\raisebox{4.5mm}{}\oiint\raisebox{-2.5mm}{}$
15876 \end_inset
15877
15878
15879 \end_layout
15880
15881 \end_inset
15882 </cell>
15883 </row>
15884 <row>
15885 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
15886 \begin_inset Text
15887
15888 \begin_layout Plain Layout
15889
15890 \backslash
15891 sqiint
15892 \end_layout
15893
15894 \end_inset
15895 </cell>
15896 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
15897 \begin_inset Text
15898
15899 \begin_layout Plain Layout
15900 \begin_inset Formula $\raisebox{4.5mm}{}\sqiint\raisebox{-2.5mm}{}$
15901 \end_inset
15902
15903
15904 \end_layout
15905
15906 \end_inset
15907 </cell>
15908 </row>
15909 </lyxtabular>
15910
15911 \end_inset
15912
15913
15914 \begin_inset space \hfill{}
15915 \end_inset
15916
15917
15918 \begin_inset Tabular
15919 <lyxtabular version="3" rows="4" columns="2">
15920 <features tabularvalignment="middle">
15921 <column alignment="center" valignment="top" width="0">
15922 <column alignment="center" valignment="top" width="0">
15923 <row>
15924 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
15925 \begin_inset Text
15926
15927 \begin_layout Plain Layout
15928 Befehl
15929 \end_layout
15930
15931 \end_inset
15932 </cell>
15933 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
15934 \begin_inset Text
15935
15936 \begin_layout Plain Layout
15937 Ergebnis
15938 \end_layout
15939
15940 \end_inset
15941 </cell>
15942 </row>
15943 <row>
15944 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15945 \begin_inset Text
15946
15947 \begin_layout Plain Layout
15948
15949 \backslash
15950 iiint
15951 \end_layout
15952
15953 \end_inset
15954 </cell>
15955 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15956 \begin_inset Text
15957
15958 \begin_layout Plain Layout
15959 \begin_inset Formula $\raisebox{4.5mm}{}\iiint\raisebox{-2.5mm}{}$
15960 \end_inset
15961
15962
15963 \end_layout
15964
15965 \end_inset
15966 </cell>
15967 </row>
15968 <row>
15969 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15970 \begin_inset Text
15971
15972 \begin_layout Plain Layout
15973
15974 \backslash
15975 iiiint
15976 \end_layout
15977
15978 \end_inset
15979 </cell>
15980 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15981 \begin_inset Text
15982
15983 \begin_layout Plain Layout
15984 \begin_inset Formula $\raisebox{4.5mm}{}\iiiint\raisebox{-2.5mm}{}$
15985 \end_inset
15986
15987
15988 \end_layout
15989
15990 \end_inset
15991 </cell>
15992 </row>
15993 <row>
15994 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
15995 \begin_inset Text
15996
15997 \begin_layout Plain Layout
15998
15999 \backslash
16000 dotsint
16001 \end_layout
16002
16003 \end_inset
16004 </cell>
16005 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
16006 \begin_inset Text
16007
16008 \begin_layout Plain Layout
16009 \begin_inset Formula $\raisebox{4.5mm}{}\dotsint\raisebox{-2.5mm}{}$
16010 \end_inset
16011
16012
16013 \end_layout
16014
16015 \end_inset
16016 </cell>
16017 </row>
16018 </lyxtabular>
16019
16020 \end_inset
16021
16022
16023 \begin_inset space \hfill{}
16024 \end_inset
16025
16026
16027 \end_layout
16028
16029 \begin_layout Subsection
16030 Operatorgrenzen
16031 \begin_inset CommandInset label
16032 LatexCommand label
16033 name "sub:Operatorgrenzen"
16034
16035 \end_inset
16036
16037
16038 \begin_inset Index idx
16039 status collapsed
16040
16041 \begin_layout Plain Layout
16042 Operatoren ! Grenzen
16043 \end_layout
16044
16045 \end_inset
16046
16047
16048 \end_layout
16049
16050 \begin_layout Standard
16051 Grenzen werden durch Hoch- bzw.
16052  Tiefstellen erzeugt:
16053 \end_layout
16054
16055 \begin_layout Standard
16056 \align center
16057 \begin_inset Tabular
16058 <lyxtabular version="3" rows="2" columns="2">
16059 <features tabularvalignment="middle">
16060 <column alignment="center" valignment="top" width="0pt">
16061 <column alignment="center" valignment="top" width="0pt">
16062 <row>
16063 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
16064 \begin_inset Text
16065
16066 \begin_layout Plain Layout
16067 Befehl
16068 \end_layout
16069
16070 \end_inset
16071 </cell>
16072 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
16073 \begin_inset Text
16074
16075 \begin_layout Plain Layout
16076 Ergebnis
16077 \begin_inset Note Note
16078 status collapsed
16079
16080 \begin_layout Plain Layout
16081
16082 \series bold
16083
16084 \backslash
16085 raisebox
16086 \series default
16087  dient nur als Abstandhalter.
16088 \end_layout
16089
16090 \end_inset
16091
16092
16093 \end_layout
16094
16095 \end_inset
16096 </cell>
16097 </row>
16098 <row>
16099 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
16100 \begin_inset Text
16101
16102 \begin_layout Plain Layout
16103
16104 \backslash
16105 prod^
16106 \backslash
16107 infty
16108 \begin_inset ERT
16109 status collapsed
16110
16111 \begin_layout Plain Layout
16112
16113
16114 \backslash
16115 leer 
16116 \end_layout
16117
16118 \end_inset
16119
16120
16121 \begin_inset Formula $\to$
16122 \end_inset
16123
16124 _0
16125 \begin_inset Formula $\to$
16126 \end_inset
16127
16128 A(x)
16129 \end_layout
16130
16131 \end_inset
16132 </cell>
16133 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
16134 \begin_inset Text
16135
16136 \begin_layout Plain Layout
16137 \begin_inset Formula $\raisebox{5mm}{}\prod_{0}^{\infty}A(x)\raisebox{-2.5mm}{}$
16138 \end_inset
16139
16140
16141 \end_layout
16142
16143 \end_inset
16144 </cell>
16145 </row>
16146 </lyxtabular>
16147
16148 \end_inset
16149
16150
16151 \end_layout
16152
16153 \begin_layout Standard
16154 Bei einer Formel in einer Textzeile werden die Grenzen rechts neben den
16155  Operator gesetzt.
16156  In einer abgesetzten Formel werden, außer bei Integralen, die Grenzen über
16157  bzw.
16158  unter den Operator gesetzt.
16159 \end_layout
16160
16161 \begin_layout Standard
16162 Um zu erzwingen, dass die Grenzen neben den Operator gesetzt werden, setzt
16163  man den Cursor direkt hinter den Operator und setzt über das Menü 
16164 \family sans
16165 Bearbeiten\SpecialChar \menuseparator
16166 Mathe\SpecialChar \menuseparator
16167 Art der Operatorgrenzen ändern
16168 \family default
16169  die Grenzen auf 
16170 \series bold
16171 Eingebettet
16172 \series default
16173  (Tastenkombination 
16174 \family sans
16175 Alt+M
16176 \begin_inset space ~
16177 \end_inset
16178
16179 L
16180 \family default
16181 ).
16182  Dazu folgendes Beispiel:
16183 \end_layout
16184
16185 \begin_layout Standard
16186 Die normalen Grenzen sehen so aus:
16187 \begin_inset Formula \[
16188 \sum_{x=0}^{\infty}\frac{1}{x^{2}}\]
16189
16190 \end_inset
16191
16192 So sieht die Formel aus, wenn man die Grenzen neben das Summenzeichen setzt:
16193 \begin_inset Formula \[
16194 \sum\nolimits _{x=0}^{\infty}\frac{1}{x^{2}}\]
16195
16196 \end_inset
16197
16198 Bei Integralen werden mit Ausnahme von denen, die auf 
16199 \series bold
16200 op
16201 \series default
16202  enden (
16203 \series bold
16204
16205 \backslash
16206 intop
16207 \series default
16208
16209 \series bold
16210
16211 \backslash
16212 ointop
16213 \series default
16214  usw.), die Grenzen standardmäßig neben den Operator gesetzt.
16215  Bei Mehrfachintegralen werden die Grenzen jedoch meistens unter den Operator
16216  gesetzt.
16217  Im folgenden Beispiel wurde die Grenze deswegen auf 
16218 \series bold
16219 Anzeige
16220 \series default
16221  gesetzt und damit unter die Integrale geschrieben:
16222 \begin_inset Formula \begin{equation}
16223 \iiint\limits _{V}X\,\mathrm{d}V=U\label{eq:VolInt}\end{equation}
16224
16225 \end_inset
16226
16227
16228 \end_layout
16229
16230 \begin_layout Standard
16231 \begin_inset VSpace medskip
16232 \end_inset
16233
16234 Um Bedingungen für Grenzen anzugeben, gibt es die Befehle 
16235 \series bold
16236
16237 \backslash
16238 subarray
16239 \series default
16240
16241 \begin_inset Index idx
16242 status collapsed
16243
16244 \begin_layout Plain Layout
16245 Befehle ! S ! 
16246 \backslash
16247 subarray
16248 \end_layout
16249
16250 \end_inset
16251
16252  und 
16253 \series bold
16254
16255 \backslash
16256 substack
16257 \series default
16258
16259 \begin_inset Index idx
16260 status collapsed
16261
16262 \begin_layout Plain Layout
16263 Befehle ! S ! 
16264 \backslash
16265 substack
16266 \end_layout
16267
16268 \end_inset
16269
16270 .
16271  Um z.
16272 \begin_inset space \thinspace{}
16273 \end_inset
16274
16275 B.
16276  diesen Ausdruck 
16277 \begin_inset Formula \begin{equation}
16278 \sum_{\begin{subarray}{c}
16279 0<k<1000\\
16280 \\
16281 k\,\in\,\mathbb{N}
16282 \end{subarray}}^{n}k^{-2}\label{eq:substack}\end{equation}
16283
16284 \end_inset
16285
16286 zu erstellen, muss man Folgendes tun:
16287 \begin_inset Newline newline
16288 \end_inset
16289
16290 Zuerst gibt man den Befehl 
16291 \series bold
16292
16293 \backslash
16294 sum
16295 \series default
16296 ^
16297 \series bold
16298 n
16299 \begin_inset ERT
16300 status collapsed
16301
16302 \begin_layout Plain Layout
16303
16304
16305 \backslash
16306 leer 
16307 \end_layout
16308
16309 \end_inset
16310
16311 _
16312 \series default
16313  ein.
16314  Man befindet sich nun in einem blauen Kästchen unter dem Summenzeichen.
16315  In dieses gibt man den Befehl 
16316 \series bold
16317
16318 \backslash
16319 subarray
16320 \begin_inset ERT
16321 status collapsed
16322
16323 \begin_layout Plain Layout
16324
16325
16326 \backslash
16327 leer 
16328 \end_layout
16329
16330 \end_inset
16331
16332
16333 \series default
16334  ein.
16335  Das blaue Kästchen hat nun eine lila Umrandung und man kann jetzt mehrere
16336  Zeilen untereinander schreiben.
16337  Mit Eingabe des Zeilenumbruchs (
16338 \family sans
16339 Strg+Enter
16340 \family default
16341 ) wird eine neue Zeile erstellt.
16342  Gibt man
16343 \begin_inset Newline newline
16344 \end_inset
16345
16346
16347 \series bold
16348 0<k<1000 Strg+Enter
16349 \begin_inset Newline newline
16350 \end_inset
16351
16352
16353 \series default
16354 ein, erscheint darunter ein Kästchen für die neue Zeile.
16355 \end_layout
16356
16357 \begin_layout Standard
16358 Die Ausrichtung der Zeilen kann mit der 
16359 \family sans
16360 Tabellen-Werkzeugleiste
16361 \family default
16362  oder dem Menü 
16363 \family sans
16364 Bearbeiten\SpecialChar \menuseparator
16365 Zeilen & Spalten
16366 \family default
16367  auf links geändert werden.
16368  Um rechts ausgerichtete Zeilen zu erhalten, wird am Anfang der Zeile 
16369 \series bold
16370
16371 \backslash
16372 hfill
16373 \begin_inset ERT
16374 status collapsed
16375
16376 \begin_layout Plain Layout
16377
16378
16379 \backslash
16380 leer 
16381 \end_layout
16382
16383 \end_inset
16384
16385
16386 \series default
16387  eingegeben.
16388 \end_layout
16389
16390 \begin_layout Standard
16391 Der Befehl 
16392 \series bold
16393
16394 \backslash
16395 substack
16396 \series default
16397  ist äquivalent zu 
16398 \series bold
16399
16400 \backslash
16401 subarray
16402 \series default
16403 , mit dem Unterschied dass die Zeilen immer zentriert ausgerichtet sind.
16404 \end_layout
16405
16406 \begin_layout Standard
16407 \begin_inset VSpace bigskip
16408 \end_inset
16409
16410 Wie bei Formel 
16411 \begin_inset CommandInset ref
16412 LatexCommand eqref
16413 reference "eq:substack"
16414
16415 \end_inset
16416
16417  kann es vorkommen, dass sich neben dem Operator zu viel Leerraum befindet,
16418  denn das dem Operator folgende Zeichen wird neben die Grenzen gesetzt.
16419 \end_layout
16420
16421 \begin_layout Standard
16422 Um das zu verhindern, kann man folgendes Makro in den LaTeX-Vorspann einfügen:
16423 \end_layout
16424
16425 \begin_layout Standard
16426
16427 \series bold
16428
16429 \backslash
16430 def
16431 \backslash
16432 clap#1{
16433 \backslash
16434 hbox to 0pt{
16435 \backslash
16436 hss #1
16437 \backslash
16438 hss}}
16439 \begin_inset Newline newline
16440 \end_inset
16441
16442
16443 \backslash
16444 def
16445 \backslash
16446 mathclap {
16447 \backslash
16448 mathpalette 
16449 \backslash
16450 mathclapinternal}
16451 \begin_inset Newline newline
16452 \end_inset
16453
16454
16455 \backslash
16456 def
16457 \backslash
16458 mathclapinternal #1#2{
16459 \backslash
16460 clap{$
16461 \backslash
16462 mathsurround =0pt #1{#2}$}}
16463 \end_layout
16464
16465 \begin_layout Standard
16466 Dadurch wird der Befehl 
16467 \series bold
16468
16469 \backslash
16470 mathclap
16471 \series default
16472
16473 \begin_inset Index idx
16474 status collapsed
16475
16476 \begin_layout Plain Layout
16477 Befehle ! M ! 
16478 \backslash
16479 mathclap
16480 \end_layout
16481
16482 \end_inset
16483
16484  definiert, der die Breite der Grenze auf 0
16485 \begin_inset space \thinspace{}
16486 \end_inset
16487
16488 pt setzt.
16489  Das Befehlsschema lautet
16490 \end_layout
16491
16492 \begin_layout Standard
16493
16494 \series bold
16495
16496 \backslash
16497 mathclap{Grenze}
16498 \end_layout
16499
16500 \begin_layout Standard
16501 wobei die Grenze auch aus mehreren Bedingungen bestehen kann.
16502 \end_layout
16503
16504 \begin_layout Standard
16505 Auf Formel 
16506 \begin_inset CommandInset ref
16507 LatexCommand eqref
16508 reference "eq:substack"
16509
16510 \end_inset
16511
16512  angewandt, gibt man also den Befehl
16513 \end_layout
16514
16515 \begin_layout Standard
16516
16517 \series bold
16518
16519 \backslash
16520 sum_
16521 \backslash
16522 mathclap{
16523 \backslash
16524 substack
16525 \begin_inset ERT
16526 status collapsed
16527
16528 \begin_layout Plain Layout
16529
16530
16531 \backslash
16532 leer 
16533 \end_layout
16534
16535 \end_inset
16536
16537 0<k<1000 Strg+Enter
16538 \end_layout
16539
16540 \begin_layout Standard
16541 ein, um die untere Grenze zu erstellen.
16542  Der Summand befindet sich nun direkt hinter dem Summenzeichen:
16543 \begin_inset Formula \[
16544 \sum_{\mathclap{\substack{0<k<1000\\
16545 \\
16546 k\,\in\,\mathbb{N}
16547 }
16548 }}^{n}k^{-2}\]
16549
16550 \end_inset
16551
16552
16553 \end_layout
16554
16555 \begin_layout Standard
16556 \begin_inset VSpace bigskip
16557 \end_inset
16558
16559 In 
16560 \begin_inset CommandInset ref
16561 LatexCommand ref
16562 reference "sub:Selbstdefinierte-Operatoren"
16563
16564 \end_inset
16565
16566  ist beschrieben, wie man eine Grenze für mehrere Operatoren verwenden kann.
16567 \end_layout
16568
16569 \begin_layout Subsection
16570 Binäre Operatoren
16571 \begin_inset CommandInset label
16572 LatexCommand label
16573 name "sub:Binäre-Operatoren"
16574
16575 \end_inset
16576
16577
16578 \begin_inset Index idx
16579 status collapsed
16580
16581 \begin_layout Plain Layout
16582 Operatoren ! binäre
16583 \end_layout
16584
16585 \end_inset
16586
16587
16588 \end_layout
16589
16590 \begin_layout Standard
16591 Binäre Operatoren sind von Leerraum umgeben, wenn sich vor und hinter ihnen
16592  ein Zeichen befindet.
16593 \begin_inset VSpace medskip
16594 \end_inset
16595
16596
16597 \end_layout
16598
16599 \begin_layout Standard
16600 \begin_inset space \hfill{}
16601 \end_inset
16602
16603
16604 \begin_inset Tabular
16605 <lyxtabular version="3" rows="13" columns="2">
16606 <features tabularvalignment="middle">
16607 <column alignment="center" valignment="top" width="0pt">
16608 <column alignment="center" valignment="top" width="0pt">
16609 <row>
16610 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
16611 \begin_inset Text
16612
16613 \begin_layout Plain Layout
16614 Befehl
16615 \begin_inset Note Note
16616 status collapsed
16617
16618 \begin_layout Plain Layout
16619
16620 \series bold
16621
16622 \backslash
16623 raisebox
16624 \series default
16625  dient nur als Abstandhalter.
16626 \end_layout
16627
16628 \end_inset
16629
16630
16631 \end_layout
16632
16633 \end_inset
16634 </cell>
16635 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
16636 \begin_inset Text
16637
16638 \begin_layout Plain Layout
16639 Ergebnis
16640 \end_layout
16641
16642 \end_inset
16643 </cell>
16644 </row>
16645 <row>
16646 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16647 \begin_inset Text
16648
16649 \begin_layout Plain Layout
16650 +
16651 \end_layout
16652
16653 \end_inset
16654 </cell>
16655 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16656 \begin_inset Text
16657
16658 \begin_layout Plain Layout
16659 \begin_inset Formula $+$
16660 \end_inset
16661
16662
16663 \end_layout
16664
16665 \end_inset
16666 </cell>
16667 </row>
16668 <row>
16669 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16670 \begin_inset Text
16671
16672 \begin_layout Plain Layout
16673 -
16674 \end_layout
16675
16676 \end_inset
16677 </cell>
16678 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16679 \begin_inset Text
16680
16681 \begin_layout Plain Layout
16682 \begin_inset Formula $-$
16683 \end_inset
16684
16685
16686 \end_layout
16687
16688 \end_inset
16689 </cell>
16690 </row>
16691 <row>
16692 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16693 \begin_inset Text
16694
16695 \begin_layout Plain Layout
16696
16697 \backslash
16698 pm
16699 \end_layout
16700
16701 \end_inset
16702 </cell>
16703 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16704 \begin_inset Text
16705
16706 \begin_layout Plain Layout
16707 \begin_inset Formula $\pm$
16708 \end_inset
16709
16710
16711 \end_layout
16712
16713 \end_inset
16714 </cell>
16715 </row>
16716 <row>
16717 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16718 \begin_inset Text
16719
16720 \begin_layout Plain Layout
16721
16722 \backslash
16723 mp
16724 \end_layout
16725
16726 \end_inset
16727 </cell>
16728 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16729 \begin_inset Text
16730
16731 \begin_layout Plain Layout
16732 \begin_inset Formula $\mp$
16733 \end_inset
16734
16735
16736 \end_layout
16737
16738 \end_inset
16739 </cell>
16740 </row>
16741 <row>
16742 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16743 \begin_inset Text
16744
16745 \begin_layout Plain Layout
16746
16747 \backslash
16748 cdot
16749 \end_layout
16750
16751 \end_inset
16752 </cell>
16753 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16754 \begin_inset Text
16755
16756 \begin_layout Plain Layout
16757 \begin_inset Formula $\cdot$
16758 \end_inset
16759
16760
16761 \end_layout
16762
16763 \end_inset
16764 </cell>
16765 </row>
16766 <row>
16767 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16768 \begin_inset Text
16769
16770 \begin_layout Plain Layout
16771
16772 \backslash
16773 times
16774 \end_layout
16775
16776 \end_inset
16777 </cell>
16778 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16779 \begin_inset Text
16780
16781 \begin_layout Plain Layout
16782 \begin_inset Formula $\times$
16783 \end_inset
16784
16785
16786 \end_layout
16787
16788 \end_inset
16789 </cell>
16790 </row>
16791 <row>
16792 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16793 \begin_inset Text
16794
16795 \begin_layout Plain Layout
16796
16797 \backslash
16798 div
16799 \end_layout
16800
16801 \end_inset
16802 </cell>
16803 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16804 \begin_inset Text
16805
16806 \begin_layout Plain Layout
16807 \begin_inset Formula $\div$
16808 \end_inset
16809
16810
16811 \end_layout
16812
16813 \end_inset
16814 </cell>
16815 </row>
16816 <row>
16817 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16818 \begin_inset Text
16819
16820 \begin_layout Plain Layout
16821 \begin_inset ERT
16822 status collapsed
16823
16824 \begin_layout Plain Layout
16825
16826
16827 \backslash
16828 raisebox{-1.2mm}{
16829 \end_layout
16830
16831 \end_inset
16832
16833 *
16834 \begin_inset ERT
16835 status collapsed
16836
16837 \begin_layout Plain Layout
16838
16839 }
16840 \end_layout
16841
16842 \end_inset
16843
16844
16845 \end_layout
16846
16847 \end_inset
16848 </cell>
16849 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16850 \begin_inset Text
16851
16852 \begin_layout Plain Layout
16853 \begin_inset Formula $*$
16854 \end_inset
16855
16856
16857 \end_layout
16858
16859 \end_inset
16860 </cell>
16861 </row>
16862 <row>
16863 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16864 \begin_inset Text
16865
16866 \begin_layout Plain Layout
16867
16868 \backslash
16869 star
16870 \end_layout
16871
16872 \end_inset
16873 </cell>
16874 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16875 \begin_inset Text
16876
16877 \begin_layout Plain Layout
16878 \begin_inset Formula $\star$
16879 \end_inset
16880
16881
16882 \end_layout
16883
16884 \end_inset
16885 </cell>
16886 </row>
16887 <row>
16888 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16889 \begin_inset Text
16890
16891 \begin_layout Plain Layout
16892
16893 \backslash
16894 circ
16895 \end_layout
16896
16897 \end_inset
16898 </cell>
16899 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16900 \begin_inset Text
16901
16902 \begin_layout Plain Layout
16903 \begin_inset Formula $\circ$
16904 \end_inset
16905
16906
16907 \end_layout
16908
16909 \end_inset
16910 </cell>
16911 </row>
16912 <row>
16913 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16914 \begin_inset Text
16915
16916 \begin_layout Plain Layout
16917
16918 \backslash
16919 diamond
16920 \end_layout
16921
16922 \end_inset
16923 </cell>
16924 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16925 \begin_inset Text
16926
16927 \begin_layout Plain Layout
16928 \begin_inset Formula $\diamond$
16929 \end_inset
16930
16931
16932 \end_layout
16933
16934 \end_inset
16935 </cell>
16936 </row>
16937 <row>
16938 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
16939 \begin_inset Text
16940
16941 \begin_layout Plain Layout
16942
16943 \backslash
16944 bullet
16945 \end_layout
16946
16947 \end_inset
16948 </cell>
16949 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
16950 \begin_inset Text
16951
16952 \begin_layout Plain Layout
16953 \begin_inset Formula $\bullet$
16954 \end_inset
16955
16956
16957 \end_layout
16958
16959 \end_inset
16960 </cell>
16961 </row>
16962 </lyxtabular>
16963
16964 \end_inset
16965
16966
16967 \begin_inset space \hfill{}
16968 \end_inset
16969
16970
16971 \begin_inset Tabular
16972 <lyxtabular version="3" rows="13" columns="2">
16973 <features tabularvalignment="middle">
16974 <column alignment="center" valignment="top" width="0pt">
16975 <column alignment="center" valignment="top" width="0pt">
16976 <row>
16977 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
16978 \begin_inset Text
16979
16980 \begin_layout Plain Layout
16981 Befehl
16982 \end_layout
16983
16984 \end_inset
16985 </cell>
16986 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
16987 \begin_inset Text
16988
16989 \begin_layout Plain Layout
16990 Ergebnis
16991 \end_layout
16992
16993 \end_inset
16994 </cell>
16995 </row>
16996 <row>
16997 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16998 \begin_inset Text
16999
17000 \begin_layout Plain Layout
17001
17002 \backslash
17003 nabla
17004 \end_layout
17005
17006 \end_inset
17007 </cell>
17008 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17009 \begin_inset Text
17010
17011 \begin_layout Plain Layout
17012 \begin_inset Formula $\nabla$
17013 \end_inset
17014
17015
17016 \end_layout
17017
17018 \end_inset
17019 </cell>
17020 </row>
17021 <row>
17022 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17023 \begin_inset Text
17024
17025 \begin_layout Plain Layout
17026
17027 \backslash
17028 bigtriangledown
17029 \end_layout
17030
17031 \end_inset
17032 </cell>
17033 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17034 \begin_inset Text
17035
17036 \begin_layout Plain Layout
17037 \begin_inset Formula $\bigtriangledown$
17038 \end_inset
17039
17040
17041 \end_layout
17042
17043 \end_inset
17044 </cell>
17045 </row>
17046 <row>
17047 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17048 \begin_inset Text
17049
17050 \begin_layout Plain Layout
17051
17052 \backslash
17053 bigtriangleup
17054 \end_layout
17055
17056 \end_inset
17057 </cell>
17058 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17059 \begin_inset Text
17060
17061 \begin_layout Plain Layout
17062 \begin_inset Formula $\bigtriangleup$
17063 \end_inset
17064
17065
17066 \end_layout
17067
17068 \end_inset
17069 </cell>
17070 </row>
17071 <row>
17072 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17073 \begin_inset Text
17074
17075 \begin_layout Plain Layout
17076
17077 \backslash
17078 Box
17079 \end_layout
17080
17081 \end_inset
17082 </cell>
17083 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17084 \begin_inset Text
17085
17086 \begin_layout Plain Layout
17087 \begin_inset Formula $\Box$
17088 \end_inset
17089
17090
17091 \end_layout
17092
17093 \end_inset
17094 </cell>
17095 </row>
17096 <row>
17097 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17098 \begin_inset Text
17099
17100 \begin_layout Plain Layout
17101
17102 \backslash
17103 cap 
17104 \end_layout
17105
17106 \end_inset
17107 </cell>
17108 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17109 \begin_inset Text
17110
17111 \begin_layout Plain Layout
17112 \begin_inset Formula $\cap$
17113 \end_inset
17114
17115
17116 \end_layout
17117
17118 \end_inset
17119 </cell>
17120 </row>
17121 <row>
17122 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17123 \begin_inset Text
17124
17125 \begin_layout Plain Layout
17126
17127 \backslash
17128 cup
17129 \end_layout
17130
17131 \end_inset
17132 </cell>
17133 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17134 \begin_inset Text
17135
17136 \begin_layout Plain Layout
17137 \begin_inset Formula $\cup$
17138 \end_inset
17139
17140
17141 \end_layout
17142
17143 \end_inset
17144 </cell>
17145 </row>
17146 <row>
17147 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17148 \begin_inset Text
17149
17150 \begin_layout Plain Layout
17151
17152 \backslash
17153 dagger
17154 \end_layout
17155
17156 \end_inset
17157 </cell>
17158 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17159 \begin_inset Text
17160
17161 \begin_layout Plain Layout
17162 \begin_inset Formula $\dagger$
17163 \end_inset
17164
17165
17166 \end_layout
17167
17168 \end_inset
17169 </cell>
17170 </row>
17171 <row>
17172 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17173 \begin_inset Text
17174
17175 \begin_layout Plain Layout
17176
17177 \backslash
17178 ddagger
17179 \end_layout
17180
17181 \end_inset
17182 </cell>
17183 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17184 \begin_inset Text
17185
17186 \begin_layout Plain Layout
17187 \begin_inset Formula $\ddagger$
17188 \end_inset
17189
17190
17191 \end_layout
17192
17193 \end_inset
17194 </cell>
17195 </row>
17196 <row>
17197 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17198 \begin_inset Text
17199
17200 \begin_layout Plain Layout
17201
17202 \backslash
17203 wr
17204 \end_layout
17205
17206 \end_inset
17207 </cell>
17208 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17209 \begin_inset Text
17210
17211 \begin_layout Plain Layout
17212 \begin_inset Formula $\wr$
17213 \end_inset
17214
17215
17216 \end_layout
17217
17218 \end_inset
17219 </cell>
17220 </row>
17221 <row>
17222 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17223 \begin_inset Text
17224
17225 \begin_layout Plain Layout
17226
17227 \backslash
17228 bigcirc
17229 \end_layout
17230
17231 \end_inset
17232 </cell>
17233 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17234 \begin_inset Text
17235
17236 \begin_layout Plain Layout
17237 \begin_inset Formula $\bigcirc$
17238 \end_inset
17239
17240
17241 \end_layout
17242
17243 \end_inset
17244 </cell>
17245 </row>
17246 <row>
17247 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17248 \begin_inset Text
17249
17250 \begin_layout Plain Layout
17251
17252 \backslash
17253 wedge
17254 \end_layout
17255
17256 \end_inset
17257 </cell>
17258 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17259 \begin_inset Text
17260
17261 \begin_layout Plain Layout
17262 \begin_inset Formula $\wedge$
17263 \end_inset
17264
17265
17266 \end_layout
17267
17268 \end_inset
17269 </cell>
17270 </row>
17271 <row>
17272 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
17273 \begin_inset Text
17274
17275 \begin_layout Plain Layout
17276
17277 \backslash
17278 vee
17279 \end_layout
17280
17281 \end_inset
17282 </cell>
17283 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
17284 \begin_inset Text
17285
17286 \begin_layout Plain Layout
17287 \begin_inset Formula $\vee$
17288 \end_inset
17289
17290
17291 \end_layout
17292
17293 \end_inset
17294 </cell>
17295 </row>
17296 </lyxtabular>
17297
17298 \end_inset
17299
17300
17301 \begin_inset space \hfill{}
17302 \end_inset
17303
17304
17305 \begin_inset Tabular
17306 <lyxtabular version="3" rows="13" columns="2">
17307 <features tabularvalignment="middle">
17308 <column alignment="center" valignment="top" width="0pt">
17309 <column alignment="center" valignment="top" width="0pt">
17310 <row>
17311 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
17312 \begin_inset Text
17313
17314 \begin_layout Plain Layout
17315 Befehl
17316 \end_layout
17317
17318 \end_inset
17319 </cell>
17320 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
17321 \begin_inset Text
17322
17323 \begin_layout Plain Layout
17324 Ergebnis
17325 \end_layout
17326
17327 \end_inset
17328 </cell>
17329 </row>
17330 <row>
17331 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17332 \begin_inset Text
17333
17334 \begin_layout Plain Layout
17335
17336 \backslash
17337 oplus
17338 \end_layout
17339
17340 \end_inset
17341 </cell>
17342 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17343 \begin_inset Text
17344
17345 \begin_layout Plain Layout
17346 \begin_inset Formula $\oplus$
17347 \end_inset
17348
17349
17350 \end_layout
17351
17352 \end_inset
17353 </cell>
17354 </row>
17355 <row>
17356 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17357 \begin_inset Text
17358
17359 \begin_layout Plain Layout
17360
17361 \backslash
17362 ominus
17363 \end_layout
17364
17365 \end_inset
17366 </cell>
17367 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17368 \begin_inset Text
17369
17370 \begin_layout Plain Layout
17371 \begin_inset Formula $\ominus$
17372 \end_inset
17373
17374
17375 \end_layout
17376
17377 \end_inset
17378 </cell>
17379 </row>
17380 <row>
17381 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17382 \begin_inset Text
17383
17384 \begin_layout Plain Layout
17385
17386 \backslash
17387 otimes
17388 \end_layout
17389
17390 \end_inset
17391 </cell>
17392 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17393 \begin_inset Text
17394
17395 \begin_layout Plain Layout
17396 \begin_inset Formula $\otimes$
17397 \end_inset
17398
17399
17400 \end_layout
17401
17402 \end_inset
17403 </cell>
17404 </row>
17405 <row>
17406 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17407 \begin_inset Text
17408
17409 \begin_layout Plain Layout
17410
17411 \backslash
17412 oslash
17413 \end_layout
17414
17415 \end_inset
17416 </cell>
17417 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17418 \begin_inset Text
17419
17420 \begin_layout Plain Layout
17421 \begin_inset Formula $\oslash$
17422 \end_inset
17423
17424
17425 \end_layout
17426
17427 \end_inset
17428 </cell>
17429 </row>
17430 <row>
17431 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17432 \begin_inset Text
17433
17434 \begin_layout Plain Layout
17435
17436 \backslash
17437 odot
17438 \end_layout
17439
17440 \end_inset
17441 </cell>
17442 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17443 \begin_inset Text
17444
17445 \begin_layout Plain Layout
17446 \begin_inset Formula $\odot$
17447 \end_inset
17448
17449
17450 \end_layout
17451
17452 \end_inset
17453 </cell>
17454 </row>
17455 <row>
17456 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17457 \begin_inset Text
17458
17459 \begin_layout Plain Layout
17460
17461 \backslash
17462 amalg
17463 \end_layout
17464
17465 \end_inset
17466 </cell>
17467 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17468 \begin_inset Text
17469
17470 \begin_layout Plain Layout
17471 \begin_inset Formula $\amalg$
17472 \end_inset
17473
17474
17475 \end_layout
17476
17477 \end_inset
17478 </cell>
17479 </row>
17480 <row>
17481 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17482 \begin_inset Text
17483
17484 \begin_layout Plain Layout
17485
17486 \backslash
17487 uplus
17488 \end_layout
17489
17490 \end_inset
17491 </cell>
17492 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17493 \begin_inset Text
17494
17495 \begin_layout Plain Layout
17496 \begin_inset Formula $\uplus$
17497 \end_inset
17498
17499
17500 \end_layout
17501
17502 \end_inset
17503 </cell>
17504 </row>
17505 <row>
17506 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17507 \begin_inset Text
17508
17509 \begin_layout Plain Layout
17510
17511 \backslash
17512 setminus
17513 \end_layout
17514
17515 \end_inset
17516 </cell>
17517 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17518 \begin_inset Text
17519
17520 \begin_layout Plain Layout
17521 \begin_inset Formula $\setminus$
17522 \end_inset
17523
17524
17525 \end_layout
17526
17527 \end_inset
17528 </cell>
17529 </row>
17530 <row>
17531 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17532 \begin_inset Text
17533
17534 \begin_layout Plain Layout
17535
17536 \backslash
17537 sqcap
17538 \end_layout
17539
17540 \end_inset
17541 </cell>
17542 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17543 \begin_inset Text
17544
17545 \begin_layout Plain Layout
17546 \begin_inset Formula $\sqcap$
17547 \end_inset
17548
17549
17550 \end_layout
17551
17552 \end_inset
17553 </cell>
17554 </row>
17555 <row>
17556 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17557 \begin_inset Text
17558
17559 \begin_layout Plain Layout
17560
17561 \backslash
17562 sqcup
17563 \end_layout
17564
17565 \end_inset
17566 </cell>
17567 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17568 \begin_inset Text
17569
17570 \begin_layout Plain Layout
17571 \begin_inset Formula $\sqcup$
17572 \end_inset
17573
17574
17575 \end_layout
17576
17577 \end_inset
17578 </cell>
17579 </row>
17580 <row>
17581 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17582 \begin_inset Text
17583
17584 \begin_layout Plain Layout
17585
17586 \backslash
17587 triangleleft
17588 \end_layout
17589
17590 \end_inset
17591 </cell>
17592 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17593 \begin_inset Text
17594
17595 \begin_layout Plain Layout
17596 \begin_inset Formula $\triangleleft$
17597 \end_inset
17598
17599
17600 \end_layout
17601
17602 \end_inset
17603 </cell>
17604 </row>
17605 <row>
17606 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
17607 \begin_inset Text
17608
17609 \begin_layout Plain Layout
17610
17611 \backslash
17612 triangleright
17613 \end_layout
17614
17615 \end_inset
17616 </cell>
17617 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
17618 \begin_inset Text
17619
17620 \begin_layout Plain Layout
17621 \begin_inset Formula $\triangleright$
17622 \end_inset
17623
17624
17625 \end_layout
17626
17627 \end_inset
17628 </cell>
17629 </row>
17630 </lyxtabular>
17631
17632 \end_inset
17633
17634
17635 \begin_inset space \hfill{}
17636 \end_inset
17637
17638
17639 \end_layout
17640
17641 \begin_layout Standard
17642 Alle binären Operatoren können auch über den Mathe-Werkzeugleistenknopf
17643  
17644 \begin_inset Graphics
17645         filename ../../images/math/pm.png
17646         scale 85
17647
17648 \end_inset
17649
17650  eingefügt werden.
17651 \end_layout
17652
17653 \begin_layout Standard
17654 Um den Laplace-Operator darzustellen, kann man statt 
17655 \series bold
17656
17657 \backslash
17658 bigtriangleup
17659 \series default
17660  auch 
17661 \series bold
17662
17663 \backslash
17664 Delta
17665 \series default
17666  verwenden oder man benutzt 
17667 \series bold
17668
17669 \backslash
17670 nabla
17671 \series default
17672 ^
17673 \series bold
17674 2
17675 \series default
17676  (
17677 \begin_inset Formula $\nabla^{2}$
17678 \end_inset
17679
17680 ).
17681 \end_layout
17682
17683 \begin_layout Standard
17684 Das Zeichen 
17685 \family sans
17686 Menütrenner
17687 \family default
17688  im Menü 
17689 \family sans
17690 Einfügen\SpecialChar \menuseparator
17691 Sonderzeichen
17692 \family default
17693  ist der Operator 
17694 \series bold
17695
17696 \backslash
17697 triangleright
17698 \series default
17699 .
17700 \end_layout
17701
17702 \begin_layout Subsection
17703 Selbst definierte Operatoren
17704 \begin_inset CommandInset label
17705 LatexCommand label
17706 name "sub:Selbstdefinierte-Operatoren"
17707
17708 \end_inset
17709
17710
17711 \begin_inset Index idx
17712 status collapsed
17713
17714 \begin_layout Plain Layout
17715 Operatoren ! selbstdefinierte
17716 \end_layout
17717
17718 \end_inset
17719
17720
17721 \end_layout
17722
17723 \begin_layout Standard
17724 Mit Hilfe des Befehls 
17725 \series bold
17726
17727 \backslash
17728 DeclareMathOperator
17729 \series default
17730
17731 \begin_inset Index idx
17732 status collapsed
17733
17734 \begin_layout Plain Layout
17735 Befehle ! D ! 
17736 \backslash
17737 dbinom@
17738 \backslash
17739 DeclareMathOperator
17740 \end_layout
17741
17742 \end_inset
17743
17744  kann man im LaTeX-Vorspann eigene Operatoren definieren.
17745  Das Befehlsschema dazu lautet:
17746 \end_layout
17747
17748 \begin_layout Standard
17749
17750 \series bold
17751
17752 \backslash
17753 DeclareMathOperator{neuer Befehl}{Anzeige}
17754 \end_layout
17755
17756 \begin_layout Standard
17757 Anzeige können Zeichen und Symbole sein, die festlegen, wie der Operator
17758  im Ausdruck aussieht.
17759  Will man einen großen Operator definieren, setzt man hinter den Befehl
17760  ein 
17761 \series bold
17762 *
17763 \series default
17764 .
17765  Zu allen selbst definierten großen Operatoren kann man Grenzen angeben,
17766  wie in 
17767 \begin_inset CommandInset ref
17768 LatexCommand ref
17769 reference "sub:Operatorgrenzen"
17770
17771 \end_inset
17772
17773  beschrieben.
17774 \end_layout
17775
17776 \begin_layout Standard
17777 Beispielsweise definiert die LaTeX-Vorspannzeile
17778 \end_layout
17779
17780 \begin_layout Standard
17781
17782 \series bold
17783
17784 \backslash
17785 DeclareMathOperator*{
17786 \backslash
17787 Raute}{
17788 \backslash
17789 blacklozenge}
17790 \end_layout
17791
17792 \begin_layout Standard
17793 den Befehl 
17794 \series bold
17795
17796 \backslash
17797 Raute
17798 \series default
17799 , mit dem man einen großen Operator aufrufen kann, der aus dem Raute Symbol
17800  aus 
17801 \begin_inset CommandInset ref
17802 LatexCommand ref
17803 reference "sub:Sonstige-Symbole"
17804
17805 \end_inset
17806
17807  besteht:
17808 \begin_inset Formula \[
17809 \Raute_{n=1}^{\infty}\]
17810
17811 \end_inset
17812
17813 Der Befehl für diese Formel lautet: 
17814 \series bold
17815
17816 \backslash
17817 Raute
17818 \series default
17819 ^
17820 \series bold
17821
17822 \backslash
17823 infty
17824 \begin_inset Formula $\to$
17825 \end_inset
17826
17827 _n=1
17828 \end_layout
17829
17830 \begin_layout Standard
17831 \begin_inset VSpace bigskip
17832 \end_inset
17833
17834 Benötigt man eigene Operatoren nicht mehrfach im Dokument, kann man diese
17835  auch mit den Befehlen 
17836 \series bold
17837
17838 \backslash
17839 mathop
17840 \series default
17841
17842 \begin_inset Index idx
17843 status collapsed
17844
17845 \begin_layout Plain Layout
17846 Befehle ! M ! 
17847 \backslash
17848 mathop
17849 \end_layout
17850
17851 \end_inset
17852
17853  und 
17854 \series bold
17855
17856 \backslash
17857 mathbin
17858 \series default
17859
17860 \begin_inset Index idx
17861 status collapsed
17862
17863 \begin_layout Plain Layout
17864 Befehle ! M ! 
17865 \backslash
17866 mathbin
17867 \end_layout
17868
17869 \end_inset
17870
17871  definieren, die folgendes Schema besitzen:
17872 \end_layout
17873
17874 \begin_layout Standard
17875
17876 \series bold
17877
17878 \backslash
17879 mathop{Anzeige}
17880 \series default
17881  bzw.
17882  
17883 \series bold
17884
17885 \backslash
17886 mathbin{Anzeige}
17887 \end_layout
17888
17889 \begin_layout Standard
17890
17891 \series bold
17892
17893 \backslash
17894 mathop
17895 \series default
17896  definiert große, 
17897 \series bold
17898
17899 \backslash
17900 mathbin
17901 \series default
17902  binäre Operatoren.
17903 \end_layout
17904
17905 \begin_layout Standard
17906
17907 \series bold
17908
17909 \backslash
17910 mathop
17911 \series default
17912  lässt sich z.
17913 \begin_inset space \thinspace{}
17914 \end_inset
17915
17916 B.
17917  nutzen, um eine Grenze für mehrere Operatoren zu verwenden:
17918 \begin_inset Formula \[
17919 \mathop{\sum\negmedspace\sum}_{i,j=1}^{N}\]
17920
17921 \end_inset
17922
17923
17924 \end_layout
17925
17926 \begin_layout Standard
17927 Der Befehl für obige Formel lautet:
17928 \begin_inset Newline newline
17929 \end_inset
17930
17931  
17932 \series bold
17933
17934 \backslash
17935 mathop{
17936 \backslash
17937 sum
17938 \backslash
17939 negmedspace
17940 \backslash
17941 sum
17942 \series default
17943
17944 \begin_inset ERT
17945 status collapsed
17946
17947 \begin_layout Plain Layout
17948
17949
17950 \backslash
17951 leer 
17952 \end_layout
17953
17954 \end_inset
17955
17956
17957 \series bold
17958
17959 \begin_inset Formula $\to$
17960 \end_inset
17961
17962 ^N
17963 \series default
17964
17965 \begin_inset ERT
17966 status collapsed
17967
17968 \begin_layout Plain Layout
17969
17970
17971 \backslash
17972 leer 
17973 \end_layout
17974
17975 \end_inset
17976
17977
17978 \series bold
17979 _i,j=1
17980 \end_layout
17981
17982 \begin_layout Section
17983 Schriften
17984 \begin_inset Index idx
17985 status collapsed
17986
17987 \begin_layout Plain Layout
17988 Schriften
17989 \end_layout
17990
17991 \end_inset
17992
17993
17994 \end_layout
17995
17996 \begin_layout Subsection
17997 Schriftstile
17998 \begin_inset CommandInset label
17999 LatexCommand label
18000 name "sub:Schriftstile"
18001
18002 \end_inset
18003
18004
18005 \begin_inset Index idx
18006 status collapsed
18007
18008 \begin_layout Plain Layout
18009 Schriften ! Schriftstile
18010 \end_layout
18011
18012 \end_inset
18013
18014
18015 \end_layout
18016
18017 \begin_layout Standard
18018 Lateinische Buchstaben in einer Formel können in folgenden Schriftstilen
18019  gesetzt werden:
18020 \begin_inset VSpace -2mm
18021 \end_inset
18022
18023
18024 \end_layout
18025
18026 \begin_layout Standard
18027 \align center
18028 \begin_inset Tabular
18029 <lyxtabular version="3" rows="7" columns="3">
18030 <features tabularvalignment="middle">
18031 <column alignment="center" valignment="top" width="0">
18032 <column alignment="center" valignment="top" width="0">
18033 <column alignment="center" valignment="top" width="0">
18034 <row>
18035 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
18036 \begin_inset Text
18037
18038 \begin_layout Plain Layout
18039 Befehl
18040 \end_layout
18041
18042 \end_inset
18043 </cell>
18044 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
18045 \begin_inset Text
18046
18047 \begin_layout Plain Layout
18048 Ergebnis
18049 \end_layout
18050
18051 \end_inset
18052 </cell>
18053 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
18054 \begin_inset Text
18055
18056 \begin_layout Plain Layout
18057 Tastenkürzel
18058 \end_layout
18059
18060 \end_inset
18061 </cell>
18062 </row>
18063 <row>
18064 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18065 \begin_inset Text
18066
18067 \begin_layout Plain Layout
18068
18069 \backslash
18070 mathbb
18071 \series bold
18072
18073 \begin_inset ERT
18074 status collapsed
18075
18076 \begin_layout Plain Layout
18077
18078
18079 \backslash
18080 leer 
18081 \end_layout
18082
18083 \end_inset
18084
18085
18086 \series default
18087 ABC
18088 \end_layout
18089
18090 \end_inset
18091 </cell>
18092 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18093 \begin_inset Text
18094
18095 \begin_layout Plain Layout
18096 \begin_inset Formula $\mathbb{ABC}$
18097 \end_inset
18098
18099
18100 \end_layout
18101
18102 \end_inset
18103 </cell>
18104 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
18105 \begin_inset Text
18106
18107 \begin_layout Plain Layout
18108 Alt+Z K
18109 \end_layout
18110
18111 \end_inset
18112 </cell>
18113 </row>
18114 <row>
18115 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18116 \begin_inset Text
18117
18118 \begin_layout Plain Layout
18119
18120 \backslash
18121 mathbf
18122 \series bold
18123
18124 \begin_inset ERT
18125 status collapsed
18126
18127 \begin_layout Plain Layout
18128
18129
18130 \backslash
18131 leer 
18132 \end_layout
18133
18134 \end_inset
18135
18136
18137 \series default
18138 AbC
18139 \end_layout
18140
18141 \end_inset
18142 </cell>
18143 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18144 \begin_inset Text
18145
18146 \begin_layout Plain Layout
18147 \begin_inset Formula $\mathbf{AbC}$
18148 \end_inset
18149
18150
18151 \end_layout
18152
18153 \end_inset
18154 </cell>
18155 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
18156 \begin_inset Text
18157
18158 \begin_layout Plain Layout
18159 Strg+B
18160 \end_layout
18161
18162 \end_inset
18163 </cell>
18164 </row>
18165 <row>
18166 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18167 \begin_inset Text
18168
18169 \begin_layout Plain Layout
18170
18171 \backslash
18172 boldsymbol
18173 \series bold
18174
18175 \begin_inset ERT
18176 status collapsed
18177
18178 \begin_layout Plain Layout
18179
18180
18181 \backslash
18182 leer 
18183 \end_layout
18184
18185 \end_inset
18186
18187
18188 \series default
18189 AbC
18190 \end_layout
18191
18192 \end_inset
18193 </cell>
18194 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18195 \begin_inset Text
18196
18197 \begin_layout Plain Layout
18198 \begin_inset Formula $\boldsymbol{AbC}$
18199 \end_inset
18200
18201
18202 \end_layout
18203
18204 \end_inset
18205 </cell>
18206 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
18207 \begin_inset Text
18208
18209 \begin_layout Plain Layout
18210 Alt+Z F oder Strg+Alt+B
18211 \end_layout
18212
18213 \end_inset
18214 </cell>
18215 </row>
18216 <row>
18217 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18218 \begin_inset Text
18219
18220 \begin_layout Plain Layout
18221
18222 \backslash
18223 mathcal
18224 \series bold
18225
18226 \begin_inset ERT
18227 status collapsed
18228
18229 \begin_layout Plain Layout
18230
18231
18232 \backslash
18233 leer 
18234 \end_layout
18235
18236 \end_inset
18237
18238
18239 \series default
18240 ABC
18241 \end_layout
18242
18243 \end_inset
18244 </cell>
18245 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18246 \begin_inset Text
18247
18248 \begin_layout Plain Layout
18249 \begin_inset Formula $\mathcal{ABC}$
18250 \end_inset
18251
18252
18253 \end_layout
18254
18255 \end_inset
18256 </cell>
18257 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
18258 \begin_inset Text
18259
18260 \begin_layout Plain Layout
18261 Alt+Z H
18262 \end_layout
18263
18264 \end_inset
18265 </cell>
18266 </row>
18267 <row>
18268 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18269 \begin_inset Text
18270
18271 \begin_layout Plain Layout
18272
18273 \backslash
18274 mathfrak
18275 \series bold
18276
18277 \begin_inset ERT
18278 status collapsed
18279
18280 \begin_layout Plain Layout
18281
18282
18283 \backslash
18284 leer 
18285 \end_layout
18286
18287 \end_inset
18288
18289
18290 \series default
18291 AbC
18292 \end_layout
18293
18294 \end_inset
18295 </cell>
18296 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18297 \begin_inset Text
18298
18299 \begin_layout Plain Layout
18300 \begin_inset Formula $\mathfrak{AbC}$
18301 \end_inset
18302
18303
18304 \end_layout
18305
18306 \end_inset
18307 </cell>
18308 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
18309 \begin_inset Text
18310
18311 \begin_layout Plain Layout
18312 -
18313 \end_layout
18314
18315 \end_inset
18316 </cell>
18317 </row>
18318 <row>
18319 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
18320 \begin_inset Text
18321
18322 \begin_layout Plain Layout
18323
18324 \backslash
18325 mathscr
18326 \series bold
18327
18328 \begin_inset ERT
18329 status collapsed
18330
18331 \begin_layout Plain Layout
18332
18333
18334 \backslash
18335 leer 
18336 \end_layout
18337
18338 \end_inset
18339
18340
18341 \series default
18342 AbC
18343 \end_layout
18344
18345 \end_inset
18346 </cell>
18347 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
18348 \begin_inset Text
18349
18350 \begin_layout Plain Layout
18351 \begin_inset Formula $\mathscr{AbC}$
18352 \end_inset
18353
18354
18355 \end_layout
18356
18357 \end_inset
18358 </cell>
18359 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
18360 \begin_inset Text
18361
18362 \begin_layout Plain Layout
18363 -
18364 \end_layout
18365
18366 \end_inset
18367 </cell>
18368 </row>
18369 </lyxtabular>
18370
18371 \end_inset
18372
18373
18374 \end_layout
18375
18376 \begin_layout Standard
18377 \align center
18378 \begin_inset Tabular
18379 <lyxtabular version="3" rows="5" columns="3">
18380 <features tabularvalignment="middle">
18381 <column alignment="center" valignment="top" width="0">
18382 <column alignment="center" valignment="top" width="0">
18383 <column alignment="center" valignment="top" width="0">
18384 <row>
18385 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
18386 \begin_inset Text
18387
18388 \begin_layout Plain Layout
18389 Befehl
18390 \end_layout
18391
18392 \end_inset
18393 </cell>
18394 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
18395 \begin_inset Text
18396
18397 \begin_layout Plain Layout
18398 Ergebnis
18399 \end_layout
18400
18401 \end_inset
18402 </cell>
18403 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
18404 \begin_inset Text
18405
18406 \begin_layout Plain Layout
18407 Tastenkürzel
18408 \end_layout
18409
18410 \end_inset
18411 </cell>
18412 </row>
18413 <row>
18414 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18415 \begin_inset Text
18416
18417 \begin_layout Plain Layout
18418
18419 \backslash
18420 mathit
18421 \series bold
18422
18423 \begin_inset ERT
18424 status collapsed
18425
18426 \begin_layout Plain Layout
18427
18428
18429 \backslash
18430 leer 
18431 \end_layout
18432
18433 \end_inset
18434
18435
18436 \series default
18437 AbC
18438 \end_layout
18439
18440 \end_inset
18441 </cell>
18442 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18443 \begin_inset Text
18444
18445 \begin_layout Plain Layout
18446 \begin_inset Formula $\mathit{AbC}$
18447 \end_inset
18448
18449
18450 \end_layout
18451
18452 \end_inset
18453 </cell>
18454 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
18455 \begin_inset Text
18456
18457 \begin_layout Plain Layout
18458 -
18459 \end_layout
18460
18461 \end_inset
18462 </cell>
18463 </row>
18464 <row>
18465 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18466 \begin_inset Text
18467
18468 \begin_layout Plain Layout
18469
18470 \backslash
18471 mathrm
18472 \series bold
18473
18474 \begin_inset ERT
18475 status collapsed
18476
18477 \begin_layout Plain Layout
18478
18479
18480 \backslash
18481 leer 
18482 \end_layout
18483
18484 \end_inset
18485
18486
18487 \series default
18488 AbC
18489 \end_layout
18490
18491 \end_inset
18492 </cell>
18493 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18494 \begin_inset Text
18495
18496 \begin_layout Plain Layout
18497 \begin_inset Formula $\mathrm{AbC}$
18498 \end_inset
18499
18500
18501 \end_layout
18502
18503 \end_inset
18504 </cell>
18505 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
18506 \begin_inset Text
18507
18508 \begin_layout Plain Layout
18509 Alt+Z R
18510 \end_layout
18511
18512 \end_inset
18513 </cell>
18514 </row>
18515 <row>
18516 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18517 \begin_inset Text
18518
18519 \begin_layout Plain Layout
18520
18521 \backslash
18522 mathsf
18523 \series bold
18524
18525 \begin_inset ERT
18526 status collapsed
18527
18528 \begin_layout Plain Layout
18529
18530
18531 \backslash
18532 leer 
18533 \end_layout
18534
18535 \end_inset
18536
18537
18538 \series default
18539 AbC
18540 \end_layout
18541
18542 \end_inset
18543 </cell>
18544 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18545 \begin_inset Text
18546
18547 \begin_layout Plain Layout
18548 \begin_inset Formula $\mathsf{AbC}$
18549 \end_inset
18550
18551
18552 \end_layout
18553
18554 \end_inset
18555 </cell>
18556 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
18557 \begin_inset Text
18558
18559 \begin_layout Plain Layout
18560 Alt+Z S
18561 \end_layout
18562
18563 \end_inset
18564 </cell>
18565 </row>
18566 <row>
18567 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
18568 \begin_inset Text
18569
18570 \begin_layout Plain Layout
18571
18572 \backslash
18573 mathtt
18574 \series bold
18575
18576 \begin_inset ERT
18577 status collapsed
18578
18579 \begin_layout Plain Layout
18580
18581
18582 \backslash
18583 leer 
18584 \end_layout
18585
18586 \end_inset
18587
18588
18589 \series default
18590 AbC
18591 \end_layout
18592
18593 \end_inset
18594 </cell>
18595 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
18596 \begin_inset Text
18597
18598 \begin_layout Plain Layout
18599 \begin_inset Formula $\mathtt{AbC}$
18600 \end_inset
18601
18602
18603 \end_layout
18604
18605 \end_inset
18606 </cell>
18607 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
18608 \begin_inset Text
18609
18610 \begin_layout Plain Layout
18611 Alt+Z C
18612 \end_layout
18613
18614 \end_inset
18615 </cell>
18616 </row>
18617 </lyxtabular>
18618
18619 \end_inset
18620
18621
18622 \end_layout
18623
18624 \begin_layout Standard
18625 \begin_inset Note Greyedout
18626 status open
18627
18628 \begin_layout Plain Layout
18629
18630 \series bold
18631 Achtung:
18632 \series default
18633  Die Stile 
18634 \series bold
18635
18636 \backslash
18637 mathbb
18638 \series default
18639  und 
18640 \series bold
18641
18642 \backslash
18643 mathcal
18644 \series default
18645  können nur für Großbuchstaben verwendet werden.
18646 \end_layout
18647
18648 \end_inset
18649
18650
18651 \end_layout
18652
18653 \begin_layout Standard
18654 Voreingestellt ist der Stil 
18655 \series bold
18656
18657 \backslash
18658 mathnormal
18659 \series default
18660 .
18661 \end_layout
18662
18663 \begin_layout Standard
18664 Die Stilbefehle wirken auch auf Buchstaben in mathematischen Konstruktionen:
18665 \begin_inset Formula \[
18666 \mathfrak{A=\frac{b}{C}}\]
18667
18668 \end_inset
18669
18670
18671 \end_layout
18672
18673 \begin_layout Standard
18674 Zeichen im mathematischen Textmodus erscheinen nicht in einem der Matheschriftst
18675 ile, sondern in dem Textschriftstil 
18676 \series bold
18677
18678 \backslash
18679 textrm
18680 \series default
18681 .
18682  Dass deren Stil nicht über den Textstil Dialog geändert werden kann ist
18683  ein Fehler in LyX.
18684 \begin_inset Foot
18685 status collapsed
18686
18687 \begin_layout Plain Layout
18688 \begin_inset CommandInset href
18689 LatexCommand href
18690 name "LyX-Fehler #4629"
18691 target "http://www.lyx.org/trac/ticket/4629"
18692
18693 \end_inset
18694
18695
18696 \end_layout
18697
18698 \end_inset
18699
18700
18701 \end_layout
18702
18703 \begin_layout Standard
18704 Anstelle der Stilbefehle kann man auch den Dialog 
18705 \family sans
18706 Bearbeiten\SpecialChar \menuseparator
18707 Mathe\SpecialChar \menuseparator
18708 Text-Stil
18709 \family default
18710  oder den Mathe-Werkzeugleistenknopf 
18711 \begin_inset Graphics
18712         filename ../../images/math/font.png
18713         scale 85
18714
18715 \end_inset
18716
18717  verwenden.
18718 \end_layout
18719
18720 \begin_layout Subsection
18721 Fett gedruckte Formeln
18722 \begin_inset CommandInset label
18723 LatexCommand label
18724 name "sub:Fett-gedruckte-Formeln"
18725
18726 \end_inset
18727
18728
18729 \begin_inset Index idx
18730 status collapsed
18731
18732 \begin_layout Plain Layout
18733 Formel ! fett gedruckte
18734 \end_layout
18735
18736 \end_inset
18737
18738
18739 \end_layout
18740
18741 \begin_layout Standard
18742 Möchte man komplette Formeln fett setzen, kann man nicht den im vorigen
18743  Kapitel angegebenen Befehl 
18744 \series bold
18745
18746 \backslash
18747 mathbf
18748 \series default
18749  verwenden, denn dieser wirkt nicht auf kleine griechische Buchstaben.
18750  Außerdem setzt er lateinische Buchstaben immer aufrecht, was man an folgender
18751  Formel gut erkennt:
18752 \end_layout
18753
18754 \begin_layout Standard
18755 \begin_inset Formula \[
18756 \mathbf{\int_{n}^{2}f(\theta)=\Gamma}\qquad\textrm{Formel mit \textbackslash mathbf}\]
18757
18758 \end_inset
18759
18760
18761 \end_layout
18762
18763 \begin_layout Standard
18764 Um die Formel korrekt darzustellen, verwendet man den Befehl 
18765 \series bold
18766
18767 \backslash
18768 boldsymbol
18769 \series default
18770 :
18771 \begin_inset Formula \[
18772 \boldsymbol{\int_{n}^{2}f(\theta)=\Gamma\qquad\textrm{Formel mit \textbackslash boldsymbol}}\]
18773
18774 \end_inset
18775
18776 Es gibt auch die Möglichkeit die Formel in eine 
18777 \series bold
18778 boldmath-Umgebung
18779 \series default
18780  zu setzen.
18781  Diese Umgebung wird erzeugt, indem man im TeX-Modus den Befehl 
18782 \series bold
18783
18784 \backslash
18785 boldmath
18786 \series default
18787
18788 \begin_inset Index idx
18789 status collapsed
18790
18791 \begin_layout Plain Layout
18792 Befehle ! B ! 
18793 \backslash
18794 boldmath
18795 \end_layout
18796
18797 \end_inset
18798
18799  eingibt.
18800  Um die Umgebung wieder zu beenden, gibt man im TeX-Modus den Befehl 
18801 \series bold
18802
18803 \backslash
18804 unboldmath
18805 \series default
18806
18807 \begin_inset Index idx
18808 status collapsed
18809
18810 \begin_layout Plain Layout
18811 Befehle ! U ! 
18812 \backslash
18813 unboldmath
18814 \end_layout
18815
18816 \end_inset
18817
18818  ein.
18819 \begin_inset ERT
18820 status collapsed
18821
18822 \begin_layout Plain Layout
18823
18824
18825 \backslash
18826 boldmath 
18827 \end_layout
18828
18829 \end_inset
18830
18831
18832 \begin_inset Formula \[
18833 \int_{n}^{2}f(\theta)=\Gamma\qquad\textrm{Formel in boldmath-Umgebung}\]
18834
18835 \end_inset
18836
18837
18838 \begin_inset ERT
18839 status collapsed
18840
18841 \begin_layout Plain Layout
18842
18843
18844 \backslash
18845 unboldmath 
18846 \end_layout
18847
18848 \end_inset
18849
18850
18851 \end_layout
18852
18853 \begin_layout Subsection
18854 Farbige Formeln
18855 \begin_inset Index idx
18856 status collapsed
18857
18858 \begin_layout Plain Layout
18859 Formel ! farbige
18860 \end_layout
18861
18862 \end_inset
18863
18864
18865 \end_layout
18866
18867 \begin_layout Standard
18868 Formeln können wie normaler Text gefärbt werden: Markieren Sie eine Formel
18869  oder Formelteile und verwenden dann den 
18870 \family sans
18871 Textstil
18872 \family default
18873  Dialog.
18874  Hier ist eine Formel in Magenta:
18875 \begin_inset Formula \[
18876 {\color{magenta}\int A\,\mathrm{d}x=\frac{\sqrt[5]{B}}{\ln\left(\frac{1}{3}\right)}}\]
18877
18878 \end_inset
18879
18880
18881 \end_layout
18882
18883 \begin_layout Standard
18884 Man kann auch eigene Farben definieren, wie in 
18885 \begin_inset CommandInset ref
18886 LatexCommand ref
18887 reference "sub:Farbige-Boxen"
18888
18889 \end_inset
18890
18891  erklärt ist.
18892  Diese können dann mit dem TeX-Code Befehl 
18893 \series bold
18894
18895 \backslash
18896 textcolor
18897 \series default
18898
18899 \begin_inset Index idx
18900 status collapsed
18901
18902 \begin_layout Plain Layout
18903 Befehle! T ! 
18904 \backslash
18905 textcolor
18906 \end_layout
18907
18908 \end_inset
18909
18910  verwendet werden, dass folgendes Schema besitzt:
18911 \end_layout
18912
18913 \begin_layout Standard
18914
18915 \series bold
18916
18917 \backslash
18918 textcolor{Farbe}{Zeichen oder Formel}
18919 \end_layout
18920
18921 \begin_layout Standard
18922 Das folgende Beispiel wurde komplett dunkelgrün und teilweise rot eingefärbt:
18923 \end_layout
18924
18925 \begin_layout Standard
18926 \begin_inset ERT
18927 status collapsed
18928
18929 \begin_layout Plain Layout
18930
18931
18932 \backslash
18933 textcolor{dunkelgruen}{
18934 \end_layout
18935
18936 \end_inset
18937
18938
18939 \begin_inset Formula \[
18940 \int A\,\mathrm{d}x=\frac{{\color{red}\sqrt[5]{B}}}{\ln\left(\frac{1}{3}\right)}\]
18941
18942 \end_inset
18943
18944
18945 \begin_inset ERT
18946 status collapsed
18947
18948 \begin_layout Plain Layout
18949
18950 }
18951 \end_layout
18952
18953 \end_inset
18954
18955
18956 \end_layout
18957
18958 \begin_layout Standard
18959 Aufgrund eines Fehlers in LyX können nur komplette Formeln mit selbst definierte
18960 n Farben gefärbt werden.
18961 \begin_inset Foot
18962 status collapsed
18963
18964 \begin_layout Plain Layout
18965 \begin_inset CommandInset href
18966 LatexCommand href
18967 name "LyX-bug #5269"
18968 target "http://www.lyx.org/trac/ticket/5269"
18969
18970 \end_inset
18971
18972
18973 \end_layout
18974
18975 \end_inset
18976
18977
18978 \end_layout
18979
18980 \begin_layout Subsection
18981 Schriftgrößen
18982 \begin_inset CommandInset label
18983 LatexCommand label
18984 name "sub:Schriftgrößen"
18985
18986 \end_inset
18987
18988
18989 \begin_inset Index idx
18990 status collapsed
18991
18992 \begin_layout Plain Layout
18993 Schriften ! Schriftgrößen
18994 \end_layout
18995
18996 \end_inset
18997
18998
18999 \end_layout
19000
19001 \begin_layout Standard
19002 Für Zeichen in einer Formel gibt es, analog zu Textzeichen, folgende Größenbefeh
19003 le:
19004 \end_layout
19005
19006 \begin_layout Standard
19007
19008 \series bold
19009
19010 \backslash
19011 Huge
19012 \series default
19013
19014 \series bold
19015
19016 \backslash
19017 huge
19018 \series default
19019
19020 \series bold
19021
19022 \backslash
19023 LARGE
19024 \series default
19025
19026 \series bold
19027
19028 \backslash
19029 Large
19030 \series default
19031
19032 \series bold
19033
19034 \backslash
19035 large
19036 \series default
19037
19038 \series bold
19039
19040 \backslash
19041 normalsize
19042 \series default
19043
19044 \series bold
19045
19046 \backslash
19047 small
19048 \series default
19049
19050 \series bold
19051
19052 \backslash
19053 footnotesize
19054 \series default
19055 ,
19056 \begin_inset Newline linebreak
19057 \end_inset
19058
19059
19060 \series bold
19061
19062 \backslash
19063 scriptsize
19064 \series default
19065  und 
19066 \series bold
19067
19068 \backslash
19069 tiny
19070 \end_layout
19071
19072 \begin_layout Standard
19073 Welche Größe die Befehle produzieren, hängt von der Dokumentschriftgröße
19074  ab, die dem Befehl 
19075 \series bold
19076
19077 \backslash
19078 normalsize
19079 \series default
19080  entspricht.
19081  Die anderen Befehle produzieren kleinere oder größere Schriften als 
19082 \series bold
19083
19084 \backslash
19085 normalsize
19086 \series default
19087 .
19088  Die Schriftgröße kann jedoch einen bestimmten Wert nicht übertreffen.
19089  Beträgt z.
19090 \begin_inset space \thinspace{}
19091 \end_inset
19092
19093 B.
19094  die Dokumentschriftgröße 12
19095 \begin_inset space \thinspace{}
19096 \end_inset
19097
19098 pt, produziert der Befehl 
19099 \series bold
19100
19101 \backslash
19102 Huge
19103 \series default
19104  dasselbe wie 
19105 \series bold
19106
19107 \backslash
19108 huge
19109 \series default
19110 .
19111  
19112 \end_layout
19113
19114 \begin_layout Standard
19115 Ein Größenbefehl wird im TeX-Modus vor der Formel eingegeben und legt die
19116  Größe aller nachfolgenden Formel- und Textzeichen fest.
19117  Um wieder zur Ausgangsgröße zurückzukehren, gibt man nach der Formel im
19118  TeX-Modus den Befehl 
19119 \series bold
19120
19121 \backslash
19122 normalsize
19123 \series default
19124  ein.
19125 \end_layout
19126
19127 \begin_layout Standard
19128 \begin_inset Newpage newpage
19129 \end_inset
19130
19131
19132 \end_layout
19133
19134 \begin_layout Standard
19135 Innerhalb einer Formel kann die Größe mit den folgenden Größenbefehlen geändert
19136  werden:
19137 \end_layout
19138
19139 \begin_layout Standard
19140 \noindent
19141 \align center
19142 \begin_inset Tabular
19143 <lyxtabular version="3" rows="5" columns="2">
19144 <features tabularvalignment="middle">
19145 <column alignment="center" valignment="top" width="0">
19146 <column alignment="center" valignment="top" width="0">
19147 <row>
19148 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
19149 \begin_inset Text
19150
19151 \begin_layout Plain Layout
19152 Befehl
19153 \end_layout
19154
19155 \end_inset
19156 </cell>
19157 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
19158 \begin_inset Text
19159
19160 \begin_layout Plain Layout
19161 Ergebnis
19162 \begin_inset Note Note
19163 status collapsed
19164
19165 \begin_layout Plain Layout
19166
19167 \series bold
19168
19169 \backslash
19170 raisebox
19171 \series default
19172  dient nur als Abstandhalter.
19173 \end_layout
19174
19175 \end_inset
19176
19177
19178 \end_layout
19179
19180 \end_inset
19181 </cell>
19182 </row>
19183 <row>
19184 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19185 \begin_inset Text
19186
19187 \begin_layout Plain Layout
19188
19189 \backslash
19190 displaystyle
19191 \begin_inset Index idx
19192 status collapsed
19193
19194 \begin_layout Plain Layout
19195 Befehle ! D ! 
19196 \backslash
19197 displaystyle
19198 \end_layout
19199
19200 \end_inset
19201
19202
19203 \end_layout
19204
19205 \end_inset
19206 </cell>
19207 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19208 \begin_inset Text
19209
19210 \begin_layout Plain Layout
19211 \begin_inset Formula $\raisebox{6.5mm}{}{\displaystyle E_{\mathrm{pot_{1}}}=\frac{K}{l+\frac{m}{n_{2}}}}\raisebox{-5.5mm}{}$
19212 \end_inset
19213
19214
19215 \end_layout
19216
19217 \end_inset
19218 </cell>
19219 </row>
19220 <row>
19221 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19222 \begin_inset Text
19223
19224 \begin_layout Plain Layout
19225
19226 \backslash
19227 textstyle
19228 \end_layout
19229
19230 \end_inset
19231 </cell>
19232 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19233 \begin_inset Text
19234
19235 \begin_layout Plain Layout
19236 \begin_inset Formula $\raisebox{4.5mm}{}{\textstyle E_{\mathrm{pot_{1}}}=\frac{K}{l+\frac{m}{n_{2}}}}\raisebox{-4mm}{}$
19237 \end_inset
19238
19239
19240 \end_layout
19241
19242 \end_inset
19243 </cell>
19244 </row>
19245 <row>
19246 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19247 \begin_inset Text
19248
19249 \begin_layout Plain Layout
19250
19251 \backslash
19252 scriptstyle
19253 \end_layout
19254
19255 \end_inset
19256 </cell>
19257 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19258 \begin_inset Text
19259
19260 \begin_layout Plain Layout
19261 \begin_inset Formula $\raisebox{4.5mm}{}{\scriptstyle E_{\mathrm{pot_{1}}}=\frac{K}{l+\frac{m}{n_{2}}}}\raisebox{-3.5mm}{}$
19262 \end_inset
19263
19264
19265 \end_layout
19266
19267 \end_inset
19268 </cell>
19269 </row>
19270 <row>
19271 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
19272 \begin_inset Text
19273
19274 \begin_layout Plain Layout
19275
19276 \backslash
19277 scriptscriptstyle
19278 \end_layout
19279
19280 \end_inset
19281 </cell>
19282 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
19283 \begin_inset Text
19284
19285 \begin_layout Plain Layout
19286 \begin_inset Formula $\raisebox{4.5mm}{}{\scriptscriptstyle E_{\mathrm{pot_{1}}}=\frac{K}{l+\frac{m}{n_{2}}}}\raisebox{-3.5mm}{}$
19287 \end_inset
19288
19289
19290 \end_layout
19291
19292 \end_inset
19293 </cell>
19294 </row>
19295 </lyxtabular>
19296
19297 \end_inset
19298
19299
19300 \end_layout
19301
19302 \begin_layout Standard
19303 Nachdem diese Befehle eingegeben wurden, erscheint eine blaues Kästchen
19304  in das die Formelteile eingegeben werden.
19305 \end_layout
19306
19307 \begin_layout Standard
19308 Es gibt eine weitere Möglichkeit die Schriftgröße zu ändern, die allerdings
19309  nur für Symbole oder Buchstaben im mathematischen Text funktioniert.
19310  Dazu wird einer der obigen Textgrößenbefehle im mathematischen Textmodus
19311  eingegeben.
19312  Alle diesem Befehl folgenden Zeichen bis zum Ende des mathematischen Textes
19313  oder bis zu einem anderen Größenbefehl haben dann die angegebene Größe.
19314  Dazu zwei Beispiele:
19315 \begin_inset VSpace -2mm
19316 \end_inset
19317
19318
19319 \end_layout
19320
19321 \begin_layout Standard
19322 \begin_inset ERT
19323 status collapsed
19324
19325 \begin_layout Plain Layout
19326
19327
19328 \backslash
19329 huge 
19330 \end_layout
19331
19332 \end_inset
19333
19334
19335 \begin_inset Formula \[
19336 A=\frac{B}{c}\cdot\maltese\]
19337
19338 \end_inset
19339
19340
19341 \begin_inset Formula \[
19342 \maltese A\textrm{\Large\maltese\textit{A}}\textrm{\tiny\maltese\textit{A}}\]
19343
19344 \end_inset
19345
19346
19347 \begin_inset ERT
19348 status collapsed
19349
19350 \begin_layout Plain Layout
19351
19352
19353 \backslash
19354 normalsize 
19355 \end_layout
19356
19357 \end_inset
19358
19359
19360 \end_layout
19361
19362 \begin_layout Standard
19363 \begin_inset VSpace medskip
19364 \end_inset
19365
19366 Vor beiden Formeln wurde der Befehl 
19367 \series bold
19368
19369 \backslash
19370 huge
19371 \series default
19372  eingegeben.
19373  Der Befehl für die zweite Formel lautet:
19374 \begin_inset Newline newline
19375 \end_inset
19376
19377
19378 \series bold
19379
19380 \backslash
19381 maltese
19382 \begin_inset ERT
19383 status collapsed
19384
19385 \begin_layout Plain Layout
19386
19387
19388 \backslash
19389 leer 
19390 \end_layout
19391
19392 \end_inset
19393
19394 A M-m m 
19395 \backslash
19396 Large
19397 \begin_inset ERT
19398 status collapsed
19399
19400 \begin_layout Plain Layout
19401
19402
19403 \backslash
19404 leer 
19405 \end_layout
19406
19407 \end_inset
19408
19409
19410 \backslash
19411 maltese
19412 \begin_inset ERT
19413 status collapsed
19414
19415 \begin_layout Plain Layout
19416
19417
19418 \backslash
19419 leer 
19420 \end_layout
19421
19422 \end_inset
19423
19424
19425 \backslash
19426 textit
19427 \begin_inset ERT
19428 status collapsed
19429
19430 \begin_layout Plain Layout
19431
19432
19433 \backslash
19434 leer 
19435 \end_layout
19436
19437 \end_inset
19438
19439 A
19440 \begin_inset Formula $\to$
19441 \end_inset
19442
19443
19444 \begin_inset Formula $\to$
19445 \end_inset
19446
19447
19448 \begin_inset Newline newline
19449 \end_inset
19450
19451
19452 \begin_inset space \hspace*{}
19453 \length 1cm
19454 \end_inset
19455
19456 M-m
19457 \series default
19458  
19459 \series bold
19460
19461 \backslash
19462 tiny
19463 \begin_inset ERT
19464 status collapsed
19465
19466 \begin_layout Plain Layout
19467
19468
19469 \backslash
19470 leer 
19471 \end_layout
19472
19473 \end_inset
19474
19475
19476 \backslash
19477 maltese
19478 \begin_inset ERT
19479 status collapsed
19480
19481 \begin_layout Plain Layout
19482
19483
19484 \backslash
19485 leer 
19486 \end_layout
19487
19488 \end_inset
19489
19490
19491 \backslash
19492 textit
19493 \begin_inset ERT
19494 status collapsed
19495
19496 \begin_layout Plain Layout
19497
19498
19499 \backslash
19500 leer 
19501 \end_layout
19502
19503 \end_inset
19504
19505 A
19506 \end_layout
19507
19508 \begin_layout Standard
19509 Kann ein Symbol nicht in verschiedenen Größen dargestellt werden, wird es
19510  immer in der Standardgröße dargestellt.
19511 \end_layout
19512
19513 \begin_layout Standard
19514 \begin_inset Newpage newpage
19515 \end_inset
19516
19517
19518 \end_layout
19519
19520 \begin_layout Section
19521 Griechische Buchstaben
19522 \begin_inset Index idx
19523 status collapsed
19524
19525 \begin_layout Plain Layout
19526 griechische Buchstaben
19527 \end_layout
19528
19529 \end_inset
19530
19531
19532 \end_layout
19533
19534 \begin_layout Standard
19535 Alle griechischen Buchstaben können auch über den Mathe-Werkzeugleistenknopf
19536  
19537 \begin_inset Graphics
19538         filename ../../images/math/alpha.png
19539         scale 85
19540
19541 \end_inset
19542
19543  eingefügt werden.
19544 \end_layout
19545
19546 \begin_layout Subsection
19547 Kleine Buchstaben
19548 \begin_inset Index idx
19549 status collapsed
19550
19551 \begin_layout Plain Layout
19552 griechische Buchstaben ! kleine
19553 \end_layout
19554
19555 \end_inset
19556
19557
19558 \end_layout
19559
19560 \begin_layout Standard
19561 \begin_inset space \hfill{}
19562 \end_inset
19563
19564
19565 \begin_inset Tabular
19566 <lyxtabular version="3" rows="11" columns="2">
19567 <features tabularvalignment="middle">
19568 <column alignment="center" valignment="top" width="0pt">
19569 <column alignment="center" valignment="top" width="0pt">
19570 <row>
19571 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
19572 \begin_inset Text
19573
19574 \begin_layout Plain Layout
19575 Befehl
19576 \end_layout
19577
19578 \end_inset
19579 </cell>
19580 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
19581 \begin_inset Text
19582
19583 \begin_layout Plain Layout
19584 Ergebnis
19585 \end_layout
19586
19587 \end_inset
19588 </cell>
19589 </row>
19590 <row>
19591 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19592 \begin_inset Text
19593
19594 \begin_layout Plain Layout
19595
19596 \backslash
19597 alpha
19598 \end_layout
19599
19600 \end_inset
19601 </cell>
19602 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19603 \begin_inset Text
19604
19605 \begin_layout Plain Layout
19606 \begin_inset Formula $\alpha$
19607 \end_inset
19608
19609
19610 \end_layout
19611
19612 \end_inset
19613 </cell>
19614 </row>
19615 <row>
19616 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19617 \begin_inset Text
19618
19619 \begin_layout Plain Layout
19620
19621 \backslash
19622 beta
19623 \end_layout
19624
19625 \end_inset
19626 </cell>
19627 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19628 \begin_inset Text
19629
19630 \begin_layout Plain Layout
19631 \begin_inset Formula $\beta$
19632 \end_inset
19633
19634
19635 \end_layout
19636
19637 \end_inset
19638 </cell>
19639 </row>
19640 <row>
19641 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19642 \begin_inset Text
19643
19644 \begin_layout Plain Layout
19645
19646 \backslash
19647 gamma
19648 \end_layout
19649
19650 \end_inset
19651 </cell>
19652 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19653 \begin_inset Text
19654
19655 \begin_layout Plain Layout
19656 \begin_inset Formula $\gamma$
19657 \end_inset
19658
19659
19660 \end_layout
19661
19662 \end_inset
19663 </cell>
19664 </row>
19665 <row>
19666 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19667 \begin_inset Text
19668
19669 \begin_layout Plain Layout
19670
19671 \backslash
19672 delta
19673 \end_layout
19674
19675 \end_inset
19676 </cell>
19677 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19678 \begin_inset Text
19679
19680 \begin_layout Plain Layout
19681 \begin_inset Formula $\delta$
19682 \end_inset
19683
19684
19685 \end_layout
19686
19687 \end_inset
19688 </cell>
19689 </row>
19690 <row>
19691 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19692 \begin_inset Text
19693
19694 \begin_layout Plain Layout
19695
19696 \backslash
19697 epsilon
19698 \end_layout
19699
19700 \end_inset
19701 </cell>
19702 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19703 \begin_inset Text
19704
19705 \begin_layout Plain Layout
19706 \begin_inset Formula $\epsilon$
19707 \end_inset
19708
19709
19710 \end_layout
19711
19712 \end_inset
19713 </cell>
19714 </row>
19715 <row>
19716 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19717 \begin_inset Text
19718
19719 \begin_layout Plain Layout
19720
19721 \backslash
19722 varepsilon
19723 \end_layout
19724
19725 \end_inset
19726 </cell>
19727 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19728 \begin_inset Text
19729
19730 \begin_layout Plain Layout
19731 \begin_inset Formula $\varepsilon$
19732 \end_inset
19733
19734
19735 \end_layout
19736
19737 \end_inset
19738 </cell>
19739 </row>
19740 <row>
19741 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19742 \begin_inset Text
19743
19744 \begin_layout Plain Layout
19745
19746 \backslash
19747 zeta
19748 \end_layout
19749
19750 \end_inset
19751 </cell>
19752 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19753 \begin_inset Text
19754
19755 \begin_layout Plain Layout
19756 \begin_inset Formula $\zeta$
19757 \end_inset
19758
19759
19760 \end_layout
19761
19762 \end_inset
19763 </cell>
19764 </row>
19765 <row>
19766 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19767 \begin_inset Text
19768
19769 \begin_layout Plain Layout
19770
19771 \backslash
19772 eta
19773 \end_layout
19774
19775 \end_inset
19776 </cell>
19777 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19778 \begin_inset Text
19779
19780 \begin_layout Plain Layout
19781 \begin_inset Formula $\eta$
19782 \end_inset
19783
19784
19785 \end_layout
19786
19787 \end_inset
19788 </cell>
19789 </row>
19790 <row>
19791 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19792 \begin_inset Text
19793
19794 \begin_layout Plain Layout
19795
19796 \backslash
19797 theta
19798 \end_layout
19799
19800 \end_inset
19801 </cell>
19802 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19803 \begin_inset Text
19804
19805 \begin_layout Plain Layout
19806 \begin_inset Formula $\theta$
19807 \end_inset
19808
19809
19810 \end_layout
19811
19812 \end_inset
19813 </cell>
19814 </row>
19815 <row>
19816 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
19817 \begin_inset Text
19818
19819 \begin_layout Plain Layout
19820
19821 \backslash
19822 vartheta
19823 \end_layout
19824
19825 \end_inset
19826 </cell>
19827 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
19828 \begin_inset Text
19829
19830 \begin_layout Plain Layout
19831 \begin_inset Formula $\vartheta$
19832 \end_inset
19833
19834
19835 \end_layout
19836
19837 \end_inset
19838 </cell>
19839 </row>
19840 </lyxtabular>
19841
19842 \end_inset
19843
19844
19845 \begin_inset space \hfill{}
19846 \end_inset
19847
19848
19849 \begin_inset Tabular
19850 <lyxtabular version="3" rows="12" columns="2">
19851 <features tabularvalignment="middle">
19852 <column alignment="center" valignment="top" width="0pt">
19853 <column alignment="center" valignment="top" width="0pt">
19854 <row>
19855 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
19856 \begin_inset Text
19857
19858 \begin_layout Plain Layout
19859 Befehl
19860 \end_layout
19861
19862 \end_inset
19863 </cell>
19864 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
19865 \begin_inset Text
19866
19867 \begin_layout Plain Layout
19868 Ergebnis
19869 \end_layout
19870
19871 \end_inset
19872 </cell>
19873 </row>
19874 <row>
19875 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19876 \begin_inset Text
19877
19878 \begin_layout Plain Layout
19879
19880 \backslash
19881 iota
19882 \end_layout
19883
19884 \end_inset
19885 </cell>
19886 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19887 \begin_inset Text
19888
19889 \begin_layout Plain Layout
19890 \begin_inset Formula $\iota$
19891 \end_inset
19892
19893
19894 \end_layout
19895
19896 \end_inset
19897 </cell>
19898 </row>
19899 <row>
19900 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19901 \begin_inset Text
19902
19903 \begin_layout Plain Layout
19904
19905 \backslash
19906 kappa
19907 \end_layout
19908
19909 \end_inset
19910 </cell>
19911 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19912 \begin_inset Text
19913
19914 \begin_layout Plain Layout
19915 \begin_inset Formula $\kappa$
19916 \end_inset
19917
19918
19919 \end_layout
19920
19921 \end_inset
19922 </cell>
19923 </row>
19924 <row>
19925 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19926 \begin_inset Text
19927
19928 \begin_layout Plain Layout
19929
19930 \backslash
19931 varkappa
19932 \end_layout
19933
19934 \end_inset
19935 </cell>
19936 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19937 \begin_inset Text
19938
19939 \begin_layout Plain Layout
19940 \begin_inset Formula $\varkappa$
19941 \end_inset
19942
19943
19944 \end_layout
19945
19946 \end_inset
19947 </cell>
19948 </row>
19949 <row>
19950 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19951 \begin_inset Text
19952
19953 \begin_layout Plain Layout
19954
19955 \backslash
19956 lambda
19957 \end_layout
19958
19959 \end_inset
19960 </cell>
19961 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19962 \begin_inset Text
19963
19964 \begin_layout Plain Layout
19965 \begin_inset Formula $\lambda$
19966 \end_inset
19967
19968
19969 \end_layout
19970
19971 \end_inset
19972 </cell>
19973 </row>
19974 <row>
19975 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19976 \begin_inset Text
19977
19978 \begin_layout Plain Layout
19979
19980 \backslash
19981 mu
19982 \end_layout
19983
19984 \end_inset
19985 </cell>
19986 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19987 \begin_inset Text
19988
19989 \begin_layout Plain Layout
19990 \begin_inset Formula $\mu$
19991 \end_inset
19992
19993
19994 \end_layout
19995
19996 \end_inset
19997 </cell>
19998 </row>
19999 <row>
20000 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20001 \begin_inset Text
20002
20003 \begin_layout Plain Layout
20004
20005 \backslash
20006 nu
20007 \end_layout
20008
20009 \end_inset
20010 </cell>
20011 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20012 \begin_inset Text
20013
20014 \begin_layout Plain Layout
20015 \begin_inset Formula $\nu$
20016 \end_inset
20017
20018
20019 \end_layout
20020
20021 \end_inset
20022 </cell>
20023 </row>
20024 <row>
20025 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20026 \begin_inset Text
20027
20028 \begin_layout Plain Layout
20029
20030 \backslash
20031 xi
20032 \end_layout
20033
20034 \end_inset
20035 </cell>
20036 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20037 \begin_inset Text
20038
20039 \begin_layout Plain Layout
20040 \begin_inset Formula $\xi$
20041 \end_inset
20042
20043
20044 \end_layout
20045
20046 \end_inset
20047 </cell>
20048 </row>
20049 <row>
20050 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20051 \begin_inset Text
20052
20053 \begin_layout Plain Layout
20054 o
20055 \end_layout
20056
20057 \end_inset
20058 </cell>
20059 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20060 \begin_inset Text
20061
20062 \begin_layout Plain Layout
20063 \begin_inset Formula $o$
20064 \end_inset
20065
20066
20067 \end_layout
20068
20069 \end_inset
20070 </cell>
20071 </row>
20072 <row>
20073 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20074 \begin_inset Text
20075
20076 \begin_layout Plain Layout
20077
20078 \backslash
20079 pi
20080 \end_layout
20081
20082 \end_inset
20083 </cell>
20084 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20085 \begin_inset Text
20086
20087 \begin_layout Plain Layout
20088 \begin_inset Formula $\pi$
20089 \end_inset
20090
20091
20092 \end_layout
20093
20094 \end_inset
20095 </cell>
20096 </row>
20097 <row>
20098 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20099 \begin_inset Text
20100
20101 \begin_layout Plain Layout
20102
20103 \backslash
20104 varpi
20105 \end_layout
20106
20107 \end_inset
20108 </cell>
20109 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20110 \begin_inset Text
20111
20112 \begin_layout Plain Layout
20113 \begin_inset Formula $\varpi$
20114 \end_inset
20115
20116
20117 \end_layout
20118
20119 \end_inset
20120 </cell>
20121 </row>
20122 <row>
20123 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
20124 \begin_inset Text
20125
20126 \begin_layout Plain Layout
20127
20128 \backslash
20129 rho
20130 \end_layout
20131
20132 \end_inset
20133 </cell>
20134 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
20135 \begin_inset Text
20136
20137 \begin_layout Plain Layout
20138 \begin_inset Formula $\rho$
20139 \end_inset
20140
20141
20142 \end_layout
20143
20144 \end_inset
20145 </cell>
20146 </row>
20147 </lyxtabular>
20148
20149 \end_inset
20150
20151
20152 \begin_inset space \hfill{}
20153 \end_inset
20154
20155
20156 \begin_inset Tabular
20157 <lyxtabular version="3" rows="11" columns="2">
20158 <features tabularvalignment="middle">
20159 <column alignment="center" valignment="top" width="0pt">
20160 <column alignment="center" valignment="top" width="0pt">
20161 <row>
20162 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
20163 \begin_inset Text
20164
20165 \begin_layout Plain Layout
20166 Befehl
20167 \end_layout
20168
20169 \end_inset
20170 </cell>
20171 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
20172 \begin_inset Text
20173
20174 \begin_layout Plain Layout
20175 Ergebnis
20176 \end_layout
20177
20178 \end_inset
20179 </cell>
20180 </row>
20181 <row>
20182 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20183 \begin_inset Text
20184
20185 \begin_layout Plain Layout
20186
20187 \backslash
20188 varrho
20189 \end_layout
20190
20191 \end_inset
20192 </cell>
20193 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20194 \begin_inset Text
20195
20196 \begin_layout Plain Layout
20197 \begin_inset Formula $\varrho$
20198 \end_inset
20199
20200
20201 \end_layout
20202
20203 \end_inset
20204 </cell>
20205 </row>
20206 <row>
20207 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20208 \begin_inset Text
20209
20210 \begin_layout Plain Layout
20211
20212 \backslash
20213 sigma
20214 \end_layout
20215
20216 \end_inset
20217 </cell>
20218 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20219 \begin_inset Text
20220
20221 \begin_layout Plain Layout
20222 \begin_inset Formula $\sigma$
20223 \end_inset
20224
20225
20226 \end_layout
20227
20228 \end_inset
20229 </cell>
20230 </row>
20231 <row>
20232 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20233 \begin_inset Text
20234
20235 \begin_layout Plain Layout
20236
20237 \backslash
20238 varsigma
20239 \end_layout
20240
20241 \end_inset
20242 </cell>
20243 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20244 \begin_inset Text
20245
20246 \begin_layout Plain Layout
20247 \begin_inset Formula $\varsigma$
20248 \end_inset
20249
20250
20251 \end_layout
20252
20253 \end_inset
20254 </cell>
20255 </row>
20256 <row>
20257 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20258 \begin_inset Text
20259
20260 \begin_layout Plain Layout
20261
20262 \backslash
20263 tau
20264 \end_layout
20265
20266 \end_inset
20267 </cell>
20268 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20269 \begin_inset Text
20270
20271 \begin_layout Plain Layout
20272 \begin_inset Formula $\tau$
20273 \end_inset
20274
20275
20276 \end_layout
20277
20278 \end_inset
20279 </cell>
20280 </row>
20281 <row>
20282 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20283 \begin_inset Text
20284
20285 \begin_layout Plain Layout
20286
20287 \backslash
20288 upsilon
20289 \end_layout
20290
20291 \end_inset
20292 </cell>
20293 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20294 \begin_inset Text
20295
20296 \begin_layout Plain Layout
20297 \begin_inset Formula $\upsilon$
20298 \end_inset
20299
20300
20301 \end_layout
20302
20303 \end_inset
20304 </cell>
20305 </row>
20306 <row>
20307 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20308 \begin_inset Text
20309
20310 \begin_layout Plain Layout
20311
20312 \backslash
20313 phi
20314 \end_layout
20315
20316 \end_inset
20317 </cell>
20318 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20319 \begin_inset Text
20320
20321 \begin_layout Plain Layout
20322 \begin_inset Formula $\phi$
20323 \end_inset
20324
20325
20326 \end_layout
20327
20328 \end_inset
20329 </cell>
20330 </row>
20331 <row>
20332 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20333 \begin_inset Text
20334
20335 \begin_layout Plain Layout
20336
20337 \backslash
20338 varphi
20339 \end_layout
20340
20341 \end_inset
20342 </cell>
20343 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20344 \begin_inset Text
20345
20346 \begin_layout Plain Layout
20347 \begin_inset Formula $\varphi$
20348 \end_inset
20349
20350
20351 \end_layout
20352
20353 \end_inset
20354 </cell>
20355 </row>
20356 <row>
20357 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20358 \begin_inset Text
20359
20360 \begin_layout Plain Layout
20361
20362 \backslash
20363 chi
20364 \end_layout
20365
20366 \end_inset
20367 </cell>
20368 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20369 \begin_inset Text
20370
20371 \begin_layout Plain Layout
20372 \begin_inset Formula $\chi$
20373 \end_inset
20374
20375
20376 \end_layout
20377
20378 \end_inset
20379 </cell>
20380 </row>
20381 <row>
20382 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20383 \begin_inset Text
20384
20385 \begin_layout Plain Layout
20386
20387 \backslash
20388 psi
20389 \end_layout
20390
20391 \end_inset
20392 </cell>
20393 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20394 \begin_inset Text
20395
20396 \begin_layout Plain Layout
20397 \begin_inset Formula $\psi$
20398 \end_inset
20399
20400
20401 \end_layout
20402
20403 \end_inset
20404 </cell>
20405 </row>
20406 <row>
20407 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
20408 \begin_inset Text
20409
20410 \begin_layout Plain Layout
20411
20412 \backslash
20413 omega
20414 \end_layout
20415
20416 \end_inset
20417 </cell>
20418 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
20419 \begin_inset Text
20420
20421 \begin_layout Plain Layout
20422 \begin_inset Formula $\omega$
20423 \end_inset
20424
20425
20426 \end_layout
20427
20428 \end_inset
20429 </cell>
20430 </row>
20431 </lyxtabular>
20432
20433 \end_inset
20434
20435
20436 \begin_inset space \hfill{}
20437 \end_inset
20438
20439
20440 \end_layout
20441
20442 \begin_layout Standard
20443 \begin_inset VSpace medskip
20444 \end_inset
20445
20446 Wie man aufrechte griechische Buchstaben erstellt, ist in 
20447 \begin_inset CommandInset ref
20448 LatexCommand ref
20449 reference "sub:Aufrechte-kleine-griechische"
20450
20451 \end_inset
20452
20453  beschrieben.
20454 \end_layout
20455
20456 \begin_layout Subsection
20457 Große Buchstaben
20458 \begin_inset Index idx
20459 status collapsed
20460
20461 \begin_layout Plain Layout
20462 griechische Buchstaben ! große
20463 \end_layout
20464
20465 \end_inset
20466
20467
20468 \end_layout
20469
20470 \begin_layout Standard
20471 \begin_inset space \hfill{}
20472 \end_inset
20473
20474
20475 \begin_inset Tabular
20476 <lyxtabular version="3" rows="7" columns="2">
20477 <features tabularvalignment="middle">
20478 <column alignment="center" valignment="top" width="0pt">
20479 <column alignment="center" valignment="top" width="0pt">
20480 <row>
20481 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
20482 \begin_inset Text
20483
20484 \begin_layout Plain Layout
20485 Befehl
20486 \end_layout
20487
20488 \end_inset
20489 </cell>
20490 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
20491 \begin_inset Text
20492
20493 \begin_layout Plain Layout
20494 Ergebnis
20495 \end_layout
20496
20497 \end_inset
20498 </cell>
20499 </row>
20500 <row>
20501 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20502 \begin_inset Text
20503
20504 \begin_layout Plain Layout
20505
20506 \backslash
20507 Gamma
20508 \end_layout
20509
20510 \end_inset
20511 </cell>
20512 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20513 \begin_inset Text
20514
20515 \begin_layout Plain Layout
20516 \begin_inset Formula $\Gamma$
20517 \end_inset
20518
20519
20520 \end_layout
20521
20522 \end_inset
20523 </cell>
20524 </row>
20525 <row>
20526 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20527 \begin_inset Text
20528
20529 \begin_layout Plain Layout
20530
20531 \backslash
20532 Delta
20533 \end_layout
20534
20535 \end_inset
20536 </cell>
20537 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20538 \begin_inset Text
20539
20540 \begin_layout Plain Layout
20541 \begin_inset Formula $\Delta$
20542 \end_inset
20543
20544
20545 \end_layout
20546
20547 \end_inset
20548 </cell>
20549 </row>
20550 <row>
20551 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20552 \begin_inset Text
20553
20554 \begin_layout Plain Layout
20555
20556 \backslash
20557 Theta
20558 \end_layout
20559
20560 \end_inset
20561 </cell>
20562 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20563 \begin_inset Text
20564
20565 \begin_layout Plain Layout
20566 \begin_inset Formula $\Theta$
20567 \end_inset
20568
20569
20570 \end_layout
20571
20572 \end_inset
20573 </cell>
20574 </row>
20575 <row>
20576 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20577 \begin_inset Text
20578
20579 \begin_layout Plain Layout
20580
20581 \backslash
20582 Lambda
20583 \end_layout
20584
20585 \end_inset
20586 </cell>
20587 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20588 \begin_inset Text
20589
20590 \begin_layout Plain Layout
20591 \begin_inset Formula $\Lambda$
20592 \end_inset
20593
20594
20595 \end_layout
20596
20597 \end_inset
20598 </cell>
20599 </row>
20600 <row>
20601 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20602 \begin_inset Text
20603
20604 \begin_layout Plain Layout
20605
20606 \backslash
20607 Xi
20608 \end_layout
20609
20610 \end_inset
20611 </cell>
20612 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20613 \begin_inset Text
20614
20615 \begin_layout Plain Layout
20616 \begin_inset Formula $\Xi$
20617 \end_inset
20618
20619
20620 \end_layout
20621
20622 \end_inset
20623 </cell>
20624 </row>
20625 <row>
20626 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
20627 \begin_inset Text
20628
20629 \begin_layout Plain Layout
20630
20631 \backslash
20632 Pi
20633 \end_layout
20634
20635 \end_inset
20636 </cell>
20637 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
20638 \begin_inset Text
20639
20640 \begin_layout Plain Layout
20641 \begin_inset Formula $\Pi$
20642 \end_inset
20643
20644
20645 \end_layout
20646
20647 \end_inset
20648 </cell>
20649 </row>
20650 </lyxtabular>
20651
20652 \end_inset
20653
20654
20655 \begin_inset space \hfill{}
20656 \end_inset
20657
20658
20659 \begin_inset Tabular
20660 <lyxtabular version="3" rows="6" columns="2">
20661 <features tabularvalignment="middle">
20662 <column alignment="center" valignment="top" width="0pt">
20663 <column alignment="center" valignment="top" width="0pt">
20664 <row>
20665 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
20666 \begin_inset Text
20667
20668 \begin_layout Plain Layout
20669 Befehl
20670 \end_layout
20671
20672 \end_inset
20673 </cell>
20674 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
20675 \begin_inset Text
20676
20677 \begin_layout Plain Layout
20678 Ergebnis
20679 \end_layout
20680
20681 \end_inset
20682 </cell>
20683 </row>
20684 <row>
20685 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20686 \begin_inset Text
20687
20688 \begin_layout Plain Layout
20689
20690 \backslash
20691 Sigma
20692 \end_layout
20693
20694 \end_inset
20695 </cell>
20696 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20697 \begin_inset Text
20698
20699 \begin_layout Plain Layout
20700 \begin_inset Formula $\Sigma$
20701 \end_inset
20702
20703
20704 \end_layout
20705
20706 \end_inset
20707 </cell>
20708 </row>
20709 <row>
20710 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20711 \begin_inset Text
20712
20713 \begin_layout Plain Layout
20714
20715 \backslash
20716 Upsilon
20717 \end_layout
20718
20719 \end_inset
20720 </cell>
20721 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20722 \begin_inset Text
20723
20724 \begin_layout Plain Layout
20725 \begin_inset Formula $\Upsilon$
20726 \end_inset
20727
20728
20729 \end_layout
20730
20731 \end_inset
20732 </cell>
20733 </row>
20734 <row>
20735 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20736 \begin_inset Text
20737
20738 \begin_layout Plain Layout
20739
20740 \backslash
20741 Phi
20742 \end_layout
20743
20744 \end_inset
20745 </cell>
20746 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20747 \begin_inset Text
20748
20749 \begin_layout Plain Layout
20750 \begin_inset Formula $\Phi$
20751 \end_inset
20752
20753
20754 \end_layout
20755
20756 \end_inset
20757 </cell>
20758 </row>
20759 <row>
20760 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20761 \begin_inset Text
20762
20763 \begin_layout Plain Layout
20764
20765 \backslash
20766 Psi
20767 \end_layout
20768
20769 \end_inset
20770 </cell>
20771 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20772 \begin_inset Text
20773
20774 \begin_layout Plain Layout
20775 \begin_inset Formula $\Psi$
20776 \end_inset
20777
20778
20779 \end_layout
20780
20781 \end_inset
20782 </cell>
20783 </row>
20784 <row>
20785 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
20786 \begin_inset Text
20787
20788 \begin_layout Plain Layout
20789
20790 \backslash
20791 Omega
20792 \end_layout
20793
20794 \end_inset
20795 </cell>
20796 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
20797 \begin_inset Text
20798
20799 \begin_layout Plain Layout
20800 \begin_inset Formula $\Omega$
20801 \end_inset
20802
20803
20804 \end_layout
20805
20806 \end_inset
20807 </cell>
20808 </row>
20809 </lyxtabular>
20810
20811 \end_inset
20812
20813
20814 \begin_inset space \hfill{}
20815 \end_inset
20816
20817
20818 \end_layout
20819
20820 \begin_layout Standard
20821 \begin_inset VSpace medskip
20822 \end_inset
20823
20824 Dass die großen griechischen Buchstaben aufrecht erscheinen, ist einem Fehler
20825  geschuldet, der während der Entwicklung von TeX gemacht wurde.
20826  Um korrekte kursive Großbuchstaben zu erhalten, beginnt man einen Befehl
20827  mit 
20828 \series bold
20829 var
20830 \series default
20831 .
20832  So ergibt z.
20833 \begin_inset space \thinspace{}
20834 \end_inset
20835
20836 B.
20837  der Befehl 
20838 \series bold
20839
20840 \backslash
20841 varGamma
20842 \series default
20843
20844 \begin_inset Formula $\varGamma$
20845 \end_inset
20846
20847
20848 \end_layout
20849
20850 \begin_layout Subsection
20851 Fett gedruckte Buchstaben
20852 \begin_inset Index idx
20853 status collapsed
20854
20855 \begin_layout Plain Layout
20856 griechische Buchstaben ! fett gedruckte
20857 \end_layout
20858
20859 \end_inset
20860
20861
20862 \end_layout
20863
20864 \begin_layout Standard
20865 Griechische lassen sich nicht wie lateinische Buchstaben in verschiedenen
20866  Schriftstilen darstellen.
20867  Es besteht nur die Möglichkeit, sie mit dem Befehl 
20868 \series bold
20869
20870 \backslash
20871 boldsymbol
20872 \series default
20873
20874 \begin_inset Index idx
20875 status collapsed
20876
20877 \begin_layout Plain Layout
20878 Befehle ! B ! 
20879 \backslash
20880 boldsymbol
20881 \end_layout
20882
20883 \end_inset
20884
20885  fett gedruckt auszugeben.
20886 \end_layout
20887
20888 \begin_layout Standard
20889 \align center
20890 \begin_inset Tabular
20891 <lyxtabular version="3" rows="3" columns="2">
20892 <features tabularvalignment="middle">
20893 <column alignment="center" valignment="top" width="0">
20894 <column alignment="center" valignment="top" width="0">
20895 <row>
20896 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
20897 \begin_inset Text
20898
20899 \begin_layout Plain Layout
20900 Befehl
20901 \end_layout
20902
20903 \end_inset
20904 </cell>
20905 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
20906 \begin_inset Text
20907
20908 \begin_layout Plain Layout
20909 Ergebnis
20910 \end_layout
20911
20912 \end_inset
20913 </cell>
20914 </row>
20915 <row>
20916 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20917 \begin_inset Text
20918
20919 \begin_layout Plain Layout
20920
20921 \backslash
20922 Upsilon
20923 \backslash
20924 boldsymbol
20925 \backslash
20926 Upsilon
20927 \end_layout
20928
20929 \end_inset
20930 </cell>
20931 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20932 \begin_inset Text
20933
20934 \begin_layout Plain Layout
20935 \begin_inset Formula $\Upsilon\boldsymbol{\Upsilon}$
20936 \end_inset
20937
20938
20939 \end_layout
20940
20941 \end_inset
20942 </cell>
20943 </row>
20944 <row>
20945 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
20946 \begin_inset Text
20947
20948 \begin_layout Plain Layout
20949
20950 \backslash
20951 theta
20952 \backslash
20953 boldsymbol
20954 \backslash
20955 theta
20956 \end_layout
20957
20958 \end_inset
20959 </cell>
20960 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
20961 \begin_inset Text
20962
20963 \begin_layout Plain Layout
20964 \begin_inset Formula $\theta\boldsymbol{\theta}$
20965 \end_inset
20966
20967
20968 \end_layout
20969
20970 \end_inset
20971 </cell>
20972 </row>
20973 </lyxtabular>
20974
20975 \end_inset
20976
20977
20978 \end_layout
20979
20980 \begin_layout Section
20981 Symbole
20982 \begin_inset ERT
20983 status collapsed
20984
20985 \begin_layout Plain Layout
20986
20987
20988 \backslash
20989 texorpdfstring{
20990 \end_layout
20991
20992 \end_inset
20993
20994
20995 \begin_inset Foot
20996 status collapsed
20997
20998 \begin_layout Plain Layout
20999 Eine Liste mit sämtlichen Symbolen der meisten LaTeX-Pakete findet man in
21000  
21001 \begin_inset CommandInset citation
21002 LatexCommand cite
21003 key "Symbole"
21004
21005 \end_inset
21006
21007 .
21008 \end_layout
21009
21010 \end_inset
21011
21012
21013 \begin_inset ERT
21014 status collapsed
21015
21016 \begin_layout Plain Layout
21017
21018 }{}
21019 \end_layout
21020
21021 \end_inset
21022
21023
21024 \begin_inset Note Note
21025 status collapsed
21026
21027 \begin_layout Plain Layout
21028
21029 \series bold
21030
21031 \backslash
21032 texorpdfstring
21033 \series default
21034  dient dazu, dass die Fußnote nicht mit im pdf-Lesezeichen erscheint.
21035 \end_layout
21036
21037 \begin_layout Plain Layout
21038 Näheres zu 
21039 \series bold
21040
21041 \backslash
21042 texorpdfstring
21043 \series default
21044  steht in Kapitel 
21045 \begin_inset CommandInset ref
21046 LatexCommand ref
21047 reference "sub:Formeln-in-Überschriften"
21048
21049 \end_inset
21050
21051 .
21052 \end_layout
21053
21054 \end_inset
21055
21056
21057 \begin_inset Index idx
21058 status collapsed
21059
21060 \begin_layout Plain Layout
21061 Symbole
21062 \end_layout
21063
21064 \end_inset
21065
21066
21067 \end_layout
21068
21069 \begin_layout Standard
21070 Viele der im Folgenden aufgelisteten Symbole können auch über die Mathe-Werkzeug\SpecialChar \-
21071
21072 leistenknöpfe 
21073 \begin_inset Graphics
21074         filename ../../images/math/nabla.png
21075         scale 85
21076
21077 \end_inset
21078
21079  und 
21080 \begin_inset Graphics
21081         filename ../../images/math/digamma.png
21082         scale 85
21083
21084 \end_inset
21085
21086  eingefügt werden.
21087 \end_layout
21088
21089 \begin_layout Subsection
21090 Mathematische Symbole
21091 \begin_inset CommandInset label
21092 LatexCommand label
21093 name "sub:Mathematische-Symbole"
21094
21095 \end_inset
21096
21097
21098 \begin_inset Index idx
21099 status collapsed
21100
21101 \begin_layout Plain Layout
21102 Symbole ! mathematische
21103 \end_layout
21104
21105 \end_inset
21106
21107
21108 \end_layout
21109
21110 \begin_layout Standard
21111 \begin_inset space \hfill{}
21112 \end_inset
21113
21114
21115 \begin_inset Tabular
21116 <lyxtabular version="3" rows="10" columns="2">
21117 <features tabularvalignment="middle">
21118 <column alignment="center" valignment="top" width="0pt">
21119 <column alignment="center" valignment="top" width="0pt">
21120 <row>
21121 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
21122 \begin_inset Text
21123
21124 \begin_layout Plain Layout
21125 Befehl
21126 \end_layout
21127
21128 \end_inset
21129 </cell>
21130 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
21131 \begin_inset Text
21132
21133 \begin_layout Plain Layout
21134 Ergebnis
21135 \end_layout
21136
21137 \end_inset
21138 </cell>
21139 </row>
21140 <row>
21141 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21142 \begin_inset Text
21143
21144 \begin_layout Plain Layout
21145
21146 \backslash
21147 neg
21148 \end_layout
21149
21150 \end_inset
21151 </cell>
21152 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21153 \begin_inset Text
21154
21155 \begin_layout Plain Layout
21156 \begin_inset Formula $\neg$
21157 \end_inset
21158
21159
21160 \end_layout
21161
21162 \end_inset
21163 </cell>
21164 </row>
21165 <row>
21166 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21167 \begin_inset Text
21168
21169 \begin_layout Plain Layout
21170
21171 \backslash
21172 Im
21173 \end_layout
21174
21175 \end_inset
21176 </cell>
21177 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21178 \begin_inset Text
21179
21180 \begin_layout Plain Layout
21181 \begin_inset Formula $\Im$
21182 \end_inset
21183
21184
21185 \end_layout
21186
21187 \end_inset
21188 </cell>
21189 </row>
21190 <row>
21191 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21192 \begin_inset Text
21193
21194 \begin_layout Plain Layout
21195
21196 \backslash
21197 Re
21198 \end_layout
21199
21200 \end_inset
21201 </cell>
21202 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21203 \begin_inset Text
21204
21205 \begin_layout Plain Layout
21206 \begin_inset Formula $\Re$
21207 \end_inset
21208
21209
21210 \end_layout
21211
21212 \end_inset
21213 </cell>
21214 </row>
21215 <row>
21216 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21217 \begin_inset Text
21218
21219 \begin_layout Plain Layout
21220
21221 \backslash
21222 aleph
21223 \end_layout
21224
21225 \end_inset
21226 </cell>
21227 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21228 \begin_inset Text
21229
21230 \begin_layout Plain Layout
21231 \begin_inset Formula $\aleph$
21232 \end_inset
21233
21234
21235 \end_layout
21236
21237 \end_inset
21238 </cell>
21239 </row>
21240 <row>
21241 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21242 \begin_inset Text
21243
21244 \begin_layout Plain Layout
21245
21246 \backslash
21247 partial
21248 \end_layout
21249
21250 \end_inset
21251 </cell>
21252 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21253 \begin_inset Text
21254
21255 \begin_layout Plain Layout
21256 \begin_inset Formula $\partial$
21257 \end_inset
21258
21259
21260 \end_layout
21261
21262 \end_inset
21263 </cell>
21264 </row>
21265 <row>
21266 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21267 \begin_inset Text
21268
21269 \begin_layout Plain Layout
21270
21271 \backslash
21272 infty
21273 \end_layout
21274
21275 \end_inset
21276 </cell>
21277 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21278 \begin_inset Text
21279
21280 \begin_layout Plain Layout
21281 \begin_inset Formula $\infty$
21282 \end_inset
21283
21284
21285 \end_layout
21286
21287 \end_inset
21288 </cell>
21289 </row>
21290 <row>
21291 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
21292 \begin_inset Text
21293
21294 \begin_layout Plain Layout
21295
21296 \backslash
21297 wp
21298 \end_layout
21299
21300 \end_inset
21301 </cell>
21302 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
21303 \begin_inset Text
21304
21305 \begin_layout Plain Layout
21306 \begin_inset Formula $\wp$
21307 \end_inset
21308
21309
21310 \end_layout
21311
21312 \end_inset
21313 </cell>
21314 </row>
21315 <row>
21316 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
21317 \begin_inset Text
21318
21319 \begin_layout Plain Layout
21320
21321 \backslash
21322 imath
21323 \end_layout
21324
21325 \end_inset
21326 </cell>
21327 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
21328 \begin_inset Text
21329
21330 \begin_layout Plain Layout
21331 \begin_inset Formula $\imath$
21332 \end_inset
21333
21334
21335 \end_layout
21336
21337 \end_inset
21338 </cell>
21339 </row>
21340 <row>
21341 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
21342 \begin_inset Text
21343
21344 \begin_layout Plain Layout
21345
21346 \backslash
21347 jmath
21348 \end_layout
21349
21350 \end_inset
21351 </cell>
21352 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
21353 \begin_inset Text
21354
21355 \begin_layout Plain Layout
21356 \begin_inset Formula $\jmath$
21357 \end_inset
21358
21359
21360 \end_layout
21361
21362 \end_inset
21363 </cell>
21364 </row>
21365 </lyxtabular>
21366
21367 \end_inset
21368
21369
21370 \begin_inset space \hfill{}
21371 \end_inset
21372
21373
21374 \begin_inset Tabular
21375 <lyxtabular version="3" rows="10" columns="2">
21376 <features tabularvalignment="middle">
21377 <column alignment="center" valignment="top" width="0pt">
21378 <column alignment="center" valignment="top" width="0pt">
21379 <row>
21380 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
21381 \begin_inset Text
21382
21383 \begin_layout Plain Layout
21384 Befehl
21385 \end_layout
21386
21387 \end_inset
21388 </cell>
21389 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
21390 \begin_inset Text
21391
21392 \begin_layout Plain Layout
21393 Ergebnis
21394 \begin_inset Note Note
21395 status collapsed
21396
21397 \begin_layout Plain Layout
21398
21399 \series bold
21400
21401 \backslash
21402 raisebox
21403 \series default
21404  dient nur als Abstandhalter.
21405 \end_layout
21406
21407 \end_inset
21408
21409
21410 \end_layout
21411
21412 \end_inset
21413 </cell>
21414 </row>
21415 <row>
21416 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21417 \begin_inset Text
21418
21419 \begin_layout Plain Layout
21420
21421 \backslash
21422 forall
21423 \end_layout
21424
21425 \end_inset
21426 </cell>
21427 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21428 \begin_inset Text
21429
21430 \begin_layout Plain Layout
21431 \begin_inset Formula $\forall$
21432 \end_inset
21433
21434
21435 \end_layout
21436
21437 \end_inset
21438 </cell>
21439 </row>
21440 <row>
21441 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21442 \begin_inset Text
21443
21444 \begin_layout Plain Layout
21445
21446 \backslash
21447 exists
21448 \end_layout
21449
21450 \end_inset
21451 </cell>
21452 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21453 \begin_inset Text
21454
21455 \begin_layout Plain Layout
21456 \begin_inset Formula $\exists$
21457 \end_inset
21458
21459
21460 \end_layout
21461
21462 \end_inset
21463 </cell>
21464 </row>
21465 <row>
21466 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21467 \begin_inset Text
21468
21469 \begin_layout Plain Layout
21470
21471 \backslash
21472 nexists
21473 \end_layout
21474
21475 \end_inset
21476 </cell>
21477 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21478 \begin_inset Text
21479
21480 \begin_layout Plain Layout
21481 \begin_inset Formula $\nexists$
21482 \end_inset
21483
21484
21485 \end_layout
21486
21487 \end_inset
21488 </cell>
21489 </row>
21490 <row>
21491 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21492 \begin_inset Text
21493
21494 \begin_layout Plain Layout
21495
21496 \backslash
21497 emptyset
21498 \end_layout
21499
21500 \end_inset
21501 </cell>
21502 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21503 \begin_inset Text
21504
21505 \begin_layout Plain Layout
21506 \begin_inset Formula $\emptyset$
21507 \end_inset
21508
21509
21510 \end_layout
21511
21512 \end_inset
21513 </cell>
21514 </row>
21515 <row>
21516 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21517 \begin_inset Text
21518
21519 \begin_layout Plain Layout
21520
21521 \backslash
21522 varnothing
21523 \end_layout
21524
21525 \end_inset
21526 </cell>
21527 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21528 \begin_inset Text
21529
21530 \begin_layout Plain Layout
21531 \begin_inset Formula $\varnothing$
21532 \end_inset
21533
21534
21535 \end_layout
21536
21537 \end_inset
21538 </cell>
21539 </row>
21540 <row>
21541 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21542 \begin_inset Text
21543
21544 \begin_layout Plain Layout
21545
21546 \backslash
21547 dag
21548 \end_layout
21549
21550 \end_inset
21551 </cell>
21552 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21553 \begin_inset Text
21554
21555 \begin_layout Plain Layout
21556 \begin_inset Formula $\dag$
21557 \end_inset
21558
21559
21560 \end_layout
21561
21562 \end_inset
21563 </cell>
21564 </row>
21565 <row>
21566 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
21567 \begin_inset Text
21568
21569 \begin_layout Plain Layout
21570
21571 \backslash
21572 ddag
21573 \end_layout
21574
21575 \end_inset
21576 </cell>
21577 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
21578 \begin_inset Text
21579
21580 \begin_layout Plain Layout
21581 \begin_inset Formula $\ddag$
21582 \end_inset
21583
21584
21585 \end_layout
21586
21587 \end_inset
21588 </cell>
21589 </row>
21590 <row>
21591 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
21592 \begin_inset Text
21593
21594 \begin_layout Plain Layout
21595
21596 \backslash
21597 complement
21598 \end_layout
21599
21600 \end_inset
21601 </cell>
21602 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
21603 \begin_inset Text
21604
21605 \begin_layout Plain Layout
21606 \begin_inset ERT
21607 status collapsed
21608
21609 \begin_layout Plain Layout
21610
21611
21612 \backslash
21613 raisebox{-0.8mm}{
21614 \end_layout
21615
21616 \end_inset
21617
21618
21619 \begin_inset Formula $\complement$
21620 \end_inset
21621
21622
21623 \begin_inset ERT
21624 status collapsed
21625
21626 \begin_layout Plain Layout
21627
21628 }
21629 \end_layout
21630
21631 \end_inset
21632
21633
21634 \end_layout
21635
21636 \end_inset
21637 </cell>
21638 </row>
21639 <row>
21640 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
21641 \begin_inset Text
21642
21643 \begin_layout Plain Layout
21644
21645 \backslash
21646 Bbbk
21647 \end_layout
21648
21649 \end_inset
21650 </cell>
21651 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
21652 \begin_inset Text
21653
21654 \begin_layout Plain Layout
21655 \begin_inset Formula $\Bbbk$
21656 \end_inset
21657
21658
21659 \end_layout
21660
21661 \end_inset
21662 </cell>
21663 </row>
21664 </lyxtabular>
21665
21666 \end_inset
21667
21668
21669 \begin_inset space \hfill{}
21670 \end_inset
21671
21672
21673 \begin_inset Tabular
21674 <lyxtabular version="3" rows="10" columns="2">
21675 <features tabularvalignment="middle">
21676 <column alignment="center" valignment="top" width="0pt">
21677 <column alignment="center" valignment="top" width="0pt">
21678 <row>
21679 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
21680 \begin_inset Text
21681
21682 \begin_layout Plain Layout
21683 Befehl
21684 \end_layout
21685
21686 \end_inset
21687 </cell>
21688 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
21689 \begin_inset Text
21690
21691 \begin_layout Plain Layout
21692 Ergebnis
21693 \end_layout
21694
21695 \end_inset
21696 </cell>
21697 </row>
21698 <row>
21699 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21700 \begin_inset Text
21701
21702 \begin_layout Plain Layout
21703
21704 \backslash
21705 prime
21706 \end_layout
21707
21708 \end_inset
21709 </cell>
21710 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21711 \begin_inset Text
21712
21713 \begin_layout Plain Layout
21714 \begin_inset Formula $\prime$
21715 \end_inset
21716
21717
21718 \end_layout
21719
21720 \end_inset
21721 </cell>
21722 </row>
21723 <row>
21724 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21725 \begin_inset Text
21726
21727 \begin_layout Plain Layout
21728
21729 \backslash
21730 backprime
21731 \end_layout
21732
21733 \end_inset
21734 </cell>
21735 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21736 \begin_inset Text
21737
21738 \begin_layout Plain Layout
21739 \begin_inset Formula $\backprime$
21740 \end_inset
21741
21742
21743 \end_layout
21744
21745 \end_inset
21746 </cell>
21747 </row>
21748 <row>
21749 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21750 \begin_inset Text
21751
21752 \begin_layout Plain Layout
21753
21754 \backslash
21755 mho
21756 \end_layout
21757
21758 \end_inset
21759 </cell>
21760 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21761 \begin_inset Text
21762
21763 \begin_layout Plain Layout
21764 \begin_inset Formula $\mho$
21765 \end_inset
21766
21767
21768 \end_layout
21769
21770 \end_inset
21771 </cell>
21772 </row>
21773 <row>
21774 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21775 \begin_inset Text
21776
21777 \begin_layout Plain Layout
21778
21779 \backslash
21780 triangle
21781 \end_layout
21782
21783 \end_inset
21784 </cell>
21785 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21786 \begin_inset Text
21787
21788 \begin_layout Plain Layout
21789 \begin_inset Formula $\triangle$
21790 \end_inset
21791
21792
21793 \end_layout
21794
21795 \end_inset
21796 </cell>
21797 </row>
21798 <row>
21799 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21800 \begin_inset Text
21801
21802 \begin_layout Plain Layout
21803
21804 \backslash
21805 angle
21806 \end_layout
21807
21808 \end_inset
21809 </cell>
21810 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21811 \begin_inset Text
21812
21813 \begin_layout Plain Layout
21814 \begin_inset Formula $\angle$
21815 \end_inset
21816
21817
21818 \end_layout
21819
21820 \end_inset
21821 </cell>
21822 </row>
21823 <row>
21824 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21825 \begin_inset Text
21826
21827 \begin_layout Plain Layout
21828
21829 \backslash
21830 measuredangle
21831 \end_layout
21832
21833 \end_inset
21834 </cell>
21835 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21836 \begin_inset Text
21837
21838 \begin_layout Plain Layout
21839 \begin_inset Formula $\measuredangle$
21840 \end_inset
21841
21842
21843 \end_layout
21844
21845 \end_inset
21846 </cell>
21847 </row>
21848 <row>
21849 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
21850 \begin_inset Text
21851
21852 \begin_layout Plain Layout
21853
21854 \backslash
21855 sphericalangle
21856 \end_layout
21857
21858 \end_inset
21859 </cell>
21860 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
21861 \begin_inset Text
21862
21863 \begin_layout Plain Layout
21864 \begin_inset Formula $\sphericalangle$
21865 \end_inset
21866
21867
21868 \end_layout
21869
21870 \end_inset
21871 </cell>
21872 </row>
21873 <row>
21874 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
21875 \begin_inset Text
21876
21877 \begin_layout Plain Layout
21878
21879 \backslash
21880 top
21881 \end_layout
21882
21883 \end_inset
21884 </cell>
21885 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
21886 \begin_inset Text
21887
21888 \begin_layout Plain Layout
21889 \begin_inset Formula $\top$
21890 \end_inset
21891
21892
21893 \end_layout
21894
21895 \end_inset
21896 </cell>
21897 </row>
21898 <row>
21899 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
21900 \begin_inset Text
21901
21902 \begin_layout Plain Layout
21903
21904 \backslash
21905 bot
21906 \end_layout
21907
21908 \end_inset
21909 </cell>
21910 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
21911 \begin_inset Text
21912
21913 \begin_layout Plain Layout
21914 \begin_inset Formula $\bot$
21915 \end_inset
21916
21917
21918 \end_layout
21919
21920 \end_inset
21921 </cell>
21922 </row>
21923 </lyxtabular>
21924
21925 \end_inset
21926
21927
21928 \begin_inset space \hfill{}
21929 \end_inset
21930
21931
21932 \end_layout
21933
21934 \begin_layout Subsection
21935 Sonstige Symbole
21936 \begin_inset CommandInset label
21937 LatexCommand label
21938 name "sub:Sonstige-Symbole"
21939
21940 \end_inset
21941
21942
21943 \begin_inset Index idx
21944 status collapsed
21945
21946 \begin_layout Plain Layout
21947 Symbole ! sonstige
21948 \end_layout
21949
21950 \end_inset
21951
21952
21953 \end_layout
21954
21955 \begin_layout Standard
21956 \noindent
21957 \align center
21958 \begin_inset Tabular
21959 <lyxtabular version="3" rows="10" columns="2">
21960 <features tabularvalignment="middle">
21961 <column alignment="center" valignment="top" width="0pt">
21962 <column alignment="center" valignment="top" width="0pt">
21963 <row>
21964 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
21965 \begin_inset Text
21966
21967 \begin_layout Plain Layout
21968 Befehl
21969 \end_layout
21970
21971 \end_inset
21972 </cell>
21973 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
21974 \begin_inset Text
21975
21976 \begin_layout Plain Layout
21977 Ergebnis
21978 \end_layout
21979
21980 \end_inset
21981 </cell>
21982 </row>
21983 <row>
21984 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21985 \begin_inset Text
21986
21987 \begin_layout Plain Layout
21988
21989 \backslash
21990 flat
21991 \end_layout
21992
21993 \end_inset
21994 </cell>
21995 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21996 \begin_inset Text
21997
21998 \begin_layout Plain Layout
21999 \begin_inset Formula $\flat$
22000 \end_inset
22001
22002
22003 \end_layout
22004
22005 \end_inset
22006 </cell>
22007 </row>
22008 <row>
22009 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22010 \begin_inset Text
22011
22012 \begin_layout Plain Layout
22013
22014 \backslash
22015 natural
22016 \end_layout
22017
22018 \end_inset
22019 </cell>
22020 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22021 \begin_inset Text
22022
22023 \begin_layout Plain Layout
22024 \begin_inset Formula $\natural$
22025 \end_inset
22026
22027
22028 \end_layout
22029
22030 \end_inset
22031 </cell>
22032 </row>
22033 <row>
22034 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22035 \begin_inset Text
22036
22037 \begin_layout Plain Layout
22038
22039 \backslash
22040 sharp
22041 \end_layout
22042
22043 \end_inset
22044 </cell>
22045 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22046 \begin_inset Text
22047
22048 \begin_layout Plain Layout
22049 \begin_inset Formula $\sharp$
22050 \end_inset
22051
22052
22053 \end_layout
22054
22055 \end_inset
22056 </cell>
22057 </row>
22058 <row>
22059 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
22060 \begin_inset Text
22061
22062 \begin_layout Plain Layout
22063
22064 \backslash
22065 surd
22066 \end_layout
22067
22068 \end_inset
22069 </cell>
22070 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
22071 \begin_inset Text
22072
22073 \begin_layout Plain Layout
22074 \begin_inset Formula $\surd$
22075 \end_inset
22076
22077
22078 \end_layout
22079
22080 \end_inset
22081 </cell>
22082 </row>
22083 <row>
22084 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
22085 \begin_inset Text
22086
22087 \begin_layout Plain Layout
22088
22089 \backslash
22090 checkmark
22091 \end_layout
22092
22093 \end_inset
22094 </cell>
22095 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
22096 \begin_inset Text
22097
22098 \begin_layout Plain Layout
22099 \begin_inset Formula $\checkmark$
22100 \end_inset
22101
22102
22103 \end_layout
22104
22105 \end_inset
22106 </cell>
22107 </row>
22108 <row>
22109 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
22110 \begin_inset Text
22111
22112 \begin_layout Plain Layout
22113
22114 \backslash
22115 yen
22116 \end_layout
22117
22118 \end_inset
22119 </cell>
22120 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
22121 \begin_inset Text
22122
22123 \begin_layout Plain Layout
22124 \begin_inset Formula $\yen$
22125 \end_inset
22126
22127
22128 \end_layout
22129
22130 \end_inset
22131 </cell>
22132 </row>
22133 <row>
22134 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
22135 \begin_inset Text
22136
22137 \begin_layout Plain Layout
22138
22139 \backslash
22140 pounds
22141 \end_layout
22142
22143 \end_inset
22144 </cell>
22145 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
22146 \begin_inset Text
22147
22148 \begin_layout Plain Layout
22149 \begin_inset Formula $\pounds$
22150 \end_inset
22151
22152
22153 \end_layout
22154
22155 \end_inset
22156 </cell>
22157 </row>
22158 <row>
22159 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
22160 \begin_inset Text
22161
22162 \begin_layout Plain Layout
22163 $
22164 \end_layout
22165
22166 \end_inset
22167 </cell>
22168 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
22169 \begin_inset Text
22170
22171 \begin_layout Plain Layout
22172 \begin_inset Formula $\$$
22173 \end_inset
22174
22175
22176 \end_layout
22177
22178 \end_inset
22179 </cell>
22180 </row>
22181 <row>
22182 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
22183 \begin_inset Text
22184
22185 \begin_layout Plain Layout
22186 §
22187 \end_layout
22188
22189 \end_inset
22190 </cell>
22191 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
22192 \begin_inset Text
22193
22194 \begin_layout Plain Layout
22195 \begin_inset Formula $§$
22196 \end_inset
22197
22198
22199 \end_layout
22200
22201 \end_inset
22202 </cell>
22203 </row>
22204 </lyxtabular>
22205
22206 \end_inset
22207
22208
22209 \begin_inset Tabular
22210 <lyxtabular version="3" rows="10" columns="2">
22211 <features tabularvalignment="middle">
22212 <column alignment="center" valignment="top" width="0">
22213 <column alignment="center" valignment="top" width="0">
22214 <row>
22215 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
22216 \begin_inset Text
22217
22218 \begin_layout Plain Layout
22219 Befehl
22220 \end_layout
22221
22222 \end_inset
22223 </cell>
22224 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
22225 \begin_inset Text
22226
22227 \begin_layout Plain Layout
22228 Ergebnis
22229 \end_layout
22230
22231 \end_inset
22232 </cell>
22233 </row>
22234 <row>
22235 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22236 \begin_inset Text
22237
22238 \begin_layout Plain Layout
22239
22240 \backslash
22241 hbar
22242 \end_layout
22243
22244 \end_inset
22245 </cell>
22246 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22247 \begin_inset Text
22248
22249 \begin_layout Plain Layout
22250 \begin_inset Formula $\hbar$
22251 \end_inset
22252
22253
22254 \end_layout
22255
22256 \end_inset
22257 </cell>
22258 </row>
22259 <row>
22260 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22261 \begin_inset Text
22262
22263 \begin_layout Plain Layout
22264
22265 \backslash
22266 hslash
22267 \end_layout
22268
22269 \end_inset
22270 </cell>
22271 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22272 \begin_inset Text
22273
22274 \begin_layout Plain Layout
22275 \begin_inset Formula $\hslash$
22276 \end_inset
22277
22278
22279 \end_layout
22280
22281 \end_inset
22282 </cell>
22283 </row>
22284 <row>
22285 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22286 \begin_inset Text
22287
22288 \begin_layout Plain Layout
22289
22290 \backslash
22291 clubsuit
22292 \end_layout
22293
22294 \end_inset
22295 </cell>
22296 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22297 \begin_inset Text
22298
22299 \begin_layout Plain Layout
22300 \begin_inset Formula $\clubsuit$
22301 \end_inset
22302
22303
22304 \end_layout
22305
22306 \end_inset
22307 </cell>
22308 </row>
22309 <row>
22310 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22311 \begin_inset Text
22312
22313 \begin_layout Plain Layout
22314
22315 \backslash
22316 spadesuit
22317 \end_layout
22318
22319 \end_inset
22320 </cell>
22321 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22322 \begin_inset Text
22323
22324 \begin_layout Plain Layout
22325 \begin_inset Formula $\spadesuit$
22326 \end_inset
22327
22328
22329 \end_layout
22330
22331 \end_inset
22332 </cell>
22333 </row>
22334 <row>
22335 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22336 \begin_inset Text
22337
22338 \begin_layout Plain Layout
22339
22340 \backslash
22341 bigstar
22342 \end_layout
22343
22344 \end_inset
22345 </cell>
22346 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22347 \begin_inset Text
22348
22349 \begin_layout Plain Layout
22350 \begin_inset Formula $\bigstar$
22351 \end_inset
22352
22353
22354 \end_layout
22355
22356 \end_inset
22357 </cell>
22358 </row>
22359 <row>
22360 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22361 \begin_inset Text
22362
22363 \begin_layout Plain Layout
22364
22365 \backslash
22366 blacklozenge
22367 \end_layout
22368
22369 \end_inset
22370 </cell>
22371 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22372 \begin_inset Text
22373
22374 \begin_layout Plain Layout
22375 \begin_inset Formula $\blacklozenge$
22376 \end_inset
22377
22378
22379 \end_layout
22380
22381 \end_inset
22382 </cell>
22383 </row>
22384 <row>
22385 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22386 \begin_inset Text
22387
22388 \begin_layout Plain Layout
22389
22390 \backslash
22391 blacktriangle
22392 \end_layout
22393
22394 \end_inset
22395 </cell>
22396 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22397 \begin_inset Text
22398
22399 \begin_layout Plain Layout
22400 \begin_inset Formula $\blacktriangle$
22401 \end_inset
22402
22403
22404 \end_layout
22405
22406 \end_inset
22407 </cell>
22408 </row>
22409 <row>
22410 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22411 \begin_inset Text
22412
22413 \begin_layout Plain Layout
22414
22415 \backslash
22416 blacktiangledown
22417 \end_layout
22418
22419 \end_inset
22420 </cell>
22421 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22422 \begin_inset Text
22423
22424 \begin_layout Plain Layout
22425 \begin_inset Formula $\blacktriangledown$
22426 \end_inset
22427
22428
22429 \end_layout
22430
22431 \end_inset
22432 </cell>
22433 </row>
22434 <row>
22435 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
22436 \begin_inset Text
22437
22438 \begin_layout Plain Layout
22439
22440 \backslash
22441 bullet
22442 \end_layout
22443
22444 \end_inset
22445 </cell>
22446 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
22447 \begin_inset Text
22448
22449 \begin_layout Plain Layout
22450 \begin_inset Formula $\bullet$
22451 \end_inset
22452
22453
22454 \end_layout
22455
22456 \end_inset
22457 </cell>
22458 </row>
22459 </lyxtabular>
22460
22461 \end_inset
22462
22463
22464 \begin_inset Tabular
22465 <lyxtabular version="3" rows="10" columns="2">
22466 <features tabularvalignment="middle">
22467 <column alignment="center" valignment="top" width="0pt">
22468 <column alignment="center" valignment="top" width="0pt">
22469 <row>
22470 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
22471 \begin_inset Text
22472
22473 \begin_layout Plain Layout
22474 Befehl
22475 \end_layout
22476
22477 \end_inset
22478 </cell>
22479 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
22480 \begin_inset Text
22481
22482 \begin_layout Plain Layout
22483 Ergebnis
22484 \end_layout
22485
22486 \end_inset
22487 </cell>
22488 </row>
22489 <row>
22490 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22491 \begin_inset Text
22492
22493 \begin_layout Plain Layout
22494
22495 \backslash
22496 diamondsuit
22497 \end_layout
22498
22499 \end_inset
22500 </cell>
22501 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22502 \begin_inset Text
22503
22504 \begin_layout Plain Layout
22505 \begin_inset Formula $\diamondsuit$
22506 \end_inset
22507
22508
22509 \end_layout
22510
22511 \end_inset
22512 </cell>
22513 </row>
22514 <row>
22515 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22516 \begin_inset Text
22517
22518 \begin_layout Plain Layout
22519
22520 \backslash
22521 Diamond
22522 \end_layout
22523
22524 \end_inset
22525 </cell>
22526 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22527 \begin_inset Text
22528
22529 \begin_layout Plain Layout
22530 \begin_inset Formula $\Diamond$
22531 \end_inset
22532
22533
22534 \end_layout
22535
22536 \end_inset
22537 </cell>
22538 </row>
22539 <row>
22540 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22541 \begin_inset Text
22542
22543 \begin_layout Plain Layout
22544
22545 \backslash
22546 heartsuit
22547 \end_layout
22548
22549 \end_inset
22550 </cell>
22551 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22552 \begin_inset Text
22553
22554 \begin_layout Plain Layout
22555 \begin_inset Formula $\heartsuit$
22556 \end_inset
22557
22558
22559 \end_layout
22560
22561 \end_inset
22562 </cell>
22563 </row>
22564 <row>
22565 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
22566 \begin_inset Text
22567
22568 \begin_layout Plain Layout
22569
22570 \backslash
22571 P
22572 \end_layout
22573
22574 \end_inset
22575 </cell>
22576 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
22577 \begin_inset Text
22578
22579 \begin_layout Plain Layout
22580 \begin_inset Formula $\P$
22581 \end_inset
22582
22583
22584 \end_layout
22585
22586 \end_inset
22587 </cell>
22588 </row>
22589 <row>
22590 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
22591 \begin_inset Text
22592
22593 \begin_layout Plain Layout
22594
22595 \backslash
22596 copyright
22597 \end_layout
22598
22599 \end_inset
22600 </cell>
22601 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
22602 \begin_inset Text
22603
22604 \begin_layout Plain Layout
22605 \begin_inset Formula $\copyright$
22606 \end_inset
22607
22608
22609 \end_layout
22610
22611 \end_inset
22612 </cell>
22613 </row>
22614 <row>
22615 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
22616 \begin_inset Text
22617
22618 \begin_layout Plain Layout
22619
22620 \backslash
22621 circledR
22622 \end_layout
22623
22624 \end_inset
22625 </cell>
22626 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
22627 \begin_inset Text
22628
22629 \begin_layout Plain Layout
22630 \begin_inset Formula $\circledR$
22631 \end_inset
22632
22633
22634 \end_layout
22635
22636 \end_inset
22637 </cell>
22638 </row>
22639 <row>
22640 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
22641 \begin_inset Text
22642
22643 \begin_layout Plain Layout
22644
22645 \backslash
22646 maltese
22647 \end_layout
22648
22649 \end_inset
22650 </cell>
22651 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
22652 \begin_inset Text
22653
22654 \begin_layout Plain Layout
22655 \begin_inset Formula $\maltese$
22656 \end_inset
22657
22658
22659 \end_layout
22660
22661 \end_inset
22662 </cell>
22663 </row>
22664 <row>
22665 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
22666 \begin_inset Text
22667
22668 \begin_layout Plain Layout
22669
22670 \backslash
22671 diagup
22672 \end_layout
22673
22674 \end_inset
22675 </cell>
22676 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
22677 \begin_inset Text
22678
22679 \begin_layout Plain Layout
22680 \begin_inset Formula $\diagup$
22681 \end_inset
22682
22683
22684 \end_layout
22685
22686 \end_inset
22687 </cell>
22688 </row>
22689 <row>
22690 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
22691 \begin_inset Text
22692
22693 \begin_layout Plain Layout
22694
22695 \backslash
22696 diagdown
22697 \end_layout
22698
22699 \end_inset
22700 </cell>
22701 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
22702 \begin_inset Text
22703
22704 \begin_layout Plain Layout
22705 \begin_inset Formula $\diagdown$
22706 \end_inset
22707
22708
22709 \end_layout
22710
22711 \end_inset
22712 </cell>
22713 </row>
22714 </lyxtabular>
22715
22716 \end_inset
22717
22718
22719 \end_layout
22720
22721 \begin_layout Standard
22722 \begin_inset VSpace medskip
22723 \end_inset
22724
22725 Weitere Symbole sind in 
22726 \begin_inset CommandInset ref
22727 LatexCommand ref
22728 reference "sub:Sonstige-Sonderzeichen"
22729
22730 \end_inset
22731
22732  aufgelistet.
22733 \end_layout
22734
22735 \begin_layout Standard
22736 Einige Symbole können in unterschiedlicher Größe dargestellt werden, siehe
22737  
22738 \begin_inset CommandInset ref
22739 LatexCommand ref
22740 reference "sub:Schriftgrößen"
22741
22742 \end_inset
22743
22744 .
22745 \end_layout
22746
22747 \begin_layout Subsection
22748 Das Euro-Symbol €
22749 \begin_inset Index idx
22750 status collapsed
22751
22752 \begin_layout Plain Layout
22753 Symbole ! Euro-Symbol
22754 \end_layout
22755
22756 \end_inset
22757
22758
22759 \begin_inset Index idx
22760 status collapsed
22761
22762 \begin_layout Plain Layout
22763
22764 \backslash
22765 @
22766 \begin_inset ERT
22767 status collapsed
22768
22769 \begin_layout Plain Layout
22770
22771
22772 \backslash
22773 officialeuro
22774 \end_layout
22775
22776 \end_inset
22777
22778
22779 \end_layout
22780
22781 \end_inset
22782
22783
22784 \end_layout
22785
22786 \begin_layout Standard
22787 Wenn man in einer Formel das Euro-Symbol verwenden will, muss man das LaTeX-Pake
22788
22789 \series bold
22790 eurosym
22791 \series default
22792
22793 \begin_inset Index idx
22794 status collapsed
22795
22796 \begin_layout Plain Layout
22797 Pakete ! eurosym
22798 \end_layout
22799
22800 \end_inset
22801
22802  installieren und dieses mit der LaTeX-Vorspannzeile
22803 \end_layout
22804
22805 \begin_layout Standard
22806
22807 \series bold
22808
22809 \backslash
22810 usepackage[gennarrow]{eurosym}
22811 \end_layout
22812
22813 \begin_layout Standard
22814 aktivieren.
22815  Das Euro-Symbol kann man nun mit dem Befehl 
22816 \series bold
22817
22818 \backslash
22819 euro
22820 \series default
22821
22822 \begin_inset Index idx
22823 status collapsed
22824
22825 \begin_layout Plain Layout
22826 Befehle ! E ! 
22827 \backslash
22828 euro
22829 \end_layout
22830
22831 \end_inset
22832
22833  aufrufen.
22834 \end_layout
22835
22836 \begin_layout Standard
22837 Das Euro-Symbol kann man direkt über die Tastatur in mathematischen Text
22838  eingeben, ohne 
22839 \series bold
22840 eurosym
22841 \series default
22842  installiert zu haben.
22843  Ist 
22844 \series bold
22845 eurosym
22846 \series default
22847  installiert, kann man 
22848 \series bold
22849
22850 \backslash
22851 euro
22852 \series default
22853  auch im TeX-Modus eingeben.
22854  Das offizielle Währungssymbol erhält man dann über den Befehl 
22855 \series bold
22856
22857 \backslash
22858 officialeuro
22859 \series default
22860
22861 \begin_inset Index idx
22862 status collapsed
22863
22864 \begin_layout Plain Layout
22865 Befehle ! O ! 
22866 \backslash
22867 officialeuro
22868 \end_layout
22869
22870 \end_inset
22871
22872 , der nur im TeX-Modus verfügbar ist.
22873 \end_layout
22874
22875 \begin_layout Standard
22876 \begin_inset ERT
22877 status collapsed
22878
22879 \begin_layout Plain Layout
22880
22881
22882 \backslash
22883 ifeurosym 
22884 \end_layout
22885
22886 \end_inset
22887
22888
22889 \begin_inset Note Note
22890 status open
22891
22892 \begin_layout Plain Layout
22893 Die folgende Tabelle erscheint nur im Ausdruck wenn das LaTeX-Paket 
22894 \series bold
22895 eurosym
22896 \series default
22897  installiert ist:
22898 \end_layout
22899
22900 \end_inset
22901
22902
22903 \end_layout
22904
22905 \begin_layout Standard
22906 Eine Übersicht der verschiedenen Euro-Symbole:
22907 \end_layout
22908
22909 \begin_layout Standard
22910 \align center
22911 \begin_inset Tabular
22912 <lyxtabular version="3" rows="4" columns="3">
22913 <features tabularvalignment="middle">
22914 <column alignment="center" valignment="top" width="0pt">
22915 <column alignment="center" valignment="top" width="0pt">
22916 <column alignment="center" valignment="top" width="0pt">
22917 <row>
22918 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" usebox="none">
22919 \begin_inset Text
22920
22921 \begin_layout Plain Layout
22922
22923 \end_layout
22924
22925 \end_inset
22926 </cell>
22927 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
22928 \begin_inset Text
22929
22930 \begin_layout Plain Layout
22931 Befehl 
22932 \end_layout
22933
22934 \end_inset
22935 </cell>
22936 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
22937 \begin_inset Text
22938
22939 \begin_layout Plain Layout
22940 Ergebnis
22941 \end_layout
22942
22943 \end_inset
22944 </cell>
22945 </row>
22946 <row>
22947 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22948 \begin_inset Text
22949
22950 \begin_layout Plain Layout
22951 Formel
22952 \end_layout
22953
22954 \end_inset
22955 </cell>
22956 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22957 \begin_inset Text
22958
22959 \begin_layout Plain Layout
22960
22961 \backslash
22962 euro
22963 \end_layout
22964
22965 \end_inset
22966 </cell>
22967 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22968 \begin_inset Text
22969
22970 \begin_layout Plain Layout
22971 \begin_inset Formula $\euro$
22972 \end_inset
22973
22974
22975 \end_layout
22976
22977 \end_inset
22978 </cell>
22979 </row>
22980 <row>
22981 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22982 \begin_inset Text
22983
22984 \begin_layout Plain Layout
22985 mathematischer Text
22986 \end_layout
22987
22988 \end_inset
22989 </cell>
22990 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22991 \begin_inset Text
22992
22993 \begin_layout Plain Layout
22994
22995 \end_layout
22996
22997 \end_inset
22998 </cell>
22999 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23000 \begin_inset Text
23001
23002 \begin_layout Plain Layout
23003 \begin_inset Formula $\mbox{€}$
23004 \end_inset
23005
23006
23007 \end_layout
23008
23009 \end_inset
23010 </cell>
23011 </row>
23012 <row>
23013 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
23014 \begin_inset Text
23015
23016 \begin_layout Plain Layout
23017 TeX-Modus
23018 \end_layout
23019
23020 \end_inset
23021 </cell>
23022 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
23023 \begin_inset Text
23024
23025 \begin_layout Plain Layout
23026
23027 \backslash
23028 officialeuro
23029 \end_layout
23030
23031 \end_inset
23032 </cell>
23033 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
23034 \begin_inset Text
23035
23036 \begin_layout Plain Layout
23037 \begin_inset ERT
23038 status collapsed
23039
23040 \begin_layout Plain Layout
23041
23042
23043 \backslash
23044 officialeuro
23045 \end_layout
23046
23047 \end_inset
23048
23049
23050 \end_layout
23051
23052 \end_inset
23053 </cell>
23054 </row>
23055 </lyxtabular>
23056
23057 \end_inset
23058
23059
23060 \end_layout
23061
23062 \begin_layout Standard
23063 \begin_inset ERT
23064 status collapsed
23065
23066 \begin_layout Plain Layout
23067
23068
23069 \backslash
23070 else 
23071 \end_layout
23072
23073 \end_inset
23074
23075
23076 \begin_inset Note Note
23077 status open
23078
23079 \begin_layout Plain Layout
23080 Folgendes erscheint im Ausdruck wenn das LaTeX-Paket 
23081 \series bold
23082 eurosym
23083 \series default
23084  nicht installiert ist:
23085 \end_layout
23086
23087 \end_inset
23088
23089
23090 \end_layout
23091
23092 \begin_layout Standard
23093 Das LaTeX-Paket 
23094 \series bold
23095 eurosym 
23096 \series default
23097 muss installiert sein, um den Rest dieses Abschnitts im Ausdruck zu sehen.
23098 \end_layout
23099
23100 \begin_layout Standard
23101 \begin_inset ERT
23102 status collapsed
23103
23104 \begin_layout Plain Layout
23105
23106
23107 \backslash
23108 fi 
23109 \end_layout
23110
23111 \end_inset
23112
23113
23114 \end_layout
23115
23116 \begin_layout Section
23117 Relationen
23118 \begin_inset CommandInset label
23119 LatexCommand label
23120 name "sec:Relationen"
23121
23122 \end_inset
23123
23124
23125 \begin_inset Index idx
23126 status collapsed
23127
23128 \begin_layout Plain Layout
23129 Relationen
23130 \end_layout
23131
23132 \end_inset
23133
23134
23135 \begin_inset Index idx
23136 status collapsed
23137
23138 \begin_layout Plain Layout
23139 Vergleiche|see
23140 \begin_inset ERT
23141 status collapsed
23142
23143 \begin_layout Plain Layout
23144
23145 {
23146 \end_layout
23147
23148 \end_inset
23149
23150 Relationen
23151 \begin_inset ERT
23152 status collapsed
23153
23154 \begin_layout Plain Layout
23155
23156 }
23157 \end_layout
23158
23159 \end_inset
23160
23161
23162 \end_layout
23163
23164 \end_inset
23165
23166
23167 \end_layout
23168
23169 \begin_layout Standard
23170 Alle griechischen Buchstaben können auch über den Mathe-Werkzeugleistenknopf
23171  
23172 \begin_inset Graphics
23173         filename ../../images/math/leq.png
23174         scale 85
23175
23176 \end_inset
23177
23178  eingefügt werden.
23179 \end_layout
23180
23181 \begin_layout Standard
23182 \begin_inset space \hfill{}
23183 \end_inset
23184
23185
23186 \begin_inset Tabular
23187 <lyxtabular version="3" rows="17" columns="2">
23188 <features tabularvalignment="middle">
23189 <column alignment="center" valignment="top" width="0pt">
23190 <column alignment="center" valignment="top" width="0pt">
23191 <row>
23192 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
23193 \begin_inset Text
23194
23195 \begin_layout Plain Layout
23196 Befehl
23197 \end_layout
23198
23199 \end_inset
23200 </cell>
23201 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
23202 \begin_inset Text
23203
23204 \begin_layout Plain Layout
23205 Ergebnis
23206 \end_layout
23207
23208 \end_inset
23209 </cell>
23210 </row>
23211 <row>
23212 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23213 \begin_inset Text
23214
23215 \begin_layout Plain Layout
23216 <
23217 \end_layout
23218
23219 \end_inset
23220 </cell>
23221 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23222 \begin_inset Text
23223
23224 \begin_layout Plain Layout
23225 \begin_inset Formula $<$
23226 \end_inset
23227
23228
23229 \end_layout
23230
23231 \end_inset
23232 </cell>
23233 </row>
23234 <row>
23235 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23236 \begin_inset Text
23237
23238 \begin_layout Plain Layout
23239
23240 \backslash
23241 le
23242 \end_layout
23243
23244 \end_inset
23245 </cell>
23246 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23247 \begin_inset Text
23248
23249 \begin_layout Plain Layout
23250 \begin_inset Formula $\le$
23251 \end_inset
23252
23253
23254 \end_layout
23255
23256 \end_inset
23257 </cell>
23258 </row>
23259 <row>
23260 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23261 \begin_inset Text
23262
23263 \begin_layout Plain Layout
23264
23265 \backslash
23266 ll
23267 \end_layout
23268
23269 \end_inset
23270 </cell>
23271 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23272 \begin_inset Text
23273
23274 \begin_layout Plain Layout
23275 \begin_inset Formula $\ll$
23276 \end_inset
23277
23278
23279 \end_layout
23280
23281 \end_inset
23282 </cell>
23283 </row>
23284 <row>
23285 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23286 \begin_inset Text
23287
23288 \begin_layout Plain Layout
23289
23290 \backslash
23291 prec
23292 \end_layout
23293
23294 \end_inset
23295 </cell>
23296 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23297 \begin_inset Text
23298
23299 \begin_layout Plain Layout
23300 \begin_inset Formula $\prec$
23301 \end_inset
23302
23303
23304 \end_layout
23305
23306 \end_inset
23307 </cell>
23308 </row>
23309 <row>
23310 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23311 \begin_inset Text
23312
23313 \begin_layout Plain Layout
23314
23315 \backslash
23316 preceq
23317 \end_layout
23318
23319 \end_inset
23320 </cell>
23321 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23322 \begin_inset Text
23323
23324 \begin_layout Plain Layout
23325 \begin_inset Formula $\preceq$
23326 \end_inset
23327
23328
23329 \end_layout
23330
23331 \end_inset
23332 </cell>
23333 </row>
23334 <row>
23335 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23336 \begin_inset Text
23337
23338 \begin_layout Plain Layout
23339
23340 \backslash
23341 subset
23342 \end_layout
23343
23344 \end_inset
23345 </cell>
23346 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23347 \begin_inset Text
23348
23349 \begin_layout Plain Layout
23350 \begin_inset Formula $\subset$
23351 \end_inset
23352
23353
23354 \end_layout
23355
23356 \end_inset
23357 </cell>
23358 </row>
23359 <row>
23360 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23361 \begin_inset Text
23362
23363 \begin_layout Plain Layout
23364
23365 \backslash
23366 subseteq
23367 \end_layout
23368
23369 \end_inset
23370 </cell>
23371 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23372 \begin_inset Text
23373
23374 \begin_layout Plain Layout
23375 \begin_inset Formula $\subseteq$
23376 \end_inset
23377
23378
23379 \end_layout
23380
23381 \end_inset
23382 </cell>
23383 </row>
23384 <row>
23385 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23386 \begin_inset Text
23387
23388 \begin_layout Plain Layout
23389
23390 \backslash
23391 sqsubseteq
23392 \end_layout
23393
23394 \end_inset
23395 </cell>
23396 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23397 \begin_inset Text
23398
23399 \begin_layout Plain Layout
23400 \begin_inset Formula $\sqsubseteq$
23401 \end_inset
23402
23403
23404 \end_layout
23405
23406 \end_inset
23407 </cell>
23408 </row>
23409 <row>
23410 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23411 \begin_inset Text
23412
23413 \begin_layout Plain Layout
23414
23415 \backslash
23416 in
23417 \end_layout
23418
23419 \end_inset
23420 </cell>
23421 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23422 \begin_inset Text
23423
23424 \begin_layout Plain Layout
23425 \begin_inset Formula $\in$
23426 \end_inset
23427
23428
23429 \end_layout
23430
23431 \end_inset
23432 </cell>
23433 </row>
23434 <row>
23435 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23436 \begin_inset Text
23437
23438 \begin_layout Plain Layout
23439
23440 \backslash
23441 vdash
23442 \end_layout
23443
23444 \end_inset
23445 </cell>
23446 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23447 \begin_inset Text
23448
23449 \begin_layout Plain Layout
23450 \begin_inset Formula $\vdash$
23451 \end_inset
23452
23453
23454 \end_layout
23455
23456 \end_inset
23457 </cell>
23458 </row>
23459 <row>
23460 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23461 \begin_inset Text
23462
23463 \begin_layout Plain Layout
23464
23465 \backslash
23466 smile
23467 \end_layout
23468
23469 \end_inset
23470 </cell>
23471 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23472 \begin_inset Text
23473
23474 \begin_layout Plain Layout
23475 \begin_inset Formula $\smile$
23476 \end_inset
23477
23478
23479 \end_layout
23480
23481 \end_inset
23482 </cell>
23483 </row>
23484 <row>
23485 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23486 \begin_inset Text
23487
23488 \begin_layout Plain Layout
23489
23490 \backslash
23491 lhd
23492 \end_layout
23493
23494 \end_inset
23495 </cell>
23496 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23497 \begin_inset Text
23498
23499 \begin_layout Plain Layout
23500 \begin_inset Formula $\lhd$
23501 \end_inset
23502
23503
23504 \end_layout
23505
23506 \end_inset
23507 </cell>
23508 </row>
23509 <row>
23510 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23511 \begin_inset Text
23512
23513 \begin_layout Plain Layout
23514
23515 \backslash
23516 unlhd
23517 \end_layout
23518
23519 \end_inset
23520 </cell>
23521 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23522 \begin_inset Text
23523
23524 \begin_layout Plain Layout
23525 \begin_inset Formula $\unlhd$
23526 \end_inset
23527
23528
23529 \end_layout
23530
23531 \end_inset
23532 </cell>
23533 </row>
23534 <row>
23535 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23536 \begin_inset Text
23537
23538 \begin_layout Plain Layout
23539
23540 \backslash
23541 gtrless
23542 \end_layout
23543
23544 \end_inset
23545 </cell>
23546 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23547 \begin_inset Text
23548
23549 \begin_layout Plain Layout
23550 \begin_inset Formula $\gtrless$
23551 \end_inset
23552
23553
23554 \end_layout
23555
23556 \end_inset
23557 </cell>
23558 </row>
23559 <row>
23560 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23561 \begin_inset Text
23562
23563 \begin_layout Plain Layout
23564
23565 \backslash
23566 mid
23567 \end_layout
23568
23569 \end_inset
23570 </cell>
23571 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23572 \begin_inset Text
23573
23574 \begin_layout Plain Layout
23575 \begin_inset Formula $\mid$
23576 \end_inset
23577
23578
23579 \end_layout
23580
23581 \end_inset
23582 </cell>
23583 </row>
23584 <row>
23585 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
23586 \begin_inset Text
23587
23588 \begin_layout Plain Layout
23589
23590 \backslash
23591 nmid
23592 \end_layout
23593
23594 \end_inset
23595 </cell>
23596 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
23597 \begin_inset Text
23598
23599 \begin_layout Plain Layout
23600 \begin_inset Formula $\nmid$
23601 \end_inset
23602
23603
23604 \end_layout
23605
23606 \end_inset
23607 </cell>
23608 </row>
23609 </lyxtabular>
23610
23611 \end_inset
23612
23613
23614 \begin_inset space \hfill{}
23615 \end_inset
23616
23617
23618 \begin_inset Tabular
23619 <lyxtabular version="3" rows="17" columns="2">
23620 <features tabularvalignment="middle">
23621 <column alignment="center" valignment="top" width="0pt">
23622 <column alignment="center" valignment="top" width="0pt">
23623 <row>
23624 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
23625 \begin_inset Text
23626
23627 \begin_layout Plain Layout
23628 Befehl
23629 \end_layout
23630
23631 \end_inset
23632 </cell>
23633 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
23634 \begin_inset Text
23635
23636 \begin_layout Plain Layout
23637 Ergebnis
23638 \end_layout
23639
23640 \end_inset
23641 </cell>
23642 </row>
23643 <row>
23644 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23645 \begin_inset Text
23646
23647 \begin_layout Plain Layout
23648 =
23649 \end_layout
23650
23651 \end_inset
23652 </cell>
23653 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23654 \begin_inset Text
23655
23656 \begin_layout Plain Layout
23657 \begin_inset Formula $=$
23658 \end_inset
23659
23660
23661 \end_layout
23662
23663 \end_inset
23664 </cell>
23665 </row>
23666 <row>
23667 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23668 \begin_inset Text
23669
23670 \begin_layout Plain Layout
23671
23672 \backslash
23673 not=
23674 \end_layout
23675
23676 \end_inset
23677 </cell>
23678 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23679 \begin_inset Text
23680
23681 \begin_layout Plain Layout
23682 \begin_inset Formula $\not=$
23683 \end_inset
23684
23685
23686 \end_layout
23687
23688 \end_inset
23689 </cell>
23690 </row>
23691 <row>
23692 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23693 \begin_inset Text
23694
23695 \begin_layout Plain Layout
23696
23697 \backslash
23698 equiv
23699 \end_layout
23700
23701 \end_inset
23702 </cell>
23703 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23704 \begin_inset Text
23705
23706 \begin_layout Plain Layout
23707 \begin_inset Formula $\equiv$
23708 \end_inset
23709
23710
23711 \end_layout
23712
23713 \end_inset
23714 </cell>
23715 </row>
23716 <row>
23717 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23718 \begin_inset Text
23719
23720 \begin_layout Plain Layout
23721
23722 \backslash
23723 sim
23724 \end_layout
23725
23726 \end_inset
23727 </cell>
23728 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23729 \begin_inset Text
23730
23731 \begin_layout Plain Layout
23732 \begin_inset Formula $\sim$
23733 \end_inset
23734
23735
23736 \end_layout
23737
23738 \end_inset
23739 </cell>
23740 </row>
23741 <row>
23742 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23743 \begin_inset Text
23744
23745 \begin_layout Plain Layout
23746
23747 \backslash
23748 simeq
23749 \end_layout
23750
23751 \end_inset
23752 </cell>
23753 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23754 \begin_inset Text
23755
23756 \begin_layout Plain Layout
23757 \begin_inset Formula $\simeq$
23758 \end_inset
23759
23760
23761 \end_layout
23762
23763 \end_inset
23764 </cell>
23765 </row>
23766 <row>
23767 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23768 \begin_inset Text
23769
23770 \begin_layout Plain Layout
23771
23772 \backslash
23773 approx
23774 \end_layout
23775
23776 \end_inset
23777 </cell>
23778 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23779 \begin_inset Text
23780
23781 \begin_layout Plain Layout
23782 \begin_inset Formula $\approx$
23783 \end_inset
23784
23785
23786 \end_layout
23787
23788 \end_inset
23789 </cell>
23790 </row>
23791 <row>
23792 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23793 \begin_inset Text
23794
23795 \begin_layout Plain Layout
23796
23797 \backslash
23798 cong
23799 \end_layout
23800
23801 \end_inset
23802 </cell>
23803 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23804 \begin_inset Text
23805
23806 \begin_layout Plain Layout
23807 \begin_inset Formula $\cong$
23808 \end_inset
23809
23810
23811 \end_layout
23812
23813 \end_inset
23814 </cell>
23815 </row>
23816 <row>
23817 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23818 \begin_inset Text
23819
23820 \begin_layout Plain Layout
23821
23822 \backslash
23823 bowtie
23824 \end_layout
23825
23826 \end_inset
23827 </cell>
23828 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23829 \begin_inset Text
23830
23831 \begin_layout Plain Layout
23832 \begin_inset Formula $\bowtie$
23833 \end_inset
23834
23835
23836 \end_layout
23837
23838 \end_inset
23839 </cell>
23840 </row>
23841 <row>
23842 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23843 \begin_inset Text
23844
23845 \begin_layout Plain Layout
23846
23847 \backslash
23848 notin
23849 \end_layout
23850
23851 \end_inset
23852 </cell>
23853 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23854 \begin_inset Text
23855
23856 \begin_layout Plain Layout
23857 \begin_inset Formula $\notin$
23858 \end_inset
23859
23860
23861 \end_layout
23862
23863 \end_inset
23864 </cell>
23865 </row>
23866 <row>
23867 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23868 \begin_inset Text
23869
23870 \begin_layout Plain Layout
23871
23872 \backslash
23873 perp
23874 \end_layout
23875
23876 \end_inset
23877 </cell>
23878 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23879 \begin_inset Text
23880
23881 \begin_layout Plain Layout
23882 \begin_inset Formula $\perp$
23883 \end_inset
23884
23885
23886 \end_layout
23887
23888 \end_inset
23889 </cell>
23890 </row>
23891 <row>
23892 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23893 \begin_inset Text
23894
23895 \begin_layout Plain Layout
23896
23897 \backslash
23898 propto
23899 \end_layout
23900
23901 \end_inset
23902 </cell>
23903 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23904 \begin_inset Text
23905
23906 \begin_layout Plain Layout
23907 \begin_inset Formula $\propto$
23908 \end_inset
23909
23910
23911 \end_layout
23912
23913 \end_inset
23914 </cell>
23915 </row>
23916 <row>
23917 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23918 \begin_inset Text
23919
23920 \begin_layout Plain Layout
23921
23922 \backslash
23923 asymp
23924 \end_layout
23925
23926 \end_inset
23927 </cell>
23928 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23929 \begin_inset Text
23930
23931 \begin_layout Plain Layout
23932 \begin_inset Formula $\asymp$
23933 \end_inset
23934
23935
23936 \end_layout
23937
23938 \end_inset
23939 </cell>
23940 </row>
23941 <row>
23942 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23943 \begin_inset Text
23944
23945 \begin_layout Plain Layout
23946
23947 \backslash
23948 doteq
23949 \end_layout
23950
23951 \end_inset
23952 </cell>
23953 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23954 \begin_inset Text
23955
23956 \begin_layout Plain Layout
23957 \begin_inset Formula $\doteq$
23958 \end_inset
23959
23960
23961 \end_layout
23962
23963 \end_inset
23964 </cell>
23965 </row>
23966 <row>
23967 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23968 \begin_inset Text
23969
23970 \begin_layout Plain Layout
23971
23972 \backslash
23973 circeq
23974 \end_layout
23975
23976 \end_inset
23977 </cell>
23978 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23979 \begin_inset Text
23980
23981 \begin_layout Plain Layout
23982 \begin_inset Formula $\circeq$
23983 \end_inset
23984
23985
23986 \end_layout
23987
23988 \end_inset
23989 </cell>
23990 </row>
23991 <row>
23992 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23993 \begin_inset Text
23994
23995 \begin_layout Plain Layout
23996
23997 \backslash
23998 models
23999 \end_layout
24000
24001 \end_inset
24002 </cell>
24003 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24004 \begin_inset Text
24005
24006 \begin_layout Plain Layout
24007 \begin_inset Formula $\models$
24008 \end_inset
24009
24010
24011 \end_layout
24012
24013 \end_inset
24014 </cell>
24015 </row>
24016 <row>
24017 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24018 \begin_inset Text
24019
24020 \begin_layout Plain Layout
24021
24022 \backslash
24023 widehat=
24024 \end_layout
24025
24026 \end_inset
24027 </cell>
24028 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
24029 \begin_inset Text
24030
24031 \begin_layout Plain Layout
24032 \begin_inset Formula $\widehat{=}$
24033 \end_inset
24034
24035
24036 \end_layout
24037
24038 \end_inset
24039 </cell>
24040 </row>
24041 </lyxtabular>
24042
24043 \end_inset
24044
24045
24046 \begin_inset space \hfill{}
24047 \end_inset
24048
24049
24050 \begin_inset Tabular
24051 <lyxtabular version="3" rows="17" columns="2">
24052 <features tabularvalignment="middle">
24053 <column alignment="center" valignment="top" width="0pt">
24054 <column alignment="center" valignment="top" width="0pt">
24055 <row>
24056 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24057 \begin_inset Text
24058
24059 \begin_layout Plain Layout
24060 Befehl
24061 \end_layout
24062
24063 \end_inset
24064 </cell>
24065 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
24066 \begin_inset Text
24067
24068 \begin_layout Plain Layout
24069 Ergebnis
24070 \end_layout
24071
24072 \end_inset
24073 </cell>
24074 </row>
24075 <row>
24076 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24077 \begin_inset Text
24078
24079 \begin_layout Plain Layout
24080 >
24081 \end_layout
24082
24083 \end_inset
24084 </cell>
24085 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24086 \begin_inset Text
24087
24088 \begin_layout Plain Layout
24089 \begin_inset Formula $>$
24090 \end_inset
24091
24092
24093 \end_layout
24094
24095 \end_inset
24096 </cell>
24097 </row>
24098 <row>
24099 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24100 \begin_inset Text
24101
24102 \begin_layout Plain Layout
24103
24104 \backslash
24105 ge
24106 \end_layout
24107
24108 \end_inset
24109 </cell>
24110 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24111 \begin_inset Text
24112
24113 \begin_layout Plain Layout
24114 \begin_inset Formula $\ge$
24115 \end_inset
24116
24117
24118 \end_layout
24119
24120 \end_inset
24121 </cell>
24122 </row>
24123 <row>
24124 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24125 \begin_inset Text
24126
24127 \begin_layout Plain Layout
24128
24129 \backslash
24130 gg
24131 \end_layout
24132
24133 \end_inset
24134 </cell>
24135 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24136 \begin_inset Text
24137
24138 \begin_layout Plain Layout
24139 \begin_inset Formula $\gg$
24140 \end_inset
24141
24142
24143 \end_layout
24144
24145 \end_inset
24146 </cell>
24147 </row>
24148 <row>
24149 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24150 \begin_inset Text
24151
24152 \begin_layout Plain Layout
24153
24154 \backslash
24155 succ
24156 \end_layout
24157
24158 \end_inset
24159 </cell>
24160 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24161 \begin_inset Text
24162
24163 \begin_layout Plain Layout
24164 \begin_inset Formula $\succ$
24165 \end_inset
24166
24167
24168 \end_layout
24169
24170 \end_inset
24171 </cell>
24172 </row>
24173 <row>
24174 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24175 \begin_inset Text
24176
24177 \begin_layout Plain Layout
24178
24179 \backslash
24180 succeq
24181 \end_layout
24182
24183 \end_inset
24184 </cell>
24185 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24186 \begin_inset Text
24187
24188 \begin_layout Plain Layout
24189 \begin_inset Formula $\succeq$
24190 \end_inset
24191
24192
24193 \end_layout
24194
24195 \end_inset
24196 </cell>
24197 </row>
24198 <row>
24199 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24200 \begin_inset Text
24201
24202 \begin_layout Plain Layout
24203
24204 \backslash
24205 supset
24206 \end_layout
24207
24208 \end_inset
24209 </cell>
24210 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24211 \begin_inset Text
24212
24213 \begin_layout Plain Layout
24214 \begin_inset Formula $\supset$
24215 \end_inset
24216
24217
24218 \end_layout
24219
24220 \end_inset
24221 </cell>
24222 </row>
24223 <row>
24224 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24225 \begin_inset Text
24226
24227 \begin_layout Plain Layout
24228
24229 \backslash
24230 supseteq
24231 \end_layout
24232
24233 \end_inset
24234 </cell>
24235 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24236 \begin_inset Text
24237
24238 \begin_layout Plain Layout
24239 \begin_inset Formula $\supseteq$
24240 \end_inset
24241
24242
24243 \end_layout
24244
24245 \end_inset
24246 </cell>
24247 </row>
24248 <row>
24249 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24250 \begin_inset Text
24251
24252 \begin_layout Plain Layout
24253
24254 \backslash
24255 sqsupseteq
24256 \end_layout
24257
24258 \end_inset
24259 </cell>
24260 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24261 \begin_inset Text
24262
24263 \begin_layout Plain Layout
24264 \begin_inset Formula $\sqsupseteq$
24265 \end_inset
24266
24267
24268 \end_layout
24269
24270 \end_inset
24271 </cell>
24272 </row>
24273 <row>
24274 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24275 \begin_inset Text
24276
24277 \begin_layout Plain Layout
24278
24279 \backslash
24280 ni
24281 \end_layout
24282
24283 \end_inset
24284 </cell>
24285 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24286 \begin_inset Text
24287
24288 \begin_layout Plain Layout
24289 \begin_inset Formula $\ni$
24290 \end_inset
24291
24292
24293 \end_layout
24294
24295 \end_inset
24296 </cell>
24297 </row>
24298 <row>
24299 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24300 \begin_inset Text
24301
24302 \begin_layout Plain Layout
24303
24304 \backslash
24305 dashv
24306 \end_layout
24307
24308 \end_inset
24309 </cell>
24310 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24311 \begin_inset Text
24312
24313 \begin_layout Plain Layout
24314 \begin_inset Formula $\dashv$
24315 \end_inset
24316
24317
24318 \end_layout
24319
24320 \end_inset
24321 </cell>
24322 </row>
24323 <row>
24324 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24325 \begin_inset Text
24326
24327 \begin_layout Plain Layout
24328
24329 \backslash
24330 frown
24331 \end_layout
24332
24333 \end_inset
24334 </cell>
24335 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24336 \begin_inset Text
24337
24338 \begin_layout Plain Layout
24339 \begin_inset Formula $\frown$
24340 \end_inset
24341
24342
24343 \end_layout
24344
24345 \end_inset
24346 </cell>
24347 </row>
24348 <row>
24349 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24350 \begin_inset Text
24351
24352 \begin_layout Plain Layout
24353
24354 \backslash
24355 rhd
24356 \end_layout
24357
24358 \end_inset
24359 </cell>
24360 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24361 \begin_inset Text
24362
24363 \begin_layout Plain Layout
24364 \begin_inset Formula $\rhd$
24365 \end_inset
24366
24367
24368 \end_layout
24369
24370 \end_inset
24371 </cell>
24372 </row>
24373 <row>
24374 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24375 \begin_inset Text
24376
24377 \begin_layout Plain Layout
24378
24379 \backslash
24380 unrhd
24381 \end_layout
24382
24383 \end_inset
24384 </cell>
24385 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24386 \begin_inset Text
24387
24388 \begin_layout Plain Layout
24389 \begin_inset Formula $\unrhd$
24390 \end_inset
24391
24392
24393 \end_layout
24394
24395 \end_inset
24396 </cell>
24397 </row>
24398 <row>
24399 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24400 \begin_inset Text
24401
24402 \begin_layout Plain Layout
24403
24404 \backslash
24405 lessgtr
24406 \end_layout
24407
24408 \end_inset
24409 </cell>
24410 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24411 \begin_inset Text
24412
24413 \begin_layout Plain Layout
24414 \begin_inset Formula $\lessgtr$
24415 \end_inset
24416
24417
24418 \end_layout
24419
24420 \end_inset
24421 </cell>
24422 </row>
24423 <row>
24424 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24425 \begin_inset Text
24426
24427 \begin_layout Plain Layout
24428
24429 \backslash
24430 parallel
24431 \end_layout
24432
24433 \end_inset
24434 </cell>
24435 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24436 \begin_inset Text
24437
24438 \begin_layout Plain Layout
24439 \begin_inset Formula $\parallel$
24440 \end_inset
24441
24442
24443 \end_layout
24444
24445 \end_inset
24446 </cell>
24447 </row>
24448 <row>
24449 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24450 \begin_inset Text
24451
24452 \begin_layout Plain Layout
24453
24454 \backslash
24455 nparallel
24456 \end_layout
24457
24458 \end_inset
24459 </cell>
24460 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
24461 \begin_inset Text
24462
24463 \begin_layout Plain Layout
24464 \begin_inset Formula $\nparallel$
24465 \end_inset
24466
24467
24468 \end_layout
24469
24470 \end_inset
24471 </cell>
24472 </row>
24473 </lyxtabular>
24474
24475 \end_inset
24476
24477
24478 \begin_inset space \hfill{}
24479 \end_inset
24480
24481
24482 \end_layout
24483
24484 \begin_layout Standard
24485 \begin_inset VSpace medskip
24486 \end_inset
24487
24488 Die Zeichen 
24489 \series bold
24490
24491 \backslash
24492 lhd
24493 \series default
24494  bzw.
24495  
24496 \series bold
24497
24498 \backslash
24499 rhd
24500 \series default
24501  sind größer als die gleich aussehenden Operatoren
24502 \begin_inset Newline linebreak
24503 \end_inset
24504
24505
24506 \series bold
24507
24508 \backslash
24509 triangleleft
24510 \series default
24511  bzw.
24512  
24513 \series bold
24514
24515 \backslash
24516 triangleright
24517 \series default
24518 .
24519 \end_layout
24520
24521 \begin_layout Standard
24522 Relationen sind im Gegensatz zu Symbolen immer von Leerraum umgeben.
24523 \end_layout
24524
24525 \begin_layout Standard
24526 Relationen mit Beschriftungen können mit Hilfe des Befehls 
24527 \series bold
24528
24529 \backslash
24530 stackrel
24531 \series default
24532
24533 \begin_inset Index idx
24534 status collapsed
24535
24536 \begin_layout Plain Layout
24537 Befehle ! S ! 
24538 \backslash
24539 stackrel
24540 \end_layout
24541
24542 \end_inset
24543
24544  erstellt werden:
24545 \end_layout
24546
24547 \begin_layout Standard
24548 \align center
24549 \begin_inset Tabular
24550 <lyxtabular version="3" rows="2" columns="2">
24551 <features tabularvalignment="middle">
24552 <column alignment="center" valignment="top" width="0">
24553 <column alignment="center" valignment="top" width="0">
24554 <row>
24555 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24556 \begin_inset Text
24557
24558 \begin_layout Plain Layout
24559 Befehl
24560 \end_layout
24561
24562 \end_inset
24563 </cell>
24564 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
24565 \begin_inset Text
24566
24567 \begin_layout Plain Layout
24568 Ergebnis
24569 \begin_inset Note Note
24570 status collapsed
24571
24572 \begin_layout Plain Layout
24573
24574 \series bold
24575
24576 \backslash
24577 raisebox
24578 \series default
24579  dient nur als Abstandhalter.
24580 \end_layout
24581
24582 \end_inset
24583
24584
24585 \end_layout
24586
24587 \end_inset
24588 </cell>
24589 </row>
24590 <row>
24591 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24592 \begin_inset Text
24593
24594 \begin_layout Plain Layout
24595 A(r)
24596 \backslash
24597 stackrel
24598 \begin_inset ERT
24599 status collapsed
24600
24601 \begin_layout Plain Layout
24602
24603
24604 \backslash
24605 leer 
24606 \end_layout
24607
24608 \end_inset
24609
24610 r
24611 \backslash
24612 to
24613 \backslash
24614 infty
24615 \begin_inset ERT
24616 status collapsed
24617
24618 \begin_layout Plain Layout
24619
24620
24621 \backslash
24622 leer 
24623 \end_layout
24624
24625 \end_inset
24626
24627
24628 \begin_inset Formula $\downarrow$
24629 \end_inset
24630
24631
24632 \backslash
24633 approx
24634 \begin_inset ERT
24635 status collapsed
24636
24637 \begin_layout Plain Layout
24638
24639
24640 \backslash
24641 leer 
24642 \end_layout
24643
24644 \end_inset
24645
24646
24647 \begin_inset ERT
24648 status collapsed
24649
24650 \begin_layout Plain Layout
24651
24652
24653 \backslash
24654 leer 
24655 \end_layout
24656
24657 \end_inset
24658
24659 B
24660 \end_layout
24661
24662 \end_inset
24663 </cell>
24664 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
24665 \begin_inset Text
24666
24667 \begin_layout Plain Layout
24668 \begin_inset Formula $\raisebox{5mm}{}A(r)\stackrel{r\to\infty}{\approx}B$
24669 \end_inset
24670
24671
24672 \end_layout
24673
24674 \end_inset
24675 </cell>
24676 </row>
24677 </lyxtabular>
24678
24679 \end_inset
24680
24681
24682 \end_layout
24683
24684 \begin_layout Section
24685 Funktionen
24686 \end_layout
24687
24688 \begin_layout Subsection
24689 Vordefinierte Funktionen
24690 \begin_inset CommandInset label
24691 LatexCommand label
24692 name "sub:Vordefinierte-Funktionen"
24693
24694 \end_inset
24695
24696
24697 \begin_inset Index idx
24698 status collapsed
24699
24700 \begin_layout Plain Layout
24701 Funktionen ! vordefinierte
24702 \end_layout
24703
24704 \end_inset
24705
24706
24707 \end_layout
24708
24709 \begin_layout Standard
24710 Allgemein werden in mathematischen Ausdrücken Variablen 
24711 \shape italic
24712 kursiv
24713 \shape default
24714  gesetzt, Funktionsnamen hingegen nicht, denn 
24715 \begin_inset Formula $sin$
24716 \end_inset
24717
24718  könnte als 
24719 \begin_inset Formula $s\cdot i\cdot n$
24720 \end_inset
24721
24722  missverstanden werden.
24723  Aus diesem Grund gibt es vordefinierte Funktionen, die zusätzlich von Vorfaktor
24724 en etwas abgesetzt sind.
24725  Sie werden als Befehle mit einem Backslash vor dem Funktionsnamen eingefügt.
24726 \end_layout
24727
24728 \begin_layout Standard
24729 \align center
24730 \begin_inset Tabular
24731 <lyxtabular version="3" rows="2" columns="4">
24732 <features tabularvalignment="middle">
24733 <column alignment="center" valignment="top" width="0pt">
24734 <column alignment="center" valignment="top" width="0pt">
24735 <column alignment="center" valignment="top" width="0pt">
24736 <column alignment="center" valignment="top" width="0pt">
24737 <row>
24738 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24739 \begin_inset Text
24740
24741 \begin_layout Plain Layout
24742 Befehl
24743 \end_layout
24744
24745 \end_inset
24746 </cell>
24747 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
24748 \begin_inset Text
24749
24750 \begin_layout Plain Layout
24751 Ergebnis
24752 \end_layout
24753
24754 \end_inset
24755 </cell>
24756 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24757 \begin_inset Text
24758
24759 \begin_layout Plain Layout
24760 Befehl
24761 \end_layout
24762
24763 \end_inset
24764 </cell>
24765 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
24766 \begin_inset Text
24767
24768 \begin_layout Plain Layout
24769 Ergebnis
24770 \end_layout
24771
24772 \end_inset
24773 </cell>
24774 </row>
24775 <row>
24776 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24777 \begin_inset Text
24778
24779 \begin_layout Plain Layout
24780 Asin(x)+B
24781 \end_layout
24782
24783 \end_inset
24784 </cell>
24785 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
24786 \begin_inset Text
24787
24788 \begin_layout Plain Layout
24789 \begin_inset Formula $Asin(x)+B$
24790 \end_inset
24791
24792
24793 \end_layout
24794
24795 \end_inset
24796 </cell>
24797 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24798 \begin_inset Text
24799
24800 \begin_layout Plain Layout
24801 A
24802 \backslash
24803 sin(x)+B
24804 \end_layout
24805
24806 \end_inset
24807 </cell>
24808 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
24809 \begin_inset Text
24810
24811 \begin_layout Plain Layout
24812 \begin_inset Formula $A\sin(x)+B$
24813 \end_inset
24814
24815
24816 \end_layout
24817
24818 \end_inset
24819 </cell>
24820 </row>
24821 </lyxtabular>
24822
24823 \end_inset
24824
24825
24826 \end_layout
24827
24828 \begin_layout Standard
24829 Folgende Funktionen sind vordefiniert:
24830 \end_layout
24831
24832 \begin_layout Standard
24833 \begin_inset VSpace -2mm
24834 \end_inset
24835
24836
24837 \end_layout
24838
24839 \begin_layout Standard
24840 \align center
24841 \begin_inset Tabular
24842 <lyxtabular version="3" rows="9" columns="4">
24843 <features tabularvalignment="middle">
24844 <column alignment="center" valignment="top" width="0pt">
24845 <column alignment="center" valignment="top" width="0pt">
24846 <column alignment="center" valignment="top" width="0pt">
24847 <column alignment="center" valignment="top" width="0pt">
24848 <row>
24849 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24850 \begin_inset Text
24851
24852 \begin_layout Plain Layout
24853 Befehl
24854 \end_layout
24855
24856 \end_inset
24857 </cell>
24858 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24859 \begin_inset Text
24860
24861 \begin_layout Plain Layout
24862 Befehl
24863 \end_layout
24864
24865 \end_inset
24866 </cell>
24867 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24868 \begin_inset Text
24869
24870 \begin_layout Plain Layout
24871 Befehl
24872 \end_layout
24873
24874 \end_inset
24875 </cell>
24876 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
24877 \begin_inset Text
24878
24879 \begin_layout Plain Layout
24880 Befehl
24881 \end_layout
24882
24883 \end_inset
24884 </cell>
24885 </row>
24886 <row>
24887 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24888 \begin_inset Text
24889
24890 \begin_layout Plain Layout
24891
24892 \backslash
24893 sin
24894 \end_layout
24895
24896 \end_inset
24897 </cell>
24898 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24899 \begin_inset Text
24900
24901 \begin_layout Plain Layout
24902
24903 \backslash
24904 sinh
24905 \end_layout
24906
24907 \end_inset
24908 </cell>
24909 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24910 \begin_inset Text
24911
24912 \begin_layout Plain Layout
24913
24914 \backslash
24915 arcsin
24916 \end_layout
24917
24918 \end_inset
24919 </cell>
24920 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24921 \begin_inset Text
24922
24923 \begin_layout Plain Layout
24924
24925 \backslash
24926 sup
24927 \end_layout
24928
24929 \end_inset
24930 </cell>
24931 </row>
24932 <row>
24933 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24934 \begin_inset Text
24935
24936 \begin_layout Plain Layout
24937
24938 \backslash
24939 cos
24940 \end_layout
24941
24942 \end_inset
24943 </cell>
24944 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24945 \begin_inset Text
24946
24947 \begin_layout Plain Layout
24948
24949 \backslash
24950 cosh
24951 \end_layout
24952
24953 \end_inset
24954 </cell>
24955 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24956 \begin_inset Text
24957
24958 \begin_layout Plain Layout
24959
24960 \backslash
24961 arccos
24962 \end_layout
24963
24964 \end_inset
24965 </cell>
24966 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24967 \begin_inset Text
24968
24969 \begin_layout Plain Layout
24970
24971 \backslash
24972 inf
24973 \end_layout
24974
24975 \end_inset
24976 </cell>
24977 </row>
24978 <row>
24979 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24980 \begin_inset Text
24981
24982 \begin_layout Plain Layout
24983
24984 \backslash
24985 tan
24986 \end_layout
24987
24988 \end_inset
24989 </cell>
24990 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24991 \begin_inset Text
24992
24993 \begin_layout Plain Layout
24994
24995 \backslash
24996 tanh
24997 \end_layout
24998
24999 \end_inset
25000 </cell>
25001 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25002 \begin_inset Text
25003
25004 \begin_layout Plain Layout
25005
25006 \backslash
25007 arctan
25008 \end_layout
25009
25010 \end_inset
25011 </cell>
25012 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25013 \begin_inset Text
25014
25015 \begin_layout Plain Layout
25016
25017 \backslash
25018 lim
25019 \end_layout
25020
25021 \end_inset
25022 </cell>
25023 </row>
25024 <row>
25025 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25026 \begin_inset Text
25027
25028 \begin_layout Plain Layout
25029
25030 \backslash
25031 cot
25032 \end_layout
25033
25034 \end_inset
25035 </cell>
25036 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25037 \begin_inset Text
25038
25039 \begin_layout Plain Layout
25040
25041 \backslash
25042 coth
25043 \end_layout
25044
25045 \end_inset
25046 </cell>
25047 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25048 \begin_inset Text
25049
25050 \begin_layout Plain Layout
25051
25052 \backslash
25053 arg
25054 \end_layout
25055
25056 \end_inset
25057 </cell>
25058 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25059 \begin_inset Text
25060
25061 \begin_layout Plain Layout
25062
25063 \backslash
25064 liminf
25065 \end_layout
25066
25067 \end_inset
25068 </cell>
25069 </row>
25070 <row>
25071 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25072 \begin_inset Text
25073
25074 \begin_layout Plain Layout
25075
25076 \backslash
25077 sec
25078 \end_layout
25079
25080 \end_inset
25081 </cell>
25082 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25083 \begin_inset Text
25084
25085 \begin_layout Plain Layout
25086
25087 \backslash
25088 min
25089 \end_layout
25090
25091 \end_inset
25092 </cell>
25093 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25094 \begin_inset Text
25095
25096 \begin_layout Plain Layout
25097
25098 \backslash
25099 deg
25100 \end_layout
25101
25102 \end_inset
25103 </cell>
25104 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25105 \begin_inset Text
25106
25107 \begin_layout Plain Layout
25108
25109 \backslash
25110 limsup
25111 \end_layout
25112
25113 \end_inset
25114 </cell>
25115 </row>
25116 <row>
25117 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25118 \begin_inset Text
25119
25120 \begin_layout Plain Layout
25121
25122 \backslash
25123 csc
25124 \end_layout
25125
25126 \end_inset
25127 </cell>
25128 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25129 \begin_inset Text
25130
25131 \begin_layout Plain Layout
25132
25133 \backslash
25134 max
25135 \end_layout
25136
25137 \end_inset
25138 </cell>
25139 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25140 \begin_inset Text
25141
25142 \begin_layout Plain Layout
25143
25144 \backslash
25145 det
25146 \end_layout
25147
25148 \end_inset
25149 </cell>
25150 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25151 \begin_inset Text
25152
25153 \begin_layout Plain Layout
25154
25155 \backslash
25156 Pr
25157 \end_layout
25158
25159 \end_inset
25160 </cell>
25161 </row>
25162 <row>
25163 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25164 \begin_inset Text
25165
25166 \begin_layout Plain Layout
25167
25168 \backslash
25169 ln
25170 \end_layout
25171
25172 \end_inset
25173 </cell>
25174 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25175 \begin_inset Text
25176
25177 \begin_layout Plain Layout
25178
25179 \backslash
25180 exp
25181 \end_layout
25182
25183 \end_inset
25184 </cell>
25185 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25186 \begin_inset Text
25187
25188 \begin_layout Plain Layout
25189
25190 \backslash
25191 dim
25192 \end_layout
25193
25194 \end_inset
25195 </cell>
25196 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25197 \begin_inset Text
25198
25199 \begin_layout Plain Layout
25200
25201 \backslash
25202 hom
25203 \end_layout
25204
25205 \end_inset
25206 </cell>
25207 </row>
25208 <row>
25209 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25210 \begin_inset Text
25211
25212 \begin_layout Plain Layout
25213
25214 \backslash
25215 lg
25216 \end_layout
25217
25218 \end_inset
25219 </cell>
25220 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25221 \begin_inset Text
25222
25223 \begin_layout Plain Layout
25224
25225 \backslash
25226 log
25227 \end_layout
25228
25229 \end_inset
25230 </cell>
25231 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25232 \begin_inset Text
25233
25234 \begin_layout Plain Layout
25235
25236 \backslash
25237 ker
25238 \end_layout
25239
25240 \end_inset
25241 </cell>
25242 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
25243 \begin_inset Text
25244
25245 \begin_layout Plain Layout
25246
25247 \backslash
25248 gcd
25249 \end_layout
25250
25251 \end_inset
25252 </cell>
25253 </row>
25254 </lyxtabular>
25255
25256 \end_inset
25257
25258
25259 \end_layout
25260
25261 \begin_layout Standard
25262 Sie können auch über den Mathe-Werkzeugleistenknopf 
25263 \begin_inset Graphics
25264         filename ../../images/math/functions.png
25265         scale 85
25266
25267 \end_inset
25268
25269  eingefügt werden.
25270 \end_layout
25271
25272 \begin_layout Subsection
25273 Selbst definierte Funktionen
25274 \begin_inset Index idx
25275 status collapsed
25276
25277 \begin_layout Plain Layout
25278 Funktionen ! selbstdefinierte
25279 \end_layout
25280
25281 \end_inset
25282
25283
25284 \end_layout
25285
25286 \begin_layout Standard
25287 Will man eine Funktion verwenden, die nicht vordefiniert ist, wie z.
25288 \begin_inset space \thinspace{}
25289 \end_inset
25290
25291 B.
25292  die Signumfunktion sgn(x), hat man zwei Möglichkeiten:
25293 \end_layout
25294
25295 \begin_layout Itemize
25296 Man definiert die Funktion selbst.
25297  Dazu gibt man im LaTeX-Vorspann die Zeile
25298 \begin_inset Newline newline
25299 \end_inset
25300
25301
25302 \begin_inset VSpace -3mm
25303 \end_inset
25304
25305
25306 \begin_inset Newline newline
25307 \end_inset
25308
25309
25310 \series bold
25311
25312 \backslash
25313 DeclareMathOperator{
25314 \backslash
25315 sgn}{sgn}
25316 \series default
25317
25318 \begin_inset Index idx
25319 status collapsed
25320
25321 \begin_layout Plain Layout
25322 Befehle ! D ! 
25323 \backslash
25324 dbinom@
25325 \backslash
25326 DeclareMathOperator
25327 \end_layout
25328
25329 \end_inset
25330
25331
25332 \begin_inset Newline newline
25333 \end_inset
25334
25335
25336 \begin_inset VSpace -2mm
25337 \end_inset
25338
25339
25340 \begin_inset Newline newline
25341 \end_inset
25342
25343 ein
25344 \begin_inset Foot
25345 status collapsed
25346
25347 \begin_layout Plain Layout
25348 Näheres zu 
25349 \series bold
25350
25351 \backslash
25352 DeclareMathOperator
25353 \series default
25354  siehe 
25355 \begin_inset CommandInset ref
25356 LatexCommand ref
25357 reference "sub:Selbstdefinierte-Operatoren"
25358
25359 \end_inset
25360
25361 .
25362 \end_layout
25363
25364 \end_inset
25365
25366 .
25367  Nun kann man mit dem Befehl 
25368 \series bold
25369
25370 \backslash
25371 sgn
25372 \series default
25373  die neu definierte Funktion aufrufen.
25374 \end_layout
25375
25376 \begin_layout Itemize
25377 Man schreibt die Formel wie gewohnt, markiert den Formelnamen, also in unserem
25378  Beispiel die Buchstaben 
25379 \emph on
25380 sgn
25381 \emph default
25382 , und wandelt ihn in in mathematischen Text um.
25383  Zwischen Vorfaktor und Funktion fügt man einen kleinen Leerraum ein.
25384 \end_layout
25385
25386 \begin_layout Standard
25387 Das Ergebnis ist bei beiden Methoden dasselbe wie bei einer vordefinierten
25388  Funktion
25389 \begin_inset Foot
25390 status collapsed
25391
25392 \begin_layout Plain Layout
25393 Selbst definierte Funktionen werden in LyX rot, vordefinierte schwarz angezeigt.
25394 \end_layout
25395
25396 \end_inset
25397
25398 :
25399 \end_layout
25400
25401 \begin_layout Standard
25402 \align center
25403 \begin_inset Tabular
25404 <lyxtabular version="3" rows="3" columns="2">
25405 <features tabularvalignment="middle">
25406 <column alignment="center" valignment="top" width="0pt">
25407 <column alignment="center" valignment="top" width="0pt">
25408 <row>
25409 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25410 \begin_inset Text
25411
25412 \begin_layout Plain Layout
25413 Befehl
25414 \end_layout
25415
25416 \end_inset
25417 </cell>
25418 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
25419 \begin_inset Text
25420
25421 \begin_layout Plain Layout
25422 Ergebnis
25423 \end_layout
25424
25425 \end_inset
25426 </cell>
25427 </row>
25428 <row>
25429 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25430 \begin_inset Text
25431
25432 \begin_layout Plain Layout
25433 A
25434 \backslash
25435 sgn(x)+B
25436 \end_layout
25437
25438 \end_inset
25439 </cell>
25440 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
25441 \begin_inset Text
25442
25443 \begin_layout Plain Layout
25444 \begin_inset Formula $A\sgn(x)+B$
25445 \end_inset
25446
25447
25448 \end_layout
25449
25450 \end_inset
25451 </cell>
25452 </row>
25453 <row>
25454 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25455 \begin_inset Text
25456
25457 \begin_layout Plain Layout
25458 A
25459 \backslash
25460 ,
25461 \begin_inset Formula $\underbrace{\textrm{sgn}}_{\textrm{Alt-m}\,\textrm{m}}$
25462 \end_inset
25463
25464 (x)+B
25465 \end_layout
25466
25467 \end_inset
25468 </cell>
25469 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
25470 \begin_inset Text
25471
25472 \begin_layout Plain Layout
25473 \begin_inset Formula $A\,\textrm{sgn}(x)+B$
25474 \end_inset
25475
25476
25477 \end_layout
25478
25479 \end_inset
25480 </cell>
25481 </row>
25482 </lyxtabular>
25483
25484 \end_inset
25485
25486
25487 \end_layout
25488
25489 \begin_layout Standard
25490 Die erste Methode ist besser geeignet, wenn die selbst definierte Funktion
25491  mehrfach verwendet werden soll.
25492 \end_layout
25493
25494 \begin_layout Subsection
25495 Grenzwerte
25496 \begin_inset Index idx
25497 status collapsed
25498
25499 \begin_layout Plain Layout
25500 Grenzwerte
25501 \end_layout
25502
25503 \end_inset
25504
25505
25506 \end_layout
25507
25508 \begin_layout Standard
25509 Für Grenzwerte sind außer 
25510 \series bold
25511
25512 \backslash
25513 lim
25514 \series default
25515
25516 \begin_inset Index idx
25517 status collapsed
25518
25519 \begin_layout Plain Layout
25520 Befehle ! L ! 
25521 \backslash
25522 lim
25523 \end_layout
25524
25525 \end_inset
25526
25527
25528 \series bold
25529
25530 \backslash
25531 liminf
25532 \series default
25533  und 
25534 \series bold
25535
25536 \backslash
25537 limsup
25538 \series default
25539  noch folgende Funktionen definiert:
25540 \end_layout
25541
25542 \begin_layout Standard
25543 \align center
25544 \begin_inset Tabular
25545 <lyxtabular version="3" rows="5" columns="2">
25546 <features tabularvalignment="middle">
25547 <column alignment="center" valignment="top" width="0">
25548 <column alignment="center" valignment="top" width="0">
25549 <row>
25550 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25551 \begin_inset Text
25552
25553 \begin_layout Plain Layout
25554 Befehl
25555 \end_layout
25556
25557 \end_inset
25558 </cell>
25559 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
25560 \begin_inset Text
25561
25562 \begin_layout Plain Layout
25563 Ergebnis
25564 \begin_inset Note Note
25565 status collapsed
25566
25567 \begin_layout Plain Layout
25568
25569 \series bold
25570
25571 \backslash
25572 raisebox
25573 \series default
25574  dient nur als Abstandhalter.
25575 \end_layout
25576
25577 \end_inset
25578
25579
25580 \end_layout
25581
25582 \end_inset
25583 </cell>
25584 </row>
25585 <row>
25586 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25587 \begin_inset Text
25588
25589 \begin_layout Plain Layout
25590
25591 \backslash
25592 varliminf
25593 \end_layout
25594
25595 \end_inset
25596 </cell>
25597 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25598 \begin_inset Text
25599
25600 \begin_layout Plain Layout
25601 \begin_inset Formula $\varliminf$
25602 \end_inset
25603
25604
25605 \end_layout
25606
25607 \end_inset
25608 </cell>
25609 </row>
25610 <row>
25611 <cell alignment="center" valignment="top" leftline="true" usebox="none">
25612 \begin_inset Text
25613
25614 \begin_layout Plain Layout
25615
25616 \backslash
25617 varlimsup
25618 \end_layout
25619
25620 \end_inset
25621 </cell>
25622 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
25623 \begin_inset Text
25624
25625 \begin_layout Plain Layout
25626 \begin_inset Formula $\varlimsup$
25627 \end_inset
25628
25629
25630 \end_layout
25631
25632 \end_inset
25633 </cell>
25634 </row>
25635 <row>
25636 <cell alignment="center" valignment="top" leftline="true" usebox="none">
25637 \begin_inset Text
25638
25639 \begin_layout Plain Layout
25640
25641 \backslash
25642 varprojlim
25643 \end_layout
25644
25645 \end_inset
25646 </cell>
25647 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
25648 \begin_inset Text
25649
25650 \begin_layout Plain Layout
25651 \begin_inset Formula $\varprojlim$
25652 \end_inset
25653
25654
25655 \end_layout
25656
25657 \end_inset
25658 </cell>
25659 </row>
25660 <row>
25661 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
25662 \begin_inset Text
25663
25664 \begin_layout Plain Layout
25665
25666 \backslash
25667 varinjlim
25668 \end_layout
25669
25670 \end_inset
25671 </cell>
25672 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
25673 \begin_inset Text
25674
25675 \begin_layout Plain Layout
25676 \begin_inset Formula $\varinjlim$
25677 \end_inset
25678
25679
25680 \begin_inset Formula $\raisebox{-2.5mm}{}$
25681 \end_inset
25682
25683
25684 \end_layout
25685
25686 \end_inset
25687 </cell>
25688 </row>
25689 </lyxtabular>
25690
25691 \end_inset
25692
25693
25694 \end_layout
25695
25696 \begin_layout Standard
25697 \begin_inset VSpace medskip
25698 \end_inset
25699
25700 Der Grenzwert wird durch Tiefstellen erzeugt.
25701  Bei einer eingebetteten Formel wird er rechts neben die Funktion gesetzt:
25702 \end_layout
25703
25704 \begin_layout Standard
25705 \align center
25706 \begin_inset Tabular
25707 <lyxtabular version="3" rows="2" columns="2">
25708 <features tabularvalignment="middle">
25709 <column alignment="center" valignment="top" width="0pt">
25710 <column alignment="center" valignment="top" width="0pt">
25711 <row>
25712 <cell alignment="center" valignment="top" usebox="none">
25713 \begin_inset Text
25714
25715 \begin_layout Plain Layout
25716 Befehl
25717 \end_layout
25718
25719 \end_inset
25720 </cell>
25721 <cell alignment="center" valignment="top" usebox="none">
25722 \begin_inset Text
25723
25724 \begin_layout Plain Layout
25725 \begin_inset space \hspace{}
25726 \length 1cm
25727 \end_inset
25728
25729 Ergebnis
25730 \begin_inset Note Note
25731 status collapsed
25732
25733 \begin_layout Plain Layout
25734 Der Leerraum und 
25735 \series bold
25736
25737 \backslash
25738 raisebox
25739 \series default
25740  dienen nur als Abstandhalter.
25741 \end_layout
25742
25743 \end_inset
25744
25745
25746 \end_layout
25747
25748 \end_inset
25749 </cell>
25750 </row>
25751 <row>
25752 <cell alignment="center" valignment="top" usebox="none">
25753 \begin_inset Text
25754
25755 \begin_layout Plain Layout
25756
25757 \backslash
25758 lim_x
25759 \backslash
25760 to
25761 \begin_inset ERT
25762 status collapsed
25763
25764 \begin_layout Plain Layout
25765
25766
25767 \backslash
25768 leer 
25769 \end_layout
25770
25771 \end_inset
25772
25773 A
25774 \begin_inset ERT
25775 status collapsed
25776
25777 \begin_layout Plain Layout
25778
25779
25780 \backslash
25781 leer 
25782 \end_layout
25783
25784 \end_inset
25785
25786 x=B
25787 \end_layout
25788
25789 \end_inset
25790 </cell>
25791 <cell alignment="center" valignment="top" usebox="none">
25792 \begin_inset Text
25793
25794 \begin_layout Plain Layout
25795 \begin_inset Formula $\hspace{1cm}\raisebox{5mm}{}\lim_{x\to A}x=B$
25796 \end_inset
25797
25798
25799 \end_layout
25800
25801 \end_inset
25802 </cell>
25803 </row>
25804 </lyxtabular>
25805
25806 \end_inset
25807
25808
25809 \end_layout
25810
25811 \begin_layout Standard
25812 In einer abgesetzten Formel steht der Grenzwert wie gewohnt darunter:
25813 \begin_inset Formula \[
25814 \lim_{x\to A}x=B\]
25815
25816 \end_inset
25817
25818
25819 \end_layout
25820
25821 \begin_layout Subsection
25822 Modulo-Funktionen
25823 \begin_inset Index idx
25824 status collapsed
25825
25826 \begin_layout Plain Layout
25827 Funktionen ! Modulo-
25828 \end_layout
25829
25830 \end_inset
25831
25832
25833 \end_layout
25834
25835 \begin_layout Standard
25836 Eine Besonderheit stellt die Modulo-Funktion dar, denn es gibt sie in vier
25837  Varianten.
25838 \end_layout
25839
25840 \begin_layout Standard
25841 Die Varianten in einer abgesetzten Formel:
25842 \begin_inset Formula \begin{align*}
25843 \underline{\textrm{Befehl}\raisebox{-0.9mm}{}} &  & \underline{\textrm{Ergebnis}}\\
25844 \mathrm{a\backslash mod\textrm{\leer}b} &  & a\mod b\\
25845 \mathrm{a\backslash pmod\textrm{\leer}b} &  & a\pmod b\\
25846 \mathrm{a\backslash bmod\textrm{\leer}b} &  & a\bmod b\\
25847 \mathrm{a\backslash pod\textrm{\leer}b} &  & a\pod b
25848 \end{align*}
25849
25850 \end_inset
25851
25852
25853 \end_layout
25854
25855 \begin_layout Standard
25856 In einer eingebetteten Formel wird bei allen Varianten vor den Funktionsnamen
25857  weniger Leerraum gesetzt.
25858 \end_layout
25859
25860 \begin_layout Section
25861 Sonderzeichen
25862 \begin_inset Index idx
25863 status collapsed
25864
25865 \begin_layout Plain Layout
25866 Sonderzeichen
25867 \end_layout
25868
25869 \end_inset
25870
25871
25872 \end_layout
25873
25874 \begin_layout Subsection
25875 Sonderzeichen im mathematischen Text
25876 \end_layout
25877
25878 \begin_layout Standard
25879 Die folgenden Befehle können nur im mathematischen Textmodus oder im TeX-Modus
25880  verwendet werden:
25881 \end_layout
25882
25883 \begin_layout Standard
25884 \begin_inset space \hfill{}
25885 \end_inset
25886
25887
25888 \begin_inset Tabular
25889 <lyxtabular version="3" rows="8" columns="2">
25890 <features tabularvalignment="middle">
25891 <column alignment="block" valignment="top" width="0">
25892 <column alignment="block" valignment="top" width="0">
25893 <row>
25894 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25895 \begin_inset Text
25896
25897 \begin_layout Plain Layout
25898 Befehl
25899 \end_layout
25900
25901 \end_inset
25902 </cell>
25903 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
25904 \begin_inset Text
25905
25906 \begin_layout Plain Layout
25907 Ergebnis
25908 \end_layout
25909
25910 \end_inset
25911 </cell>
25912 </row>
25913 <row>
25914 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25915 \begin_inset Text
25916
25917 \begin_layout Plain Layout
25918
25919 \backslash
25920 oe
25921 \end_layout
25922
25923 \end_inset
25924 </cell>
25925 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25926 \begin_inset Text
25927
25928 \begin_layout Plain Layout
25929 \begin_inset Formula $\textrm{œ}$
25930 \end_inset
25931
25932
25933 \end_layout
25934
25935 \end_inset
25936 </cell>
25937 </row>
25938 <row>
25939 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25940 \begin_inset Text
25941
25942 \begin_layout Plain Layout
25943
25944 \backslash
25945 OE
25946 \end_layout
25947
25948 \end_inset
25949 </cell>
25950 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25951 \begin_inset Text
25952
25953 \begin_layout Plain Layout
25954 \begin_inset Formula $\textrm{Œ}$
25955 \end_inset
25956
25957
25958 \end_layout
25959
25960 \end_inset
25961 </cell>
25962 </row>
25963 <row>
25964 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25965 \begin_inset Text
25966
25967 \begin_layout Plain Layout
25968
25969 \backslash
25970 ae
25971 \end_layout
25972
25973 \end_inset
25974 </cell>
25975 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25976 \begin_inset Text
25977
25978 \begin_layout Plain Layout
25979 \begin_inset Formula $\textrm{æ}$
25980 \end_inset
25981
25982
25983 \end_layout
25984
25985 \end_inset
25986 </cell>
25987 </row>
25988 <row>
25989 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25990 \begin_inset Text
25991
25992 \begin_layout Plain Layout
25993
25994 \backslash
25995 AE
25996 \end_layout
25997
25998 \end_inset
25999 </cell>
26000 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26001 \begin_inset Text
26002
26003 \begin_layout Plain Layout
26004 \begin_inset Formula $\textrm{Æ}$
26005 \end_inset
26006
26007
26008 \end_layout
26009
26010 \end_inset
26011 </cell>
26012 </row>
26013 <row>
26014 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26015 \begin_inset Text
26016
26017 \begin_layout Plain Layout
26018
26019 \backslash
26020 aa
26021 \end_layout
26022
26023 \end_inset
26024 </cell>
26025 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26026 \begin_inset Text
26027
26028 \begin_layout Plain Layout
26029 \begin_inset Formula $\textrm{\aa}$
26030 \end_inset
26031
26032
26033 \end_layout
26034
26035 \end_inset
26036 </cell>
26037 </row>
26038 <row>
26039 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
26040 \begin_inset Text
26041
26042 \begin_layout Plain Layout
26043
26044 \backslash
26045 AA
26046 \begin_inset Index idx
26047 status collapsed
26048
26049 \begin_layout Plain Layout
26050
26051 \backslash
26052 @
26053 \begin_inset ERT
26054 status collapsed
26055
26056 \begin_layout Plain Layout
26057
26058
26059 \backslash
26060 textrm{
26061 \backslash
26062 AA}
26063 \end_layout
26064
26065 \end_inset
26066
26067
26068 \end_layout
26069
26070 \end_inset
26071
26072
26073 \end_layout
26074
26075 \end_inset
26076 </cell>
26077 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
26078 \begin_inset Text
26079
26080 \begin_layout Plain Layout
26081 \begin_inset Formula $\textrm{Å}$
26082 \end_inset
26083
26084
26085 \end_layout
26086
26087 \end_inset
26088 </cell>
26089 </row>
26090 <row>
26091 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
26092 \begin_inset Text
26093
26094 \begin_layout Plain Layout
26095
26096 \backslash
26097 i
26098 \end_layout
26099
26100 \end_inset
26101 </cell>
26102 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
26103 \begin_inset Text
26104
26105 \begin_layout Plain Layout
26106 \begin_inset Formula $\textrm{ı}$
26107 \end_inset
26108
26109
26110 \end_layout
26111
26112 \end_inset
26113 </cell>
26114 </row>
26115 </lyxtabular>
26116
26117 \end_inset
26118
26119
26120 \begin_inset space \hfill{}
26121 \end_inset
26122
26123
26124 \begin_inset Tabular
26125 <lyxtabular version="3" rows="8" columns="2">
26126 <features tabularvalignment="middle">
26127 <column alignment="block" valignment="top" width="0">
26128 <column alignment="center" valignment="top" width="0">
26129 <row>
26130 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
26131 \begin_inset Text
26132
26133 \begin_layout Plain Layout
26134 Befehl
26135 \begin_inset Note Note
26136 status collapsed
26137
26138 \begin_layout Plain Layout
26139 Der Leerraum von 0
26140 \begin_inset space \thinspace{}
26141 \end_inset
26142
26143 mm dient nur zur Trennung,da sonst im Ausdruck ¡ bzw.
26144  ¿ erscheinen würde.
26145 \end_layout
26146
26147 \end_inset
26148
26149
26150 \end_layout
26151
26152 \end_inset
26153 </cell>
26154 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
26155 \begin_inset Text
26156
26157 \begin_layout Plain Layout
26158 Ergebnis
26159 \end_layout
26160
26161 \end_inset
26162 </cell>
26163 </row>
26164 <row>
26165 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26166 \begin_inset Text
26167
26168 \begin_layout Plain Layout
26169
26170 \backslash
26171 o
26172 \end_layout
26173
26174 \end_inset
26175 </cell>
26176 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26177 \begin_inset Text
26178
26179 \begin_layout Plain Layout
26180 \begin_inset Formula $\textrm{ø}$
26181 \end_inset
26182
26183
26184 \end_layout
26185
26186 \end_inset
26187 </cell>
26188 </row>
26189 <row>
26190 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26191 \begin_inset Text
26192
26193 \begin_layout Plain Layout
26194
26195 \backslash
26196 O
26197 \end_layout
26198
26199 \end_inset
26200 </cell>
26201 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26202 \begin_inset Text
26203
26204 \begin_layout Plain Layout
26205 \begin_inset Formula $\textrm{Ø}$
26206 \end_inset
26207
26208
26209 \end_layout
26210
26211 \end_inset
26212 </cell>
26213 </row>
26214 <row>
26215 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26216 \begin_inset Text
26217
26218 \begin_layout Plain Layout
26219
26220 \backslash
26221 l
26222 \end_layout
26223
26224 \end_inset
26225 </cell>
26226 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26227 \begin_inset Text
26228
26229 \begin_layout Plain Layout
26230 \begin_inset Formula $\textrm{ł}$
26231 \end_inset
26232
26233
26234 \end_layout
26235
26236 \end_inset
26237 </cell>
26238 </row>
26239 <row>
26240 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26241 \begin_inset Text
26242
26243 \begin_layout Plain Layout
26244
26245 \backslash
26246 L
26247 \end_layout
26248
26249 \end_inset
26250 </cell>
26251 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26252 \begin_inset Text
26253
26254 \begin_layout Plain Layout
26255 \begin_inset Formula $\textrm{Ł}$
26256 \end_inset
26257
26258
26259 \end_layout
26260
26261 \end_inset
26262 </cell>
26263 </row>
26264 <row>
26265 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
26266 \begin_inset Text
26267
26268 \begin_layout Plain Layout
26269 !
26270 \begin_inset space \hspace{}
26271 \length 0mm
26272 \end_inset
26273
26274 `
26275 \begin_inset ERT
26276 status collapsed
26277
26278 \begin_layout Plain Layout
26279
26280
26281 \backslash
26282 leer 
26283 \end_layout
26284
26285 \end_inset
26286
26287
26288 \end_layout
26289
26290 \end_inset
26291 </cell>
26292 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
26293 \begin_inset Text
26294
26295 \begin_layout Plain Layout
26296 \begin_inset Formula $\textrm{!`}$
26297 \end_inset
26298
26299
26300 \end_layout
26301
26302 \end_inset
26303 </cell>
26304 </row>
26305 <row>
26306 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
26307 \begin_inset Text
26308
26309 \begin_layout Plain Layout
26310 ?
26311 \begin_inset space \hspace{}
26312 \length 0mm
26313 \end_inset
26314
26315 `
26316 \begin_inset ERT
26317 status collapsed
26318
26319 \begin_layout Plain Layout
26320
26321
26322 \backslash
26323 leer 
26324 \end_layout
26325
26326 \end_inset
26327
26328
26329 \end_layout
26330
26331 \end_inset
26332 </cell>
26333 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
26334 \begin_inset Text
26335
26336 \begin_layout Plain Layout
26337 \begin_inset Formula $\textrm{?`}$
26338 \end_inset
26339
26340
26341 \end_layout
26342
26343 \end_inset
26344 </cell>
26345 </row>
26346 <row>
26347 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
26348 \begin_inset Text
26349
26350 \begin_layout Plain Layout
26351
26352 \backslash
26353 j
26354 \end_layout
26355
26356 \end_inset
26357 </cell>
26358 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
26359 \begin_inset Text
26360
26361 \begin_layout Plain Layout
26362 \begin_inset Formula $\textrm{ȷ}$
26363 \end_inset
26364
26365
26366 \end_layout
26367
26368 \end_inset
26369 </cell>
26370 </row>
26371 </lyxtabular>
26372
26373 \end_inset
26374
26375
26376 \begin_inset space \hfill{}
26377 \end_inset
26378
26379
26380 \end_layout
26381
26382 \begin_layout Standard
26383 Die Zeichen 
26384 \begin_inset Formula $\textrm{\textrm{Å}}$
26385 \end_inset
26386
26387  und 
26388 \begin_inset Formula $\textrm{\textrm{Ø}}$
26389 \end_inset
26390
26391  können auch über den Mathe-Werkzeugleistenknopf 
26392 \begin_inset Graphics
26393         filename ../../images/math/digamma.png
26394         scale 85
26395
26396 \end_inset
26397
26398  eingefügt werden.
26399 \end_layout
26400
26401 \begin_layout Standard
26402 Eine Ausnahme bilden die Befehle 
26403 \series bold
26404 !
26405 \begin_inset space \hspace{}
26406 \length 0mm
26407 \end_inset
26408
26409 `
26410 \series default
26411  und 
26412 \series bold
26413 ?
26414 \begin_inset space \hspace{}
26415 \length 0mm
26416 \end_inset
26417
26418 `
26419 \series default
26420 , denn man kann sie in LyX direkt in den Text eingeben.
26421 \end_layout
26422
26423 \begin_layout Subsection
26424 Akzente im Text
26425 \begin_inset CommandInset label
26426 LatexCommand label
26427 name "sub:Sonderzeichen-Akzente"
26428
26429 \end_inset
26430
26431
26432 \begin_inset Index idx
26433 status collapsed
26434
26435 \begin_layout Plain Layout
26436 Akzente ! im Text
26437 \end_layout
26438
26439 \end_inset
26440
26441
26442 \end_layout
26443
26444 \begin_layout Standard
26445 Man kann mit den folgenden Befehlen sämtliche Buchstaben akzentuieren.
26446  Die Befehle müssen dazu im TeX-Modus eingegeben werden.
26447 \end_layout
26448
26449 \begin_layout Standard
26450 \begin_inset space \hfill{}
26451 \end_inset
26452
26453
26454 \begin_inset Tabular
26455 <lyxtabular version="3" rows="8" columns="2">
26456 <features tabularvalignment="middle">
26457 <column alignment="block" valignment="top" width="0">
26458 <column alignment="block" valignment="top" width="0">
26459 <row>
26460 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
26461 \begin_inset Text
26462
26463 \begin_layout Plain Layout
26464 Befehl
26465 \end_layout
26466
26467 \end_inset
26468 </cell>
26469 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
26470 \begin_inset Text
26471
26472 \begin_layout Plain Layout
26473 Ergebnis
26474 \end_layout
26475
26476 \end_inset
26477 </cell>
26478 </row>
26479 <row>
26480 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26481 \begin_inset Text
26482
26483 \begin_layout Plain Layout
26484
26485 \backslash
26486
26487 \begin_inset Quotes grd
26488 \end_inset
26489
26490 e
26491 \end_layout
26492
26493 \end_inset
26494 </cell>
26495 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26496 \begin_inset Text
26497
26498 \begin_layout Plain Layout
26499 \begin_inset ERT
26500 status collapsed
26501
26502 \begin_layout Plain Layout
26503
26504
26505 \backslash
26506 "e
26507 \end_layout
26508
26509 \end_inset
26510
26511
26512 \end_layout
26513
26514 \end_inset
26515 </cell>
26516 </row>
26517 <row>
26518 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26519 \begin_inset Text
26520
26521 \begin_layout Plain Layout
26522
26523 \backslash
26524 `e
26525 \end_layout
26526
26527 \end_inset
26528 </cell>
26529 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26530 \begin_inset Text
26531
26532 \begin_layout Plain Layout
26533 \begin_inset ERT
26534 status collapsed
26535
26536 \begin_layout Plain Layout
26537
26538
26539 \backslash
26540 `e
26541 \end_layout
26542
26543 \end_inset
26544
26545
26546 \end_layout
26547
26548 \end_inset
26549 </cell>
26550 </row>
26551 <row>
26552 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26553 \begin_inset Text
26554
26555 \begin_layout Plain Layout
26556
26557 \backslash
26558 ^
26559 \begin_inset ERT
26560 status collapsed
26561
26562 \begin_layout Plain Layout
26563
26564
26565 \backslash
26566 leer 
26567 \end_layout
26568
26569 \end_inset
26570
26571 e
26572 \end_layout
26573
26574 \end_inset
26575 </cell>
26576 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26577 \begin_inset Text
26578
26579 \begin_layout Plain Layout
26580 \begin_inset ERT
26581 status collapsed
26582
26583 \begin_layout Plain Layout
26584
26585
26586 \backslash
26587 ^e
26588 \end_layout
26589
26590 \end_inset
26591
26592
26593 \end_layout
26594
26595 \end_inset
26596 </cell>
26597 </row>
26598 <row>
26599 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26600 \begin_inset Text
26601
26602 \begin_layout Plain Layout
26603
26604 \backslash
26605 =e
26606 \end_layout
26607
26608 \end_inset
26609 </cell>
26610 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26611 \begin_inset Text
26612
26613 \begin_layout Plain Layout
26614 \begin_inset ERT
26615 status collapsed
26616
26617 \begin_layout Plain Layout
26618
26619
26620 \backslash
26621 =e
26622 \end_layout
26623
26624 \end_inset
26625
26626
26627 \end_layout
26628
26629 \end_inset
26630 </cell>
26631 </row>
26632 <row>
26633 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26634 \begin_inset Text
26635
26636 \begin_layout Plain Layout
26637
26638 \backslash
26639 u
26640 \begin_inset ERT
26641 status collapsed
26642
26643 \begin_layout Plain Layout
26644
26645
26646 \backslash
26647 leer 
26648 \end_layout
26649
26650 \end_inset
26651
26652 e
26653 \end_layout
26654
26655 \end_inset
26656 </cell>
26657 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26658 \begin_inset Text
26659
26660 \begin_layout Plain Layout
26661 \begin_inset ERT
26662 status collapsed
26663
26664 \begin_layout Plain Layout
26665
26666
26667 \backslash
26668 u e
26669 \end_layout
26670
26671 \end_inset
26672
26673
26674 \end_layout
26675
26676 \end_inset
26677 </cell>
26678 </row>
26679 <row>
26680 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
26681 \begin_inset Text
26682
26683 \begin_layout Plain Layout
26684
26685 \backslash
26686 b
26687 \begin_inset ERT
26688 status collapsed
26689
26690 \begin_layout Plain Layout
26691
26692
26693 \backslash
26694 leer 
26695 \end_layout
26696
26697 \end_inset
26698
26699 e
26700 \end_layout
26701
26702 \end_inset
26703 </cell>
26704 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
26705 \begin_inset Text
26706
26707 \begin_layout Plain Layout
26708 \begin_inset ERT
26709 status collapsed
26710
26711 \begin_layout Plain Layout
26712
26713
26714 \backslash
26715 b e
26716 \end_layout
26717
26718 \end_inset
26719
26720
26721 \end_layout
26722
26723 \end_inset
26724 </cell>
26725 </row>
26726 <row>
26727 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
26728 \begin_inset Text
26729
26730 \begin_layout Plain Layout
26731
26732 \backslash
26733 t
26734 \begin_inset ERT
26735 status collapsed
26736
26737 \begin_layout Plain Layout
26738
26739
26740 \backslash
26741 leer 
26742 \end_layout
26743
26744 \end_inset
26745
26746 ee
26747 \end_layout
26748
26749 \end_inset
26750 </cell>
26751 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
26752 \begin_inset Text
26753
26754 \begin_layout Plain Layout
26755 \begin_inset ERT
26756 status collapsed
26757
26758 \begin_layout Plain Layout
26759
26760
26761 \backslash
26762 t ee
26763 \end_layout
26764
26765 \end_inset
26766
26767
26768 \end_layout
26769
26770 \end_inset
26771 </cell>
26772 </row>
26773 </lyxtabular>
26774
26775 \end_inset
26776
26777
26778 \begin_inset space \hfill{}
26779 \end_inset
26780
26781
26782 \begin_inset Tabular
26783 <lyxtabular version="3" rows="8" columns="2">
26784 <features tabularvalignment="middle">
26785 <column alignment="block" valignment="top" width="0">
26786 <column alignment="center" valignment="top" width="0">
26787 <row>
26788 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
26789 \begin_inset Text
26790
26791 \begin_layout Plain Layout
26792 Befehl
26793 \end_layout
26794
26795 \end_inset
26796 </cell>
26797 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
26798 \begin_inset Text
26799
26800 \begin_layout Plain Layout
26801 Ergebnis
26802 \end_layout
26803
26804 \end_inset
26805 </cell>
26806 </row>
26807 <row>
26808 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26809 \begin_inset Text
26810
26811 \begin_layout Plain Layout
26812
26813 \backslash
26814 H
26815 \begin_inset ERT
26816 status collapsed
26817
26818 \begin_layout Plain Layout
26819
26820
26821 \backslash
26822 leer 
26823 \end_layout
26824
26825 \end_inset
26826
26827 e
26828 \end_layout
26829
26830 \end_inset
26831 </cell>
26832 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26833 \begin_inset Text
26834
26835 \begin_layout Plain Layout
26836 \begin_inset ERT
26837 status collapsed
26838
26839 \begin_layout Plain Layout
26840
26841
26842 \backslash
26843 H e
26844 \end_layout
26845
26846 \end_inset
26847
26848
26849 \end_layout
26850
26851 \end_inset
26852 </cell>
26853 </row>
26854 <row>
26855 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26856 \begin_inset Text
26857
26858 \begin_layout Plain Layout
26859
26860 \backslash
26861 'e
26862 \end_layout
26863
26864 \end_inset
26865 </cell>
26866 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26867 \begin_inset Text
26868
26869 \begin_layout Plain Layout
26870 \begin_inset ERT
26871 status collapsed
26872
26873 \begin_layout Plain Layout
26874
26875
26876 \backslash
26877 'e
26878 \end_layout
26879
26880 \end_inset
26881
26882
26883 \end_layout
26884
26885 \end_inset
26886 </cell>
26887 </row>
26888 <row>
26889 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26890 \begin_inset Text
26891
26892 \begin_layout Plain Layout
26893
26894 \backslash
26895 ~e
26896 \begin_inset Index idx
26897 status collapsed
26898
26899 \begin_layout Plain Layout
26900 Tilde
26901 \end_layout
26902
26903 \end_inset
26904
26905
26906 \end_layout
26907
26908 \end_inset
26909 </cell>
26910 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26911 \begin_inset Text
26912
26913 \begin_layout Plain Layout
26914 \begin_inset ERT
26915 status collapsed
26916
26917 \begin_layout Plain Layout
26918
26919
26920 \backslash
26921 ~e
26922 \end_layout
26923
26924 \end_inset
26925
26926
26927 \end_layout
26928
26929 \end_inset
26930 </cell>
26931 </row>
26932 <row>
26933 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26934 \begin_inset Text
26935
26936 \begin_layout Plain Layout
26937
26938 \backslash
26939 .e
26940 \end_layout
26941
26942 \end_inset
26943 </cell>
26944 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26945 \begin_inset Text
26946
26947 \begin_layout Plain Layout
26948 \begin_inset ERT
26949 status collapsed
26950
26951 \begin_layout Plain Layout
26952
26953
26954 \backslash
26955 .e
26956 \end_layout
26957
26958 \end_inset
26959
26960
26961 \end_layout
26962
26963 \end_inset
26964 </cell>
26965 </row>
26966 <row>
26967 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
26968 \begin_inset Text
26969
26970 \begin_layout Plain Layout
26971
26972 \backslash
26973 v
26974 \begin_inset ERT
26975 status collapsed
26976
26977 \begin_layout Plain Layout
26978
26979
26980 \backslash
26981 leer 
26982 \end_layout
26983
26984 \end_inset
26985
26986 e
26987 \end_layout
26988
26989 \end_inset
26990 </cell>
26991 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
26992 \begin_inset Text
26993
26994 \begin_layout Plain Layout
26995 \begin_inset ERT
26996 status collapsed
26997
26998 \begin_layout Plain Layout
26999
27000
27001 \backslash
27002 v e
27003 \end_layout
27004
27005 \end_inset
27006
27007
27008 \end_layout
27009
27010 \end_inset
27011 </cell>
27012 </row>
27013 <row>
27014 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
27015 \begin_inset Text
27016
27017 \begin_layout Plain Layout
27018
27019 \backslash
27020 d
27021 \begin_inset ERT
27022 status collapsed
27023
27024 \begin_layout Plain Layout
27025
27026
27027 \backslash
27028 leer 
27029 \end_layout
27030
27031 \end_inset
27032
27033 e
27034 \end_layout
27035
27036 \end_inset
27037 </cell>
27038 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
27039 \begin_inset Text
27040
27041 \begin_layout Plain Layout
27042 \begin_inset ERT
27043 status collapsed
27044
27045 \begin_layout Plain Layout
27046
27047
27048 \backslash
27049 d e
27050 \end_layout
27051
27052 \end_inset
27053
27054
27055 \end_layout
27056
27057 \end_inset
27058 </cell>
27059 </row>
27060 <row>
27061 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
27062 \begin_inset Text
27063
27064 \begin_layout Plain Layout
27065
27066 \backslash
27067 c
27068 \begin_inset ERT
27069 status collapsed
27070
27071 \begin_layout Plain Layout
27072
27073
27074 \backslash
27075 leer 
27076 \end_layout
27077
27078 \end_inset
27079
27080 e
27081 \end_layout
27082
27083 \end_inset
27084 </cell>
27085 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
27086 \begin_inset Text
27087
27088 \begin_layout Plain Layout
27089 \begin_inset ERT
27090 status collapsed
27091
27092 \begin_layout Plain Layout
27093
27094
27095 \backslash
27096 c e
27097 \end_layout
27098
27099 \end_inset
27100
27101
27102 \end_layout
27103
27104 \end_inset
27105 </cell>
27106 </row>
27107 </lyxtabular>
27108
27109 \end_inset
27110
27111
27112 \begin_inset space \hfill{}
27113 \end_inset
27114
27115
27116 \end_layout
27117
27118 \begin_layout Standard
27119 \begin_inset VSpace medskip
27120 \end_inset
27121
27122 Mit dem Befehl 
27123 \series bold
27124
27125 \backslash
27126 t
27127 \series default
27128  können auch zwei verschiedene Zeichen akzentuiert werden.
27129  Der Befehl 
27130 \series bold
27131
27132 \backslash
27133 t
27134 \begin_inset ERT
27135 status collapsed
27136
27137 \begin_layout Plain Layout
27138
27139
27140 \backslash
27141 leer 
27142 \end_layout
27143
27144 \end_inset
27145
27146 sz
27147 \series default
27148  ergibt: 
27149 \begin_inset ERT
27150 status collapsed
27151
27152 \begin_layout Plain Layout
27153
27154
27155 \backslash
27156 t sz
27157 \end_layout
27158
27159 \end_inset
27160
27161
27162 \end_layout
27163
27164 \begin_layout Standard
27165 Die Akzente 
27166 \series bold
27167 `
27168 \series default
27169  , 
27170 \series bold
27171 '
27172 \series default
27173  und 
27174 \series bold
27175 ^
27176 \series default
27177  können in Verbindung mit Selbstlauten auch direkt über die Tastatur eingegeben
27178  werden ohne den TeX-Modus zu benutzen.
27179  Dasselbe gilt für die Tilde
27180 \begin_inset Foot
27181 status collapsed
27182
27183 \begin_layout Plain Layout
27184 Gilt nur für Tastaturen, bei denen die Tilde als Akzent definiert ist.
27185 \end_layout
27186
27187 \end_inset
27188
27189  
27190 \series bold
27191 ~
27192 \series default
27193  in Verbindung mit 
27194 \emph on
27195 a
27196 \emph default
27197  , 
27198 \emph on
27199 n
27200 \emph default
27201  oder 
27202 \emph on
27203 o
27204 \emph default
27205 .
27206 \end_layout
27207
27208 \begin_layout Standard
27209 Die Befehle 
27210 \series bold
27211
27212 \backslash
27213 b
27214 \series default
27215  , 
27216 \series bold
27217
27218 \backslash
27219 c
27220 \series default
27221  , 
27222 \series bold
27223
27224 \backslash
27225 d
27226 \series default
27227  , 
27228 \series bold
27229
27230 \backslash
27231 H
27232 \series default
27233  , 
27234 \series bold
27235
27236 \backslash
27237 t
27238 \series default
27239  , 
27240 \series bold
27241
27242 \backslash
27243 u
27244 \series default
27245  , 
27246 \series bold
27247
27248 \backslash
27249 v
27250 \series default
27251  und direkt über die Tastatur eingegebene Akzente sind auch im mathematischen
27252  Textmodus verfügbar.
27253  Für die restlichen Akzente gibt es in Formeln spezielle Mathebefehle, siehe
27254  
27255 \begin_inset CommandInset ref
27256 LatexCommand ref
27257 reference "sub:Akzente-für-ein"
27258
27259 \end_inset
27260
27261 .
27262 \end_layout
27263
27264 \begin_layout Standard
27265 \begin_inset VSpace bigskip
27266 \end_inset
27267
27268 Des Weiteren kann man mit dem Befehl 
27269 \series bold
27270
27271 \backslash
27272 textcircled
27273 \series default
27274
27275 \begin_inset Index idx
27276 status collapsed
27277
27278 \begin_layout Plain Layout
27279 Befehle ! T ! 
27280 \backslash
27281 textcircled
27282 \end_layout
27283
27284 \end_inset
27285
27286 , ähnlich dem Copyrightsymbol, sämtliche Zahlen und Buchstaben in einen
27287  Kreis setzen, quasi mit einem Kreis akzentuieren.
27288 \end_layout
27289
27290 \begin_layout Standard
27291 \align center
27292 \begin_inset Tabular
27293 <lyxtabular version="3" rows="3" columns="2">
27294 <features tabularvalignment="middle">
27295 <column alignment="center" valignment="top" width="0">
27296 <column alignment="center" valignment="top" width="0">
27297 <row>
27298 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
27299 \begin_inset Text
27300
27301 \begin_layout Plain Layout
27302 Befehl
27303 \end_layout
27304
27305 \end_inset
27306 </cell>
27307 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
27308 \begin_inset Text
27309
27310 \begin_layout Plain Layout
27311 Ergebnis
27312 \begin_inset Note Note
27313 status collapsed
27314
27315 \begin_layout Plain Layout
27316
27317 \series bold
27318
27319 \backslash
27320 raisebox
27321 \series default
27322  in der Formel dient nur als Abstandhalter.
27323 \end_layout
27324
27325 \end_inset
27326
27327
27328 \end_layout
27329
27330 \end_inset
27331 </cell>
27332 </row>
27333 <row>
27334 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27335 \begin_inset Text
27336
27337 \begin_layout Plain Layout
27338
27339 \backslash
27340 textcircled{w}
27341 \end_layout
27342
27343 \end_inset
27344 </cell>
27345 <cell multicolumn="1" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
27346 \begin_inset Text
27347
27348 \begin_layout Plain Layout
27349 \begin_inset ERT
27350 status collapsed
27351
27352 \begin_layout Plain Layout
27353
27354
27355 \backslash
27356 textcircled{w}
27357 \end_layout
27358
27359 \end_inset
27360
27361
27362 \end_layout
27363
27364 \end_inset
27365 </cell>
27366 </row>
27367 <row>
27368 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
27369 \begin_inset Text
27370
27371 \begin_layout Plain Layout
27372
27373 \backslash
27374 Large 
27375 \backslash
27376 textcircled{
27377 \backslash
27378 normalsize
27379 \backslash
27380 protect
27381 \backslash
27382 raisebox{-1.5pt}{W}}
27383 \end_layout
27384
27385 \end_inset
27386 </cell>
27387 <cell multicolumn="1" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
27388 \begin_inset Text
27389
27390 \begin_layout Plain Layout
27391 \begin_inset Formula $\raisebox{4.5mm}{}$
27392 \end_inset
27393
27394
27395 \begin_inset ERT
27396 status collapsed
27397
27398 \begin_layout Plain Layout
27399
27400
27401 \backslash
27402 Large 
27403 \backslash
27404 textcircled{
27405 \backslash
27406 normalsize
27407 \backslash
27408 protect
27409 \backslash
27410 raisebox{-1.5pt}W}
27411 \end_layout
27412
27413 \end_inset
27414
27415
27416 \begin_inset Formula $\raisebox{-2mm}{}$
27417 \end_inset
27418
27419
27420 \end_layout
27421
27422 \end_inset
27423 </cell>
27424 </row>
27425 </lyxtabular>
27426
27427 \end_inset
27428
27429
27430 \end_layout
27431
27432 \begin_layout Standard
27433 Man muss darauf achten, dass das Zeichen in einen Kreis passt.
27434  
27435 \series bold
27436
27437 \backslash
27438 Large
27439 \series default
27440
27441 \begin_inset Foot
27442 status collapsed
27443
27444 \begin_layout Plain Layout
27445 siehe 
27446 \begin_inset CommandInset ref
27447 LatexCommand ref
27448 reference "sub:Schriftgrößen"
27449
27450 \end_inset
27451
27452
27453 \end_layout
27454
27455 \end_inset
27456
27457  bestimmt dabei die Größe des Kreises.
27458  Mit Hilfe von 
27459 \series bold
27460
27461 \backslash
27462 raisebox
27463 \series default
27464
27465 \begin_inset Foot
27466 status collapsed
27467
27468 \begin_layout Plain Layout
27469 siehe 
27470 \begin_inset CommandInset ref
27471 LatexCommand ref
27472 reference "sub:Boxen-ohne-Rahmen"
27473
27474 \end_inset
27475
27476
27477 \end_layout
27478
27479 \end_inset
27480
27481  kann man das Zeichen zentrieren.
27482 \end_layout
27483
27484 \begin_layout Subsection
27485 Minuskelziffern
27486 \begin_inset Index idx
27487 status collapsed
27488
27489 \begin_layout Plain Layout
27490 Minuskelziffern
27491 \end_layout
27492
27493 \end_inset
27494
27495
27496 \end_layout
27497
27498 \begin_layout Standard
27499 Minuskelziffern werden mit dem Befehl 
27500 \series bold
27501
27502 \backslash
27503 oldstylenums
27504 \series default
27505
27506 \begin_inset Index idx
27507 status collapsed
27508
27509 \begin_layout Plain Layout
27510 Befehle ! O ! 
27511 \backslash
27512 oldstylenums
27513 \end_layout
27514
27515 \end_inset
27516
27517  erzeugt.
27518  Der Befehl ist sowohl in einer Formel als auch im TeX-Modus verwendbar.
27519  Das Befehlsschema lautet:
27520 \end_layout
27521
27522 \begin_layout Standard
27523
27524 \series bold
27525
27526 \backslash
27527 oldstylenums{Ziffer}
27528 \end_layout
27529
27530 \begin_layout Standard
27531 Der Befehl 
27532 \series bold
27533
27534 \backslash
27535 oldstylenums{0123456789
27536 \series default
27537  ergibt: 
27538 \begin_inset Formula $\oldstylenums{0123456789}$
27539 \end_inset
27540
27541
27542 \end_layout
27543
27544 \begin_layout Subsection
27545 Sonstige Sonderzeichen
27546 \begin_inset CommandInset label
27547 LatexCommand label
27548 name "sub:Sonstige-Sonderzeichen"
27549
27550 \end_inset
27551
27552
27553 \begin_inset Index idx
27554 status collapsed
27555
27556 \begin_layout Plain Layout
27557 Sonderzeichen ! sonstige
27558 \end_layout
27559
27560 \end_inset
27561
27562
27563 \end_layout
27564
27565 \begin_layout Standard
27566 Folgende Zeichen können in eine Formel nur mit Befehlen eingegeben werden:
27567 \end_layout
27568
27569 \begin_layout Standard
27570 \align center
27571 \begin_inset Tabular
27572 <lyxtabular version="3" rows="4" columns="2">
27573 <features tabularvalignment="middle">
27574 <column alignment="center" valignment="top" width="0">
27575 <column alignment="center" valignment="top" width="0">
27576 <row>
27577 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
27578 \begin_inset Text
27579
27580 \begin_layout Plain Layout
27581 Befehl
27582 \end_layout
27583
27584 \end_inset
27585 </cell>
27586 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
27587 \begin_inset Text
27588
27589 \begin_layout Plain Layout
27590 Ergebnis
27591 \end_layout
27592
27593 \end_inset
27594 </cell>
27595 </row>
27596 <row>
27597 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27598 \begin_inset Text
27599
27600 \begin_layout Plain Layout
27601
27602 \backslash
27603 ^
27604 \begin_inset ERT
27605 status collapsed
27606
27607 \begin_layout Plain Layout
27608
27609
27610 \backslash
27611 leer 
27612 \end_layout
27613
27614 \end_inset
27615
27616
27617 \end_layout
27618
27619 \end_inset
27620 </cell>
27621 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
27622 \begin_inset Text
27623
27624 \begin_layout Plain Layout
27625 \begin_inset Formula $\mathcircumflex$
27626 \end_inset
27627
27628
27629 \end_layout
27630
27631 \end_inset
27632 </cell>
27633 </row>
27634 <row>
27635 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27636 \begin_inset Text
27637
27638 \begin_layout Plain Layout
27639
27640 \backslash
27641 _
27642 \end_layout
27643
27644 \end_inset
27645 </cell>
27646 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
27647 \begin_inset Text
27648
27649 \begin_layout Plain Layout
27650 \begin_inset Formula $\_$
27651 \end_inset
27652
27653
27654 \end_layout
27655
27656 \end_inset
27657 </cell>
27658 </row>
27659 <row>
27660 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
27661 \begin_inset Text
27662
27663 \begin_layout Plain Layout
27664 ^
27665 \begin_inset ERT
27666 status collapsed
27667
27668 \begin_layout Plain Layout
27669
27670
27671 \backslash
27672 leer 
27673 \end_layout
27674
27675 \end_inset
27676
27677
27678 \backslash
27679 circ
27680 \begin_inset Index idx
27681 status collapsed
27682
27683 \begin_layout Plain Layout
27684
27685 \backslash
27686
27687 \end_layout
27688
27689 \end_inset
27690
27691
27692 \end_layout
27693
27694 \end_inset
27695 </cell>
27696 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
27697 \begin_inset Text
27698
27699 \begin_layout Plain Layout
27700 \begin_inset Formula $^{\circ}$
27701 \end_inset
27702
27703
27704 \end_layout
27705
27706 \end_inset
27707 </cell>
27708 </row>
27709 </lyxtabular>
27710
27711 \end_inset
27712
27713
27714 \end_layout
27715
27716 \begin_layout Standard
27717 Das Gradzeichen ° kann dennoch direkt eingegeben werden, wenn der LaTeX-Vorspann
27718  folgende Zeile enthält
27719 \begin_inset Foot
27720 status collapsed
27721
27722 \begin_layout Plain Layout
27723 Mehr dazu ist in 
27724 \begin_inset CommandInset ref
27725 LatexCommand ref
27726 reference "sub:Textzeichen-in-Formeln"
27727
27728 \end_inset
27729
27730  beschrieben.
27731 \end_layout
27732
27733 \end_inset
27734
27735 :
27736 \end_layout
27737
27738 \begin_layout Standard
27739
27740 \series bold
27741
27742 \backslash
27743 DeclareInputText{176}{
27744 \backslash
27745 ifmmode^
27746 \backslash
27747 circ
27748 \backslash
27749 else
27750 \backslash
27751 textdegree
27752 \backslash
27753 fi}
27754 \end_layout
27755
27756 \begin_layout Section
27757 Formelstile
27758 \begin_inset CommandInset label
27759 LatexCommand label
27760 name "sec:Formelstile"
27761
27762 \end_inset
27763
27764
27765 \begin_inset Index idx
27766 status collapsed
27767
27768 \begin_layout Plain Layout
27769 Formel ! Stile
27770 \end_layout
27771
27772 \end_inset
27773
27774
27775 \end_layout
27776
27777 \begin_layout Itemize
27778 Für abgesetzte Formeln gibt es zwei verschiedene Anordnungsstile:
27779 \end_layout
27780
27781 \begin_deeper
27782 \begin_layout Description
27783 Zentriert ist der voreingestellte Standard
27784 \end_layout
27785
27786 \begin_layout Description
27787 Eingerückt dazu muss im Menü 
27788 \family sans
27789 Dokument\SpecialChar \menuseparator
27790 Einstellungen
27791 \family default
27792  unter 
27793 \family sans
27794 Dokumentklasse
27795 \family default
27796  die Option 
27797 \series bold
27798 fleqn
27799 \series default
27800  eingeben werden
27801 \end_layout
27802
27803 \begin_layout Standard
27804 Wird 
27805 \series bold
27806 Eingerückt
27807 \series default
27808  verwendet, kann mit der Länge 
27809 \series bold
27810
27811 \backslash
27812 mathindent
27813 \series default
27814
27815 \begin_inset Index idx
27816 status collapsed
27817
27818 \begin_layout Plain Layout
27819 Befehle ! M ! 
27820 \backslash
27821 mathindent
27822 \end_layout
27823
27824 \end_inset
27825
27826  die Einrückung eingestellt werden.
27827  Soll der Abstand 15
27828 \begin_inset space \thinspace{}
27829 \end_inset
27830
27831 mm betragen, gibt man im LaTeX-Vorspann die Zeile
27832 \end_layout
27833
27834 \begin_layout Standard
27835
27836 \series bold
27837
27838 \backslash
27839 setlength{
27840 \backslash
27841 mathindent}{15mm}
27842 \end_layout
27843
27844 \begin_layout Standard
27845 ein.
27846  Wenn keine Länge vorgegeben wird, wird der voreingestellte Wert von 30
27847 \begin_inset space \thinspace{}
27848 \end_inset
27849
27850 pt verwendet.
27851 \end_layout
27852
27853 \end_deeper
27854 \begin_layout Itemize
27855 Und zwei verschiedene Nummerierungsstile:
27856 \end_layout
27857
27858 \begin_deeper
27859 \begin_layout Description
27860 Rechts ist der voreingestellte Standard
27861 \end_layout
27862
27863 \begin_layout Description
27864 Links dazu muss im Menü 
27865 \family sans
27866 Dokument\SpecialChar \menuseparator
27867 Einstellungen
27868 \family default
27869  unter 
27870 \family sans
27871 Dokumentklasse
27872 \family default
27873  die Option 
27874 \series bold
27875 leqno
27876 \series default
27877  eingeben werden
27878 \end_layout
27879
27880 \end_deeper
27881 \begin_layout Standard
27882
27883 \series bold
27884 fleqn
27885 \series default
27886  und 
27887 \series bold
27888 leqno
27889 \series default
27890  können auch gemeinsam verwendet werden.
27891  Dazu werden beide Optionen, durch ein Komma getrennt, hintereinander geschriebe
27892 n.
27893 \end_layout
27894
27895 \begin_layout Standard
27896 Die eingestellten Stile gelten für alle abgesetzten Formeln eines Dokuments.
27897  Möchte man jedoch in einem Dokument sowohl zentrierte als auch eingerückte
27898  ausgerichtete Formeln setzen, verwendet man den Stil 
27899 \series bold
27900 Zentriert
27901 \series default
27902 .
27903  Die einzurückenden Formeln setzt man dann in eine flalign-Umgebung, siehe
27904  
27905 \begin_inset CommandInset ref
27906 LatexCommand ref
27907 reference "sub:Flalign-Umgebung"
27908
27909 \end_inset
27910
27911 .
27912 \end_layout
27913
27914 \begin_layout Section
27915 Mehrzeilige Formeln
27916 \begin_inset CommandInset label
27917 LatexCommand label
27918 name "sec:Mehrzeilige-Formeln"
27919
27920 \end_inset
27921
27922
27923 \begin_inset Index idx
27924 status collapsed
27925
27926 \begin_layout Plain Layout
27927 Formel ! mehrzeilige
27928 \end_layout
27929
27930 \end_inset
27931
27932
27933 \end_layout
27934
27935 \begin_layout Subsection
27936 Allgemeines
27937 \end_layout
27938
27939 \begin_layout Standard
27940 In LyX werden mehrzeilige Formeln erstellt, wenn man in einer Formel 
27941 \family sans
27942 \series bold
27943 Strg+Enter
27944 \family default
27945 \series default
27946  drückt.
27947  Dies erzeugt entweder eine 
27948 \series bold
27949 eqnarray-Umgebung
27950 \series default
27951 , die in 
27952 \begin_inset CommandInset ref
27953 LatexCommand ref
27954 reference "sub:Eqnarray-Umgebung"
27955
27956 \end_inset
27957
27958  beschrieben ist oder, wenn die Option 
27959 \family sans
27960 AMS-Mathe-Paket verwenden
27961 \family default
27962  in den Dokumenteinstellungen gewählt ist, eine 
27963 \series bold
27964 align-Umgebung
27965 \series default
27966 , die in 
27967 \begin_inset CommandInset ref
27968 LatexCommand ref
27969 reference "sub:Standard-align-Umgebung"
27970
27971 \end_inset
27972
27973  beschrieben ist.
27974 \end_layout
27975
27976 \begin_layout Standard
27977 Es gibt noch weitere mehrzeilige Formelumgebungen, die über das Menü 
27978 \family sans
27979 Einfügen\SpecialChar \menuseparator
27980 Mathe
27981 \family default
27982  erstellt werden können.
27983  Diese Umgebungen werden in den folgenden Kapiteln beschrieben.
27984 \end_layout
27985
27986 \begin_layout Standard
27987 In allen mehrzeiligen Formelumgebungen erstellt man eine neue Zeile, indem
27988  man 
27989 \family sans
27990 Strg+Enter
27991 \family default
27992  drückt.
27993  Um Spalten hinzuzufügen oder zu entfernen, können die Mathe-Werkzeugleistenknöp
27994 fe 
27995 \begin_inset Graphics
27996         filename ../../images/tabular-feature_append-row.png
27997         scale 85
27998
27999 \end_inset
28000
28001  bzw.
28002 \begin_inset space ~
28003 \end_inset
28004
28005
28006 \begin_inset Graphics
28007         filename ../../images/tabular-feature_delete-row.png
28008         scale 85
28009
28010 \end_inset
28011
28012  oder das Menü 
28013 \family sans
28014 Bearbeiten\SpecialChar \menuseparator
28015 Zeilen & Spalten
28016 \family default
28017  verwendet werden.
28018 \end_layout
28019
28020 \begin_layout Subsubsection
28021 Zeilenabstand
28022 \begin_inset CommandInset label
28023 LatexCommand label
28024 name "sub:Zeilenabstand"
28025
28026 \end_inset
28027
28028
28029 \begin_inset Index idx
28030 status collapsed
28031
28032 \begin_layout Plain Layout
28033 Formel ! mehrzeilige ! Zeilenabstand
28034 \end_layout
28035
28036 \end_inset
28037
28038
28039 \end_layout
28040
28041 \begin_layout Standard
28042 Bei mehrzeiligen Formeln fehlt manchmal etwas Platz zwischen den Zeilen:
28043 \begin_inset Formula \begin{eqnarray*}
28044 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}\\
28045 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
28046 \end{eqnarray*}
28047
28048 \end_inset
28049
28050
28051 \end_layout
28052
28053 \begin_layout Standard
28054 In LaTeX wird zusätzlicher Zeilenabstand als optionales Argument des Zeilenumbru
28055 chbefehls angegeben.
28056  Dies ist in LyX aber nicht möglich
28057 \begin_inset Foot
28058 status collapsed
28059
28060 \begin_layout Plain Layout
28061 siehe 
28062 \begin_inset CommandInset href
28063 LatexCommand href
28064 name "LyX-Fehler #1505"
28065 target "http://www.lyx.org/trac/ticket/1505"
28066
28067 \end_inset
28068
28069
28070 \end_layout
28071
28072 \end_inset
28073
28074 , weshalb man die ganze Formel im TeX-Modus eingeben muss.
28075  Um für unser Beispiel Leerraum einzufügen, gibt man am Ende der ersten
28076  Zeile den Befehl 
28077 \series bold
28078
28079 \backslash
28080
28081 \backslash
28082 [3mm]
28083 \series default
28084  ein.
28085  Damit erhält man: 
28086 \begin_inset ERT
28087 status collapsed
28088
28089 \begin_layout Plain Layout
28090
28091
28092 \backslash
28093 begin{eqnarray*}
28094 \end_layout
28095
28096 \begin_layout Plain Layout
28097
28098 B^{2}(B^{2}-2r_{g}^{2}+2x_{0}^{2}-2r_{k}^{2})+4x_{0}^{2}x^{2}+4x_{0}xD &
28099  = & 
28100 \backslash
28101 textrm{-}4x^{2}B^{2}+4x_{0}xB^{2}
28102 \backslash
28103
28104 \backslash
28105 [3mm]
28106 \end_layout
28107
28108 \begin_layout Plain Layout
28109
28110 4x^{2}
28111 \backslash
28112 left(B^{2}+x_{0}^{2}
28113 \backslash
28114 right)+4x_{0}x
28115 \backslash
28116 left(D-B^{2}
28117 \backslash
28118 right)+B^{2}
28119 \backslash
28120 left(B^{2}-2r_{g}^{2}+2x_{0}^{2}-2r_{k}^{2}
28121 \backslash
28122 right) & = & 0
28123 \end_layout
28124
28125 \begin_layout Plain Layout
28126
28127
28128 \backslash
28129 end{eqnarray*}
28130 \end_layout
28131
28132 \end_inset
28133
28134
28135 \end_layout
28136
28137 \begin_layout Standard
28138 \begin_inset VSpace bigskip
28139 \end_inset
28140
28141 Möchte man den Zeilenabstand für alle Zeilen einer Formel festlegen, verändert
28142  man die Länge 
28143 \series bold
28144
28145 \backslash
28146 jot
28147 \series default
28148
28149 \begin_inset Index idx
28150 status collapsed
28151
28152 \begin_layout Plain Layout
28153 Befehle ! J ! 
28154 \backslash
28155 jot
28156 \end_layout
28157
28158 \end_inset
28159
28160 .
28161  Es gilt 
28162 \begin_inset Formula $\mbox{Zeilenabstand}=\mathrm{6\, pt+\backslash jot}$
28163 \end_inset
28164
28165 .
28166  Voreingestellt ist für 
28167 \series bold
28168
28169 \backslash
28170 jot
28171 \series default
28172  der Wert 3
28173 \begin_inset space \thinspace{}
28174 \end_inset
28175
28176 pt.
28177  Um wie im vorigen Beispiel 3
28178 \begin_inset space \thinspace{}
28179 \end_inset
28180
28181 mm zusätzlichen Zeilenabstand zu erzeugen, gibt man den Befehl
28182 \end_layout
28183
28184 \begin_layout Standard
28185
28186 \series bold
28187
28188 \backslash
28189 setlength{
28190 \backslash
28191 jot}{3mm+3pt}
28192 \end_layout
28193
28194 \begin_layout Standard
28195 im TeX-Modus vor der Formel ein.
28196  Das setzt voraus, dass das LaTeX-Paket 
28197 \series bold
28198 calc
28199 \series default
28200
28201 \begin_inset Foot
28202 status collapsed
28203
28204 \begin_layout Plain Layout
28205
28206 \series bold
28207 calc
28208 \series default
28209  ist Teil jeder LaTeX-Standardinstallation.
28210 \end_layout
28211
28212 \end_inset
28213
28214
28215 \begin_inset Index idx
28216 status collapsed
28217
28218 \begin_layout Plain Layout
28219 Pakete ! calc
28220 \end_layout
28221
28222 \end_inset
28223
28224  im LaTeX-Vorspann mit der Zeile
28225 \end_layout
28226
28227 \begin_layout Standard
28228
28229 \series bold
28230
28231 \backslash
28232 usepackage{calc}
28233 \end_layout
28234
28235 \begin_layout Standard
28236 geladen wurde.
28237 \end_layout
28238
28239 \begin_layout Standard
28240 Man erhält: 
28241 \begin_inset ERT
28242 status collapsed
28243
28244 \begin_layout Plain Layout
28245
28246
28247 \backslash
28248 setlength{
28249 \backslash
28250 jot}{3mm+3pt}
28251 \end_layout
28252
28253 \end_inset
28254
28255
28256 \begin_inset Formula \begin{eqnarray*}
28257 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}\\
28258 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
28259 \end{eqnarray*}
28260
28261 \end_inset
28262
28263
28264 \end_layout
28265
28266 \begin_layout Standard
28267 \begin_inset ERT
28268 status collapsed
28269
28270 \begin_layout Plain Layout
28271
28272
28273 \backslash
28274 setlength{
28275 \backslash
28276 jot}{3pt}
28277 \end_layout
28278
28279 \end_inset
28280
28281  Um wieder zum voreingestellten Abstand zu wechseln, setzt man 
28282 \series bold
28283
28284 \backslash
28285 jot
28286 \series default
28287  auf den Wert 3
28288 \begin_inset space \thinspace{}
28289 \end_inset
28290
28291 pt.
28292 \end_layout
28293
28294 \begin_layout Subsubsection
28295 Spaltenabstand
28296 \begin_inset CommandInset label
28297 LatexCommand label
28298 name "sub:Spaltenabstand"
28299
28300 \end_inset
28301
28302
28303 \begin_inset Index idx
28304 status collapsed
28305
28306 \begin_layout Plain Layout
28307 Formel ! mehrzeilige ! Spaltenabstand
28308 \end_layout
28309
28310 \end_inset
28311
28312
28313 \end_layout
28314
28315 \begin_layout Standard
28316 Mehrzeilige Formeln bilden eine Matrix.
28317  Eine Formel in der Eqnarray-Umgebung ist z.
28318 \begin_inset space \thinspace{}
28319 \end_inset
28320
28321 B.
28322  eine dreispaltige Matrix.
28323  Durch Änderung des Spaltenabstands in dieser Umgebung, kann man den Leerraum
28324  neben den Relationszeichen ändern.
28325 \end_layout
28326
28327 \begin_layout Standard
28328 Der Spaltenabstand wird mit der Länge 
28329 \series bold
28330
28331 \backslash
28332 arraycolsep
28333 \series default
28334
28335 \begin_inset Index idx
28336 status collapsed
28337
28338 \begin_layout Plain Layout
28339 Befehle ! A ! 
28340 \backslash
28341 arraycolsep
28342 \end_layout
28343
28344 \end_inset
28345
28346  festgelegt, wobei gilt:
28347 \begin_inset Newline newline
28348 \end_inset
28349
28350 Spaltenabstand = 2
28351 \begin_inset space \thinspace{}
28352 \end_inset
28353
28354
28355 \series bold
28356
28357 \backslash
28358 arraycolsep
28359 \series default
28360 .
28361 \begin_inset Newline newline
28362 \end_inset
28363
28364 Der im TeX-Modus eingegebene Befehl
28365 \end_layout
28366
28367 \begin_layout Standard
28368
28369 \series bold
28370
28371 \backslash
28372 setlength{
28373 \backslash
28374 arraycolsep}{1cm}
28375 \end_layout
28376
28377 \begin_layout Standard
28378 bewirkt also für alle folgenden Formeln einen Spaltenabstand von 2
28379 \begin_inset space \thinspace{}
28380 \end_inset
28381
28382 cm.
28383  Um wieder zum voreingestellten Abstand zurückzukehren, setzt man 
28384 \series bold
28385
28386 \backslash
28387 arraycolsep
28388 \series default
28389  auf 5
28390 \begin_inset space \thinspace{}
28391 \end_inset
28392
28393 pt.
28394 \end_layout
28395
28396 \begin_layout Standard
28397 Eine Formel mit 2
28398 \begin_inset space \thinspace{}
28399 \end_inset
28400
28401 cm Spaltenabstand:
28402 \begin_inset ERT
28403 status collapsed
28404
28405 \begin_layout Plain Layout
28406
28407
28408 \backslash
28409 setlength{
28410 \backslash
28411 arraycolsep}{1cm}
28412 \end_layout
28413
28414 \end_inset
28415
28416
28417 \begin_inset Formula \begin{eqnarray*}
28418 A & = & B\\
28419 C & \ne & A
28420 \end{eqnarray*}
28421
28422 \end_inset
28423
28424 Eine Formel mit dem für Matrizen voreingestellten Spaltenabstand von 10
28425 \begin_inset space \thinspace{}
28426 \end_inset
28427
28428 pt:
28429 \begin_inset ERT
28430 status collapsed
28431
28432 \begin_layout Plain Layout
28433
28434
28435 \backslash
28436 setlength{
28437 \backslash
28438 arraycolsep}{5pt}
28439 \end_layout
28440
28441 \end_inset
28442
28443
28444 \begin_inset Formula \begin{eqnarray*}
28445 A & = & B\\
28446 C & \ne & A
28447 \end{eqnarray*}
28448
28449 \end_inset
28450
28451
28452 \end_layout
28453
28454 \begin_layout Standard
28455 \begin_inset Newpage newpage
28456 \end_inset
28457
28458
28459 \end_layout
28460
28461 \begin_layout Subsubsection
28462 Lange Formeln
28463 \begin_inset Index idx
28464 status collapsed
28465
28466 \begin_layout Plain Layout
28467 Formel ! lange
28468 \end_layout
28469
28470 \end_inset
28471
28472
28473 \end_layout
28474
28475 \begin_layout Standard
28476 Lange Formeln kann man wie folgt setzen:
28477 \end_layout
28478
28479 \begin_layout Itemize
28480 Ist eine Seite der Gleichung deutlich kürzer als die Zeilenbreite, wählt
28481  man man diese als linke Seite und schreibt die rechte über zwei Zeilen:
28482 \begin_inset Formula \begin{eqnarray}
28483 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 \\
28484  &  & -\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}
28485 \end{eqnarray}
28486
28487 \end_inset
28488
28489 Das Minuszeichen zu Beginn der zweiten Zeile erscheint eigentlich nicht
28490  als Operator, da es das erste Zeichen der Zeile ist.
28491  Deswegen wäre es nicht von Leerraum umgeben und ließe sich schlecht vom
28492  Bruchstrich unterscheiden.
28493  Um das zu verhindern, wurde mit dem Befehl 
28494 \series bold
28495
28496 \backslash
28497 hspace
28498 \series default
28499  3
28500 \begin_inset space \thinspace{}
28501 \end_inset
28502
28503 pt Leerraum hinter das Minuszeichen eingefügt.
28504 \begin_inset Foot
28505 status collapsed
28506
28507 \begin_layout Plain Layout
28508 mehr zu 
28509 \series bold
28510
28511 \backslash
28512 hspace
28513 \series default
28514  siehe 
28515 \begin_inset CommandInset ref
28516 LatexCommand ref
28517 reference "sub:Variabler-Leerraum"
28518
28519 \end_inset
28520
28521
28522 \end_layout
28523
28524 \end_inset
28525
28526
28527 \begin_inset Index idx
28528 status collapsed
28529
28530 \begin_layout Plain Layout
28531 Befehle ! H ! 
28532 \backslash
28533 hspace
28534 \end_layout
28535
28536 \end_inset
28537
28538
28539 \end_layout
28540
28541 \begin_layout Itemize
28542 Sind beide Seiten der Gleichung zu lang, verwendet man den Befehl 
28543 \series bold
28544
28545 \backslash
28546 lefteqn
28547 \series default
28548
28549 \begin_inset Index idx
28550 status collapsed
28551
28552 \begin_layout Plain Layout
28553 Befehle ! L ! 
28554 \backslash
28555 lefteqn
28556 \end_layout
28557
28558 \end_inset
28559
28560 .
28561  Dieser wird in die erste Spalte der ersten Zeile eingegeben und bewirkt,
28562  dass alle weiteren Eingaben die folgenden Spalten überschreiben:
28563 \begin_inset Formula \begin{eqnarray}
28564 \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 \\
28565  &  & -\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 \\
28566  &  & =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}
28567 \end{eqnarray}
28568
28569 \end_inset
28570
28571 Nachdem man 
28572 \series bold
28573
28574 \backslash
28575 lefteqn
28576 \series default
28577  eingegeben hat, befindet sich der Cursor in einem pinkfarbenen Kästchen,
28578  das gegenüber dem blauen leicht verschoben ist.
28579  In dieses wird die Formel eingegeben.
28580 \begin_inset Newline newline
28581 \end_inset
28582
28583 Der Inhalt der weiteren Zeilen wird in die zweite oder eine andere Formelspalte
28584  eingegeben.
28585  Je größer die Spaltennummer in die eingegeben wurde, desto größer ist die
28586  Einrückung.
28587 \begin_inset VSpace medskip
28588 \end_inset
28589
28590
28591 \begin_inset Newline newline
28592 \end_inset
28593
28594
28595 \begin_inset Note Greyedout
28596 status open
28597
28598 \begin_layout Plain Layout
28599 Bei der Verwendung von 
28600 \series bold
28601
28602 \backslash
28603 lefteqn
28604 \series default
28605  ist Folgendes zu beachten:
28606 \end_layout
28607
28608 \begin_layout Itemize
28609 Die Formel nutzt nicht die gesamte Seitenbreite aus.
28610  Würde man in obigem Beispiel der ersten Zeile den Term 
28611 \begin_inset Formula $-B^{2}$
28612 \end_inset
28613
28614  anfügen, befände sich dieser außerhalb des Seitenrands.
28615  Um die Breite besser auszunutzen, kann man zu Beginn der ersten Zeile negativen
28616  Leerraum einfügen.
28617 \end_layout
28618
28619 \begin_layout Itemize
28620 Aufgrund eines Fehlers in LyX kann der Cursor nicht mit der Maus in die
28621  erste Zeile gesetzt werden.
28622 \begin_inset Foot
28623 status collapsed
28624
28625 \begin_layout Plain Layout
28626 \begin_inset CommandInset href
28627 LatexCommand href
28628 name "LyX-Fehler #1429"
28629 target "http://www.lyx.org/trac/ticket/1429"
28630
28631 \end_inset
28632
28633
28634 \end_layout
28635
28636 \end_inset
28637
28638  Man kann den Cursor nur an den Anfang der Zeile setzen und ihn mit den
28639  Pfeiltasten bewegen.
28640 \end_layout
28641
28642 \end_inset
28643
28644
28645 \end_layout
28646
28647 \begin_layout Itemize
28648 Weitere Möglichkeiten lange Formeln zu setzen, bieten die in 
28649 \begin_inset CommandInset ref
28650 LatexCommand ref
28651 reference "sub:Multline-Umgebung"
28652
28653 \end_inset
28654
28655  und 
28656 \begin_inset CommandInset ref
28657 LatexCommand ref
28658 reference "sub:Mehrzeilige-Formelteile"
28659
28660 \end_inset
28661
28662  beschriebenen Umgebungen.
28663 \end_layout
28664
28665 \begin_layout Subsubsection
28666 Mehrzeilige Klammern
28667 \begin_inset CommandInset label
28668 LatexCommand label
28669 name "sub:Mehrzeilige-Klammern"
28670
28671 \end_inset
28672
28673
28674 \begin_inset Index idx
28675 status collapsed
28676
28677 \begin_layout Plain Layout
28678 Klammern ! mehrzeilige
28679 \end_layout
28680
28681 \end_inset
28682
28683
28684 \end_layout
28685
28686 \begin_layout Standard
28687 Bei Klammern, die über mehrere Zeilen gehen, tritt folgendes Problem auf:
28688 \begin_inset Formula \begin{eqnarray*}
28689 A & = & \sin(x)\left[\prod_{R=1}^{\infty}\frac{1}{R}+\cdots\right.\\
28690  &  & \left.\cdots+B-D\right]
28691 \end{eqnarray*}
28692
28693 \end_inset
28694
28695
28696 \end_layout
28697
28698 \begin_layout Standard
28699 Die schließende Klammer ist kleiner als die öffnende, denn Klammern variabler
28700  Größe dürfen nicht über mehrere Zeilen gehen.
28701 \end_layout
28702
28703 \begin_layout Standard
28704 Um die Größe für die Klammer der zweiten Zeile anzupassen, beendet man die
28705  erste Zeile mit 
28706 \series bold
28707
28708 \backslash
28709 right.
28710 \series default
28711
28712 \begin_inset Index idx
28713 status collapsed
28714
28715 \begin_layout Plain Layout
28716 Befehle ! R ! 
28717 \backslash
28718 right
28719 \end_layout
28720
28721 \end_inset
28722
28723  und beginnt die zweite Zeile mit 
28724 \series bold
28725
28726 \backslash
28727 left.
28728 \begin_inset Foot
28729 status collapsed
28730
28731 \begin_layout Plain Layout
28732 mehr zu 
28733 \series bold
28734
28735 \backslash
28736 left
28737 \series default
28738  und 
28739 \series bold
28740
28741 \backslash
28742 right
28743 \series default
28744  siehe 
28745 \begin_inset CommandInset ref
28746 LatexCommand ref
28747 reference "sub:Automatische-Klammergrößen"
28748
28749 \end_inset
28750
28751
28752 \end_layout
28753
28754 \end_inset
28755
28756
28757 \series default
28758
28759 \begin_inset Index idx
28760 status collapsed
28761
28762 \begin_layout Plain Layout
28763 Befehle ! L ! 
28764 \backslash
28765 left
28766 \end_layout
28767
28768 \end_inset
28769
28770 .
28771  Nach 
28772 \series bold
28773
28774 \backslash
28775 left.
28776
28777 \series default
28778  gibt man den Befehl 
28779 \series bold
28780
28781 \backslash
28782 vphantom
28783 \series default
28784
28785 \begin_inset ERT
28786 status collapsed
28787
28788 \begin_layout Plain Layout
28789
28790
28791 \backslash
28792 leer 
28793 \end_layout
28794
28795 \end_inset
28796
28797
28798 \series bold
28799
28800 \backslash
28801 prod
28802 \series default
28803 ^
28804 \begin_inset ERT
28805 status collapsed
28806
28807 \begin_layout Plain Layout
28808
28809
28810 \backslash
28811 leer 
28812 \end_layout
28813
28814 \end_inset
28815
28816
28817 \series bold
28818
28819 \backslash
28820 infty
28821 \series default
28822
28823 \begin_inset ERT
28824 status collapsed
28825
28826 \begin_layout Plain Layout
28827
28828
28829 \backslash
28830 leer 
28831 \end_layout
28832
28833 \end_inset
28834
28835
28836 \series bold
28837
28838 \begin_inset Formula $\downarrow$
28839 \end_inset
28840
28841 _R=1}
28842 \series default
28843
28844 \begin_inset Index idx
28845 status collapsed
28846
28847 \begin_layout Plain Layout
28848 Befehle ! V ! 
28849 \backslash
28850 vphantom
28851 \end_layout
28852
28853 \end_inset
28854
28855  ein, denn der Multiplikationsoperator mit seinen Grenzen ist das größte
28856  Symbol der ersten Zeile, und daran soll die zweite Klammer angepasst werden.
28857 \end_layout
28858
28859 \begin_layout Standard
28860 Das Ergebnis sieht so aus:
28861 \begin_inset Formula \begin{eqnarray*}
28862 A & = & \sin(x)\left[\prod_{R=1}^{\infty}\frac{1}{R}+\cdots\right.\\
28863  &  & \left.\vphantom{\prod_{R=1}^{\infty}}\cdots+B-D\right]
28864 \end{eqnarray*}
28865
28866 \end_inset
28867
28868
28869 \end_layout
28870
28871 \begin_layout Subsection
28872 Align-Umgebungen
28873 \end_layout
28874
28875 \begin_layout Standard
28876 Align-Umgebungen können für jede Art von mehrzeiligen Formeln verwendet
28877  werden.
28878  Sie sind besonders geeignet um mehrere Formeln nebeneinander zu setzen.
28879 \end_layout
28880
28881 \begin_layout Standard
28882 Align-Umgebungen bestehen aus Spalten.
28883  Die ungeradzahligen Spalten sind rechts-, die geradzahligen linksbündig
28884  ausgerichtet.
28885  Jede Zeile einer Align-Umgebung kann nummeriert werden.
28886 \end_layout
28887
28888 \begin_layout Standard
28889 Align-Umgebung werden über das Menü 
28890 \family sans
28891 Einfügen\SpecialChar \menuseparator
28892 Mathe
28893 \family default
28894  erstellt.
28895  Über das Menü 
28896 \family sans
28897 Bearbeiten\SpecialChar \menuseparator
28898 Mathe\SpecialChar \menuseparator
28899 Formelart
28900 \begin_inset space ~
28901 \end_inset
28902
28903 ändern
28904 \family default
28905  können bereits existierende Formeln in Align-Umgebungen umgewandelt werden.
28906 \end_layout
28907
28908 \begin_layout Standard
28909 Um Spalten hinzuzufügen oder zu entfernen, können die Mathe-Werkzeugleistenknöpf
28910
28911 \begin_inset Graphics
28912         filename ../../images/tabular-feature_append-column.png
28913         scale 85
28914
28915 \end_inset
28916
28917  bzw.
28918 \begin_inset space ~
28919 \end_inset
28920
28921
28922 \begin_inset Graphics
28923         filename ../../images/tabular-feature_delete-column.png
28924         scale 85
28925
28926 \end_inset
28927
28928  oder das Menü 
28929 \family sans
28930 Bearbeiten\SpecialChar \menuseparator
28931 Zeilen & Spalten
28932 \family default
28933  verwendet werden.
28934 \end_layout
28935
28936 \begin_layout Subsubsection
28937 Standard align-Umgebung
28938 \begin_inset CommandInset label
28939 LatexCommand label
28940 name "sub:Standard-align-Umgebung"
28941
28942 \end_inset
28943
28944
28945 \begin_inset Index idx
28946 status collapsed
28947
28948 \begin_layout Plain Layout
28949 Formel ! mehrzeilige ! align-Umgebung
28950 \end_layout
28951
28952 \end_inset
28953
28954
28955 \end_layout
28956
28957 \begin_layout Standard
28958 Diese Align-Umgebung wird erstellt, indem man in einer Formel 
28959 \family sans
28960 Strg+Enter
28961 \family default
28962  drückt oder das Menü 
28963 \family sans
28964 Einfügen\SpecialChar \menuseparator
28965 Mathe\SpecialChar \menuseparator
28966 AMS align-Umge\SpecialChar \-
28967 bung
28968 \family default
28969  aufruft.
28970 \end_layout
28971
28972 \begin_layout Standard
28973 Ein Beispiel für zwei nebeneinander stehende Formeln, die mit einer vierspaltige
28974 n align-Umgebung erzeugt wurden:
28975 \begin_inset Formula \begin{align*}
28976 A & =\sin(B) & C & =D\\
28977 C & \ne A & B & \ne D
28978 \end{align*}
28979
28980 \end_inset
28981
28982 Wie man sieht, werden die Formeln in dieser Umgebung so angeordnet, als
28983  würde sich vor der ersten und hinter jeder geraden Spalte ein 
28984 \series bold
28985
28986 \backslash
28987 hfill
28988 \begin_inset Foot
28989 status collapsed
28990
28991 \begin_layout Plain Layout
28992 mehr zu 
28993 \series bold
28994
28995 \backslash
28996 hfill
28997 \series default
28998  siehe 
28999 \begin_inset CommandInset ref
29000 LatexCommand ref
29001 reference "sub:Variabler-Leerraum"
29002
29003 \end_inset
29004
29005
29006 \end_layout
29007
29008 \end_inset
29009
29010
29011 \series default
29012  befinden.
29013  Ist der Formelstil 
29014 \series bold
29015 Eingerückt
29016 \begin_inset Foot
29017 status collapsed
29018
29019 \begin_layout Plain Layout
29020 Formelstile siehe 
29021 \begin_inset CommandInset ref
29022 LatexCommand ref
29023 reference "sec:Formelstile"
29024
29025 \end_inset
29026
29027
29028 \end_layout
29029
29030 \end_inset
29031
29032
29033 \series default
29034  gewählt, wird die Formel ohne den 
29035 \series bold
29036
29037 \backslash
29038 hfill
29039 \series default
29040  vor der ersten Spalte gesetzt.
29041 \end_layout
29042
29043 \begin_layout Subsubsection
29044 Alignat-Umgebung
29045 \begin_inset Index idx
29046 status collapsed
29047
29048 \begin_layout Plain Layout
29049 Formel ! mehrzeilige ! alignat-Umgebung
29050 \end_layout
29051
29052 \end_inset
29053
29054
29055 \end_layout
29056
29057 \begin_layout Standard
29058 In der alignat-Umgebung gibt es keinen vordefinierten Spaltenabstand.
29059  Man kann ihn manuell durch die in 
29060 \begin_inset CommandInset ref
29061 LatexCommand ref
29062 reference "sub:Leerraum"
29063
29064 \end_inset
29065
29066  beschriebenen Leerräume einfügen.
29067 \end_layout
29068
29069 \begin_layout Standard
29070 Das vorige Beispiel in der alignat-Umgebung, bei dem zu Beginn der zweiten
29071  Formel 1
29072 \begin_inset space \thinspace{}
29073 \end_inset
29074
29075 cm Leerraum eingefügt wurde:
29076 \begin_inset Formula \begin{alignat*}{2}
29077 A & =\sin(B) & \hspace{1cm}C & =D\\
29078 C & \ne A & B & \ne D
29079 \end{alignat*}
29080
29081 \end_inset
29082
29083 Weil man den Spaltenabstand für jede Spalte einzeln einstellen kann, eignet
29084  sich diese Umgebung besonders für drei und mehr nebeneinander gesetzte
29085  Formeln.
29086 \end_layout
29087
29088 \begin_layout Subsubsection
29089 Flalign-Umgebung
29090 \begin_inset CommandInset label
29091 LatexCommand label
29092 name "sub:Flalign-Umgebung"
29093
29094 \end_inset
29095
29096
29097 \begin_inset Index idx
29098 status collapsed
29099
29100 \begin_layout Plain Layout
29101 Formel ! mehrzeilige ! flalign-Umgebung
29102 \end_layout
29103
29104 \end_inset
29105
29106
29107 \end_layout
29108
29109 \begin_layout Standard
29110 Bei dieser Umgebung werden die ersten beiden Spalten immer so weit links
29111  und die letzten beiden Spalten so weit rechts wie möglich gesetzt.
29112  Dazu ein Beispiel:
29113 \begin_inset Formula \begin{flalign*}
29114 A & =1 & B & =2 & C & =3\\
29115 X & =\textrm{-}1 & Y & =\textrm{-}2 & Z & =4
29116 \end{flalign*}
29117
29118 \end_inset
29119
29120
29121 \end_layout
29122
29123 \begin_layout Standard
29124 Erzeugt man eine flalign-Umgebung mit ungerader Spaltenanzahl und gibt in
29125  die letzte Spalte eine leere TeX-Klammer ein, kann man einzelne Formeln
29126  im Dokument links setzen obwohl der Formelstil 
29127 \series bold
29128 Zentriert
29129 \series default
29130  eingestellt ist.
29131  Als Beispiel die eingerückte ausgerichtete Formel 
29132 \begin_inset CommandInset ref
29133 LatexCommand eqref
29134 reference "eq:VolInt"
29135
29136 \end_inset
29137
29138 :
29139 \begin_inset Formula \begin{flalign}
29140 \hspace{30pt}\iiint\limits _{V}X\,\mathrm{d}V & =U & {}\end{flalign}
29141
29142 \end_inset
29143
29144 In den ersten beiden Spalten befindet sich die Formel.
29145  Damit sie wie beim Formelstil 
29146 \series bold
29147 Eingerückt
29148 \series default
29149  vom Rand etwas abgesetzt ist, wurde zu Beginn der ersten Spalte 30
29150 \begin_inset space \thinspace{}
29151 \end_inset
29152
29153 pt Leerraum eingefügt.
29154 \end_layout
29155
29156 \begin_layout Subsection
29157 Eqnarray-Umgebung
29158 \begin_inset CommandInset label
29159 LatexCommand label
29160 name "sub:Eqnarray-Umgebung"
29161
29162 \end_inset
29163
29164
29165 \begin_inset Index idx
29166 status collapsed
29167
29168 \begin_layout Plain Layout
29169 Formel ! mehrzeilige ! Eqnarray-Umgebung
29170 \end_layout
29171
29172 \end_inset
29173
29174
29175 \end_layout
29176
29177 \begin_layout Standard
29178 Hat man diese Umgebung erzeugt, erscheinen drei blaue Kästchen.
29179  Der Inhalt des ersten Kästchens wird rechtsbündig, der des letzten linksbündig
29180  ausgerichtet.
29181  Der Inhalt des mittleren Kästchens erscheint zentriert und etwas kleiner,
29182  da dieses Kästchen nur für Relationzeichen gedacht ist.
29183 \begin_inset Formula \begin{eqnarray*}
29184 \frac{ABC}{D} & \frac{ABC}{D} & \frac{ABC}{D}\\
29185 AB & AB & AB\\
29186 A & = & A
29187 \end{eqnarray*}
29188
29189 \end_inset
29190
29191
29192 \end_layout
29193
29194 \begin_layout Subsection
29195 Gather-Umgebung
29196 \begin_inset Index idx
29197 status collapsed
29198
29199 \begin_layout Plain Layout
29200 Formel ! mehrzeilige ! Gather-Umgebung
29201 \end_layout
29202
29203 \end_inset
29204
29205
29206 \end_layout
29207
29208 \begin_layout Standard
29209 Diese Umgebung besteht nur aus einer Spalte, deren Inhalt zentriert ist.
29210  Jede Zeile kann nummeriert werden.
29211 \begin_inset Formula \begin{gather}
29212 A=1\\
29213 X=\textrm{-}1
29214 \end{gather}
29215
29216 \end_inset
29217
29218
29219 \end_layout
29220
29221 \begin_layout Subsection
29222 Multline-Umgebung
29223 \begin_inset CommandInset label
29224 LatexCommand label
29225 name "sub:Multline-Umgebung"
29226
29227 \end_inset
29228
29229
29230 \begin_inset Index idx
29231 status collapsed
29232
29233 \begin_layout Plain Layout
29234 Formel ! mehrzeilige ! Multline-Umgebung
29235 \end_layout
29236
29237 \end_inset
29238
29239
29240 \end_layout
29241
29242 \begin_layout Standard
29243 Die multline-Umgebung besteht wie die Gather-Umgebung nur aus einer Spalte.
29244  Jedoch ist die erste Zeile links, die letzte rechts ausgerichtet.
29245  Alle anderen Zeilen sind zentriert.
29246  Dadurch eignet sich diese Umgebung besonders für lange Formeln.
29247  Als Beispiel Formel 
29248 \begin_inset CommandInset ref
29249 LatexCommand eqref
29250 reference "eq:lefteqn"
29251
29252 \end_inset
29253
29254  in der multline-Umgebung:
29255 \begin_inset Formula \begin{multline}
29256 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}\\
29257 -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}\\
29258 =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}}
29259 \end{multline}
29260
29261 \end_inset
29262
29263
29264 \end_layout
29265
29266 \begin_layout Standard
29267 In der Ausgabe erscheint nur die letzte (erste) Zeile einer multline-Umgebung
29268  nummeriert, wenn rechts (links) nummeriert wird.
29269 \begin_inset Foot
29270 status collapsed
29271
29272 \begin_layout Plain Layout
29273 Nummerierungsstile siehe 
29274 \begin_inset CommandInset ref
29275 LatexCommand ref
29276 reference "sec:Formelstile"
29277
29278 \end_inset
29279
29280
29281 \end_layout
29282
29283 \end_inset
29284
29285
29286 \end_layout
29287
29288 \begin_layout Standard
29289 Mit den Befehlen 
29290 \series bold
29291
29292 \backslash
29293 shoveright
29294 \series default
29295
29296 \begin_inset Index idx
29297 status collapsed
29298
29299 \begin_layout Plain Layout
29300 Befehle ! S ! 
29301 \backslash
29302 shoveright
29303 \end_layout
29304
29305 \end_inset
29306
29307  und 
29308 \series bold
29309
29310 \backslash
29311 shoveleft
29312 \series default
29313
29314 \begin_inset Index idx
29315 status collapsed
29316
29317 \begin_layout Plain Layout
29318 Befehle ! S ! 
29319 \backslash
29320 shoveleft
29321 \end_layout
29322
29323 \end_inset
29324
29325  kann eine zentrierte Zeile rechts bzw.
29326  links ausgerichtet werden.
29327  Die Befehle werden folgendermaßen verwendet:
29328 \end_layout
29329
29330 \begin_layout Standard
29331
29332 \series bold
29333
29334 \backslash
29335 shoveright{Zeileninhalt}
29336 \series default
29337  bzw.
29338  
29339 \series bold
29340
29341 \backslash
29342 shoveleft{Zeileninhalt}
29343 \end_layout
29344
29345 \begin_layout Standard
29346 \begin_inset VSpace medskip
29347 \end_inset
29348
29349 Die Länge 
29350 \series bold
29351
29352 \backslash
29353 multlinegap
29354 \series default
29355
29356 \begin_inset Index idx
29357 status collapsed
29358
29359 \begin_layout Plain Layout
29360 Befehle ! M ! 
29361 \backslash
29362 multlinegap
29363 \end_layout
29364
29365 \end_inset
29366
29367  legt den Abstand der ersten Zeile vom linken Seitenrand fest.
29368  Voreingestellt ist die Länge 0
29369 \begin_inset space \thinspace{}
29370 \end_inset
29371
29372 pt.
29373 \end_layout
29374
29375 \begin_layout Standard
29376 Als Beispiel obige Formel, vor der im TeX-Modus der Befehl
29377 \end_layout
29378
29379 \begin_layout Standard
29380
29381 \series bold
29382
29383 \backslash
29384 setlength{
29385 \backslash
29386 multlinegap}{2cm}
29387 \end_layout
29388
29389 \begin_layout Standard
29390 eingegeben wurde:
29391 \begin_inset ERT
29392 status collapsed
29393
29394 \begin_layout Plain Layout
29395
29396
29397 \backslash
29398 setlength{
29399 \backslash
29400 multlinegap}{2cm}
29401 \end_layout
29402
29403 \end_inset
29404
29405
29406 \begin_inset Formula \begin{multline}
29407 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}\\
29408 \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}}\\
29409 =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}}
29410 \end{multline}
29411
29412 \end_inset
29413
29414
29415 \begin_inset ERT
29416 status collapsed
29417
29418 \begin_layout Plain Layout
29419
29420
29421 \backslash
29422 setlength{
29423 \backslash
29424 multlinegap}{0pt}
29425 \end_layout
29426
29427 \end_inset
29428
29429
29430 \end_layout
29431
29432 \begin_layout Standard
29433 Die zweite Zeile wurde mit 
29434 \series bold
29435
29436 \backslash
29437 shoveleft
29438 \series default
29439  linksbündig ausgerichtet.
29440 \end_layout
29441
29442 \begin_layout Subsection
29443 Mehrzeilige Formelteile
29444 \begin_inset CommandInset label
29445 LatexCommand label
29446 name "sub:Mehrzeilige-Formelteile"
29447
29448 \end_inset
29449
29450
29451 \begin_inset Index idx
29452 status collapsed
29453
29454 \begin_layout Plain Layout
29455 Formel ! mehrzeilige ! Formelteile
29456 \end_layout
29457
29458 \end_inset
29459
29460
29461 \end_layout
29462
29463 \begin_layout Standard
29464 Möchte man nur Teile einer Formel mehrzeilig darstellen, verwendet man eine
29465  der folgenden Umgebungen: 
29466 \series bold
29467 aligned
29468 \series default
29469
29470 \series bold
29471 alignedat
29472 \series default
29473
29474 \series bold
29475 gathered
29476 \series default
29477  oder 
29478 \series bold
29479 split
29480 \series default
29481 .
29482  Sie können über das Menü 
29483 \family sans
29484 Einfügen\SpecialChar \menuseparator
29485 Mathe
29486 \family default
29487  oder mit Befehlen eingefügt werden, wie in diesem Abschnitt beschrieben.
29488 \end_layout
29489
29490 \begin_layout Standard
29491 Die ersten drei haben dieselben Eigenschaften wie die entsprechenden mehrzeilige
29492 n Formel\SpecialChar \-
29493 umgebungen.
29494  Man kann jedoch zusätzlich weitere Formelteile daneben setzen.
29495  Dazu ein Beispiel:
29496 \begin_inset Formula \[
29497 \left.\begin{aligned}\Delta x\Delta p & \ge\frac{\hbar}{2}\\
29498 \Delta E\Delta t & \ge\frac{\hbar}{2}
29499 \end{aligned}
29500 \right\} \textrm{Unbestimmtheitsrelationen}\]
29501
29502 \end_inset
29503
29504
29505 \end_layout
29506
29507 \begin_layout Standard
29508 Um diese Formel zu erhalten, wird eine abgesetzte Formel erstellt, in die
29509  der Befehl 
29510 \series bold
29511
29512 \backslash
29513 aligned
29514 \series default
29515
29516 \begin_inset Index idx
29517 status collapsed
29518
29519 \begin_layout Plain Layout
29520 Befehle ! A ! 
29521 \backslash
29522 aligned
29523 \end_layout
29524
29525 \end_inset
29526
29527  eingegeben wird.
29528  Es erscheint eine lila Box um das blaue Formelkästchen in der man nun Spalten
29529  und Zeilen hinzufügen kann.
29530  Außerhalb der mehrzeiligen Umgebung können Formelteile, wie die Klammer,
29531  gesetzt werden.
29532 \end_layout
29533
29534 \begin_layout Standard
29535 Die aligned-Umgebung eignet sich auch für lange Formeln, deren Zeilen horizontal
29536  ausgerichtet sind.
29537  Verwendet man aligned in einer abgesetzten Formel, hat das den Vorteil,
29538  dass die Formelnummer vertikal mittig hinter den Zeilen steht.
29539  Als Beispiel Formel 
29540 \begin_inset CommandInset ref
29541 LatexCommand eqref
29542 reference "eq:kurzlang"
29543
29544 \end_inset
29545
29546  in der aligned-Umgebung:
29547 \begin_inset Formula \begin{equation}
29548 \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}|}\\
29549  & -\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}|}
29550 \end{aligned}
29551 \end{equation}
29552
29553 \end_inset
29554
29555
29556 \end_layout
29557
29558 \begin_layout Standard
29559 Möchte man die Umgebung 
29560 \series bold
29561 alignedat
29562 \series default
29563
29564 \series bold
29565 gathered
29566 \series default
29567  oder 
29568 \series bold
29569 split
29570 \series default
29571  verwenden, gibt man den Befehl 
29572 \series bold
29573
29574 \backslash
29575 alignedat
29576 \series default
29577 ,
29578 \begin_inset Index idx
29579 status collapsed
29580
29581 \begin_layout Plain Layout
29582 Befehle ! A ! 
29583 \backslash
29584 alignedat
29585 \end_layout
29586
29587 \end_inset
29588
29589  
29590 \series bold
29591
29592 \backslash
29593 gathered
29594 \series default
29595
29596 \begin_inset Index idx
29597 status collapsed
29598
29599 \begin_layout Plain Layout
29600 Befehle ! G ! 
29601 \backslash
29602 gathered
29603 \end_layout
29604
29605 \end_inset
29606
29607  bzw.
29608  
29609 \series bold
29610
29611 \backslash
29612 split
29613 \series default
29614
29615 \begin_inset Index idx
29616 status collapsed
29617
29618 \begin_layout Plain Layout
29619 Befehle ! S ! 
29620 \backslash
29621 split
29622 \end_layout
29623
29624 \end_inset
29625
29626  ein.
29627  Die split-Umgebung hat dieselben Eigenschaften wie die aligned-Umgebung,
29628  jedoch darf sie nur zwei Spalten enthalten.
29629 \end_layout
29630
29631 \begin_layout Subsection
29632 Text in mehrzeiligen Formeln
29633 \begin_inset CommandInset label
29634 LatexCommand label
29635 name "sub:Text-in-mehrzeiligen"
29636
29637 \end_inset
29638
29639
29640 \begin_inset Index idx
29641 status collapsed
29642
29643 \begin_layout Plain Layout
29644 Text ! in Formeln
29645 \end_layout
29646
29647 \end_inset
29648
29649
29650 \begin_inset Index idx
29651 status collapsed
29652
29653 \begin_layout Plain Layout
29654 Formel ! mehrzeilige ! Text
29655 \end_layout
29656
29657 \end_inset
29658
29659
29660 \end_layout
29661
29662 \begin_layout Standard
29663 Bei den Align-Umgebungen sowie der multline- und gather-Umgebung besteht
29664  die Möglichkeit Text einzufügen, der in einer eigenen Zeile erscheint und
29665  die Ausrichtung der Spalten nicht beeinflusst.
29666  Dazu wird der Befehl 
29667 \series bold
29668
29669 \backslash
29670 intertext
29671 \begin_inset Index idx
29672 status collapsed
29673
29674 \begin_layout Plain Layout
29675 Befehle ! I ! 
29676 \backslash
29677 intertext
29678 \end_layout
29679
29680 \end_inset
29681
29682
29683 \series default
29684  nach folgendem Schema benutzt:
29685 \end_layout
29686
29687 \begin_layout Standard
29688
29689 \series bold
29690
29691 \backslash
29692 intertext{Text}
29693 \end_layout
29694
29695 \begin_layout Standard
29696 Der Text sollte nicht länger als eine Zeile sein, da er nicht umgebrochen
29697  werden kann.
29698  Weil LyX 
29699 \series bold
29700
29701 \backslash
29702 intertext
29703 \series default
29704  noch nicht direkt unterstützt, schreibt man den Text als mathematischen
29705  Text.
29706  
29707 \series bold
29708
29709 \backslash
29710 intertext
29711 \series default
29712  muss dabei zu Beginn einer Zeile stehen und erscheint in der Ausgabe über
29713  dieser Zeile.
29714  Ein Beispiel bei dem der Text zu Beginn der zweiten Zeile eingegeben wurde:
29715 \begin_inset Formula \begin{align}
29716 I & =a\sqrt{2}\int_{0}^{2\pi}\sqrt{1+\cos(\phi)}\;\mathrm{d}\phi\\
29717 \intertext{\text{Integrand ist symmetrisch zu \ensuremath{\phi=\pi}, daher}} & =2a\sqrt{2}\int_{0}^{\pi}\sqrt{1+\cos(\phi)}\;\mathrm{d}\phi
29718 \end{align}
29719
29720 \end_inset
29721
29722
29723 \end_layout
29724
29725 \begin_layout Section
29726 Formelnummerierung
29727 \begin_inset Index idx
29728 status collapsed
29729
29730 \begin_layout Plain Layout
29731 Formelnummerierung
29732 \end_layout
29733
29734 \end_inset
29735
29736
29737 \begin_inset Index idx
29738 status collapsed
29739
29740 \begin_layout Plain Layout
29741 Formel ! Nummerierung|see
29742 \begin_inset ERT
29743 status collapsed
29744
29745 \begin_layout Plain Layout
29746
29747 {
29748 \end_layout
29749
29750 \end_inset
29751
29752 Formelnummerierung
29753 \begin_inset ERT
29754 status collapsed
29755
29756 \begin_layout Plain Layout
29757
29758 }
29759 \end_layout
29760
29761 \end_inset
29762
29763
29764 \end_layout
29765
29766 \end_inset
29767
29768
29769 \end_layout
29770
29771 \begin_layout Subsection
29772 Allgemeines
29773 \end_layout
29774
29775 \begin_layout Standard
29776 Nummerierte Formeln können mit dem Menü 
29777 \family sans
29778 Einfügen\SpecialChar \menuseparator
29779 Mathe\SpecialChar \menuseparator
29780 Nummerierte
29781 \begin_inset space ~
29782 \end_inset
29783
29784 Formel
29785 \family default
29786  (Tastenkürzel 
29787 \family sans
29788 Strg+Alt
29789 \begin_inset space ~
29790 \end_inset
29791
29792 N
29793 \family default
29794 ) erstellt, bestehende Formeln über das Menü 
29795 \family sans
29796 Bearbeiten\SpecialChar \menuseparator
29797 Mathe\SpecialChar \menuseparator
29798 Nummerierung
29799 \begin_inset space ~
29800 \end_inset
29801
29802 an/aus
29803 \family default
29804  (Tastenkürzel 
29805 \family sans
29806 Alt+M
29807 \begin_inset space ~
29808 \end_inset
29809
29810 N
29811 \family default
29812 ) nummeriert werden.
29813  Die Formelnummer erscheint in LyX hinter der Formel als Raute in runden
29814  Klammern.
29815  Im Ausdruck erscheint anstelle der Raute die Formelnummer.
29816 \end_layout
29817
29818 \begin_layout Standard
29819 Wird in mehrzeiligen Formeln die Nummerierung angeschaltet, werden alle
29820  Zeilen nummeriert.
29821  Man kann jedoch über das Menü 
29822 \family sans
29823 Bearbeiten\SpecialChar \menuseparator
29824 Mathe\SpecialChar \menuseparator
29825 Zeilennummerierung an/aus
29826 \family default
29827  (Tastenkürzel 
29828 \family sans
29829 Alt+M
29830 \begin_inset space ~
29831 \end_inset
29832
29833 Shift+N
29834 \family default
29835 ) für jede Zeile die Nummerierung festlegen.
29836 \end_layout
29837
29838 \begin_layout Standard
29839 Außer eingebetteten können alle Formeln in zwei verschiedenen Stilen nummeriert
29840  werden, siehe 
29841 \begin_inset CommandInset ref
29842 LatexCommand ref
29843 reference "sec:Formelstile"
29844
29845 \end_inset
29846
29847 .
29848 \end_layout
29849
29850 \begin_layout Subsection
29851 Querverweise
29852 \begin_inset Index idx
29853 status collapsed
29854
29855 \begin_layout Plain Layout
29856 Querverweise ! auf Formeln
29857 \end_layout
29858
29859 \end_inset
29860
29861
29862 \end_layout
29863
29864 \begin_layout Standard
29865 Es kann auf alle Formeln verwiesen werden, die eine Marke besitzen.
29866  Eine Marke wird mit dem Menü 
29867 \family sans
29868 Einfügen\SpecialChar \menuseparator
29869 Marke
29870 \family default
29871  oder dem Werkzeugleistenknopf 
29872 \begin_inset Graphics
29873         filename ../../images/label-insert.png
29874         scale 85
29875
29876 \end_inset
29877
29878  gesetzt.
29879  Dabei muss sich der Cursor in einer abgesetzten Formel befinden.
29880  Es erscheint ein Eingabefeld mit dem voreingestellten Eintrag 
29881 \series bold
29882 eq:
29883 \series default
29884 , nachdem der eigentliche Markenname eingegeben wird.
29885  Der voreingestellte Eintrag steht für 
29886 \begin_inset Quotes gld
29887 \end_inset
29888
29889 equation
29890 \begin_inset Quotes grd
29891 \end_inset
29892
29893  und erleichtert bei größeren Dokumenten die Zuordnung, dass die Marke zu
29894  einer Formel und nicht zu einem Kapitel gehört.
29895  Um eine Marke zu ändern, wählt man wieder das Menü 
29896 \family sans
29897 Einfügen\SpecialChar \menuseparator
29898 Marke
29899 \family default
29900 .
29901 \end_layout
29902
29903 \begin_layout Standard
29904 Der Name der Marke erscheint in LyX in zwei runden Klammern hinter der Formel.
29905  Eine Formel mit Marke wird immer nummeriert.
29906 \end_layout
29907
29908 \begin_layout Standard
29909 Querverweise werden mit dem Menü 
29910 \family sans
29911 Einfügen\SpecialChar \menuseparator
29912 Querverweis
29913 \family default
29914  oder dem Werkzeugleistenknopf 
29915 \begin_inset Graphics
29916         filename ../../images/dialog-show-new-inset_ref.png
29917         scale 85
29918
29919 \end_inset
29920
29921  eingefügt.
29922  Ein Querverweis auf Formeln erscheint im Ausdruck als Formelnummer.
29923  Wenn man im Querverweis Dialogfenster das Format 
29924 \series bold
29925 (<Querverweis>)
29926 \series default
29927  wählt, erscheint der Querverweis als Formelnummer in Klammern.
29928 \begin_inset Newline newline
29929 \end_inset
29930
29931 Drückt man in LyX mit der rechten Maustaste auf einen Querverweis, gelangt
29932  man zur Formel auf die verwiesen wird.
29933 \end_layout
29934
29935 \begin_layout Standard
29936 Als Beispiel folgen Querverweise zu Formeln aus diesem Kapitel:
29937 \begin_inset Note Note
29938 status open
29939
29940 \begin_layout Plain Layout
29941 Man beachte die unterschiedlichen Querverweistypen.
29942 \end_layout
29943
29944 \end_inset
29945
29946
29947 \end_layout
29948
29949 \begin_layout Standard
29950 Die Gleichungen 
29951 \begin_inset CommandInset ref
29952 LatexCommand eqref
29953 reference "eq:tag"
29954
29955 \end_inset
29956
29957  und 
29958 \begin_inset CommandInset ref
29959 LatexCommand eqref
29960 reference "eq:c"
29961
29962 \end_inset
29963
29964  sind äquivalent.
29965  In (
29966 \begin_inset CommandInset ref
29967 LatexCommand ref
29968 reference "eq:Lat"
29969
29970 \end_inset
29971
29972 ) werden im Gegensatz zu (
29973 \begin_inset CommandInset ref
29974 LatexCommand ref
29975 reference "eq:Roem"
29976
29977 \end_inset
29978
29979 ) große lateinische Buchstaben zur Nummerierung verwendet.
29980 \end_layout
29981
29982 \begin_layout Standard
29983 \begin_inset VSpace medskip
29984 \end_inset
29985
29986 Ist im Argument von 
29987 \series bold
29988
29989 \backslash
29990 tag
29991 \begin_inset Foot
29992 status collapsed
29993
29994 \begin_layout Plain Layout
29995
29996 \series bold
29997
29998 \backslash
29999 tag
30000 \series default
30001  ist in 
30002 \begin_inset CommandInset ref
30003 LatexCommand ref
30004 reference "sub:Benutzerdefinierte-Nummerierung"
30005
30006 \end_inset
30007
30008  beschrieben.
30009 \end_layout
30010
30011 \end_inset
30012
30013
30014 \series default
30015  wie in 
30016 \begin_inset CommandInset ref
30017 LatexCommand ref
30018 reference "sub:Absatzboxen"
30019
30020 \end_inset
30021
30022  eine Box angegeben, kann nicht auf die Formel verwiesen werden.
30023 \end_layout
30024
30025 \begin_layout Subsection
30026 Unternummerierung
30027 \begin_inset Index idx
30028 status collapsed
30029
30030 \begin_layout Plain Layout
30031 Formelnummerierung ! Unternummerierung
30032 \end_layout
30033
30034 \end_inset
30035
30036
30037 \end_layout
30038
30039 \begin_layout Standard
30040 Möchte man Formeln weiter untergliedern, kann man das mit Hilfe der Befehle
30041  
30042 \begin_inset Newline newline
30043 \end_inset
30044
30045
30046 \series bold
30047
30048 \backslash
30049 begin{subequations}
30050 \series default
30051  und 
30052 \series bold
30053
30054 \backslash
30055 end{subequations}
30056 \series default
30057  erreichen.
30058  Beide Befehle werden im TeX-Modus eingegeben.
30059 \end_layout
30060
30061 \begin_layout Standard
30062 Dazu ein Beispiel:
30063 \begin_inset Formula \begin{equation}
30064 A=C-B\label{eq:a}\end{equation}
30065
30066 \end_inset
30067
30068
30069 \begin_inset ERT
30070 status collapsed
30071
30072 \begin_layout Plain Layout
30073
30074
30075 \backslash
30076 addtocounter{equation}{-1}
30077 \end_layout
30078
30079 \end_inset
30080
30081
30082 \begin_inset ERT
30083 status collapsed
30084
30085 \begin_layout Plain Layout
30086
30087
30088 \backslash
30089 begin{subequations}
30090 \end_layout
30091
30092 \end_inset
30093
30094
30095 \begin_inset VSpace -5mm
30096 \end_inset
30097
30098
30099 \begin_inset Formula \begin{equation}
30100 B=C-A\label{eq:b}\end{equation}
30101
30102 \end_inset
30103
30104
30105 \begin_inset Formula \begin{equation}
30106 C=A+B\label{eq:c}\end{equation}
30107
30108 \end_inset
30109
30110
30111 \end_layout
30112
30113 \begin_layout Standard
30114 \begin_inset ERT
30115 status collapsed
30116
30117 \begin_layout Plain Layout
30118
30119
30120 \backslash
30121 end{subequations}
30122 \end_layout
30123
30124 \end_inset
30125
30126
30127 \end_layout
30128
30129 \begin_layout Standard
30130 Um das Beispiel zu erstellen, geht man folgendermaßen vor:
30131 \end_layout
30132
30133 \begin_layout Enumerate
30134 erste Formel eingeben
30135 \end_layout
30136
30137 \begin_layout Enumerate
30138
30139 \series bold
30140
30141 \backslash
30142 addtocounter{equation}{-1} 
30143 \backslash
30144 begin{subequations}
30145 \begin_inset Index idx
30146 status collapsed
30147
30148 \begin_layout Plain Layout
30149 Befehle ! A ! 
30150 \backslash
30151 addtocounter
30152 \end_layout
30153
30154 \end_inset
30155
30156
30157 \begin_inset Newline newline
30158 \end_inset
30159
30160
30161 \series default
30162 nach der ersten Formel einfügen
30163 \end_layout
30164
30165 \begin_layout Enumerate
30166 zweite Formel eingeben
30167 \end_layout
30168
30169 \begin_layout Enumerate
30170 dritte Formel eingeben
30171 \end_layout
30172
30173 \begin_layout Enumerate
30174
30175 \series bold
30176
30177 \backslash
30178 end{subequations}
30179 \series default
30180  nach der dritten Formel einfügen
30181 \end_layout
30182
30183 \begin_layout Standard
30184 Jede Formel, die zwischen den Befehlen 
30185 \series bold
30186
30187 \backslash
30188 begin
30189 \series default
30190  und 
30191 \series bold
30192
30193 \backslash
30194 end
30195 \series default
30196  steht, wird mit a, b, c, \SpecialChar \ldots{}
30197  untergliedert.
30198  Bei mehrzeiligen Formeln wird jede Zeile untergliedert.
30199  Alle untergliederten Formeln gelten als 
30200 \emph on
30201 eine
30202 \emph default
30203  nummerierte Formel.
30204  Da jede nummerierte Formel den Formelzähler 
30205 \series bold
30206 equation
30207 \series default
30208  um Eins erhöht, ist der Befehl 
30209 \series bold
30210
30211 \backslash
30212 addtocounter
30213 \series default
30214  notwendig um den Zähler wieder zu erniedrigen.
30215  Ansonsten würden die Formeln 
30216 \begin_inset CommandInset ref
30217 LatexCommand eqref
30218 reference "eq:a"
30219
30220 \end_inset
30221
30222
30223 \begin_inset CommandInset ref
30224 LatexCommand eqref
30225 reference "eq:b"
30226
30227 \end_inset
30228
30229
30230 \begin_inset CommandInset ref
30231 LatexCommand eqref
30232 reference "eq:c"
30233
30234 \end_inset
30235
30236  als 
30237 \begin_inset CommandInset ref
30238 LatexCommand eqref
30239 reference "eq:a"
30240
30241 \end_inset
30242
30243
30244 \begin_inset CommandInset ref
30245 LatexCommand eqref
30246 reference "eq:d"
30247
30248 \end_inset
30249
30250
30251 \begin_inset CommandInset ref
30252 LatexCommand eqref
30253 reference "eq:f"
30254
30255 \end_inset
30256
30257  nummeriert werden.
30258 \end_layout
30259
30260 \begin_layout Standard
30261 Durch die Eingabe der Befehle im TeX-Modus wird zwischen den ersten beiden
30262  Formeln automatisch etwas Leerraum erstellt.
30263  Um dies rückgängig zu machen, fügt man nach dem Befehl 
30264 \series bold
30265
30266 \backslash
30267 begin{subequations}
30268 \series default
30269  -5
30270 \begin_inset space \thinspace{}
30271 \end_inset
30272
30273 mm vertikalen Leerraum ein.
30274  Ist der Formelstil 
30275 \series bold
30276 Eingerückt
30277 \begin_inset Foot
30278 status collapsed
30279
30280 \begin_layout Plain Layout
30281 Formelstile siehe 
30282 \begin_inset CommandInset ref
30283 LatexCommand ref
30284 reference "sec:Formelstile"
30285
30286 \end_inset
30287
30288
30289 \end_layout
30290
30291 \end_inset
30292
30293
30294 \series default
30295  gewählt, fügt man -7
30296 \begin_inset space \thinspace{}
30297 \end_inset
30298
30299 mm Leerraum ein.
30300 \end_layout
30301
30302 \begin_layout Standard
30303 Hier ist ein Beispiel für mehrzeilige Formeln, bei dem die Nummerierung
30304  der zweiten Zeile abgeschaltet wurde:
30305 \begin_inset ERT
30306 status collapsed
30307
30308 \begin_layout Plain Layout
30309
30310
30311 \backslash
30312 begin{subequations}
30313 \end_layout
30314
30315 \end_inset
30316
30317
30318 \begin_inset Formula \begin{eqnarray}
30319 A & = & (B-Z)^{2}=(B-Z)(B-Z)\label{eq:d}\\
30320  & = & B^{2}-ZB-BZ+Z^{²}\nonumber \\
30321  & = & B^{2}-2BZ+Z^{2}\label{eq:f}
30322 \end{eqnarray}
30323
30324 \end_inset
30325
30326
30327 \begin_inset ERT
30328 status collapsed
30329
30330 \begin_layout Plain Layout
30331
30332
30333 \backslash
30334 end{subequations}
30335 \end_layout
30336
30337 \end_inset
30338
30339
30340 \end_layout
30341
30342 \begin_layout Subsection
30343 Benutzerdefinierte Nummerierung
30344 \begin_inset CommandInset label
30345 LatexCommand label
30346 name "sub:Benutzerdefinierte-Nummerierung"
30347
30348 \end_inset
30349
30350
30351 \begin_inset Index idx
30352 status collapsed
30353
30354 \begin_layout Plain Layout
30355 Formelnummerierung ! benutzerdefinierte
30356 \end_layout
30357
30358 \end_inset
30359
30360
30361 \end_layout
30362
30363 \begin_layout Standard
30364 \begin_inset Index idx
30365 status collapsed
30366
30367 \begin_layout Plain Layout
30368 Formelnummerierung ! eigene Klammern
30369 \end_layout
30370
30371 \end_inset
30372
30373 Bei der Standardnummerierung werden um die Formelnummern runde Klammern
30374  gesetzt.
30375  Will man diese Klammern z.
30376 \begin_inset space \thinspace{}
30377 \end_inset
30378
30379 B.
30380  durch senkrechte Striche ersetzen, gibt man im LaTeX-Vorspann Folgendes
30381  an:
30382 \end_layout
30383
30384 \begin_layout Standard
30385
30386 \series bold
30387
30388 \backslash
30389 def
30390 \backslash
30391 tagform@#1{
30392 \backslash
30393 maketag@@@{|#1|}}
30394 \series default
30395
30396 \begin_inset Note Note
30397 status collapsed
30398
30399 \begin_layout Plain Layout
30400 Dieses Makro ist zum Testen bereits im LaTeX-Vorspann angegeben.
30401  Damit es wirksam wird, muss das Prozentzeichen am Zeilenbeginn entfernt
30402  werden.
30403 \end_layout
30404
30405 \end_inset
30406
30407
30408 \end_layout
30409
30410 \begin_layout Standard
30411 Möchte man andere Zeichen haben, ersetzt man die Striche neben 
30412 \series bold
30413 #1
30414 \series default
30415  durch ein oder mehrere gewünschte Zeichen.
30416  Möchte man nur die Formelnummer haben, lässt man die Striche weg.
30417 \end_layout
30418
30419 \begin_layout Standard
30420 \begin_inset VSpace bigskip
30421 \end_inset
30422
30423 Soll statt einer fortlaufenden Nummer ein beliebiger Ausdruck in den Klammern
30424  hinter der Formel stehen, benutzt man den Befehl 
30425 \series bold
30426
30427 \backslash
30428 tag
30429 \series default
30430
30431 \begin_inset Index idx
30432 status collapsed
30433
30434 \begin_layout Plain Layout
30435 Befehle ! T ! 
30436 \backslash
30437 tag
30438 \end_layout
30439
30440 \end_inset
30441
30442 :
30443 \begin_inset Formula \begin{equation}
30444 A+B=C\tag{etwas}\label{eq:tag}\end{equation}
30445
30446 \end_inset
30447
30448  In diesem Beispiel wurde in der Formel der Befehl 
30449 \series bold
30450
30451 \backslash
30452 tag
30453 \series default
30454
30455 \begin_inset ERT
30456 status collapsed
30457
30458 \begin_layout Plain Layout
30459
30460
30461 \backslash
30462 leer 
30463 \end_layout
30464
30465 \end_inset
30466
30467
30468 \series bold
30469 etwas
30470 \series default
30471  eingegeben.
30472 \end_layout
30473
30474 \begin_layout Standard
30475 Gibt man stattdessen 
30476 \series bold
30477
30478 \backslash
30479 tag*
30480 \series default
30481
30482 \begin_inset ERT
30483 status collapsed
30484
30485 \begin_layout Plain Layout
30486
30487
30488 \backslash
30489 leer 
30490 \end_layout
30491
30492 \end_inset
30493
30494
30495 \series bold
30496 etwas
30497 \series default
30498  ein, verhindert der Stern die Klammern um den Ausdruck:
30499 \begin_inset Formula \[
30500 A+B=C\tag*{etwas}\]
30501
30502 \end_inset
30503
30504
30505 \end_layout
30506
30507 \begin_layout Standard
30508 \begin_inset VSpace bigskip
30509 \end_inset
30510
30511 Möchte man die Formelnummerierung neu starten wenn ein neuer Dokumentteil
30512  oder 
30513 \begin_inset ERT
30514 status collapsed
30515
30516 \begin_layout Plain Layout
30517
30518
30519 \backslash
30520 mbox{
30521 \end_layout
30522
30523 \end_inset
30524
30525 -abschnitt
30526 \begin_inset ERT
30527 status collapsed
30528
30529 \begin_layout Plain Layout
30530
30531 }
30532 \end_layout
30533
30534 \end_inset
30535
30536
30537 \begin_inset Note Note
30538 status collapsed
30539
30540 \begin_layout Plain Layout
30541 Der Befehl 
30542 \series bold
30543
30544 \backslash
30545 mbox
30546 \series default
30547  verhindert, dass am Bindestrich umgebrochen wird.
30548 \end_layout
30549
30550 \end_inset
30551
30552  beginnt, verwendet man folgende LaTeX-Vorspannzeile:
30553 \end_layout
30554
30555 \begin_layout Standard
30556
30557 \series bold
30558
30559 \backslash
30560 @addtoreset{equation}{part}
30561 \series default
30562
30563 \begin_inset Index idx
30564 status collapsed
30565
30566 \begin_layout Plain Layout
30567 Befehle ! 
30568 \begin_inset ERT
30569 status collapsed
30570
30571 \begin_layout Plain Layout
30572
30573 "
30574 \end_layout
30575
30576 \end_inset
30577
30578 @
30579 \begin_inset ERT
30580 status collapsed
30581
30582 \begin_layout Plain Layout
30583
30584 "
30585 \end_layout
30586
30587 \end_inset
30588
30589  ! 
30590 \backslash
30591
30592 \begin_inset ERT
30593 status collapsed
30594
30595 \begin_layout Plain Layout
30596
30597 "
30598 \end_layout
30599
30600 \end_inset
30601
30602 @
30603 \begin_inset ERT
30604 status collapsed
30605
30606 \begin_layout Plain Layout
30607
30608 "
30609 \end_layout
30610
30611 \end_inset
30612
30613 addtoreset
30614 \end_layout
30615
30616 \end_inset
30617
30618
30619 \begin_inset Newline newline
30620 \end_inset
30621
30622 bzw.
30623 \begin_inset Newline newline
30624 \end_inset
30625
30626
30627 \series bold
30628
30629 \backslash
30630 @addtoreset{equation}{section}
30631 \end_layout
30632
30633 \begin_layout Standard
30634 Um diese Befehle im TeX-Modus benutzen zu können, muss das 
30635 \begin_inset Quotes gld
30636 \end_inset
30637
30638 @
30639 \begin_inset Quotes grd
30640 \end_inset
30641
30642  Zeichen für LaTeX mit dem Befehl 
30643 \series bold
30644
30645 \backslash
30646 makeatletter
30647 \series default
30648  
30649 \begin_inset Quotes gld
30650 \end_inset
30651
30652 aktiv
30653 \begin_inset Quotes grd
30654 \end_inset
30655
30656  gemacht werden.
30657  Der Befehl 
30658 \series bold
30659
30660 \backslash
30661 makeatother
30662 \series default
30663  macht dies wieder rückgängig.
30664  Daher ist die Befehlssequenz im TeX-Modus:
30665 \end_layout
30666
30667 \begin_layout Standard
30668
30669 \series bold
30670
30671 \backslash
30672 makeatletter
30673 \begin_inset Newline newline
30674 \end_inset
30675
30676
30677 \backslash
30678 @addtoreset{equation}{section}
30679 \begin_inset Newline newline
30680 \end_inset
30681
30682
30683 \backslash
30684 makeatother
30685 \end_layout
30686
30687 \begin_layout Standard
30688 Im LaTeX-Vorspann können 
30689 \series bold
30690
30691 \backslash
30692 makeatletter
30693 \series default
30694  und 
30695 \series bold
30696
30697 \backslash
30698 makeatother
30699 \series default
30700  weggelassen werden, da LyX sie automatisch intern einfügt.
30701 \end_layout
30702
30703 \begin_layout Standard
30704 Um 
30705 \series bold
30706
30707 \backslash
30708 @addtoreset
30709 \series default
30710  rückgängig zu machen, muss die Datei 
30711 \series bold
30712 remreset.sty
30713 \series default
30714
30715 \begin_inset Foot
30716 status collapsed
30717
30718 \begin_layout Plain Layout
30719
30720 \series bold
30721 remreset
30722 \series default
30723  ist Teil des LaTeX-Paketes 
30724 \series bold
30725 carlisle
30726 \series default
30727
30728 \begin_inset Index idx
30729 status collapsed
30730
30731 \begin_layout Plain Layout
30732 Pakete ! carlisle
30733 \end_layout
30734
30735 \end_inset
30736
30737 , das Teil jeder LaTeX-Standardinstallation ist.
30738 \end_layout
30739
30740 \end_inset
30741
30742
30743 \begin_inset Index idx
30744 status collapsed
30745
30746 \begin_layout Plain Layout
30747 Pakete ! remreset
30748 \end_layout
30749
30750 \end_inset
30751
30752  im LaTeX-Vorspann mit der Zeile
30753 \end_layout
30754
30755 \begin_layout Standard
30756
30757 \series bold
30758
30759 \backslash
30760 usepackage{remreset}
30761 \end_layout
30762
30763 \begin_layout Standard
30764 geladen werden.
30765  Dann kann der Befehl 
30766 \series bold
30767
30768 \backslash
30769 @removefromreset
30770 \series default
30771
30772 \begin_inset Index idx
30773 status collapsed
30774
30775 \begin_layout Plain Layout
30776 Befehle ! 
30777 \begin_inset ERT
30778 status collapsed
30779
30780 \begin_layout Plain Layout
30781
30782 "
30783 \end_layout
30784
30785 \end_inset
30786
30787 @
30788 \begin_inset ERT
30789 status collapsed
30790
30791 \begin_layout Plain Layout
30792
30793 "
30794 \end_layout
30795
30796 \end_inset
30797
30798  ! 
30799 \backslash
30800
30801 \begin_inset ERT
30802 status collapsed
30803
30804 \begin_layout Plain Layout
30805
30806 "
30807 \end_layout
30808
30809 \end_inset
30810
30811 @
30812 \begin_inset ERT
30813 status collapsed
30814
30815 \begin_layout Plain Layout
30816
30817 "
30818 \end_layout
30819
30820 \end_inset
30821
30822 removefromreset
30823 \end_layout
30824
30825 \end_inset
30826
30827  mit dem selben Schema wie 
30828 \series bold
30829
30830 \backslash
30831 @addtoreset
30832 \series default
30833  benutzt werden.
30834 \end_layout
30835
30836 \begin_layout Standard
30837 \begin_inset VSpace bigskip
30838 \end_inset
30839
30840 Oftmals möchte man Formeln in folgender Art nummerieren:
30841 \end_layout
30842
30843 \begin_layout Standard
30844
30845 \family typewriter
30846 (Kapitelnummer.Formelnummer)
30847 \end_layout
30848
30849 \begin_layout Standard
30850 Dabei soll die Formelnummer bei jedem Kapitel wieder mit Eins beginnen.
30851 \end_layout
30852
30853 \begin_layout Standard
30854 Für diesen Fall gibt es den Befehl 
30855 \series bold
30856
30857 \backslash
30858 numberwithin
30859 \series default
30860
30861 \begin_inset Index idx
30862 status collapsed
30863
30864 \begin_layout Plain Layout
30865 Befehle ! N ! 
30866 \backslash
30867 numberwithin
30868 \end_layout
30869
30870 \end_inset
30871
30872 , der nach folgendem Schema benutzt wird:
30873 \end_layout
30874
30875 \begin_layout Standard
30876
30877 \series bold
30878
30879 \backslash
30880 numberwithin{Zähler}{Gliederung}
30881 \end_layout
30882
30883 \begin_layout Standard
30884 Zähler gibt an, welche Nummerierung betroffen ist.
30885  Gliederung gibt an, welche Nummer vor dem Punkt steht.
30886 \end_layout
30887
30888 \begin_layout Standard
30889 In unserem Fall gibt man demnach folgende LaTeX-Vorspann- oder TeX-Code-Zeile
30890  ein:
30891 \end_layout
30892
30893 \begin_layout Standard
30894
30895 \series bold
30896
30897 \backslash
30898 numberwithin{equation}{section}
30899 \end_layout
30900
30901 \begin_layout Standard
30902 Das ist das Ergebnis:
30903 \begin_inset ERT
30904 status collapsed
30905
30906 \begin_layout Plain Layout
30907
30908
30909 \backslash
30910 numberwithin{equation}{section}
30911 \end_layout
30912
30913 \end_inset
30914
30915
30916 \begin_inset Formula \begin{equation}
30917 A+B=C\end{equation}
30918
30919 \end_inset
30920
30921
30922 \end_layout
30923
30924 \begin_layout Standard
30925 Möchte man z.
30926 \begin_inset space \thinspace{}
30927 \end_inset
30928
30929 B.
30930  Tabellen nummerieren, so dass die Nummer des Teils vor dem Punkt steht,
30931  gibt man 
30932 \series bold
30933
30934 \backslash
30935 numberwithin{table}{part}
30936 \series default
30937  ein.
30938 \end_layout
30939
30940 \begin_layout Standard
30941 Um wieder auf Standardnummerierung umzuschalten oder um diese Art der Nummerieru
30942 ng zu vermeiden wenn sie von der Dokumentklasse vorgegeben ist, gibt man
30943  folgenden Befehl als TeX-Code oder als LaTeX-Vorspannzeile ein:
30944 \end_layout
30945
30946 \begin_layout Standard
30947
30948 \series bold
30949
30950 \backslash
30951 renewcommand{
30952 \backslash
30953 theequation}{
30954 \backslash
30955 arabic{equation}}
30956 \begin_inset Index idx
30957 status collapsed
30958
30959 \begin_layout Plain Layout
30960 Befehle ! A ! 
30961 \backslash
30962 arabic
30963 \end_layout
30964
30965 \end_inset
30966
30967
30968 \series default
30969
30970 \begin_inset ERT
30971 status collapsed
30972
30973 \begin_layout Plain Layout
30974
30975
30976 \backslash
30977 renewcommand{
30978 \backslash
30979 theequation}{
30980 \backslash
30981 arabic{equation}}
30982 \end_layout
30983
30984 \end_inset
30985
30986
30987 \series bold
30988
30989 \begin_inset Newline newline
30990 \end_inset
30991
30992
30993 \series default
30994 bzw.
30995 \series bold
30996
30997 \begin_inset Newline newline
30998 \end_inset
30999
31000
31001 \backslash
31002 renewcommand{
31003 \backslash
31004 thetable}{
31005 \backslash
31006 arabic{table}}
31007 \end_layout
31008
31009 \begin_layout Standard
31010
31011 \series bold
31012
31013 \backslash
31014 numberwithin
31015 \series default
31016  benutzt intern den oben beschriebenen Befehl 
31017 \series bold
31018
31019 \backslash
31020 @addtoreset
31021 \series default
31022 , der ebenfalls rückgängig gemacht werden muss.
31023 \begin_inset ERT
31024 status collapsed
31025
31026 \begin_layout Plain Layout
31027
31028
31029 \backslash
31030 makeatletter
31031 \end_layout
31032
31033 \begin_layout Plain Layout
31034
31035
31036 \backslash
31037 @removefromreset{equation}{section}
31038 \end_layout
31039
31040 \begin_layout Plain Layout
31041
31042
31043 \backslash
31044 makeatother
31045 \end_layout
31046
31047 \end_inset
31048
31049
31050 \end_layout
31051
31052 \begin_layout Subsection
31053 Nummerierung mit römischen Zahlen und Buchstaben
31054 \begin_inset Index idx
31055 status collapsed
31056
31057 \begin_layout Plain Layout
31058 Formelnummerierung ! mit Buchstaben
31059 \end_layout
31060
31061 \end_inset
31062
31063
31064 \begin_inset Index idx
31065 status collapsed
31066
31067 \begin_layout Plain Layout
31068 Formelnummerierung ! mit römischen Zahlen
31069 \end_layout
31070
31071 \end_inset
31072
31073
31074 \end_layout
31075
31076 \begin_layout Standard
31077 Formeln können auch mit römischen Zahlen und lateinischen Buchstaben nummeriert
31078  werden.
31079  Um z.
31080 \begin_inset space \thinspace{}
31081 \end_inset
31082
31083 B.
31084  mit kleinen römischen Zahlen zu nummerieren, gibt man vor der Formel im
31085  TeX-Modus den Befehl
31086 \end_layout
31087
31088 \begin_layout Standard
31089
31090 \series bold
31091
31092 \backslash
31093 renewcommand{
31094 \backslash
31095 theequation}{
31096 \backslash
31097 roman{equation}}
31098 \end_layout
31099
31100 \begin_layout Standard
31101 ein.
31102  
31103 \series bold
31104
31105 \backslash
31106 renewcommand
31107 \series default
31108
31109 \begin_inset Index idx
31110 status collapsed
31111
31112 \begin_layout Plain Layout
31113 Befehle ! R ! 
31114 \backslash
31115 renewcommand
31116 \end_layout
31117
31118 \end_inset
31119
31120  weist dem vordefinierten Befehl 
31121 \series bold
31122
31123 \backslash
31124 theequation
31125 \series default
31126  den Befehl
31127 \begin_inset Newline linebreak
31128 \end_inset
31129
31130
31131 \series bold
31132
31133 \backslash
31134 roman{equation}
31135 \series default
31136  zu.
31137 \begin_inset Foot
31138 status collapsed
31139
31140 \begin_layout Plain Layout
31141 Der Befehl 
31142 \series bold
31143
31144 \backslash
31145 renewcommand
31146 \series default
31147  besitzt dasselbe Schema wie der in 
31148 \begin_inset CommandInset ref
31149 LatexCommand ref
31150 reference "sub:Der-Befehl-newcommand"
31151
31152 \end_inset
31153
31154  beschriebene Befehl
31155 \begin_inset Newline newline
31156 \end_inset
31157
31158
31159 \series bold
31160
31161 \backslash
31162 newcommand
31163 \series default
31164 .
31165 \end_layout
31166
31167 \end_inset
31168
31169  
31170 \series bold
31171 equation
31172 \series default
31173  ist der Formelzähler.
31174  Stellt man einem Zähler den Befehl 
31175 \series bold
31176
31177 \backslash
31178 the
31179 \series default
31180  voran, bewirkt dies, dass der Wert des Zählers als arabische Zahl ausgegeben
31181  wird.
31182  Gibt man an, dass eine Formel nummeriert wird, setzt LaTeX intern den Befehl
31183  
31184 \series bold
31185
31186 \backslash
31187 theequation
31188 \series default
31189  hinter die Formel.
31190  
31191 \series bold
31192
31193 \backslash
31194 roman{equation}
31195 \begin_inset Index idx
31196 status collapsed
31197
31198 \begin_layout Plain Layout
31199 Befehle ! R ! 
31200 \backslash
31201 roman
31202 \end_layout
31203
31204 \end_inset
31205
31206
31207 \series default
31208  bewirkt, dass der Formelzähler als kleine römische Zahl erscheint.
31209 \end_layout
31210
31211 \begin_layout Standard
31212 Alle Formeln nach dem 
31213 \series bold
31214
31215 \backslash
31216 renewcommand
31217 \series default
31218 -Befehl werden nun römisch nummeriert.
31219  Um auf Nummerierung mit großen römischen Zahlen umzuschalten, gibt man
31220  den Befehl erneut ein, ersetzt aber 
31221 \series bold
31222
31223 \backslash
31224 roman
31225 \series default
31226  durch 
31227 \series bold
31228
31229 \backslash
31230 Roman
31231 \series default
31232
31233 \begin_inset Index idx
31234 status collapsed
31235
31236 \begin_layout Plain Layout
31237 Befehle ! R ! 
31238 \backslash
31239 roman@
31240 \backslash
31241 Roman
31242 \end_layout
31243
31244 \end_inset
31245
31246 .
31247  Für die 
31248 \begin_inset Quotes gld
31249 \end_inset
31250
31251 Nummerierung
31252 \begin_inset Quotes grd
31253 \end_inset
31254
31255  mit lateinischen Buchstaben gibt es den Befehl 
31256 \series bold
31257
31258 \backslash
31259 alph
31260 \series default
31261
31262 \begin_inset Index idx
31263 status collapsed
31264
31265 \begin_layout Plain Layout
31266 Befehle ! A ! 
31267 \backslash
31268 alph
31269 \end_layout
31270
31271 \end_inset
31272
31273  für kleine und 
31274 \series bold
31275
31276 \backslash
31277 Alph
31278 \series default
31279
31280 \begin_inset Index idx
31281 status collapsed
31282
31283 \begin_layout Plain Layout
31284 Befehle ! A ! 
31285 \backslash
31286 alph@
31287 \backslash
31288 Alph
31289 \end_layout
31290
31291 \end_inset
31292
31293  für große Buchstaben.
31294 \end_layout
31295
31296 \begin_layout Standard
31297 \begin_inset Note Greyedout
31298 status open
31299
31300 \begin_layout Plain Layout
31301
31302 \series bold
31303 Achtung:
31304 \series default
31305  Es können nur maximal 26 Formeln in einem Dokument mit lateinischen Buchstaben
31306  nummeriert werden.
31307 \end_layout
31308
31309 \end_inset
31310
31311
31312 \end_layout
31313
31314 \begin_layout Standard
31315 \begin_inset ERT
31316 status collapsed
31317
31318 \begin_layout Plain Layout
31319
31320
31321 \backslash
31322 renewcommand{
31323 \backslash
31324 theequation}{
31325 \backslash
31326 roman{equation}}
31327 \end_layout
31328
31329 \end_inset
31330
31331
31332 \end_layout
31333
31334 \begin_layout Standard
31335 \begin_inset Formula \begin{equation}
31336 A=\textrm{römisch}\end{equation}
31337
31338 \end_inset
31339
31340
31341 \begin_inset ERT
31342 status collapsed
31343
31344 \begin_layout Plain Layout
31345
31346
31347 \backslash
31348 renewcommand{
31349 \backslash
31350 theequation}{
31351 \backslash
31352 Roman{equation}}
31353 \end_layout
31354
31355 \end_inset
31356
31357
31358 \begin_inset Formula \begin{equation}
31359 B=\textrm{Römisch}\label{eq:Roem}\end{equation}
31360
31361 \end_inset
31362
31363
31364 \begin_inset ERT
31365 status collapsed
31366
31367 \begin_layout Plain Layout
31368
31369
31370 \backslash
31371 renewcommand{
31372 \backslash
31373 theequation}{
31374 \backslash
31375 alph{equation}}
31376 \end_layout
31377
31378 \end_inset
31379
31380
31381 \begin_inset Formula \begin{equation}
31382 C=\textrm{lateinisch}\end{equation}
31383
31384 \end_inset
31385
31386
31387 \begin_inset ERT
31388 status collapsed
31389
31390 \begin_layout Plain Layout
31391
31392
31393 \backslash
31394 renewcommand{
31395 \backslash
31396 theequation}{
31397 \backslash
31398 Alph{equation}}
31399 \end_layout
31400
31401 \end_inset
31402
31403
31404 \begin_inset Formula \begin{equation}
31405 D=\textrm{Lateinisch}\label{eq:Lat}\end{equation}
31406
31407 \end_inset
31408
31409
31410 \end_layout
31411
31412 \begin_layout Standard
31413 Um wieder auf Standardnummerierung umzuschalten, gibt man folgenden Befehl
31414  ein:
31415 \end_layout
31416
31417 \begin_layout Standard
31418
31419 \series bold
31420
31421 \backslash
31422 renewcommand{
31423 \backslash
31424 theequation}{
31425 \backslash
31426 arabic{equation}}
31427 \begin_inset Index idx
31428 status collapsed
31429
31430 \begin_layout Plain Layout
31431 Befehle ! A ! 
31432 \backslash
31433 arabic
31434 \end_layout
31435
31436 \end_inset
31437
31438
31439 \end_layout
31440
31441 \begin_layout Standard
31442 \begin_inset ERT
31443 status collapsed
31444
31445 \begin_layout Plain Layout
31446
31447
31448 \backslash
31449 renewcommand{
31450 \backslash
31451 theequation}{
31452 \backslash
31453 arabic{equation}}
31454 \end_layout
31455
31456 \end_inset
31457
31458
31459 \begin_inset Formula \begin{equation}
31460 E=\textrm{arabisch}\end{equation}
31461
31462 \end_inset
31463
31464
31465 \end_layout
31466
31467 \begin_layout Standard
31468 \begin_inset VSpace medskip
31469 \end_inset
31470
31471 Wie man sieht, werden die Formeln unabhängig von der Nummerierungsart durchnumme
31472 riert.
31473  Soll beim Wechsel der Nummerierungsart die Nummerierung wieder mit Eins
31474  beginnen, müssen neue Formelzähler angelegt werden.
31475  Eine Beschreibung dazu findet man in der Datei 
31476 \begin_inset CommandInset href
31477 LatexCommand href
31478 name "Formelnummerierung.lyx"
31479 target "run:Formelnummerierung.lyx"
31480
31481 \end_inset
31482
31483 .
31484 \end_layout
31485
31486 \begin_layout Section
31487 Chemische Symbole und Reaktionsgleichungen
31488 \begin_inset CommandInset label
31489 LatexCommand label
31490 name "sub:Chemische-Symbole-und"
31491
31492 \end_inset
31493
31494
31495 \begin_inset Index idx
31496 status collapsed
31497
31498 \begin_layout Plain Layout
31499 chemische Zeichen ! Symbole
31500 \end_layout
31501
31502 \end_inset
31503
31504
31505 \begin_inset Index idx
31506 status collapsed
31507
31508 \begin_layout Plain Layout
31509 Reaktionsgleichungen
31510 \end_layout
31511
31512 \end_inset
31513
31514
31515 \begin_inset Index idx
31516 status collapsed
31517
31518 \begin_layout Plain Layout
31519 Symbole ! chemische
31520 \end_layout
31521
31522 \end_inset
31523
31524
31525 \end_layout
31526
31527 \begin_layout Standard
31528 Ein Beispieltext aus der Chemie:
31529 \end_layout
31530
31531 \begin_layout Quote
31532 Das 
31533 \begin_inset Formula $\mathrm{SO_{4}^{2-}}$
31534 \end_inset
31535
31536 -Ion verbindet sich mit zwei 
31537 \begin_inset Formula $\mathrm{Na^{+}}$
31538 \end_inset
31539
31540 -Ionen zu Natriumsulfat 
31541 \begin_inset Formula $\left(\mathrm{Na_{2}SO_{4}}\right)$
31542 \end_inset
31543
31544 .
31545  Die Reaktionsgleichung dazu lautet:
31546 \begin_inset Formula \begin{equation}
31547 \mathrm{2\, Na^{+}+SO_{4}^{2-}\longrightarrow Na_{2}SO_{4}}\label{eq:chemische-Reaktion}\end{equation}
31548
31549 \end_inset
31550
31551
31552 \end_layout
31553
31554 \begin_layout Standard
31555 Diese Reaktionsgleichung kann direkt als Formel erstellt werden.
31556  Damit die Symbole nicht kursiv erscheinen, markiert man sämtliche Zeichen
31557  in der Formel und wandelt diese mit der Tastenkombination 
31558 \family sans
31559 Alt+Z
31560 \begin_inset space ~
31561 \end_inset
31562
31563 R
31564 \family default
31565  in den aufrechten Schriftstil um.
31566 \begin_inset Foot
31567 status collapsed
31568
31569 \begin_layout Plain Layout
31570 Schriftstile siehe 
31571 \begin_inset CommandInset ref
31572 LatexCommand ref
31573 reference "sub:Schriftstile"
31574
31575 \end_inset
31576
31577
31578 \end_layout
31579
31580 \end_inset
31581
31582
31583 \end_layout
31584
31585 \begin_layout Standard
31586 Eine komfortablerer Weg chemische Formeln zu setzen, ist es den Befehl
31587 \series bold
31588  
31589 \backslash
31590 ce
31591 \series default
31592
31593 \begin_inset Index idx
31594 status collapsed
31595
31596 \begin_layout Plain Layout
31597 Befehle ! C ! 
31598 \backslash
31599 ce
31600 \end_layout
31601
31602 \end_inset
31603
31604  zu benutzen.
31605  Dieser ist verfügbar, wenn das LaTeX-Paket 
31606 \series bold
31607 mhchem
31608 \series default
31609
31610 \begin_inset Index idx
31611 status collapsed
31612
31613 \begin_layout Plain Layout
31614 Pakete ! mhchem
31615 \end_layout
31616
31617 \end_inset
31618
31619  installiert ist.
31620  Nachdem 
31621 \series bold
31622
31623 \backslash
31624 ce
31625 \series default
31626  in eine Formel eingefügt wurde, erscheint eine neue blaue Box in die chemische
31627  Formeln in intuitiver Weise eingegeben werden können.
31628 \end_layout
31629
31630 \begin_layout Standard
31631 \align center
31632 \begin_inset Tabular
31633 <lyxtabular version="3" rows="9" columns="2">
31634 <features tabularvalignment="middle">
31635 <column alignment="center" valignment="top" width="0">
31636 <column alignment="center" valignment="top" width="0">
31637 <row>
31638 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
31639 \begin_inset Text
31640
31641 \begin_layout Plain Layout
31642 Befehl
31643 \end_layout
31644
31645 \end_inset
31646 </cell>
31647 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
31648 \begin_inset Text
31649
31650 \begin_layout Plain Layout
31651 Ergebnis
31652 \begin_inset Note Note
31653 status collapsed
31654
31655 \begin_layout Plain Layout
31656
31657 \series bold
31658
31659 \backslash
31660 raisebox
31661 \series default
31662  dient nur als Abstandhalter.
31663 \end_layout
31664
31665 \end_inset
31666
31667
31668 \end_layout
31669
31670 \end_inset
31671 </cell>
31672 </row>
31673 <row>
31674 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
31675 \begin_inset Text
31676
31677 \begin_layout Plain Layout
31678
31679 \backslash
31680 ce
31681 \begin_inset ERT
31682 status collapsed
31683
31684 \begin_layout Plain Layout
31685
31686
31687 \backslash
31688 leer 
31689 \end_layout
31690
31691 \end_inset
31692
31693 H2CO3
31694 \end_layout
31695
31696 \end_inset
31697 </cell>
31698 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
31699 \begin_inset Text
31700
31701 \begin_layout Plain Layout
31702 \begin_inset Formula $\raisebox{4.5mm}{}\ce{H2CO3}\raisebox{-2mm}{}$
31703 \end_inset
31704
31705
31706 \end_layout
31707
31708 \end_inset
31709 </cell>
31710 </row>
31711 <row>
31712 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
31713 \begin_inset Text
31714
31715 \begin_layout Plain Layout
31716
31717 \backslash
31718 ce
31719 \begin_inset ERT
31720 status collapsed
31721
31722 \begin_layout Plain Layout
31723
31724
31725 \backslash
31726 leer 
31727 \end_layout
31728
31729 \end_inset
31730
31731 SO4^2-
31732 \end_layout
31733
31734 \end_inset
31735 </cell>
31736 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
31737 \begin_inset Text
31738
31739 \begin_layout Plain Layout
31740 \begin_inset Formula $\raisebox{5mm}{}\ce{SO4^{2-}}\raisebox{-2mm}{}$
31741 \end_inset
31742
31743
31744 \end_layout
31745
31746 \end_inset
31747 </cell>
31748 </row>
31749 <row>
31750 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
31751 \begin_inset Text
31752
31753 \begin_layout Plain Layout
31754
31755 \backslash
31756 ce
31757 \begin_inset ERT
31758 status collapsed
31759
31760 \begin_layout Plain Layout
31761
31762
31763 \backslash
31764 leer 
31765 \end_layout
31766
31767 \end_inset
31768
31769 (NH4)2S
31770 \end_layout
31771
31772 \end_inset
31773 </cell>
31774 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
31775 \begin_inset Text
31776
31777 \begin_layout Plain Layout
31778 \begin_inset Formula $\raisebox{4.5mm}{}\ce{(NH4)2S}\raisebox{-2mm}{}$
31779 \end_inset
31780
31781
31782 \end_layout
31783
31784 \end_inset
31785 </cell>
31786 </row>
31787 <row>
31788 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
31789 \begin_inset Text
31790
31791 \begin_layout Plain Layout
31792
31793 \backslash
31794 ce
31795 \begin_inset ERT
31796 status collapsed
31797
31798 \begin_layout Plain Layout
31799
31800
31801 \backslash
31802 leer 
31803 \end_layout
31804
31805 \end_inset
31806
31807 KCr(SO4)2.12H2O
31808 \end_layout
31809
31810 \end_inset
31811 </cell>
31812 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
31813 \begin_inset Text
31814
31815 \begin_layout Plain Layout
31816 \begin_inset Formula $\raisebox{4.5mm}{}\ce{KCr(SO4)2.12H2O}\raisebox{-2mm}{}$
31817 \end_inset
31818
31819
31820 \end_layout
31821
31822 \end_inset
31823 </cell>
31824 </row>
31825 <row>
31826 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
31827 \begin_inset Text
31828
31829 \begin_layout Plain Layout
31830
31831 \backslash
31832 ce
31833 \begin_inset ERT
31834 status collapsed
31835
31836 \begin_layout Plain Layout
31837
31838
31839 \backslash
31840 leer 
31841 \end_layout
31842
31843 \end_inset
31844
31845 A-B
31846 \backslash
31847 dbond
31848 \begin_inset ERT
31849 status collapsed
31850
31851 \begin_layout Plain Layout
31852
31853
31854 \backslash
31855 leer 
31856 \end_layout
31857
31858 \end_inset
31859
31860 C
31861 \backslash
31862 tbond
31863 \begin_inset ERT
31864 status collapsed
31865
31866 \begin_layout Plain Layout
31867
31868
31869 \backslash
31870 leer 
31871 \end_layout
31872
31873 \end_inset
31874
31875 D
31876 \end_layout
31877
31878 \end_inset
31879 </cell>
31880 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
31881 \begin_inset Text
31882
31883 \begin_layout Plain Layout
31884 \begin_inset Formula $\raisebox{4.5mm}{}\ce{A-B\dbond C\tbond D}\raisebox{-2mm}{}$
31885 \end_inset
31886
31887
31888 \end_layout
31889
31890 \end_inset
31891 </cell>
31892 </row>
31893 <row>
31894 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
31895 \begin_inset Text
31896
31897 \begin_layout Plain Layout
31898
31899 \backslash
31900 ce
31901 \begin_inset ERT
31902 status collapsed
31903
31904 \begin_layout Plain Layout
31905
31906
31907 \backslash
31908 leer 
31909 \end_layout
31910
31911 \end_inset
31912
31913 ^227
31914 \begin_inset Formula $\downarrow$
31915 \end_inset
31916
31917 _90
31918 \begin_inset Formula $\to$
31919 \end_inset
31920
31921 Th+
31922 \end_layout
31923
31924 \end_inset
31925 </cell>
31926 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
31927 \begin_inset Text
31928
31929 \begin_layout Plain Layout
31930 \begin_inset Formula $\raisebox{5mm}{}\ce{_{90}^{227}Th+}\raisebox{-2mm}{}$
31931 \end_inset
31932
31933
31934 \end_layout
31935
31936 \end_inset
31937 </cell>
31938 </row>
31939 <row>
31940 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
31941 \begin_inset Text
31942
31943 \begin_layout Plain Layout
31944
31945 \backslash
31946 ce
31947 \begin_inset ERT
31948 status collapsed
31949
31950 \begin_layout Plain Layout
31951
31952
31953 \backslash
31954 leer 
31955 \end_layout
31956
31957 \end_inset
31958
31959 CO2
31960 \begin_inset ERT
31961 status collapsed
31962
31963 \begin_layout Plain Layout
31964
31965
31966 \backslash
31967 leer 
31968 \end_layout
31969
31970 \end_inset
31971
31972 +
31973 \begin_inset ERT
31974 status collapsed
31975
31976 \begin_layout Plain Layout
31977
31978
31979 \backslash
31980 leer 
31981 \end_layout
31982
31983 \end_inset
31984
31985 C
31986 \begin_inset ERT
31987 status collapsed
31988
31989 \begin_layout Plain Layout
31990
31991
31992 \backslash
31993 leer 
31994 \end_layout
31995
31996 \end_inset
31997
31998 <=>
31999 \begin_inset ERT
32000 status collapsed
32001
32002 \begin_layout Plain Layout
32003
32004
32005 \backslash
32006 leer 
32007 \end_layout
32008
32009 \end_inset
32010
32011 2CO
32012 \end_layout
32013
32014 \end_inset
32015 </cell>
32016 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
32017 \begin_inset Text
32018
32019 \begin_layout Plain Layout
32020 \begin_inset Formula $\raisebox{4.5mm}{}\ce{CO2 + C <=> 2CO}\raisebox{-2mm}{}$
32021 \end_inset
32022
32023
32024 \end_layout
32025
32026 \end_inset
32027 </cell>
32028 </row>
32029 <row>
32030 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
32031 \begin_inset Text
32032
32033 \begin_layout Plain Layout
32034
32035 \backslash
32036 ce
32037 \begin_inset ERT
32038 status collapsed
32039
32040 \begin_layout Plain Layout
32041
32042
32043 \backslash
32044 leer 
32045 \end_layout
32046
32047 \end_inset
32048
32049 CO2
32050 \begin_inset ERT
32051 status collapsed
32052
32053 \begin_layout Plain Layout
32054
32055
32056 \backslash
32057 leer 
32058 \end_layout
32059
32060 \end_inset
32061
32062 +
32063 \begin_inset ERT
32064 status collapsed
32065
32066 \begin_layout Plain Layout
32067
32068
32069 \backslash
32070 leer 
32071 \end_layout
32072
32073 \end_inset
32074
32075 C
32076 \begin_inset ERT
32077 status collapsed
32078
32079 \begin_layout Plain Layout
32080
32081
32082 \backslash
32083 leer 
32084 \end_layout
32085
32086 \end_inset
32087
32088 ->[
32089 \backslash
32090 alpha][
32091 \backslash
32092 beta]
32093 \begin_inset ERT
32094 status collapsed
32095
32096 \begin_layout Plain Layout
32097
32098
32099 \backslash
32100 leer 
32101 \end_layout
32102
32103 \end_inset
32104
32105 2CO}
32106 \end_layout
32107
32108 \end_inset
32109 </cell>
32110 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
32111 \begin_inset Text
32112
32113 \begin_layout Plain Layout
32114 \begin_inset Formula $\raisebox{5mm}{}\ce{CO2 + C ->[\alpha][\beta] 2CO}\raisebox{-4mm}{}$
32115 \end_inset
32116
32117
32118 \end_layout
32119
32120 \end_inset
32121 </cell>
32122 </row>
32123 </lyxtabular>
32124
32125 \end_inset
32126
32127
32128 \end_layout
32129
32130 \begin_layout Standard
32131 \begin_inset Note Greyedout
32132 status open
32133
32134 \begin_layout Plain Layout
32135
32136 \series bold
32137 Achtung:
32138 \series default
32139  Wenn eine Formel in eine 
32140 \series bold
32141
32142 \backslash
32143 ce
32144 \series default
32145 -Box eingefügt wird, führt dies zu LaTeX-Fehlern.
32146  In diesem Fall muss daher TeX-Code verwendet werden, wie z.
32147 \begin_inset space \thinspace{}
32148 \end_inset
32149
32150 B.
32151  für 
32152 \series bold
32153
32154 \backslash
32155 ce{$
32156 \backslash
32157 mu
32158 \backslash
32159 hyphen$Cl}
32160 \series default
32161
32162 \begin_inset ERT
32163 status collapsed
32164
32165 \begin_layout Plain Layout
32166
32167
32168 \backslash
32169 ce{$
32170 \backslash
32171 mu
32172 \backslash
32173 hyphen$Cl}
32174 \end_layout
32175
32176 \end_inset
32177
32178  
32179 \end_layout
32180
32181 \end_inset
32182
32183
32184 \end_layout
32185
32186 \begin_layout Standard
32187 Wird 
32188 \series bold
32189
32190 \backslash
32191 ce
32192 \series default
32193  benutzt, lautet der Befehl für Gleichung
32194 \begin_inset space ~
32195 \end_inset
32196
32197
32198 \begin_inset CommandInset ref
32199 LatexCommand eqref
32200 reference "eq:chemische-Reaktion"
32201
32202 \end_inset
32203
32204 :
32205 \begin_inset Newline newline
32206 \end_inset
32207
32208
32209 \series bold
32210  
32211 \backslash
32212 ce
32213 \series default
32214
32215 \begin_inset ERT
32216 status collapsed
32217
32218 \begin_layout Plain Layout
32219
32220
32221 \backslash
32222 leer 
32223 \end_layout
32224
32225 \end_inset
32226
32227
32228 \series bold
32229 2Na+
32230 \series default
32231
32232 \begin_inset ERT
32233 status collapsed
32234
32235 \begin_layout Plain Layout
32236
32237
32238 \backslash
32239 leer 
32240 \end_layout
32241
32242 \end_inset
32243
32244
32245 \series bold
32246 +
32247 \series default
32248
32249 \begin_inset ERT
32250 status collapsed
32251
32252 \begin_layout Plain Layout
32253
32254
32255 \backslash
32256 leer 
32257 \end_layout
32258
32259 \end_inset
32260
32261
32262 \series bold
32263 SO4^2-
32264 \series default
32265
32266 \begin_inset ERT
32267 status collapsed
32268
32269 \begin_layout Plain Layout
32270
32271
32272 \backslash
32273 leer 
32274 \end_layout
32275
32276 \end_inset
32277
32278
32279 \begin_inset ERT
32280 status collapsed
32281
32282 \begin_layout Plain Layout
32283
32284
32285 \backslash
32286 leer 
32287 \end_layout
32288
32289 \end_inset
32290
32291
32292 \series bold
32293 ->
32294 \series default
32295
32296 \begin_inset ERT
32297 status collapsed
32298
32299 \begin_layout Plain Layout
32300
32301
32302 \backslash
32303 leer 
32304 \end_layout
32305
32306 \end_inset
32307
32308
32309 \series bold
32310 Na2SO4
32311 \end_layout
32312
32313 \begin_layout Standard
32314 Um mehrzeilige chemische Gleichungen zu erzeugen, wird zuerst eine mehrzeilige
32315  Formel erstellt, wie in 
32316 \begin_inset CommandInset ref
32317 LatexCommand ref
32318 reference "sec:Mehrzeilige-Formeln"
32319
32320 \end_inset
32321
32322  beschrieben.
32323  Anschließend wird in jeder kleinen blauen Box der Formel der Befehl 
32324 \series bold
32325
32326 \backslash
32327 ce
32328 \series default
32329  verwendet.
32330  
32331 \begin_inset CommandInset ref
32332 LatexCommand eqref
32333 reference "eq:TEOS-Reaktion-1"
32334
32335 \end_inset
32336
32337  und 
32338 \begin_inset CommandInset ref
32339 LatexCommand eqref
32340 reference "eq:TEOS-Reaktion-2"
32341
32342 \end_inset
32343
32344  sind ein Beispiel für eine mehrstufige chemische Reaktion, bei der jede
32345  Gleichung eine eigene Nummer hat.
32346 \begin_inset Formula \begin{eqnarray}
32347 \ce{TEOS + 4O} & \ce{->} & \ce{Si(OH)4 + 4C2H4O}\label{eq:TEOS-Reaktion-1}\\
32348 \ce{Si(OH)4} & \ce{->} & \ce{SiO2 + 2H2O}\label{eq:TEOS-Reaktion-2}
32349 \end{eqnarray}
32350
32351 \end_inset
32352
32353
32354 \end_layout
32355
32356 \begin_layout Standard
32357 Außer 
32358 \series bold
32359
32360 \backslash
32361 ce
32362 \series default
32363  bietet das Paket 
32364 \series bold
32365 mhchem
32366 \series default
32367  noch den Befehl 
32368 \series bold
32369
32370 \backslash
32371 cf
32372 \series default
32373
32374 \begin_inset Index idx
32375 status collapsed
32376
32377 \begin_layout Plain Layout
32378 Befehle ! C ! 
32379 \backslash
32380 cf
32381 \end_layout
32382
32383 \end_inset
32384
32385  für spezielle Fälle.
32386  Mehr über 
32387 \series bold
32388
32389 \backslash
32390 cf
32391 \series default
32392  und weitere Beispiele sind in der Dokumentation von 
32393 \series bold
32394 mhchem
32395 \series default
32396  zu finden, 
32397 \begin_inset CommandInset citation
32398 LatexCommand cite
32399 key "mhchem"
32400
32401 \end_inset
32402
32403 .
32404 \end_layout
32405
32406 \begin_layout Section
32407 Diagramme
32408 \end_layout
32409
32410 \begin_layout Standard
32411 LyX unterstützt zwei Typen kommutativer Diagramme: 
32412 \series bold
32413 amscd
32414 \series default
32415  und 
32416 \series bold
32417 xymatrix
32418 \series default
32419 , die im Folgenden erläutert sind.
32420 \end_layout
32421
32422 \begin_layout Subsection
32423 amscd Diagramme
32424 \begin_inset Index idx
32425 status collapsed
32426
32427 \begin_layout Plain Layout
32428 Diagramme ! amscd
32429 \end_layout
32430
32431 \end_inset
32432
32433
32434 \end_layout
32435
32436 \begin_layout Standard
32437 Diagramme dieses Typs stellen Beziehungen mittels horizontaler und vertikaler
32438  Linien oder Pfeilen dar:
32439 \begin_inset Formula \[
32440 \begin{CD}A@>>>B@>>>C\\
32441 @AAA@.@VVV\\
32442 F@<<<E@<<<D
32443 \end{CD}\]
32444
32445 \end_inset
32446
32447
32448 \end_layout
32449
32450 \begin_layout Standard
32451 Um sie zu erstellen, gibt man in einer Formel den Befehl 
32452 \series bold
32453
32454 \backslash
32455 CD
32456 \begin_inset Index idx
32457 status collapsed
32458
32459 \begin_layout Plain Layout
32460 Befehle ! C ! 
32461 \backslash
32462 CD
32463 \end_layout
32464
32465 \end_inset
32466
32467
32468 \series default
32469  ein.
32470  Es erscheint ein blaues Kästchen mit zwei gestrichelten Linien, in das
32471  man die weiteren Befehle eingibt.
32472  Mit 
32473 \series bold
32474
32475 \begin_inset ERT
32476 status collapsed
32477
32478 \begin_layout Plain Layout
32479
32480
32481 \backslash
32482 mbox{
32483 \end_layout
32484
32485 \end_inset
32486
32487
32488 \family sans
32489 \series default
32490 Strg+Enter
32491 \family default
32492 \series bold
32493
32494 \begin_inset ERT
32495 status collapsed
32496
32497 \begin_layout Plain Layout
32498
32499 }
32500 \end_layout
32501
32502 \end_inset
32503
32504
32505 \series default
32506  wird eine neue Zeile erstellt.
32507  Horizontale Beziehungen werden in ungerade Zeilen, vertikale in gerade
32508  Zeilen der Formel eingegeben.
32509 \end_layout
32510
32511 \begin_layout Standard
32512 Zum Erstellen der Beziehungen gibt es folgende Befehle:
32513 \end_layout
32514
32515 \begin_layout Itemize
32516
32517 \series bold
32518 @<<<
32519 \series default
32520  erstellt einen Linkspfeil, 
32521 \series bold
32522 @>>>
32523 \series default
32524  einen Rechtspfeil und 
32525 \series bold
32526 @=
32527 \series default
32528  ein langes Gleichheitszeichen
32529 \end_layout
32530
32531 \begin_layout Itemize
32532
32533 \series bold
32534 @AAA
32535 \series default
32536  erstellt einen Pfeil nach oben, 
32537 \series bold
32538 @VVV
32539 \series default
32540  einen Pfeil nach unten und 
32541 \series bold
32542 @|
32543 \series default
32544  ein senkrechtes Gleichheitszeichen
32545 \end_layout
32546
32547 \begin_layout Itemize
32548
32549 \series bold
32550 @.
32551
32552 \series default
32553  dient als Platzhalter für nicht vorhandene Beziehungen
32554 \end_layout
32555
32556 \begin_layout Standard
32557 Alle Pfeile sind wie folgt beschriftbar:
32558 \end_layout
32559
32560 \begin_layout Itemize
32561 Wird bei horizontalen Pfeilen zwischen dem ersten und zweiten < bzw.
32562  > Text eingegeben, erscheint er über dem Pfeil.
32563  Wird der Text zwischen dem zweiten und dritten < bzw.
32564  > eingegeben, erscheint er unter dem Pfeil.
32565 \end_layout
32566
32567 \begin_layout Itemize
32568 Wird bei vertikalen Pfeilen Text zwischen erstem und zweitem A bzw.
32569  V eingegeben, erscheint er links neben dem Pfeil.
32570  Bei Eingabe zwischen zweitem und drittem A bzw.
32571  V erscheint er rechts daneben.
32572  Enthält der Text ein A oder V, müssen diese Buchstaben in eine TeX-Klammer
32573  gesetzt werden.
32574 \end_layout
32575
32576 \begin_layout Standard
32577 Als Beispiel ein Diagramm mit allen möglichen Beziehungen:
32578 \end_layout
32579
32580 \begin_layout Standard
32581 \begin_inset Formula \[
32582 \begin{CD}A@>j>>B@>>k>C@=F\\
32583 @AmAA@.@VV{V}V@|\\
32584 D@<<j<E@>k>>F@=C
32585 \end{CD}\]
32586
32587 \end_inset
32588
32589
32590 \end_layout
32591
32592 \begin_layout Standard
32593 Der Befehl dazu lautet:
32594 \begin_inset Newline newline
32595 \end_inset
32596
32597
32598 \series bold
32599
32600 \backslash
32601 CD
32602 \begin_inset ERT
32603 status collapsed
32604
32605 \begin_layout Plain Layout
32606
32607
32608 \backslash
32609 leer 
32610 \end_layout
32611
32612 \end_inset
32613
32614 A@>j>>B@>>k>C@=F Strg+Enter
32615 \begin_inset Newline newline
32616 \end_inset
32617
32618
32619 \begin_inset Phantom HPhantom
32620 status open
32621
32622 \begin_layout Plain Layout
32623
32624 \series bold
32625
32626 \backslash
32627 CD
32628 \begin_inset ERT
32629 status collapsed
32630
32631 \begin_layout Plain Layout
32632
32633
32634 \backslash
32635 leer 
32636 \end_layout
32637
32638 \end_inset
32639
32640
32641 \end_layout
32642
32643 \end_inset
32644
32645 @AmAA@.@VV
32646 \backslash
32647 {V
32648 \series default
32649
32650 \begin_inset Formula $\to$
32651 \end_inset
32652
32653
32654 \series bold
32655 V@| Strg+Enter
32656 \begin_inset Newline newline
32657 \end_inset
32658
32659
32660 \begin_inset Phantom HPhantom
32661 status open
32662
32663 \begin_layout Plain Layout
32664
32665 \series bold
32666
32667 \backslash
32668 CD
32669 \begin_inset ERT
32670 status collapsed
32671
32672 \begin_layout Plain Layout
32673
32674
32675 \backslash
32676 leer 
32677 \end_layout
32678
32679 \end_inset
32680
32681
32682 \end_layout
32683
32684 \end_inset
32685
32686 D@<<j<E@>k>>F@=C
32687 \end_layout
32688
32689 \begin_layout Subsection
32690 xymatrix Diagramme
32691 \begin_inset Index idx
32692 status collapsed
32693
32694 \begin_layout Plain Layout
32695 Diagramme ! xymatrix
32696 \end_layout
32697
32698 \end_inset
32699
32700
32701 \end_layout
32702
32703 \begin_layout Standard
32704 Um Xymatrizen nutzen zu können, muss das LaTeX-Paket 
32705 \series bold
32706 xypic
32707 \series default
32708  installiert sein.
32709  Eine Xymatrix wird erstellt, indem der Befehl 
32710 \series bold
32711
32712 \backslash
32713 xymatrix
32714 \series default
32715  in eine Formel eingegeben wird.
32716  Dann können Sie neue Matrixspalten und -zeilen wie bei normalen Matrizen
32717  hinzufügen, siehe 
32718 \begin_inset CommandInset ref
32719 LatexCommand ref
32720 reference "sec:Matrizen"
32721
32722 \end_inset
32723
32724 .
32725 \end_layout
32726
32727 \begin_layout Standard
32728 Im Gegensatz zu amscd Diagrammen, unterstützen Xymatrixen diagonale und
32729  gekrümmte Pfeile und vieles mehr.
32730  Alle Möglichkeiten kommutative Diagramme und Dekorationen zu erzeugen,
32731  sind im Detail im 
32732 \emph on
32733 XY-pic-Handbuch
32734 \emph default
32735  erklärt, dass im Menü 
32736 \family sans
32737 Hilfe\SpecialChar \menuseparator
32738 Spezielle
32739 \begin_inset space ~
32740 \end_inset
32741
32742 Handbücher
32743 \family default
32744  zu finden ist.
32745 \end_layout
32746
32747 \begin_layout Subsection
32748
32749 \noun on
32750 Feynman
32751 \noun default
32752  Diagramme
32753 \begin_inset Index idx
32754 status collapsed
32755
32756 \begin_layout Plain Layout
32757 Diagramme ! Feynman
32758 \end_layout
32759
32760 \end_inset
32761
32762
32763 \end_layout
32764
32765 \begin_layout Standard
32766 Um 
32767 \noun on
32768 Feynman-
32769 \noun default
32770 Diagrammen nutzen zu können, muss das LaTeX-Paket 
32771 \series bold
32772 feyn
32773 \series default
32774  installiert sein.
32775  Ein 
32776 \noun on
32777 Feynman-
32778 \noun default
32779 Diagramm wird erstellt, indem der Befehl 
32780 \series bold
32781
32782 \backslash
32783 Diagram
32784 \series default
32785  in eine Formel eingegeben wird.
32786  Dann können Sie neue Matrixspalten und -zeilen wie bei normalen Matrizen
32787  hinzufügen, siehe 
32788 \begin_inset CommandInset ref
32789 LatexCommand ref
32790 reference "sec:Matrizen"
32791
32792 \end_inset
32793
32794 .
32795 \end_layout
32796
32797 \begin_layout Standard
32798 Beispiele wie man in LyX 
32799 \noun on
32800 Feynman-
32801 \noun default
32802 Diagramme erstellt sind im 
32803 \emph on
32804 Feynman-Diagramm Handbuch
32805 \emph default
32806  gegeben, dass im Menü 
32807 \family sans
32808 Hilfe\SpecialChar \menuseparator
32809 Spezielle
32810 \begin_inset space ~
32811 \end_inset
32812
32813 Handbücher
32814 \family default
32815  zu finden ist.
32816 \end_layout
32817
32818 \begin_layout Section
32819 Benutzerdefinierte Befehle
32820 \begin_inset CommandInset label
32821 LatexCommand label
32822 name "sec:Benutzerdefinierte-Befehle"
32823
32824 \end_inset
32825
32826
32827 \begin_inset Index idx
32828 status collapsed
32829
32830 \begin_layout Plain Layout
32831 benutzerdefinierte Befehle
32832 \end_layout
32833
32834 \end_inset
32835
32836
32837 \end_layout
32838
32839 \begin_layout Standard
32840 \begin_inset Note Greyedout
32841 status open
32842
32843 \begin_layout Plain Layout
32844
32845 \series bold
32846 Achtung: 
32847 \series default
32848 Die Namen von benutzerdefinierten Befehlen und Makros dürfen nur aus lateinische
32849 n Buchstaben bestehen.
32850 \end_layout
32851
32852 \end_inset
32853
32854
32855 \end_layout
32856
32857 \begin_layout Subsection
32858 Der Befehl 
32859 \backslash
32860 newcommand
32861 \begin_inset CommandInset label
32862 LatexCommand label
32863 name "sub:Der-Befehl-newcommand"
32864
32865 \end_inset
32866
32867
32868 \begin_inset Index idx
32869 status collapsed
32870
32871 \begin_layout Plain Layout
32872 benutzerdefinierte Befehle ! 
32873 \backslash
32874 newcommand
32875 \end_layout
32876
32877 \end_inset
32878
32879
32880 \begin_inset Index idx
32881 status collapsed
32882
32883 \begin_layout Plain Layout
32884 Befehle ! N ! 
32885 \backslash
32886 newcommand
32887 \end_layout
32888
32889 \end_inset
32890
32891
32892 \end_layout
32893
32894 \begin_layout Standard
32895 Viele der LaTeX-Befehle sind für den ständigen Gebrauch viel zu lang.
32896  Man kann sich aber mit dem Befehl 
32897 \series bold
32898
32899 \backslash
32900 newcommand
32901 \series default
32902  neue kürzere Befehle definieren.
32903 \end_layout
32904
32905 \begin_layout Standard
32906 Das Befehlsschema von 
32907 \series bold
32908
32909 \backslash
32910 newcommand
32911 \series default
32912  lautet:
32913 \end_layout
32914
32915 \begin_layout Standard
32916
32917 \series bold
32918
32919 \backslash
32920 newcommand{neuer Befehlsname}[Argumentanzahl][optionaler
32921 \series default
32922  
32923 \series bold
32924 Wert]
32925 \begin_inset Newline newline
32926 \end_inset
32927
32928
32929 \begin_inset Phantom HPhantom
32930 status open
32931
32932 \begin_layout Plain Layout
32933
32934 \series bold
32935
32936 \backslash
32937 newcommand
32938 \end_layout
32939
32940 \end_inset
32941
32942 {Befehlsdefinition}
32943 \end_layout
32944
32945 \begin_layout Standard
32946 \begin_inset Note Greyedout
32947 status open
32948
32949 \begin_layout Plain Layout
32950
32951 \series bold
32952 Achtung:
32953 \series default
32954  Es muss darauf geachtet werden, dass der Befehlsname nicht schon im Dokument
32955  oder von benutzten LaTeX-Paketen verwendet wird.
32956  Definiert man beispielsweise für 
32957 \series bold
32958
32959 \backslash
32960 Leftarrow
32961 \series default
32962  den Befehl 
32963 \series bold
32964
32965 \backslash
32966 le
32967 \series default
32968 , erhält man eine Fehlermeldung, denn 
32969 \series bold
32970
32971 \backslash
32972 le
32973 \series default
32974  ist schon für 
32975 \begin_inset Quotes gld
32976 \end_inset
32977
32978
32979 \begin_inset Formula $\le$
32980 \end_inset
32981
32982
32983 \begin_inset Quotes grd
32984 \end_inset
32985
32986  definiert.
32987 \end_layout
32988
32989 \end_inset
32990
32991
32992 \end_layout
32993
32994 \begin_layout Standard
32995 Die Argumentanzahl ist eine ganze Zahl im Bereich 0
32996 \begin_inset space \thinspace{}
32997 \end_inset
32998
32999 -
33000 \begin_inset space \thinspace{}
33001 \end_inset
33002
33003 9 und gibt an, wie viele Argumente der neue Befehl haben soll.
33004  Als optionalen Wert kann man den Wert für ein optionales Argument voreinstellen.
33005  Wenn man dies macht, bedeutet das gleichzeitig, dass das 
33006 \emph on
33007 erste
33008 \emph default
33009  Argument des neuen Befehls ein optionales ist.
33010 \end_layout
33011
33012 \begin_layout Standard
33013 Es folgen einige Beispiele:
33014 \end_layout
33015
33016 \begin_layout Itemize
33017 Will man für 
33018 \series bold
33019
33020 \backslash
33021 Longrightarrow
33022 \series default
33023  den Befehl 
33024 \series bold
33025
33026 \backslash
33027 gr
33028 \series default
33029  definieren, lautet die LaTeX-Vor\SpecialChar \-
33030 spannzeile:
33031 \begin_inset VSpace medskip
33032 \end_inset
33033
33034
33035 \begin_inset Newline newline
33036 \end_inset
33037
33038
33039 \series bold
33040
33041 \backslash
33042 newcommand{
33043 \backslash
33044 gr}{
33045 \backslash
33046 Longrightarrow}
33047 \end_layout
33048
33049 \begin_layout Itemize
33050 Um für den Befehl 
33051 \series bold
33052
33053 \backslash
33054 underline
33055 \series default
33056  den Befehl 
33057 \series bold
33058
33059 \backslash
33060 us
33061 \series default
33062  zu definieren, muss das Argument (was unterstrichen werden soll) berücksichtigt
33063  werden.
33064  Dazu sieht die Vorspannzeile wie folgt aus:
33065 \begin_inset VSpace medskip
33066 \end_inset
33067
33068
33069 \begin_inset Newline newline
33070 \end_inset
33071
33072
33073 \series bold
33074
33075 \backslash
33076 newcommand{
33077 \backslash
33078 us}[1]{
33079 \backslash
33080 underline{#1}}
33081 \series default
33082
33083 \begin_inset VSpace medskip
33084 \end_inset
33085
33086
33087 \begin_inset Newline newline
33088 \end_inset
33089
33090 Das Zeichen 
33091 \series bold
33092 #
33093 \series default
33094  fungiert als Argumentplatzhalter, die 
33095 \series bold
33096 1
33097 \series default
33098  dahinter gibt an, dass es der Platzhalter für das erste Argument ist.
33099 \end_layout
33100
33101 \begin_layout Itemize
33102 Für 
33103 \series bold
33104
33105 \backslash
33106 framebox
33107 \series default
33108  kann man z.
33109 \begin_inset space \thinspace{}
33110 \end_inset
33111
33112 B.
33113  den Befehl 
33114 \series bold
33115
33116 \backslash
33117 fb
33118 \series default
33119  definieren:
33120 \begin_inset VSpace medskip
33121 \end_inset
33122
33123
33124 \begin_inset Newline newline
33125 \end_inset
33126
33127
33128 \series bold
33129
33130 \backslash
33131 newcommand{
33132 \backslash
33133 fb}[3]{
33134 \backslash
33135 framebox#1#2{$#3$}}
33136 \series default
33137
33138 \begin_inset VSpace medskip
33139 \end_inset
33140
33141
33142 \begin_inset Newline newline
33143 \end_inset
33144
33145 Die beiden Dollarzeichen erstellen hierbei die für 
33146 \series bold
33147
33148 \backslash
33149 framebox
33150 \series default
33151  geforderte weitere Formel, siehe 
33152 \begin_inset CommandInset ref
33153 LatexCommand ref
33154 reference "sub:Boxen-mit-Rahmen"
33155
33156 \end_inset
33157
33158 .
33159 \end_layout
33160
33161 \begin_layout Itemize
33162 Um einen neuen Befehl für 
33163 \series bold
33164
33165 \backslash
33166 fcolorbox
33167 \series default
33168  zu erstellen, bei dem die Farbe der Box nicht mehr angegeben werden muss,
33169  definiert man das Argument für die Farbe als optional:
33170 \begin_inset VSpace medskip
33171 \end_inset
33172
33173
33174 \begin_inset Newline newline
33175 \end_inset
33176
33177
33178 \series bold
33179
33180 \backslash
33181 newcommand{
33182 \backslash
33183 cb}[3][white]{
33184 \backslash
33185 fcolorbox{#2}{#1}{$#3$}}
33186 \series default
33187
33188 \begin_inset VSpace medskip
33189 \end_inset
33190
33191
33192 \begin_inset Newline newline
33193 \end_inset
33194
33195 Gibt man bei der Verwendung von 
33196 \series bold
33197
33198 \backslash
33199 cb
33200 \series default
33201  die Farbe nicht an, wird die voreingestellte Farbe 
33202 \series bold
33203 white
33204 \series default
33205  verwendet.
33206 \end_layout
33207
33208 \begin_layout Standard
33209 Ein Test der neu definierten Befehle:
33210 \end_layout
33211
33212 \begin_layout Standard
33213 \align center
33214 \begin_inset Tabular
33215 <lyxtabular version="3" rows="6" columns="2">
33216 <features tabularvalignment="middle">
33217 <column alignment="center" valignment="top" width="0">
33218 <column alignment="center" valignment="top" width="0">
33219 <row>
33220 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
33221 \begin_inset Text
33222
33223 \begin_layout Plain Layout
33224 Befehl
33225 \end_layout
33226
33227 \end_inset
33228 </cell>
33229 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
33230 \begin_inset Text
33231
33232 \begin_layout Plain Layout
33233 Ergebnis
33234 \begin_inset Note Note
33235 status collapsed
33236
33237 \begin_layout Plain Layout
33238
33239 \series bold
33240
33241 \backslash
33242 raisebox
33243 \series default
33244  dient nur als Abstandhalter.
33245 \end_layout
33246
33247 \end_inset
33248
33249
33250 \end_layout
33251
33252 \end_inset
33253 </cell>
33254 </row>
33255 <row>
33256 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
33257 \begin_inset Text
33258
33259 \begin_layout Plain Layout
33260 A
33261 \backslash
33262 gr
33263 \begin_inset ERT
33264 status collapsed
33265
33266 \begin_layout Plain Layout
33267
33268
33269 \backslash
33270 leer 
33271 \end_layout
33272
33273 \end_inset
33274
33275 B
33276 \end_layout
33277
33278 \end_inset
33279 </cell>
33280 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
33281 \begin_inset Text
33282
33283 \begin_layout Plain Layout
33284 \begin_inset Formula $A\gr B$
33285 \end_inset
33286
33287
33288 \end_layout
33289
33290 \end_inset
33291 </cell>
33292 </row>
33293 <row>
33294 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
33295 \begin_inset Text
33296
33297 \begin_layout Plain Layout
33298
33299 \backslash
33300 us{ABcd
33301 \end_layout
33302
33303 \end_inset
33304 </cell>
33305 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
33306 \begin_inset Text
33307
33308 \begin_layout Plain Layout
33309 \begin_inset Formula $\raisebox{4.5mm}{}\us{ABcd}\raisebox{-2mm}{}$
33310 \end_inset
33311
33312
33313 \end_layout
33314
33315 \end_inset
33316 </cell>
33317 </row>
33318 <row>
33319 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
33320 \begin_inset Text
33321
33322 \begin_layout Plain Layout
33323
33324 \backslash
33325 fb{[2cm]
33326 \begin_inset Formula $\to$
33327 \end_inset
33328
33329
33330 \backslash
33331 {
33332 \begin_inset Formula $\to$
33333 \end_inset
33334
33335
33336 \backslash
33337 {
33338 \backslash
33339 int
33340 \begin_inset ERT
33341 status collapsed
33342
33343 \begin_layout Plain Layout
33344
33345
33346 \backslash
33347 leer 
33348 \end_layout
33349
33350 \end_inset
33351
33352 A=B
33353 \end_layout
33354
33355 \end_inset
33356 </cell>
33357 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
33358 \begin_inset Text
33359
33360 \begin_layout Plain Layout
33361 \begin_inset Formula $\raisebox{6mm}{}\fb{[2cm]}{}{\int A=B}\raisebox{-4mm}{}$
33362 \end_inset
33363
33364
33365 \end_layout
33366
33367 \end_inset
33368 </cell>
33369 </row>
33370 <row>
33371 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
33372 \begin_inset Text
33373
33374 \begin_layout Plain Layout
33375
33376 \backslash
33377 cb{red
33378 \begin_inset Formula $\to$
33379 \end_inset
33380
33381
33382 \backslash
33383 {
33384 \backslash
33385 int
33386 \begin_inset ERT
33387 status collapsed
33388
33389 \begin_layout Plain Layout
33390
33391
33392 \backslash
33393 leer 
33394 \end_layout
33395
33396 \end_inset
33397
33398 A=B
33399 \end_layout
33400
33401 \end_inset
33402 </cell>
33403 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
33404 \begin_inset Text
33405
33406 \begin_layout Plain Layout
33407 \begin_inset Formula $\raisebox{6mm}{}\cb{red}{\int A=B}\raisebox{-4mm}{}$
33408 \end_inset
33409
33410
33411 \end_layout
33412
33413 \end_inset
33414 </cell>
33415 </row>
33416 <row>
33417 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
33418 \begin_inset Text
33419
33420 \begin_layout Plain Layout
33421
33422 \backslash
33423 cb[green]
33424 \backslash
33425 {red
33426 \begin_inset Formula $\to$
33427 \end_inset
33428
33429
33430 \backslash
33431 {
33432 \backslash
33433 int
33434 \begin_inset ERT
33435 status collapsed
33436
33437 \begin_layout Plain Layout
33438
33439
33440 \backslash
33441 leer 
33442 \end_layout
33443
33444 \end_inset
33445
33446 A=B
33447 \end_layout
33448
33449 \end_inset
33450 </cell>
33451 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
33452 \begin_inset Text
33453
33454 \begin_layout Plain Layout
33455 \begin_inset Formula $\raisebox{6mm}{}\cb[green]{red}{\int A=B}\raisebox{-4mm}{}$
33456 \end_inset
33457
33458
33459 \end_layout
33460
33461 \end_inset
33462 </cell>
33463 </row>
33464 </lyxtabular>
33465
33466 \end_inset
33467
33468
33469 \end_layout
33470
33471 \begin_layout Subsection
33472 Mathe-Makros
33473 \begin_inset Index idx
33474 status collapsed
33475
33476 \begin_layout Plain Layout
33477 benutzerdefinierte Befehle ! Mathe-Makros
33478 \end_layout
33479
33480 \end_inset
33481
33482
33483 \begin_inset Index idx
33484 status collapsed
33485
33486 \begin_layout Plain Layout
33487 Makros
33488 \end_layout
33489
33490 \end_inset
33491
33492
33493 \end_layout
33494
33495 \begin_layout Standard
33496 Besonders praktisch sind eigene Befehle für komplexe Ausdrücke.
33497  Hat man es in einem Dokument z.
33498 \begin_inset space \thinspace{}
33499 \end_inset
33500
33501 B.
33502  häufiger mit quadratischen Gleichungen zu tun, tritt immer derselbe Lösungstyp
33503  auf.
33504  Die allgemeine Form einer quadratischen Gleichung ist
33505 \begin_inset Formula \[
33506 0=\lambda^{2}+p\lambda+q\]
33507
33508 \end_inset
33509
33510 Die allgemeine Form der Lösung lautet
33511 \begin_inset Formula \[
33512 \lambda_{1,2}=-\frac{p}{2}\pm\sqrt{\frac{p²}{4}-q}\]
33513
33514 \end_inset
33515
33516
33517 \end_layout
33518
33519 \begin_layout Standard
33520 Um für die Lösungsformel einen Befehl zu definieren, bei dem nur noch die
33521  drei Parameter 
33522 \begin_inset Formula $\lambda$
33523 \end_inset
33524
33525
33526 \begin_inset Formula $p$
33527 \end_inset
33528
33529  und 
33530 \begin_inset Formula $q$
33531 \end_inset
33532
33533  angegeben werden müssen und der Index von 
33534 \begin_inset Formula $\lambda$
33535 \end_inset
33536
33537  optional angeben werden kann, lautet die LaTeX-Vorspannzeile
33538 \begin_inset Newline newline
33539 \end_inset
33540
33541
33542 \series bold
33543
33544 \backslash
33545 newcommand{
33546 \backslash
33547 qG}[4][1,
33548 \backslash
33549 ,2]{#2_{#1}=-
33550 \backslash
33551 frac{#3}{2}
33552 \backslash
33553 pm
33554 \begin_inset Newline newline
33555 \end_inset
33556
33557
33558 \begin_inset Phantom HPhantom
33559 status open
33560
33561 \begin_layout Plain Layout
33562
33563 \series bold
33564
33565 \backslash
33566 newcommand
33567 \end_layout
33568
33569 \end_inset
33570
33571
33572 \backslash
33573 sqrt{
33574 \backslash
33575 frac{#3^{2}}{4}-#4}}
33576 \end_layout
33577
33578 \begin_layout Standard
33579 Um damit die Lösungsformel zu erstellen, gibt man in einer Formel den Befehl
33580  
33581 \begin_inset Newline newline
33582 \end_inset
33583
33584
33585 \series bold
33586
33587 \backslash
33588 qG{
33589 \backslash
33590 lambda
33591 \begin_inset Formula $\to$
33592 \end_inset
33593
33594
33595 \backslash
33596 {p
33597 \begin_inset Formula $\to$
33598 \end_inset
33599
33600
33601 \backslash
33602 {q 
33603 \series default
33604 ein.
33605 \end_layout
33606
33607 \begin_layout Standard
33608 Die Definition des neuen Befehls ist unintuitiv, denn man muss die Schemata
33609  aller verwendeten LaTeX-Befehle kennen, z.
33610 \begin_inset space \thinspace{}
33611 \end_inset
33612
33613 B.
33614  dass ein Bruch in LaTeX mit 
33615 \series bold
33616
33617 \backslash
33618 frac{Zähler}
33619 \begin_inset Newline linebreak
33620 \end_inset
33621
33622 {Nenner}
33623 \series default
33624  eingegeben wird.
33625  Außerdem kann man leicht eine geschweifte Klammer vergessen und man kann
33626  in LyX nicht sehen, was der neue Befehl macht.
33627  Um diesen Problemen aus dem Weg zu gehen, gibt es in LyX die Möglichkeit
33628  Mathe-Makros statt den Befehl 
33629 \series bold
33630
33631 \backslash
33632 newcommand
33633 \series default
33634  zu verwenden.
33635 \end_layout
33636
33637 \begin_layout Standard
33638 Ein Mathe-Makro wird erstellt, indem man das Menü 
33639 \family sans
33640 Einfügen\SpecialChar \menuseparator
33641 Mathe\SpecialChar \menuseparator
33642 Makro
33643 \family default
33644  oder den Werkzeugleistenknopf 
33645 \begin_inset Graphics
33646         filename ../../images/math-macro_newmacroname_newcommand.png
33647         scale 85
33648
33649 \end_inset
33650
33651  verwendet.
33652  Es erscheint die Mathe-Makro-Werkzeugleiste und folgende Box, in der das
33653  Makro definiert wird:
33654 \begin_inset Newline newline
33655 \end_inset
33656
33657
33658 \lang english
33659
33660 \begin_inset space \hspace*{\fill}
33661 \end_inset
33662
33663
33664 \lang ngerman
33665
33666 \begin_inset Graphics
33667         filename ../clipart/macrobox.png
33668
33669 \end_inset
33670
33671
33672 \lang english
33673
33674 \begin_inset space \hspace*{\fill}
33675 \end_inset
33676
33677
33678 \lang ngerman
33679
33680 \begin_inset Newline newline
33681 \end_inset
33682
33683
33684 \begin_inset FormulaMacro
33685 \newcommand{\qG}[4][1,\,2]{#2_{#1}=-\frac{#3}{2}\pm\sqrt{\frac{#3^{2}}{4}-#4}}
33686 \end_inset
33687
33688
33689 \backslash
33690 newmacroname ist der voreingestellte Makroname, der auf etwas sinnvolles
33691  geändert werden sollte.
33692  In das erste blaue Kästchen gibt man die gewünschte Formel ein.
33693  Einen Argumentplatzhalter fügt man mit dem Befehl 
33694 \series bold
33695
33696 \backslash
33697 #Argumentnummer
33698 \series default
33699  ein, z.
33700 \begin_inset space \thinspace{}
33701 \end_inset
33702
33703 B.
33704  
33705 \series bold
33706
33707 \backslash
33708 #1
33709 \series default
33710  oder man verwendet den Makro-Werkzeugleistenknopf 
33711 \begin_inset Graphics
33712         filename ../../images/math-macro-add-param.png
33713         scale 85
33714
33715 \end_inset
33716
33717 .
33718  Argumentplatzhalter werden rot dargestellt.
33719  Es sind maximal 9 Argumente möglich.
33720  Optionale Argumente werden mit dem Werkzeugleistenknopf 
33721 \begin_inset Graphics
33722         filename ../../images/math-macro-add-optional-param.png
33723         scale 85
33724
33725 \end_inset
33726
33727  erstellt.
33728  Mit dem Werkzeugleistenknopf 
33729 \begin_inset Graphics
33730         filename ../../images/math-macro-make-optional.png
33731         scale 85
33732
33733 \end_inset
33734
33735  kann das erste nicht-optionale Argument in ein optionales verwandelt werden.
33736  Im zweiten Kästchen kann man definieren wie das Makro in LyX angezeigt
33737  werden soll.
33738  Normalerweise will man es so sehen, wie es definiert wurde, wozu man das
33739  Kästchen leer lässt.
33740  Hat man hingegen ein Makro erstellt, der auf dem Bildschirm viel Platz
33741  einnimmt, kann man in das Kästchen z.
33742 \begin_inset space \thinspace{}
33743 \end_inset
33744
33745 B.
33746 \begin_inset Newline newline
33747 \end_inset
33748
33749
33750 \series bold
33751 qG: 
33752 \backslash
33753 #1
33754 \series default
33755  
33756 \series bold
33757 ,
33758 \series default
33759  
33760 \series bold
33761
33762 \backslash
33763 #2
33764 \series default
33765  
33766 \series bold
33767 ,
33768 \series default
33769  
33770 \series bold
33771
33772 \backslash
33773 #3, 
33774 \backslash
33775 #4
33776 \begin_inset Newline newline
33777 \end_inset
33778
33779
33780 \series default
33781 eingeben.
33782  Für das Makro werden dann in LyX nur die Argumente mit dem davor stehenden
33783  Makronamen angezeigt, was für mehr Überblick im Dokument sorgt.
33784  Im Ausdruck erscheint die Formel so, wie sie im ersten Kästchen definiert
33785  wurde.
33786 \begin_inset Newline newline
33787 \end_inset
33788
33789 Das Erscheinungsbild von Makros in Formeln lässt sich außerdem für einzelne
33790  Makros ändern, indem man den Cursor in das Makro setzt und das Menü 
33791 \family sans
33792 Ansicht\SpecialChar \menuseparator
33793 Mathe-Makro
33794 \begin_inset space ~
33795 \end_inset
33796
33797 auf/zuklappen
33798 \family default
33799  verwendet.
33800 \end_layout
33801
33802 \begin_layout Standard
33803 Um ein Makro zu verwenden, gibt man in eine Formel den Makronamen als Befehl
33804  ein, in unserem Fall 
33805 \series bold
33806
33807 \backslash
33808 qG
33809 \series default
33810 .
33811  Unser Makro sieht in LyX folgendermaßen aus:
33812 \begin_inset Newline newline
33813 \end_inset
33814
33815
33816 \lang english
33817
33818 \begin_inset space \hspace*{\fill}
33819 \end_inset
33820
33821
33822 \lang ngerman
33823
33824 \begin_inset Graphics
33825         filename ../clipart/macrouse.png
33826
33827 \end_inset
33828
33829
33830 \lang english
33831
33832 \begin_inset space \hspace*{\fill}
33833 \end_inset
33834
33835
33836 \lang ngerman
33837
33838 \begin_inset Newline newline
33839 \end_inset
33840
33841 Hier ist unser Makro-Beispiel mit den Argumenten 
33842 \begin_inset Formula $x$
33843 \end_inset
33844
33845
33846 \begin_inset Formula $\ln(x)$
33847 \end_inset
33848
33849  und 
33850 \begin_inset Formula $B$
33851 \end_inset
33852
33853 :
33854 \end_layout
33855
33856 \begin_layout Standard
33857 \begin_inset Formula \[
33858 \qG x{\ln(x)}B\]
33859
33860 \end_inset
33861
33862
33863 \end_layout
33864
33865 \begin_layout Standard
33866 LyX bietet im Menü 
33867 \family sans
33868 Werkzeuge\SpecialChar \menuseparator
33869 Einstellungen\SpecialChar \menuseparator
33870 Bearbeiten\SpecialChar \menuseparator
33871 Kontrolle
33872 \family default
33873  verschiedene Bearbeitungsstile für Makros an.
33874  Um den Stil zu finden, der für Sie am angenehmsten ist, wählen Sie einen
33875  Stil aus und setzen den Cursor in eine Makro-Formel um den Unterschied
33876  zu sehen.
33877 \end_layout
33878
33879 \begin_layout Standard
33880 Ein Mathe-Makro wird beim Exportieren des Dokuments intern in einen 
33881 \series bold
33882
33883 \backslash
33884 new\SpecialChar \-
33885 command
33886 \series default
33887 -Befehl umgewandelt.
33888  Der 
33889 \series bold
33890
33891 \backslash
33892 newcommand
33893 \series default
33894 -Befehl wird dabei nicht in den LaTeX-Vorspann gesetzt, so dass man daher
33895  Makros nur in Formeln verwenden kann, die sich im Dokument unterhalb der
33896  Makrodefinitionsbox befinden.
33897 \end_layout
33898
33899 \begin_layout Standard
33900 Mathe-Makros können auch direkt aus einem 
33901 \series bold
33902
33903 \backslash
33904 newcommand
33905 \series default
33906 -Befehl erstellt werden.
33907  Schreibt man z.
33908 \begin_inset space \thinspace{}
33909 \end_inset
33910
33911 B.
33912  den Befehl
33913 \series bold
33914
33915 \begin_inset Newline newline
33916 \end_inset
33917
33918
33919 \backslash
33920 newcommand{
33921 \backslash
33922 larrow}[2]{
33923 \backslash
33924 xleftarrow[#2]{#1}}
33925 \begin_inset Newline newline
33926 \end_inset
33927
33928
33929 \series default
33930 in LyX als normalen Text, markiert ihn komplett und verwendet dann das Tastenkür
33931 zel 
33932 \family sans
33933 Strg+M
33934 \family default
33935 , wird der Befehl in ein Mathe-Makro umgewandelt.
33936  Bei dieser Methode muss man jedoch aufpassen, dass der 
33937 \series bold
33938
33939 \backslash
33940 newcommand
33941 \series default
33942 -Befehl richtig geschrieben wurde, ansonsten wird ein fehlerhaftes Makro
33943  erstellt, dass später LaTeX-Fehler hervorruft.
33944 \end_layout
33945
33946 \begin_layout Standard
33947 Mathe-Makros haben im Moment noch das Problem, dass weitere Formeln in einer
33948  Makrodefinition fehlerhaft behandelt werden.
33949  Dadurch kann das Beispiel 
33950 \series bold
33951
33952 \backslash
33953 fb
33954 \series default
33955  aus 
33956 \begin_inset CommandInset ref
33957 LatexCommand ref
33958 reference "sub:Der-Befehl-newcommand"
33959
33960 \end_inset
33961
33962  nicht als Makro erzeugt werden.
33963 \end_layout
33964
33965 \begin_layout Standard
33966 Wenn der Cursor in einer Makrodefinitionsbox ist, wird die Makro-Werkzeugleiste
33967  in LyX angezeigt:
33968 \end_layout
33969
33970 \begin_layout Standard
33971 \begin_inset VSpace defskip
33972 \end_inset
33973
33974
33975 \end_layout
33976
33977 \begin_layout Standard
33978 \begin_inset Graphics
33979         filename ../clipart/MacroToolbar.png
33980
33981 \end_inset
33982
33983
33984 \begin_inset Index idx
33985 status collapsed
33986
33987 \begin_layout Plain Layout
33988 Makros ! Werkzeugleiste
33989 \end_layout
33990
33991 \end_inset
33992
33993
33994 \end_layout
33995
33996 \begin_layout Standard
33997 \begin_inset VSpace defskip
33998 \end_inset
33999
34000
34001 \end_layout
34002
34003 \begin_layout Standard
34004 Die Makro-Werkzeugleiste enthält von links nach rechts die folgenden Knöpfe:
34005 \end_layout
34006
34007 \begin_layout Standard
34008 \begin_inset VSpace defskip
34009 \end_inset
34010
34011
34012 \end_layout
34013
34014 \begin_layout Standard
34015 \begin_inset Tabular
34016 <lyxtabular version="3" rows="9" columns="2">
34017 <features islongtable="true" longtabularalignment="center">
34018 <column alignment="left" valignment="top" width="0">
34019 <column alignment="left" valignment="top" width="85col%">
34020 <row interlinespace="2.5mm">
34021 <cell alignment="center" valignment="top" usebox="none">
34022 \begin_inset Text
34023
34024 \begin_layout Plain Layout
34025 \begin_inset Graphics
34026         filename ../../images/math-macro-remove-param.png
34027         BoundingBox 0bp 5bp 20bp 25bp
34028         rotateOrigin center
34029
34030 \end_inset
34031
34032
34033 \end_layout
34034
34035 \end_inset
34036 </cell>
34037 <cell alignment="center" valignment="top" usebox="none">
34038 \begin_inset Text
34039
34040 \begin_layout Plain Layout
34041
34042 \family sans
34043 Bearbeiten\SpecialChar \menuseparator
34044 Mathe\SpecialChar \menuseparator
34045 Makro-Definition\SpecialChar \menuseparator
34046 Letztes Argument entfernen
34047 \end_layout
34048
34049 \end_inset
34050 </cell>
34051 </row>
34052 <row interlinespace="2.5mm">
34053 <cell alignment="center" valignment="top" usebox="none">
34054 \begin_inset Text
34055
34056 \begin_layout Plain Layout
34057 \begin_inset Graphics
34058         filename ../../images/math-macro-add-param.png
34059         BoundingBox 0bp 5bp 20bp 25bp
34060         rotateOrigin center
34061
34062 \end_inset
34063
34064
34065 \end_layout
34066
34067 \end_inset
34068 </cell>
34069 <cell alignment="center" valignment="top" usebox="none">
34070 \begin_inset Text
34071
34072 \begin_layout Plain Layout
34073
34074 \family sans
34075 Bearbeiten\SpecialChar \menuseparator
34076 Mathe\SpecialChar \menuseparator
34077 Makro-Definition\SpecialChar \menuseparator
34078 Argument hinzufügen
34079 \end_layout
34080
34081 \end_inset
34082 </cell>
34083 </row>
34084 <row interlinespace="2.5mm">
34085 <cell alignment="center" valignment="top" usebox="none">
34086 \begin_inset Text
34087
34088 \begin_layout Plain Layout
34089 \begin_inset Graphics
34090         filename ../../images/math-macro-make-optional.png
34091         BoundingBox 0bp 5bp 20bp 25bp
34092         rotateOrigin center
34093
34094 \end_inset
34095
34096
34097 \end_layout
34098
34099 \end_inset
34100 </cell>
34101 <cell alignment="center" valignment="top" usebox="none">
34102 \begin_inset Text
34103
34104 \begin_layout Plain Layout
34105
34106 \family sans
34107 Bearbeiten\SpecialChar \menuseparator
34108 Mathe\SpecialChar \menuseparator
34109 Makro-Definition\SpecialChar \menuseparator
34110 Das erste nicht-optionale
34111 \begin_inset Newline newline
34112 \end_inset
34113
34114
34115 \begin_inset Phantom HPhantom
34116 status open
34117
34118 \begin_layout Plain Layout
34119
34120 \family sans
34121 Bearbeiten\SpecialChar \menuseparator
34122 Mathe\SpecialChar \menuseparator
34123 Makro-Definition\SpecialChar \menuseparator
34124
34125 \end_layout
34126
34127 \end_inset
34128
34129 Argument in einen optionales
34130 \begin_inset Newline newline
34131 \end_inset
34132
34133
34134 \begin_inset Phantom HPhantom
34135 status open
34136
34137 \begin_layout Plain Layout
34138
34139 \family sans
34140 Bearbeiten\SpecialChar \menuseparator
34141 Mathe\SpecialChar \menuseparator
34142 Makro-Definition\SpecialChar \menuseparator
34143
34144 \end_layout
34145
34146 \end_inset
34147
34148 ändern
34149 \end_layout
34150
34151 \end_inset
34152 </cell>
34153 </row>
34154 <row interlinespace="2.5mm">
34155 <cell alignment="center" valignment="top" usebox="none">
34156 \begin_inset Text
34157
34158 \begin_layout Plain Layout
34159 \begin_inset Graphics
34160         filename ../../images/math-macro-make-nonoptional.png
34161         BoundingBox 0bp 5bp 20bp 25bp
34162         rotateOrigin center
34163
34164 \end_inset
34165
34166
34167 \end_layout
34168
34169 \end_inset
34170 </cell>
34171 <cell alignment="center" valignment="top" usebox="none">
34172 \begin_inset Text
34173
34174 \begin_layout Plain Layout
34175
34176 \family sans
34177 Bearbeiten\SpecialChar \menuseparator
34178 Mathe\SpecialChar \menuseparator
34179 Makro-Definition\SpecialChar \menuseparator
34180 Das letzte optionale Argument in
34181 \begin_inset Newline newline
34182 \end_inset
34183
34184
34185 \begin_inset Phantom HPhantom
34186 status open
34187
34188 \begin_layout Plain Layout
34189
34190 \family sans
34191 Bearbeiten\SpecialChar \menuseparator
34192 Mathe\SpecialChar \menuseparator
34193 Makro-Definition\SpecialChar \menuseparator
34194
34195 \end_layout
34196
34197 \end_inset
34198
34199 einen nicht-optionales ändern
34200 \end_layout
34201
34202 \end_inset
34203 </cell>
34204 </row>
34205 <row interlinespace="2.5mm">
34206 <cell alignment="center" valignment="top" usebox="none">
34207 \begin_inset Text
34208
34209 \begin_layout Plain Layout
34210 \begin_inset Graphics
34211         filename ../../images/math-macro-remove-optional-param.png
34212         BoundingBox 0bp 5bp 20bp 25bp
34213         rotateOrigin center
34214
34215 \end_inset
34216
34217
34218 \end_layout
34219
34220 \end_inset
34221 </cell>
34222 <cell alignment="center" valignment="top" usebox="none">
34223 \begin_inset Text
34224
34225 \begin_layout Plain Layout
34226
34227 \family sans
34228 Bearbeiten\SpecialChar \menuseparator
34229 Mathe\SpecialChar \menuseparator
34230 Makro-Definition\SpecialChar \menuseparator
34231 Optionales Argument entfernen
34232 \end_layout
34233
34234 \end_inset
34235 </cell>
34236 </row>
34237 <row interlinespace="2.5mm">
34238 <cell alignment="center" valignment="top" usebox="none">
34239 \begin_inset Text
34240
34241 \begin_layout Plain Layout
34242 \begin_inset Graphics
34243         filename ../../images/math-macro-add-optional-param.png
34244         BoundingBox 0bp 5bp 20bp 25bp
34245         rotateOrigin center
34246
34247 \end_inset
34248
34249
34250 \end_layout
34251
34252 \end_inset
34253 </cell>
34254 <cell alignment="center" valignment="top" usebox="none">
34255 \begin_inset Text
34256
34257 \begin_layout Plain Layout
34258
34259 \family sans
34260 Bearbeiten\SpecialChar \menuseparator
34261 Mathe\SpecialChar \menuseparator
34262 Makro-Definition\SpecialChar \menuseparator
34263 Optionales Argument einfügen
34264 \end_layout
34265
34266 \end_inset
34267 </cell>
34268 </row>
34269 <row interlinespace="2.5mm">
34270 <cell alignment="center" valignment="top" usebox="none">
34271 \begin_inset Text
34272
34273 \begin_layout Plain Layout
34274 \begin_inset Graphics
34275         filename ../../images/math-macro-remove-greedy-param.png
34276         BoundingBox 0bp 5bp 20bp 25bp
34277         rotateOrigin center
34278
34279 \end_inset
34280
34281
34282 \end_layout
34283
34284 \end_inset
34285 </cell>
34286 <cell alignment="center" valignment="top" usebox="none">
34287 \begin_inset Text
34288
34289 \begin_layout Plain Layout
34290
34291 \family sans
34292 Bearbeiten\SpecialChar \menuseparator
34293 Mathe\SpecialChar \menuseparator
34294 Makro-Definition\SpecialChar \menuseparator
34295 Letztes Argument rechts entfernen
34296 \end_layout
34297
34298 \end_inset
34299 </cell>
34300 </row>
34301 <row interlinespace="2.5mm">
34302 <cell alignment="center" valignment="top" usebox="none">
34303 \begin_inset Text
34304
34305 \begin_layout Plain Layout
34306 \begin_inset Graphics
34307         filename ../../images/math-macro-append-greedy-param.png
34308         BoundingBox 0bp 5bp 20bp 25bp
34309         rotateOrigin center
34310
34311 \end_inset
34312
34313
34314 \end_layout
34315
34316 \end_inset
34317 </cell>
34318 <cell alignment="center" valignment="top" usebox="none">
34319 \begin_inset Text
34320
34321 \begin_layout Plain Layout
34322
34323 \family sans
34324 Bearbeiten\SpecialChar \menuseparator
34325 Mathe\SpecialChar \menuseparator
34326 Makro-Definition\SpecialChar \menuseparator
34327 Argument von rechts hinzufügen
34328 \end_layout
34329
34330 \end_inset
34331 </cell>
34332 </row>
34333 <row interlinespace="2.5mm">
34334 <cell alignment="center" valignment="top" usebox="none">
34335 \begin_inset Text
34336
34337 \begin_layout Plain Layout
34338 \begin_inset Graphics
34339         filename ../../images/math-macro-add-greedy-optional-param.png
34340         BoundingBox 0bp 5bp 20bp 25bp
34341         rotateOrigin center
34342
34343 \end_inset
34344
34345
34346 \end_layout
34347
34348 \end_inset
34349 </cell>
34350 <cell alignment="center" valignment="top" usebox="none">
34351 \begin_inset Text
34352
34353 \begin_layout Plain Layout
34354
34355 \family sans
34356 Bearbeiten\SpecialChar \menuseparator
34357 Mathe\SpecialChar \menuseparator
34358 Makro-Definition\SpecialChar \menuseparator
34359 Optionales Argument von rechts
34360 \begin_inset Newline newline
34361 \end_inset
34362
34363
34364 \begin_inset Phantom HPhantom
34365 status open
34366
34367 \begin_layout Plain Layout
34368
34369 \family sans
34370 Bearbeiten\SpecialChar \menuseparator
34371 Mathe\SpecialChar \menuseparator
34372 Makro-Definition\SpecialChar \menuseparator
34373
34374 \end_layout
34375
34376 \end_inset
34377
34378 hinzufügen
34379 \end_layout
34380
34381 \end_inset
34382 </cell>
34383 </row>
34384 </lyxtabular>
34385
34386 \end_inset
34387
34388
34389 \end_layout
34390
34391 \begin_layout Standard
34392 \begin_inset Newpage newpage
34393 \end_inset
34394
34395
34396 \end_layout
34397
34398 \begin_layout Section
34399 Tipps
34400 \begin_inset Index idx
34401 status collapsed
34402
34403 \begin_layout Plain Layout
34404 Tipps
34405 \end_layout
34406
34407 \end_inset
34408
34409
34410 \end_layout
34411
34412 \begin_layout Subsection
34413 Negative Zahlen
34414 \begin_inset Index idx
34415 status collapsed
34416
34417 \begin_layout Plain Layout
34418 Zahlen ! negative
34419 \end_layout
34420
34421 \end_inset
34422
34423
34424 \end_layout
34425
34426 \begin_layout Standard
34427 Negative Zahlen sehen im Formelmodus oft schlecht aus, denn das Minuszeichen
34428  vor der Ziffer wird mit der gleichen Länge wie das Zeichen der Minus-Operation
34429  dargestellt.
34430  Schreibt man dagegen eine negative Zahl im normalen Text, erscheint das
34431  Minuszeichen korrekt.
34432 \end_layout
34433
34434 \begin_layout Standard
34435 Wandelt man also das Minuszeichen in mathematischen Text um, tritt das Problem
34436  nicht mehr auf.
34437 \end_layout
34438
34439 \begin_layout Standard
34440 Ein Beispiel zur Veranschaulichung der Problematik:
34441 \end_layout
34442
34443 \begin_layout Standard
34444 \align center
34445 \begin_inset Tabular
34446 <lyxtabular version="3" rows="3" columns="2">
34447 <features tabularvalignment="middle">
34448 <column alignment="right" valignment="top" width="0">
34449 <column alignment="left" valignment="top" width="0">
34450 <row>
34451 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
34452 \begin_inset Text
34453
34454 \begin_layout Plain Layout
34455 normaler Text:
34456 \end_layout
34457
34458 \end_inset
34459 </cell>
34460 <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
34461 \begin_inset Text
34462
34463 \begin_layout Plain Layout
34464 x = -2
34465 \end_layout
34466
34467 \end_inset
34468 </cell>
34469 </row>
34470 <row>
34471 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
34472 \begin_inset Text
34473
34474 \begin_layout Plain Layout
34475 Formelmodus:
34476 \end_layout
34477
34478 \end_inset
34479 </cell>
34480 <cell alignment="center" valignment="top" topline="true" bottomline="true" rightline="true" usebox="none">
34481 \begin_inset Text
34482
34483 \begin_layout Plain Layout
34484 \begin_inset Formula $x=-2$
34485 \end_inset
34486
34487
34488 \end_layout
34489
34490 \end_inset
34491 </cell>
34492 </row>
34493 <row>
34494 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
34495 \begin_inset Text
34496
34497 \begin_layout Plain Layout
34498 Lösung:
34499 \end_layout
34500
34501 \end_inset
34502 </cell>
34503 <cell alignment="center" valignment="top" topline="true" bottomline="true" rightline="true" usebox="none">
34504 \begin_inset Text
34505
34506 \begin_layout Plain Layout
34507 \begin_inset Formula $x=\textrm{-}2$
34508 \end_inset
34509
34510
34511 \end_layout
34512
34513 \end_inset
34514 </cell>
34515 </row>
34516 </lyxtabular>
34517
34518 \end_inset
34519
34520
34521 \end_layout
34522
34523 \begin_layout Subsection
34524 Komma als Dezimaltrennzeichen
34525 \begin_inset Index idx
34526 status collapsed
34527
34528 \begin_layout Plain Layout
34529 Komma
34530 \end_layout
34531
34532 \end_inset
34533
34534
34535 \end_layout
34536
34537 \begin_layout Standard
34538 In LaTeX fungiert das Komma in einer Formel, gemäß englischer Konvention,
34539  als Gruppentrennzeichen.
34540  Es wird demnach automatisch hinter allen Kommas in Formeln ein Leerraum
34541  eingefügt.
34542 \end_layout
34543
34544 \begin_layout Standard
34545 Um dies zu verhindern, markiert man das Komma und wandelt es in mathematischen
34546  Text um (Tastenkürzel 
34547 \family sans
34548 Alt+M
34549 \begin_inset space ~
34550 \end_inset
34551
34552 M
34553 \family default
34554 ).
34555 \end_layout
34556
34557 \begin_layout Standard
34558 Um hingegen alle Formelkommas des Dokuments als Dezimaltrennzeichen zu setzen,
34559  lädt man die Datei 
34560 \series bold
34561 icomma.sty
34562 \series default
34563
34564 \begin_inset Foot
34565 status collapsed
34566
34567 \begin_layout Plain Layout
34568
34569 \series bold
34570 icomma
34571 \series default
34572  ist Teil des LaTeX-Paketes 
34573 \series bold
34574 was
34575 \series default
34576
34577 \begin_inset Index idx
34578 status collapsed
34579
34580 \begin_layout Plain Layout
34581 Pakete ! was
34582 \begin_inset ERT
34583 status collapsed
34584
34585 \begin_layout Plain Layout
34586
34587
34588 \backslash
34589 vspace{4mm}
34590 \end_layout
34591
34592 \end_inset
34593
34594
34595 \end_layout
34596
34597 \end_inset
34598
34599 .
34600 \end_layout
34601
34602 \end_inset
34603
34604
34605 \begin_inset Index idx
34606 status collapsed
34607
34608 \begin_layout Plain Layout
34609 Pakete ! icomma
34610 \end_layout
34611
34612 \end_inset
34613
34614  mit der LaTeX-Vorspannzeile
34615 \end_layout
34616
34617 \begin_layout Standard
34618
34619 \series bold
34620
34621 \backslash
34622 usepackage{icomma}
34623 \end_layout
34624
34625 \begin_layout Subsection
34626 Physikalische Vektoren
34627 \begin_inset CommandInset label
34628 LatexCommand label
34629 name "sub:Physikalische-Vektoren"
34630
34631 \end_inset
34632
34633
34634 \begin_inset Index idx
34635 status collapsed
34636
34637 \begin_layout Plain Layout
34638 Vektoren ! physikalische
34639 \end_layout
34640
34641 \end_inset
34642
34643
34644 \end_layout
34645
34646 \begin_layout Standard
34647 Vordefinierte Vektoren bietet das LaTeX-Paket 
34648 \series bold
34649 braket
34650 \series default
34651
34652 \begin_inset Index idx
34653 status collapsed
34654
34655 \begin_layout Plain Layout
34656 Pakete ! braket
34657 \end_layout
34658
34659 \end_inset
34660
34661 , das mit der LaTeX-Vorspannzeile
34662 \end_layout
34663
34664 \begin_layout Standard
34665
34666 \series bold
34667
34668 \backslash
34669 usepackage{braket}
34670 \end_layout
34671
34672 \begin_layout Standard
34673 geladen wird.
34674 \begin_inset ERT
34675 status collapsed
34676
34677 \begin_layout Plain Layout
34678
34679
34680 \backslash
34681 ifbraket 
34682 \end_layout
34683
34684 \end_inset
34685
34686
34687 \begin_inset Note Note
34688 status open
34689
34690 \begin_layout Plain Layout
34691 Die folgende Tabelle erscheint nur im Ausdruck wenn das LaTeX-Paket 
34692 \series bold
34693 braket
34694 \series default
34695  installiert ist:
34696 \end_layout
34697
34698 \end_inset
34699
34700
34701 \end_layout
34702
34703 \begin_layout Standard
34704 \begin_inset Newpage newpage
34705 \end_inset
34706
34707
34708 \end_layout
34709
34710 \begin_layout Standard
34711 Folgende Befehle sind definiert:
34712 \end_layout
34713
34714 \begin_layout Standard
34715 \align center
34716 \begin_inset Tabular
34717 <lyxtabular version="3" rows="4" columns="2">
34718 <features tabularvalignment="middle">
34719 <column alignment="center" valignment="top" width="0">
34720 <column alignment="center" valignment="top" width="0">
34721 <row>
34722 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
34723 \begin_inset Text
34724
34725 \begin_layout Plain Layout
34726 Befehl
34727 \end_layout
34728
34729 \end_inset
34730 </cell>
34731 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
34732 \begin_inset Text
34733
34734 \begin_layout Plain Layout
34735 Ergebnis
34736 \end_layout
34737
34738 \end_inset
34739 </cell>
34740 </row>
34741 <row>
34742 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
34743 \begin_inset Text
34744
34745 \begin_layout Plain Layout
34746
34747 \backslash
34748 Bra{
34749 \backslash
34750 psi
34751 \end_layout
34752
34753 \end_inset
34754 </cell>
34755 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
34756 \begin_inset Text
34757
34758 \begin_layout Plain Layout
34759 \begin_inset Formula $\Bra{\psi}$
34760 \end_inset
34761
34762
34763 \end_layout
34764
34765 \end_inset
34766 </cell>
34767 </row>
34768 <row>
34769 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
34770 \begin_inset Text
34771
34772 \begin_layout Plain Layout
34773
34774 \backslash
34775 Ket{
34776 \backslash
34777 psi
34778 \end_layout
34779
34780 \end_inset
34781 </cell>
34782 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
34783 \begin_inset Text
34784
34785 \begin_layout Plain Layout
34786 \begin_inset Formula $\Ket{\psi}$
34787 \end_inset
34788
34789
34790 \end_layout
34791
34792 \end_inset
34793 </cell>
34794 </row>
34795 <row>
34796 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
34797 \begin_inset Text
34798
34799 \begin_layout Plain Layout
34800
34801 \backslash
34802 Braket{
34803 \backslash
34804 psi|
34805 \backslash
34806 phi
34807 \end_layout
34808
34809 \end_inset
34810 </cell>
34811 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
34812 \begin_inset Text
34813
34814 \begin_layout Plain Layout
34815 \begin_inset Formula $\Braket{\psi|\phi}$
34816 \end_inset
34817
34818
34819 \end_layout
34820
34821 \end_inset
34822 </cell>
34823 </row>
34824 </lyxtabular>
34825
34826 \end_inset
34827
34828
34829 \end_layout
34830
34831 \begin_layout Standard
34832 Der Befehl 
34833 \series bold
34834
34835 \backslash
34836 Braket
34837 \series default
34838  stellt sicher, dass alle senkrechten Striche in der Größe der umgebenden
34839  Klammern gesetzt werden:
34840 \begin_inset Formula \[
34841 \Braket{\phi|J=\frac{3}{2}\,,\, M_{J}}\]
34842
34843 \end_inset
34844
34845
34846 \begin_inset ERT
34847 status collapsed
34848
34849 \begin_layout Plain Layout
34850
34851
34852 \backslash
34853 else 
34854 \end_layout
34855
34856 \end_inset
34857
34858
34859 \begin_inset Note Note
34860 status open
34861
34862 \begin_layout Plain Layout
34863 Folgendes erscheint im Ausdruck wenn das LaTeX-Paket 
34864 \series bold
34865 braket
34866 \series default
34867  nicht installiert ist:
34868 \end_layout
34869
34870 \end_inset
34871
34872
34873 \end_layout
34874
34875 \begin_layout Standard
34876 Das LaTeX-Paket 
34877 \series bold
34878 braket 
34879 \series default
34880 muss installiert sein, um den Rest dieses Abschnitts im Ausdruck zu sehen.
34881 \end_layout
34882
34883 \begin_layout Standard
34884 \begin_inset ERT
34885 status collapsed
34886
34887 \begin_layout Plain Layout
34888
34889
34890 \backslash
34891 fi 
34892 \end_layout
34893
34894 \end_inset
34895
34896
34897 \end_layout
34898
34899 \begin_layout Standard
34900 Der Effekt von 
34901 \series bold
34902
34903 \backslash
34904 Braket
34905 \series default
34906  kann auch mit dem Befehl 
34907 \series bold
34908
34909 \backslash
34910 middle
34911 \series default
34912  erzielt werden, der in 
34913 \begin_inset CommandInset ref
34914 LatexCommand ref
34915 reference "sub:Automatische-Klammergrößen"
34916
34917 \end_inset
34918
34919  beschrieben ist.
34920 \end_layout
34921
34922 \begin_layout Subsection
34923 Selbst definierte Brüche
34924 \begin_inset CommandInset label
34925 LatexCommand label
34926 name "sub:Selbstdefinierte-Brüche"
34927
34928 \end_inset
34929
34930
34931 \begin_inset Index idx
34932 status collapsed
34933
34934 \begin_layout Plain Layout
34935 Brüche ! selbstdefinierte
34936 \end_layout
34937
34938 \end_inset
34939
34940
34941 \end_layout
34942
34943 \begin_layout Standard
34944 Um eigene Befehle für Brüche zu definieren, verwendet man den Befehl 
34945 \series bold
34946
34947 \backslash
34948 genfrac
34949 \series default
34950
34951 \begin_inset Index idx
34952 status collapsed
34953
34954 \begin_layout Plain Layout
34955 Befehle ! G ! 
34956 \backslash
34957 genfrac
34958 \end_layout
34959
34960 \end_inset
34961
34962  in folgendem Schema:
34963 \end_layout
34964
34965 \begin_layout Standard
34966
34967 \series bold
34968
34969 \backslash
34970 genfrac{linke
34971 \series default
34972  
34973 \series bold
34974 Klammer}{rechte
34975 \series default
34976  
34977 \series bold
34978 Klammer}{Bruchstrichdicke}{Ansichtsstil}
34979 \begin_inset Newline newline
34980 \end_inset
34981
34982
34983 \begin_inset Phantom HPhantom
34984 status open
34985
34986 \begin_layout Plain Layout
34987
34988 \series bold
34989
34990 \backslash
34991 genfrac
34992 \end_layout
34993
34994 \end_inset
34995
34996 {Zähler}{Nenner}
34997 \end_layout
34998
34999 \begin_layout Standard
35000 Der Ansichtsstil wird mit einer ganzen Zahl im Bereich 0
35001 \begin_inset space \thinspace{}
35002 \end_inset
35003
35004 -
35005 \begin_inset space \thinspace{}
35006 \end_inset
35007
35008 3 angegeben.
35009 \end_layout
35010
35011 \begin_layout Standard
35012 \align center
35013 \begin_inset Tabular
35014 <lyxtabular version="3" rows="5" columns="2">
35015 <features tabularvalignment="middle">
35016 <column alignment="center" valignment="top" width="0">
35017 <column alignment="center" valignment="top" width="0">
35018 <row>
35019 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
35020 \begin_inset Text
35021
35022 \begin_layout Plain Layout
35023 Nummer
35024 \end_layout
35025
35026 \end_inset
35027 </cell>
35028 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
35029 \begin_inset Text
35030
35031 \begin_layout Plain Layout
35032 Ansichtsstil
35033 \end_layout
35034
35035 \end_inset
35036 </cell>
35037 </row>
35038 <row>
35039 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
35040 \begin_inset Text
35041
35042 \begin_layout Plain Layout
35043 0
35044 \end_layout
35045
35046 \end_inset
35047 </cell>
35048 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
35049 \begin_inset Text
35050
35051 \begin_layout Plain Layout
35052 abgesetzte Formel
35053 \end_layout
35054
35055 \end_inset
35056 </cell>
35057 </row>
35058 <row>
35059 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
35060 \begin_inset Text
35061
35062 \begin_layout Plain Layout
35063 1
35064 \end_layout
35065
35066 \end_inset
35067 </cell>
35068 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
35069 \begin_inset Text
35070
35071 \begin_layout Plain Layout
35072 eingebettete Formel
35073 \end_layout
35074
35075 \end_inset
35076 </cell>
35077 </row>
35078 <row>
35079 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
35080 \begin_inset Text
35081
35082 \begin_layout Plain Layout
35083 2
35084 \end_layout
35085
35086 \end_inset
35087 </cell>
35088 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
35089 \begin_inset Text
35090
35091 \begin_layout Plain Layout
35092 klein
35093 \end_layout
35094
35095 \end_inset
35096 </cell>
35097 </row>
35098 <row>
35099 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
35100 \begin_inset Text
35101
35102 \begin_layout Plain Layout
35103 3
35104 \end_layout
35105
35106 \end_inset
35107 </cell>
35108 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
35109 \begin_inset Text
35110
35111 \begin_layout Plain Layout
35112 winzig
35113 \end_layout
35114
35115 \end_inset
35116 </cell>
35117 </row>
35118 </lyxtabular>
35119
35120 \end_inset
35121
35122
35123 \end_layout
35124
35125 \begin_layout Standard
35126 Wird nichts für den Ansichtsstil angegeben, passt sich die Größe wie bei
35127  
35128 \series bold
35129
35130 \backslash
35131 frac
35132 \series default
35133  der Umgebung an.
35134 \end_layout
35135
35136 \begin_layout Standard
35137 Wird keine Bruchstrichdicke angegeben, wird der voreingestellte Wert von
35138  0.4
35139 \begin_inset space \thinspace{}
35140 \end_inset
35141
35142 pt verwendet.
35143 \end_layout
35144
35145 \begin_layout Standard
35146 \begin_inset VSpace medskip
35147 \end_inset
35148
35149 Zum Beispiel sind die Befehle 
35150 \series bold
35151
35152 \backslash
35153 dfrac
35154 \series default
35155  und 
35156 \series bold
35157
35158 \backslash
35159 tbinom
35160 \series default
35161  aus 
35162 \begin_inset CommandInset ref
35163 LatexCommand ref
35164 reference "sub:Brüche"
35165
35166 \end_inset
35167
35168  folgendermaßen definiert:
35169 \end_layout
35170
35171 \begin_layout Standard
35172
35173 \series bold
35174
35175 \backslash
35176 newcommand{
35177 \backslash
35178 dfrac}[2]{
35179 \backslash
35180 genfrac{}{}{}{0}{#1}{#2}}
35181 \end_layout
35182
35183 \begin_layout Standard
35184 und
35185 \end_layout
35186
35187 \begin_layout Standard
35188
35189 \series bold
35190
35191 \backslash
35192 newcommand{
35193 \backslash
35194 tbinom}[2]{
35195 \backslash
35196 genfrac{(}{)}{0pt}{1}{#1}{#2}}
35197 \end_layout
35198
35199 \begin_layout Standard
35200 \begin_inset VSpace medskip
35201 \end_inset
35202
35203 Um einen Bruch zu definieren, bei dem man die Bruchstrichdicke als optionales
35204  Argument angeben kann, gibt man im LaTeX-Vorspann folgenden Befehl ein:
35205 \end_layout
35206
35207 \begin_layout Standard
35208
35209 \series bold
35210
35211 \backslash
35212 newcommand{
35213 \backslash
35214 fracS}[3][]{
35215 \backslash
35216 genfrac{}{}{#1}{}{#2}{#3}}
35217 \end_layout
35218
35219 \begin_layout Standard
35220 Dazu ein Test:
35221 \begin_inset Formula \begin{align*}
35222 \text{Befehl} &  & \mathrm{\backslash fracS[1mm]\backslash\{A\to\backslash\{B} &  & \mathrm{\backslash fracS[5mm]\backslash\{A\to\backslash\{B}\\
35223 \text{Ergebnis} &  & \fracS[1mm]{A}{B} &  & \fracS[5mm]{A}{B}
35224 \end{align*}
35225
35226 \end_inset
35227
35228 Wie man sieht, entspricht der Abstand des Zählers und Nenners vom Strich
35229  in etwa der dreifachen Strichdicke.
35230 \end_layout
35231
35232 \begin_layout Subsection
35233 Durchgestrichene Formeln
35234 \begin_inset Index idx
35235 status collapsed
35236
35237 \begin_layout Plain Layout
35238 Formel ! durchgestrichene
35239 \end_layout
35240
35241 \end_inset
35242
35243
35244 \end_layout
35245
35246 \begin_layout Standard
35247 Um Formeln oder Formelteile durchzustreichen, muss das LaTeX-Paket 
35248 \series bold
35249 cancel
35250 \series default
35251
35252 \begin_inset Index idx
35253 status collapsed
35254
35255 \begin_layout Plain Layout
35256 Pakete ! cancel
35257 \end_layout
35258
35259 \end_inset
35260
35261  mit der LaTeX-Vorspannzeile
35262 \end_layout
35263
35264 \begin_layout Standard
35265
35266 \series bold
35267
35268 \backslash
35269 usepackage[samesize]{cancel}
35270 \end_layout
35271
35272 \begin_layout Standard
35273 geladen werden.
35274 \end_layout
35275
35276 \begin_layout Standard
35277 \begin_inset ERT
35278 status collapsed
35279
35280 \begin_layout Plain Layout
35281
35282
35283 \backslash
35284 ifcancel 
35285 \end_layout
35286
35287 \end_inset
35288
35289
35290 \begin_inset Note Note
35291 status open
35292
35293 \begin_layout Plain Layout
35294 Die folgende Tabelle erscheint nur im Ausdruck wenn das LaTeX-Paket 
35295 \series bold
35296 cancel
35297 \series default
35298  installiert ist:
35299 \end_layout
35300
35301 \end_inset
35302
35303
35304 \end_layout
35305
35306 \begin_layout Standard
35307 Es gibt vier verschiedene Arten durchzustreichen:
35308 \end_layout
35309
35310 \begin_layout Standard
35311 \align center
35312 \begin_inset Tabular
35313 <lyxtabular version="3" rows="5" columns="2">
35314 <features tabularvalignment="middle">
35315 <column alignment="center" valignment="top" width="0">
35316 <column alignment="center" valignment="top" width="0">
35317 <row>
35318 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
35319 \begin_inset Text
35320
35321 \begin_layout Plain Layout
35322 Befehl
35323 \end_layout
35324
35325 \end_inset
35326 </cell>
35327 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
35328 \begin_inset Text
35329
35330 \begin_layout Plain Layout
35331 Ergebnis
35332 \begin_inset Note Note
35333 status collapsed
35334
35335 \begin_layout Plain Layout
35336 Der Leerraum und 
35337 \series bold
35338
35339 \backslash
35340 raisebox
35341 \series default
35342  dienen nur als Abstandhalter.
35343 \end_layout
35344
35345 \end_inset
35346
35347
35348 \end_layout
35349
35350 \end_inset
35351 </cell>
35352 </row>
35353 <row>
35354 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
35355 \begin_inset Text
35356
35357 \begin_layout Plain Layout
35358
35359 \backslash
35360 cancel{
35361 \backslash
35362 int
35363 \begin_inset ERT
35364 status collapsed
35365
35366 \begin_layout Plain Layout
35367
35368
35369 \backslash
35370 leer 
35371 \end_layout
35372
35373 \end_inset
35374
35375 A=B
35376 \end_layout
35377
35378 \end_inset
35379 </cell>
35380 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
35381 \begin_inset Text
35382
35383 \begin_layout Plain Layout
35384 \begin_inset Formula $\raisebox{4.5mm}{}\cancel{\int A=B}\raisebox{-2.5mm}{}$
35385 \end_inset
35386
35387
35388 \end_layout
35389
35390 \end_inset
35391 </cell>
35392 </row>
35393 <row>
35394 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
35395 \begin_inset Text
35396
35397 \begin_layout Plain Layout
35398
35399 \backslash
35400 bcancel{
35401 \backslash
35402 int
35403 \begin_inset ERT
35404 status collapsed
35405
35406 \begin_layout Plain Layout
35407
35408
35409 \backslash
35410 leer 
35411 \end_layout
35412
35413 \end_inset
35414
35415 A=B
35416 \end_layout
35417
35418 \end_inset
35419 </cell>
35420 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
35421 \begin_inset Text
35422
35423 \begin_layout Plain Layout
35424 \begin_inset Formula $\raisebox{4.5mm}{}\bcancel{\int A=B}\raisebox{-2.5mm}{}$
35425 \end_inset
35426
35427
35428 \end_layout
35429
35430 \end_inset
35431 </cell>
35432 </row>
35433 <row>
35434 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
35435 \begin_inset Text
35436
35437 \begin_layout Plain Layout
35438
35439 \backslash
35440 xcancel{
35441 \backslash
35442 int
35443 \begin_inset ERT
35444 status collapsed
35445
35446 \begin_layout Plain Layout
35447
35448
35449 \backslash
35450 leer 
35451 \end_layout
35452
35453 \end_inset
35454
35455 A=B
35456 \end_layout
35457
35458 \end_inset
35459 </cell>
35460 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
35461 \begin_inset Text
35462
35463 \begin_layout Plain Layout
35464 \begin_inset Formula $\raisebox{4.5mm}{}\xcancel{\int A=B}\raisebox{-2.5mm}{}$
35465 \end_inset
35466
35467
35468 \end_layout
35469
35470 \end_inset
35471 </cell>
35472 </row>
35473 <row>
35474 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
35475 \begin_inset Text
35476
35477 \begin_layout Plain Layout
35478
35479 \backslash
35480 cancelto{1
35481 \begin_inset Formula $\to$
35482 \end_inset
35483
35484
35485 \backslash
35486 {
35487 \backslash
35488 int
35489 \begin_inset ERT
35490 status collapsed
35491
35492 \begin_layout Plain Layout
35493
35494
35495 \backslash
35496 leer 
35497 \end_layout
35498
35499 \end_inset
35500
35501 A=B
35502 \end_layout
35503
35504 \end_inset
35505 </cell>
35506 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
35507 \begin_inset Text
35508
35509 \begin_layout Plain Layout
35510 \begin_inset Formula $\raisebox{7mm}{}\cancelto{1}{\int A=B}\raisebox{-2.5mm}{}\hspace{3mm}$
35511 \end_inset
35512
35513
35514 \end_layout
35515
35516 \end_inset
35517 </cell>
35518 </row>
35519 </lyxtabular>
35520
35521 \end_inset
35522
35523
35524 \end_layout
35525
35526 \begin_layout Standard
35527
35528 \series bold
35529
35530 \backslash
35531 cancelto
35532 \series default
35533  eignet sich besonders, wenn man das Kürzen innerhalb einer Formel darstellen
35534  will:
35535 \begin_inset Formula \[
35536 \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}}}\]
35537
35538 \end_inset
35539
35540
35541 \end_layout
35542
35543 \begin_layout Standard
35544 \begin_inset ERT
35545 status collapsed
35546
35547 \begin_layout Plain Layout
35548
35549
35550 \backslash
35551 else 
35552 \end_layout
35553
35554 \end_inset
35555
35556
35557 \begin_inset Note Note
35558 status open
35559
35560 \begin_layout Plain Layout
35561 Folgendes erscheint im Ausdruck wenn das LaTeX-Paket 
35562 \series bold
35563 cancel
35564 \series default
35565  nicht installiert ist:
35566 \end_layout
35567
35568 \end_inset
35569
35570
35571 \end_layout
35572
35573 \begin_layout Standard
35574 Das LaTeX-Paket 
35575 \series bold
35576 cancel 
35577 \series default
35578 muss installiert sein, um den Rest dieses Abschnitts im Ausdruck zu sehen.
35579 \end_layout
35580
35581 \begin_layout Standard
35582 \begin_inset ERT
35583 status collapsed
35584
35585 \begin_layout Plain Layout
35586
35587
35588 \backslash
35589 fi 
35590 \end_layout
35591
35592 \end_inset
35593
35594
35595 \end_layout
35596
35597 \begin_layout Subsection
35598 Formeln in Überschriften
35599 \begin_inset CommandInset label
35600 LatexCommand label
35601 name "sub:Formeln-in-Überschriften"
35602
35603 \end_inset
35604
35605
35606 \begin_inset Index idx
35607 status collapsed
35608
35609 \begin_layout Plain Layout
35610 Formel ! in Überschriften
35611 \end_layout
35612
35613 \end_inset
35614
35615
35616 \end_layout
35617
35618 \begin_layout Standard
35619 Benutzt man Formeln in Überschriften, ist auf Folgendes zu achten:
35620 \end_layout
35621
35622 \begin_layout Standard
35623 \begin_inset Note Greyedout
35624 status open
35625
35626 \begin_layout Plain Layout
35627 Verwendet man 
35628 \series bold
35629 hyperref
35630 \series default
35631
35632 \begin_inset Index idx
35633 status collapsed
35634
35635 \begin_layout Plain Layout
35636 Pakete ! hyperref
35637 \end_layout
35638
35639 \end_inset
35640
35641  Unterstützung im den Dokumenteinstellungen unter 
35642 \family sans
35643 PDF-Eigenschaften
35644 \family default
35645 , werden PDF-Lesezeichen für jede Überschrift aus dem Inhaltsverzeichnis
35646  erzeugt.
35647  Enthält eine Überschrift Formeln, werden diese im Lesezeichentext falsch
35648  dargestellt.
35649  Denn Formeln in Lesezeichen verstoßen gegen die PDF-Konventionen.
35650 \end_layout
35651
35652 \end_inset
35653
35654
35655 \end_layout
35656
35657 \begin_layout Standard
35658 Beide Probleme lassen sich lösen, indem man am Ende der Überschrift einen
35659  Kurztitel über das Menü 
35660 \family sans
35661 Einfügen\SpecialChar \menuseparator
35662 Kurztitel
35663 \family default
35664  einfügt.
35665  Kurztitel werden als Alternative für mehrzeilige Überschriften verwendet,
35666  um das Inhaltsverzeichnis übersichtlich zu halten.
35667  Nur der Kurztitel erscheint im Inhaltsverzeichnis und damit auch im PDF-Lesezei
35668 chen.
35669 \end_layout
35670
35671 \begin_layout Standard
35672 Möchte man im Inhaltsverzeichnis eine Formel verwenden, benutzt aber 
35673 \series bold
35674 hyperref
35675 \series default
35676 , verwendet man im TeX-Modus den Befehl
35677 \end_layout
35678
35679 \begin_layout Standard
35680
35681 \series bold
35682
35683 \backslash
35684 texorpdfstring{Teil}{Alternative}
35685 \begin_inset Index idx
35686 status collapsed
35687
35688 \begin_layout Plain Layout
35689 Befehle ! T ! 
35690 \backslash
35691 texorpdfstring
35692 \end_layout
35693
35694 \end_inset
35695
35696
35697 \end_layout
35698
35699 \begin_layout Standard
35700 Teil ist der Überschriftsteil, der nicht im PDF-Lesezeichen erscheinen solle.
35701  Das können Zeichen, Formeln, Fußnoten aber auch Querverweise sein.
35702  Als Alternative kann man angeben, was stattdessen im Lesezeichen erscheinen
35703  soll.
35704 \end_layout
35705
35706 \begin_layout Standard
35707 Es folgen zwei Beispielüberschriften:
35708 \begin_inset VSpace -3mm
35709 \end_inset
35710
35711
35712 \begin_inset ERT
35713 status collapsed
35714
35715 \begin_layout Plain Layout
35716
35717
35718 \backslash
35719 boldmath 
35720 \end_layout
35721
35722 \end_inset
35723
35724
35725 \end_layout
35726
35727 \begin_layout Subsubsection
35728 Überschrift ohne Formel im Inhaltsverzeichnis 
35729 \begin_inset Formula $\sqrt{-1}=\mathrm{i}$
35730 \end_inset
35731
35732
35733 \begin_inset Argument
35734 status collapsed
35735
35736 \begin_layout Plain Layout
35737 Überschrift ohne Formel im Inhaltsverzeichnis
35738 \end_layout
35739
35740 \end_inset
35741
35742
35743 \end_layout
35744
35745 \begin_layout Subsubsection
35746 Überschrift mit Formel im Inhaltsverzeichnis
35747 \begin_inset ERT
35748 status collapsed
35749
35750 \begin_layout Plain Layout
35751
35752
35753 \backslash
35754 texorpdfstring{
35755 \end_layout
35756
35757 \end_inset
35758
35759  
35760 \begin_inset Formula $\sqrt{-1}=\mathrm{i}$
35761 \end_inset
35762
35763
35764 \begin_inset ERT
35765 status collapsed
35766
35767 \begin_layout Plain Layout
35768
35769 }{}
35770 \end_layout
35771
35772 \end_inset
35773
35774
35775 \end_layout
35776
35777 \begin_layout Standard
35778 \begin_inset ERT
35779 status collapsed
35780
35781 \begin_layout Plain Layout
35782
35783
35784 \backslash
35785 unboldmath 
35786 \end_layout
35787
35788 \end_inset
35789
35790 In der ersten Überschrift wurde ein Kurztitel verwendet.
35791  In der zweiten 
35792 \series bold
35793
35794 \backslash
35795 texorpdfstring
35796 \series default
35797 .
35798 \end_layout
35799
35800 \begin_layout Standard
35801 Damit die Formeln so wie der Rest der Überschrift formatiert werden, wurde
35802  die komplette Überschrift in eine 
35803 \series bold
35804 boldmath
35805 \series default
35806 -Umgebung
35807 \begin_inset Foot
35808 status collapsed
35809
35810 \begin_layout Plain Layout
35811 siehe 
35812 \begin_inset CommandInset ref
35813 LatexCommand ref
35814 reference "sub:Fett-gedruckte-Formeln"
35815
35816 \end_inset
35817
35818
35819 \end_layout
35820
35821 \end_inset
35822
35823  gesetzt.
35824 \end_layout
35825
35826 \begin_layout Subsection
35827 Formeln im mehrspaltigen Text
35828 \begin_inset Index idx
35829 status collapsed
35830
35831 \begin_layout Plain Layout
35832 Formel ! im mehrspaltigen Text
35833 \end_layout
35834
35835 \end_inset
35836
35837
35838 \end_layout
35839
35840 \begin_layout Standard
35841 Formeln im mehrspaltigen Text sind oftmals zu breit für eine Spalte und
35842  müssen daher über die gesamte Seitenbreite gesetzt werden.
35843  Dazu verwendet man das LaTeX-Paket 
35844 \series bold
35845 multicol
35846 \series default
35847
35848 \begin_inset Foot
35849 status collapsed
35850
35851 \begin_layout Plain Layout
35852
35853 \series bold
35854 multicol
35855 \series default
35856  ist Teil jeder LaTeX-Standardinstallation.
35857 \end_layout
35858
35859 \end_inset
35860
35861
35862 \begin_inset Index idx
35863 status collapsed
35864
35865 \begin_layout Plain Layout
35866 Pakete ! multicol
35867 \end_layout
35868
35869 \end_inset
35870
35871 , das mit der LaTeX-Vorspannzeile
35872 \end_layout
35873
35874 \begin_layout Standard
35875
35876 \series bold
35877
35878 \backslash
35879 usepackage{multicol}
35880 \end_layout
35881
35882 \begin_layout Standard
35883 geladen wird.
35884 \end_layout
35885
35886 \begin_layout Standard
35887 \begin_inset Note Greyedout
35888 status open
35889
35890 \begin_layout Plain Layout
35891 Dabei ist zu beachten, dass im Menü 
35892 \family sans
35893 Dokument\SpecialChar \menuseparator
35894 Einstellungen
35895 \family default
35896  unter 
35897 \family sans
35898 Textformat
35899 \family default
35900  
35901 \emph on
35902 nicht
35903 \emph default
35904  
35905 \family sans
35906 Zweispaltiges
35907 \begin_inset space ~
35908 \end_inset
35909
35910 Dokument
35911 \family default
35912  ausgewählt sein darf.
35913 \end_layout
35914
35915 \end_inset
35916
35917
35918 \end_layout
35919
35920 \begin_layout Standard
35921 Vor den mehrspaltigen Text schreibt man im TeX-Modus den Befehl
35922 \end_layout
35923
35924 \begin_layout Standard
35925
35926 \series bold
35927
35928 \backslash
35929 begin{multicols}{Spaltenanzahl}
35930 \end_layout
35931
35932 \begin_layout Standard
35933 wobei die Spaltenanzahl eine Zahl im Bereich 2
35934 \begin_inset space \thinspace{}
35935 \end_inset
35936
35937 -
35938 \begin_inset space \thinspace{}
35939 \end_inset
35940
35941 10 ist.
35942  Vor der Formel beendet man den mehrspaltigen Text mit dem Befehl
35943 \end_layout
35944
35945 \begin_layout Standard
35946
35947 \series bold
35948
35949 \backslash
35950 end{multicols}
35951 \end_layout
35952
35953 \begin_layout Standard
35954 der im TeX-Modus eingegeben wird.
35955 \end_layout
35956
35957 \begin_layout Standard
35958 Durch den Befehl wird vor der Formel automatisch etwas Leerraum erstellt.
35959  Um dies rückgängig zu machen, fügt man vor der Formel -6
35960 \begin_inset space \thinspace{}
35961 \end_inset
35962
35963 mm vertikalen Leerraum ein.
35964  Ist der Formelstil 
35965 \series bold
35966 Eingerückt
35967 \begin_inset Foot
35968 status collapsed
35969
35970 \begin_layout Plain Layout
35971 Formelstile siehe 
35972 \begin_inset CommandInset ref
35973 LatexCommand ref
35974 reference "sec:Formelstile"
35975
35976 \end_inset
35977
35978
35979 \end_layout
35980
35981 \end_inset
35982
35983
35984 \series default
35985  gewählt, fügt man stattdessen -9
35986 \begin_inset space \thinspace{}
35987 \end_inset
35988
35989 mm Leerraum ein.
35990 \end_layout
35991
35992 \begin_layout Standard
35993 Als Beispiel ein mehrspaltiger Text mit einer abgesetzten Formel:
35994 \end_layout
35995
35996 \begin_layout Standard
35997 \begin_inset ERT
35998 status collapsed
35999
36000 \begin_layout Plain Layout
36001
36002
36003 \backslash
36004 begin{multicols}{2}
36005 \end_layout
36006
36007 \end_inset
36008
36009 Das Spektrum wird fouriertransformiert.
36010  Die Fouriertransformation wird verwendet, um die überlagerten Signale (Netzwerk
36011 , Lösungsmittel) zu trennen.
36012  Nachdem wir die Phasenverschiebung bestimmen konnten, interessiert uns
36013  nun das Aussehen des Ausgangssignals.
36014  Im Experiment haben wir es mit sehr vielen Teilchen zu tun, so dass man
36015  über alle Phasen integrieren muss.
36016  Sei nun 
36017 \begin_inset Formula $S$
36018 \end_inset
36019
36020  unser normiertes Ausgangssignal und 
36021 \begin_inset Formula $P$
36022 \end_inset
36023
36024  die Phasenverteilungsfunktion, so ergibt sich die Beziehung
36025 \begin_inset ERT
36026 status collapsed
36027
36028 \begin_layout Plain Layout
36029
36030
36031 \backslash
36032 end{multicols}
36033 \end_layout
36034
36035 \end_inset
36036
36037
36038 \begin_inset VSpace -6mm
36039 \end_inset
36040
36041
36042 \begin_inset Formula \begin{equation}
36043 S(t)=S_{0}(t)\int_{-\infty}^{\infty}P(\phi,t)\mathrm{e}^{\mathrm{i}\phi}\,\mathrm{d}\phi\end{equation}
36044
36045 \end_inset
36046
36047
36048 \begin_inset ERT
36049 status collapsed
36050
36051 \begin_layout Plain Layout
36052
36053
36054 \backslash
36055 begin{multicols}{2}
36056 \end_layout
36057
36058 \end_inset
36059
36060 wobei 
36061 \begin_inset Formula $S_{0}$
36062 \end_inset
36063
36064  das Signal ohne Gradient ist und die Normierungsbedingung 
36065 \begin_inset Formula $\int_{-\infty}^{\infty}P(\phi,t)\,\mathrm{d}\phi=1$
36066 \end_inset
36067
36068  gilt.
36069  Nun dürfen wir aber nicht den Relaxationsprozess außer Acht lassen.
36070  Direkt nach dem 
36071 \begin_inset Formula $\nicefrac{\pi}{2}$
36072 \end_inset
36073
36074
36075 \begin_inset space \thinspace{}
36076 \end_inset
36077
36078 -rf-Puls beginnt sich die Magnetisierung zu entfokussieren, wodurch sich
36079  das Signal zusätzlich abschwächt.
36080  Diese Abschwächung verläuft exponentiell in Abhängigkeit der so genannten
36081  
36082 \begin_inset Formula $T_{2}$
36083 \end_inset
36084
36085 -Zeit.
36086 \end_layout
36087
36088 \begin_layout Standard
36089 \begin_inset ERT
36090 status collapsed
36091
36092 \begin_layout Plain Layout
36093
36094
36095 \backslash
36096 end{multicols}
36097 \end_layout
36098
36099 \end_inset
36100
36101  
36102 \end_layout
36103
36104 \begin_layout Subsection
36105 Formeln mit Beschreibung der Variablen
36106 \begin_inset Index idx
36107 status collapsed
36108
36109 \begin_layout Plain Layout
36110 Formel ! mit Variablenbeschreibung
36111 \end_layout
36112
36113 \end_inset
36114
36115
36116 \end_layout
36117
36118 \begin_layout Standard
36119 Möchte man wie in Formel 
36120 \begin_inset CommandInset ref
36121 LatexCommand eqref
36122 reference "eq:innerhalb"
36123
36124 \end_inset
36125
36126 , Variablen innerhalb einer Formel beschreiben, verwendet man eine 2
36127 \series bold
36128 ×
36129 \series default
36130
36131 \begin_inset Formula $n$
36132 \end_inset
36133
36134
36135 \begin_inset space ~
36136 \end_inset
36137
36138 Matrix mit links ausgerichteten Spalten für die verwendeten 
36139 \begin_inset Formula $n$
36140 \end_inset
36141
36142  Variablen.
36143 \begin_inset Foot
36144 status collapsed
36145
36146 \begin_layout Plain Layout
36147 Matrizen siehe 
36148 \begin_inset CommandInset ref
36149 LatexCommand ref
36150 reference "sec:Matrizen"
36151
36152 \end_inset
36153
36154
36155 \end_layout
36156
36157 \end_inset
36158
36159  Um die Beschreibung kleiner zu setzen, gibt man vor der Matrix z.
36160 \begin_inset space \thinspace{}
36161 \end_inset
36162
36163 B.
36164  den Befehl 
36165 \series bold
36166
36167 \backslash
36168 footnotesize
36169 \series default
36170  ein.
36171 \begin_inset Foot
36172 status collapsed
36173
36174 \begin_layout Plain Layout
36175 Schriftgrößen siehe 
36176 \begin_inset CommandInset ref
36177 LatexCommand ref
36178 reference "sub:Schriftgrößen"
36179
36180 \end_inset
36181
36182
36183 \end_layout
36184
36185 \end_inset
36186
36187
36188 \end_layout
36189
36190 \begin_layout Standard
36191 Wird der Formelstil 
36192 \series bold
36193 Eingerückt
36194 \begin_inset Foot
36195 status collapsed
36196
36197 \begin_layout Plain Layout
36198 Formelstile siehe 
36199 \begin_inset CommandInset ref
36200 LatexCommand ref
36201 reference "sec:Formelstile"
36202
36203 \end_inset
36204
36205
36206 \end_layout
36207
36208 \end_inset
36209
36210
36211 \series default
36212  verwendet, fügt man vor und nach der Matrix ein 
36213 \series bold
36214
36215 \backslash
36216 hfill
36217 \series default
36218
36219 \begin_inset Foot
36220 status collapsed
36221
36222 \begin_layout Plain Layout
36223
36224 \series bold
36225
36226 \backslash
36227 hfill
36228 \series default
36229  wirkt nur in Formeln mit dem Stil 
36230 \series bold
36231 Eingerückt
36232 \series default
36233 , siehe 
36234 \begin_inset CommandInset ref
36235 LatexCommand ref
36236 reference "sub:Variabler-Leerraum"
36237
36238 \end_inset
36239
36240 .
36241 \end_layout
36242
36243 \end_inset
36244
36245  ein, damit der Abstand der Matrix von der Gleichung und vom Seitenrand
36246  gleich ist.
36247 \end_layout
36248
36249 \begin_layout Standard
36250 Ist der Formelstil 
36251 \series bold
36252 Zentriert
36253 \series default
36254  gewählt, nutzt man die in 
36255 \begin_inset CommandInset ref
36256 LatexCommand ref
36257 reference "sub:Flalign-Umgebung"
36258
36259 \end_inset
36260
36261  beschriebene Möglichkeit, Formeln einzurücken.
36262  Formel 
36263 \begin_inset CommandInset ref
36264 LatexCommand eqref
36265 reference "eq:innerhalb"
36266
36267 \end_inset
36268
36269  besteht aus fünf Spalten, wobei in den ersten beiden die Gleichung, in
36270  der dritten die Matrix und in der letzten die leere TeX-Klammer steht.
36271 \begin_inset Formula \begin{flalign}
36272 \hspace{30pt}F_{A} & =\rho·V·g & \footnotesize\begin{array}{ll}
36273 \rho & \textrm{Dichte}\\
36274 V & \textrm{Volumen}\\
36275 g & \textrm{Fallbeschleunigung}
36276 \end{array} &  & {}\label{eq:innerhalb}\end{flalign}
36277
36278 \end_inset
36279
36280
36281 \end_layout
36282
36283 \begin_layout Subsection
36284 Aufrechte kleine griechische Buchstaben
36285 \begin_inset CommandInset label
36286 LatexCommand label
36287 name "sub:Aufrechte-kleine-griechische"
36288
36289 \end_inset
36290
36291
36292 \begin_inset Index idx
36293 status collapsed
36294
36295 \begin_layout Plain Layout
36296 griechische Buchstaben ! aufrechte
36297 \end_layout
36298
36299 \end_inset
36300
36301
36302 \end_layout
36303
36304 \begin_layout Standard
36305 Die meisten Mathe-Schriften stellen nur kursive kleine griechische Buchstaben
36306  zur Verfügung.
36307  Für Symbole der Elementarteilchen, wie Pionen und Neutrinos werden jedoch
36308  aufrechte griechische Buchstaben benötigt.
36309  Die Datei 
36310 \series bold
36311 upgreek.sty
36312 \series default
36313
36314 \begin_inset Foot
36315 status collapsed
36316
36317 \begin_layout Plain Layout
36318
36319 \series bold
36320 upgreek
36321 \series default
36322  ist Teil des LaTeX-Paketes 
36323 \series bold
36324 was
36325 \series default
36326
36327 \begin_inset Index idx
36328 status collapsed
36329
36330 \begin_layout Plain Layout
36331 Pakete ! was
36332 \begin_inset ERT
36333 status collapsed
36334
36335 \begin_layout Plain Layout
36336
36337
36338 \backslash
36339 vspace{4mm}
36340 \end_layout
36341
36342 \end_inset
36343
36344
36345 \end_layout
36346
36347 \end_inset
36348
36349 .
36350 \end_layout
36351
36352 \end_inset
36353
36354
36355 \begin_inset Index idx
36356 status collapsed
36357
36358 \begin_layout Plain Layout
36359 Pakete ! upgreek
36360 \end_layout
36361
36362 \end_inset
36363
36364 , die mit der LaTeX-Vorspannzeile
36365 \end_layout
36366
36367 \begin_layout Standard
36368
36369 \series bold
36370
36371 \backslash
36372 usepackage{upgreek}
36373 \end_layout
36374
36375 \begin_layout Standard
36376 geladen wird, stellt diese Buchstaben zur Verfügung.
36377  
36378 \begin_inset ERT
36379 status collapsed
36380
36381 \begin_layout Plain Layout
36382
36383
36384 \backslash
36385 ifupgreek 
36386 \end_layout
36387
36388 \end_inset
36389
36390
36391 \begin_inset Note Note
36392 status open
36393
36394 \begin_layout Plain Layout
36395 Das Folgende erscheint nur im Ausdruck wenn das LaTeX-Paket 
36396 \series bold
36397 upgreek
36398 \series default
36399  installiert ist:
36400 \end_layout
36401
36402 \end_inset
36403
36404  Sie werden erzeugt, wenn der Befehl für einen griechischen Buchstaben mit
36405  
36406 \series bold
36407 up
36408 \series default
36409  begonnen wird.
36410  So erzeugt z.
36411 \begin_inset space \thinspace{}
36412 \end_inset
36413
36414 B.
36415  der Befehl 
36416 \series bold
36417
36418 \backslash
36419 uptau
36420 \series default
36421  dies: 
36422 \begin_inset Formula $\uptau$
36423 \end_inset
36424
36425
36426 \end_layout
36427
36428 \begin_layout Standard
36429 Damit kann man Elementarteilchenreaktionen erstellen:
36430 \begin_inset Formula \[
36431 \uppi^{+}\to\upmu^{+}+\upnu_{\upmu}\]
36432
36433 \end_inset
36434
36435
36436 \end_layout
36437
36438 \begin_layout Standard
36439 Die aufrechten Buchstaben sind fetter und breiter als die kursiven.
36440  Sie sollten daher nicht für Einheiten wie 
36441 \begin_inset Quotes gld
36442 \end_inset
36443
36444 µm
36445 \begin_inset Quotes grd
36446 \end_inset
36447
36448  verwendet werden.
36449 \end_layout
36450
36451 \begin_layout Standard
36452 \begin_inset ERT
36453 status collapsed
36454
36455 \begin_layout Plain Layout
36456
36457
36458 \backslash
36459 else 
36460 \end_layout
36461
36462 \end_inset
36463
36464
36465 \begin_inset Note Note
36466 status open
36467
36468 \begin_layout Plain Layout
36469 Folgendes erscheint im Ausdruck wenn das LaTeX-Paket 
36470 \series bold
36471 upgreek
36472 \series default
36473  nicht installiert ist:
36474 \end_layout
36475
36476 \end_inset
36477
36478
36479 \end_layout
36480
36481 \begin_layout Standard
36482 Das LaTeX-Paket 
36483 \series bold
36484 upgreek 
36485 \series default
36486 muss installiert sein, um den Rest dieses Abschnitts im Ausdruck zu sehen.
36487 \end_layout
36488
36489 \begin_layout Standard
36490 \begin_inset ERT
36491 status collapsed
36492
36493 \begin_layout Plain Layout
36494
36495
36496 \backslash
36497 fi 
36498 \end_layout
36499
36500 \end_inset
36501
36502
36503 \end_layout
36504
36505 \begin_layout Subsection
36506 Textzeichen in Formeln
36507 \begin_inset CommandInset label
36508 LatexCommand label
36509 name "sub:Textzeichen-in-Formeln"
36510
36511 \end_inset
36512
36513
36514 \begin_inset Index idx
36515 status collapsed
36516
36517 \begin_layout Plain Layout
36518 Text ! in Formeln
36519 \end_layout
36520
36521 \end_inset
36522
36523
36524 \end_layout
36525
36526 \begin_layout Standard
36527 In einigen Fällen möchte man Textzeichen direkt in Formeln eingeben.
36528  Benötigt man z.
36529 \begin_inset space \thinspace{}
36530 \end_inset
36531
36532 B.
36533  den mittigen Punkt · in Formeln wie 
36534 \begin_inset Formula $\nu=5·10^{5}\,\mathrm{Hz}$
36535 \end_inset
36536
36537 , müsste man dafür jedes Mal den Befehl 
36538 \series bold
36539
36540 \backslash
36541 cdot
36542 \series default
36543  eingeben
36544 \begin_inset Foot
36545 status collapsed
36546
36547 \begin_layout Plain Layout
36548 siehe 
36549 \begin_inset CommandInset ref
36550 LatexCommand ref
36551 reference "sub:Binäre-Operatoren"
36552
36553 \end_inset
36554
36555
36556 \end_layout
36557
36558 \end_inset
36559
36560 , da dieses Zeichen in allen Kodierungen als Textzeichen definiert ist.
36561  Man kann jedoch die Kodierung mit folgender LaTeX-Vorspannzeile ändern:
36562 \end_layout
36563
36564 \begin_layout Standard
36565
36566 \series bold
36567
36568 \backslash
36569 DeclareInputText{183}{
36570 \backslash
36571 ifmmode
36572 \backslash
36573 cdot
36574 \backslash
36575 else
36576 \backslash
36577 textperiodcentered
36578 \backslash
36579 f\SpecialChar \textcompwordmark{}
36580 i}
36581 \end_layout
36582
36583 \begin_layout Standard
36584 Die Zeichenkodierung (Menü 
36585 \family sans
36586 Dokument\SpecialChar \menuseparator
36587 Einstellungen\SpecialChar \menuseparator
36588 Sprache
36589 \family default
36590 ) legt fest, welches Zeichen beim Druck einer bestimmten Taste erscheint.
36591  Wenn man die Taste für das Zeichen '·' drückt, wird intern der Befehl 
36592 \series bold
36593
36594 \backslash
36595 textperiodcentered
36596 \series default
36597  verwendet.
36598  Dieser Befehl ist in einer Formel jedoch nicht verfügbar, so dass es zu
36599  LaTeX-Fehlern kommen würde.
36600  Durch die geänderte Kodierung wird hingegen automatisch der richtige Befehl
36601  gewählt, je nachdem ob das Zeichen in eine Formel eingegeben wurde oder
36602  nicht.
36603 \end_layout
36604
36605 \begin_layout Standard
36606 Die Kodierung der einzelnen Zeichen ist in Definitionsdateien abgespeichert.
36607  Z.
36608 \begin_inset space \thinspace{}
36609 \end_inset
36610
36611 B.
36612  ist die Kodierung 
36613 \series bold
36614 latin9
36615 \series default
36616  in der Datei 
36617 \series bold
36618 latin9.def
36619 \series default
36620  definiert, die sich im Installationsverzeichnis von LaTeX befindet.
36621  Kodierungen sollten nur über den LaTeX-Vorspann und nicht in den Definitionsdat
36622 eien geändert werden.
36623  Ansonsten können eigene Dokumente von anderen LyX-Nutzern auf anderen Computern
36624  nicht ohne Weiteres bearbeitet werden.
36625 \end_layout
36626
36627 \begin_layout Standard
36628 \begin_inset VSpace medskip
36629 \end_inset
36630
36631 In diesem Dokument wurde außerdem mittigen Punkt noch das Gradzeichen °
36632  mit folgenden LaTeX-Vorspannzeilen so definiert, dass sie direkt in eine
36633  Formel eingegeben werden können:
36634 \end_layout
36635
36636 \begin_layout Standard
36637
36638 \series bold
36639
36640 \backslash
36641 DeclareInputText{176}{
36642 \backslash
36643 ifmmode^
36644 \backslash
36645 circ
36646 \backslash
36647 else
36648 \backslash
36649 textdegree
36650 \backslash
36651 f\SpecialChar \textcompwordmark{}
36652 i}
36653 \end_layout
36654
36655 \begin_layout Standard
36656 \begin_inset Newpage newpage
36657 \end_inset
36658
36659
36660 \end_layout
36661
36662 \begin_layout Section
36663 \start_of_appendix
36664 Typographische Hinweise
36665 \begin_inset Index idx
36666 status collapsed
36667
36668 \begin_layout Plain Layout
36669 Typographische Hinweise
36670 \end_layout
36671
36672 \end_inset
36673
36674
36675 \end_layout
36676
36677 \begin_layout Standard
36678 Dieses Kapitel ist eine Zusammenfassung der wichtigsten typographischen
36679  Regeln, die teilweise auch im Duden 
36680 \begin_inset CommandInset citation
36681 LatexCommand cite
36682 key "Duden"
36683
36684 \end_inset
36685
36686  unter 
36687 \family typewriter
36688 Textverarbeitung
36689 \family default
36690  aufgelistet sind.
36691  Weitere Regeln sind in 
36692 \begin_inset CommandInset citation
36693 LatexCommand cite
36694 key "Checklist"
36695
36696 \end_inset
36697
36698  zu finden.
36699 \end_layout
36700
36701 \begin_layout Itemize
36702 Physikalische Einheiten werden 
36703 \emph on
36704 immer
36705 \emph default
36706  aufrecht gesetzt
36707 \begin_inset Foot
36708 status collapsed
36709
36710 \begin_layout Plain Layout
36711 wird durch Schriftstile erreicht, siehe 
36712 \begin_inset CommandInset ref
36713 LatexCommand ref
36714 reference "sub:Schriftstile"
36715
36716 \end_inset
36717
36718
36719 \end_layout
36720
36721 \end_inset
36722
36723 , egal ob sie sich in einem kursiven Text befinden: 30
36724 \begin_inset space \thinspace{}
36725 \end_inset
36726
36727 km/h
36728 \begin_inset Newline newline
36729 \end_inset
36730
36731 Zwischen Wert und Einheit befindet sich der kleinste Leerraum, siehe 
36732 \begin_inset CommandInset ref
36733 LatexCommand ref
36734 reference "sub:Vordefinierter-Leerraum"
36735
36736 \end_inset
36737
36738 .
36739 \begin_inset Newline newline
36740 \end_inset
36741
36742 Diese Richtlinie wird automatisch eingehalten, wenn man den Befehl 
36743 \series bold
36744
36745 \backslash
36746 unittwo
36747 \series default
36748  verwendet.
36749  Gibt man ihn in eine Formel ein, erscheinen zwei Kästchen.
36750  In das Erste wird der Wert, in das Zweite die Einheit eingegeben und man
36751  erhält wie oben: 
36752 \begin_inset Formula $\unit[30]{km/h}$
36753 \end_inset
36754
36755
36756 \begin_inset space \thinspace{}
36757 \end_inset
36758
36759 .
36760  Zu beachten ist, dass 
36761 \series bold
36762
36763 \backslash
36764 unittwo
36765 \series default
36766  kein echter LaTeX-Befehl, sondern der Befehl 
36767 \series bold
36768
36769 \backslash
36770 unit[Wert]{Einheit}
36771 \series default
36772  ist, daher kann man ihn nicht im TeX-Code benutzen.
36773 \end_layout
36774
36775 \begin_layout Itemize
36776 Prozent- und Promillezeichen werden wie physikalische Einheiten gesetzt:
36777 \begin_inset Newline newline
36778 \end_inset
36779
36780 1,2
36781 \begin_inset space \thinspace{}
36782 \end_inset
36783
36784 ‰ Alkohol im Blut
36785 \begin_inset Newline newline
36786 \end_inset
36787
36788 Sie folgen jedoch direkt auf die Zahl, wenn sie in einer Zusammensetzung
36789  oder Ableitung stehen: 3%-ige Rendite, 20%-Grenze
36790 \end_layout
36791
36792 \begin_layout Itemize
36793 Das Grad-Symbol folgt immer unmittelbar auf die Zahl: 15°, es sei denn es
36794  wird in einer Einheit verwendet: 15
36795 \begin_inset space \thinspace{}
36796 \end_inset
36797
36798 °C
36799 \end_layout
36800
36801 \begin_layout Itemize
36802 In Zahlen mit mehr als vier Ziffern wird zur Gruppierung vor jeder dritten
36803  Ziffer der kleinste Leerraum eingefügt: 18
36804 \begin_inset space \thinspace{}
36805 \end_inset
36806
36807 473
36808 \begin_inset space \thinspace{}
36809 \end_inset
36810
36811 588
36812 \end_layout
36813
36814 \begin_layout Itemize
36815 Für Bemaßungen wie z.
36816 \begin_inset space \thinspace{}
36817 \end_inset
36818
36819 B.
36820  120×90×40
36821 \begin_inset space \thinspace{}
36822 \end_inset
36823
36824 cm, verwendet man das gelegte Kreuz 
36825 \begin_inset Quotes gld
36826 \end_inset
36827
36828 ×
36829 \begin_inset Quotes grd
36830 \end_inset
36831
36832 , dass entweder über den Befehl 
36833 \series bold
36834
36835 \backslash
36836 times
36837 \series default
36838  oder über das Menü 
36839 \family sans
36840 Einfügen\SpecialChar \menuseparator
36841 Sonderzeichen\SpecialChar \menuseparator
36842 Symbole
36843 \family default
36844  verfügbar ist.
36845 \end_layout
36846
36847 \begin_layout Itemize
36848 Bei Datumsangaben befindet sich zwischen Tag und Monat der kleinste Leerraum,
36849  zwischen Monat und Jahr ein geschütztes Leerzeichen: 23.
36850 \begin_inset space \thinspace{}
36851 \end_inset
36852
36853 6.
36854 \begin_inset space ~
36855 \end_inset
36856
36857 1979
36858 \end_layout
36859
36860 \begin_layout Itemize
36861 Funktionen, deren Name aus mehreren Buchstaben besteht, werden aufrecht
36862  gesetzt um Verwechslungen mit Variablen zu vermeiden, siehe 
36863 \begin_inset CommandInset ref
36864 LatexCommand ref
36865 reference "sub:Vordefinierte-Funktionen"
36866
36867 \end_inset
36868
36869 .
36870 \end_layout
36871
36872 \begin_layout Itemize
36873 Indizes, die aus mehreren Buchstaben bestehen, werden aufrecht gesetzt:
36874  
36875 \begin_inset Formula $E_{\mathrm{kin}}$
36876 \end_inset
36877
36878
36879 \begin_inset Newline newline
36880 \end_inset
36881
36882 Komponenten von Matrizen werden kursiv gesetzt: 
36883 \begin_inset Formula $\hat{H}_{kl}$
36884 \end_inset
36885
36886
36887 \end_layout
36888
36889 \begin_layout Itemize
36890 Der Ableitungs-/Integrationsoperator 'd', die Eulersche Zahl 'e' und die
36891  Imaginäre Zahl 'i' sollten aufrecht gesetzt werden, um sie nicht mit anderen
36892  Variablen zu verwechseln.
36893 \end_layout
36894
36895 \begin_layout Itemize
36896 Das Symbol für eine 
36897 \noun on
36898 Fourier
36899 \noun default
36900 -Transformation kann entweder mit dem Befehl 
36901 \series bold
36902
36903 \backslash
36904 mathscr
36905 \begin_inset ERT
36906 status collapsed
36907
36908 \begin_layout Plain Layout
36909
36910
36911 \backslash
36912 leer 
36913 \end_layout
36914
36915 \end_inset
36916
36917 F
36918 \series default
36919  oder über das Menü 
36920 \family sans
36921 Einfügen\SpecialChar \menuseparator
36922 Sonderzeichen\SpecialChar \menuseparator
36923 Symbole\SpecialChar \menuseparator
36924 Buchstabenähnliche
36925 \begin_inset space ~
36926 \end_inset
36927
36928 Symbole
36929 \family default
36930  eingefügt werden: 
36931 \begin_inset Formula $\mathscr{F}$
36932 \end_inset
36933
36934
36935 \end_layout
36936
36937 \begin_layout Standard
36938 \begin_inset Newpage newpage
36939 \end_inset
36940
36941
36942 \end_layout
36943
36944 \begin_layout Section
36945 Synonyme
36946 \begin_inset Index idx
36947 status collapsed
36948
36949 \begin_layout Plain Layout
36950 Synonyme
36951 \end_layout
36952
36953 \end_inset
36954
36955
36956 \end_layout
36957
36958 \begin_layout Standard
36959 Einige Zeichen und Symbole können mit mehreren Befehlen erstellt werden.
36960  Hier ist eine Übersicht der Synonymbefehle:
36961 \end_layout
36962
36963 \begin_layout Standard
36964 \begin_inset VSpace bigskip
36965 \end_inset
36966
36967
36968 \begin_inset space \hfill{}
36969 \end_inset
36970
36971
36972 \begin_inset Tabular
36973 <lyxtabular version="3" rows="12" columns="2">
36974 <features tabularvalignment="middle">
36975 <column alignment="center" valignment="top" width="0pt">
36976 <column alignment="center" valignment="top" width="0pt">
36977 <row>
36978 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
36979 \begin_inset Text
36980
36981 \begin_layout Plain Layout
36982 Befehl
36983 \end_layout
36984
36985 \end_inset
36986 </cell>
36987 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
36988 \begin_inset Text
36989
36990 \begin_layout Plain Layout
36991 äquivalent zu
36992 \begin_inset Note Note
36993 status collapsed
36994
36995 \begin_layout Plain Layout
36996
36997 \series bold
36998
36999 \backslash
37000 raisebox
37001 \series default
37002  dient nur als Abstandhalter.
37003 \end_layout
37004
37005 \end_inset
37006
37007
37008 \end_layout
37009
37010 \end_inset
37011 </cell>
37012 </row>
37013 <row>
37014 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37015 \begin_inset Text
37016
37017 \begin_layout Plain Layout
37018
37019 \backslash
37020 ast
37021 \end_layout
37022
37023 \end_inset
37024 </cell>
37025 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37026 \begin_inset Text
37027
37028 \begin_layout Plain Layout
37029 \begin_inset ERT
37030 status collapsed
37031
37032 \begin_layout Plain Layout
37033
37034
37035 \backslash
37036 raisebox{-1.2mm}{
37037 \end_layout
37038
37039 \end_inset
37040
37041 *
37042 \begin_inset ERT
37043 status collapsed
37044
37045 \begin_layout Plain Layout
37046
37047 }
37048 \end_layout
37049
37050 \end_inset
37051
37052
37053 \end_layout
37054
37055 \end_inset
37056 </cell>
37057 </row>
37058 <row>
37059 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37060 \begin_inset Text
37061
37062 \begin_layout Plain Layout
37063
37064 \backslash
37065 choose
37066 \end_layout
37067
37068 \end_inset
37069 </cell>
37070 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37071 \begin_inset Text
37072
37073 \begin_layout Plain Layout
37074
37075 \backslash
37076 binom
37077 \end_layout
37078
37079 \end_inset
37080 </cell>
37081 </row>
37082 <row>
37083 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37084 \begin_inset Text
37085
37086 \begin_layout Plain Layout
37087
37088 \backslash
37089 geq
37090 \end_layout
37091
37092 \end_inset
37093 </cell>
37094 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37095 \begin_inset Text
37096
37097 \begin_layout Plain Layout
37098
37099 \backslash
37100 ge
37101 \end_layout
37102
37103 \end_inset
37104 </cell>
37105 </row>
37106 <row>
37107 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37108 \begin_inset Text
37109
37110 \begin_layout Plain Layout
37111
37112 \backslash
37113 lbrace
37114 \end_layout
37115
37116 \end_inset
37117 </cell>
37118 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37119 \begin_inset Text
37120
37121 \begin_layout Plain Layout
37122 {
37123 \end_layout
37124
37125 \end_inset
37126 </cell>
37127 </row>
37128 <row>
37129 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37130 \begin_inset Text
37131
37132 \begin_layout Plain Layout
37133
37134 \backslash
37135 lbracket
37136 \end_layout
37137
37138 \end_inset
37139 </cell>
37140 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37141 \begin_inset Text
37142
37143 \begin_layout Plain Layout
37144 [
37145 \end_layout
37146
37147 \end_inset
37148 </cell>
37149 </row>
37150 <row>
37151 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37152 \begin_inset Text
37153
37154 \begin_layout Plain Layout
37155
37156 \backslash
37157 leftarrow
37158 \end_layout
37159
37160 \end_inset
37161 </cell>
37162 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37163 \begin_inset Text
37164
37165 \begin_layout Plain Layout
37166
37167 \backslash
37168 gets
37169 \end_layout
37170
37171 \end_inset
37172 </cell>
37173 </row>
37174 <row>
37175 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37176 \begin_inset Text
37177
37178 \begin_layout Plain Layout
37179
37180 \backslash
37181 leq
37182 \end_layout
37183
37184 \end_inset
37185 </cell>
37186 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37187 \begin_inset Text
37188
37189 \begin_layout Plain Layout
37190
37191 \backslash
37192 le
37193 \end_layout
37194
37195 \end_inset
37196 </cell>
37197 </row>
37198 <row>
37199 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37200 \begin_inset Text
37201
37202 \begin_layout Plain Layout
37203
37204 \backslash
37205 lor
37206 \end_layout
37207
37208 \end_inset
37209 </cell>
37210 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37211 \begin_inset Text
37212
37213 \begin_layout Plain Layout
37214
37215 \backslash
37216 vee
37217 \end_layout
37218
37219 \end_inset
37220 </cell>
37221 </row>
37222 <row>
37223 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37224 \begin_inset Text
37225
37226 \begin_layout Plain Layout
37227
37228 \backslash
37229 neq
37230 \end_layout
37231
37232 \end_inset
37233 </cell>
37234 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37235 \begin_inset Text
37236
37237 \begin_layout Plain Layout
37238
37239 \backslash
37240 not=
37241 \end_layout
37242
37243 \end_inset
37244 </cell>
37245 </row>
37246 <row>
37247 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37248 \begin_inset Text
37249
37250 \begin_layout Plain Layout
37251
37252 \backslash
37253 slash
37254 \end_layout
37255
37256 \end_inset
37257 </cell>
37258 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37259 \begin_inset Text
37260
37261 \begin_layout Plain Layout
37262 /
37263 \end_layout
37264
37265 \end_inset
37266 </cell>
37267 </row>
37268 <row>
37269 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
37270 \begin_inset Text
37271
37272 \begin_layout Plain Layout
37273
37274 \backslash
37275 vert
37276 \end_layout
37277
37278 \end_inset
37279 </cell>
37280 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
37281 \begin_inset Text
37282
37283 \begin_layout Plain Layout
37284 |
37285 \end_layout
37286
37287 \end_inset
37288 </cell>
37289 </row>
37290 </lyxtabular>
37291
37292 \end_inset
37293
37294
37295 \begin_inset space \hfill{}
37296 \end_inset
37297
37298
37299 \begin_inset Tabular
37300 <lyxtabular version="3" rows="12" columns="2">
37301 <features tabularvalignment="middle">
37302 <column alignment="center" valignment="top" width="0pt">
37303 <column alignment="center" valignment="top" width="0pt">
37304 <row>
37305 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
37306 \begin_inset Text
37307
37308 \begin_layout Plain Layout
37309 Befehl
37310 \end_layout
37311
37312 \end_inset
37313 </cell>
37314 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
37315 \begin_inset Text
37316
37317 \begin_layout Plain Layout
37318 äquivalent zu
37319 \end_layout
37320
37321 \end_inset
37322 </cell>
37323 </row>
37324 <row>
37325 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37326 \begin_inset Text
37327
37328 \begin_layout Plain Layout
37329
37330 \backslash
37331 backslash
37332 \end_layout
37333
37334 \end_inset
37335 </cell>
37336 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37337 \begin_inset Text
37338
37339 \begin_layout Plain Layout
37340
37341 \backslash
37342
37343 \backslash
37344
37345 \end_layout
37346
37347 \end_inset
37348 </cell>
37349 </row>
37350 <row>
37351 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37352 \begin_inset Text
37353
37354 \begin_layout Plain Layout
37355
37356 \backslash
37357 dasharrow
37358 \end_layout
37359
37360 \end_inset
37361 </cell>
37362 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37363 \begin_inset Text
37364
37365 \begin_layout Plain Layout
37366
37367 \backslash
37368 dashrightarrow
37369 \end_layout
37370
37371 \end_inset
37372 </cell>
37373 </row>
37374 <row>
37375 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37376 \begin_inset Text
37377
37378 \begin_layout Plain Layout
37379
37380 \backslash
37381 land
37382 \end_layout
37383
37384 \end_inset
37385 </cell>
37386 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37387 \begin_inset Text
37388
37389 \begin_layout Plain Layout
37390
37391 \backslash
37392 wedge
37393 \end_layout
37394
37395 \end_inset
37396 </cell>
37397 </row>
37398 <row>
37399 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37400 \begin_inset Text
37401
37402 \begin_layout Plain Layout
37403
37404 \backslash
37405 rbrace
37406 \end_layout
37407
37408 \end_inset
37409 </cell>
37410 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37411 \begin_inset Text
37412
37413 \begin_layout Plain Layout
37414 }
37415 \end_layout
37416
37417 \end_inset
37418 </cell>
37419 </row>
37420 <row>
37421 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37422 \begin_inset Text
37423
37424 \begin_layout Plain Layout
37425
37426 \backslash
37427 rbracket
37428 \end_layout
37429
37430 \end_inset
37431 </cell>
37432 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37433 \begin_inset Text
37434
37435 \begin_layout Plain Layout
37436 ]
37437 \end_layout
37438
37439 \end_inset
37440 </cell>
37441 </row>
37442 <row>
37443 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37444 \begin_inset Text
37445
37446 \begin_layout Plain Layout
37447
37448 \backslash
37449 rightarrow
37450 \end_layout
37451
37452 \end_inset
37453 </cell>
37454 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37455 \begin_inset Text
37456
37457 \begin_layout Plain Layout
37458
37459 \backslash
37460 to
37461 \end_layout
37462
37463 \end_inset
37464 </cell>
37465 </row>
37466 <row>
37467 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37468 \begin_inset Text
37469
37470 \begin_layout Plain Layout
37471
37472 \backslash
37473 lnot
37474 \end_layout
37475
37476 \end_inset
37477 </cell>
37478 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37479 \begin_inset Text
37480
37481 \begin_layout Plain Layout
37482
37483 \backslash
37484 neg
37485 \end_layout
37486
37487 \end_inset
37488 </cell>
37489 </row>
37490 <row>
37491 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37492 \begin_inset Text
37493
37494 \begin_layout Plain Layout
37495
37496 \backslash
37497 ne
37498 \end_layout
37499
37500 \end_inset
37501 </cell>
37502 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37503 \begin_inset Text
37504
37505 \begin_layout Plain Layout
37506
37507 \backslash
37508 not=
37509 \end_layout
37510
37511 \end_inset
37512 </cell>
37513 </row>
37514 <row>
37515 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37516 \begin_inset Text
37517
37518 \begin_layout Plain Layout
37519
37520 \backslash
37521 owns
37522 \end_layout
37523
37524 \end_inset
37525 </cell>
37526 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37527 \begin_inset Text
37528
37529 \begin_layout Plain Layout
37530
37531 \backslash
37532 ni
37533 \end_layout
37534
37535 \end_inset
37536 </cell>
37537 </row>
37538 <row>
37539 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37540 \begin_inset Text
37541
37542 \begin_layout Plain Layout
37543
37544 \backslash
37545 square
37546 \end_layout
37547
37548 \end_inset
37549 </cell>
37550 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37551 \begin_inset Text
37552
37553 \begin_layout Plain Layout
37554
37555 \backslash
37556 Box
37557 \end_layout
37558
37559 \end_inset
37560 </cell>
37561 </row>
37562 <row>
37563 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
37564 \begin_inset Text
37565
37566 \begin_layout Plain Layout
37567
37568 \backslash
37569 Vert
37570 \end_layout
37571
37572 \end_inset
37573 </cell>
37574 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
37575 \begin_inset Text
37576
37577 \begin_layout Plain Layout
37578
37579 \backslash
37580 |
37581 \end_layout
37582
37583 \end_inset
37584 </cell>
37585 </row>
37586 </lyxtabular>
37587
37588 \end_inset
37589
37590
37591 \begin_inset space \hfill{}
37592 \end_inset
37593
37594
37595 \end_layout
37596
37597 \begin_layout Standard
37598 \begin_inset Newpage newpage
37599 \end_inset
37600
37601
37602 \end_layout
37603
37604 \begin_layout Bibliography
37605 \labelwidthstring Referenzen
37606 \begin_inset CommandInset bibitem
37607 LatexCommand bibitem
37608 key "TLC2"
37609
37610 \end_inset
37611
37612
37613 \shape smallcaps
37614 Mittelbach, F.
37615  ; Goossens, M.
37616 \shape default
37617
37618 \shape italic
37619 The LaTeX Companion
37620 \shape default
37621 .
37622  Addison Wesley, 2004
37623 \end_layout
37624
37625 \begin_layout Bibliography
37626 \labelwidthstring Referenzen
37627 \begin_inset CommandInset bibitem
37628 LatexCommand bibitem
37629 key "Mathmode"
37630
37631 \end_inset
37632
37633
37634 \begin_inset CommandInset href
37635 LatexCommand href
37636 name "Beschreibung"
37637 target "ftp://ftp.dante.de/tex-archive/info/math/voss/mathmode/Mathmode.pdf"
37638
37639 \end_inset
37640
37641  der mathematischen Fähigkeiten von LaTeX
37642 \end_layout
37643
37644 \begin_layout Bibliography
37645 \labelwidthstring Referenzen
37646 \begin_inset CommandInset bibitem
37647 LatexCommand bibitem
37648 key "AMS"
37649
37650 \end_inset
37651
37652
37653 \begin_inset CommandInset href
37654 LatexCommand href
37655 name "Beschreibung"
37656 target "ftp://ftp.ams.org/pub/tex/doc/amsmath/amsldoc.pdf"
37657
37658 \end_inset
37659
37660  von 
37661 \begin_inset ERT
37662 status collapsed
37663
37664 \begin_layout Plain Layout
37665
37666
37667 \backslash
37668 AmS
37669 \end_layout
37670
37671 \end_inset
37672
37673 -LaTeX
37674 \end_layout
37675
37676 \begin_layout Bibliography
37677 \labelwidthstring Referenzen
37678 \begin_inset CommandInset bibitem
37679 LatexCommand bibitem
37680 key "Symbole"
37681
37682 \end_inset
37683
37684
37685 \begin_inset CommandInset href
37686 LatexCommand href
37687 name "Auflistung"
37688 target "ftp://ftp.dante.de/tex-archive/info/symbols/comprehensive/symbols-a4.pdf"
37689
37690 \end_inset
37691
37692  aller über LaTeX-Pakete verfügbare Symbole
37693 \end_layout
37694
37695 \begin_layout Bibliography
37696 \labelwidthstring Referenzen
37697 \begin_inset CommandInset bibitem
37698 LatexCommand bibitem
37699 key "hyperref"
37700
37701 \end_inset
37702
37703
37704 \begin_inset CommandInset href
37705 LatexCommand href
37706 name "Dokumentation"
37707 target "http://www.tug.org/applications/hyperref/ftp/doc/manual.pdf"
37708
37709 \end_inset
37710
37711  des LaTeX-Pakets 
37712 \series bold
37713 hyperref
37714 \series default
37715
37716 \begin_inset Index idx
37717 status collapsed
37718
37719 \begin_layout Plain Layout
37720 Pakete ! hyperref
37721 \end_layout
37722
37723 \end_inset
37724
37725
37726 \end_layout
37727
37728 \begin_layout Bibliography
37729 \labelwidthstring Referenzen
37730 \begin_inset CommandInset bibitem
37731 LatexCommand bibitem
37732 key "mhchem"
37733
37734 \end_inset
37735
37736
37737 \begin_inset CommandInset href
37738 LatexCommand href
37739 name "Dokumentation"
37740 target "http://www.ctan.org/tex-archive/macros/latex/contrib/mhchem/mhchem.pdf"
37741
37742 \end_inset
37743
37744  des LaTeX-Pakets 
37745 \series bold
37746 mhchem
37747 \series default
37748
37749 \begin_inset Index idx
37750 status collapsed
37751
37752 \begin_layout Plain Layout
37753 Pakete ! mhchem
37754 \end_layout
37755
37756 \end_inset
37757
37758
37759 \end_layout
37760
37761 \begin_layout Bibliography
37762 \labelwidthstring Referenzen
37763 \begin_inset CommandInset bibitem
37764 LatexCommand bibitem
37765 key "Mathclap"
37766
37767 \end_inset
37768
37769
37770 \begin_inset CommandInset href
37771 LatexCommand href
37772 name "Beschreibung"
37773 target "http://www.tug.org/TUGboat/Articles/tb22-4/tb72perlS.pdf"
37774
37775 \end_inset
37776
37777  des in 
37778 \begin_inset CommandInset ref
37779 LatexCommand ref
37780 reference "sub:Operatorgrenzen"
37781
37782 \end_inset
37783
37784  vorgestellten Befehls 
37785 \series bold
37786
37787 \backslash
37788 mathclap
37789 \series default
37790
37791 \begin_inset Index idx
37792 status collapsed
37793
37794 \begin_layout Plain Layout
37795 Befehle ! M ! 
37796 \backslash
37797 mathclap
37798 \end_layout
37799
37800 \end_inset
37801
37802
37803 \end_layout
37804
37805 \begin_layout Bibliography
37806 \labelwidthstring Referenzen
37807 \begin_inset CommandInset bibitem
37808 LatexCommand bibitem
37809 key "Duden"
37810
37811 \end_inset
37812
37813
37814 \emph on
37815 Duden Band 1
37816 \emph default
37817 .
37818  22.
37819  Auflage, Duden Verlag 2001
37820 \end_layout
37821
37822 \begin_layout Bibliography
37823 \labelwidthstring Referenzen
37824 \begin_inset CommandInset bibitem
37825 LatexCommand bibitem
37826 key "Checklist"
37827
37828 \end_inset
37829
37830
37831 \begin_inset CommandInset href
37832 LatexCommand href
37833 name "Prüfliste"
37834 target "http://physics.nist.gov/Document/checklist.pdf"
37835
37836 \end_inset
37837
37838  für das Rezensieren von Manuskripten
37839 \end_layout
37840
37841 \begin_layout Standard
37842 \begin_inset Note Note
37843 status collapsed
37844
37845 \begin_layout Plain Layout
37846 Damit der Index den Namen 
37847 \begin_inset Quotes gld
37848 \end_inset
37849
37850 Stichwortverzeichnis
37851 \begin_inset Quotes grd
37852 \end_inset
37853
37854  erhält, wurde im LaTeX-Vorspann
37855 \end_layout
37856
37857 \begin_layout Plain Layout
37858
37859 \series bold
37860
37861 \backslash
37862 addto
37863 \backslash
37864 captionsngerman{
37865 \backslash
37866 renewcommand{
37867 \backslash
37868 indexname}{Stichwortverzeichnis}}
37869 \end_layout
37870
37871 \begin_layout Plain Layout
37872 eingefügt.
37873 \end_layout
37874
37875 \begin_layout Plain Layout
37876 Das Paket 
37877 \series bold
37878 babel
37879 \series default
37880  sorgt dafür, dass die Beschriftungen in der ausgewählten Sprache erscheinen.
37881  Ehe man Beschriftungen ändern kann, muss es geladen werden.
37882  Außerdem wird 
37883 \series bold
37884 babel
37885 \series default
37886  von LyX automatisch nach dem LaTeX-Vorspann geladen.
37887  Das ruft aber keine Probleme hervor, solange im LaTeX-Vorspann die Dokumentspra
37888 che verwendet wurde.
37889 \end_layout
37890
37891 \begin_layout Plain Layout
37892 Möchte man andere Beschriftungen ändern, ersetzt man 
37893 \series bold
37894
37895 \backslash
37896 indexname
37897 \series default
37898  durch 
37899 \series bold
37900
37901 \backslash
37902 <Beschriftungs>name
37903 \series default
37904 .
37905  Eine Auflistung der möglichen Namen findet man unter
37906 \end_layout
37907
37908 \begin_layout Plain Layout
37909
37910 \family typewriter
37911 http://www.tex.ac.uk/cgi-bin/texfaq2html?label=fixnam
37912 \end_layout
37913
37914 \begin_layout Plain Layout
37915 Möchte man Beschriftungen für andere Sprachen ändern, ersetzt man 
37916 \series bold
37917 ngerman
37918 \series default
37919  durch die Dokumentsprache und
37920 \end_layout
37921
37922 \begin_layout Plain Layout
37923
37924 \series bold
37925
37926 \backslash
37927 captionsgerman
37928 \series default
37929  durch 
37930 \series bold
37931
37932 \backslash
37933 captions<Dokumentsprache>
37934 \series default
37935 .
37936 \end_layout
37937
37938 \end_inset
37939
37940
37941 \begin_inset CommandInset index_print
37942 LatexCommand printindex
37943 type "idx"
37944
37945 \end_inset
37946
37947
37948 \end_layout
37949
37950 \end_body
37951 \end_document