]> git.lyx.org Git - features.git/blob - lib/doc/de/Math.lyx
- Math.lyx: fix an index entry, side effect of bug 5006
[features.git] / lib / doc / de / Math.lyx
1 #LyX 1.6.0svn created this file. For more info see http://www.lyx.org/
2 \lyxformat 338
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
17 % if pdflatex is used
18 \usepackage{ifpdf}
19 \ifpdf
20
21 % set fonts for nicer pdf view
22 \IfFileExists{lmodern.sty}
23  {\usepackage{lmodern}}{}
24
25 \fi % end if pdflatex is used
26
27 % Folgendes Problem lösen:
28 % Besteht die Kapitelnummer aus zu vielen Ziffern, wird  die
29 % Kapitelüberschrift im Inhaltsverzeichnis direkt an oder über
30 % die Kapitelnummer geschrieben.
31 % Als Lösung wird mehr Platz zwischen Nummer und
32 % Überschrift eingefügt.
33 \renewcommand{\l@subsection}{\@dottedtocline{2}{1.5em}{2.8em}}
34 \renewcommand{\l@subsubsection}{\@dottedtocline{3}{4.3em}{3.6em}}
35
36 % Damit die Zeichen ° und · in LyX direkt eingegeben werden können,
37 % siehe Kap. 22.11
38 \DeclareInputText{176}{\ifmmode^\circ\else\textdegree\fi}
39 \DeclareInputText{183}{\ifmmode\cdot\else\textperiodcentered\fi}
40
41 % Linkfläche für Querverweise vergrößern und automatisch benennen,
42 \AtBeginDocument{\renewcommand{\ref}[1]{\mbox{\autoref{#1}}}}
43 \newlength{\abc}
44 \settowidth{\abc}{\space}
45 \addto\extrasngerman{
46  \renewcommand{\equationautorefname}{\hspace{-\abc}}
47  \renewcommand{\sectionautorefname}{Kap.\negthinspace}
48  \renewcommand{\subsectionautorefname}{Kap.\negthinspace}
49  \renewcommand{\subsubsectionautorefname}{Kap.\negthinspace}}
50
51 % Makros damit Pakete nicht doppelt geladen werden.
52 % siehe erste Fußnote in Kap. 9.3
53 \@ifundefined{textcolor}{\usepackage{color}}{}
54
55 % Die Seiten des Inhaltsverzeichnisses werden römisch numeriert,
56 % ein PDF-Lesezeichen für das Inhaltsverzeichnis wird hinzugefügt
57 \pagenumbering{roman}
58 \let\myTOC\tableofcontents
59 \renewcommand{\tableofcontents}{%
60  \vspace{1cm}
61  \pdfbookmark[1]{\contentsname}{}
62  \myTOC
63  \cleardoublepage
64  \pagenumbering{arabic}}
65
66 % Damit die Fußnoten einen zusätzlichen vertikalen Abstand von 1,5 mm haben,
67 \let\myFoot\footnote
68 \renewcommand{\footnote}[1]{\myFoot{#1\vspace{1.5mm}}}
69
70 % provides caption formatting
71 \setkomafont{captionlabel}{\bfseries}
72
73 % benutzt in Kap. 22.4
74 \usepackage{braket}
75
76 % benutzt in Kap. 22.6
77 \usepackage[samesize]{cancel}
78
79 % enables calculation of values,
80 \usepackage{calc}
81
82 % für Mehrfachzeilen und -spalten
83 \usepackage{multirow}
84 \usepackage{multicol}
85
86 % für Diagramme
87 \usepackage{amscd}
88
89 % benutzt in Kap. 19.4
90 \usepackage{remreset}
91
92 %Mehrfachzeilen zentriert ausrichten (z.B. in Kap. 13.3)
93 \renewcommand{\multirowsetup}{\centering}
94
95 % Farbdefinition aus Kap. 9.3
96 \definecolor{dunkelgruen}{cmyk}{0.5, 0, 1, 0.5}
97
98 % Operatoren deklarieren (siehe Kap. 10.4 und 15.2)
99 \DeclareMathOperator*{\Raute}{\blacklozenge}
100 \DeclareMathOperator{\sgn}{sgn}
101
102 \newcommand{\leer}{\textvisiblespace}
103
104 % Beispielbefehle aus Kap. 20.1 
105 \newcommand{\gr}{\Longrightarrow}
106 \newcommand{\us}[1]{\underline{#1}}
107 \newcommand{\fb}[3]{\framebox#1#2{$#3$}}
108 \newcommand{\cb}[3][white]{\fcolorbox{#2}{#1}{$#3$}}
109 \newcommand{\fracS}[3][]{\genfrac{}{}{#1}{}{#2}{#3}}
110
111 % Beispielmakro aus Kap. 19.4
112 %\def\tagform@#1{\maketag@@@{|#1|}}
113
114 % Makro aus Kap. 10.2
115 \def\clap#1{\hbox to 0pt{\hss #1\hss}}
116 \def\mathclap {\mathpalette \mathclapinternal}
117 \def\mathclapinternal #1#2{\clap{$\mathsurround =0pt #1{#2}$}}
118
119 % Grauschrift Notiz umdefinieren
120 \renewenvironment{lyxgreyedout}
121  {\textcolor{blue}\bgroup}{\egroup}
122
123 % Damit der Index einen anderen Namen erhält.
124 \addto\captionsngerman
125 {\renewcommand{\indexname}
126 {Stichwort- und Befehlsverzeichnis}}
127
128 % ------------------------------------
129 % used to check for needed LaTeX packages
130 \usepackage{ifthen}
131
132 % testen ob das Paket eurosym installiert ist
133 % wird benutzt für das Euro-Symbol
134 \newboolean{eurosym}
135 \IfFileExists{eurosym.sty}
136  {\usepackage[gennarrow]{eurosym}
137   \setboolean{eurosym}{true}}
138  {\setboolean{eurosym}{false}}
139
140 % benutzt in Kap. 22.4
141 % testen ob Paket braket installiert ist
142 \newboolean{braket}
143 \IfFileExists{braket.sty}
144  {\usepackage{braket}
145   \setboolean{braket}{true}}
146  {\setboolean{braket}{false}}
147
148 % benutzt in Kap. 22.10
149 % testen ob Paket upgreek installiert ist
150 \newboolean{upgreek}
151 \IfFileExists{upgreek.sty}
152  {\usepackage{upgreek}
153   \setboolean{upgreek}{true}}
154  {\setboolean{upgreek}{false}}
155
156 % benötigt für Kommas in Formeln, siehe Kap. 22.3
157 \IfFileExists{icomma.sty}
158  {\usepackage{icomma}}{}
159 \end_preamble
160 \options bibtotoc,idxtotoc,BCOR7.5mm,titlepage,tablecaptionabove
161 \language ngerman
162 \inputencoding auto
163 \font_roman default
164 \font_sans default
165 \font_typewriter default
166 \font_default_family default
167 \font_sc false
168 \font_osf false
169 \font_sf_scale 100
170 \font_tt_scale 100
171
172 \graphics default
173 \paperfontsize 12
174 \spacing single
175 \use_hyperref true
176 \pdf_title "LyXs Mathehandbuch"
177 \pdf_author "LyX Team, Uwe Stöhr"
178 \pdf_subject "LyX-Dokumentation der Mathefunktionen"
179 \pdf_keywords "LyX, Mathed"
180 \pdf_bookmarks true
181 \pdf_bookmarksnumbered true
182 \pdf_bookmarksopen true
183 \pdf_bookmarksopenlevel 1
184 \pdf_breaklinks false
185 \pdf_pdfborder false
186 \pdf_colorlinks true
187 \pdf_backref false
188 \pdf_pagebackref false
189 \pdf_pdfusetitle false
190 \pdf_quoted_options "linkcolor=black, citecolor=black, urlcolor=blue, filecolor=blue,  pdfpagelayout=OneColumn, pdfnewwindow=true,  pdfstartview=XYZ, plainpages=false, pdfpagelabels"
191 \papersize a4paper
192 \use_geometry false
193 \use_amsmath 2
194 \use_esint 1
195 \cite_engine basic
196 \use_bibtopic false
197 \paperorientation portrait
198 \secnumdepth 4
199 \tocdepth 3
200 \paragraph_separation skip
201 \defskip medskip
202 \quotes_language german
203 \papercolumns 1
204 \papersides 2
205 \paperpagestyle plain
206 \bullet 1 0 6 -1
207 \bullet 2 2 35 -1
208 \bullet 3 2 7 -1
209 \tracking_changes false
210 \output_changes false
211 \author "" 
212 \author "" 
213 \end_header
214
215 \begin_body
216
217 \begin_layout Title
218 LyXs detailliertes Mathe Handbuch
219 \end_layout
220
221 \begin_layout Author
222 vom LyX Team
223 \begin_inset Foot
224 status collapsed
225
226 \begin_layout Plain Layout
227 \noindent
228 Für Anmerkungen oder Korrekturen senden sie bitte eine Email an LyXs Dokumentati
229 ons-Liste: 
230 \family typewriter
231
232 \begin_inset CommandInset href
233 LatexCommand href
234 name "lyx-docs@lists.lyx.org"
235 target "lyx-docs@lists.lyx.org?subject=LyXs Mathehandbuch"
236
237 \end_inset
238
239
240 \end_layout
241
242 \end_inset
243
244
245 \begin_inset Note Note
246 status collapsed
247
248 \begin_layout Plain Layout
249 Verfasser: Uwe Stöhr
250 \end_layout
251
252 \end_inset
253
254
255 \begin_inset Newline newline
256 \end_inset
257
258
259 \begin_inset Newline newline
260 \end_inset
261
262
263 \family sans
264 Version 1.6svn
265 \end_layout
266
267 \begin_layout Standard
268 \begin_inset CommandInset toc
269 LatexCommand tableofcontents
270
271 \end_inset
272
273
274 \end_layout
275
276 \begin_layout Standard
277 \begin_inset Note Note
278 status open
279
280 \begin_layout Plain Layout
281 Um diese Datei als PDF, PS oder DVI zu exportieren, müssen die LaTeX-Pakete
282  
283 \series bold
284 eurosym,
285 \series default
286  
287 \series bold
288 multirow,
289 \series default
290  und 
291 \series bold
292 was
293 \series default
294  installiert sein.
295  Wenn sie nicht installiert sind, kann das Dokument trotzdem exportiert
296  werden, die Abschnitte in denen die Pakete benötigt werden, erscheinen
297  dann aber nicht im Ausdruck.
298 \end_layout
299
300 \end_inset
301
302
303 \end_layout
304
305 \begin_layout Standard
306 \begin_inset Newpage newpage
307 \end_inset
308
309
310 \end_layout
311
312 \begin_layout Section
313 Einleitung
314 \begin_inset CommandInset label
315 LatexCommand label
316 name "sec:Einleitung"
317
318 \end_inset
319
320
321 \end_layout
322
323 \begin_layout Standard
324 Dieses Dokument ist eine Zusammenstellung und Erläuterung der wichtigsten
325  LaTeX-Befehle für mathematische Zeichen und Konstruktionen.
326  Die Erläuterungen sind speziell auf die Benutzung der Befehle mit LyX zugeschni
327 tten.
328  Das setzt voraus, dass bereits das Kapitel 
329 \family typewriter
330 Mathematische
331 \family default
332  
333 \family typewriter
334 Formeln
335 \family default
336  des Benutzerhandbuchs gelesen worden ist.
337 \end_layout
338
339 \begin_layout Standard
340 Die meisten Zeichen und viele Konstruktionen sind auch über das Menü 
341 \family sans
342 Einfügen
343 \series bold
344 \SpecialChar \menuseparator
345
346 \series default
347 Mathe
348 \family default
349  oder die 
350 \family sans
351 Mathe-Werkzeugleiste
352 \family default
353  aufrufbar.
354  Wer viele Formeln zu schreiben hat, wird jedoch feststellen, dass man mit
355  den LaTeX-Befehlen viel schneller eine Formel setzen kann.
356  Daher wird in diesem Handbuch der Fokus auf Befehle gesetzt wobei entsprechende
357  Werkzeugleistenknöpfe, falls vorhanden, erwähnt werden.
358 \end_layout
359
360 \begin_layout Standard
361 Sofern nicht anders angegeben, sind Befehle nur in der Formel-Umgebung von
362  LyX verfügbar.
363  Um alle Befehle nutzen zu können, muss die Option 
364 \family sans
365 AMS-Mathe-Paket verwenden
366 \family default
367  im Menü 
368 \family sans
369 Dokument\SpecialChar \menuseparator
370 Einstellungen\SpecialChar \menuseparator
371 Mathe Optionen
372 \family default
373  aktiviert sein.
374 \begin_inset Foot
375 status collapsed
376
377 \begin_layout Plain Layout
378 Die 
379 \family sans
380 Option
381 \family default
382  
383 \family sans
384 AMS-Mathe-Paket automatisch verwenden
385 \family default
386  verwendet 
387 \begin_inset ERT
388 status collapsed
389
390 \begin_layout Plain Layout
391
392
393 \backslash
394 AmS 
395 \end_layout
396
397 \end_inset
398
399 -Mathe nur wenn im Dokument mathematische Konstrukte gefunden wurden die
400  LyX unterstützt.
401 \end_layout
402
403 \end_inset
404
405
406 \end_layout
407
408 \begin_layout Standard
409 Es wird in diesem Dokument der Übersichtlichkeit halber auf die Auf\SpecialChar \textcompwordmark{}
410 listung
411  aller 
412 \begin_inset ERT
413 status collapsed
414
415 \begin_layout Plain Layout
416
417
418 \backslash
419 AmS 
420 \end_layout
421
422 \end_inset
423
424 -Mathe Befehle
425 \begin_inset Foot
426 status collapsed
427
428 \begin_layout Plain Layout
429 Eine Liste mit allen 
430 \begin_inset ERT
431 status collapsed
432
433 \begin_layout Plain Layout
434
435
436 \backslash
437 AmS
438 \end_layout
439
440 \end_inset
441
442 -Mathe Befehlen findet sich in der Datei 
443 \family sans
444
445 \begin_inset CommandInset href
446 LatexCommand href
447 name "amsguide.ps"
448 target "ftp://ctan.tug.org/tex-archive/macros/amstex/doc/amsguide.ps"
449
450 \end_inset
451
452
453 \family default
454 , die Teil jeder LaTeX-Standardinstallation ist.
455 \end_layout
456
457 \end_inset
458
459  verzichtet.
460 \end_layout
461
462 \begin_layout Section
463 Allgemeine Hinweise
464 \begin_inset CommandInset label
465 LatexCommand label
466 name "sec:Allgemeine-Hinweise"
467
468 \end_inset
469
470
471 \end_layout
472
473 \begin_layout Standard
474 Um eine in einer Textzeile eingebettete Formel
475 \begin_inset Index
476 status collapsed
477
478 \begin_layout Plain Layout
479 Formel ! eingebettete
480 \end_layout
481
482 \end_inset
483
484  zu erstellen, drückt man 
485 \family sans
486 Strg-m
487 \family default
488  oder den Werkzeugleistenknopf 
489 \begin_inset Graphics
490         filename ../../images/math-mode.png
491         scale 85
492
493 \end_inset
494
495 .
496 \begin_inset Newline newline
497 \end_inset
498
499 Um eine abgesetzte Formel
500 \begin_inset Index
501 status collapsed
502
503 \begin_layout Plain Layout
504 Formel ! abgesetzte
505 \end_layout
506
507 \end_inset
508
509  zu erstellen, drückt man 
510 \family sans
511 Strg-M
512 \family default
513 .
514 \end_layout
515
516 \begin_layout Standard
517 Um eine abgesetzte Formel in eine eingebettete umzuwandeln, setzt man den
518  Cursor in die Formel und drückt 
519 \family sans
520 Strg-M
521 \family default
522  oder benutzt das Menü 
523 \family sans
524 Bearbeiten\SpecialChar \menuseparator
525 Mathe\SpecialChar \menuseparator
526
527 \begin_inset Newline linebreak
528 \end_inset
529
530 Formelart ändern
531 \family default
532 .
533  Auf die selbe Weise lässt sich eine eingebettete in eine abgesetzte Formel
534  umwandeln.
535 \end_layout
536
537 \begin_layout Standard
538 Um Teile einer eingebetteten Formel in der Größe einer abgesetzten darzustellen,
539  gibt man in die Formel den Befehl 
540 \series bold
541
542 \backslash
543 displaystyle
544 \begin_inset Index
545 status collapsed
546
547 \begin_layout Plain Layout
548 Befehle ! D ! 
549 \backslash
550 displaystyle
551 \end_layout
552
553 \end_inset
554
555
556 \series default
557  ein.
558  Es erscheint ein neues blaues Kästchen, in das dann der Formelteil eingegeben
559  wird.
560 \end_layout
561
562 \begin_layout Standard
563 In einer Tabelle dürfen nur eingebettete Formeln verwendet werden.
564 \end_layout
565
566 \begin_layout Standard
567 Die 
568 \family sans
569 Mathe-Werkzeugleiste
570 \family default
571  kann über das Menü 
572 \family sans
573 Ansicht\SpecialChar \menuseparator
574 Werkzeugleisten
575 \family default
576  eingeblendet werden.
577  Wenn dort auf 
578 \begin_inset Quotes eld
579 \end_inset
580
581 Mathe
582 \begin_inset Quotes erd
583 \end_inset
584
585  geklickt wird, wird die Werkzeugleiste permanent am unteren Rand eingeblendet;
586  diese Einstellung wird durch ein Häkchen im Menü 
587 \family sans
588 Werkzeugleisten
589 \family default
590  angezeigt.
591  Wenn nun im Menü 
592 \family sans
593 Werkzeugleisten
594 \family default
595  nochmal auf 
596 \begin_inset Quotes eld
597 \end_inset
598
599 Mathe
600 \begin_inset Quotes erd
601 \end_inset
602
603  geklickt wird, wird die Werkzeugleiste nur angezeigt, wenn sich der Cursor
604  in einer Formel befindet; diese Einstellung wird durch die Umbenennung
605  des Menüeintrags von 
606 \begin_inset Quotes eld
607 \end_inset
608
609 Mathe
610 \begin_inset Quotes erd
611 \end_inset
612
613  zu 
614 \begin_inset Quotes eld
615 \end_inset
616
617 Mathe
618 \begin_inset space ~
619 \end_inset
620
621 (automatisch)
622 \begin_inset Quotes erd
623 \end_inset
624
625  angezeigt.
626 \end_layout
627
628 \begin_layout Standard
629 In den TeX-Modus
630 \begin_inset Index
631 status collapsed
632
633 \begin_layout Plain Layout
634 T@TeX-Modus
635 \end_layout
636
637 \end_inset
638
639  gelangt man über den Werkzeugleistenknopf 
640 \begin_inset Graphics
641         filename ../../images/ert-insert.png
642         scale 85
643
644 \end_inset
645
646  oder das Menü 
647 \family sans
648 Einfügen\SpecialChar \menuseparator
649 Te
650 \begin_inset ERT
651 status collapsed
652
653 \begin_layout Plain Layout
654
655 {}
656 \end_layout
657
658 \end_inset
659
660 X
661 \begin_inset space ~
662 \end_inset
663
664 Code
665 \family default
666  (Tastenkürzel 
667 \family sans
668 Strg-l
669 \family default
670 ).
671 \begin_inset Note Note
672 status collapsed
673
674 \begin_layout Plain Layout
675 In LyX gibt es drei 
676 \begin_inset Quotes gld
677 \end_inset
678
679 Eigennamen
680 \begin_inset Quotes grd
681 \end_inset
682
683 , die im Ausdruck mit hoch bzw.
684  tief gestellten Großbuchstaben erscheinen: TeX, LaTeX und LyX
685 \end_layout
686
687 \begin_layout Plain Layout
688 Um zu verhindern, dass diese Wörter als Eigennamen erkannt werden, fügt
689  man ein TeX-Klammerpaar ein.
690 \end_layout
691
692 \end_inset
693
694
695 \end_layout
696
697 \begin_layout Standard
698 In den LaTeX-Vorspann
699 \begin_inset Index
700 status collapsed
701
702 \begin_layout Plain Layout
703 L@LaTeX-Vorspann
704 \end_layout
705
706 \end_inset
707
708  gelangt man über das Menü 
709 \family sans
710 Dokument\SpecialChar \menuseparator
711 Einstellungen\SpecialChar \menuseparator
712 LaT
713 \begin_inset ERT
714 status collapsed
715
716 \begin_layout Plain Layout
717
718 {}
719 \end_layout
720
721 \end_inset
722
723 eX-Vorspann
724 \family default
725 .
726 \end_layout
727
728 \begin_layout Standard
729 Zur nachträglichen Bearbeitung von Matrizen, Fallunterscheidungen und mehrzeilig
730 en Formeln kann man die Menüs 
731 \family sans
732 Bearbeiten\SpecialChar \menuseparator
733 Mathe
734 \family default
735  und 
736 \family sans
737 Bearbeiten\SpecialChar \menuseparator
738 Zeilen
739 \begin_inset space \thinspace{}
740 \end_inset
741
742 &
743 \begin_inset space \thinspace{}
744 \end_inset
745
746 Spalten
747 \family default
748  oder die 
749 \family sans
750 Tabellen-Werkzeugleiste
751 \family default
752  verwenden.
753  Beim Vertauschen von Zeilen und Spalten mit Hilfe dieses Menüs wird immer
754  die Spalte bzw.
755  Zeile, in der der Cursor steht, mit der rechts daneben stehenden Spalte
756  bzw.
757  darunter liegenden Zeile vertauscht.
758  Befindet sich der Cursor in der letzten Spalte bzw.
759  Zeile, wird mit der links daneben stehenden Spalte bzw.
760  darüber liegenden Zeile vertauscht.
761 \end_layout
762
763 \begin_layout Standard
764 Zum Schreiben von Text in einer Formel
765 \begin_inset Foot
766 status collapsed
767
768 \begin_layout Plain Layout
769 Bei mehrzeiligen Formeln wird der Befehl 
770 \series bold
771
772 \backslash
773 intertext
774 \series default
775  verwendet, siehe 
776 \begin_inset CommandInset ref
777 LatexCommand ref
778 reference "sub:Text-in-mehrzeiligen"
779
780 \end_inset
781
782 .
783 \end_layout
784
785 \end_inset
786
787  verwendet man den 
788 \emph on
789 mathematischen Textmodus
790 \emph default
791
792 \begin_inset Index
793 status collapsed
794
795 \begin_layout Plain Layout
796 Text ! in Formeln
797 \end_layout
798
799 \end_inset
800
801
802 \begin_inset Index
803 status collapsed
804
805 \begin_layout Plain Layout
806 Mathematischer Textmodus
807 \end_layout
808
809 \end_inset
810
811 , in den man mit dem Tastenkürzel 
812 \family sans
813 Alt-m
814 \begin_inset space ~
815 \end_inset
816
817 m
818 \family default
819  oder durch Eingabe des Befehls 
820 \series bold
821
822 \backslash
823 text
824 \begin_inset Index
825 status collapsed
826
827 \begin_layout Plain Layout
828 Befehle ! T ! 
829 \backslash
830 text
831 \end_layout
832
833 \end_inset
834
835
836 \series default
837  gelangt.
838  Der Text erscheint in LyX schwarz und lässt sich dadurch gut vom Rest der
839  Formel unterscheiden.
840  Im fertigen Dokument erscheint mathematischer Text im Gegensatz zu allen
841  anderen Zeichen einer Formel nicht kursiv.
842 \end_layout
843
844 \begin_layout Subsection*
845 Befehlsschema
846 \end_layout
847
848 \begin_layout Standard
849 Die meisten LaTeX-Befehle für mathematische Konstruktionen besitzen folgendes
850  Schema:
851 \end_layout
852
853 \begin_layout Standard
854
855 \series bold
856
857 \backslash
858 Befehlsname[optionales
859 \series default
860  
861 \series bold
862 Argument]{anzugebendes
863 \series default
864  
865 \series bold
866 Argument}
867 \end_layout
868
869 \begin_layout Standard
870 Ein Befehl muss immer mit einem Backslash 
871 \begin_inset Quotes gld
872 \end_inset
873
874
875 \series bold
876
877 \backslash
878
879 \series default
880
881 \begin_inset Quotes grd
882 \end_inset
883
884  beginnen.
885  Möchte man ein optionales Argument nicht angeben, müssen auch die zugehörigen
886  eckigen Klammern weggelassen werden.
887  Die geschweiften Klammern werden in diesem Dokument als TeX-Klammern
888 \begin_inset Index
889 status collapsed
890
891 \begin_layout Plain Layout
892 T@TeX-Klammern
893 \end_layout
894
895 \end_inset
896
897  bezeichnet.
898  Hängt man in einer Formel an Befehlsnamen eine linke geschweifte Klammer
899  an, erzeugt LyX automatisch eine TeX-Klammer.
900  Ansonsten werden sie in Formeln mit dem Befehl 
901 \series bold
902
903 \backslash
904 {
905 \series default
906  erzeugt.
907  TeX-Klammern erscheinen in LyX rot, im Gegensatz zu normalen geschweiften
908  Klammern, die blau erscheinen.
909  Im TeX-Modus sind für TeX-Klammern keine Befehle notwendig.
910  TeX-Klammern erscheinen nicht im Ausdruck.
911 \end_layout
912
913 \begin_layout Standard
914 Werden Befehle ohne Argumente, wie z.
915 \begin_inset space \thinspace{}
916 \end_inset
917
918 B.
919  Symbolbefehle, im TeX-Modus eingegeben, muss auf den Befehl 
920 \emph on
921 immer
922 \emph default
923  ein Leerzeichen folgen um ihn zu beenden.
924  Dieses Leerzeichen erscheint nicht im Ausdruck.
925  Soll das Leerzeichen auch im Ausdruck erscheinen, muss auf den Befehl im
926  normalen Text ein geschütztes Leerzeichen folgen.
927 \end_layout
928
929 \begin_layout Standard
930 Ein geschütztes Leerzeichen gibt man mit 
931 \family sans
932 Strg-Leertaste
933 \family default
934  ein.
935 \end_layout
936
937 \begin_layout Subsection*
938 Zeichenerklärung
939 \end_layout
940
941 \begin_layout Itemize
942 Das Symbol
943 \begin_inset Foot
944 status collapsed
945
946 \begin_layout Plain Layout
947 Dieses sichtbare Leerzeichen erhält man über den Befehl 
948 \series bold
949
950 \backslash
951 textvisiblespace
952 \series default
953
954 \begin_inset Index
955 status collapsed
956
957 \begin_layout Plain Layout
958 Befehle ! T ! 
959 \backslash
960 textvisiblespace
961 \end_layout
962
963 \end_inset
964
965 , der im TeX-Modus einzugeben ist.
966 \end_layout
967
968 \end_inset
969
970  
971 \begin_inset ERT
972 status collapsed
973
974 \begin_layout Plain Layout
975
976
977 \backslash
978 leer 
979 \end_layout
980
981 \end_inset
982
983
984 \begin_inset space ~
985 \end_inset
986
987 steht für ein einzugebendes Leerzeichen.
988 \end_layout
989
990 \begin_layout Itemize
991 Ein Pfeil wie z.
992 \begin_inset space \thinspace{}
993 \end_inset
994
995 B.
996  
997 \begin_inset Formula $\to$
998 \end_inset
999
1000  steht für den Druck der jeweiligen Pfeiltaste auf der Tastatur.
1001 \end_layout
1002
1003 \begin_layout Subsection*
1004 Verwendete Einheiten
1005 \end_layout
1006
1007 \begin_layout Standard
1008 \align center
1009 \begin_inset Float table
1010 placement H
1011 wide false
1012 sideways false
1013 status open
1014
1015 \begin_layout Plain Layout
1016 \align center
1017 \begin_inset Caption
1018
1019 \begin_layout Plain Layout
1020 \begin_inset CommandInset label
1021 LatexCommand label
1022 name "tab:Verwendete-Einheiten"
1023
1024 \end_inset
1025
1026 Verwendete Einheiten
1027 \end_layout
1028
1029 \end_inset
1030
1031
1032 \end_layout
1033
1034 \begin_layout Plain Layout
1035 \align center
1036 \begin_inset Tabular
1037 <lyxtabular version="3" rows="13" columns="2">
1038 <features>
1039 <column alignment="center" valignment="top" width="0">
1040 <column alignment="center" valignment="top" width="0">
1041 <row>
1042 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1043 \begin_inset Text
1044
1045 \begin_layout Plain Layout
1046 Einheit
1047 \end_layout
1048
1049 \end_inset
1050 </cell>
1051 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
1052 \begin_inset Text
1053
1054 \begin_layout Plain Layout
1055 Name / Beschreibung
1056 \end_layout
1057
1058 \end_inset
1059 </cell>
1060 </row>
1061 <row>
1062 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1063 \begin_inset Text
1064
1065 \begin_layout Plain Layout
1066 mm
1067 \end_layout
1068
1069 \end_inset
1070 </cell>
1071 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1072 \begin_inset Text
1073
1074 \begin_layout Plain Layout
1075 Millimeter
1076 \end_layout
1077
1078 \end_inset
1079 </cell>
1080 </row>
1081 <row>
1082 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1083 \begin_inset Text
1084
1085 \begin_layout Plain Layout
1086 cm
1087 \end_layout
1088
1089 \end_inset
1090 </cell>
1091 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1092 \begin_inset Text
1093
1094 \begin_layout Plain Layout
1095 Zentimeter
1096 \end_layout
1097
1098 \end_inset
1099 </cell>
1100 </row>
1101 <row>
1102 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1103 \begin_inset Text
1104
1105 \begin_layout Plain Layout
1106 in
1107 \end_layout
1108
1109 \end_inset
1110 </cell>
1111 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1112 \begin_inset Text
1113
1114 \begin_layout Plain Layout
1115 Inch / Zoll (1
1116 \begin_inset space \thinspace{}
1117 \end_inset
1118
1119 in = 2,54
1120 \begin_inset space \thinspace{}
1121 \end_inset
1122
1123 cm)
1124 \end_layout
1125
1126 \end_inset
1127 </cell>
1128 </row>
1129 <row>
1130 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1131 \begin_inset Text
1132
1133 \begin_layout Plain Layout
1134 pt
1135 \end_layout
1136
1137 \end_inset
1138 </cell>
1139 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1140 \begin_inset Text
1141
1142 \begin_layout Plain Layout
1143 Punkt (72,27
1144 \begin_inset space \thinspace{}
1145 \end_inset
1146
1147 pt = 1
1148 \begin_inset space \thinspace{}
1149 \end_inset
1150
1151 in)
1152 \end_layout
1153
1154 \end_inset
1155 </cell>
1156 </row>
1157 <row>
1158 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1159 \begin_inset Text
1160
1161 \begin_layout Plain Layout
1162 pc
1163 \end_layout
1164
1165 \end_inset
1166 </cell>
1167 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1168 \begin_inset Text
1169
1170 \begin_layout Plain Layout
1171 Pica (1
1172 \begin_inset space \thinspace{}
1173 \end_inset
1174
1175 pc = 12
1176 \begin_inset space \thinspace{}
1177 \end_inset
1178
1179 pt)
1180 \end_layout
1181
1182 \end_inset
1183 </cell>
1184 </row>
1185 <row>
1186 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1187 \begin_inset Text
1188
1189 \begin_layout Plain Layout
1190 sp
1191 \end_layout
1192
1193 \end_inset
1194 </cell>
1195 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1196 \begin_inset Text
1197
1198 \begin_layout Plain Layout
1199 scaled point (65536
1200 \begin_inset space \thinspace{}
1201 \end_inset
1202
1203 sp = 1
1204 \begin_inset space \thinspace{}
1205 \end_inset
1206
1207 pt)
1208 \end_layout
1209
1210 \end_inset
1211 </cell>
1212 </row>
1213 <row>
1214 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1215 \begin_inset Text
1216
1217 \begin_layout Plain Layout
1218 bp
1219 \end_layout
1220
1221 \end_inset
1222 </cell>
1223 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1224 \begin_inset Text
1225
1226 \begin_layout Plain Layout
1227 big point (72
1228 \begin_inset space \thinspace{}
1229 \end_inset
1230
1231 bp = 1
1232 \begin_inset space \thinspace{}
1233 \end_inset
1234
1235 in)
1236 \end_layout
1237
1238 \end_inset
1239 </cell>
1240 </row>
1241 <row>
1242 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1243 \begin_inset Text
1244
1245 \begin_layout Plain Layout
1246 dd
1247 \end_layout
1248
1249 \end_inset
1250 </cell>
1251 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1252 \begin_inset Text
1253
1254 \begin_layout Plain Layout
1255 Didot (1
1256 \begin_inset space \thinspace{}
1257 \end_inset
1258
1259 dd 
1260 \begin_inset Formula $\approx$
1261 \end_inset
1262
1263  0,376
1264 \begin_inset space \thinspace{}
1265 \end_inset
1266
1267 mm)
1268 \end_layout
1269
1270 \end_inset
1271 </cell>
1272 </row>
1273 <row>
1274 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1275 \begin_inset Text
1276
1277 \begin_layout Plain Layout
1278 cc
1279 \end_layout
1280
1281 \end_inset
1282 </cell>
1283 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1284 \begin_inset Text
1285
1286 \begin_layout Plain Layout
1287 Cicero (1
1288 \begin_inset space \thinspace{}
1289 \end_inset
1290
1291 cc = 12
1292 \begin_inset space \thinspace{}
1293 \end_inset
1294
1295 dd)
1296 \end_layout
1297
1298 \end_inset
1299 </cell>
1300 </row>
1301 <row>
1302 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1303 \begin_inset Text
1304
1305 \begin_layout Plain Layout
1306 ex
1307 \end_layout
1308
1309 \end_inset
1310 </cell>
1311 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1312 \begin_inset Text
1313
1314 \begin_layout Plain Layout
1315 Höhe des Buchstabens 
1316 \emph on
1317 x
1318 \emph default
1319  in der aktuellen Schrift
1320 \end_layout
1321
1322 \end_inset
1323 </cell>
1324 </row>
1325 <row>
1326 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1327 \begin_inset Text
1328
1329 \begin_layout Plain Layout
1330 em
1331 \end_layout
1332
1333 \end_inset
1334 </cell>
1335 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1336 \begin_inset Text
1337
1338 \begin_layout Plain Layout
1339 Breite des Buchstabens 
1340 \emph on
1341 M
1342 \emph default
1343  in der aktuellen Schrift
1344 \end_layout
1345
1346 \end_inset
1347 </cell>
1348 </row>
1349 <row>
1350 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1351 \begin_inset Text
1352
1353 \begin_layout Plain Layout
1354 mu
1355 \end_layout
1356
1357 \end_inset
1358 </cell>
1359 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
1360 \begin_inset Text
1361
1362 \begin_layout Plain Layout
1363 math unit (1
1364 \begin_inset space \thinspace{}
1365 \end_inset
1366
1367 mu = 
1368 \begin_inset Formula $\nicefrac{1}{18}$
1369 \end_inset
1370
1371
1372 \begin_inset space \thinspace{}
1373 \end_inset
1374
1375 em)
1376 \end_layout
1377
1378 \end_inset
1379 </cell>
1380 </row>
1381 </lyxtabular>
1382
1383 \end_inset
1384
1385
1386 \end_layout
1387
1388 \end_inset
1389
1390
1391 \end_layout
1392
1393 \begin_layout Standard
1394 \begin_inset Newpage newpage
1395 \end_inset
1396
1397
1398 \end_layout
1399
1400 \begin_layout Section
1401 Grundlegende Funktionen
1402 \end_layout
1403
1404 \begin_layout Subsection
1405 Exponenten
1406 \begin_inset Index
1407 status collapsed
1408
1409 \begin_layout Plain Layout
1410 Exponenten
1411 \end_layout
1412
1413 \end_inset
1414
1415  und Indizes
1416 \begin_inset Index
1417 status collapsed
1418
1419 \begin_layout Plain Layout
1420 Indizes
1421 \end_layout
1422
1423 \end_inset
1424
1425
1426 \begin_inset Index
1427 status collapsed
1428
1429 \begin_layout Plain Layout
1430 Hochstellen|see
1431 \begin_inset ERT
1432 status collapsed
1433
1434 \begin_layout Plain Layout
1435
1436 {
1437 \end_layout
1438
1439 \end_inset
1440
1441 Exponenten
1442 \begin_inset ERT
1443 status collapsed
1444
1445 \begin_layout Plain Layout
1446
1447 }
1448 \end_layout
1449
1450 \end_inset
1451
1452
1453 \end_layout
1454
1455 \end_inset
1456
1457
1458 \begin_inset Index
1459 status collapsed
1460
1461 \begin_layout Plain Layout
1462 Tiefstellen|see
1463 \begin_inset ERT
1464 status collapsed
1465
1466 \begin_layout Plain Layout
1467
1468 {
1469 \end_layout
1470
1471 \end_inset
1472
1473 Indizes
1474 \begin_inset ERT
1475 status collapsed
1476
1477 \begin_layout Plain Layout
1478
1479 }
1480 \end_layout
1481
1482 \end_inset
1483
1484
1485 \end_layout
1486
1487 \end_inset
1488
1489
1490 \end_layout
1491
1492 \begin_layout Standard
1493 Indizes werden mit dem Unterstrich _ oder mit dem Mathe-Werkzeugleistenknopf
1494  
1495 \begin_inset Graphics
1496         filename ../../images/math-subscript.png
1497         scale 85
1498
1499 \end_inset
1500
1501 , Exponenten mit dem Zirkumflexzeichen ^ oder mit dem Mathe-Werkzeugleistenknopf
1502  
1503 \begin_inset Graphics
1504         filename ../../images/math-superscript.png
1505         scale 85
1506
1507 \end_inset
1508
1509  erzeugt.
1510 \end_layout
1511
1512 \begin_layout Standard
1513 \align center
1514 \begin_inset Tabular
1515 <lyxtabular version="3" rows="4" columns="2">
1516 <features>
1517 <column alignment="center" valignment="top" width="0pt">
1518 <column alignment="center" valignment="top" width="0pt">
1519 <row>
1520 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1521 \begin_inset Text
1522
1523 \begin_layout Plain Layout
1524 Befehl
1525 \end_layout
1526
1527 \end_inset
1528 </cell>
1529 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
1530 \begin_inset Text
1531
1532 \begin_layout Plain Layout
1533 Ergebnis
1534 \begin_inset Note Note
1535 status collapsed
1536
1537 \begin_layout Plain Layout
1538
1539 \series bold
1540
1541 \backslash
1542 raisebox
1543 \series default
1544  dient nur als Abstandhalter.
1545 \end_layout
1546
1547 \end_inset
1548
1549
1550 \end_layout
1551
1552 \end_inset
1553 </cell>
1554 </row>
1555 <row>
1556 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1557 \begin_inset Text
1558
1559 \begin_layout Plain Layout
1560 B_V
1561 \end_layout
1562
1563 \end_inset
1564 </cell>
1565 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1566 \begin_inset Text
1567
1568 \begin_layout Plain Layout
1569 \begin_inset Formula $B_{V}$
1570 \end_inset
1571
1572
1573 \end_layout
1574
1575 \end_inset
1576 </cell>
1577 </row>
1578 <row>
1579 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1580 \begin_inset Text
1581
1582 \begin_layout Plain Layout
1583 B^V
1584 \end_layout
1585
1586 \end_inset
1587 </cell>
1588 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
1589 \begin_inset Text
1590
1591 \begin_layout Plain Layout
1592 \begin_inset Formula $\raisebox{5mm}{}B^{V}$
1593 \end_inset
1594
1595
1596 \end_layout
1597
1598 \end_inset
1599 </cell>
1600 </row>
1601 <row>
1602 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1603 \begin_inset Text
1604
1605 \begin_layout Plain Layout
1606 B^
1607 \begin_inset ERT
1608 status collapsed
1609
1610 \begin_layout Plain Layout
1611
1612
1613 \backslash
1614 leer 
1615 \end_layout
1616
1617 \end_inset
1618
1619 A
1620 \end_layout
1621
1622 \end_inset
1623 </cell>
1624 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
1625 \begin_inset Text
1626
1627 \begin_layout Plain Layout
1628 \begin_inset Formula $\raisebox{5mm}{}B^{A}$
1629 \end_inset
1630
1631
1632 \end_layout
1633
1634 \end_inset
1635 </cell>
1636 </row>
1637 </lyxtabular>
1638
1639 \end_inset
1640
1641
1642 \end_layout
1643
1644 \begin_layout Standard
1645 Da der Zirkumflex ein Akzent ist, werden Selbstlaute akzentuiert statt hochgeste
1646 llt
1647 \begin_inset Foot
1648 status collapsed
1649
1650 \begin_layout Plain Layout
1651 Je nach Tastatureinstellung werden auch andere Buchstaben akzentuiert.
1652 \end_layout
1653
1654 \end_inset
1655
1656 .
1657  Um in diesem Fall Exponenten zu erzeugen, muss nach dem Zirkumflex ein
1658  Leerzeichen eingegeben werden, siehe letztes Beispiel.
1659 \end_layout
1660
1661 \begin_layout Subsection
1662 Brüche
1663 \begin_inset CommandInset label
1664 LatexCommand label
1665 name "sub:Brüche"
1666
1667 \end_inset
1668
1669
1670 \begin_inset Index
1671 status collapsed
1672
1673 \begin_layout Plain Layout
1674 Brüche
1675 \end_layout
1676
1677 \end_inset
1678
1679
1680 \end_layout
1681
1682 \begin_layout Standard
1683 Brüche werden mit dem Befehl 
1684 \series bold
1685
1686 \backslash
1687 frac
1688 \series default
1689
1690 \begin_inset Index
1691 status collapsed
1692
1693 \begin_layout Plain Layout
1694 Befehle ! F ! 
1695 \backslash
1696 frac
1697 \end_layout
1698
1699 \end_inset
1700
1701  oder mit dem Mathe-Werkzeugleistenknopf 
1702 \begin_inset Graphics
1703         filename ../../images/math/frac.png
1704         scale 50
1705
1706 \end_inset
1707
1708  erstellt.
1709  Die Zeichengröße wird automatisch angepasst, je nachdem, ob sich der Bruch
1710  in einer eingebetteten oder abgesetzten Formel befindet.
1711  Mit dem Mathe-Werkzeugleistenknopf 
1712 \begin_inset Graphics
1713         filename ../../images/math/frac-square.png
1714         scale 85
1715
1716 \end_inset
1717
1718  können verschieden Bruchtypen gewählt werden.
1719 \end_layout
1720
1721 \begin_layout Standard
1722 Mit dem Befehl 
1723 \series bold
1724
1725 \backslash
1726 dfrac
1727 \begin_inset Index
1728 status collapsed
1729
1730 \begin_layout Plain Layout
1731 Befehle ! D ! 
1732 \backslash
1733 dfrac
1734 \end_layout
1735
1736 \end_inset
1737
1738
1739 \series default
1740  kann man einen Bruch erzeugen, der immer in der Größe einer abgesetzten
1741  Formel erscheint.
1742  Mit 
1743 \series bold
1744
1745 \backslash
1746 tfrac
1747 \begin_inset Index
1748 status collapsed
1749
1750 \begin_layout Plain Layout
1751 Befehle ! T ! 
1752 \backslash
1753 tfrac
1754 \end_layout
1755
1756 \end_inset
1757
1758
1759 \series default
1760  erscheint der Bruch immer in der Größe einer eingebetteten Formel.
1761  Ein Beispiel:
1762 \end_layout
1763
1764 \begin_layout Standard
1765 Eine Zeile mit dem Bruch 
1766 \begin_inset Formula $\frac{1}{2}$
1767 \end_inset
1768
1769 , der mit dem Befehl 
1770 \series bold
1771
1772 \backslash
1773 frac
1774 \series default
1775  erstellt wurde.
1776 \end_layout
1777
1778 \begin_layout Standard
1779 Eine Zeile mit dem Bruch 
1780 \begin_inset Formula $\dfrac{1}{2}$
1781 \end_inset
1782
1783 , der mit dem Befehl 
1784 \series bold
1785
1786 \backslash
1787 dfrac
1788 \series default
1789  erstellt wurde.
1790 \end_layout
1791
1792 \begin_layout Standard
1793 \align center
1794 \begin_inset Tabular
1795 <lyxtabular version="3" rows="4" columns="2">
1796 <features>
1797 <column alignment="center" valignment="top" width="0pt">
1798 <column alignment="center" valignment="top" width="0pt">
1799 <row>
1800 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1801 \begin_inset Text
1802
1803 \begin_layout Plain Layout
1804 Befehl
1805 \end_layout
1806
1807 \end_inset
1808 </cell>
1809 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
1810 \begin_inset Text
1811
1812 \begin_layout Plain Layout
1813 Ergebnis
1814 \begin_inset Note Note
1815 status collapsed
1816
1817 \begin_layout Plain Layout
1818
1819 \series bold
1820
1821 \backslash
1822 raisebox
1823 \series default
1824  dient nur als Abstandhalter.
1825 \end_layout
1826
1827 \end_inset
1828
1829
1830 \end_layout
1831
1832 \end_inset
1833 </cell>
1834 </row>
1835 <row>
1836 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1837 \begin_inset Text
1838
1839 \begin_layout Plain Layout
1840
1841 \backslash
1842 frac
1843 \begin_inset ERT
1844 status collapsed
1845
1846 \begin_layout Plain Layout
1847
1848
1849 \backslash
1850 leer 
1851 \end_layout
1852
1853 \end_inset
1854
1855 A
1856 \begin_inset Formula $\downarrow$
1857 \end_inset
1858
1859 B
1860 \end_layout
1861
1862 \end_inset
1863 </cell>
1864 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1865 \begin_inset Text
1866
1867 \begin_layout Plain Layout
1868 \begin_inset Formula $\raisebox{4.5mm}{}\frac{A}{B}\raisebox{-2.5mm}{}$
1869 \end_inset
1870
1871
1872 \end_layout
1873
1874 \end_inset
1875 </cell>
1876 </row>
1877 <row>
1878 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1879 \begin_inset Text
1880
1881 \begin_layout Plain Layout
1882
1883 \backslash
1884 dfrac
1885 \begin_inset ERT
1886 status collapsed
1887
1888 \begin_layout Plain Layout
1889
1890
1891 \backslash
1892 leer 
1893 \end_layout
1894
1895 \end_inset
1896
1897 A
1898 \begin_inset Formula $\downarrow$
1899 \end_inset
1900
1901 B
1902 \end_layout
1903
1904 \end_inset
1905 </cell>
1906 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1907 \begin_inset Text
1908
1909 \begin_layout Plain Layout
1910 \begin_inset Formula $\raisebox{7mm}{}\dfrac{A}{B}\raisebox{-4mm}{}$
1911 \end_inset
1912
1913
1914 \end_layout
1915
1916 \end_inset
1917 </cell>
1918 </row>
1919 <row>
1920 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1921 \begin_inset Text
1922
1923 \begin_layout Plain Layout
1924
1925 \backslash
1926 dfrac
1927 \begin_inset ERT
1928 status collapsed
1929
1930 \begin_layout Plain Layout
1931
1932
1933 \backslash
1934 leer 
1935 \end_layout
1936
1937 \end_inset
1938
1939 e^
1940 \begin_inset ERT
1941 status collapsed
1942
1943 \begin_layout Plain Layout
1944
1945
1946 \backslash
1947 leer 
1948 \end_layout
1949
1950 \end_inset
1951
1952
1953 \backslash
1954 frac
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 1
1968 \begin_inset Formula $\downarrow$
1969 \end_inset
1970
1971 2
1972 \begin_inset Formula $\downarrow\downarrow$
1973 \end_inset
1974
1975 3
1976 \end_layout
1977
1978 \end_inset
1979 </cell>
1980 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
1981 \begin_inset Text
1982
1983 \begin_layout Plain Layout
1984 \begin_inset Formula $\raisebox{8mm}{}\dfrac{e^{\frac{1}{2}}}{3}\raisebox{-4mm}{}$
1985 \end_inset
1986
1987
1988 \end_layout
1989
1990 \end_inset
1991 </cell>
1992 </row>
1993 </lyxtabular>
1994
1995 \end_inset
1996
1997
1998 \end_layout
1999
2000 \begin_layout Standard
2001 \begin_inset VSpace bigskip
2002 \end_inset
2003
2004
2005 \begin_inset Newpage newpage
2006 \end_inset
2007
2008 Für Mehrfachbrüche gibt es den Befehl 
2009 \series bold
2010
2011 \backslash
2012 cfrac
2013 \series default
2014
2015 \begin_inset Index
2016 status collapsed
2017
2018 \begin_layout Plain Layout
2019 Befehle ! C ! 
2020 \backslash
2021 cfrac
2022 \end_layout
2023
2024 \end_inset
2025
2026 .
2027  Dazu ein Beispiel:
2028 \begin_inset VSpace -3mm
2029 \end_inset
2030
2031
2032 \end_layout
2033
2034 \begin_layout Standard
2035 \begin_inset Formula \begin{align*}
2036 \textrm{mit \textbf{\textbackslash frac} erstellt} &  & \textrm{mit \textbf{\textbackslash cfrac} erstellt}\\
2037 \frac{A}{B+\frac{C+\frac{E}{F}}{D}} &  & \cfrac{A}{B+\cfrac{C+\cfrac{E}{F}}{D}}\end{align*}
2038
2039 \end_inset
2040
2041
2042 \end_layout
2043
2044 \begin_layout Standard
2045 Der Befehl für obiges Beispiel lautet:
2046 \end_layout
2047
2048 \begin_layout Standard
2049
2050 \series bold
2051
2052 \backslash
2053 cfrac{A
2054 \begin_inset Formula $\to$
2055 \end_inset
2056
2057
2058 \backslash
2059 {B+
2060 \backslash
2061 cfrac{C+
2062 \backslash
2063 cfrac{E
2064 \begin_inset Formula $\to$
2065 \end_inset
2066
2067
2068 \backslash
2069 {F
2070 \begin_inset Formula $\to\to$
2071 \end_inset
2072
2073
2074 \backslash
2075 {D
2076 \end_layout
2077
2078 \begin_layout Standard
2079 \begin_inset VSpace medskip
2080 \end_inset
2081
2082
2083 \end_layout
2084
2085 \begin_layout Standard
2086
2087 \series bold
2088
2089 \backslash
2090 cfrac
2091 \series default
2092  bewirkt, dass der Bruch immer in der Größe einer abgesetzten Formel erscheint,
2093  auch wenn er selbst Teil eines Bruches ist.
2094  
2095 \series bold
2096
2097 \backslash
2098 cfrac
2099 \series default
2100  besitzt folgendes Befehlsschema:
2101 \end_layout
2102
2103 \begin_layout Standard
2104
2105 \series bold
2106
2107 \backslash
2108 cfrac[Zählerposition]{Zähler}{Nenner}
2109 \end_layout
2110
2111 \begin_layout Standard
2112 Zählerposition kann 
2113 \emph on
2114 l
2115 \emph default
2116  , 
2117 \emph on
2118 c
2119 \emph default
2120  oder 
2121 \emph on
2122 r
2123 \emph default
2124  sein.
2125  Bei 
2126 \emph on
2127 l
2128 \emph default
2129  oder 
2130 \emph on
2131 r
2132 \emph default
2133  wird der Zähler links- bzw.
2134 \begin_inset space ~
2135 \end_inset
2136
2137 rechtsbündig am Bruchstrich ausgerichtet.
2138  Wird 
2139 \emph on
2140 c
2141 \emph default
2142  oder keine Position angegeben, erscheint der Zähler wie gewohnt mittig.
2143  Diese Brüche demonstrieren die verschiedenen Ausrichtungen:
2144 \begin_inset Newline newline
2145 \end_inset
2146
2147
2148 \series bold
2149
2150 \begin_inset Formula $\cfrac[l]{A}{B+C}$
2151 \end_inset
2152
2153
2154 \begin_inset Formula $\cfrac{A}{B+C}$
2155 \end_inset
2156
2157
2158 \begin_inset Formula $\cfrac[r]{A}{B+C}$
2159 \end_inset
2160
2161
2162 \end_layout
2163
2164 \begin_layout Standard
2165 \begin_inset VSpace medskip
2166 \end_inset
2167
2168 Oftmals ist es am günstigsten 
2169 \series bold
2170
2171 \backslash
2172 cfrac
2173 \series default
2174  und 
2175 \series bold
2176
2177 \backslash
2178 frac
2179 \series default
2180  zu kombinieren:
2181 \begin_inset Formula \[
2182 \cfrac{A}{B+\cfrac{C+\frac{E}{F}}{D}}\]
2183
2184 \end_inset
2185
2186
2187 \end_layout
2188
2189 \begin_layout Standard
2190 Um Brüche mit schrägem Bruchstrich zu erzeugen, kann der Befehl 
2191 \series bold
2192
2193 \backslash
2194 nicefrac
2195 \begin_inset Index
2196 status collapsed
2197
2198 \begin_layout Plain Layout
2199 Befehle ! N ! 
2200 \backslash
2201 nicefrac
2202 \end_layout
2203
2204 \end_inset
2205
2206
2207 \series default
2208  benutzt werden: 
2209 \begin_inset Formula $\nicefrac{5}{31}$
2210 \end_inset
2211
2212
2213 \end_layout
2214
2215 \begin_layout Standard
2216 Wie man eigene Brüche definiert, um die Bruchstrichdicke zu ändern, ist
2217  in 
2218 \begin_inset CommandInset ref
2219 LatexCommand ref
2220 reference "sub:Selbstdefinierte-Brüche"
2221
2222 \end_inset
2223
2224  erklärt.
2225 \end_layout
2226
2227 \begin_layout Subsection
2228 Wurzeln
2229 \begin_inset Index
2230 status collapsed
2231
2232 \begin_layout Plain Layout
2233 Wurzeln
2234 \end_layout
2235
2236 \end_inset
2237
2238
2239 \end_layout
2240
2241 \begin_layout Standard
2242 Quadratwurzeln werden mit 
2243 \series bold
2244
2245 \backslash
2246 sqrt
2247 \series default
2248
2249 \begin_inset Index
2250 status collapsed
2251
2252 \begin_layout Plain Layout
2253 Befehle ! S ! 
2254 \backslash
2255 sqrt
2256 \end_layout
2257
2258 \end_inset
2259
2260  oder dem Mathe-Werkzeugleistenknopf 
2261 \begin_inset Graphics
2262         filename ../../images/math/sqrt.png
2263         scale 85
2264
2265 \end_inset
2266
2267  gesetzt, alle anderen Wurzeln mit dem Befehl 
2268 \series bold
2269
2270 \backslash
2271 root
2272 \series default
2273
2274 \begin_inset Index
2275 status collapsed
2276
2277 \begin_layout Plain Layout
2278 Befehle ! R ! 
2279 \backslash
2280 root
2281 \end_layout
2282
2283 \end_inset
2284
2285  oder dem Mathe-Werkzeugleistenknopf 
2286 \begin_inset Graphics
2287         filename ../../images/math/root.png
2288         scale 85
2289
2290 \end_inset
2291
2292 .
2293 \end_layout
2294
2295 \begin_layout Standard
2296 \align center
2297 \begin_inset Tabular
2298 <lyxtabular version="3" rows="3" columns="2">
2299 <features>
2300 <column alignment="center" valignment="top" width="0pt">
2301 <column alignment="center" valignment="top" width="0pt">
2302 <row>
2303 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
2304 \begin_inset Text
2305
2306 \begin_layout Plain Layout
2307 Befehl
2308 \end_layout
2309
2310 \end_inset
2311 </cell>
2312 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2313 \begin_inset Text
2314
2315 \begin_layout Plain Layout
2316 Ergebnis
2317 \begin_inset Note Note
2318 status collapsed
2319
2320 \begin_layout Plain Layout
2321
2322 \series bold
2323
2324 \backslash
2325 raisebox
2326 \series default
2327  dient nur als Abstandhalter.
2328 \end_layout
2329
2330 \end_inset
2331
2332
2333 \end_layout
2334
2335 \end_inset
2336 </cell>
2337 </row>
2338 <row>
2339 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
2340 \begin_inset Text
2341
2342 \begin_layout Plain Layout
2343
2344 \backslash
2345 sqrt
2346 \begin_inset ERT
2347 status collapsed
2348
2349 \begin_layout Plain Layout
2350
2351
2352 \backslash
2353 leer 
2354 \end_layout
2355
2356 \end_inset
2357
2358 A-B
2359 \end_layout
2360
2361 \end_inset
2362 </cell>
2363 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2364 \begin_inset Text
2365
2366 \begin_layout Plain Layout
2367 \begin_inset Formula $\raisebox{4.5mm}{}\sqrt{A-B}$
2368 \end_inset
2369
2370
2371 \end_layout
2372
2373 \end_inset
2374 </cell>
2375 </row>
2376 <row>
2377 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
2378 \begin_inset Text
2379
2380 \begin_layout Plain Layout
2381
2382 \backslash
2383 root
2384 \begin_inset ERT
2385 status collapsed
2386
2387 \begin_layout Plain Layout
2388
2389
2390 \backslash
2391 leer 
2392 \end_layout
2393
2394 \end_inset
2395
2396 3
2397 \begin_inset Formula $\downarrow$
2398 \end_inset
2399
2400 A-B
2401 \end_layout
2402
2403 \end_inset
2404 </cell>
2405 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
2406 \begin_inset Text
2407
2408 \begin_layout Plain Layout
2409 \begin_inset Formula $\raisebox{4.5mm}{}\sqrt[3]{A-B}$
2410 \end_inset
2411
2412
2413 \end_layout
2414
2415 \end_inset
2416 </cell>
2417 </row>
2418 </lyxtabular>
2419
2420 \end_inset
2421
2422
2423 \end_layout
2424
2425 \begin_layout Standard
2426 Eine Quadratwurzel kann man auch mit 
2427 \series bold
2428
2429 \backslash
2430 root
2431 \series default
2432  erstellen, indem man das Feld über der Wurzel frei lässt.
2433 \end_layout
2434
2435 \begin_layout Standard
2436 Bei manchen Indizes ist der Abstand zur Wurzel zu gering, wie bei dieser
2437  Formel: 
2438 \begin_inset Formula $\sqrt[\beta]{B}$
2439 \end_inset
2440
2441
2442 \begin_inset Newline newline
2443 \end_inset
2444
2445 Das 
2446 \begin_inset Formula $\beta$
2447 \end_inset
2448
2449  berührt die Wurzel.
2450  Um dies zu verhindern, verwendet man die Befehle 
2451 \series bold
2452
2453 \backslash
2454 leftroot
2455 \series default
2456
2457 \begin_inset Index
2458 status collapsed
2459
2460 \begin_layout Plain Layout
2461 Befehle ! L ! 
2462 \backslash
2463 leftroot
2464 \end_layout
2465
2466 \end_inset
2467
2468  und 
2469 \series bold
2470
2471 \backslash
2472 uproot
2473 \series default
2474
2475 \begin_inset Index
2476 status collapsed
2477
2478 \begin_layout Plain Layout
2479 Befehle ! U ! 
2480 \backslash
2481 uproot
2482 \end_layout
2483
2484 \end_inset
2485
2486 , die folgendes Schema besitzen:
2487 \end_layout
2488
2489 \begin_layout Standard
2490
2491 \series bold
2492
2493 \backslash
2494 leftroot{Abstand}
2495 \series default
2496  bzw.
2497  
2498 \series bold
2499
2500 \backslash
2501 uproot{Abstand}
2502 \end_layout
2503
2504 \begin_layout Standard
2505 Abstand ist die Anzahl der Big Points (Einheit bp; 
2506 \begin_inset Formula $\mathrm{72\, bp=1\, inch}$
2507 \end_inset
2508
2509 ), um die der Index nach links bzw.
2510  nach oben verschoben werden soll.
2511  Die Befehle werden in den Index geschrieben.
2512  So ergibt der Befehl
2513 \begin_inset Newline newline
2514 \end_inset
2515
2516
2517 \series bold
2518
2519 \backslash
2520 root
2521 \backslash
2522 leftroot{-1
2523 \begin_inset Formula $\to$
2524 \end_inset
2525
2526
2527 \backslash
2528 uproot{2
2529 \begin_inset Formula $\to$
2530 \end_inset
2531
2532
2533 \backslash
2534 beta
2535 \begin_inset ERT
2536 status collapsed
2537
2538 \begin_layout Plain Layout
2539
2540
2541 \backslash
2542 leer 
2543 \end_layout
2544
2545 \end_inset
2546
2547
2548 \begin_inset Formula $\to$
2549 \end_inset
2550
2551 B
2552 \begin_inset Newline newline
2553 \end_inset
2554
2555
2556 \series default
2557 eine korrekt gesetzte Formel: 
2558 \begin_inset Formula $\sqrt[\leftroot{-1}\uproot{2}\beta]{B}$
2559 \end_inset
2560
2561
2562 \end_layout
2563
2564 \begin_layout Subsection
2565 Binomialkoeffizienten
2566 \begin_inset Index
2567 status collapsed
2568
2569 \begin_layout Plain Layout
2570 Binomialkoeffizienten
2571 \end_layout
2572
2573 \end_inset
2574
2575
2576 \end_layout
2577
2578 \begin_layout Standard
2579 Binomialkoeffizienten können mit dem Befehl 
2580 \series bold
2581
2582 \backslash
2583 binom
2584 \series default
2585
2586 \begin_inset Index
2587 status collapsed
2588
2589 \begin_layout Plain Layout
2590 Befehle ! B ! 
2591 \backslash
2592 binom
2593 \end_layout
2594
2595 \end_inset
2596
2597  oder über das Untermenü des Mathe-Werkzeugleistenknopfs 
2598 \begin_inset Graphics
2599         filename ../../images/math/frac-square.png
2600         scale 85
2601
2602 \end_inset
2603
2604 eingefügt werden.
2605  Analog zu Brüchen (
2606 \series bold
2607
2608 \backslash
2609 frac
2610 \series default
2611 ) gibt es außer 
2612 \series bold
2613
2614 \backslash
2615 binom
2616 \series default
2617  noch die Befehle 
2618 \series bold
2619
2620 \backslash
2621 dbinom
2622 \begin_inset Index
2623 status collapsed
2624
2625 \begin_layout Plain Layout
2626 Befehle ! D ! 
2627 \backslash
2628 dbinom
2629 \end_layout
2630
2631 \end_inset
2632
2633
2634 \series default
2635  und 
2636 \series bold
2637
2638 \backslash
2639 tbinom
2640 \series default
2641
2642 \begin_inset Index
2643 status collapsed
2644
2645 \begin_layout Plain Layout
2646 Befehle ! T ! 
2647 \backslash
2648 tbinom
2649 \end_layout
2650
2651 \end_inset
2652
2653 .
2654  Für andere Klammern um Binomialkoeffizienten gibt es die Befehle 
2655 \series bold
2656
2657 \backslash
2658 brace
2659 \series default
2660
2661 \begin_inset Index
2662 status collapsed
2663
2664 \begin_layout Plain Layout
2665 Befehle ! B ! 
2666 \backslash
2667 brace
2668 \end_layout
2669
2670 \end_inset
2671
2672  und 
2673 \series bold
2674
2675 \backslash
2676 brack
2677 \series default
2678
2679 \begin_inset Index
2680 status collapsed
2681
2682 \begin_layout Plain Layout
2683 Befehle ! B ! 
2684 \backslash
2685 brack
2686 \end_layout
2687
2688 \end_inset
2689
2690 .
2691 \end_layout
2692
2693 \begin_layout Standard
2694 \align center
2695 \begin_inset Tabular
2696 <lyxtabular version="3" rows="6" columns="2">
2697 <features>
2698 <column alignment="center" valignment="top" width="0pt">
2699 <column alignment="center" valignment="top" width="0pt">
2700 <row>
2701 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2702 \begin_inset Text
2703
2704 \begin_layout Plain Layout
2705 Befehl
2706 \end_layout
2707
2708 \end_inset
2709 </cell>
2710 <cell alignment="center" valignment="top" topline="true" bottomline="true" rightline="true" usebox="none">
2711 \begin_inset Text
2712
2713 \begin_layout Plain Layout
2714 Ergebnis
2715 \begin_inset Note Note
2716 status collapsed
2717
2718 \begin_layout Plain Layout
2719
2720 \series bold
2721
2722 \backslash
2723 raisebox
2724 \series default
2725  dient nur als Abstandhalter.
2726 \end_layout
2727
2728 \end_inset
2729
2730
2731 \end_layout
2732
2733 \end_inset
2734 </cell>
2735 </row>
2736 <row>
2737 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
2738 \begin_inset Text
2739
2740 \begin_layout Plain Layout
2741
2742 \backslash
2743 binom
2744 \begin_inset ERT
2745 status collapsed
2746
2747 \begin_layout Plain Layout
2748
2749
2750 \backslash
2751 leer 
2752 \end_layout
2753
2754 \end_inset
2755
2756 A
2757 \begin_inset Formula $\downarrow$
2758 \end_inset
2759
2760 B
2761 \end_layout
2762
2763 \end_inset
2764 </cell>
2765 <cell alignment="center" valignment="top" bottomline="true" rightline="true" usebox="none">
2766 \begin_inset Text
2767
2768 \begin_layout Plain Layout
2769 \begin_inset Formula $\raisebox{5mm}{}\binom{A}{B}\raisebox{-2.5mm}{}$
2770 \end_inset
2771
2772
2773 \end_layout
2774
2775 \end_inset
2776 </cell>
2777 </row>
2778 <row>
2779 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
2780 \begin_inset Text
2781
2782 \begin_layout Plain Layout
2783
2784 \backslash
2785 dbinom
2786 \begin_inset ERT
2787 status collapsed
2788
2789 \begin_layout Plain Layout
2790
2791
2792 \backslash
2793 leer 
2794 \end_layout
2795
2796 \end_inset
2797
2798 A
2799 \begin_inset Formula $\downarrow$
2800 \end_inset
2801
2802 B
2803 \end_layout
2804
2805 \end_inset
2806 </cell>
2807 <cell alignment="center" valignment="top" bottomline="true" rightline="true" usebox="none">
2808 \begin_inset Text
2809
2810 \begin_layout Plain Layout
2811 \begin_inset Formula $\raisebox{5mm}{}\dbinom{A}{B}\raisebox{-2.5mm}{}$
2812 \end_inset
2813
2814
2815 \end_layout
2816
2817 \end_inset
2818 </cell>
2819 </row>
2820 <row>
2821 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
2822 \begin_inset Text
2823
2824 \begin_layout Plain Layout
2825
2826 \backslash
2827 tbinom
2828 \begin_inset ERT
2829 status collapsed
2830
2831 \begin_layout Plain Layout
2832
2833
2834 \backslash
2835 leer 
2836 \end_layout
2837
2838 \end_inset
2839
2840 A
2841 \begin_inset Formula $\downarrow$
2842 \end_inset
2843
2844 B
2845 \end_layout
2846
2847 \end_inset
2848 </cell>
2849 <cell alignment="center" valignment="top" bottomline="true" rightline="true" usebox="none">
2850 \begin_inset Text
2851
2852 \begin_layout Plain Layout
2853 \begin_inset Formula $\raisebox{5mm}{}\tbinom{A}{B}\raisebox{-2.5mm}{}$
2854 \end_inset
2855
2856
2857 \end_layout
2858
2859 \end_inset
2860 </cell>
2861 </row>
2862 <row>
2863 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2864 \begin_inset Text
2865
2866 \begin_layout Plain Layout
2867
2868 \backslash
2869 brack
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" topline="true" bottomline="true" rightline="true" usebox="none">
2892 \begin_inset Text
2893
2894 \begin_layout Plain Layout
2895 \begin_inset Formula $\raisebox{5mm}{}{A \brack 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 brace
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}{}{A \brace B}\raisebox{-2.5mm}{}$
2938 \end_inset
2939
2940
2941 \end_layout
2942
2943 \end_inset
2944 </cell>
2945 </row>
2946 </lyxtabular>
2947
2948 \end_inset
2949
2950
2951 \end_layout
2952
2953 \begin_layout Subsection
2954 Fallunterscheidungen
2955 \begin_inset Index
2956 status collapsed
2957
2958 \begin_layout Plain Layout
2959 Fallunterscheidungen
2960 \end_layout
2961
2962 \end_inset
2963
2964
2965 \end_layout
2966
2967 \begin_layout Standard
2968 \align center
2969 \begin_inset Tabular
2970 <lyxtabular version="3" rows="3" columns="2">
2971 <features>
2972 <column alignment="center" valignment="top" width="0pt">
2973 <column alignment="center" valignment="top" width="0pt">
2974 <row>
2975 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
2976 \begin_inset Text
2977
2978 \begin_layout Plain Layout
2979 Befehl
2980 \end_layout
2981
2982 \end_inset
2983 </cell>
2984 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2985 \begin_inset Text
2986
2987 \begin_layout Plain Layout
2988 Ergebnis
2989 \end_layout
2990
2991 \end_inset
2992 </cell>
2993 </row>
2994 <row>
2995 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
2996 \begin_inset Text
2997
2998 \begin_layout Plain Layout
2999
3000 \backslash
3001 cases
3002 \begin_inset ERT
3003 status collapsed
3004
3005 \begin_layout Plain Layout
3006
3007
3008 \backslash
3009 leer 
3010 \end_layout
3011
3012 \end_inset
3013
3014 A
3015 \begin_inset Formula $\to$
3016 \end_inset
3017
3018 B>0
3019 \begin_inset Index
3020 status collapsed
3021
3022 \begin_layout Plain Layout
3023 Befehle ! C ! 
3024 \backslash
3025 cases
3026 \end_layout
3027
3028 \end_inset
3029
3030
3031 \end_layout
3032
3033 \end_inset
3034 </cell>
3035 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3036 \begin_inset Text
3037
3038 \begin_layout Plain Layout
3039 \begin_inset Formula $\begin{cases}
3040 A & B>0\end{cases}$
3041 \end_inset
3042
3043
3044 \end_layout
3045
3046 \end_inset
3047 </cell>
3048 </row>
3049 <row>
3050 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
3051 \begin_inset Text
3052
3053 \begin_layout Plain Layout
3054
3055 \backslash
3056 cases
3057 \begin_inset ERT
3058 status collapsed
3059
3060 \begin_layout Plain Layout
3061
3062
3063 \backslash
3064 leer 
3065 \end_layout
3066
3067 \end_inset
3068
3069 Strg-Enter
3070 \end_layout
3071
3072 \end_inset
3073 </cell>
3074 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
3075 \begin_inset Text
3076
3077 \begin_layout Plain Layout
3078 \begin_inset Formula $\begin{cases}
3079 A & \textrm{für }x>0\\
3080 B & \textrm{für }x=0\end{cases}$
3081 \end_inset
3082
3083
3084 \end_layout
3085
3086 \end_inset
3087 </cell>
3088 </row>
3089 </lyxtabular>
3090
3091 \end_inset
3092
3093
3094 \end_layout
3095
3096 \begin_layout Standard
3097 Nach der Eingabe von 
3098 \series bold
3099
3100 \backslash
3101 cases
3102 \series default
3103  oder der Benutzung des Mathe-Werkzeugleistenknopfs 
3104 \begin_inset Graphics
3105         filename ../../images/math/cases.png
3106         scale 85
3107
3108 \end_inset
3109
3110  können mit 
3111 \family sans
3112 Strg-Enter
3113 \family default
3114  oder dem Tabellen-Werkzeugleistenknopf 
3115 \begin_inset Graphics
3116         filename ../../images/tabular-feature_append-row.png
3117         scale 85
3118
3119 \end_inset
3120
3121  neue Zeilen erstellt werden.
3122 \begin_inset Foot
3123 status collapsed
3124
3125 \begin_layout Plain Layout
3126 Umlaute in Formeln, wie in obiger Tabelle, sind in 
3127 \begin_inset CommandInset ref
3128 LatexCommand ref
3129 reference "sub:Akzente-für-ein"
3130
3131 \end_inset
3132
3133  beschrieben.
3134 \end_layout
3135
3136 \end_inset
3137
3138
3139 \end_layout
3140
3141 \begin_layout Standard
3142 Der Befehl 
3143 \series bold
3144
3145 \backslash
3146 cases
3147 \series default
3148  ist auch über das Menü 
3149 \family sans
3150 Einfügen\SpecialChar \menuseparator
3151 Mathe\SpecialChar \menuseparator
3152 Cases-Umgebung
3153 \family default
3154  verfügbar.
3155 \end_layout
3156
3157 \begin_layout Subsection
3158 Verneinungen
3159 \begin_inset Index
3160 status collapsed
3161
3162 \begin_layout Plain Layout
3163 Verneinungen
3164 \end_layout
3165
3166 \end_inset
3167
3168
3169 \end_layout
3170
3171 \begin_layout Standard
3172 Durch die Eingabe von 
3173 \series bold
3174
3175 \backslash
3176 not
3177 \series default
3178
3179 \begin_inset Index
3180 status collapsed
3181
3182 \begin_layout Plain Layout
3183 Befehle ! N ! 
3184 \backslash
3185 not
3186 \end_layout
3187
3188 \end_inset
3189
3190  kann jedes beliebige Zeichen durchgestrichen dargestellt werden.
3191  Die Zeichen werden quasi mit einem Schrägstrich akzentuiert.
3192 \end_layout
3193
3194 \begin_layout Standard
3195 \align center
3196 \begin_inset Tabular
3197 <lyxtabular version="3" rows="4" columns="2">
3198 <features>
3199 <column alignment="center" valignment="top" width="0pt">
3200 <column alignment="center" valignment="top" width="0pt">
3201 <row>
3202 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
3203 \begin_inset Text
3204
3205 \begin_layout Plain Layout
3206 Befehl
3207 \end_layout
3208
3209 \end_inset
3210 </cell>
3211 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
3212 \begin_inset Text
3213
3214 \begin_layout Plain Layout
3215 Ergebnis
3216 \end_layout
3217
3218 \end_inset
3219 </cell>
3220 </row>
3221 <row>
3222 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3223 \begin_inset Text
3224
3225 \begin_layout Plain Layout
3226
3227 \backslash
3228 not=
3229 \end_layout
3230
3231 \end_inset
3232 </cell>
3233 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3234 \begin_inset Text
3235
3236 \begin_layout Plain Layout
3237 \begin_inset Formula $\not=$
3238 \end_inset
3239
3240
3241 \end_layout
3242
3243 \end_inset
3244 </cell>
3245 </row>
3246 <row>
3247 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
3248 \begin_inset Text
3249
3250 \begin_layout Plain Layout
3251
3252 \backslash
3253 not 
3254 \backslash
3255 le
3256 \end_layout
3257
3258 \end_inset
3259 </cell>
3260 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
3261 \begin_inset Text
3262
3263 \begin_layout Plain Layout
3264 \begin_inset Formula $\not\le$
3265 \end_inset
3266
3267
3268 \end_layout
3269
3270 \end_inset
3271 </cell>
3272 </row>
3273 <row>
3274 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
3275 \begin_inset Text
3276
3277 \begin_layout Plain Layout
3278
3279 \backslash
3280 not 
3281 \backslash
3282 parallel
3283 \end_layout
3284
3285 \end_inset
3286 </cell>
3287 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
3288 \begin_inset Text
3289
3290 \begin_layout Plain Layout
3291 \begin_inset Formula $\not\parallel$
3292 \end_inset
3293
3294
3295 \end_layout
3296
3297 \end_inset
3298 </cell>
3299 </row>
3300 </lyxtabular>
3301
3302 \end_inset
3303
3304
3305 \end_layout
3306
3307 \begin_layout Standard
3308 Das letzte Beispiel zeigt, dass nicht alle Verneinungen gut aussehen.
3309  Deswegen gibt es für Einige spezielle Befehle (siehe 
3310 \begin_inset CommandInset ref
3311 LatexCommand ref
3312 reference "sub:Mathematische-Symbole"
3313
3314 \end_inset
3315
3316  und 
3317 \begin_inset CommandInset ref
3318 LatexCommand ref
3319 reference "sec:Relationen"
3320
3321 \end_inset
3322
3323 ).
3324 \end_layout
3325
3326 \begin_layout Subsection
3327 Platzhalter
3328 \begin_inset CommandInset label
3329 LatexCommand label
3330 name "sub:Platzhalter"
3331
3332 \end_inset
3333
3334
3335 \begin_inset Index
3336 status collapsed
3337
3338 \begin_layout Plain Layout
3339 Platzhalter
3340 \end_layout
3341
3342 \end_inset
3343
3344
3345 \begin_inset Index
3346 status collapsed
3347
3348 \begin_layout Plain Layout
3349 chemische Zeichen ! Isotope
3350 \end_layout
3351
3352 \end_inset
3353
3354
3355 \begin_inset Index
3356 status collapsed
3357
3358 \begin_layout Plain Layout
3359 Isotope|see
3360 \begin_inset ERT
3361 status collapsed
3362
3363 \begin_layout Plain Layout
3364
3365 {
3366 \end_layout
3367
3368 \end_inset
3369
3370 chemische Zeichen
3371 \begin_inset ERT
3372 status collapsed
3373
3374 \begin_layout Plain Layout
3375
3376 }
3377 \end_layout
3378
3379 \end_inset
3380
3381
3382 \end_layout
3383
3384 \end_inset
3385
3386
3387 \end_layout
3388
3389 \begin_layout Standard
3390 Möchte man z.
3391 \begin_inset space \thinspace{}
3392 \end_inset
3393
3394 B.
3395  Isotope
3396 \begin_inset Foot
3397 status collapsed
3398
3399 \begin_layout Plain Layout
3400 Weiteres zu chemischen Symbolen steht in 
3401 \begin_inset CommandInset ref
3402 LatexCommand ref
3403 reference "sub:Chemische-Symbole-und"
3404
3405 \end_inset
3406
3407 .
3408 \end_layout
3409
3410 \end_inset
3411
3412  darstellen, tritt folgendes Problem auf:
3413 \end_layout
3414
3415 \begin_layout Standard
3416 \align center
3417 \begin_inset Tabular
3418 <lyxtabular version="3" rows="2" columns="2">
3419 <features>
3420 <column alignment="center" valignment="top" width="0pt">
3421 <column alignment="center" valignment="top" width="0pt">
3422 <row>
3423 <cell alignment="center" valignment="top" usebox="none">
3424 \begin_inset Text
3425
3426 \begin_layout Plain Layout
3427 durch Hoch- und Tiefstellen erzeugte Indizes:
3428 \end_layout
3429
3430 \end_inset
3431 </cell>
3432 <cell alignment="center" valignment="top" usebox="none">
3433 \begin_inset Text
3434
3435 \begin_layout Plain Layout
3436 \begin_inset Formula $_{9}^{19}\mathrm{F}\raisebox{-3mm}{}$
3437 \end_inset
3438
3439
3440 \end_layout
3441
3442 \end_inset
3443 </cell>
3444 </row>
3445 <row>
3446 <cell alignment="center" valignment="top" usebox="none">
3447 \begin_inset Text
3448
3449 \begin_layout Plain Layout
3450 korrekte Indizes:
3451 \end_layout
3452
3453 \end_inset
3454 </cell>
3455 <cell alignment="center" valignment="top" usebox="none">
3456 \begin_inset Text
3457
3458 \begin_layout Plain Layout
3459 \begin_inset Formula $_{\phantom{1}9}^{19}\mathrm{F}$
3460 \end_inset
3461
3462
3463 \end_layout
3464
3465 \end_inset
3466 </cell>
3467 </row>
3468 </lyxtabular>
3469
3470 \end_inset
3471
3472
3473 \begin_inset Note Note
3474 status collapsed
3475
3476 \begin_layout Plain Layout
3477
3478 \series bold
3479
3480 \backslash
3481 raisebox
3482 \series default
3483  dient nur
3484 \end_layout
3485
3486 \begin_layout Plain Layout
3487 als Abstandhalter.
3488 \end_layout
3489
3490 \end_inset
3491
3492
3493 \end_layout
3494
3495 \begin_layout Standard
3496 Der kürzere Index wird standardmäßig unter oder über das erste Zeichen des
3497  längeren Index gesetzt.
3498  Um das zu verhindern gibt es den Befehl 
3499 \series bold
3500
3501 \backslash
3502 phantom
3503 \series default
3504
3505 \begin_inset Index
3506 status collapsed
3507
3508 \begin_layout Plain Layout
3509 Befehle ! P ! 
3510 \backslash
3511 phantom
3512 \end_layout
3513
3514 \end_inset
3515
3516  oder den Mathe-Werkzeugleistenknopf
3517 \begin_inset space \thinspace{}
3518 \end_inset
3519
3520
3521 \begin_inset Foot
3522 status collapsed
3523
3524 \begin_layout Plain Layout
3525 zu finden im Untermenü des Mathe-Werkzeugleistenknopfs 
3526 \begin_inset Graphics
3527         filename ../../images/math/space.png
3528         scale 85
3529
3530 \end_inset
3531
3532
3533 \end_layout
3534
3535 \end_inset
3536
3537  
3538 \begin_inset Graphics
3539         filename ../../images/math/phantom.png
3540         scale 85
3541
3542 \end_inset
3543
3544 , der ein oder mehrere Phantomzeichen erstellt.
3545  Wenn 
3546 \series bold
3547
3548 \backslash
3549 phantom
3550 \series default
3551  eingegeben wird, erscheint ein kleines blaues Kästchen, dass von zwei roten
3552  Pfeilen überlagert wird.
3553  Die Pfeile geben an, dass die komplette Breite und Höhe des Kästcheninhalts
3554  als Leerraum erstellt wird.
3555  Phantomzeichen sind dementsprechend Platzhalter mit der Größe der angegebenen
3556  Zeichen.
3557 \end_layout
3558
3559 \begin_layout Standard
3560 \align center
3561 \begin_inset Tabular
3562 <lyxtabular version="3" rows="4" columns="2">
3563 <features>
3564 <column alignment="center" valignment="top" width="0">
3565 <column alignment="center" valignment="top" width="0">
3566 <row>
3567 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
3568 \begin_inset Text
3569
3570 \begin_layout Plain Layout
3571 Befehl
3572 \end_layout
3573
3574 \end_inset
3575 </cell>
3576 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
3577 \begin_inset Text
3578
3579 \begin_layout Plain Layout
3580 Ergebnis
3581 \begin_inset Note Note
3582 status collapsed
3583
3584 \begin_layout Plain Layout
3585
3586 \series bold
3587
3588 \backslash
3589 raisebox
3590 \series default
3591  dient nur als Abstandhalter.
3592 \end_layout
3593
3594 \end_inset
3595
3596
3597 \end_layout
3598
3599 \end_inset
3600 </cell>
3601 </row>
3602 <row>
3603 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3604 \begin_inset Text
3605
3606 \begin_layout Plain Layout
3607 ^19
3608 \begin_inset ERT
3609 status collapsed
3610
3611 \begin_layout Plain Layout
3612
3613
3614 \backslash
3615 leer 
3616 \end_layout
3617
3618 \end_inset
3619
3620 _
3621 \backslash
3622 phantom
3623 \begin_inset ERT
3624 status collapsed
3625
3626 \begin_layout Plain Layout
3627
3628
3629 \backslash
3630 leer 
3631 \end_layout
3632
3633 \end_inset
3634
3635 1
3636 \begin_inset Formula $\to$
3637 \end_inset
3638
3639 9
3640 \begin_inset ERT
3641 status collapsed
3642
3643 \begin_layout Plain Layout
3644
3645
3646 \backslash
3647 leer 
3648 \end_layout
3649
3650 \end_inset
3651
3652 F
3653 \end_layout
3654
3655 \end_inset
3656 </cell>
3657 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3658 \begin_inset Text
3659
3660 \begin_layout Plain Layout
3661 \begin_inset Formula $\raisebox{4.5mm}{}{}_{\phantom{1}9}^{19}\mathrm{F}\raisebox{-2.5mm}{}$
3662 \end_inset
3663
3664
3665 \end_layout
3666
3667 \end_inset
3668 </cell>
3669 </row>
3670 <row>
3671 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
3672 \begin_inset Text
3673
3674 \begin_layout Plain Layout
3675 ^235
3676 \begin_inset ERT
3677 status collapsed
3678
3679 \begin_layout Plain Layout
3680
3681
3682 \backslash
3683 leer 
3684 \end_layout
3685
3686 \end_inset
3687
3688 _
3689 \backslash
3690 phantom
3691 \begin_inset ERT
3692 status collapsed
3693
3694 \begin_layout Plain Layout
3695
3696
3697 \backslash
3698 leer 
3699 \end_layout
3700
3701 \end_inset
3702
3703 23
3704 \begin_inset Formula $\to$
3705 \end_inset
3706
3707 9
3708 \begin_inset ERT
3709 status collapsed
3710
3711 \begin_layout Plain Layout
3712
3713
3714 \backslash
3715 leer 
3716 \end_layout
3717
3718 \end_inset
3719
3720 F
3721 \end_layout
3722
3723 \end_inset
3724 </cell>
3725 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
3726 \begin_inset Text
3727
3728 \begin_layout Plain Layout
3729 \begin_inset Formula $\raisebox{4.5mm}{}{}_{\phantom{23}9}^{235}\mathrm{F}\raisebox{-2.5mm}{}$
3730 \end_inset
3731
3732
3733 \end_layout
3734
3735 \end_inset
3736 </cell>
3737 </row>
3738 <row>
3739 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
3740 \begin_inset Text
3741
3742 \begin_layout Plain Layout
3743
3744 \backslash
3745 Lambda^
3746 \begin_inset ERT
3747 status collapsed
3748
3749 \begin_layout Plain Layout
3750
3751
3752 \backslash
3753 leer 
3754 \end_layout
3755
3756 \end_inset
3757
3758
3759 \backslash
3760 phantom
3761 \begin_inset ERT
3762 status collapsed
3763
3764 \begin_layout Plain Layout
3765
3766
3767 \backslash
3768 leer 
3769 \end_layout
3770
3771 \end_inset
3772
3773 ii
3774 \begin_inset Formula $\to$
3775 \end_inset
3776
3777 t
3778 \begin_inset ERT
3779 status collapsed
3780
3781 \begin_layout Plain Layout
3782
3783
3784 \backslash
3785 leer 
3786 \end_layout
3787
3788 \end_inset
3789
3790 _MMt
3791 \end_layout
3792
3793 \end_inset
3794 </cell>
3795 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
3796 \begin_inset Text
3797
3798 \begin_layout Plain Layout
3799 \begin_inset Formula $\raisebox{4.5mm}{}\Lambda_{MMt}^{\phantom{ii}t}\raisebox{-2.5mm}{}$
3800 \end_inset
3801
3802
3803 \end_layout
3804
3805 \end_inset
3806 </cell>
3807 </row>
3808 </lyxtabular>
3809
3810 \end_inset
3811
3812
3813 \end_layout
3814
3815 \begin_layout Standard
3816 Des Weiteren gibt es noch die Befehle 
3817 \series bold
3818
3819 \backslash
3820 vphantom
3821 \series default
3822
3823 \begin_inset Index
3824 status collapsed
3825
3826 \begin_layout Plain Layout
3827 Befehle ! V ! 
3828 \backslash
3829 vphantom
3830 \end_layout
3831
3832 \end_inset
3833
3834  (Werkzeugleistenknopf 
3835 \begin_inset space ~
3836 \end_inset
3837
3838
3839 \begin_inset Graphics
3840         filename ../../images/math/vphantom.png
3841         scale 85
3842
3843 \end_inset
3844
3845 ) und 
3846 \series bold
3847
3848 \backslash
3849 hphantom
3850 \series default
3851
3852 \begin_inset Index
3853 status collapsed
3854
3855 \begin_layout Plain Layout
3856 Befehle ! H ! 
3857 \backslash
3858 hphantom
3859 \end_layout
3860
3861 \end_inset
3862
3863  (Werkzeugleistenknopf 
3864 \begin_inset space ~
3865 \end_inset
3866
3867
3868 \begin_inset Graphics
3869         filename ../../images/math/hphantom.png
3870         scale 85
3871
3872 \end_inset
3873
3874 ).
3875  
3876 \series bold
3877
3878 \backslash
3879 hphantom
3880 \series default
3881  erzeugt nur Platz für die maximale Höhe der im Kästchen angegebenen Zeichen,
3882  nicht jedoch für deren Breite.
3883  Bei 
3884 \series bold
3885
3886 \backslash
3887 vphantom
3888 \series default
3889  wird nur Platz mit der Breite des Kästchens erstellt.
3890  Daher haben die Kästchen der beiden Befehle nur einen roten Pfeil.
3891 \end_layout
3892
3893 \begin_layout Standard
3894 Zum Beispiel erzeugt 
3895 \series bold
3896
3897 \backslash
3898 vphantom
3899 \series default
3900
3901 \begin_inset ERT
3902 status collapsed
3903
3904 \begin_layout Plain Layout
3905
3906
3907 \backslash
3908 leer 
3909 \end_layout
3910
3911 \end_inset
3912
3913
3914 \series bold
3915 a
3916 \backslash
3917 int
3918 \series default
3919  Platz der Höhe des Integralzeichens,
3920 \begin_inset Foot
3921 status collapsed
3922
3923 \begin_layout Plain Layout
3924 Der Befehl 
3925 \series bold
3926
3927 \backslash
3928 int
3929 \series default
3930  erzeugt ein Integralzeichen, siehe 
3931 \begin_inset CommandInset ref
3932 LatexCommand ref
3933 reference "sub:Große-Operatoren"
3934
3935 \end_inset
3936
3937 .
3938 \end_layout
3939
3940 \end_inset
3941
3942  da dieses das größere Zeichen ist.
3943  Eine Beispielanwendung ist in 
3944 \begin_inset CommandInset ref
3945 LatexCommand ref
3946 reference "sub:Mehrzeilige-Klammern"
3947
3948 \end_inset
3949
3950  zu finden.
3951 \end_layout
3952
3953 \begin_layout Subsection
3954 Linien
3955 \begin_inset Index
3956 status collapsed
3957
3958 \begin_layout Plain Layout
3959 Linien
3960 \end_layout
3961
3962 \end_inset
3963
3964
3965 \begin_inset Index
3966 status collapsed
3967
3968 \begin_layout Plain Layout
3969 Formel ! unterstrichene
3970 \end_layout
3971
3972 \end_inset
3973
3974
3975 \end_layout
3976
3977 \begin_layout Standard
3978 \align center
3979 \begin_inset Tabular
3980 <lyxtabular version="3" rows="4" columns="2">
3981 <features>
3982 <column alignment="center" valignment="top" width="0pt">
3983 <column alignment="center" valignment="top" width="0pt">
3984 <row>
3985 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
3986 \begin_inset Text
3987
3988 \begin_layout Plain Layout
3989 Befehl
3990 \end_layout
3991
3992 \end_inset
3993 </cell>
3994 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
3995 \begin_inset Text
3996
3997 \begin_layout Plain Layout
3998 Ergebnis
3999 \begin_inset Note Note
4000 status collapsed
4001
4002 \begin_layout Plain Layout
4003
4004 \series bold
4005
4006 \backslash
4007 raisebox
4008 \series default
4009  dient nur als Abstandhalter.
4010 \end_layout
4011
4012 \end_inset
4013
4014
4015 \end_layout
4016
4017 \end_inset
4018 </cell>
4019 </row>
4020 <row>
4021 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
4022 \begin_inset Text
4023
4024 \begin_layout Plain Layout
4025
4026 \backslash
4027 overline
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 A+B
4041 \begin_inset Index
4042 status collapsed
4043
4044 \begin_layout Plain Layout
4045 Befehle ! O ! 
4046 \backslash
4047 overline
4048 \end_layout
4049
4050 \end_inset
4051
4052
4053 \end_layout
4054
4055 \end_inset
4056 </cell>
4057 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
4058 \begin_inset Text
4059
4060 \begin_layout Plain Layout
4061 \begin_inset Formula $\raisebox{5mm}{}\overline{A+B}$
4062 \end_inset
4063
4064
4065 \end_layout
4066
4067 \end_inset
4068 </cell>
4069 </row>
4070 <row>
4071 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
4072 \begin_inset Text
4073
4074 \begin_layout Plain Layout
4075
4076 \backslash
4077 underline
4078 \begin_inset ERT
4079 status collapsed
4080
4081 \begin_layout Plain Layout
4082
4083
4084 \backslash
4085 leer 
4086 \end_layout
4087
4088 \end_inset
4089
4090 A+B
4091 \begin_inset Index
4092 status collapsed
4093
4094 \begin_layout Plain Layout
4095 Befehle ! U ! 
4096 \backslash
4097 underline
4098 \end_layout
4099
4100 \end_inset
4101
4102
4103 \end_layout
4104
4105 \end_inset
4106 </cell>
4107 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
4108 \begin_inset Text
4109
4110 \begin_layout Plain Layout
4111 \begin_inset Formula $\underline{A+B}\raisebox{-2.5mm}{}$
4112 \end_inset
4113
4114
4115 \end_layout
4116
4117 \end_inset
4118 </cell>
4119 </row>
4120 <row>
4121 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
4122 \begin_inset Text
4123
4124 \begin_layout Plain Layout
4125
4126 \backslash
4127 overline
4128 \begin_inset ERT
4129 status collapsed
4130
4131 \begin_layout Plain Layout
4132
4133
4134 \backslash
4135 leer 
4136 \end_layout
4137
4138 \end_inset
4139
4140
4141 \backslash
4142 underline
4143 \begin_inset ERT
4144 status collapsed
4145
4146 \begin_layout Plain Layout
4147
4148
4149 \backslash
4150 leer 
4151 \end_layout
4152
4153 \end_inset
4154
4155 A+B
4156 \end_layout
4157
4158 \end_inset
4159 </cell>
4160 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
4161 \begin_inset Text
4162
4163 \begin_layout Plain Layout
4164 \begin_inset Formula $\raisebox{5mm}{}\overline{\underline{A+B}}\raisebox{-2.5mm}{}$
4165 \end_inset
4166
4167
4168 \end_layout
4169
4170 \end_inset
4171 </cell>
4172 </row>
4173 </lyxtabular>
4174
4175 \end_inset
4176
4177
4178 \end_layout
4179
4180 \begin_layout Standard
4181 Beim letzten Beispiel spielt es keine Rolle, ob man zuerst 
4182 \series bold
4183
4184 \backslash
4185 overline
4186 \series default
4187  oder 
4188 \series bold
4189
4190 \backslash
4191 underline
4192 \series default
4193  eingibt.
4194 \end_layout
4195
4196 \begin_layout Standard
4197 Will man Ergebnisse doppelt unterstreichen, verwendet man zweimal hintereinander
4198 \begin_inset Newline linebreak
4199 \end_inset
4200
4201
4202 \series bold
4203
4204 \backslash
4205 underline
4206 \series default
4207 .
4208 \end_layout
4209
4210 \begin_layout Standard
4211 Man kann bis zu 6 Striche über oder unter Zeichen setzen.
4212 \end_layout
4213
4214 \begin_layout Subsection
4215 Fortsetzungspunkte
4216 \begin_inset Index
4217 status collapsed
4218
4219 \begin_layout Plain Layout
4220 Fortsetzungspunkte
4221 \end_layout
4222
4223 \end_inset
4224
4225
4226 \end_layout
4227
4228 \begin_layout Standard
4229 Es gibt unterschiedliche Arten von Fortsetzungspunkten.
4230 \begin_inset Foot
4231 status collapsed
4232
4233 \begin_layout Plain Layout
4234 In der Mathe-Werkzeugleiste zu finden im Untermenü des Knopfs 
4235 \begin_inset Graphics
4236         filename ../../images/math/ldots.png
4237         scale 85
4238
4239 \end_inset
4240
4241
4242 \end_layout
4243
4244 \end_inset
4245
4246  Für Aufzählungen verwendet man unten sitzende Punkte (
4247 \series bold
4248
4249 \backslash
4250 ldots
4251 \series default
4252
4253 \begin_inset Index
4254 status collapsed
4255
4256 \begin_layout Plain Layout
4257 Befehle ! L ! 
4258 \backslash
4259 ldots
4260 \end_layout
4261
4262 \end_inset
4263
4264 ), während man für Operationen Punkte braucht, die auf der selben Höhe wie
4265  die Operatoren sind (
4266 \series bold
4267
4268 \backslash
4269 cdots
4270 \series default
4271
4272 \begin_inset Index
4273 status collapsed
4274
4275 \begin_layout Plain Layout
4276 Befehle ! C ! 
4277 \backslash
4278 cdots
4279 \end_layout
4280
4281 \end_inset
4282
4283 ).
4284  Verwendet man den Befehl 
4285 \series bold
4286
4287 \backslash
4288 dots
4289 \series default
4290
4291 \begin_inset Index
4292 status collapsed
4293
4294 \begin_layout Plain Layout
4295 Befehle ! D ! 
4296 \backslash
4297 dots
4298 \end_layout
4299
4300 \end_inset
4301
4302 , entscheidet LaTeX anhand des nachfolgenden Zeichens, welche Punktart verwendet
4303  wird.
4304 \begin_inset Newpage newpage
4305 \end_inset
4306
4307
4308 \end_layout
4309
4310 \begin_layout Standard
4311 \align center
4312 \begin_inset Tabular
4313 <lyxtabular version="3" rows="8" columns="2">
4314 <features>
4315 <column alignment="center" valignment="top" width="0pt">
4316 <column alignment="center" valignment="top" width="0pt">
4317 <row>
4318 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
4319 \begin_inset Text
4320
4321 \begin_layout Plain Layout
4322 Befehl
4323 \end_layout
4324
4325 \end_inset
4326 </cell>
4327 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
4328 \begin_inset Text
4329
4330 \begin_layout Plain Layout
4331 Ergebnis
4332 \end_layout
4333
4334 \end_inset
4335 </cell>
4336 </row>
4337 <row>
4338 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4339 \begin_inset Text
4340
4341 \begin_layout Plain Layout
4342 A_1
4343 \begin_inset ERT
4344 status collapsed
4345
4346 \begin_layout Plain Layout
4347
4348
4349 \backslash
4350 leer 
4351 \end_layout
4352
4353 \end_inset
4354
4355 ,
4356 \backslash
4357 dots
4358 \begin_inset ERT
4359 status collapsed
4360
4361 \begin_layout Plain Layout
4362
4363
4364 \backslash
4365 leer 
4366 \end_layout
4367
4368 \end_inset
4369
4370 ,A_n
4371 \end_layout
4372
4373 \end_inset
4374 </cell>
4375 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4376 \begin_inset Text
4377
4378 \begin_layout Plain Layout
4379 \begin_inset Formula $A_{1},\dots,A_{n}$
4380 \end_inset
4381
4382
4383 \end_layout
4384
4385 \end_inset
4386 </cell>
4387 </row>
4388 <row>
4389 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4390 \begin_inset Text
4391
4392 \begin_layout Plain Layout
4393 A_1
4394 \begin_inset ERT
4395 status collapsed
4396
4397 \begin_layout Plain Layout
4398
4399
4400 \backslash
4401 leer 
4402 \end_layout
4403
4404 \end_inset
4405
4406 +
4407 \backslash
4408 dots
4409 \begin_inset ERT
4410 status collapsed
4411
4412 \begin_layout Plain Layout
4413
4414
4415 \backslash
4416 leer 
4417 \end_layout
4418
4419 \end_inset
4420
4421 +A_n
4422 \end_layout
4423
4424 \end_inset
4425 </cell>
4426 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4427 \begin_inset Text
4428
4429 \begin_layout Plain Layout
4430 \begin_inset Formula $A_{1}+\dots+A_{n}$
4431 \end_inset
4432
4433
4434 \end_layout
4435
4436 \end_inset
4437 </cell>
4438 </row>
4439 <row>
4440 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4441 \begin_inset Text
4442
4443 \begin_layout Plain Layout
4444 A_1
4445 \begin_inset ERT
4446 status collapsed
4447
4448 \begin_layout Plain Layout
4449
4450
4451 \backslash
4452 leer 
4453 \end_layout
4454
4455 \end_inset
4456
4457 ,
4458 \backslash
4459 ldots
4460 \begin_inset ERT
4461 status collapsed
4462
4463 \begin_layout Plain Layout
4464
4465
4466 \backslash
4467 leer 
4468 \end_layout
4469
4470 \end_inset
4471
4472 ,A_n
4473 \end_layout
4474
4475 \end_inset
4476 </cell>
4477 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4478 \begin_inset Text
4479
4480 \begin_layout Plain Layout
4481 \begin_inset Formula $A_{1},\ldots,A_{n}$
4482 \end_inset
4483
4484
4485 \end_layout
4486
4487 \end_inset
4488 </cell>
4489 </row>
4490 <row>
4491 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
4492 \begin_inset Text
4493
4494 \begin_layout Plain Layout
4495 A_1
4496 \begin_inset ERT
4497 status collapsed
4498
4499 \begin_layout Plain Layout
4500
4501
4502 \backslash
4503 leer 
4504 \end_layout
4505
4506 \end_inset
4507
4508 +
4509 \backslash
4510 cdots
4511 \begin_inset ERT
4512 status collapsed
4513
4514 \begin_layout Plain Layout
4515
4516
4517 \backslash
4518 leer 
4519 \end_layout
4520
4521 \end_inset
4522
4523 +A_n
4524 \end_layout
4525
4526 \end_inset
4527 </cell>
4528 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
4529 \begin_inset Text
4530
4531 \begin_layout Plain Layout
4532 \begin_inset Formula $A_{1}+\cdots+A_{n}$
4533 \end_inset
4534
4535
4536 \end_layout
4537
4538 \end_inset
4539 </cell>
4540 </row>
4541 <row>
4542 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4543 \begin_inset Text
4544
4545 \begin_layout Plain Layout
4546
4547 \backslash
4548 vdots
4549 \end_layout
4550
4551 \end_inset
4552 </cell>
4553 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4554 \begin_inset Text
4555
4556 \begin_layout Plain Layout
4557 \begin_inset Formula $\vdots$
4558 \end_inset
4559
4560
4561 \end_layout
4562
4563 \end_inset
4564 </cell>
4565 </row>
4566 <row>
4567 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
4568 \begin_inset Text
4569
4570 \begin_layout Plain Layout
4571
4572 \backslash
4573 ddots
4574 \end_layout
4575
4576 \end_inset
4577 </cell>
4578 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
4579 \begin_inset Text
4580
4581 \begin_layout Plain Layout
4582 \begin_inset Formula $\ddots$
4583 \end_inset
4584
4585
4586 \end_layout
4587
4588 \end_inset
4589 </cell>
4590 </row>
4591 <row>
4592 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
4593 \begin_inset Text
4594
4595 \begin_layout Plain Layout
4596 3
4597 \series bold
4598 ×
4599 \series default
4600 3
4601 \begin_inset space \thinspace{}
4602 \end_inset
4603
4604 Matrix mit obigen Befehlen
4605 \end_layout
4606
4607 \end_inset
4608 </cell>
4609 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
4610 \begin_inset Text
4611
4612 \begin_layout Plain Layout
4613 \begin_inset Formula $\begin{array}{ccc}
4614 A_{11} & \cdots & A_{1m}\\
4615 \vdots & \ddots & \vdots\\
4616 A_{n1} & \cdots & A_{nm}\end{array}$
4617 \end_inset
4618
4619
4620 \end_layout
4621
4622 \end_inset
4623 </cell>
4624 </row>
4625 </lyxtabular>
4626
4627 \end_inset
4628
4629
4630 \end_layout
4631
4632 \begin_layout Standard
4633 Die im Menü 
4634 \family sans
4635 Einfügen\SpecialChar \menuseparator
4636 Sonderzeichen
4637 \family default
4638  verfügbaren Fortsetzungspunkte sind 
4639 \series bold
4640
4641 \backslash
4642 ldots
4643 \series default
4644 .
4645 \end_layout
4646
4647 \begin_layout Standard
4648 \begin_inset VSpace medskip
4649 \end_inset
4650
4651 Speziell für Matrizen gibt es Fortsetzungspunkte, die sich über mehrere
4652  Spalten erstrecken.
4653  Man erhält sie mit dem Befehl 
4654 \series bold
4655
4656 \backslash
4657 hdotsfor
4658 \series default
4659
4660 \begin_inset Index
4661 status collapsed
4662
4663 \begin_layout Plain Layout
4664 Befehle ! H ! 
4665 \backslash
4666 hdotsfor
4667 \end_layout
4668
4669 \end_inset
4670
4671 , der folgendes Schema besitzt:
4672 \end_layout
4673
4674 \begin_layout Standard
4675
4676 \series bold
4677
4678 \backslash
4679 hdotsfor[Abstand]{Anzahl der Spalten}
4680 \end_layout
4681
4682 \begin_layout Standard
4683 Anzahl der Spalten gibt an, über wie viele Spalten sich die Punkte erstrecken
4684  sollen.
4685  Abstand ist ein Faktor, der den Punktabstand festlegt.
4686 \end_layout
4687
4688 \begin_layout Standard
4689 In folgender Matrix wurde in das erste Kästchen der zweiten Zeile der Befehl
4690  
4691 \series bold
4692
4693 \backslash
4694 hdotsfor[2]{4}
4695 \series default
4696  eingegeben, um Fortsetzungspunkte mit doppelt so großem Punktabstand wie
4697  beim Befehl 
4698 \series bold
4699
4700 \backslash
4701 dots
4702 \series default
4703  zu erhalten:
4704 \begin_inset Formula \[
4705 \left(\begin{array}{cccc}
4706 A & B & C & D\\
4707 \hdotsfor[2]{4}\\
4708 q & w & e & r\end{array}\right)\]
4709
4710 \end_inset
4711
4712 Es ist zu beachten, dass die Matrixfelder über die sich die Punkte erstrecken
4713  sollen leer sein müssen, ansonsten kommt es zu LaTeX-Fehlern.
4714 \end_layout
4715
4716 \begin_layout Standard
4717 \begin_inset VSpace bigskip
4718 \end_inset
4719
4720 Des Weiteren kann man mit dem Befehl 
4721 \series bold
4722
4723 \backslash
4724 dotfill
4725 \series default
4726
4727 \begin_inset Index
4728 status collapsed
4729
4730 \begin_layout Plain Layout
4731 Befehle ! D ! 
4732 \backslash
4733 dotfill
4734 \end_layout
4735
4736 \end_inset
4737
4738  den Rest einer Zeile mit Punkten füllen.
4739  Die Wirkungsweise des Befehls entspricht der von 
4740 \series bold
4741
4742 \backslash
4743 hfill
4744 \series default
4745 , siehe 
4746 \begin_inset CommandInset ref
4747 LatexCommand ref
4748 reference "sub:Variabler-Leerraum"
4749
4750 \end_inset
4751
4752 .
4753 \end_layout
4754
4755 \begin_layout Standard
4756 Z.
4757 \begin_inset space \thinspace{}
4758 \end_inset
4759
4760 B.
4761  ergibt der Befehl 
4762 \series bold
4763 A
4764 \backslash
4765 dotfill
4766 \begin_inset ERT
4767 status collapsed
4768
4769 \begin_layout Plain Layout
4770
4771
4772 \backslash
4773 leer 
4774 \end_layout
4775
4776 \end_inset
4777
4778 B
4779 \end_layout
4780
4781 \begin_layout Standard
4782 \begin_inset Formula $A\dotfill B$
4783 \end_inset
4784
4785
4786 \end_layout
4787
4788 \begin_layout Standard
4789 Analog dazu gibt es für eine Linie den Befehl 
4790 \series bold
4791
4792 \backslash
4793 hrulefill
4794 \series default
4795
4796 \begin_inset Index
4797 status collapsed
4798
4799 \begin_layout Plain Layout
4800 Befehle ! H ! 
4801 \backslash
4802 hrulefill
4803 \end_layout
4804
4805 \end_inset
4806
4807 :
4808 \end_layout
4809
4810 \begin_layout Standard
4811 \begin_inset Formula $A\hrulefill B$
4812 \end_inset
4813
4814
4815 \end_layout
4816
4817 \begin_layout Standard
4818 Um die Befehle für Text zu verwenden, müssen sie im TeX-Modus eingegeben
4819  werden.
4820 \end_layout
4821
4822 \begin_layout Section
4823 Matrizen
4824 \begin_inset CommandInset label
4825 LatexCommand label
4826 name "sec:Matrizen"
4827
4828 \end_inset
4829
4830
4831 \begin_inset Index
4832 status collapsed
4833
4834 \begin_layout Plain Layout
4835 Matrizen
4836 \end_layout
4837
4838 \end_inset
4839
4840
4841 \end_layout
4842
4843 \begin_layout Standard
4844 Matrizen können über den Mathe-Werkzeugleistenknopf
4845 \family sans
4846  
4847 \family default
4848
4849 \begin_inset Graphics
4850         filename ../../images/dialog-show_mathmatrix.png
4851         scale 85
4852
4853 \end_inset
4854
4855  oder das Menü 
4856 \family sans
4857 Einfügen\SpecialChar \menuseparator
4858 Mathe\SpecialChar \menuseparator
4859 Matrix
4860 \family default
4861  eingefügt werden.
4862  Sie werden nach der Spalten- und Zeilenanzahl und der Ausrichtung gefragt.
4863  Die vertikale Ausrichtung ist dabei nur bei Matrizen in eingebetteten Formeln
4864  von Bedeutung:
4865 \end_layout
4866
4867 \begin_layout Standard
4868 Die erste Matrix ist oben 
4869 \begin_inset Formula $\begin{array}[t]{cccc}
4870 A & D & G & J\\
4871 B & E & H & K\\
4872 C & F & I & L\end{array}$
4873 \end_inset
4874
4875 , die zweite mittig 
4876 \begin_inset Formula $\begin{array}{cccc}
4877 A & D & G & J\\
4878 B & E & H & K\\
4879 C & F & I & L\end{array}$
4880 \end_inset
4881
4882  und die dritte unten 
4883 \begin_inset Formula $\begin{array}[b]{cccc}
4884 A & D & G & J\\
4885 B & E & H & K\\
4886 C & F & I & L\end{array}$
4887 \end_inset
4888
4889  ausgerichtet.
4890 \end_layout
4891
4892 \begin_layout Standard
4893 Die horizontale Ausrichtung gibt an, wie die Spalteneinträge ausgerichtet
4894  werden sollen.
4895  Dazu wird für jede Spalte ein Buchstabe eingegeben.
4896  
4897 \emph on
4898 l
4899 \emph default
4900  steht für linksbündig, 
4901 \emph on
4902 c
4903 \emph default
4904  für mittig und 
4905 \emph on
4906 r
4907 \emph default
4908  für rechtsbündig.
4909  Möchte man z.
4910 \begin_inset space \thinspace{}
4911 \end_inset
4912
4913 B.
4914  eine 4
4915 \series bold
4916 ×
4917 \series default
4918 4
4919 \begin_inset space ~
4920 \end_inset
4921
4922 Matrix erstellen, bei der der Inhalt der ersten Spalte linksbündig, der
4923  Inhalt der zweiten und dritten mittig und der Inhalt der letzten rechtsbündig
4924  ausgerichtet ist, gibt man für die horizontale Ausrichtung 
4925 \series bold
4926 lccr
4927 \series default
4928  an.
4929  Normalerweise sind in einer Matrix alle Spalteninhalte zentriert, weswegen
4930  die Voreinstellung für jede Spalte ein 
4931 \series bold
4932 c
4933 \series default
4934  ist.
4935 \end_layout
4936
4937 \begin_layout Standard
4938 Horizontale Ausrichtung:
4939 \end_layout
4940
4941 \begin_layout Standard
4942
4943 \series bold
4944 lll
4945 \series default
4946  : 
4947 \begin_inset Formula $\begin{array}{lll}
4948 10000 & D & G\\
4949 B & 10000 & H\\
4950 C & F & 10000\end{array}$
4951 \end_inset
4952
4953  , 
4954 \series bold
4955 ccc
4956 \series default
4957  : 
4958 \begin_inset Formula $\begin{array}{ccc}
4959 10000 & D & G\\
4960 B & 10000 & H\\
4961 C & F & 10000\end{array}$
4962 \end_inset
4963
4964  , 
4965 \series bold
4966 rrr
4967 \series default
4968  : 
4969 \begin_inset Formula $\begin{array}{rrr}
4970 10000 & D & G\\
4971 B & 10000 & H\\
4972 C & F & 10000\end{array}$
4973 \end_inset
4974
4975
4976 \end_layout
4977
4978 \begin_layout Standard
4979 Um nachträglich Zeilen und Spalten hinzuzufügen oder zu entfernen, kann
4980  man die Mathe-Werkzeugleistenknöpfe 
4981 \begin_inset Graphics
4982         filename ../../images/tabular-feature_append-row.png
4983         scale 85
4984
4985 \end_inset
4986
4987
4988 \begin_inset Graphics
4989         filename ../../images/tabular-feature_delete-row.png
4990         scale 85
4991
4992 \end_inset
4993
4994 , usw.
4995 \begin_inset space ~
4996 \end_inset
4997
4998 oder das Menü 
4999 \family sans
5000 Bearbeiten\SpecialChar \menuseparator
5001 Zeilen & Spalten
5002 \family default
5003  verwenden.
5004  Neue Zeilen können auch mit 
5005 \family sans
5006 Strg-Enter
5007 \family default
5008  erstellt werden.
5009 \end_layout
5010
5011 \begin_layout Standard
5012 \begin_inset VSpace bigskip
5013 \end_inset
5014
5015 Klammern um eine Matrix können entweder mit den Befehlen 
5016 \series bold
5017
5018 \backslash
5019 left
5020 \series default
5021
5022 \begin_inset Index
5023 status collapsed
5024
5025 \begin_layout Plain Layout
5026 Befehle ! L ! 
5027 \backslash
5028 left
5029 \end_layout
5030
5031 \end_inset
5032
5033  und 
5034 \series bold
5035
5036 \backslash
5037 right
5038 \series default
5039
5040 \begin_inset Index
5041 status collapsed
5042
5043 \begin_layout Plain Layout
5044 Befehle ! R ! 
5045 \backslash
5046 right
5047 \end_layout
5048
5049 \end_inset
5050
5051  erstellt werden (Tastenkürzel 
5052 \family sans
5053 Alt-m
5054 \begin_inset space ~
5055 \end_inset
5056
5057 Klammer
5058 \family default
5059 ), siehe 
5060 \begin_inset CommandInset ref
5061 LatexCommand ref
5062 reference "sub:Automatische-Klammergrößen"
5063
5064 \end_inset
5065
5066 , oder man verwendet folgende Befehle:
5067 \begin_inset VSpace bigskip
5068 \end_inset
5069
5070
5071 \end_layout
5072
5073 \begin_layout Standard
5074 \begin_inset space \hfill{}
5075 \end_inset
5076
5077
5078 \begin_inset Tabular
5079 <lyxtabular version="3" rows="4" columns="2">
5080 <features>
5081 <column alignment="center" valignment="top" width="0">
5082 <column alignment="center" valignment="top" width="0">
5083 <row>
5084 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
5085 \begin_inset Text
5086
5087 \begin_layout Plain Layout
5088 Befehl
5089 \end_layout
5090
5091 \end_inset
5092 </cell>
5093 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
5094 \begin_inset Text
5095
5096 \begin_layout Plain Layout
5097 Ergebnis
5098 \end_layout
5099
5100 \end_inset
5101 </cell>
5102 </row>
5103 <row>
5104 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5105 \begin_inset Text
5106
5107 \begin_layout Plain Layout
5108
5109 \backslash
5110 bmatrix
5111 \begin_inset ERT
5112 status collapsed
5113
5114 \begin_layout Plain Layout
5115
5116
5117 \backslash
5118 leer 
5119 \end_layout
5120
5121 \end_inset
5122
5123 2
5124 \series bold
5125 ×
5126 \series default
5127 2
5128 \begin_inset space \thinspace{}
5129 \end_inset
5130
5131 Matrix
5132 \end_layout
5133
5134 \end_inset
5135 </cell>
5136 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5137 \begin_inset Text
5138
5139 \begin_layout Plain Layout
5140 \begin_inset Formula $\raisebox{7.5mm}{}\begin{bmatrix}\begin{array}{cc}
5141 0 & \textrm{-}\mathrm{i}\\
5142 \mathrm{i} & 0\end{array}\end{bmatrix}\raisebox{-5.3mm}{}$
5143 \end_inset
5144
5145
5146 \end_layout
5147
5148 \end_inset
5149 </cell>
5150 </row>
5151 <row>
5152 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5153 \begin_inset Text
5154
5155 \begin_layout Plain Layout
5156
5157 \backslash
5158 Bmatrix
5159 \begin_inset ERT
5160 status collapsed
5161
5162 \begin_layout Plain Layout
5163
5164
5165 \backslash
5166 leer 
5167 \end_layout
5168
5169 \end_inset
5170
5171 2
5172 \series bold
5173 ×
5174 \series default
5175 2
5176 \begin_inset space \thinspace{}
5177 \end_inset
5178
5179 Matrix
5180 \end_layout
5181
5182 \end_inset
5183 </cell>
5184 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5185 \begin_inset Text
5186
5187 \begin_layout Plain Layout
5188 \begin_inset Formula $\raisebox{7.5mm}{}\begin{Bmatrix}\begin{array}{cc}
5189 0 & \textrm{-}\mathrm{i}\\
5190 \mathrm{i} & 0\end{array}\end{Bmatrix}\raisebox{-5.3mm}{}$
5191 \end_inset
5192
5193
5194 \end_layout
5195
5196 \end_inset
5197 </cell>
5198 </row>
5199 <row>
5200 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
5201 \begin_inset Text
5202
5203 \begin_layout Plain Layout
5204
5205 \backslash
5206 pmatrix
5207 \begin_inset ERT
5208 status collapsed
5209
5210 \begin_layout Plain Layout
5211
5212
5213 \backslash
5214 leer 
5215 \end_layout
5216
5217 \end_inset
5218
5219 2
5220 \series bold
5221 ×
5222 \series default
5223 2
5224 \begin_inset space \thinspace{}
5225 \end_inset
5226
5227 Matrix
5228 \end_layout
5229
5230 \end_inset
5231 </cell>
5232 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
5233 \begin_inset Text
5234
5235 \begin_layout Plain Layout
5236 \begin_inset Formula $\raisebox{7.5mm}{}\begin{pmatrix}\begin{array}{cc}
5237 0 & \textrm{-}\mathrm{i}\\
5238 \mathrm{i} & 0\end{array}\end{pmatrix}\raisebox{-5.3mm}{}$
5239 \end_inset
5240
5241
5242 \end_layout
5243
5244 \end_inset
5245 </cell>
5246 </row>
5247 </lyxtabular>
5248
5249 \end_inset
5250
5251
5252 \begin_inset space \hfill{}
5253 \end_inset
5254
5255
5256 \begin_inset Tabular
5257 <lyxtabular version="3" rows="4" columns="2">
5258 <features>
5259 <column alignment="center" valignment="top" width="0">
5260 <column alignment="center" valignment="top" width="0">
5261 <row>
5262 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
5263 \begin_inset Text
5264
5265 \begin_layout Plain Layout
5266 Befehl
5267 \end_layout
5268
5269 \end_inset
5270 </cell>
5271 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
5272 \begin_inset Text
5273
5274 \begin_layout Plain Layout
5275 Ergebnis
5276 \end_layout
5277
5278 \end_inset
5279 </cell>
5280 </row>
5281 <row>
5282 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5283 \begin_inset Text
5284
5285 \begin_layout Plain Layout
5286
5287 \backslash
5288 vmatrix
5289 \begin_inset ERT
5290 status collapsed
5291
5292 \begin_layout Plain Layout
5293
5294
5295 \backslash
5296 leer 
5297 \end_layout
5298
5299 \end_inset
5300
5301 2
5302 \series bold
5303 ×
5304 \series default
5305 2
5306 \begin_inset space \thinspace{}
5307 \end_inset
5308
5309 Matrix
5310 \end_layout
5311
5312 \end_inset
5313 </cell>
5314 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5315 \begin_inset Text
5316
5317 \begin_layout Plain Layout
5318 \begin_inset Formula $\raisebox{7.5mm}{}\begin{vmatrix}\begin{array}{cc}
5319 0 & \textrm{-}\mathrm{i}\\
5320 \mathrm{i} & 0\end{array}\end{vmatrix}\raisebox{-5.3mm}{}$
5321 \end_inset
5322
5323
5324 \end_layout
5325
5326 \end_inset
5327 </cell>
5328 </row>
5329 <row>
5330 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
5331 \begin_inset Text
5332
5333 \begin_layout Plain Layout
5334
5335 \backslash
5336 Vmatrix
5337 \begin_inset ERT
5338 status collapsed
5339
5340 \begin_layout Plain Layout
5341
5342
5343 \backslash
5344 leer 
5345 \end_layout
5346
5347 \end_inset
5348
5349 2
5350 \series bold
5351 ×
5352 \series default
5353 2
5354 \begin_inset space \thinspace{}
5355 \end_inset
5356
5357 Matrix
5358 \end_layout
5359
5360 \end_inset
5361 </cell>
5362 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
5363 \begin_inset Text
5364
5365 \begin_layout Plain Layout
5366 \begin_inset Formula $\raisebox{7.5mm}{}\begin{Vmatrix}\begin{array}{cc}
5367 0 & \textrm{-}\mathrm{i}\\
5368 \mathrm{i} & 0\end{array}\end{Vmatrix}\raisebox{-5.3mm}{}$
5369 \end_inset
5370
5371
5372 \end_layout
5373
5374 \end_inset
5375 </cell>
5376 </row>
5377 <row>
5378 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
5379 \begin_inset Text
5380
5381 \begin_layout Plain Layout
5382
5383 \backslash
5384 matrix
5385 \begin_inset ERT
5386 status collapsed
5387
5388 \begin_layout Plain Layout
5389
5390
5391 \backslash
5392 leer 
5393 \end_layout
5394
5395 \end_inset
5396
5397 2
5398 \series bold
5399 ×
5400 \series default
5401 2
5402 \begin_inset space \thinspace{}
5403 \end_inset
5404
5405 Matrix
5406 \end_layout
5407
5408 \end_inset
5409 </cell>
5410 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
5411 \begin_inset Text
5412
5413 \begin_layout Plain Layout
5414 \begin_inset Formula $\raisebox{7.5mm}{}\begin{matrix}\begin{array}{cc}
5415 0 & \textrm{-}\mathrm{i}\\
5416 \mathrm{i} & 0\end{array}\end{matrix}\raisebox{-5.3mm}{}$
5417 \end_inset
5418
5419
5420 \end_layout
5421
5422 \end_inset
5423 </cell>
5424 </row>
5425 </lyxtabular>
5426
5427 \end_inset
5428
5429
5430 \begin_inset space \hfill{}
5431 \end_inset
5432
5433
5434 \end_layout
5435
5436 \begin_layout Standard
5437 \begin_inset VSpace medskip
5438 \end_inset
5439
5440 Wurde z.
5441 \begin_inset space \thinspace{}
5442 \end_inset
5443
5444 B.
5445  
5446 \series bold
5447
5448 \backslash
5449 vmatrix
5450 \series default
5451  eingegeben, erscheint ein blaues Kästchen zwischen zwei senkrechten Strichen,
5452  in das die Matrix eingefügt wird.
5453 \end_layout
5454
5455 \begin_layout Standard
5456 \begin_inset VSpace bigskip
5457 \end_inset
5458
5459 Da alle mehrzeiligen Formeln Matrizen sind, kann man die in 
5460 \begin_inset CommandInset ref
5461 LatexCommand ref
5462 reference "sub:Spaltenabstand"
5463
5464 \end_inset
5465
5466  beschriebene Länge 
5467 \series bold
5468
5469 \backslash
5470 arraycolsep
5471 \series default
5472
5473 \begin_inset Index
5474 status collapsed
5475
5476 \begin_layout Plain Layout
5477 Befehle ! A ! 
5478 \backslash
5479 arraycolsep
5480 \end_layout
5481
5482 \end_inset
5483
5484  auch zur Änderung des Spaltenabstands von Matrizen verwenden.
5485 \end_layout
5486
5487 \begin_layout Standard
5488 Möchte man den Zeilenabstand ändern, verwendet man den Befehl 
5489 \series bold
5490
5491 \backslash
5492 arraystretch
5493 \series default
5494
5495 \begin_inset Index
5496 status collapsed
5497
5498 \begin_layout Plain Layout
5499 Befehle ! A ! 
5500 \backslash
5501 arraystretch
5502 \end_layout
5503
5504 \end_inset
5505
5506 .
5507  Dieser wird folgendermaßen benutzt:
5508 \end_layout
5509
5510 \begin_layout Standard
5511
5512 \series bold
5513
5514 \backslash
5515 renewcommand{
5516 \backslash
5517 arraystretch}{Dehnungsfaktor}
5518 \begin_inset Index
5519 status collapsed
5520
5521 \begin_layout Plain Layout
5522 Befehle ! R ! 
5523 \backslash
5524 renewcommand
5525 \end_layout
5526
5527 \end_inset
5528
5529
5530 \end_layout
5531
5532 \begin_layout Standard
5533 Der Befehl 
5534 \series bold
5535
5536 \backslash
5537 renewcommand
5538 \series default
5539  weist dabei dem vordefinierten Befehl 
5540 \series bold
5541
5542 \backslash
5543 arraystretch
5544 \series default
5545  den Dehnungsfaktor zu.
5546  Möchte man z.
5547 \begin_inset space \thinspace{}
5548 \end_inset
5549
5550 B.
5551  den Zeilenabstand verdoppeln, gibt man für den Faktor eine 2 an.
5552  Dieser wird dann für alle folgenden Matrizen verwendet.
5553  Um wieder zum ursprünglichen Abstand zurückzukehren, weist man 
5554 \series bold
5555
5556 \backslash
5557 arraystretch
5558 \series default
5559  den Faktor 1 zu.
5560 \end_layout
5561
5562 \begin_layout Standard
5563 Um Matrizen in eine Textzeile zu setzen, benutzt man den Befehl 
5564 \series bold
5565
5566 \backslash
5567 smallmatrix
5568 \series default
5569
5570 \begin_inset Index
5571 status collapsed
5572
5573 \begin_layout Plain Layout
5574 Befehle ! S ! 
5575 \backslash
5576 smallmatrix
5577 \end_layout
5578
5579 \end_inset
5580
5581 .
5582  Gibt man ihn in eine Formel ein, erscheint ein blaues Kästchen mit zwei
5583  gestrichelten Linien.
5584  In dieses Kästchen wird die Matrix eingegeben.
5585  Man verwendet stattdessen das Menü 
5586 \family sans
5587 Bearbeiten\SpecialChar \menuseparator
5588 Zeilen
5589 \begin_inset space ~
5590 \end_inset
5591
5592 &
5593 \begin_inset space ~
5594 \end_inset
5595
5596 Spalten
5597 \family default
5598  oder die Mathe-Werkzeugleiste um neue Spalten zu erstellen.
5599  Neue Zeilen können auch mit 
5600 \family sans
5601 Strg-Enter
5602 \family default
5603  erstellt werden.
5604 \end_layout
5605
5606 \begin_layout Standard
5607 Dies ist eine Matrix 
5608 \begin_inset Formula $\left(\begin{smallmatrix}A & B\\
5609 C & D\end{smallmatrix}\right)$
5610 \end_inset
5611
5612  in einer Textzeile.
5613 \end_layout
5614
5615 \begin_layout Section
5616 Klammern und Begrenzungszeichen
5617 \begin_inset Index
5618 status collapsed
5619
5620 \begin_layout Plain Layout
5621 Klammern
5622 \end_layout
5623
5624 \end_inset
5625
5626
5627 \begin_inset Index
5628 status collapsed
5629
5630 \begin_layout Plain Layout
5631 Begrenzungszeichen
5632 \end_layout
5633
5634 \end_inset
5635
5636
5637 \end_layout
5638
5639 \begin_layout Subsection
5640 Vertikale Klammern und Begrenzungszeichen
5641 \begin_inset Index
5642 status collapsed
5643
5644 \begin_layout Plain Layout
5645 Klammern ! vertikale
5646 \end_layout
5647
5648 \end_inset
5649
5650
5651 \end_layout
5652
5653 \begin_layout Standard
5654 \begin_inset space \hfill{}
5655 \end_inset
5656
5657
5658 \begin_inset Tabular
5659 <lyxtabular version="3" rows="9" columns="2">
5660 <features>
5661 <column alignment="center" valignment="top" width="0pt">
5662 <column alignment="center" valignment="top" width="0pt">
5663 <row>
5664 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
5665 \begin_inset Text
5666
5667 \begin_layout Plain Layout
5668 Befehl
5669 \end_layout
5670
5671 \end_inset
5672 </cell>
5673 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
5674 \begin_inset Text
5675
5676 \begin_layout Plain Layout
5677 Ergebnis
5678 \end_layout
5679
5680 \end_inset
5681 </cell>
5682 </row>
5683 <row>
5684 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5685 \begin_inset Text
5686
5687 \begin_layout Plain Layout
5688 (
5689 \end_layout
5690
5691 \end_inset
5692 </cell>
5693 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5694 \begin_inset Text
5695
5696 \begin_layout Plain Layout
5697 \begin_inset Formula $($
5698 \end_inset
5699
5700
5701 \end_layout
5702
5703 \end_inset
5704 </cell>
5705 </row>
5706 <row>
5707 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5708 \begin_inset Text
5709
5710 \begin_layout Plain Layout
5711 {
5712 \end_layout
5713
5714 \end_inset
5715 </cell>
5716 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5717 \begin_inset Text
5718
5719 \begin_layout Plain Layout
5720 \begin_inset Formula $\{$
5721 \end_inset
5722
5723
5724 \end_layout
5725
5726 \end_inset
5727 </cell>
5728 </row>
5729 <row>
5730 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5731 \begin_inset Text
5732
5733 \begin_layout Plain Layout
5734 [
5735 \end_layout
5736
5737 \end_inset
5738 </cell>
5739 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5740 \begin_inset Text
5741
5742 \begin_layout Plain Layout
5743 \begin_inset Formula $[$
5744 \end_inset
5745
5746
5747 \end_layout
5748
5749 \end_inset
5750 </cell>
5751 </row>
5752 <row>
5753 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5754 \begin_inset Text
5755
5756 \begin_layout Plain Layout
5757
5758 \backslash
5759 langle
5760 \end_layout
5761
5762 \end_inset
5763 </cell>
5764 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5765 \begin_inset Text
5766
5767 \begin_layout Plain Layout
5768 \begin_inset Formula $\langle$
5769 \end_inset
5770
5771
5772 \end_layout
5773
5774 \end_inset
5775 </cell>
5776 </row>
5777 <row>
5778 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5779 \begin_inset Text
5780
5781 \begin_layout Plain Layout
5782
5783 \backslash
5784 lceil
5785 \end_layout
5786
5787 \end_inset
5788 </cell>
5789 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5790 \begin_inset Text
5791
5792 \begin_layout Plain Layout
5793 \begin_inset Formula $\lceil$
5794 \end_inset
5795
5796
5797 \end_layout
5798
5799 \end_inset
5800 </cell>
5801 </row>
5802 <row>
5803 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5804 \begin_inset Text
5805
5806 \begin_layout Plain Layout
5807
5808 \backslash
5809 lfloor
5810 \end_layout
5811
5812 \end_inset
5813 </cell>
5814 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5815 \begin_inset Text
5816
5817 \begin_layout Plain Layout
5818 \begin_inset Formula $\lfloor$
5819 \end_inset
5820
5821
5822 \end_layout
5823
5824 \end_inset
5825 </cell>
5826 </row>
5827 <row>
5828 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5829 \begin_inset Text
5830
5831 \begin_layout Plain Layout
5832 /
5833 \end_layout
5834
5835 \end_inset
5836 </cell>
5837 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5838 \begin_inset Text
5839
5840 \begin_layout Plain Layout
5841 \begin_inset Formula $/$
5842 \end_inset
5843
5844
5845 \end_layout
5846
5847 \end_inset
5848 </cell>
5849 </row>
5850 <row>
5851 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
5852 \begin_inset Text
5853
5854 \begin_layout Plain Layout
5855 |
5856 \end_layout
5857
5858 \end_inset
5859 </cell>
5860 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
5861 \begin_inset Text
5862
5863 \begin_layout Plain Layout
5864 \begin_inset Formula $|$
5865 \end_inset
5866
5867
5868 \end_layout
5869
5870 \end_inset
5871 </cell>
5872 </row>
5873 </lyxtabular>
5874
5875 \end_inset
5876
5877
5878 \begin_inset space \hfill{}
5879 \end_inset
5880
5881
5882 \begin_inset Tabular
5883 <lyxtabular version="3" rows="9" columns="2">
5884 <features>
5885 <column alignment="center" valignment="top" width="0pt">
5886 <column alignment="center" valignment="top" width="0pt">
5887 <row>
5888 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
5889 \begin_inset Text
5890
5891 \begin_layout Plain Layout
5892 Befehl
5893 \end_layout
5894
5895 \end_inset
5896 </cell>
5897 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
5898 \begin_inset Text
5899
5900 \begin_layout Plain Layout
5901 Ergebnis
5902 \end_layout
5903
5904 \end_inset
5905 </cell>
5906 </row>
5907 <row>
5908 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5909 \begin_inset Text
5910
5911 \begin_layout Plain Layout
5912 )
5913 \end_layout
5914
5915 \end_inset
5916 </cell>
5917 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5918 \begin_inset Text
5919
5920 \begin_layout Plain Layout
5921 \begin_inset Formula $)$
5922 \end_inset
5923
5924
5925 \end_layout
5926
5927 \end_inset
5928 </cell>
5929 </row>
5930 <row>
5931 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5932 \begin_inset Text
5933
5934 \begin_layout Plain Layout
5935 }
5936 \end_layout
5937
5938 \end_inset
5939 </cell>
5940 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5941 \begin_inset Text
5942
5943 \begin_layout Plain Layout
5944 \begin_inset Formula $\}$
5945 \end_inset
5946
5947
5948 \end_layout
5949
5950 \end_inset
5951 </cell>
5952 </row>
5953 <row>
5954 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5955 \begin_inset Text
5956
5957 \begin_layout Plain Layout
5958 ]
5959 \end_layout
5960
5961 \end_inset
5962 </cell>
5963 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5964 \begin_inset Text
5965
5966 \begin_layout Plain Layout
5967 \begin_inset Formula $]$
5968 \end_inset
5969
5970
5971 \end_layout
5972
5973 \end_inset
5974 </cell>
5975 </row>
5976 <row>
5977 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5978 \begin_inset Text
5979
5980 \begin_layout Plain Layout
5981
5982 \backslash
5983 rangle
5984 \end_layout
5985
5986 \end_inset
5987 </cell>
5988 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5989 \begin_inset Text
5990
5991 \begin_layout Plain Layout
5992 \begin_inset Formula $\rangle$
5993 \end_inset
5994
5995
5996 \end_layout
5997
5998 \end_inset
5999 </cell>
6000 </row>
6001 <row>
6002 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6003 \begin_inset Text
6004
6005 \begin_layout Plain Layout
6006
6007 \backslash
6008 rceil
6009 \end_layout
6010
6011 \end_inset
6012 </cell>
6013 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6014 \begin_inset Text
6015
6016 \begin_layout Plain Layout
6017 \begin_inset Formula $\rceil$
6018 \end_inset
6019
6020
6021 \end_layout
6022
6023 \end_inset
6024 </cell>
6025 </row>
6026 <row>
6027 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6028 \begin_inset Text
6029
6030 \begin_layout Plain Layout
6031
6032 \backslash
6033 rfloor
6034 \end_layout
6035
6036 \end_inset
6037 </cell>
6038 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6039 \begin_inset Text
6040
6041 \begin_layout Plain Layout
6042 \begin_inset Formula $\rfloor$
6043 \end_inset
6044
6045
6046 \end_layout
6047
6048 \end_inset
6049 </cell>
6050 </row>
6051 <row>
6052 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6053 \begin_inset Text
6054
6055 \begin_layout Plain Layout
6056
6057 \backslash
6058
6059 \backslash
6060
6061 \end_layout
6062
6063 \end_inset
6064 </cell>
6065 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6066 \begin_inset Text
6067
6068 \begin_layout Plain Layout
6069 \begin_inset Formula $\backslash$
6070 \end_inset
6071
6072
6073 \end_layout
6074
6075 \end_inset
6076 </cell>
6077 </row>
6078 <row>
6079 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
6080 \begin_inset Text
6081
6082 \begin_layout Plain Layout
6083
6084 \backslash
6085 |
6086 \end_layout
6087
6088 \end_inset
6089 </cell>
6090 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6091 \begin_inset Text
6092
6093 \begin_layout Plain Layout
6094 \begin_inset Formula $\|$
6095 \end_inset
6096
6097
6098 \end_layout
6099
6100 \end_inset
6101 </cell>
6102 </row>
6103 </lyxtabular>
6104
6105 \end_inset
6106
6107
6108 \begin_inset space \hfill{}
6109 \end_inset
6110
6111
6112 \end_layout
6113
6114 \begin_layout Standard
6115
6116 \series medium
6117 \begin_inset Note Greyedout
6118 status open
6119
6120 \begin_layout Plain Layout
6121
6122 \series bold
6123 Achtung:
6124 \series default
6125  Im TeX-Modus muss für den Backslash der Befehl 
6126 \series bold
6127
6128 \backslash
6129 textbackslash
6130 \series default
6131
6132 \begin_inset Index
6133 status collapsed
6134
6135 \begin_layout Plain Layout
6136 Befehle ! T ! 
6137 \backslash
6138 textbackslash
6139 \end_layout
6140
6141 \end_inset
6142
6143  verwendet werden, denn der Befehl 
6144 \series bold
6145
6146 \backslash
6147
6148 \backslash
6149
6150 \series default
6151  steht dort für einen Zeilenumbruch.
6152 \end_layout
6153
6154 \end_inset
6155
6156
6157 \end_layout
6158
6159 \begin_layout Standard
6160 Für alle oben aufgelisteten Zeichen kann die Größe mit den in den folgenden
6161  zwei Unterkapiteln beschriebenen Befehlen eingestellt werden.
6162  Dabei können dann statt den Befehlen 
6163 \series bold
6164
6165 \backslash
6166 langle
6167 \series default
6168  und 
6169 \series bold
6170
6171 \backslash
6172 rangle
6173 \series default
6174  direkt die Zeichen < und > verwendet werden.
6175 \end_layout
6176
6177 \begin_layout Subsubsection
6178 Manuelle Klammergrößen
6179 \begin_inset CommandInset label
6180 LatexCommand label
6181 name "sub:Manuelle-Klammergrößen"
6182
6183 \end_inset
6184
6185
6186 \begin_inset Index
6187 status collapsed
6188
6189 \begin_layout Plain Layout
6190 Klammergrößen ! manuelle
6191 \end_layout
6192
6193 \end_inset
6194
6195
6196 \end_layout
6197
6198 \begin_layout Standard
6199 Möchte man die Klammergröße manuell festlegen, kann man dies mittels der
6200  LaTeX-Befehle 
6201 \series bold
6202
6203 \backslash
6204 big
6205 \series default
6206
6207 \begin_inset Index
6208 status collapsed
6209
6210 \begin_layout Plain Layout
6211 Befehle ! B ! 
6212 \backslash
6213 big
6214 \end_layout
6215
6216 \end_inset
6217
6218
6219 \series bold
6220
6221 \backslash
6222 Big
6223 \series default
6224
6225 \series bold
6226
6227 \backslash
6228 bigg
6229 \series default
6230  und 
6231 \series bold
6232
6233 \backslash
6234 Bigg
6235 \series default
6236  tun.
6237  
6238 \series bold
6239
6240 \backslash
6241 big
6242 \series default
6243  steht hierbei für die kleinste und 
6244 \series bold
6245
6246 \backslash
6247 Bigg
6248 \series default
6249  für die größte Klammergröße.
6250 \end_layout
6251
6252 \begin_layout Standard
6253 Diese Befehle werden benutzt um Klammerebenen optisch hervorzuheben:
6254 \end_layout
6255
6256 \begin_layout Standard
6257 \align center
6258 \begin_inset Tabular
6259 <lyxtabular version="3" rows="2" columns="2">
6260 <features>
6261 <column alignment="center" valignment="top" width="0pt">
6262 <column alignment="center" valignment="top" width="0pt">
6263 <row>
6264 <cell alignment="center" valignment="top" usebox="none">
6265 \begin_inset Text
6266
6267 \begin_layout Plain Layout
6268 einheitliche Klammergröße:
6269 \end_layout
6270
6271 \end_inset
6272 </cell>
6273 <cell alignment="center" valignment="top" usebox="none">
6274 \begin_inset Text
6275
6276 \begin_layout Plain Layout
6277 \begin_inset Formula $((A+B)(A-B))^{C}\raisebox{-4mm}{}$
6278 \end_inset
6279
6280
6281 \end_layout
6282
6283 \end_inset
6284 </cell>
6285 </row>
6286 <row>
6287 <cell alignment="center" valignment="top" usebox="none">
6288 \begin_inset Text
6289
6290 \begin_layout Plain Layout
6291 besser sieht das so aus:
6292 \end_layout
6293
6294 \end_inset
6295 </cell>
6296 <cell alignment="center" valignment="top" usebox="none">
6297 \begin_inset Text
6298
6299 \begin_layout Plain Layout
6300 \begin_inset Formula $\Big((A+B)(A-B)\Big)^{C}$
6301 \end_inset
6302
6303
6304 \end_layout
6305
6306 \end_inset
6307 </cell>
6308 </row>
6309 </lyxtabular>
6310
6311 \end_inset
6312
6313
6314 \begin_inset Note Note
6315 status collapsed
6316
6317 \begin_layout Plain Layout
6318
6319 \series bold
6320
6321 \backslash
6322 raisebox
6323 \series default
6324  dient nur
6325 \end_layout
6326
6327 \begin_layout Plain Layout
6328 als Abstandhalter.
6329 \end_layout
6330
6331 \end_inset
6332
6333
6334 \end_layout
6335
6336 \begin_layout Standard
6337 Für die zweite Formel wurde der Befehl 
6338 \series bold
6339
6340 \backslash
6341 Big((A+B)(A-B)
6342 \backslash
6343 Big)^
6344 \begin_inset ERT
6345 status collapsed
6346
6347 \begin_layout Plain Layout
6348
6349
6350 \backslash
6351 leer 
6352 \end_layout
6353
6354 \end_inset
6355
6356 C
6357 \series default
6358  verwendet.
6359 \end_layout
6360
6361 \begin_layout Standard
6362 Hier alle Klammergrößen in der Übersicht:
6363 \end_layout
6364
6365 \begin_layout Standard
6366 \align center
6367
6368 \backslash
6369 Bigg(
6370 \backslash
6371 exp
6372 \backslash
6373 bigg<
6374 \backslash
6375 Big[
6376 \backslash
6377 big{
6378 \backslash
6379 ln(3x)
6380 \backslash
6381 big}^2
6382 \begin_inset ERT
6383 status collapsed
6384
6385 \begin_layout Plain Layout
6386
6387
6388 \backslash
6389 leer 
6390 \end_layout
6391
6392 \end_inset
6393
6394
6395 \backslash
6396 sin(x)
6397 \backslash
6398 Big]^
6399 \begin_inset ERT
6400 status collapsed
6401
6402 \begin_layout Plain Layout
6403
6404
6405 \backslash
6406 leer 
6407 \end_layout
6408
6409 \end_inset
6410
6411 A
6412 \begin_inset ERT
6413 status collapsed
6414
6415 \begin_layout Plain Layout
6416
6417
6418 \backslash
6419 leer 
6420 \end_layout
6421
6422 \end_inset
6423
6424
6425 \backslash
6426 bigg>
6427 \backslash
6428 Bigg)^0,5
6429 \end_layout
6430
6431 \begin_layout Standard
6432 \align center
6433 \begin_inset Formula $\Bigg(\exp\bigg<\Big[\big\{\ln(3x)\big\}^{2}\sin(x)\Big]^{A}\bigg>\Bigg)^{0,5}$
6434 \end_inset
6435
6436
6437 \end_layout
6438
6439 \begin_layout Standard
6440 Es gibt außer den 
6441 \series bold
6442
6443 \backslash
6444 big
6445 \series default
6446 -Befehlen noch die Variante 
6447 \series bold
6448
6449 \backslash
6450 bigm
6451 \series default
6452
6453 \begin_inset Index
6454 status collapsed
6455
6456 \begin_layout Plain Layout
6457 Befehle ! B ! 
6458 \backslash
6459 bigm
6460 \end_layout
6461
6462 \end_inset
6463
6464 , die etwas mehr Leerraum zwischen Klammer und Klammerinhalt erzeugt und
6465  die Variante 
6466 \series bold
6467
6468 \backslash
6469 bigl
6470 \series default
6471 -
6472 \series bold
6473
6474 \backslash
6475 bigr
6476 \series default
6477
6478 \begin_inset Index
6479 status collapsed
6480
6481 \begin_layout Plain Layout
6482 Befehle ! B ! 
6483 \backslash
6484 bigl - 
6485 \backslash
6486 bigr
6487 \end_layout
6488
6489 \end_inset
6490
6491 , die keinen zusätzlichen Leerraum erzeugt.
6492  Das 
6493 \emph on
6494 l
6495 \emph default
6496  am Ende des Befehls 
6497 \series bold
6498
6499 \backslash
6500 bigl
6501 \series default
6502  steht für eine linke Klammer; für eine rechte Klammer wird dieses durch
6503  ein 
6504 \emph on
6505 r
6506 \emph default
6507  ersetzt.
6508  Eine linke oder rechte Klammer kann je eine öffnende oder schließende Klammer
6509  sein.
6510 \end_layout
6511
6512 \begin_layout Standard
6513 In der folgenden Tabelle sind die Varianten miteinander verglichen:
6514 \end_layout
6515
6516 \begin_layout Standard
6517 \align center
6518 \begin_inset Tabular
6519 <lyxtabular version="3" rows="5" columns="2">
6520 <features>
6521 <column alignment="center" valignment="middle" width="0">
6522 <column alignment="center" valignment="middle" width="0">
6523 <row>
6524 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
6525 \begin_inset Text
6526
6527 \begin_layout Plain Layout
6528 Befehl
6529 \end_layout
6530
6531 \end_inset
6532 </cell>
6533 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6534 \begin_inset Text
6535
6536 \begin_layout Plain Layout
6537 Ergebnis
6538 \begin_inset Note Note
6539 status collapsed
6540
6541 \begin_layout Plain Layout
6542
6543 \series bold
6544
6545 \backslash
6546 raisebox
6547 \series default
6548  dient nur als Abstandhalter.
6549 \end_layout
6550
6551 \end_inset
6552
6553
6554 \end_layout
6555
6556 \end_inset
6557 </cell>
6558 </row>
6559 <row>
6560 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6561 \begin_inset Text
6562
6563 \begin_layout Plain Layout
6564
6565 \backslash
6566 Bigm(
6567 \backslash
6568 bigm(
6569 \backslash
6570 ln(3x)
6571 \backslash
6572 bigm)^2
6573 \begin_inset ERT
6574 status collapsed
6575
6576 \begin_layout Plain Layout
6577
6578
6579 \backslash
6580 leer 
6581 \end_layout
6582
6583 \end_inset
6584
6585
6586 \backslash
6587 Bigm)
6588 \end_layout
6589
6590 \end_inset
6591 </cell>
6592 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6593 \begin_inset Text
6594
6595 \begin_layout Plain Layout
6596 \begin_inset Formula $\raisebox{5.5mm}{}\Bigm(\bigm(\ln(3x)\bigm)^{2}\Bigm)\raisebox{-3.25mm}{}$
6597 \end_inset
6598
6599
6600 \end_layout
6601
6602 \end_inset
6603 </cell>
6604 </row>
6605 <row>
6606 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6607 \begin_inset Text
6608
6609 \begin_layout Plain Layout
6610
6611 \backslash
6612 Big(
6613 \backslash
6614 big(
6615 \backslash
6616 ln(3x)
6617 \backslash
6618 big)^2
6619 \begin_inset ERT
6620 status collapsed
6621
6622 \begin_layout Plain Layout
6623
6624
6625 \backslash
6626 leer 
6627 \end_layout
6628
6629 \end_inset
6630
6631
6632 \backslash
6633 Big)
6634 \end_layout
6635
6636 \end_inset
6637 </cell>
6638 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6639 \begin_inset Text
6640
6641 \begin_layout Plain Layout
6642 \begin_inset Formula $\raisebox{5.5mm}{}\Big(\big(\ln(3x)\big)^{2}\Big)\raisebox{-3.25mm}{}$
6643 \end_inset
6644
6645
6646 \end_layout
6647
6648 \end_inset
6649 </cell>
6650 </row>
6651 <row>
6652 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
6653 \begin_inset Text
6654
6655 \begin_layout Plain Layout
6656
6657 \backslash
6658 Bigl(
6659 \backslash
6660 bigl(
6661 \backslash
6662 ln(3x)
6663 \backslash
6664 bigr)^2
6665 \begin_inset ERT
6666 status collapsed
6667
6668 \begin_layout Plain Layout
6669
6670
6671 \backslash
6672 leer 
6673 \end_layout
6674
6675 \end_inset
6676
6677
6678 \backslash
6679 Bigr)
6680 \end_layout
6681
6682 \end_inset
6683 </cell>
6684 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6685 \begin_inset Text
6686
6687 \begin_layout Plain Layout
6688 \begin_inset Formula $\raisebox{5.5mm}{}\Bigl(\bigl(\ln(3x)\bigr)^{2}\Bigr)\raisebox{-3.25mm}{}$
6689 \end_inset
6690
6691
6692 \end_layout
6693
6694 \end_inset
6695 </cell>
6696 </row>
6697 <row>
6698 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
6699 \begin_inset Text
6700
6701 \begin_layout Plain Layout
6702
6703 \backslash
6704 bigl)
6705 \backslash
6706 ln(3x)
6707 \backslash
6708 bigr(
6709 \end_layout
6710
6711 \end_inset
6712 </cell>
6713 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6714 \begin_inset Text
6715
6716 \begin_layout Plain Layout
6717 \begin_inset Formula $\raisebox{4.5mm}{}\bigl)\ln(3x)\bigr(\raisebox{-2mm}{}$
6718 \end_inset
6719
6720
6721 \end_layout
6722
6723 \end_inset
6724 </cell>
6725 </row>
6726 </lyxtabular>
6727
6728 \end_inset
6729
6730
6731 \end_layout
6732
6733 \begin_layout Subsubsection
6734 Automatische Klammergrößen
6735 \begin_inset CommandInset label
6736 LatexCommand label
6737 name "sub:Automatische-Klammergrößen"
6738
6739 \end_inset
6740
6741
6742 \begin_inset Index
6743 status collapsed
6744
6745 \begin_layout Plain Layout
6746 Klammergrößen ! automatische
6747 \end_layout
6748
6749 \end_inset
6750
6751
6752 \end_layout
6753
6754 \begin_layout Standard
6755 Klammern variabler Größe können mit den Befehlen 
6756 \series bold
6757
6758 \backslash
6759 left
6760 \series default
6761
6762 \begin_inset Index
6763 status collapsed
6764
6765 \begin_layout Plain Layout
6766 Befehle ! L ! 
6767 \backslash
6768 left
6769 \end_layout
6770
6771 \end_inset
6772
6773  und 
6774 \series bold
6775
6776 \backslash
6777 right
6778 \series default
6779
6780 \begin_inset Index
6781 status collapsed
6782
6783 \begin_layout Plain Layout
6784 Befehle ! R ! 
6785 \backslash
6786 right
6787 \end_layout
6788
6789 \end_inset
6790
6791  oder über den Mathe-Werkzeugleistenknopf
6792 \family sans
6793  
6794 \family default
6795
6796 \begin_inset Graphics
6797         filename ../../images/dialog-show_mathdelimiter.png
6798         scale 85
6799
6800 \end_inset
6801
6802  eingefügt werden.
6803  Auf 
6804 \series bold
6805
6806 \backslash
6807 left
6808 \series default
6809  und 
6810 \series bold
6811
6812 \backslash
6813 right
6814 \series default
6815  muss unmittelbar die gewünschte Klammer folgen.
6816  Die Klammergröße wird dann bei der Ausgabe automatisch berechnet.
6817 \end_layout
6818
6819 \begin_layout Standard
6820 \align center
6821 normale Klammer: Der Befehl 
6822 \series bold
6823
6824 \backslash
6825 ln(
6826 \backslash
6827 frac
6828 \begin_inset ERT
6829 status collapsed
6830
6831 \begin_layout Plain Layout
6832
6833
6834 \backslash
6835 leer 
6836 \end_layout
6837
6838 \end_inset
6839
6840 A
6841 \begin_inset Formula $\downarrow$
6842 \end_inset
6843
6844 C
6845 \begin_inset ERT
6846 status collapsed
6847
6848 \begin_layout Plain Layout
6849
6850
6851 \backslash
6852 leer 
6853 \end_layout
6854
6855 \end_inset
6856
6857 )
6858 \series default
6859  ergibt
6860 \begin_inset Formula \[
6861 \ln(\frac{A}{C})\]
6862
6863 \end_inset
6864
6865
6866 \end_layout
6867
6868 \begin_layout Standard
6869 \align center
6870 mehrzeilige Klammer: Der Befehl 
6871 \series bold
6872
6873 \backslash
6874 ln
6875 \backslash
6876 left(
6877 \backslash
6878 frac
6879 \begin_inset ERT
6880 status collapsed
6881
6882 \begin_layout Plain Layout
6883
6884
6885 \backslash
6886 leer 
6887 \end_layout
6888
6889 \end_inset
6890
6891 A
6892 \begin_inset Formula $\downarrow$
6893 \end_inset
6894
6895 C
6896 \begin_inset ERT
6897 status collapsed
6898
6899 \begin_layout Plain Layout
6900
6901
6902 \backslash
6903 leer 
6904 \end_layout
6905
6906 \end_inset
6907
6908
6909 \backslash
6910 right)
6911 \series default
6912  ergibt
6913 \begin_inset Formula \[
6914 \ln\left(\frac{A}{C}\right)\]
6915
6916 \end_inset
6917
6918
6919 \end_layout
6920
6921 \begin_layout Standard
6922 An Stelle von 
6923 \series bold
6924
6925 \backslash
6926 left
6927 \series default
6928  und 
6929 \series bold
6930
6931 \backslash
6932 right
6933 \series default
6934  kann man die Tastenkürzel 
6935 \family sans
6936 Alt-m
6937 \begin_inset space ~
6938 \end_inset
6939
6940 Klammer
6941 \family default
6942  verwenden.
6943  Das hat den Vorteil, dass man in LyX sofort die wahre Klammergröße sieht
6944  und dass die rechte Klammer gleich mit erstellt wird.
6945 \begin_inset Newline newline
6946 \end_inset
6947
6948 Der Befehl für das letzte Beispiel würde dann lauten: 
6949 \series bold
6950
6951 \backslash
6952 ln Alt-m
6953 \series default
6954  
6955 \series bold
6956 (
6957 \backslash
6958 frac
6959 \begin_inset ERT
6960 status collapsed
6961
6962 \begin_layout Plain Layout
6963
6964
6965 \backslash
6966 leer 
6967 \end_layout
6968
6969 \end_inset
6970
6971 A
6972 \begin_inset Formula $\downarrow$
6973 \end_inset
6974
6975 C
6976 \end_layout
6977
6978 \begin_layout Standard
6979 Will man nur eine Klammerhälfte erstellen, schreibt man für die weggelassene
6980  Klammer einen Punkt.
6981  So ergibt z.
6982 \begin_inset space \thinspace{}
6983 \end_inset
6984
6985 B.
6986  der Befehl 
6987 \series bold
6988
6989 \backslash
6990 left.
6991 \backslash
6992 frac
6993 \begin_inset ERT
6994 status collapsed
6995
6996 \begin_layout Plain Layout
6997
6998
6999 \backslash
7000 leer 
7001 \end_layout
7002
7003 \end_inset
7004
7005 A
7006 \begin_inset Formula $\downarrow$
7007 \end_inset
7008
7009 B
7010 \begin_inset ERT
7011 status collapsed
7012
7013 \begin_layout Plain Layout
7014
7015
7016 \backslash
7017 leer 
7018 \end_layout
7019
7020 \end_inset
7021
7022
7023 \backslash
7024 right}
7025 \series default
7026
7027 \begin_inset space \thinspace{}
7028 \end_inset
7029
7030 :
7031 \series bold
7032
7033 \begin_inset Formula \[
7034 \left.\frac{A}{B}\right\} \]
7035
7036 \end_inset
7037
7038
7039 \series default
7040 Die Befehle 
7041 \series bold
7042
7043 \backslash
7044 left
7045 \series default
7046  und 
7047 \series bold
7048
7049 \backslash
7050 right
7051 \series default
7052  werden beim Neu laden des Dokuments von LyX in Klammern der richtigen Größe
7053  umgewandelt.
7054  Für eine weggelassene Klammer erscheint in LyX eine gestrichelte Linie.
7055 \end_layout
7056
7057 \begin_layout Standard
7058 \begin_inset VSpace bigskip
7059 \end_inset
7060
7061 Da alle gängigen LaTeX-Distributionen eTeX, eine Erweiterung von LaTeX,
7062  verwenden, steht für alle Klammern und Begrenzungszeichen zusätzlich der
7063  Befehl 
7064 \series bold
7065
7066 \backslash
7067 middle
7068 \series default
7069
7070 \begin_inset Index
7071 status collapsed
7072
7073 \begin_layout Plain Layout
7074 Befehle ! M ! 
7075 \backslash
7076 middle
7077 \end_layout
7078
7079 \end_inset
7080
7081  zur Verfügung.
7082  Durch diesen wird das folgende Zeichen an die Höhe der umgebenden Klammern
7083  angepasst, was z.
7084 \begin_inset space \thinspace{}
7085 \end_inset
7086
7087 B.
7088  für physikalische Vektoren von Nutzen ist:
7089 \begin_inset Formula \[
7090 \left\langle \phi\:\middle|\: J=\frac{3}{2}\,,\, M_{J}\right\rangle \]
7091
7092 \end_inset
7093
7094 Für physikalische Vektoren gibt es ein spezielles LaTeX-Paket, das in 
7095 \begin_inset CommandInset ref
7096 LatexCommand ref
7097 reference "sub:Physikalische-Vektoren"
7098
7099 \end_inset
7100
7101  beschrieben ist.
7102 \end_layout
7103
7104 \begin_layout Subsection
7105 Horizontale Klammern
7106 \begin_inset Index
7107 status collapsed
7108
7109 \begin_layout Plain Layout
7110 Klammern ! horizontale
7111 \end_layout
7112
7113 \end_inset
7114
7115
7116 \end_layout
7117
7118 \begin_layout Standard
7119 \align center
7120 \begin_inset Tabular
7121 <lyxtabular version="3" rows="4" columns="2">
7122 <features>
7123 <column alignment="center" valignment="top" width="0pt">
7124 <column alignment="center" valignment="top" width="0pt">
7125 <row>
7126 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
7127 \begin_inset Text
7128
7129 \begin_layout Plain Layout
7130 Befehl
7131 \begin_inset Note Note
7132 status collapsed
7133
7134 \begin_layout Plain Layout
7135
7136 \series bold
7137
7138 \backslash
7139 raisebox
7140 \series default
7141  dient nur als Abstandhalter.
7142 \end_layout
7143
7144 \end_inset
7145
7146
7147 \end_layout
7148
7149 \end_inset
7150 </cell>
7151 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
7152 \begin_inset Text
7153
7154 \begin_layout Plain Layout
7155 Ergebnis
7156 \end_layout
7157
7158 \end_inset
7159 </cell>
7160 </row>
7161 <row>
7162 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7163 \begin_inset Text
7164
7165 \begin_layout Plain Layout
7166 \begin_inset ERT
7167 status collapsed
7168
7169 \begin_layout Plain Layout
7170
7171
7172 \backslash
7173 raisebox{2.3mm}{
7174 \end_layout
7175
7176 \end_inset
7177
7178
7179 \backslash
7180 overbrace
7181 \begin_inset ERT
7182 status collapsed
7183
7184 \begin_layout Plain Layout
7185
7186
7187 \backslash
7188 leer 
7189 \end_layout
7190
7191 \end_inset
7192
7193 A+B
7194 \begin_inset ERT
7195 status collapsed
7196
7197 \begin_layout Plain Layout
7198
7199
7200 \backslash
7201 leer 
7202 \end_layout
7203
7204 \end_inset
7205
7206 ^
7207 \begin_inset ERT
7208 status collapsed
7209
7210 \begin_layout Plain Layout
7211
7212
7213 \backslash
7214 leer 
7215 \end_layout
7216
7217 \end_inset
7218
7219 3
7220 \begin_inset ERT
7221 status collapsed
7222
7223 \begin_layout Plain Layout
7224
7225 }
7226 \end_layout
7227
7228 \end_inset
7229
7230
7231 \begin_inset Index
7232 status collapsed
7233
7234 \begin_layout Plain Layout
7235 Befehle ! O ! 
7236 \backslash
7237 overbrace
7238 \end_layout
7239
7240 \end_inset
7241
7242
7243 \end_layout
7244
7245 \end_inset
7246 </cell>
7247 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7248 \begin_inset Text
7249
7250 \begin_layout Plain Layout
7251 \begin_inset Formula $\overbrace{A+B}^{3}$
7252 \end_inset
7253
7254
7255 \end_layout
7256
7257 \end_inset
7258 </cell>
7259 </row>
7260 <row>
7261 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
7262 \begin_inset Text
7263
7264 \begin_layout Plain Layout
7265 \begin_inset ERT
7266 status collapsed
7267
7268 \begin_layout Plain Layout
7269
7270
7271 \backslash
7272 raisebox{-2.2mm}{
7273 \end_layout
7274
7275 \end_inset
7276
7277
7278 \backslash
7279 underbrace
7280 \begin_inset ERT
7281 status collapsed
7282
7283 \begin_layout Plain Layout
7284
7285
7286 \backslash
7287 leer 
7288 \end_layout
7289
7290 \end_inset
7291
7292 A+B
7293 \begin_inset ERT
7294 status collapsed
7295
7296 \begin_layout Plain Layout
7297
7298
7299 \backslash
7300 leer 
7301 \end_layout
7302
7303 \end_inset
7304
7305 _5
7306 \begin_inset ERT
7307 status collapsed
7308
7309 \begin_layout Plain Layout
7310
7311 }
7312 \end_layout
7313
7314 \end_inset
7315
7316
7317 \begin_inset Index
7318 status collapsed
7319
7320 \begin_layout Plain Layout
7321 Befehle ! U ! 
7322 \backslash
7323 underbrace
7324 \end_layout
7325
7326 \end_inset
7327
7328
7329 \end_layout
7330
7331 \end_inset
7332 </cell>
7333 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
7334 \begin_inset Text
7335
7336 \begin_layout Plain Layout
7337 \begin_inset Formula $\underbrace{A+B}_{5}$
7338 \end_inset
7339
7340
7341 \end_layout
7342
7343 \end_inset
7344 </cell>
7345 </row>
7346 <row>
7347 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
7348 \begin_inset Text
7349
7350 \begin_layout Plain Layout
7351
7352 \backslash
7353 overbrace
7354 \begin_inset ERT
7355 status collapsed
7356
7357 \begin_layout Plain Layout
7358
7359
7360 \backslash
7361 leer 
7362 \end_layout
7363
7364 \end_inset
7365
7366
7367 \backslash
7368 underbrace
7369 \begin_inset ERT
7370 status collapsed
7371
7372 \begin_layout Plain Layout
7373
7374
7375 \backslash
7376 leer 
7377 \end_layout
7378
7379 \end_inset
7380
7381 A+B_w
7382 \begin_inset ERT
7383 status collapsed
7384
7385 \begin_layout Plain Layout
7386
7387
7388 \backslash
7389 leer 
7390 \end_layout
7391
7392 \end_inset
7393
7394
7395 \begin_inset ERT
7396 status collapsed
7397
7398 \begin_layout Plain Layout
7399
7400
7401 \backslash
7402 leer 
7403 \end_layout
7404
7405 \end_inset
7406
7407 _7
7408 \begin_inset ERT
7409 status collapsed
7410
7411 \begin_layout Plain Layout
7412
7413
7414 \backslash
7415 leer 
7416 \end_layout
7417
7418 \end_inset
7419
7420
7421 \begin_inset ERT
7422 status collapsed
7423
7424 \begin_layout Plain Layout
7425
7426
7427 \backslash
7428 leer 
7429 \end_layout
7430
7431 \end_inset
7432
7433 ^
7434 \begin_inset ERT
7435 status collapsed
7436
7437 \begin_layout Plain Layout
7438
7439
7440 \backslash
7441 leer 
7442 \end_layout
7443
7444 \end_inset
7445
7446 C
7447 \end_layout
7448
7449 \end_inset
7450 </cell>
7451 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
7452 \begin_inset Text
7453
7454 \begin_layout Plain Layout
7455 \begin_inset Formula $\overbrace{\underbrace{A+B_{w}}_{7}}^{C}$
7456 \end_inset
7457
7458
7459 \end_layout
7460
7461 \end_inset
7462 </cell>
7463 </row>
7464 </lyxtabular>
7465
7466 \end_inset
7467
7468
7469 \end_layout
7470
7471 \begin_layout Standard
7472 Beim letzten Beispiel spielt es keine Rolle, ob man zuerst 
7473 \series bold
7474
7475 \backslash
7476 overbrace
7477 \series default
7478  oder 
7479 \series bold
7480
7481 \backslash
7482 underbrace
7483 \series default
7484  eingibt.
7485 \end_layout
7486
7487 \begin_layout Standard
7488 \begin_inset VSpace bigskip
7489 \end_inset
7490
7491 Benötigt man Klammern, die sich überschneiden, muss man die in 
7492 \begin_inset CommandInset ref
7493 LatexCommand ref
7494 reference "sec:Mehrzeilige-Formeln"
7495
7496 \end_inset
7497
7498  beschriebenen mehrzeiligen Formeln verwenden:
7499 \begin_inset Formula \begin{eqnarray*}
7500 A & = & \underbrace{gggg+bbqq}_{r}+\: dddd\\
7501  &  & \hphantom{gggg+\:}\underbrace{\hphantom{bbqq+dddd}}_{s}\end{eqnarray*}
7502
7503 \end_inset
7504
7505 In die erste Zeile wird die Formel zusammen mit der ersten Klammer eingegeben.
7506  Dabei ist es wichtig, dass vor dem ersten 
7507 \begin_inset Formula $d$
7508 \end_inset
7509
7510  der Abstandsbefehl
7511 \begin_inset Foot
7512 status collapsed
7513
7514 \begin_layout Plain Layout
7515 Abstandsbefehle sind in 
7516 \begin_inset CommandInset ref
7517 LatexCommand ref
7518 reference "sub:Vordefinierter-Leerraum"
7519
7520 \end_inset
7521
7522  erklärt.
7523 \end_layout
7524
7525 \end_inset
7526
7527  
7528 \series bold
7529
7530 \backslash
7531 :
7532 \series default
7533  eingegeben wird, denn die nach dem 
7534 \begin_inset Formula $q$
7535 \end_inset
7536
7537  endende Klammer verhindert, dass das nachfolgende 
7538 \begin_inset Quotes gld
7539 \end_inset
7540
7541 +
7542 \begin_inset Quotes grd
7543 \end_inset
7544
7545  von Leerraum umgeben ist.
7546 \begin_inset Foot
7547 status collapsed
7548
7549 \begin_layout Plain Layout
7550 weil eine Klammer nicht als Zeichen gilt, siehe 
7551 \begin_inset CommandInset ref
7552 LatexCommand ref
7553 reference "sub:Binäre-Operatoren"
7554
7555 \end_inset
7556
7557
7558 \end_layout
7559
7560 \end_inset
7561
7562  In die zweite Zeile wird die zweite Klammer eingegeben.
7563  Da sie vor dem 
7564 \begin_inset Formula $b$
7565 \end_inset
7566
7567  beginnen soll, gibt man zuerst 
7568 \series bold
7569
7570 \backslash
7571 hphantom{gggg+
7572 \backslash
7573 :}
7574 \series default
7575  ein.
7576 \begin_inset Foot
7577 status collapsed
7578
7579 \begin_layout Plain Layout
7580 mehr zu 
7581 \series bold
7582
7583 \backslash
7584 hphantom
7585 \series default
7586  siehe 
7587 \begin_inset CommandInset ref
7588 LatexCommand ref
7589 reference "sub:Platzhalter"
7590
7591 \end_inset
7592
7593 .
7594 \end_layout
7595
7596 \end_inset
7597
7598  Dieser Leerraum wird benötigt, weil das 
7599 \begin_inset Quotes gld
7600 \end_inset
7601
7602 +
7603 \begin_inset Quotes grd
7604 \end_inset
7605
7606  in der Formel auch von Leerraum umgeben ist.
7607  Die Klammer wird unter den Befehl 
7608 \series bold
7609
7610 \backslash
7611 hphantom{bbqq+dddd}
7612 \series default
7613  gesetzt.
7614 \end_layout
7615
7616 \begin_layout Standard
7617 Komplizierter wird es, wenn sich Klammern über und unter der Formel überschneide
7618 n, wie in folgendem Beispiel:
7619 \begin_inset ERT
7620 status collapsed
7621
7622 \begin_layout Plain Layout
7623
7624
7625 \backslash
7626 setlength{
7627 \backslash
7628 jot}{-6pt}
7629 \end_layout
7630
7631 \end_inset
7632
7633
7634 \begin_inset Formula \begin{eqnarray*}
7635  &  & \hphantom{gggg+\:}\overbrace{\hphantom{bbqq+dddd}}^{s}\\
7636 A & = & \underbrace{gggg+bbqq}_{r}+\: dddd\end{eqnarray*}
7637
7638 \end_inset
7639
7640
7641 \begin_inset ERT
7642 status collapsed
7643
7644 \begin_layout Plain Layout
7645
7646
7647 \backslash
7648 setlength{
7649 \backslash
7650 jot}{3pt}
7651 \end_layout
7652
7653 \end_inset
7654
7655 Die erste Formelzeile ist gleich der zweiten Zeile des vorigen Beispiels,
7656  mit dem Unterschied, dass sich die Klammer oben befindet.
7657  Die zweite Zeile enthält die Formel zusammen mit der zweiten Klammer.
7658  Damit sich zwischen oberer Klammer in der ersten Zeile und der Formel in
7659  der zweiten Zeile kein Leerraum befindet, muss der Zeilenabstand verändert
7660  werden.
7661  Aufgrund eines Fehlers in LyX ist dies nicht ohne Weiteres möglich
7662 \begin_inset Foot
7663 status collapsed
7664
7665 \begin_layout Plain Layout
7666 \begin_inset CommandInset href
7667 LatexCommand href
7668 name "LyX-Fehler #1505"
7669 target "http://bugzilla.lyx.org/show_bug.cgi?id=1505"
7670
7671 \end_inset
7672
7673
7674 \end_layout
7675
7676 \end_inset
7677
7678 .
7679  Es muss als Lösung des Problems der globale Formelzeilenabstand 
7680 \series bold
7681
7682 \backslash
7683 jot
7684 \series default
7685
7686 \begin_inset Index
7687 status collapsed
7688
7689 \begin_layout Plain Layout
7690 Befehle ! J ! 
7691 \backslash
7692 jot
7693 \end_layout
7694
7695 \end_inset
7696
7697  vor der Formel mit dem Befehl 
7698 \series bold
7699
7700 \backslash
7701 setlength{
7702 \backslash
7703 jot}{-6pt}
7704 \series default
7705  im TeX-Modus auf den Wert -6
7706 \begin_inset space \thinspace{}
7707 \end_inset
7708
7709 pt geändert.
7710  Nach der Formel wird 
7711 \series bold
7712
7713 \backslash
7714 jot
7715 \series default
7716  mit demselben Befehl wieder auf den Standardwert 3
7717 \begin_inset space \thinspace{}
7718 \end_inset
7719
7720 pt zurückgesetzt.
7721  Genaueres zum Zeilenabstand in Formeln ist in 
7722 \begin_inset CommandInset ref
7723 LatexCommand ref
7724 reference "sub:Zeilenabstand"
7725
7726 \end_inset
7727
7728  erklärt.
7729 \end_layout
7730
7731 \begin_layout Section
7732 Pfeile
7733 \begin_inset Index
7734 status collapsed
7735
7736 \begin_layout Plain Layout
7737 Pfeile
7738 \end_layout
7739
7740 \end_inset
7741
7742
7743 \end_layout
7744
7745 \begin_layout Standard
7746 Pfeile können über den Mathe-Werkzeugleistenknopf 
7747 \begin_inset Graphics
7748         filename ../../images/math/leftarrow.png
7749         scale 85
7750
7751 \end_inset
7752
7753  oder mit den Befehlen eingefügt werden, die in den folgenden Unterkapiteln
7754  aufgelistet sind.
7755 \end_layout
7756
7757 \begin_layout Subsection
7758 Horizontale Pfeile
7759 \begin_inset Index
7760 status collapsed
7761
7762 \begin_layout Plain Layout
7763 Pfeile ! horizontale
7764 \end_layout
7765
7766 \end_inset
7767
7768
7769 \end_layout
7770
7771 \begin_layout Standard
7772 \begin_inset space \hfill{}
7773 \end_inset
7774
7775
7776 \begin_inset Tabular
7777 <lyxtabular version="3" rows="8" columns="2">
7778 <features>
7779 <column alignment="center" valignment="top" width="0pt">
7780 <column alignment="center" valignment="top" width="0pt">
7781 <row>
7782 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
7783 \begin_inset Text
7784
7785 \begin_layout Plain Layout
7786 Befehl
7787 \end_layout
7788
7789 \end_inset
7790 </cell>
7791 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
7792 \begin_inset Text
7793
7794 \begin_layout Plain Layout
7795 Ergebnis
7796 \end_layout
7797
7798 \end_inset
7799 </cell>
7800 </row>
7801 <row>
7802 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7803 \begin_inset Text
7804
7805 \begin_layout Plain Layout
7806
7807 \backslash
7808 gets
7809 \end_layout
7810
7811 \end_inset
7812 </cell>
7813 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7814 \begin_inset Text
7815
7816 \begin_layout Plain Layout
7817 \begin_inset Formula $\gets$
7818 \end_inset
7819
7820
7821 \end_layout
7822
7823 \end_inset
7824 </cell>
7825 </row>
7826 <row>
7827 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7828 \begin_inset Text
7829
7830 \begin_layout Plain Layout
7831
7832 \backslash
7833 Leftarrow
7834 \end_layout
7835
7836 \end_inset
7837 </cell>
7838 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7839 \begin_inset Text
7840
7841 \begin_layout Plain Layout
7842 \begin_inset Formula $\Leftarrow$
7843 \end_inset
7844
7845
7846 \end_layout
7847
7848 \end_inset
7849 </cell>
7850 </row>
7851 <row>
7852 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
7853 \begin_inset Text
7854
7855 \begin_layout Plain Layout
7856
7857 \backslash
7858 longleftarrow
7859 \end_layout
7860
7861 \end_inset
7862 </cell>
7863 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
7864 \begin_inset Text
7865
7866 \begin_layout Plain Layout
7867 \begin_inset Formula $\longleftarrow$
7868 \end_inset
7869
7870
7871 \end_layout
7872
7873 \end_inset
7874 </cell>
7875 </row>
7876 <row>
7877 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
7878 \begin_inset Text
7879
7880 \begin_layout Plain Layout
7881
7882 \backslash
7883 Longleftarrow
7884 \end_layout
7885
7886 \end_inset
7887 </cell>
7888 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
7889 \begin_inset Text
7890
7891 \begin_layout Plain Layout
7892 \begin_inset Formula $\Longleftarrow$
7893 \end_inset
7894
7895
7896 \end_layout
7897
7898 \end_inset
7899 </cell>
7900 </row>
7901 <row>
7902 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
7903 \begin_inset Text
7904
7905 \begin_layout Plain Layout
7906
7907 \backslash
7908 leftharpoonup
7909 \end_layout
7910
7911 \end_inset
7912 </cell>
7913 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
7914 \begin_inset Text
7915
7916 \begin_layout Plain Layout
7917 \begin_inset Formula $\leftharpoonup$
7918 \end_inset
7919
7920
7921 \end_layout
7922
7923 \end_inset
7924 </cell>
7925 </row>
7926 <row>
7927 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
7928 \begin_inset Text
7929
7930 \begin_layout Plain Layout
7931
7932 \backslash
7933 leftharpoondown
7934 \end_layout
7935
7936 \end_inset
7937 </cell>
7938 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
7939 \begin_inset Text
7940
7941 \begin_layout Plain Layout
7942 \begin_inset Formula $\leftharpoondown$
7943 \end_inset
7944
7945
7946 \end_layout
7947
7948 \end_inset
7949 </cell>
7950 </row>
7951 <row>
7952 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
7953 \begin_inset Text
7954
7955 \begin_layout Plain Layout
7956
7957 \backslash
7958 hookleftarrow
7959 \end_layout
7960
7961 \end_inset
7962 </cell>
7963 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
7964 \begin_inset Text
7965
7966 \begin_layout Plain Layout
7967 \begin_inset Formula $\hookleftarrow$
7968 \end_inset
7969
7970
7971 \end_layout
7972
7973 \end_inset
7974 </cell>
7975 </row>
7976 </lyxtabular>
7977
7978 \end_inset
7979
7980
7981 \begin_inset space \hfill{}
7982 \end_inset
7983
7984
7985 \begin_inset Tabular
7986 <lyxtabular version="3" rows="8" columns="2">
7987 <features>
7988 <column alignment="center" valignment="top" width="0pt">
7989 <column alignment="center" valignment="top" width="0pt">
7990 <row>
7991 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
7992 \begin_inset Text
7993
7994 \begin_layout Plain Layout
7995 Befehl
7996 \end_layout
7997
7998 \end_inset
7999 </cell>
8000 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8001 \begin_inset Text
8002
8003 \begin_layout Plain Layout
8004 Ergebnis
8005 \end_layout
8006
8007 \end_inset
8008 </cell>
8009 </row>
8010 <row>
8011 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8012 \begin_inset Text
8013
8014 \begin_layout Plain Layout
8015
8016 \backslash
8017 to
8018 \end_layout
8019
8020 \end_inset
8021 </cell>
8022 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8023 \begin_inset Text
8024
8025 \begin_layout Plain Layout
8026 \begin_inset Formula $\to$
8027 \end_inset
8028
8029
8030 \end_layout
8031
8032 \end_inset
8033 </cell>
8034 </row>
8035 <row>
8036 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8037 \begin_inset Text
8038
8039 \begin_layout Plain Layout
8040
8041 \backslash
8042 Rightarrow
8043 \end_layout
8044
8045 \end_inset
8046 </cell>
8047 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8048 \begin_inset Text
8049
8050 \begin_layout Plain Layout
8051 \begin_inset Formula $\Rightarrow$
8052 \end_inset
8053
8054
8055 \end_layout
8056
8057 \end_inset
8058 </cell>
8059 </row>
8060 <row>
8061 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8062 \begin_inset Text
8063
8064 \begin_layout Plain Layout
8065
8066 \backslash
8067 longrightarrow
8068 \end_layout
8069
8070 \end_inset
8071 </cell>
8072 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8073 \begin_inset Text
8074
8075 \begin_layout Plain Layout
8076 \begin_inset Formula $\longrightarrow$
8077 \end_inset
8078
8079
8080 \end_layout
8081
8082 \end_inset
8083 </cell>
8084 </row>
8085 <row>
8086 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8087 \begin_inset Text
8088
8089 \begin_layout Plain Layout
8090
8091 \backslash
8092 Longrightarrow
8093 \end_layout
8094
8095 \end_inset
8096 </cell>
8097 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8098 \begin_inset Text
8099
8100 \begin_layout Plain Layout
8101 \begin_inset Formula $\Longrightarrow$
8102 \end_inset
8103
8104
8105 \end_layout
8106
8107 \end_inset
8108 </cell>
8109 </row>
8110 <row>
8111 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8112 \begin_inset Text
8113
8114 \begin_layout Plain Layout
8115
8116 \backslash
8117 rightharpoonup
8118 \end_layout
8119
8120 \end_inset
8121 </cell>
8122 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8123 \begin_inset Text
8124
8125 \begin_layout Plain Layout
8126 \begin_inset Formula $\rightharpoonup$
8127 \end_inset
8128
8129
8130 \end_layout
8131
8132 \end_inset
8133 </cell>
8134 </row>
8135 <row>
8136 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
8137 \begin_inset Text
8138
8139 \begin_layout Plain Layout
8140
8141 \backslash
8142 rightharpoondown
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 \begin_inset Formula $\rightharpoondown$
8152 \end_inset
8153
8154
8155 \end_layout
8156
8157 \end_inset
8158 </cell>
8159 </row>
8160 <row>
8161 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
8162 \begin_inset Text
8163
8164 \begin_layout Plain Layout
8165
8166 \backslash
8167 hookrightarrow
8168 \end_layout
8169
8170 \end_inset
8171 </cell>
8172 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
8173 \begin_inset Text
8174
8175 \begin_layout Plain Layout
8176 \begin_inset Formula $\hookrightarrow$
8177 \end_inset
8178
8179
8180 \end_layout
8181
8182 \end_inset
8183 </cell>
8184 </row>
8185 </lyxtabular>
8186
8187 \end_inset
8188
8189
8190 \begin_inset space \hfill{}
8191 \end_inset
8192
8193
8194 \end_layout
8195
8196 \begin_layout Standard
8197 \begin_inset space \hfill{}
8198 \end_inset
8199
8200
8201 \begin_inset Tabular
8202 <lyxtabular version="3" rows="6" columns="2">
8203 <features>
8204 <column alignment="center" valignment="top" width="0pt">
8205 <column alignment="center" valignment="top" width="0pt">
8206 <row>
8207 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
8208 \begin_inset Text
8209
8210 \begin_layout Plain Layout
8211 Befehl
8212 \end_layout
8213
8214 \end_inset
8215 </cell>
8216 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8217 \begin_inset Text
8218
8219 \begin_layout Plain Layout
8220 Ergebnis
8221 \end_layout
8222
8223 \end_inset
8224 </cell>
8225 </row>
8226 <row>
8227 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8228 \begin_inset Text
8229
8230 \begin_layout Plain Layout
8231
8232 \backslash
8233 leftrightarrow
8234 \end_layout
8235
8236 \end_inset
8237 </cell>
8238 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8239 \begin_inset Text
8240
8241 \begin_layout Plain Layout
8242 \begin_inset Formula $\leftrightarrow$
8243 \end_inset
8244
8245
8246 \end_layout
8247
8248 \end_inset
8249 </cell>
8250 </row>
8251 <row>
8252 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8253 \begin_inset Text
8254
8255 \begin_layout Plain Layout
8256
8257 \backslash
8258 Leftrightarrow
8259 \end_layout
8260
8261 \end_inset
8262 </cell>
8263 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8264 \begin_inset Text
8265
8266 \begin_layout Plain Layout
8267 \begin_inset Formula $\Leftrightarrow$
8268 \end_inset
8269
8270
8271 \end_layout
8272
8273 \end_inset
8274 </cell>
8275 </row>
8276 <row>
8277 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8278 \begin_inset Text
8279
8280 \begin_layout Plain Layout
8281
8282 \backslash
8283 longleftrightarrow
8284 \end_layout
8285
8286 \end_inset
8287 </cell>
8288 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8289 \begin_inset Text
8290
8291 \begin_layout Plain Layout
8292 \begin_inset Formula $\longleftrightarrow$
8293 \end_inset
8294
8295
8296 \end_layout
8297
8298 \end_inset
8299 </cell>
8300 </row>
8301 <row>
8302 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8303 \begin_inset Text
8304
8305 \begin_layout Plain Layout
8306
8307 \backslash
8308 Longleftrightarrow
8309 \end_layout
8310
8311 \end_inset
8312 </cell>
8313 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8314 \begin_inset Text
8315
8316 \begin_layout Plain Layout
8317 \begin_inset Formula $\Longleftrightarrow$
8318 \end_inset
8319
8320
8321 \end_layout
8322
8323 \end_inset
8324 </cell>
8325 </row>
8326 <row>
8327 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
8328 \begin_inset Text
8329
8330 \begin_layout Plain Layout
8331
8332 \backslash
8333 rightleftharpoons
8334 \end_layout
8335
8336 \end_inset
8337 </cell>
8338 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8339 \begin_inset Text
8340
8341 \begin_layout Plain Layout
8342 \begin_inset Formula $\rightleftharpoons$
8343 \end_inset
8344
8345
8346 \end_layout
8347
8348 \end_inset
8349 </cell>
8350 </row>
8351 </lyxtabular>
8352
8353 \end_inset
8354
8355
8356 \begin_inset space \hspace{}
8357 \length 25pt
8358 \end_inset
8359
8360
8361 \begin_inset space \hfill{}
8362 \end_inset
8363
8364
8365 \begin_inset Tabular
8366 <lyxtabular version="3" rows="5" columns="2">
8367 <features>
8368 <column alignment="center" valignment="top" width="0pt">
8369 <column alignment="center" valignment="top" width="0pt">
8370 <row>
8371 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
8372 \begin_inset Text
8373
8374 \begin_layout Plain Layout
8375 Befehl
8376 \end_layout
8377
8378 \end_inset
8379 </cell>
8380 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8381 \begin_inset Text
8382
8383 \begin_layout Plain Layout
8384 Ergebnis
8385 \end_layout
8386
8387 \end_inset
8388 </cell>
8389 </row>
8390 <row>
8391 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8392 \begin_inset Text
8393
8394 \begin_layout Plain Layout
8395
8396 \backslash
8397 mapsto
8398 \end_layout
8399
8400 \end_inset
8401 </cell>
8402 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8403 \begin_inset Text
8404
8405 \begin_layout Plain Layout
8406 \begin_inset Formula $\mapsto$
8407 \end_inset
8408
8409
8410 \end_layout
8411
8412 \end_inset
8413 </cell>
8414 </row>
8415 <row>
8416 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8417 \begin_inset Text
8418
8419 \begin_layout Plain Layout
8420
8421 \backslash
8422 longmapsto
8423 \end_layout
8424
8425 \end_inset
8426 </cell>
8427 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8428 \begin_inset Text
8429
8430 \begin_layout Plain Layout
8431 \begin_inset Formula $\longmapsto$
8432 \end_inset
8433
8434
8435 \end_layout
8436
8437 \end_inset
8438 </cell>
8439 </row>
8440 <row>
8441 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8442 \begin_inset Text
8443
8444 \begin_layout Plain Layout
8445
8446 \backslash
8447 leadsto
8448 \end_layout
8449
8450 \end_inset
8451 </cell>
8452 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8453 \begin_inset Text
8454
8455 \begin_layout Plain Layout
8456 \begin_inset Formula $\leadsto$
8457 \end_inset
8458
8459
8460 \end_layout
8461
8462 \end_inset
8463 </cell>
8464 </row>
8465 <row>
8466 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
8467 \begin_inset Text
8468
8469 \begin_layout Plain Layout
8470
8471 \backslash
8472 dasharrow
8473 \end_layout
8474
8475 \end_inset
8476 </cell>
8477 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8478 \begin_inset Text
8479
8480 \begin_layout Plain Layout
8481 \begin_inset Formula $\dasharrow$
8482 \end_inset
8483
8484
8485 \end_layout
8486
8487 \end_inset
8488 </cell>
8489 </row>
8490 </lyxtabular>
8491
8492 \end_inset
8493
8494
8495 \begin_inset space \hfill{}
8496 \end_inset
8497
8498
8499 \end_layout
8500
8501 \begin_layout Standard
8502 \begin_inset VSpace medskip
8503 \end_inset
8504
8505 Als Akzent verwendete Pfeile, wie z.
8506 \begin_inset space \thinspace{}
8507 \end_inset
8508
8509 B.
8510  Vektorpfeile, sind in 
8511 \begin_inset CommandInset ref
8512 LatexCommand ref
8513 reference "sec:Akzente"
8514
8515 \end_inset
8516
8517  aufgelistet.
8518 \end_layout
8519
8520 \begin_layout Standard
8521 \begin_inset VSpace bigskip
8522 \end_inset
8523
8524 Des Weiteren gibt es die beschriftbaren Pfeile
8525 \begin_inset Index
8526 status collapsed
8527
8528 \begin_layout Plain Layout
8529 Pfeile ! beschriftbare
8530 \end_layout
8531
8532 \end_inset
8533
8534  
8535 \series bold
8536
8537 \backslash
8538 xleftarrow
8539 \series default
8540
8541 \begin_inset Index
8542 status collapsed
8543
8544 \begin_layout Plain Layout
8545 Befehle ! X ! 
8546 \backslash
8547 xleftarrow
8548 \end_layout
8549
8550 \end_inset
8551
8552  und 
8553 \series bold
8554
8555 \backslash
8556 xrightarrow
8557 \series default
8558
8559 \begin_inset Index
8560 status collapsed
8561
8562 \begin_layout Plain Layout
8563 Befehle ! X ! 
8564 \backslash
8565 xrightarrow
8566 \begin_inset ERT
8567 status collapsed
8568
8569 \begin_layout Plain Layout
8570
8571
8572 \backslash
8573 vspace{4mm}
8574 \end_layout
8575
8576 \end_inset
8577
8578
8579 \end_layout
8580
8581 \end_inset
8582
8583 .
8584  Gibt man einen dieser Befehle in eine Formel ein, erscheint ein Pfeil mit
8585  zwei blauen Kästchen, in die man die Beschriftung eingeben kann.
8586  Die Pfeillänge passt sich der Breite der Beschriftung an.
8587 \end_layout
8588
8589 \begin_layout Standard
8590 \align center
8591 \begin_inset Tabular
8592 <lyxtabular version="3" rows="3" columns="2">
8593 <features>
8594 <column alignment="center" valignment="top" width="0pt">
8595 <column alignment="center" valignment="top" width="0pt">
8596 <row>
8597 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
8598 \begin_inset Text
8599
8600 \begin_layout Plain Layout
8601 Befehl
8602 \end_layout
8603
8604 \end_inset
8605 </cell>
8606 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8607 \begin_inset Text
8608
8609 \begin_layout Plain Layout
8610 Ergebnis
8611 \begin_inset Note Note
8612 status collapsed
8613
8614 \begin_layout Plain Layout
8615
8616 \series bold
8617
8618 \backslash
8619 raisebox
8620 \series default
8621  dient nur als Abstandhalter.
8622 \end_layout
8623
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 F(a)
8638 \backslash
8639 xleftarrow
8640 \begin_inset ERT
8641 status collapsed
8642
8643 \begin_layout Plain Layout
8644
8645
8646 \backslash
8647 leer 
8648 \end_layout
8649
8650 \end_inset
8651
8652 x=a
8653 \begin_inset Formula $\downarrow$
8654 \end_inset
8655
8656 x>0
8657 \begin_inset Formula $\to$
8658 \end_inset
8659
8660 F(x)
8661 \end_layout
8662
8663 \end_inset
8664 </cell>
8665 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8666 \begin_inset Text
8667
8668 \begin_layout Plain Layout
8669 \begin_inset Formula $\raisebox{5mm}{}F(a)\xleftarrow[x>0]{x=a}F(x)\raisebox{-4mm}{}$
8670 \end_inset
8671
8672
8673 \end_layout
8674
8675 \end_inset
8676 </cell>
8677 </row>
8678 <row>
8679 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
8680 \begin_inset Text
8681
8682 \begin_layout Plain Layout
8683 F(x)
8684 \backslash
8685 xrightarrow
8686 \begin_inset ERT
8687 status collapsed
8688
8689 \begin_layout Plain Layout
8690
8691
8692 \backslash
8693 leer 
8694 \end_layout
8695
8696 \end_inset
8697
8698 x=a
8699 \begin_inset Formula $\downarrow$
8700 \end_inset
8701
8702 x>0
8703 \begin_inset Formula $\to$
8704 \end_inset
8705
8706 F(a)
8707 \end_layout
8708
8709 \end_inset
8710 </cell>
8711 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8712 \begin_inset Text
8713
8714 \begin_layout Plain Layout
8715 \begin_inset Formula $\raisebox{5mm}{}F(x)\xrightarrow[x>0]{x=a}F(a)\raisebox{-4mm}{}$
8716 \end_inset
8717
8718
8719 \end_layout
8720
8721 \end_inset
8722 </cell>
8723 </row>
8724 </lyxtabular>
8725
8726 \end_inset
8727
8728
8729 \end_layout
8730
8731 \begin_layout Subsection
8732 Vertikale und diagonale Pfeile
8733 \begin_inset Index
8734 status collapsed
8735
8736 \begin_layout Plain Layout
8737 Pfeile ! diagonale
8738 \end_layout
8739
8740 \end_inset
8741
8742
8743 \begin_inset Index
8744 status collapsed
8745
8746 \begin_layout Plain Layout
8747 Pfeile ! vertikale
8748 \end_layout
8749
8750 \end_inset
8751
8752
8753 \end_layout
8754
8755 \begin_layout Standard
8756 \begin_inset space \hfill{}
8757 \end_inset
8758
8759
8760 \begin_inset Tabular
8761 <lyxtabular version="3" rows="7" columns="2">
8762 <features>
8763 <column alignment="center" valignment="top" width="0pt">
8764 <column alignment="center" valignment="top" width="0pt">
8765 <row>
8766 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
8767 \begin_inset Text
8768
8769 \begin_layout Plain Layout
8770 Befehl
8771 \end_layout
8772
8773 \end_inset
8774 </cell>
8775 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8776 \begin_inset Text
8777
8778 \begin_layout Plain Layout
8779 Ergebnis
8780 \end_layout
8781
8782 \end_inset
8783 </cell>
8784 </row>
8785 <row>
8786 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8787 \begin_inset Text
8788
8789 \begin_layout Plain Layout
8790
8791 \backslash
8792 uparrow
8793 \end_layout
8794
8795 \end_inset
8796 </cell>
8797 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8798 \begin_inset Text
8799
8800 \begin_layout Plain Layout
8801 \begin_inset Formula $\uparrow$
8802 \end_inset
8803
8804
8805 \end_layout
8806
8807 \end_inset
8808 </cell>
8809 </row>
8810 <row>
8811 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8812 \begin_inset Text
8813
8814 \begin_layout Plain Layout
8815
8816 \backslash
8817 Uparrow
8818 \end_layout
8819
8820 \end_inset
8821 </cell>
8822 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8823 \begin_inset Text
8824
8825 \begin_layout Plain Layout
8826 \begin_inset Formula $\Uparrow$
8827 \end_inset
8828
8829
8830 \end_layout
8831
8832 \end_inset
8833 </cell>
8834 </row>
8835 <row>
8836 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8837 \begin_inset Text
8838
8839 \begin_layout Plain Layout
8840
8841 \backslash
8842 updownarrow
8843 \end_layout
8844
8845 \end_inset
8846 </cell>
8847 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8848 \begin_inset Text
8849
8850 \begin_layout Plain Layout
8851 \begin_inset Formula $\updownarrow$
8852 \end_inset
8853
8854
8855 \end_layout
8856
8857 \end_inset
8858 </cell>
8859 </row>
8860 <row>
8861 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8862 \begin_inset Text
8863
8864 \begin_layout Plain Layout
8865
8866 \backslash
8867 Updownarrow
8868 \end_layout
8869
8870 \end_inset
8871 </cell>
8872 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8873 \begin_inset Text
8874
8875 \begin_layout Plain Layout
8876 \begin_inset Formula $\Updownarrow$
8877 \end_inset
8878
8879
8880 \end_layout
8881
8882 \end_inset
8883 </cell>
8884 </row>
8885 <row>
8886 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
8887 \begin_inset Text
8888
8889 \begin_layout Plain Layout
8890
8891 \backslash
8892 Downarrow
8893 \end_layout
8894
8895 \end_inset
8896 </cell>
8897 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8898 \begin_inset Text
8899
8900 \begin_layout Plain Layout
8901 \begin_inset Formula $\Downarrow$
8902 \end_inset
8903
8904
8905 \end_layout
8906
8907 \end_inset
8908 </cell>
8909 </row>
8910 <row>
8911 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
8912 \begin_inset Text
8913
8914 \begin_layout Plain Layout
8915
8916 \backslash
8917 downarrow
8918 \end_layout
8919
8920 \end_inset
8921 </cell>
8922 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
8923 \begin_inset Text
8924
8925 \begin_layout Plain Layout
8926 \begin_inset Formula $\downarrow$
8927 \end_inset
8928
8929
8930 \end_layout
8931
8932 \end_inset
8933 </cell>
8934 </row>
8935 </lyxtabular>
8936
8937 \end_inset
8938
8939
8940 \begin_inset space \hfill{}
8941 \end_inset
8942
8943
8944 \begin_inset Tabular
8945 <lyxtabular version="3" rows="5" columns="2">
8946 <features>
8947 <column alignment="center" valignment="top" width="0pt">
8948 <column alignment="center" valignment="top" width="0pt">
8949 <row>
8950 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
8951 \begin_inset Text
8952
8953 \begin_layout Plain Layout
8954 Befehl
8955 \end_layout
8956
8957 \end_inset
8958 </cell>
8959 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8960 \begin_inset Text
8961
8962 \begin_layout Plain Layout
8963 Ergebnis
8964 \end_layout
8965
8966 \end_inset
8967 </cell>
8968 </row>
8969 <row>
8970 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8971 \begin_inset Text
8972
8973 \begin_layout Plain Layout
8974
8975 \backslash
8976 nearrow
8977 \end_layout
8978
8979 \end_inset
8980 </cell>
8981 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8982 \begin_inset Text
8983
8984 \begin_layout Plain Layout
8985 \begin_inset Formula $\nearrow$
8986 \end_inset
8987
8988
8989 \end_layout
8990
8991 \end_inset
8992 </cell>
8993 </row>
8994 <row>
8995 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8996 \begin_inset Text
8997
8998 \begin_layout Plain Layout
8999
9000 \backslash
9001 searrow
9002 \end_layout
9003
9004 \end_inset
9005 </cell>
9006 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9007 \begin_inset Text
9008
9009 \begin_layout Plain Layout
9010 \begin_inset Formula $\searrow$
9011 \end_inset
9012
9013
9014 \end_layout
9015
9016 \end_inset
9017 </cell>
9018 </row>
9019 <row>
9020 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
9021 \begin_inset Text
9022
9023 \begin_layout Plain Layout
9024
9025 \backslash
9026 swarrow
9027 \end_layout
9028
9029 \end_inset
9030 </cell>
9031 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
9032 \begin_inset Text
9033
9034 \begin_layout Plain Layout
9035 \begin_inset Formula $\swarrow$
9036 \end_inset
9037
9038
9039 \end_layout
9040
9041 \end_inset
9042 </cell>
9043 </row>
9044 <row>
9045 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9046 \begin_inset Text
9047
9048 \begin_layout Plain Layout
9049
9050 \backslash
9051 nwarrow
9052 \end_layout
9053
9054 \end_inset
9055 </cell>
9056 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9057 \begin_inset Text
9058
9059 \begin_layout Plain Layout
9060 \begin_inset Formula $\nwarrow$
9061 \end_inset
9062
9063
9064 \end_layout
9065
9066 \end_inset
9067 </cell>
9068 </row>
9069 </lyxtabular>
9070
9071 \end_inset
9072
9073
9074 \begin_inset space \hfill{}
9075 \end_inset
9076
9077
9078 \end_layout
9079
9080 \begin_layout Standard
9081 \begin_inset VSpace medskip
9082 \end_inset
9083
9084 Vertikale Pfeile können auch als Begrenzungszeichen zusammen mit den in
9085  
9086 \begin_inset CommandInset ref
9087 LatexCommand ref
9088 reference "sub:Manuelle-Klammergrößen"
9089
9090 \end_inset
9091
9092  und 
9093 \begin_inset CommandInset ref
9094 LatexCommand ref
9095 reference "sub:Automatische-Klammergrößen"
9096
9097 \end_inset
9098
9099  beschriebenen Befehlen verwendet werden.
9100 \end_layout
9101
9102 \begin_layout Section
9103 Akzente
9104 \begin_inset CommandInset label
9105 LatexCommand label
9106 name "sec:Akzente"
9107
9108 \end_inset
9109
9110
9111 \begin_inset Index
9112 status collapsed
9113
9114 \begin_layout Plain Layout
9115 Akzente
9116 \end_layout
9117
9118 \end_inset
9119
9120
9121 \end_layout
9122
9123 \begin_layout Standard
9124 Akzente können über den Mathe-Werkzeugleistenknopf 
9125 \begin_inset Graphics
9126         filename ../../images/math/hat.png
9127         scale 85
9128
9129 \end_inset
9130
9131  oder mit den Befehlen eingefügt werden, die in den folgenden Unterkapiteln
9132  aufgelistet sind.
9133 \end_layout
9134
9135 \begin_layout Subsection
9136 Akzente für ein Zeichen
9137 \begin_inset ERT
9138 status collapsed
9139
9140 \begin_layout Plain Layout
9141
9142
9143 \backslash
9144 texorpdfstring{
9145 \end_layout
9146
9147 \end_inset
9148
9149
9150 \begin_inset Foot
9151 status collapsed
9152
9153 \begin_layout Plain Layout
9154 Akzente im Text siehe 
9155 \begin_inset CommandInset ref
9156 LatexCommand ref
9157 reference "sub:Sonderzeichen-Akzente"
9158
9159 \end_inset
9160
9161
9162 \end_layout
9163
9164 \end_inset
9165
9166
9167 \begin_inset ERT
9168 status collapsed
9169
9170 \begin_layout Plain Layout
9171
9172 }{}
9173 \end_layout
9174
9175 \end_inset
9176
9177
9178 \begin_inset Note Note
9179 status collapsed
9180
9181 \begin_layout Plain Layout
9182
9183 \series bold
9184
9185 \backslash
9186 texorpdfstring
9187 \series default
9188  dient dazu, dass die Fußnote nicht im PDF-Lesezeichen erscheint.
9189 \end_layout
9190
9191 \begin_layout Plain Layout
9192 Näheres zu 
9193 \series bold
9194
9195 \backslash
9196 texorpdfstring
9197 \series default
9198  steht in Kapitel 
9199 \begin_inset CommandInset ref
9200 LatexCommand ref
9201 reference "sub:Formeln-in-Überschriften"
9202
9203 \end_inset
9204
9205 .
9206 \end_layout
9207
9208 \end_inset
9209
9210
9211 \begin_inset CommandInset label
9212 LatexCommand label
9213 name "sub:Akzente-für-ein"
9214
9215 \end_inset
9216
9217
9218 \begin_inset Index
9219 status collapsed
9220
9221 \begin_layout Plain Layout
9222 Akzente ! für ein Zeichen
9223 \end_layout
9224
9225 \end_inset
9226
9227
9228 \end_layout
9229
9230 \begin_layout Standard
9231 \begin_inset space \hfill{}
9232 \end_inset
9233
9234
9235 \begin_inset Tabular
9236 <lyxtabular version="3" rows="8" columns="2">
9237 <features>
9238 <column alignment="center" valignment="top" width="0pt">
9239 <column alignment="center" valignment="top" width="0pt">
9240 <row>
9241 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
9242 \begin_inset Text
9243
9244 \begin_layout Plain Layout
9245 Befehl
9246 \end_layout
9247
9248 \end_inset
9249 </cell>
9250 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
9251 \begin_inset Text
9252
9253 \begin_layout Plain Layout
9254 Ergebnis
9255 \begin_inset Note Note
9256 status collapsed
9257
9258 \begin_layout Plain Layout
9259
9260 \series bold
9261
9262 \backslash
9263 raisebox
9264 \series default
9265  dient nur als Abstandhalter.
9266 \end_layout
9267
9268 \end_inset
9269
9270
9271 \end_layout
9272
9273 \end_inset
9274 </cell>
9275 </row>
9276 <row>
9277 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
9278 \begin_inset Text
9279
9280 \begin_layout Plain Layout
9281
9282 \backslash
9283 dot
9284 \begin_inset ERT
9285 status collapsed
9286
9287 \begin_layout Plain Layout
9288
9289
9290 \backslash
9291 leer 
9292 \end_layout
9293
9294 \end_inset
9295
9296 A
9297 \end_layout
9298
9299 \end_inset
9300 </cell>
9301 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
9302 \begin_inset Text
9303
9304 \begin_layout Plain Layout
9305 \begin_inset Formula $\raisebox{5mm}{}\dot{A}$
9306 \end_inset
9307
9308
9309 \end_layout
9310
9311 \end_inset
9312 </cell>
9313 </row>
9314 <row>
9315 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9316 \begin_inset Text
9317
9318 \begin_layout Plain Layout
9319
9320 \backslash
9321 ddot
9322 \begin_inset ERT
9323 status collapsed
9324
9325 \begin_layout Plain Layout
9326
9327
9328 \backslash
9329 leer 
9330 \end_layout
9331
9332 \end_inset
9333
9334 A
9335 \end_layout
9336
9337 \end_inset
9338 </cell>
9339 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9340 \begin_inset Text
9341
9342 \begin_layout Plain Layout
9343 \begin_inset Formula $\raisebox{5mm}{}\ddot{A}$
9344 \end_inset
9345
9346
9347 \end_layout
9348
9349 \end_inset
9350 </cell>
9351 </row>
9352 <row>
9353 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9354 \begin_inset Text
9355
9356 \begin_layout Plain Layout
9357
9358 \backslash
9359 dddot
9360 \begin_inset ERT
9361 status collapsed
9362
9363 \begin_layout Plain Layout
9364
9365
9366 \backslash
9367 leer 
9368 \end_layout
9369
9370 \end_inset
9371
9372 A
9373 \end_layout
9374
9375 \end_inset
9376 </cell>
9377 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9378 \begin_inset Text
9379
9380 \begin_layout Plain Layout
9381 \begin_inset Formula $\raisebox{5mm}{}\dddot{A}$
9382 \end_inset
9383
9384
9385 \end_layout
9386
9387 \end_inset
9388 </cell>
9389 </row>
9390 <row>
9391 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9392 \begin_inset Text
9393
9394 \begin_layout Plain Layout
9395
9396 \backslash
9397 ddddot{A
9398 \end_layout
9399
9400 \end_inset
9401 </cell>
9402 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9403 \begin_inset Text
9404
9405 \begin_layout Plain Layout
9406 \begin_inset Formula $\raisebox{5mm}{}\ddddot{A}$
9407 \end_inset
9408
9409
9410 \end_layout
9411
9412 \end_inset
9413 </cell>
9414 </row>
9415 <row>
9416 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9417 \begin_inset Text
9418
9419 \begin_layout Plain Layout
9420
9421 \backslash
9422 vec
9423 \begin_inset ERT
9424 status collapsed
9425
9426 \begin_layout Plain Layout
9427
9428
9429 \backslash
9430 leer 
9431 \end_layout
9432
9433 \end_inset
9434
9435 A
9436 \begin_inset Index
9437 status collapsed
9438
9439 \begin_layout Plain Layout
9440 Vektoren
9441 \end_layout
9442
9443 \end_inset
9444
9445
9446 \end_layout
9447
9448 \end_inset
9449 </cell>
9450 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9451 \begin_inset Text
9452
9453 \begin_layout Plain Layout
9454 \begin_inset Formula $\raisebox{5mm}{}\vec{A}$
9455 \end_inset
9456
9457
9458 \end_layout
9459
9460 \end_inset
9461 </cell>
9462 </row>
9463 <row>
9464 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9465 \begin_inset Text
9466
9467 \begin_layout Plain Layout
9468
9469 \backslash
9470 bar
9471 \begin_inset ERT
9472 status collapsed
9473
9474 \begin_layout Plain Layout
9475
9476
9477 \backslash
9478 leer 
9479 \end_layout
9480
9481 \end_inset
9482
9483 A
9484 \end_layout
9485
9486 \end_inset
9487 </cell>
9488 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9489 \begin_inset Text
9490
9491 \begin_layout Plain Layout
9492 \begin_inset Formula $\raisebox{5mm}{}\bar{A}$
9493 \end_inset
9494
9495
9496 \end_layout
9497
9498 \end_inset
9499 </cell>
9500 </row>
9501 <row>
9502 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9503 \begin_inset Text
9504
9505 \begin_layout Plain Layout
9506
9507 \backslash
9508 mathring
9509 \begin_inset ERT
9510 status collapsed
9511
9512 \begin_layout Plain Layout
9513
9514
9515 \backslash
9516 leer 
9517 \end_layout
9518
9519 \end_inset
9520
9521 A
9522 \end_layout
9523
9524 \end_inset
9525 </cell>
9526 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9527 \begin_inset Text
9528
9529 \begin_layout Plain Layout
9530 \begin_inset Formula $\raisebox{5mm}{}\mathring{A}$
9531 \end_inset
9532
9533
9534 \end_layout
9535
9536 \end_inset
9537 </cell>
9538 </row>
9539 </lyxtabular>
9540
9541 \end_inset
9542
9543
9544 \begin_inset space \hfill{}
9545 \end_inset
9546
9547
9548 \begin_inset Tabular
9549 <lyxtabular version="3" rows="7" columns="2">
9550 <features>
9551 <column alignment="center" valignment="top" width="0pt">
9552 <column alignment="center" valignment="top" width="0pt">
9553 <row>
9554 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
9555 \begin_inset Text
9556
9557 \begin_layout Plain Layout
9558 Befehl
9559 \end_layout
9560
9561 \end_inset
9562 </cell>
9563 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
9564 \begin_inset Text
9565
9566 \begin_layout Plain Layout
9567 Ergebnis
9568 \end_layout
9569
9570 \end_inset
9571 </cell>
9572 </row>
9573 <row>
9574 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
9575 \begin_inset Text
9576
9577 \begin_layout Plain Layout
9578
9579 \backslash
9580 tilde
9581 \begin_inset ERT
9582 status collapsed
9583
9584 \begin_layout Plain Layout
9585
9586
9587 \backslash
9588 leer 
9589 \end_layout
9590
9591 \end_inset
9592
9593 A
9594 \end_layout
9595
9596 \end_inset
9597 </cell>
9598 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
9599 \begin_inset Text
9600
9601 \begin_layout Plain Layout
9602 \begin_inset Formula $\raisebox{5mm}{}\tilde{A}$
9603 \end_inset
9604
9605
9606 \end_layout
9607
9608 \end_inset
9609 </cell>
9610 </row>
9611 <row>
9612 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9613 \begin_inset Text
9614
9615 \begin_layout Plain Layout
9616
9617 \backslash
9618 hat
9619 \begin_inset ERT
9620 status collapsed
9621
9622 \begin_layout Plain Layout
9623
9624
9625 \backslash
9626 leer 
9627 \end_layout
9628
9629 \end_inset
9630
9631 A
9632 \end_layout
9633
9634 \end_inset
9635 </cell>
9636 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9637 \begin_inset Text
9638
9639 \begin_layout Plain Layout
9640 \begin_inset Formula $\raisebox{5mm}{}\hat{A}$
9641 \end_inset
9642
9643
9644 \end_layout
9645
9646 \end_inset
9647 </cell>
9648 </row>
9649 <row>
9650 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9651 \begin_inset Text
9652
9653 \begin_layout Plain Layout
9654
9655 \backslash
9656 check
9657 \begin_inset ERT
9658 status collapsed
9659
9660 \begin_layout Plain Layout
9661
9662
9663 \backslash
9664 leer 
9665 \end_layout
9666
9667 \end_inset
9668
9669 A
9670 \end_layout
9671
9672 \end_inset
9673 </cell>
9674 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9675 \begin_inset Text
9676
9677 \begin_layout Plain Layout
9678 \begin_inset Formula $\raisebox{5mm}{}\check{A}$
9679 \end_inset
9680
9681
9682 \end_layout
9683
9684 \end_inset
9685 </cell>
9686 </row>
9687 <row>
9688 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9689 \begin_inset Text
9690
9691 \begin_layout Plain Layout
9692
9693 \backslash
9694 acute
9695 \begin_inset ERT
9696 status collapsed
9697
9698 \begin_layout Plain Layout
9699
9700
9701 \backslash
9702 leer 
9703 \end_layout
9704
9705 \end_inset
9706
9707 A
9708 \end_layout
9709
9710 \end_inset
9711 </cell>
9712 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9713 \begin_inset Text
9714
9715 \begin_layout Plain Layout
9716 \begin_inset Formula $\raisebox{5mm}{}\acute{A}$
9717 \end_inset
9718
9719
9720 \end_layout
9721
9722 \end_inset
9723 </cell>
9724 </row>
9725 <row>
9726 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9727 \begin_inset Text
9728
9729 \begin_layout Plain Layout
9730
9731 \backslash
9732 grave
9733 \begin_inset ERT
9734 status collapsed
9735
9736 \begin_layout Plain Layout
9737
9738
9739 \backslash
9740 leer 
9741 \end_layout
9742
9743 \end_inset
9744
9745 A
9746 \end_layout
9747
9748 \end_inset
9749 </cell>
9750 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9751 \begin_inset Text
9752
9753 \begin_layout Plain Layout
9754 \begin_inset Formula $\raisebox{5mm}{}\grave{A}$
9755 \end_inset
9756
9757
9758 \end_layout
9759
9760 \end_inset
9761 </cell>
9762 </row>
9763 <row>
9764 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9765 \begin_inset Text
9766
9767 \begin_layout Plain Layout
9768
9769 \backslash
9770 breve
9771 \begin_inset ERT
9772 status collapsed
9773
9774 \begin_layout Plain Layout
9775
9776
9777 \backslash
9778 leer 
9779 \end_layout
9780
9781 \end_inset
9782
9783 A
9784 \end_layout
9785
9786 \end_inset
9787 </cell>
9788 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9789 \begin_inset Text
9790
9791 \begin_layout Plain Layout
9792 \begin_inset Formula $\raisebox{5mm}{}\breve{A}$
9793 \end_inset
9794
9795
9796 \end_layout
9797
9798 \end_inset
9799 </cell>
9800 </row>
9801 </lyxtabular>
9802
9803 \end_inset
9804
9805
9806 \begin_inset space \hfill{}
9807 \end_inset
9808
9809
9810 \end_layout
9811
9812 \begin_layout Standard
9813 \begin_inset VSpace bigskip
9814 \end_inset
9815
9816 Wenn man in einer Formel Umlaute
9817 \begin_inset Index
9818 status collapsed
9819
9820 \begin_layout Plain Layout
9821 Umlaute
9822 \end_layout
9823
9824 \end_inset
9825
9826  erstellen will, schreibt man ein Anführungszeichen vor den Selbstlaut.
9827  Diese beiden Zeichen bilden dann für LaTeX 
9828 \emph on
9829 ein
9830 \emph default
9831  Zeichen.
9832  Im Gegensatz zu 
9833 \series bold
9834
9835 \backslash
9836 ddot
9837 \series default
9838  entstehen damit 
9839 \begin_inset Quotes gld
9840 \end_inset
9841
9842 echte
9843 \begin_inset Quotes grd
9844 \end_inset
9845
9846  Umlaute, was folgendes Beispiel zeigt:
9847 \end_layout
9848
9849 \begin_layout Standard
9850 \begin_inset VSpace -2mm
9851 \end_inset
9852
9853
9854 \end_layout
9855
9856 \begin_layout Standard
9857 \align center
9858 \begin_inset Tabular
9859 <lyxtabular version="3" rows="3" columns="2">
9860 <features>
9861 <column alignment="center" valignment="top" width="0">
9862 <column alignment="center" valignment="top" width="0">
9863 <row>
9864 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
9865 \begin_inset Text
9866
9867 \begin_layout Plain Layout
9868 Befehl
9869 \end_layout
9870
9871 \end_inset
9872 </cell>
9873 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
9874 \begin_inset Text
9875
9876 \begin_layout Plain Layout
9877 Ergebnis
9878 \begin_inset Note Note
9879 status collapsed
9880
9881 \begin_layout Plain Layout
9882
9883 \series bold
9884
9885 \backslash
9886 raisebox
9887 \series default
9888  dient nur als Abstandhalter.
9889 \end_layout
9890
9891 \end_inset
9892
9893
9894 \end_layout
9895
9896 \end_inset
9897 </cell>
9898 </row>
9899 <row>
9900 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9901 \begin_inset Text
9902
9903 \begin_layout Plain Layout
9904 \begin_inset Quotes grd
9905 \end_inset
9906
9907 i
9908 \end_layout
9909
9910 \end_inset
9911 </cell>
9912 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9913 \begin_inset Text
9914
9915 \begin_layout Plain Layout
9916 \begin_inset Formula $"i$
9917 \end_inset
9918
9919
9920 \end_layout
9921
9922 \end_inset
9923 </cell>
9924 </row>
9925 <row>
9926 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
9927 \begin_inset Text
9928
9929 \begin_layout Plain Layout
9930
9931 \backslash
9932 ddot
9933 \begin_inset ERT
9934 status collapsed
9935
9936 \begin_layout Plain Layout
9937
9938
9939 \backslash
9940 leer 
9941 \end_layout
9942
9943 \end_inset
9944
9945 i
9946 \end_layout
9947
9948 \end_inset
9949 </cell>
9950 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
9951 \begin_inset Text
9952
9953 \begin_layout Plain Layout
9954 \begin_inset Formula $\raisebox{5mm}{}\ddot{i}$
9955 \end_inset
9956
9957
9958 \end_layout
9959
9960 \end_inset
9961 </cell>
9962 </row>
9963 </lyxtabular>
9964
9965 \end_inset
9966
9967
9968 \end_layout
9969
9970 \begin_layout Standard
9971 Ein weiterer Vorteil gegenüber 
9972 \series bold
9973
9974 \backslash
9975 ddot
9976 \series default
9977  ist, dass man Umlaute direkt in mathematischen Text konvertieren kann,
9978  denn die obigen Akzentbefehle sind 
9979 \emph on
9980 im mathematischen Text\SpecialChar \-
9981 modus nicht erlaubt
9982 \emph default
9983 .
9984  Um ein akzentuiertes Zeichen in mathematischen Text zu überführen, darf
9985  nur das Zeichen unter dem Akzent umgewandelt werden.
9986  Das gilt auch für alle anderen Umwandlungen wie z.
9987 \begin_inset space \thinspace{}
9988 \end_inset
9989
9990 B.
9991  in kursiv oder fett.
9992 \end_layout
9993
9994 \begin_layout Standard
9995 Im mathematischen Textmodus können Umlaute und andere akzentuierten Zeichen
9996  direkt eingegeben werden.
9997 \end_layout
9998
9999 \begin_layout Subsection
10000 Akzente für Operatoren
10001 \begin_inset Index
10002 status collapsed
10003
10004 \begin_layout Plain Layout
10005 Akzente ! für Operatoren
10006 \end_layout
10007
10008 \end_inset
10009
10010
10011 \end_layout
10012
10013 \begin_layout Standard
10014 Zum Akzentuieren von Operatoren gibt es die Befehle 
10015 \series bold
10016
10017 \backslash
10018 overset
10019 \series default
10020
10021 \begin_inset Index
10022 status collapsed
10023
10024 \begin_layout Plain Layout
10025 Befehle ! O ! 
10026 \backslash
10027 overset
10028 \end_layout
10029
10030 \end_inset
10031
10032  und 
10033 \series bold
10034
10035 \backslash
10036 underset
10037 \series default
10038
10039 \begin_inset Index
10040 status collapsed
10041
10042 \begin_layout Plain Layout
10043 Befehle ! U ! 
10044 \backslash
10045 underset
10046 \end_layout
10047
10048 \end_inset
10049
10050 , mit denen man Zeichen über bzw.
10051  unter einen Operator setzen kann.
10052  Mit dem Befehl 
10053 \series bold
10054
10055 \backslash
10056 sideset
10057 \series default
10058
10059 \begin_inset Index
10060 status collapsed
10061
10062 \begin_layout Plain Layout
10063 Befehle ! S ! 
10064 \backslash
10065 sideset
10066 \end_layout
10067
10068 \end_inset
10069
10070  können Zeichen vor und nach einen Operator gesetzt werden.
10071  Das Befehlsschema lautet:
10072 \end_layout
10073
10074 \begin_layout Standard
10075
10076 \series bold
10077
10078 \backslash
10079 sideset{Zeichen
10080 \series default
10081  
10082 \series bold
10083 davor}{Zeichen
10084 \series default
10085  
10086 \series bold
10087 dahinter}
10088 \end_layout
10089
10090 \begin_layout Standard
10091
10092 \series bold
10093
10094 \backslash
10095 sideset
10096 \series default
10097  mussen immer vor dem zu akzentuierenden Operator stehen.
10098  Es kann auch mit mehreren Zeichen und sogar mit anderen Operatoren und
10099  Symbolen akzentuiert werden.
10100  Will man mit 
10101 \series bold
10102
10103 \backslash
10104 sideset
10105 \series default
10106  z.
10107 \begin_inset space \thinspace{}
10108 \end_inset
10109
10110 B.
10111  nur Zeichen hinter einen Operator setzen, schreibt man nichts zwischen
10112  die ersten geschweiften Klammern, lässt die Klammern aber nicht weg.
10113 \end_layout
10114
10115 \begin_layout Standard
10116 Z.
10117 \begin_inset space \thinspace{}
10118 \end_inset
10119
10120 B.
10121  ergibt der Befehl 
10122 \series bold
10123
10124 \backslash
10125 sideset{
10126 \begin_inset Formula $\to$
10127 \end_inset
10128
10129
10130 \backslash
10131 {
10132 \series default
10133 '
10134 \series bold
10135
10136 \begin_inset Formula $\to$
10137 \end_inset
10138
10139
10140 \backslash
10141 sum_k=1
10142 \begin_inset ERT
10143 status collapsed
10144
10145 \begin_layout Plain Layout
10146
10147
10148 \backslash
10149 leer 
10150 \end_layout
10151
10152 \end_inset
10153
10154
10155 \series default
10156 ^
10157 \series bold
10158 n
10159 \series default
10160  :
10161 \begin_inset Formula \[
10162 \sideset{}{'}\sum_{k=1}^{n}\]
10163
10164 \end_inset
10165
10166
10167 \end_layout
10168
10169 \begin_layout Standard
10170 Der Befehl 
10171 \series bold
10172
10173 \backslash
10174 overset
10175 \begin_inset ERT
10176 status collapsed
10177
10178 \begin_layout Plain Layout
10179
10180
10181 \backslash
10182 leer 
10183 \end_layout
10184
10185 \end_inset
10186
10187
10188 \backslash
10189 maltese
10190 \begin_inset ERT
10191 status collapsed
10192
10193 \begin_layout Plain Layout
10194
10195
10196 \backslash
10197 leer 
10198 \end_layout
10199
10200 \end_inset
10201
10202
10203 \series default
10204
10205 \begin_inset Formula $\uparrow$
10206 \end_inset
10207
10208
10209 \series bold
10210 a
10211 \series default
10212  ergibt:
10213 \begin_inset Formula \[
10214 \overset{a}{\maltese}\]
10215
10216 \end_inset
10217
10218 Wie man am letzten Beispiel sieht, kann man mit 
10219 \series bold
10220
10221 \backslash
10222 overset
10223 \series default
10224  bzw.
10225  
10226 \series bold
10227
10228 \backslash
10229 underset
10230 \series default
10231  außer Operatoren auch Symbole und Zeichen akzentuieren; mit 
10232 \series bold
10233
10234 \backslash
10235 sideset
10236 \series default
10237  ist dies nicht möglich.
10238 \end_layout
10239
10240 \begin_layout Subsection
10241 Akzente für mehrere Zeichen
10242 \begin_inset CommandInset label
10243 LatexCommand label
10244 name "sub:Akzente-für-mehrere"
10245
10246 \end_inset
10247
10248
10249 \begin_inset Index
10250 status collapsed
10251
10252 \begin_layout Plain Layout
10253 Akzente ! für mehrere Zeichen
10254 \end_layout
10255
10256 \end_inset
10257
10258
10259 \end_layout
10260
10261 \begin_layout Standard
10262 \begin_inset space \hfill{}
10263 \end_inset
10264
10265
10266 \begin_inset Tabular
10267 <lyxtabular version="3" rows="5" columns="2">
10268 <features>
10269 <column alignment="center" valignment="top" width="0pt">
10270 <column alignment="center" valignment="top" width="0pt">
10271 <row>
10272 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
10273 \begin_inset Text
10274
10275 \begin_layout Plain Layout
10276 Befehl
10277 \end_layout
10278
10279 \end_inset
10280 </cell>
10281 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
10282 \begin_inset Text
10283
10284 \begin_layout Plain Layout
10285 Ergebnis
10286 \begin_inset Note Note
10287 status collapsed
10288
10289 \begin_layout Plain Layout
10290
10291 \series bold
10292
10293 \backslash
10294 raisebox
10295 \series default
10296  dient nur als Abstandhalter.
10297 \end_layout
10298
10299 \end_inset
10300
10301
10302 \end_layout
10303
10304 \end_inset
10305 </cell>
10306 </row>
10307 <row>
10308 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
10309 \begin_inset Text
10310
10311 \begin_layout Plain Layout
10312
10313 \backslash
10314 overleftarrow
10315 \begin_inset ERT
10316 status collapsed
10317
10318 \begin_layout Plain Layout
10319
10320
10321 \backslash
10322 leer 
10323 \end_layout
10324
10325 \end_inset
10326
10327 A=B
10328 \end_layout
10329
10330 \end_inset
10331 </cell>
10332 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
10333 \begin_inset Text
10334
10335 \begin_layout Plain Layout
10336 \begin_inset Formula $\raisebox{6mm}{}\overleftarrow{A=B}\raisebox{-2mm}{}$
10337 \end_inset
10338
10339
10340 \end_layout
10341
10342 \end_inset
10343 </cell>
10344 </row>
10345 <row>
10346 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10347 \begin_inset Text
10348
10349 \begin_layout Plain Layout
10350
10351 \backslash
10352 underleftarrow
10353 \begin_inset ERT
10354 status collapsed
10355
10356 \begin_layout Plain Layout
10357
10358
10359 \backslash
10360 leer 
10361 \end_layout
10362
10363 \end_inset
10364
10365 A=B
10366 \end_layout
10367
10368 \end_inset
10369 </cell>
10370 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
10371 \begin_inset Text
10372
10373 \begin_layout Plain Layout
10374 \begin_inset Formula $\raisebox{5mm}{}\underleftarrow{A=B}\raisebox{-3mm}{}$
10375 \end_inset
10376
10377
10378 \end_layout
10379
10380 \end_inset
10381 </cell>
10382 </row>
10383 <row>
10384 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10385 \begin_inset Text
10386
10387 \begin_layout Plain Layout
10388
10389 \backslash
10390 overleftrightarrow
10391 \begin_inset ERT
10392 status collapsed
10393
10394 \begin_layout Plain Layout
10395
10396
10397 \backslash
10398 leer 
10399 \end_layout
10400
10401 \end_inset
10402
10403 A=B
10404 \end_layout
10405
10406 \end_inset
10407 </cell>
10408 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
10409 \begin_inset Text
10410
10411 \begin_layout Plain Layout
10412 \begin_inset Formula $\raisebox{6mm}{}\overleftrightarrow{A=B}\raisebox{-2mm}{}$
10413 \end_inset
10414
10415
10416 \end_layout
10417
10418 \end_inset
10419 </cell>
10420 </row>
10421 <row>
10422 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10423 \begin_inset Text
10424
10425 \begin_layout Plain Layout
10426
10427 \backslash
10428 underleftrightarrow
10429 \begin_inset ERT
10430 status collapsed
10431
10432 \begin_layout Plain Layout
10433
10434
10435 \backslash
10436 leer 
10437 \end_layout
10438
10439 \end_inset
10440
10441 A=B
10442 \end_layout
10443
10444 \end_inset
10445 </cell>
10446 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
10447 \begin_inset Text
10448
10449 \begin_layout Plain Layout
10450 \begin_inset Formula $\raisebox{5mm}{}\underleftrightarrow{A=B}\raisebox{-3mm}{}$
10451 \end_inset
10452
10453
10454 \end_layout
10455
10456 \end_inset
10457 </cell>
10458 </row>
10459 </lyxtabular>
10460
10461 \end_inset
10462
10463
10464 \begin_inset space \hfill{}
10465 \end_inset
10466
10467
10468 \begin_inset Tabular
10469 <lyxtabular version="3" rows="5" columns="2">
10470 <features>
10471 <column alignment="center" valignment="top" width="0pt">
10472 <column alignment="center" valignment="top" width="0pt">
10473 <row>
10474 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
10475 \begin_inset Text
10476
10477 \begin_layout Plain Layout
10478 Befehl
10479 \end_layout
10480
10481 \end_inset
10482 </cell>
10483 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
10484 \begin_inset Text
10485
10486 \begin_layout Plain Layout
10487 Ergebnis
10488 \end_layout
10489
10490 \end_inset
10491 </cell>
10492 </row>
10493 <row>
10494 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
10495 \begin_inset Text
10496
10497 \begin_layout Plain Layout
10498
10499 \backslash
10500 overrightarrow
10501 \begin_inset ERT
10502 status collapsed
10503
10504 \begin_layout Plain Layout
10505
10506
10507 \backslash
10508 leer 
10509 \end_layout
10510
10511 \end_inset
10512
10513 A=B
10514 \end_layout
10515
10516 \end_inset
10517 </cell>
10518 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
10519 \begin_inset Text
10520
10521 \begin_layout Plain Layout
10522 \begin_inset Formula $\raisebox{6mm}{}\overrightarrow{A=B}\raisebox{-2mm}{}$
10523 \end_inset
10524
10525
10526 \end_layout
10527
10528 \end_inset
10529 </cell>
10530 </row>
10531 <row>
10532 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10533 \begin_inset Text
10534
10535 \begin_layout Plain Layout
10536
10537 \backslash
10538 underrightarrow
10539 \begin_inset ERT
10540 status collapsed
10541
10542 \begin_layout Plain Layout
10543
10544
10545 \backslash
10546 leer 
10547 \end_layout
10548
10549 \end_inset
10550
10551 A=B
10552 \end_layout
10553
10554 \end_inset
10555 </cell>
10556 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
10557 \begin_inset Text
10558
10559 \begin_layout Plain Layout
10560 \begin_inset Formula $\raisebox{5mm}{}\underrightarrow{A=B}\raisebox{-3mm}{}$
10561 \end_inset
10562
10563
10564 \end_layout
10565
10566 \end_inset
10567 </cell>
10568 </row>
10569 <row>
10570 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10571 \begin_inset Text
10572
10573 \begin_layout Plain Layout
10574
10575 \backslash
10576 widetilde
10577 \begin_inset ERT
10578 status collapsed
10579
10580 \begin_layout Plain Layout
10581
10582
10583 \backslash
10584 leer 
10585 \end_layout
10586
10587 \end_inset
10588
10589 A=B
10590 \end_layout
10591
10592 \end_inset
10593 </cell>
10594 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
10595 \begin_inset Text
10596
10597 \begin_layout Plain Layout
10598 \begin_inset Formula $\raisebox{6mm}{}\widetilde{A=B}\raisebox{-2mm}{}$
10599 \end_inset
10600
10601
10602 \end_layout
10603
10604 \end_inset
10605 </cell>
10606 </row>
10607 <row>
10608 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10609 \begin_inset Text
10610
10611 \begin_layout Plain Layout
10612
10613 \backslash
10614 widehat
10615 \begin_inset ERT
10616 status collapsed
10617
10618 \begin_layout Plain Layout
10619
10620
10621 \backslash
10622 leer 
10623 \end_layout
10624
10625 \end_inset
10626
10627 A=B
10628 \end_layout
10629
10630 \end_inset
10631 </cell>
10632 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
10633 \begin_inset Text
10634
10635 \begin_layout Plain Layout
10636 \begin_inset Formula $\raisebox{6mm}{}\widehat{A=B}\raisebox{-2mm}{}$
10637 \end_inset
10638
10639
10640 \end_layout
10641
10642 \end_inset
10643 </cell>
10644 </row>
10645 </lyxtabular>
10646
10647 \end_inset
10648
10649
10650 \begin_inset space \hfill{}
10651 \end_inset
10652
10653
10654 \end_layout
10655
10656 \begin_layout Standard
10657 \begin_inset VSpace medskip
10658 \end_inset
10659
10660 Mit diesen Befehlen können beliebig viele Zeichen akzentuiert werden.
10661  Die Akzente
10662 \begin_inset Newline linebreak
10663 \end_inset
10664
10665
10666 \series bold
10667
10668 \backslash
10669 widetilde
10670 \series default
10671  und 
10672 \series bold
10673
10674 \backslash
10675 widehat
10676 \series default
10677  werden aber im Ausdruck nur mit einer Länge von etwa drei Zeichen gesetzt,
10678  was folgendes Beispiel verdeutlicht:
10679 \begin_inset Formula \[
10680 \widetilde{A+B=C-D}\]
10681
10682 \end_inset
10683
10684
10685 \end_layout
10686
10687 \begin_layout Standard
10688 Mit den im vorigen Kapitel beschriebenen Befehlen 
10689 \series bold
10690
10691 \backslash
10692 overset
10693 \series default
10694
10695 \begin_inset Index
10696 status collapsed
10697
10698 \begin_layout Plain Layout
10699 Befehle ! O ! 
10700 \backslash
10701 overset
10702 \end_layout
10703
10704 \end_inset
10705
10706  und 
10707 \series bold
10708
10709 \backslash
10710 underset
10711 \series default
10712
10713 \begin_inset Index
10714 status collapsed
10715
10716 \begin_layout Plain Layout
10717 Befehle ! U ! 
10718 \backslash
10719 underset
10720 \end_layout
10721
10722 \end_inset
10723
10724  ist es auch möglich mehrere Zeichen zu akzentuieren.
10725  Der Befehl 
10726 \series bold
10727
10728 \backslash
10729 underset
10730 \begin_inset ERT
10731 status collapsed
10732
10733 \begin_layout Plain Layout
10734
10735
10736 \backslash
10737 leer 
10738 \end_layout
10739
10740 \end_inset
10741
10742 A=B
10743 \begin_inset Formula $\downarrow$
10744 \end_inset
10745
10746 ***
10747 \series default
10748  ergibt:
10749 \begin_inset Formula \[
10750 \underset{***}{A=B}\]
10751
10752 \end_inset
10753
10754
10755 \end_layout
10756
10757 \begin_layout Section
10758 Leerraum
10759 \begin_inset CommandInset label
10760 LatexCommand label
10761 name "sub:Leerraum"
10762
10763 \end_inset
10764
10765
10766 \begin_inset Index
10767 status collapsed
10768
10769 \begin_layout Plain Layout
10770 Leerraum ! horizontaler
10771 \end_layout
10772
10773 \end_inset
10774
10775
10776 \end_layout
10777
10778 \begin_layout Subsection
10779 Vordefinierter Leerraum
10780 \begin_inset CommandInset label
10781 LatexCommand label
10782 name "sub:Vordefinierter-Leerraum"
10783
10784 \end_inset
10785
10786
10787 \begin_inset Index
10788 status collapsed
10789
10790 \begin_layout Plain Layout
10791 Leerraum ! horizontaler ! vordefiniert
10792 \end_layout
10793
10794 \end_inset
10795
10796
10797 \end_layout
10798
10799 \begin_layout Standard
10800 Ab und an ist es notwendig in einer Formel horizontalen Leerraum einzufügen.
10801  Dazu gibt man ein geschütztes Leerzeichen ein.
10802  Es erscheint ein blaues 
10803 \begin_inset Quotes gld
10804 \end_inset
10805
10806
10807 \series bold
10808 \color blue
10809
10810 \begin_inset ERT
10811 status collapsed
10812
10813 \begin_layout Plain Layout
10814
10815
10816 \backslash
10817 leer 
10818 \end_layout
10819
10820 \end_inset
10821
10822
10823 \series default
10824 \color inherit
10825
10826 \begin_inset Quotes grd
10827 \end_inset
10828
10829  und man kann durch mehrfaches Drücken der Leertaste aus acht verschiedenen
10830  Leerraum-Größen wählen.
10831  Man kann die Leerräume auch über den Mathe-Werkzeugleistenknopf 
10832 \begin_inset Graphics
10833         filename ../../images/math/space.png
10834         scale 85
10835
10836 \end_inset
10837
10838  oder mit einzelnen Befehlen aufrufen.
10839  Unabhängig vom eingegebenen Befehl kann man durch Drücken der Leertaste
10840  danach wieder aus allen Größen wählen.
10841 \end_layout
10842
10843 \begin_layout Standard
10844 \align center
10845 \begin_inset VSpace -5mm
10846 \end_inset
10847
10848
10849 \begin_inset Tabular
10850 <lyxtabular version="3" rows="3" columns="7">
10851 <features>
10852 <column alignment="center" valignment="middle" width="6.8cm">
10853 <column alignment="center" valignment="top" width="0pt">
10854 <column alignment="center" valignment="top" width="0pt">
10855 <column alignment="center" valignment="top" width="0pt">
10856 <column alignment="center" valignment="top" width="0pt">
10857 <column alignment="center" valignment="top" width="0pt">
10858 <column alignment="center" valignment="top" width="0pt">
10859 <row>
10860 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
10861 \begin_inset Text
10862
10863 \begin_layout Plain Layout
10864 Befehl
10865 \end_layout
10866
10867 \end_inset
10868 </cell>
10869 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
10870 \begin_inset Text
10871
10872 \begin_layout Plain Layout
10873
10874 \backslash
10875 ,
10876 \end_layout
10877
10878 \end_inset
10879 </cell>
10880 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
10881 \begin_inset Text
10882
10883 \begin_layout Plain Layout
10884
10885 \backslash
10886 :
10887 \end_layout
10888
10889 \end_inset
10890 </cell>
10891 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
10892 \begin_inset Text
10893
10894 \begin_layout Plain Layout
10895
10896 \backslash
10897 ;
10898 \end_layout
10899
10900 \end_inset
10901 </cell>
10902 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
10903 \begin_inset Text
10904
10905 \begin_layout Plain Layout
10906
10907 \backslash
10908 quad
10909 \end_layout
10910
10911 \end_inset
10912 </cell>
10913 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
10914 \begin_inset Text
10915
10916 \begin_layout Plain Layout
10917
10918 \backslash
10919 qquad
10920 \end_layout
10921
10922 \end_inset
10923 </cell>
10924 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
10925 \begin_inset Text
10926
10927 \begin_layout Plain Layout
10928
10929 \backslash
10930 !
10931 \end_layout
10932
10933 \end_inset
10934 </cell>
10935 </row>
10936 <row>
10937 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none" width="7cm">
10938 \begin_inset Text
10939
10940 \begin_layout Plain Layout
10941 Anzahl der Leertastendrücke nach Eingabe des geschützten Leerzeichens
10942 \end_layout
10943
10944 \end_inset
10945 </cell>
10946 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10947 \begin_inset Text
10948
10949 \begin_layout Plain Layout
10950 0
10951 \end_layout
10952
10953 \end_inset
10954 </cell>
10955 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10956 \begin_inset Text
10957
10958 \begin_layout Plain Layout
10959 1
10960 \end_layout
10961
10962 \end_inset
10963 </cell>
10964 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10965 \begin_inset Text
10966
10967 \begin_layout Plain Layout
10968 2
10969 \end_layout
10970
10971 \end_inset
10972 </cell>
10973 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10974 \begin_inset Text
10975
10976 \begin_layout Plain Layout
10977 3
10978 \end_layout
10979
10980 \end_inset
10981 </cell>
10982 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10983 \begin_inset Text
10984
10985 \begin_layout Plain Layout
10986 4
10987 \end_layout
10988
10989 \end_inset
10990 </cell>
10991 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
10992 \begin_inset Text
10993
10994 \begin_layout Plain Layout
10995 5
10996 \end_layout
10997
10998 \end_inset
10999 </cell>
11000 </row>
11001 <row>
11002 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11003 \begin_inset Text
11004
11005 \begin_layout Plain Layout
11006 Ergebnis
11007 \end_layout
11008
11009 \end_inset
11010 </cell>
11011 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11012 \begin_inset Text
11013
11014 \begin_layout Plain Layout
11015 \begin_inset Formula $A\, B$
11016 \end_inset
11017
11018
11019 \end_layout
11020
11021 \end_inset
11022 </cell>
11023 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11024 \begin_inset Text
11025
11026 \begin_layout Plain Layout
11027 \begin_inset Formula $A\: B$
11028 \end_inset
11029
11030
11031 \end_layout
11032
11033 \end_inset
11034 </cell>
11035 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11036 \begin_inset Text
11037
11038 \begin_layout Plain Layout
11039 \begin_inset Formula $A\; B$
11040 \end_inset
11041
11042
11043 \end_layout
11044
11045 \end_inset
11046 </cell>
11047 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11048 \begin_inset Text
11049
11050 \begin_layout Plain Layout
11051 \begin_inset Formula $A\quad B$
11052 \end_inset
11053
11054
11055 \end_layout
11056
11057 \end_inset
11058 </cell>
11059 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11060 \begin_inset Text
11061
11062 \begin_layout Plain Layout
11063 \begin_inset Formula $A\qquad B$
11064 \end_inset
11065
11066
11067 \end_layout
11068
11069 \end_inset
11070 </cell>
11071 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
11072 \begin_inset Text
11073
11074 \begin_layout Plain Layout
11075 \begin_inset Formula $A\! B$
11076 \end_inset
11077
11078
11079 \end_layout
11080
11081 \end_inset
11082 </cell>
11083 </row>
11084 </lyxtabular>
11085
11086 \end_inset
11087
11088
11089 \end_layout
11090
11091 \begin_layout Standard
11092 Die letzte Größe scheint überhaupt keinen Leerraum zu produzieren.
11093  In LyX ist diese allerdings auch im Gegensatz zu allen anderen rot eingefärbt,
11094  denn sie erstellt negativen Leerraum.
11095  Es gibt noch zwei weitere negative Leerräume:
11096 \end_layout
11097
11098 \begin_layout Standard
11099 \align center
11100 \begin_inset Tabular
11101 <lyxtabular version="3" rows="3" columns="3">
11102 <features>
11103 <column alignment="center" valignment="middle" width="6.8cm">
11104 <column alignment="center" valignment="top" width="0pt">
11105 <column alignment="center" valignment="top" width="0pt">
11106 <row>
11107 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11108 \begin_inset Text
11109
11110 \begin_layout Plain Layout
11111 Befehl
11112 \end_layout
11113
11114 \end_inset
11115 </cell>
11116 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11117 \begin_inset Text
11118
11119 \begin_layout Plain Layout
11120
11121 \backslash
11122 negmedspace
11123 \end_layout
11124
11125 \end_inset
11126 </cell>
11127 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
11128 \begin_inset Text
11129
11130 \begin_layout Plain Layout
11131
11132 \backslash
11133 negthickspace
11134 \end_layout
11135
11136 \end_inset
11137 </cell>
11138 </row>
11139 <row>
11140 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11141 \begin_inset Text
11142
11143 \begin_layout Plain Layout
11144 Anzahl der Leertastendrücke nach Eingabe des geschützten Leerzeichens
11145 \end_layout
11146
11147 \end_inset
11148 </cell>
11149 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11150 \begin_inset Text
11151
11152 \begin_layout Plain Layout
11153 6
11154 \end_layout
11155
11156 \end_inset
11157 </cell>
11158 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
11159 \begin_inset Text
11160
11161 \begin_layout Plain Layout
11162 7
11163 \end_layout
11164
11165 \end_inset
11166 </cell>
11167 </row>
11168 <row>
11169 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11170 \begin_inset Text
11171
11172 \begin_layout Plain Layout
11173 Ergebnis
11174 \end_layout
11175
11176 \end_inset
11177 </cell>
11178 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11179 \begin_inset Text
11180
11181 \begin_layout Plain Layout
11182 \begin_inset Formula $A\negmedspace B$
11183 \end_inset
11184
11185
11186 \end_layout
11187
11188 \end_inset
11189 </cell>
11190 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
11191 \begin_inset Text
11192
11193 \begin_layout Plain Layout
11194 \begin_inset Formula $A\negthickspace B$
11195 \end_inset
11196
11197
11198 \end_layout
11199
11200 \end_inset
11201 </cell>
11202 </row>
11203 </lyxtabular>
11204
11205 \end_inset
11206
11207
11208 \end_layout
11209
11210 \begin_layout Standard
11211 Negative Leerräume bewirken, dass sich benachbarte Zeichen überschneiden.
11212  Man kann auf diese Weise Ligaturen erzwingen, was z.
11213 \begin_inset space \thinspace{}
11214 \end_inset
11215
11216 B.
11217  für Summenzeichen von Nutzen ist: 
11218 \end_layout
11219
11220 \begin_layout Standard
11221 \align center
11222 \begin_inset Tabular
11223 <lyxtabular version="3" rows="3" columns="2">
11224 <features>
11225 <column alignment="center" valignment="top" width="0">
11226 <column alignment="center" valignment="top" width="0">
11227 <row>
11228 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11229 \begin_inset Text
11230
11231 \begin_layout Plain Layout
11232 Befehl
11233 \end_layout
11234
11235 \end_inset
11236 </cell>
11237 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
11238 \begin_inset Text
11239
11240 \begin_layout Plain Layout
11241 Ergebnis
11242 \begin_inset Note Note
11243 status collapsed
11244
11245 \begin_layout Plain Layout
11246
11247 \series bold
11248
11249 \backslash
11250 raisebox
11251 \series default
11252  dient nur als Abstandhalter.
11253 \end_layout
11254
11255 \end_inset
11256
11257
11258 \end_layout
11259
11260 \end_inset
11261 </cell>
11262 </row>
11263 <row>
11264 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11265 \begin_inset Text
11266
11267 \begin_layout Plain Layout
11268
11269 \backslash
11270 sum
11271 \backslash
11272 sum
11273 \begin_inset ERT
11274 status collapsed
11275
11276 \begin_layout Plain Layout
11277
11278
11279 \backslash
11280 leer 
11281 \end_layout
11282
11283 \end_inset
11284
11285 f_kl
11286 \end_layout
11287
11288 \end_inset
11289 </cell>
11290 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11291 \begin_inset Text
11292
11293 \begin_layout Plain Layout
11294 \begin_inset Formula $\raisebox{4.5mm}{}\sum\sum f_{kl}\raisebox{-2.5mm}{}$
11295 \end_inset
11296
11297
11298 \end_layout
11299
11300 \end_inset
11301 </cell>
11302 </row>
11303 <row>
11304 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11305 \begin_inset Text
11306
11307 \begin_layout Plain Layout
11308
11309 \backslash
11310 sum
11311 \backslash
11312 negmedspace
11313 \backslash
11314 sum
11315 \begin_inset ERT
11316 status collapsed
11317
11318 \begin_layout Plain Layout
11319
11320
11321 \backslash
11322 leer 
11323 \end_layout
11324
11325 \end_inset
11326
11327 f_kl
11328 \end_layout
11329
11330 \end_inset
11331 </cell>
11332 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
11333 \begin_inset Text
11334
11335 \begin_layout Plain Layout
11336 \begin_inset Formula $\raisebox{4.5mm}{}\sum\negmedspace\sum f_{kl}\raisebox{-2.5mm}{}$
11337 \end_inset
11338
11339
11340 \end_layout
11341
11342 \end_inset
11343 </cell>
11344 </row>
11345 </lyxtabular>
11346
11347 \end_inset
11348
11349
11350 \end_layout
11351
11352 \begin_layout Standard
11353 Relationen, wie z.
11354 \begin_inset space \thinspace{}
11355 \end_inset
11356
11357 B.
11358  Gleichheitszeichen, sind immer von Leerraum umgeben.
11359  Will man dies unterdrücken, schreibt man das Gleichheitszeichen in eine
11360  TeX-Klammer.
11361  Die Wirkung kann man an folgendem Beispiel gut erkennen:
11362 \end_layout
11363
11364 \begin_layout Standard
11365 \align center
11366 \begin_inset Tabular
11367 <lyxtabular version="3" rows="2" columns="2">
11368 <features>
11369 <column alignment="center" valignment="top" width="0pt">
11370 <column alignment="center" valignment="top" width="0pt">
11371 <row>
11372 <cell alignment="center" valignment="top" usebox="none">
11373 \begin_inset Text
11374
11375 \begin_layout Plain Layout
11376 normale Gleichung
11377 \end_layout
11378
11379 \end_inset
11380 </cell>
11381 <cell alignment="center" valignment="top" usebox="none">
11382 \begin_inset Text
11383
11384 \begin_layout Plain Layout
11385 \begin_inset Formula $A=B$
11386 \end_inset
11387
11388
11389 \end_layout
11390
11391 \end_inset
11392 </cell>
11393 </row>
11394 <row>
11395 <cell alignment="center" valignment="top" usebox="none">
11396 \begin_inset Text
11397
11398 \begin_layout Plain Layout
11399 \begin_inset Note Note
11400 status collapsed
11401
11402 \begin_layout Plain Layout
11403
11404 \series bold
11405
11406 \backslash
11407 raisebox
11408 \series default
11409  dient nur als Abstandhalter.
11410 \end_layout
11411
11412 \end_inset
11413
11414
11415 \begin_inset Formula $\raisebox{5mm}{}$
11416 \end_inset
11417
11418 Gleichung ohne Leerraum
11419 \end_layout
11420
11421 \end_inset
11422 </cell>
11423 <cell multicolumn="1" alignment="center" valignment="top" usebox="none">
11424 \begin_inset Text
11425
11426 \begin_layout Plain Layout
11427 \begin_inset Formula $A{=}B$
11428 \end_inset
11429
11430
11431 \end_layout
11432
11433 \end_inset
11434 </cell>
11435 </row>
11436 </lyxtabular>
11437
11438 \end_inset
11439
11440
11441 \end_layout
11442
11443 \begin_layout Standard
11444 Der Befehl für die letzte Formel lautet: 
11445 \series bold
11446 A
11447 \backslash
11448 {=
11449 \begin_inset Formula $\to$
11450 \end_inset
11451
11452 B
11453 \end_layout
11454
11455 \begin_layout Standard
11456 \begin_inset VSpace bigskip
11457 \end_inset
11458
11459 Leerräumen werden für physikalische Einheiten benötigt, denn zwischen Wert
11460  und Einheit ist der kleinste Leerraum und kein normales Leerzeichen.
11461  Bei Einheiten im Text fügt man den kleinsten Leerraum über das Menü 
11462 \family sans
11463 Einfügen\SpecialChar \menuseparator
11464 Formatierung\SpecialChar \menuseparator
11465 Kleiner
11466 \begin_inset space ~
11467 \end_inset
11468
11469 Abstand
11470 \family default
11471  (Tastenkürzel 
11472 \family sans
11473 Strg-Shift-Leertaste
11474 \family default
11475 ) ein.
11476 \end_layout
11477
11478 \begin_layout Standard
11479 Ein Beispiel zur Veranschaulichung:
11480 \end_layout
11481
11482 \begin_layout Standard
11483 \begin_inset Tabular
11484 <lyxtabular version="3" rows="2" columns="2">
11485 <features>
11486 <column alignment="left" valignment="top" width="0">
11487 <column alignment="left" valignment="top" width="0">
11488 <row>
11489 <cell alignment="center" valignment="top" usebox="none">
11490 \begin_inset Text
11491
11492 \begin_layout Plain Layout
11493 24 kW
11494 \begin_inset Formula $\cdot$
11495 \end_inset
11496
11497 h
11498 \end_layout
11499
11500 \end_inset
11501 </cell>
11502 <cell alignment="center" valignment="top" usebox="none">
11503 \begin_inset Text
11504
11505 \begin_layout Plain Layout
11506 Leerzeichen zwischen Wert und Einheit
11507 \end_layout
11508
11509 \end_inset
11510 </cell>
11511 </row>
11512 <row>
11513 <cell alignment="center" valignment="top" usebox="none">
11514 \begin_inset Text
11515
11516 \begin_layout Plain Layout
11517 24
11518 \begin_inset space \thinspace{}
11519 \end_inset
11520
11521 kW
11522 \begin_inset Formula $\cdot$
11523 \end_inset
11524
11525 h
11526 \end_layout
11527
11528 \end_inset
11529 </cell>
11530 <cell alignment="center" valignment="top" usebox="none">
11531 \begin_inset Text
11532
11533 \begin_layout Plain Layout
11534 kleinster Leerraum zwischen Wert und Einheit
11535 \end_layout
11536
11537 \end_inset
11538 </cell>
11539 </row>
11540 </lyxtabular>
11541
11542 \end_inset
11543
11544
11545 \end_layout
11546
11547 \begin_layout Subsection
11548 Variabler Leerraum
11549 \begin_inset ERT
11550 status collapsed
11551
11552 \begin_layout Plain Layout
11553
11554
11555 \backslash
11556 texorpdfstring{
11557 \end_layout
11558
11559 \end_inset
11560
11561
11562 \begin_inset Foot
11563 status collapsed
11564
11565 \begin_layout Plain Layout
11566 für vertikalen Leerraum in Formeln siehe 
11567 \begin_inset CommandInset ref
11568 LatexCommand ref
11569 reference "sub:Zeilenabstand"
11570
11571 \end_inset
11572
11573
11574 \end_layout
11575
11576 \end_inset
11577
11578
11579 \begin_inset ERT
11580 status collapsed
11581
11582 \begin_layout Plain Layout
11583
11584 }{}
11585 \end_layout
11586
11587 \end_inset
11588
11589
11590 \begin_inset Note Note
11591 status collapsed
11592
11593 \begin_layout Plain Layout
11594
11595 \series bold
11596
11597 \backslash
11598 texorpdfstring
11599 \series default
11600  dient dazu, dass die Fußnote nicht mit im PDF-Lesezeichen erscheint.
11601 \end_layout
11602
11603 \begin_layout Plain Layout
11604 Näheres zu 
11605 \series bold
11606
11607 \backslash
11608 texorpdfstring
11609 \series default
11610  steht in Kapitel 
11611 \begin_inset CommandInset ref
11612 LatexCommand ref
11613 reference "sub:Formeln-in-Überschriften"
11614
11615 \end_inset
11616
11617 .
11618 \end_layout
11619
11620 \end_inset
11621
11622
11623 \begin_inset CommandInset label
11624 LatexCommand label
11625 name "sub:Variabler-Leerraum"
11626
11627 \end_inset
11628
11629
11630 \begin_inset Index
11631 status collapsed
11632
11633 \begin_layout Plain Layout
11634 Leerraum ! horizontaler ! variabel
11635 \end_layout
11636
11637 \end_inset
11638
11639
11640 \end_layout
11641
11642 \begin_layout Standard
11643 Leerraum mit vorgegebener Länge lässt sich in LyX mit dem Befehl 
11644 \series bold
11645
11646 \backslash
11647 hspace{Länge}
11648 \series default
11649
11650 \begin_inset Index
11651 status collapsed
11652
11653 \begin_layout Plain Layout
11654 Befehle ! H ! 
11655 \backslash
11656 hspace
11657 \end_layout
11658
11659 \end_inset
11660
11661  einfügen.
11662  Dabei können alle Längeneinheiten verwendet werden, die in 
11663 \begin_inset CommandInset ref
11664 LatexCommand ref
11665 reference "tab:Verwendete-Einheiten"
11666
11667 \end_inset
11668
11669  aufgelistet sind, mit Ausnahme der Einheit 
11670 \begin_inset Quotes gld
11671 \end_inset
11672
11673 mu
11674 \begin_inset Quotes grd
11675 \end_inset
11676
11677 .
11678  Die Länge darf auch negativ sein.
11679  Um so viel Leerraum einzufügen, dass die Formel allen verfügbaren Platz
11680  einnimmt, benutzt man den Befehl 
11681 \series bold
11682
11683 \backslash
11684 hfill
11685 \series default
11686
11687 \begin_inset Index
11688 status collapsed
11689
11690 \begin_layout Plain Layout
11691 Befehle ! H ! 
11692 \backslash
11693 hfill
11694 \end_layout
11695
11696 \end_inset
11697
11698 .
11699 \end_layout
11700
11701 \begin_layout Standard
11702 \begin_inset VSpace -1mm
11703 \end_inset
11704
11705
11706 \end_layout
11707
11708 \begin_layout Standard
11709 \align center
11710 \begin_inset Tabular
11711 <lyxtabular version="3" rows="4" columns="2">
11712 <features>
11713 <column alignment="center" valignment="top" width="0">
11714 <column alignment="center" valignment="top" width="0">
11715 <row>
11716 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11717 \begin_inset Text
11718
11719 \begin_layout Plain Layout
11720 Befehl
11721 \end_layout
11722
11723 \end_inset
11724 </cell>
11725 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
11726 \begin_inset Text
11727
11728 \begin_layout Plain Layout
11729 Ergebnis
11730 \end_layout
11731
11732 \end_inset
11733 </cell>
11734 </row>
11735 <row>
11736 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11737 \begin_inset Text
11738
11739 \begin_layout Plain Layout
11740 A=B
11741 \backslash
11742 hspace{3cm
11743 \begin_inset Formula $\to$
11744 \end_inset
11745
11746 A
11747 \backslash
11748 not=C
11749 \end_layout
11750
11751 \end_inset
11752 </cell>
11753 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11754 \begin_inset Text
11755
11756 \begin_layout Plain Layout
11757 \begin_inset Formula $A=B\hspace{3cm}A\not=C$
11758 \end_inset
11759
11760
11761 \end_layout
11762
11763 \end_inset
11764 </cell>
11765 </row>
11766 <row>
11767 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11768 \begin_inset Text
11769
11770 \begin_layout Plain Layout
11771 A
11772 \backslash
11773 hspace{-1mm
11774 \begin_inset Formula $\to$
11775 \end_inset
11776
11777 A
11778 \backslash
11779 not=A
11780 \end_layout
11781
11782 \end_inset
11783 </cell>
11784 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
11785 \begin_inset Text
11786
11787 \begin_layout Plain Layout
11788 \begin_inset Formula $A\hspace{-1mm}A\not=A$
11789 \end_inset
11790
11791
11792 \end_layout
11793
11794 \end_inset
11795 </cell>
11796 </row>
11797 <row>
11798 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11799 \begin_inset Text
11800
11801 \begin_layout Plain Layout
11802 A=A
11803 \backslash
11804 hfill
11805 \begin_inset ERT
11806 status collapsed
11807
11808 \begin_layout Plain Layout
11809
11810
11811 \backslash
11812 leer 
11813 \end_layout
11814
11815 \end_inset
11816
11817 B=B
11818 \end_layout
11819
11820 \end_inset
11821 </cell>
11822 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
11823 \begin_inset Text
11824
11825 \begin_layout Plain Layout
11826 \begin_inset Formula $A=A\hfill B=B$
11827 \end_inset
11828
11829
11830 \end_layout
11831
11832 \end_inset
11833 </cell>
11834 </row>
11835 </lyxtabular>
11836
11837 \end_inset
11838
11839
11840 \end_layout
11841
11842 \begin_layout Standard
11843 Im letzten Beispiel ist der verfügbare Platz durch die Länge des längsten
11844  Spalteneintrags der Tabelle vorgegeben.
11845  In einer eingebetteten Formel ist der Platz von der Länge der Zeile abhängig,
11846  in die 
11847 \series bold
11848
11849 \backslash
11850 hfill
11851 \series default
11852  eingegeben wird.
11853  Füllt eine Zeile die Breite komplett aus, wird demnach kein Leerraum erstellt.
11854  
11855 \series bold
11856
11857 \backslash
11858 hfill
11859 \series default
11860  wirkt in abgesetzten Formeln nur, wenn der Formelstil 
11861 \series bold
11862 Eingerückt
11863 \series default
11864  eingestellt ist.
11865  (Formelstile sind in 
11866 \begin_inset CommandInset ref
11867 LatexCommand ref
11868 reference "sec:Formelstile"
11869
11870 \end_inset
11871
11872  erklärt.)
11873 \end_layout
11874
11875 \begin_layout Standard
11876 Variabler Leerraum kann für Text über das Menü 
11877 \family sans
11878 Einfügen\SpecialChar \menuseparator
11879 Formatierung\SpecialChar \menuseparator
11880 Horizontaler
11881 \begin_inset space ~
11882 \end_inset
11883
11884 Abstand
11885 \family default
11886  eingefügt werden, was in Formeln nicht möglich ist:
11887 \end_layout
11888
11889 \begin_layout Standard
11890 Dies ist eine Zeile mit
11891 \begin_inset space \hspace{}
11892 \length 2cm
11893 \end_inset
11894
11895 2
11896 \begin_inset space \thinspace{}
11897 \end_inset
11898
11899 cm Leerraum.
11900 \end_layout
11901
11902 \begin_layout Standard
11903 Dies ist eine Zeile mit
11904 \begin_inset space \hfill{}
11905 \end_inset
11906
11907 maximalem Leerraum.
11908 \end_layout
11909
11910 \begin_layout Subsection
11911 Leerraum neben eingebetteten Formeln
11912 \begin_inset Index
11913 status collapsed
11914
11915 \begin_layout Plain Layout
11916 Leerraum ! neben eingebetteten Formeln
11917 \end_layout
11918
11919 \end_inset
11920
11921
11922 \end_layout
11923
11924 \begin_layout Standard
11925 Über die Länge 
11926 \series bold
11927
11928 \backslash
11929 mathsurround
11930 \begin_inset Index
11931 status collapsed
11932
11933 \begin_layout Plain Layout
11934 Befehle ! M ! 
11935 \backslash
11936 mathsurround
11937 \end_layout
11938
11939 \end_inset
11940
11941
11942 \series default
11943  lässt sich der Leerraum einstellen, der neben eingebettete Formeln gesetzt
11944  wird.
11945  Der Wert einer Länge wird mit dem Befehl 
11946 \series bold
11947
11948 \backslash
11949 setlength
11950 \begin_inset Index
11951 status collapsed
11952
11953 \begin_layout Plain Layout
11954 Befehle ! S ! 
11955 \backslash
11956 setlength
11957 \end_layout
11958
11959 \end_inset
11960
11961
11962 \series default
11963  gesetzt.
11964  Dieser besitzt folgendes Befehlsschema:
11965 \end_layout
11966
11967 \begin_layout Standard
11968
11969 \series bold
11970
11971 \backslash
11972 setlength{Längenname}{Wert}
11973 \end_layout
11974
11975 \begin_layout Standard
11976 Um 
11977 \series bold
11978
11979 \backslash
11980 mathsurround
11981 \series default
11982  den Wert 5
11983 \begin_inset space \thinspace{}
11984 \end_inset
11985
11986 mm zuzuweisen, gibt man im TeX-Modus den Befehl
11987 \end_layout
11988
11989 \begin_layout Standard
11990
11991 \series bold
11992
11993 \backslash
11994 setlength{
11995 \backslash
11996 mathsurround}{5mm}
11997 \end_layout
11998
11999 \begin_layout Standard
12000 ein.
12001  Neben alle eingebetteten Formeln, die auf den Befehl folgen, wird nun 5
12002 \begin_inset space \thinspace{}
12003 \end_inset
12004
12005 mm Leerraum gesetzt:
12006 \begin_inset ERT
12007 status collapsed
12008
12009 \begin_layout Plain Layout
12010
12011
12012 \backslash
12013 setlength{
12014 \backslash
12015 mathsurround}{5mm}
12016 \end_layout
12017
12018 \end_inset
12019
12020
12021 \end_layout
12022
12023 \begin_layout Standard
12024 Dies ist eine Zeile in der sich 
12025 \begin_inset Formula $A=B$
12026 \end_inset
12027
12028  eine Formel mit 5
12029 \begin_inset space \thinspace{}
12030 \end_inset
12031
12032 mm umgebendem Leerraum befindet.
12033 \begin_inset ERT
12034 status collapsed
12035
12036 \begin_layout Plain Layout
12037
12038
12039 \backslash
12040 setlength{
12041 \backslash
12042 mathsurround}{0pt}
12043 \end_layout
12044
12045 \end_inset
12046
12047
12048 \end_layout
12049
12050 \begin_layout Standard
12051 Um wieder zum voreingestellten Wert zurückzukehren, setzt man 
12052 \series bold
12053
12054 \backslash
12055 mathsurround
12056 \series default
12057  auf den Wert 0
12058 \begin_inset space \thinspace{}
12059 \end_inset
12060
12061 pt.
12062 \end_layout
12063
12064 \begin_layout Section
12065 Boxen und Rahmen
12066 \begin_inset Index
12067 status collapsed
12068
12069 \begin_layout Plain Layout
12070 Boxen
12071 \end_layout
12072
12073 \end_inset
12074
12075
12076 \begin_inset Index
12077 status collapsed
12078
12079 \begin_layout Plain Layout
12080 Rahmen | see
12081 \begin_inset ERT
12082 status collapsed
12083
12084 \begin_layout Plain Layout
12085
12086 {
12087 \end_layout
12088
12089 \end_inset
12090
12091 Boxen
12092 \begin_inset ERT
12093 status collapsed
12094
12095 \begin_layout Plain Layout
12096
12097 }
12098 \end_layout
12099
12100 \end_inset
12101
12102
12103 \end_layout
12104
12105 \end_inset
12106
12107
12108 \end_layout
12109
12110 \begin_layout Standard
12111 Boxen für Text sind im Kapitel 
12112 \family typewriter
12113 Boxen
12114 \family default
12115  im Handbuch 
12116 \family typewriter
12117 Eingebettete
12118 \begin_inset space ~
12119 \end_inset
12120
12121 Objekte
12122 \family default
12123  beschrieben.
12124 \end_layout
12125
12126 \begin_layout Subsection
12127 Boxen mit Rahmen
12128 \begin_inset CommandInset label
12129 LatexCommand label
12130 name "sub:Boxen-mit-Rahmen"
12131
12132 \end_inset
12133
12134
12135 \begin_inset Index
12136 status collapsed
12137
12138 \begin_layout Plain Layout
12139 Boxen ! mit Rahmen
12140 \end_layout
12141
12142 \end_inset
12143
12144
12145 \end_layout
12146
12147 \begin_layout Standard
12148 Es ist möglich Formeln oder Teile davon mit den Befehlen 
12149 \series bold
12150
12151 \backslash
12152 fbox
12153 \series default
12154
12155 \begin_inset Index
12156 status collapsed
12157
12158 \begin_layout Plain Layout
12159 Befehle ! F ! 
12160 \backslash
12161 fbox
12162 \end_layout
12163
12164 \end_inset
12165
12166  und 
12167 \series bold
12168
12169 \backslash
12170 boxed
12171 \series default
12172
12173 \begin_inset Index
12174 status collapsed
12175
12176 \begin_layout Plain Layout
12177 Befehle ! B ! 
12178 \backslash
12179 boxed
12180 \end_layout
12181
12182 \end_inset
12183
12184  zu umranden.
12185 \end_layout
12186
12187 \begin_layout Standard
12188 Gibt man einen dieser Befehle in eine Formel ein, erscheint ein Eingabefeld
12189  in einem Rahmen.
12190  Bei 
12191 \series bold
12192
12193 \backslash
12194 fbox
12195 \series default
12196  muss in diesem Eingabefeld mit 
12197 \family sans
12198 Strg-m
12199 \family default
12200  noch eine Formel erstellt werden
12201 \begin_inset Foot
12202 status collapsed
12203
12204 \begin_layout Plain Layout
12205 Aufgrund eines Fehlers in LyX ist es nicht möglich mit 
12206 \family sans
12207 Strg-m
12208 \family default
12209  eine neue Formel zu erzeugen, siehe 
12210 \begin_inset CommandInset href
12211 LatexCommand href
12212 name "LyX-Fehler #1435"
12213 target "http://bugzilla.lyx.org/show_bug.cgi?id=1435"
12214
12215 \end_inset
12216
12217 .
12218 \end_layout
12219
12220 \end_inset
12221
12222 , denn der Inhalt dieser Box wird sonst als mathematischer Text behandelt.
12223  Verwendet man 
12224 \series bold
12225
12226 \backslash
12227 boxed
12228 \series default
12229 , wird automatisch im Rahmen eine neue Formel erzeugt.
12230 \end_layout
12231
12232 \begin_layout Standard
12233 Der Befehl 
12234 \series bold
12235
12236 \backslash
12237 fbox
12238 \series default
12239  ist nicht zur Umrandung von abgesetzten Formeln geeignet, denn die Formel
12240  wird dann immer in Textzeilengröße gesetzt.
12241  Im Gegensatz dazu ist 
12242 \series bold
12243
12244 \backslash
12245 boxed
12246 \series default
12247  nicht zur Umrandung von Formeln in einer Textzeile geeignet, denn die Formel
12248  wird dann immer in der Größe einer abgesetzten Formel gesetzt.
12249 \end_layout
12250
12251 \begin_layout Standard
12252 Als Erweiterung zu 
12253 \series bold
12254
12255 \backslash
12256 fbox
12257 \series default
12258  gibt es den Befehl 
12259 \series bold
12260
12261 \backslash
12262 framebox
12263 \series default
12264
12265 \begin_inset Index
12266 status collapsed
12267
12268 \begin_layout Plain Layout
12269 Befehle ! F ! 
12270 \backslash
12271 framebox
12272 \end_layout
12273
12274 \end_inset
12275
12276 , bei dem man zusätzlich die Rahmenbreite und die Ausrichtung einstellen
12277  kann.
12278  
12279 \series bold
12280
12281 \backslash
12282 framebox
12283 \series default
12284  wird nach folgendem Schema verwendet:
12285 \end_layout
12286
12287 \begin_layout Standard
12288
12289 \series bold
12290
12291 \backslash
12292 framebox[Rahmenbreite][Position]{Boxinhalt}
12293 \end_layout
12294
12295 \begin_layout Standard
12296 Die Position kann entweder 
12297 \emph on
12298 l
12299 \emph default
12300  oder 
12301 \emph on
12302 r
12303 \emph default
12304  sein.
12305  
12306 \emph on
12307 l
12308 \emph default
12309  bewirkt linksbündige, 
12310 \emph on
12311 r
12312 \emph default
12313  rechtsbündige Ausrichtung der Formel in der Box.
12314  Gibt man keine Position an, wird die Formel zentriert.
12315 \begin_inset Newline newline
12316 \end_inset
12317
12318 Gibt man keine Breite an, darf auch keine Position angegeben werden.
12319  In diesem Falle wird die Rahmenbreite wie bei 
12320 \series bold
12321
12322 \backslash
12323 fbox
12324 \series default
12325  an den Boxinhalt angepasst.
12326 \end_layout
12327
12328 \begin_layout Standard
12329 Wenn man den Befehl 
12330 \series bold
12331
12332 \backslash
12333 framebox
12334 \series default
12335  eingibt, erscheint eine Box mit drei Eingabefeldern.
12336  Die ersten beiden sind von eckigen Klammern umgeben und stehen für die
12337  beiden optionalen Argumente.
12338  In das dritte Feld wird wie bei 
12339 \series bold
12340
12341 \backslash
12342 fbox
12343 \series default
12344  die Formel eingegeben.
12345 \end_layout
12346
12347 \begin_layout Standard
12348 \align center
12349 \begin_inset Note Note
12350 status open
12351
12352 \begin_layout Plain Layout
12353 Die Tabelle wurde in eine Minibox gesetzt damit die Fußnote der Tabelle
12354  auch erscheint.
12355  Denn sonst würde der Fußnotentext im Ausdruck nicht angezeigt werden.
12356 \end_layout
12357
12358 \end_inset
12359
12360
12361 \begin_inset Box Frameless
12362 position "c"
12363 hor_pos "c"
12364 has_inner_box 1
12365 inner_pos "c"
12366 use_parbox 0
12367 width "100col%"
12368 special "none"
12369 height "1in"
12370 height_special "totalheight"
12371 status open
12372
12373 \begin_layout Plain Layout
12374 \align center
12375 \begin_inset Tabular
12376 <lyxtabular version="3" rows="5" columns="2">
12377 <features>
12378 <column alignment="center" valignment="top" width="0">
12379 <column alignment="center" valignment="top" width="0">
12380 <row>
12381 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
12382 \begin_inset Text
12383
12384 \begin_layout Plain Layout
12385 Befehl
12386 \begin_inset Foot
12387 status collapsed
12388
12389 \begin_layout Plain Layout
12390 Durch einen Fehler in LyX ist es momentan nicht möglich mit 
12391 \family sans
12392 Strg-m
12393 \family default
12394  eine neue Formel zu erzeugen, siehe 
12395 \begin_inset CommandInset href
12396 LatexCommand href
12397 name "LyX-Fehler #1435"
12398 target "http://bugzilla.lyx.org/show_bug.cgi?id=1435"
12399
12400 \end_inset
12401
12402 .
12403 \end_layout
12404
12405 \end_inset
12406
12407
12408 \end_layout
12409
12410 \end_inset
12411 </cell>
12412 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
12413 \begin_inset Text
12414
12415 \begin_layout Plain Layout
12416 Ergebnis
12417 \begin_inset Note Note
12418 status collapsed
12419
12420 \begin_layout Plain Layout
12421
12422 \series bold
12423
12424 \backslash
12425 raisebox
12426 \series default
12427  dient nur als Abstandhalter.
12428 \end_layout
12429
12430 \end_inset
12431
12432
12433 \end_layout
12434
12435 \end_inset
12436 </cell>
12437 </row>
12438 <row>
12439 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12440 \begin_inset Text
12441
12442 \begin_layout Plain Layout
12443
12444 \backslash
12445 fbox
12446 \begin_inset ERT
12447 status collapsed
12448
12449 \begin_layout Plain Layout
12450
12451
12452 \backslash
12453 leer 
12454 \end_layout
12455
12456 \end_inset
12457
12458
12459 \family sans
12460 Strg-m
12461 \family default
12462  
12463 \backslash
12464 int
12465 \begin_inset ERT
12466 status collapsed
12467
12468 \begin_layout Plain Layout
12469
12470
12471 \backslash
12472 leer 
12473 \end_layout
12474
12475 \end_inset
12476
12477 A=B
12478 \end_layout
12479
12480 \end_inset
12481 </cell>
12482 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12483 \begin_inset Text
12484
12485 \begin_layout Plain Layout
12486 \begin_inset Formula \raisebox{6mm}{}\fbox{$\int A=B$}\raisebox{-4mm}{}
12487
12488 \end_inset
12489
12490
12491 \end_layout
12492
12493 \end_inset
12494 </cell>
12495 </row>
12496 <row>
12497 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12498 \begin_inset Text
12499
12500 \begin_layout Plain Layout
12501
12502 \backslash
12503 boxed
12504 \begin_inset ERT
12505 status collapsed
12506
12507 \begin_layout Plain Layout
12508
12509
12510 \backslash
12511 leer 
12512 \end_layout
12513
12514 \end_inset
12515
12516
12517 \backslash
12518 int
12519 \begin_inset ERT
12520 status collapsed
12521
12522 \begin_layout Plain Layout
12523
12524
12525 \backslash
12526 leer 
12527 \end_layout
12528
12529 \end_inset
12530
12531 A=B
12532 \end_layout
12533
12534 \end_inset
12535 </cell>
12536 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12537 \begin_inset Text
12538
12539 \begin_layout Plain Layout
12540 \begin_inset Formula $\raisebox{8.5mm}{}\boxed{\int A=B}\raisebox{-6.5mm}{}$
12541 \end_inset
12542
12543
12544 \end_layout
12545
12546 \end_inset
12547 </cell>
12548 </row>
12549 <row>
12550 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12551 \begin_inset Text
12552
12553 \begin_layout Plain Layout
12554 A+
12555 \backslash
12556 fbox
12557 \begin_inset ERT
12558 status collapsed
12559
12560 \begin_layout Plain Layout
12561
12562
12563 \backslash
12564 leer 
12565 \end_layout
12566
12567 \end_inset
12568
12569 B
12570 \end_layout
12571
12572 \end_inset
12573 </cell>
12574 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12575 \begin_inset Text
12576
12577 \begin_layout Plain Layout
12578 \begin_inset Formula $\raisebox{6mm}{}A+\fbox{B}\raisebox{-3mm}{}$
12579 \end_inset
12580
12581
12582 \end_layout
12583
12584 \end_inset
12585 </cell>
12586 </row>
12587 <row>
12588 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
12589 \begin_inset Text
12590
12591 \begin_layout Plain Layout
12592
12593 \backslash
12594 framebox
12595 \begin_inset ERT
12596 status collapsed
12597
12598 \begin_layout Plain Layout
12599
12600
12601 \backslash
12602 leer 
12603 \end_layout
12604
12605 \end_inset
12606
12607 20mm
12608 \begin_inset Formula $\to$
12609 \end_inset
12610
12611
12612 \begin_inset Formula $\to$
12613 \end_inset
12614
12615
12616 \family sans
12617 Strg-m
12618 \family default
12619  
12620 \backslash
12621 frac
12622 \begin_inset ERT
12623 status collapsed
12624
12625 \begin_layout Plain Layout
12626
12627
12628 \backslash
12629 leer 
12630 \end_layout
12631
12632 \end_inset
12633
12634 A
12635 \begin_inset Formula $\downarrow$
12636 \end_inset
12637
12638 B
12639 \end_layout
12640
12641 \end_inset
12642 </cell>
12643 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
12644 \begin_inset Text
12645
12646 \begin_layout Plain Layout
12647 \begin_inset Formula $\raisebox{6mm}{}$
12648 \end_inset
12649
12650
12651 \begin_inset Formula $\framebox[20mm][]{$\frac{A}{B}$}$
12652 \end_inset
12653
12654
12655 \begin_inset Formula $\raisebox{-4mm}{}$
12656 \end_inset
12657
12658
12659 \end_layout
12660
12661 \end_inset
12662 </cell>
12663 </row>
12664 </lyxtabular>
12665
12666 \end_inset
12667
12668
12669 \end_layout
12670
12671 \end_inset
12672
12673
12674 \end_layout
12675
12676 \begin_layout Standard
12677 Die Rahmendicke kann ebenfalls eingestellt werden.
12678  Dazu müssen vor der Formel im TeX-Modus die Befehle
12679 \end_layout
12680
12681 \begin_layout Standard
12682
12683 \series bold
12684
12685 \backslash
12686 fboxrule
12687 \series default
12688  
12689 \series bold
12690
12691 \begin_inset Quotes gld
12692 \end_inset
12693
12694 Dicke
12695 \begin_inset Quotes grd
12696 \end_inset
12697
12698
12699 \series default
12700  
12701 \series bold
12702
12703 \backslash
12704 fboxsep
12705 \series default
12706  
12707 \series bold
12708
12709 \begin_inset Quotes gld
12710 \end_inset
12711
12712 Abstand
12713 \begin_inset Quotes grd
12714 \end_inset
12715
12716
12717 \end_layout
12718
12719 \begin_layout Standard
12720 eingegeben werden.
12721  
12722 \begin_inset Quotes gld
12723 \end_inset
12724
12725 Abstand
12726 \begin_inset Quotes grd
12727 \end_inset
12728
12729  legt dabei den minimalen Abstand zwischen Rahmen und dem ersten Zeichen
12730  in der Box fest.
12731  Ein Beispiel dafür ist folgende umrandete Formel:
12732 \begin_inset ERT
12733 status collapsed
12734
12735 \begin_layout Plain Layout
12736
12737
12738 \backslash
12739 fboxrule 2mm 
12740 \backslash
12741 fboxsep 3mm
12742 \end_layout
12743
12744 \end_inset
12745
12746
12747 \begin_inset Formula \[
12748 \boxed{A+B=C}\]
12749
12750 \end_inset
12751
12752 Vor dieser Formel wurde im TeX-Modus
12753 \end_layout
12754
12755 \begin_layout Standard
12756
12757 \series bold
12758
12759 \backslash
12760 fboxrule
12761 \series default
12762  
12763 \series bold
12764 2mm
12765 \series default
12766  
12767 \series bold
12768
12769 \backslash
12770 fboxsep
12771 \series default
12772  
12773 \series bold
12774 3mm
12775 \end_layout
12776
12777 \begin_layout Standard
12778 eingegeben.
12779  Diese angegeben Werte werden für alle folgenden Boxen verwendet.
12780 \end_layout
12781
12782 \begin_layout Standard
12783 Möchte man wieder zur Standardrahmengröße zurückkehren, gibt man vor der
12784  nächsten Formel im TeX-Modus folgende Befehle ein:
12785 \end_layout
12786
12787 \begin_layout Standard
12788
12789 \series bold
12790
12791 \backslash
12792 fboxrule
12793 \series default
12794  
12795 \series bold
12796 0.4pt
12797 \series default
12798  
12799 \series bold
12800
12801 \backslash
12802 fboxsep
12803 \series default
12804  
12805 \series bold
12806 3pt
12807 \series default
12808
12809 \begin_inset ERT
12810 status collapsed
12811
12812 \begin_layout Plain Layout
12813
12814
12815 \backslash
12816 fboxrule 0.4pt 
12817 \backslash
12818 fboxsep 3pt
12819 \end_layout
12820
12821 \end_inset
12822
12823
12824 \end_layout
12825
12826 \begin_layout Subsection
12827 Boxen ohne Rahmen
12828 \begin_inset CommandInset label
12829 LatexCommand label
12830 name "sub:Boxen-ohne-Rahmen"
12831
12832 \end_inset
12833
12834
12835 \begin_inset Index
12836 status collapsed
12837
12838 \begin_layout Plain Layout
12839 Boxen ! ohne Rahmen
12840 \end_layout
12841
12842 \end_inset
12843
12844
12845 \end_layout
12846
12847 \begin_layout Standard
12848 Für Boxen ohne Rahmen gibt es folgende Box-Befehle: 
12849 \series bold
12850
12851 \backslash
12852 mbox
12853 \series default
12854
12855 \begin_inset Index
12856 status collapsed
12857
12858 \begin_layout Plain Layout
12859 Befehle ! M ! 
12860 \backslash
12861 mbox
12862 \end_layout
12863
12864 \end_inset
12865
12866
12867 \series bold
12868
12869 \backslash
12870 makebox
12871 \series default
12872
12873 \begin_inset Index
12874 status collapsed
12875
12876 \begin_layout Plain Layout
12877 Befehle ! M ! 
12878 \backslash
12879 makebox
12880 \end_layout
12881
12882 \end_inset
12883
12884  und
12885 \begin_inset Newline linebreak
12886 \end_inset
12887
12888
12889 \series bold
12890
12891 \backslash
12892 raisebox
12893 \series default
12894
12895 \begin_inset Index
12896 status collapsed
12897
12898 \begin_layout Plain Layout
12899 Befehle ! R ! 
12900 \backslash
12901 raisebox
12902 \end_layout
12903
12904 \end_inset
12905
12906
12907 \end_layout
12908
12909 \begin_layout Standard
12910 Mit 
12911 \series bold
12912
12913 \backslash
12914 raisebox
12915 \series default
12916  kann man eine Box hoch- oder tiefstellen.
12917  Allerdings behalten die Zeichen in der Box im Gegensatz zum normalen Hochstelle
12918 n die Schriftgröße bei.
12919  
12920 \series bold
12921
12922 \backslash
12923 raisebox
12924 \series default
12925  wird dabei mit folgendem Schema benutzt:
12926 \end_layout
12927
12928 \begin_layout Standard
12929
12930 \series bold
12931
12932 \backslash
12933 raisebox{Höhe}{Boxinhalt}
12934 \end_layout
12935
12936 \begin_layout Standard
12937 Soll in der Box eine Formel stehen, muss man wie bei 
12938 \series bold
12939
12940 \backslash
12941 fbox
12942 \series default
12943  eine weitere Formel erstellen.
12944 \end_layout
12945
12946 \begin_layout Standard
12947 \align center
12948 \begin_inset Tabular
12949 <lyxtabular version="3" rows="4" columns="2">
12950 <features>
12951 <column alignment="center" valignment="top" width="0">
12952 <column alignment="center" valignment="top" width="0">
12953 <row>
12954 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
12955 \begin_inset Text
12956
12957 \begin_layout Plain Layout
12958 Befehl
12959 \end_layout
12960
12961 \end_inset
12962 </cell>
12963 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
12964 \begin_inset Text
12965
12966 \begin_layout Plain Layout
12967 Ergebnis
12968 \end_layout
12969
12970 \end_inset
12971 </cell>
12972 </row>
12973 <row>
12974 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12975 \begin_inset Text
12976
12977 \begin_layout Plain Layout
12978 H
12979 \backslash
12980 raisebox{2mm
12981 \begin_inset Formula $\to$
12982 \end_inset
12983
12984
12985 \backslash
12986 {al
12987 \begin_inset Formula $\to$
12988 \end_inset
12989
12990  lo
12991 \end_layout
12992
12993 \end_inset
12994 </cell>
12995 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12996 \begin_inset Text
12997
12998 \begin_layout Plain Layout
12999 \begin_inset Formula $H\raisebox{2mm}{al}lo$
13000 \end_inset
13001
13002
13003 \end_layout
13004
13005 \end_inset
13006 </cell>
13007 </row>
13008 <row>
13009 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
13010 \begin_inset Text
13011
13012 \begin_layout Plain Layout
13013 H
13014 \backslash
13015 raisebox{-2mm
13016 \begin_inset Formula $\to$
13017 \end_inset
13018
13019
13020 \backslash
13021 {al
13022 \begin_inset Formula $\to$
13023 \end_inset
13024
13025 lo
13026 \end_layout
13027
13028 \end_inset
13029 </cell>
13030 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
13031 \begin_inset Text
13032
13033 \begin_layout Plain Layout
13034 \begin_inset Formula $H\raisebox{-2mm}{al}lo$
13035 \end_inset
13036
13037
13038 \end_layout
13039
13040 \end_inset
13041 </cell>
13042 </row>
13043 <row>
13044 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
13045 \begin_inset Text
13046
13047 \begin_layout Plain Layout
13048 A=
13049 \backslash
13050 raisebox{-2mm
13051 \begin_inset Formula $\to$
13052 \end_inset
13053
13054
13055 \backslash
13056 {
13057 \family sans
13058 Strg-m
13059 \family default
13060  
13061 \backslash
13062 sqrt
13063 \begin_inset ERT
13064 status collapsed
13065
13066 \begin_layout Plain Layout
13067
13068
13069 \backslash
13070 leer 
13071 \end_layout
13072
13073 \end_inset
13074
13075
13076 \end_layout
13077
13078 \end_inset
13079 </cell>
13080 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
13081 \begin_inset Text
13082
13083 \begin_layout Plain Layout
13084 \begin_inset ERT
13085 status collapsed
13086
13087 \begin_layout Plain Layout
13088
13089 $A=
13090 \backslash
13091 raisebox{-2mm}{$
13092 \backslash
13093 sqrt{B}$}$
13094 \end_layout
13095
13096 \end_inset
13097
13098
13099 \end_layout
13100
13101 \end_inset
13102 </cell>
13103 </row>
13104 </lyxtabular>
13105
13106 \end_inset
13107
13108
13109 \end_layout
13110
13111 \begin_layout Standard
13112 Die letzte Formel kann derzeit nur im TeX-Modus erstellt werden, da LyX
13113  statt der benötigten weiteren Formel eine Box einfügt.
13114 \begin_inset Foot
13115 status collapsed
13116
13117 \begin_layout Plain Layout
13118 siehe 
13119 \begin_inset CommandInset href
13120 LatexCommand href
13121 name "LyX-Fehler #1435"
13122 target "http://bugzilla.lyx.org/show_bug.cgi?id=1435"
13123
13124 \end_inset
13125
13126
13127 \end_layout
13128
13129 \end_inset
13130
13131
13132 \end_layout
13133
13134 \begin_layout Standard
13135 Der Befehl 
13136 \series bold
13137
13138 \backslash
13139 mbox
13140 \series default
13141  ist äquivalent zu 
13142 \series bold
13143
13144 \backslash
13145 fbox
13146 \series default
13147  und 
13148 \series bold
13149
13150 \backslash
13151 makebox
13152 \series default
13153  ist äquivalent zu 
13154 \series bold
13155
13156 \backslash
13157 framebox
13158 \series default
13159 , nur dass es keinen Rahmen gibt.
13160 \end_layout
13161
13162 \begin_layout Subsection
13163 Farbige Boxen
13164 \begin_inset CommandInset label
13165 LatexCommand label
13166 name "sub:Farbige-Boxen"
13167
13168 \end_inset
13169
13170
13171 \begin_inset Index
13172 status collapsed
13173
13174 \begin_layout Plain Layout
13175 Boxen ! farbige
13176 \end_layout
13177
13178 \end_inset
13179
13180
13181 \end_layout
13182
13183 \begin_layout Standard
13184 Damit die in diesem Kapitel angegebenen Befehle benutzt werden können, muss
13185  im LaTeX-Vorspann das LaTeX-Paket 
13186 \series bold
13187 color
13188 \series default
13189
13190 \begin_inset Foot
13191 status collapsed
13192
13193 \begin_layout Plain Layout
13194 Das Paket 
13195 \series bold
13196 color
13197 \series default
13198  ist Teil jeder LaTeX-Standardinstallation.
13199 \end_layout
13200
13201 \end_inset
13202
13203
13204 \begin_inset Index
13205 status collapsed
13206
13207 \begin_layout Plain Layout
13208 Pakete ! color
13209 \end_layout
13210
13211 \end_inset
13212
13213  mit der Zeile
13214 \end_layout
13215
13216 \begin_layout Standard
13217
13218 \series bold
13219
13220 \backslash
13221 usepackage{color}
13222 \end_layout
13223
13224 \begin_layout Standard
13225 geladen werden
13226 \begin_inset Foot
13227 status collapsed
13228
13229 \begin_layout Plain Layout
13230 Wird irgendwo im Dokument Text mit einer vordefinierten Farbe gefärbt, lädt
13231  LyX das LaTeX-Paket 
13232 \series bold
13233 color
13234 \series default
13235  automatisch.
13236  Dadurch kann es vorkommen, dass das Paket doppelt geladen wird, was aber
13237  keine Probleme hervorruft.
13238 \end_layout
13239
13240 \end_inset
13241
13242
13243 \begin_inset Note Note
13244 status collapsed
13245
13246 \begin_layout Plain Layout
13247 Damit das Paket nicht doppelt geladen werden kann, wurde im LaTeX-Vorspann
13248  ein Makro eingefügt.
13249 \end_layout
13250
13251 \end_inset
13252
13253 .
13254 \end_layout
13255
13256 \begin_layout Standard
13257 \begin_inset VSpace medskip
13258 \end_inset
13259
13260 Um Boxen einzufärben, verwendet man den Befehl 
13261 \series bold
13262
13263 \backslash
13264 colorbox
13265 \series default
13266
13267 \begin_inset Index
13268 status collapsed
13269
13270 \begin_layout Plain Layout
13271 Befehle ! C ! 
13272 \backslash
13273 colorbox
13274 \end_layout
13275
13276 \end_inset
13277
13278  nach folgendem Schema:
13279 \end_layout
13280
13281 \begin_layout Standard
13282
13283 \series bold
13284
13285 \backslash
13286 colorbox{Farbe}{Boxinhalt}
13287 \end_layout
13288
13289 \begin_layout Standard
13290 Der Boxinhalt kann auch wieder eine Box sein und eine 
13291 \series bold
13292
13293 \backslash
13294 colorbox
13295 \series default
13296  kann auch ein Teil einer anderen Box sein (siehe 2.
13297  und 3.
13298  Beispiel).
13299  Soll in der Box eine Formel stehen, muss wie bei 
13300 \series bold
13301
13302 \backslash
13303 fbox
13304 \series default
13305  eine weitere Formel erstellt werden.
13306 \begin_inset Foot
13307 status collapsed
13308
13309 \begin_layout Plain Layout
13310 Das gilt auch für den Befehl 
13311 \series bold
13312
13313 \backslash
13314 fcolorbox
13315 \series default
13316 .
13317  Dabei ist 
13318 \begin_inset CommandInset href
13319 LatexCommand href
13320 name "LyX-Fehler #1435"
13321 target "http://bugzilla.lyx.org/show_bug.cgi?id=1435"
13322
13323 \end_inset
13324
13325  zu beachten.
13326 \end_layout
13327
13328 \end_inset
13329
13330
13331 \end_layout
13332
13333 \begin_layout Standard
13334 Aus folgenden vordefinierten Farben kann gewählt werden:
13335 \end_layout
13336
13337 \begin_layout Standard
13338
13339 \series bold
13340 black
13341 \series default
13342
13343 \series bold
13344 blue
13345 \series default
13346
13347 \series bold
13348 cyan
13349 \series default
13350
13351 \series bold
13352 green
13353 \series default
13354
13355 \series bold
13356 magenta
13357 \series default
13358
13359 \series bold
13360 red
13361 \series default
13362
13363 \series bold
13364 white
13365 \series default
13366  und 
13367 \series bold
13368 yellow
13369 \end_layout
13370
13371 \begin_layout Standard
13372 \align center
13373 \begin_inset Tabular
13374 <lyxtabular version="3" rows="4" columns="2">
13375 <features>
13376 <column alignment="center" valignment="top" width="0">
13377 <column alignment="center" valignment="top" width="0">
13378 <row>
13379 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
13380 \begin_inset Text
13381
13382 \begin_layout Plain Layout
13383 Befehl
13384 \end_layout
13385
13386 \end_inset
13387 </cell>
13388 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
13389 \begin_inset Text
13390
13391 \begin_layout Plain Layout
13392 Ergebnis
13393 \begin_inset Note Note
13394 status collapsed
13395
13396 \begin_layout Plain Layout
13397
13398 \series bold
13399
13400 \backslash
13401 raisebox
13402 \series default
13403  dient nur als Abstandhalter.
13404 \end_layout
13405
13406 \end_inset
13407
13408
13409 \end_layout
13410
13411 \end_inset
13412 </cell>
13413 </row>
13414 <row>
13415 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13416 \begin_inset Text
13417
13418 \begin_layout Plain Layout
13419
13420 \backslash
13421 colorbox{yellow
13422 \begin_inset Formula $\to$
13423 \end_inset
13424
13425
13426 \backslash
13427 {A=B
13428 \end_layout
13429
13430 \end_inset
13431 </cell>
13432 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13433 \begin_inset Text
13434
13435 \begin_layout Plain Layout
13436 \begin_inset Formula $\raisebox{6mm}{}\colorbox{yellow}{A=B}\raisebox{-3mm}{}$
13437 \end_inset
13438
13439
13440 \end_layout
13441
13442 \end_inset
13443 </cell>
13444 </row>
13445 <row>
13446 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13447 \begin_inset Text
13448
13449 \begin_layout Plain Layout
13450
13451 \backslash
13452 colorbox{green
13453 \begin_inset Formula $\to$
13454 \end_inset
13455
13456
13457 \backslash
13458 {
13459 \backslash
13460 fbox
13461 \begin_inset ERT
13462 status collapsed
13463
13464 \begin_layout Plain Layout
13465
13466
13467 \backslash
13468 leer 
13469 \end_layout
13470
13471 \end_inset
13472
13473 A=B
13474 \end_layout
13475
13476 \end_inset
13477 </cell>
13478 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13479 \begin_inset Text
13480
13481 \begin_layout Plain Layout
13482 \begin_inset Formula $\raisebox{6mm}{}\colorbox{green}{\fbox{A=B}}\raisebox{-3mm}{}$
13483 \end_inset
13484
13485
13486 \end_layout
13487
13488 \end_inset
13489 </cell>
13490 </row>
13491 <row>
13492 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
13493 \begin_inset Text
13494
13495 \begin_layout Plain Layout
13496
13497 \backslash
13498 fbox
13499 \begin_inset ERT
13500 status collapsed
13501
13502 \begin_layout Plain Layout
13503
13504
13505 \backslash
13506 leer 
13507 \end_layout
13508
13509 \end_inset
13510
13511
13512 \backslash
13513 colorbox{green
13514 \begin_inset Formula $\to$
13515 \end_inset
13516
13517
13518 \backslash
13519 {A=B
13520 \end_layout
13521
13522 \end_inset
13523 </cell>
13524 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
13525 \begin_inset Text
13526
13527 \begin_layout Plain Layout
13528 \begin_inset Formula $\raisebox{6mm}{}\fbox{\colorbox{green}{A=B}}\raisebox{-3mm}{}$
13529 \end_inset
13530
13531
13532 \end_layout
13533
13534 \end_inset
13535 </cell>
13536 </row>
13537 </lyxtabular>
13538
13539 \end_inset
13540
13541
13542 \end_layout
13543
13544 \begin_layout Standard
13545
13546 \series bold
13547
13548 \backslash
13549 colorbox
13550 \series default
13551  färbt nur die Box, nicht aber die Zeichen in der Box ein.
13552  Um alle Zeichen zu färben, markiert man die ganze Formel und wählt im Dialog
13553  
13554 \family sans
13555 Textstil
13556 \family default
13557  die gewünschte Farbe aus.
13558  Der Dialog kann mit dem Werkzeugleistenknopf 
13559 \begin_inset Graphics
13560         filename ../../images/dialog-show_character.png
13561         scale 85
13562
13563 \end_inset
13564
13565  oder dem Menü 
13566 \family sans
13567 Bearbeiten\SpecialChar \menuseparator
13568 Textstil\SpecialChar \menuseparator
13569 Benutzerdefiniert
13570 \family default
13571  aufgerufen werden.
13572  Die Formelnummer hat dann dieselbe Farbe wie die Formel.
13573  Soll die Formelnummer eine andere Farbe als die Formelzeichen haben, muss
13574  innerhalb der Formel die Farbe geändert werden.
13575 \end_layout
13576
13577 \begin_layout Standard
13578 Ein Beispiel:
13579 \end_layout
13580
13581 \begin_layout Standard
13582
13583 \color red
13584 \begin_inset Formula \begin{equation}
13585 \int A=B\label{eq:rot}\end{equation}
13586
13587 \end_inset
13588
13589
13590 \color green
13591
13592 \begin_inset Formula \begin{equation}
13593 \textcolor{red}{\int A=B}\label{eq:rotgruen}\end{equation}
13594
13595 \end_inset
13596
13597
13598 \end_layout
13599
13600 \begin_layout Standard
13601 Formel 
13602 \begin_inset CommandInset ref
13603 LatexCommand eqref
13604 reference "eq:rot"
13605
13606 \end_inset
13607
13608  ist komplett rot gefärbt.
13609 \begin_inset Newline newline
13610 \end_inset
13611
13612 Formel 
13613 \begin_inset CommandInset ref
13614 LatexCommand eqref
13615 reference "eq:rotgruen"
13616
13617 \end_inset
13618
13619  wurde zuerst komplett grün gefärbt, um die Farbe der Formelnummer festzulegen.
13620  Anschließend wurden die Formelzeichen rot gefärbt.
13621 \end_layout
13622
13623 \begin_layout Standard
13624 \begin_inset VSpace bigskip
13625 \end_inset
13626
13627 Möchte man den Rahmen anders als den Rest der Box färben, verwendet man
13628  den Befehl 
13629 \series bold
13630
13631 \backslash
13632 fcolorbox
13633 \series default
13634
13635 \begin_inset Index
13636 status collapsed
13637
13638 \begin_layout Plain Layout
13639 Befehle ! F ! 
13640 \backslash
13641 fcolorbox
13642 \end_layout
13643
13644 \end_inset
13645
13646  nach folgendem Schema:
13647 \end_layout
13648
13649 \begin_layout Standard
13650
13651 \series bold
13652
13653 \backslash
13654 fcolorbox{Rahmenfarbe}{Farbe}{Boxinhalt}
13655 \end_layout
13656
13657 \begin_layout Standard
13658
13659 \series bold
13660
13661 \backslash
13662 fcolorbox
13663 \series default
13664  stellt also eine Erweiterung des Befehls 
13665 \series bold
13666
13667 \backslash
13668 colorbox
13669 \series default
13670  dar.
13671  Die Rahmenbreite wird, wie bei 
13672 \series bold
13673
13674 \backslash
13675 framebox
13676 \series default
13677 , mit 
13678 \series bold
13679
13680 \backslash
13681 fboxrule
13682 \series default
13683  und 
13684 \series bold
13685
13686 \backslash
13687 fboxsep
13688 \series default
13689  festgelegt.
13690  Ein Beispiel:
13691 \begin_inset ERT
13692 status collapsed
13693
13694 \begin_layout Plain Layout
13695
13696
13697 \backslash
13698 fboxrule 1mm 
13699 \backslash
13700 fboxsep 1mm
13701 \end_layout
13702
13703 \end_inset
13704
13705
13706 \begin_inset Formula \[
13707 \fcolorbox{cyan}{magenta}{A=B}\]
13708
13709 \end_inset
13710
13711
13712 \begin_inset ERT
13713 status collapsed
13714
13715 \begin_layout Plain Layout
13716
13717
13718 \backslash
13719 fboxrule 0.4pt 
13720 \backslash
13721 fboxsep 3pt
13722 \end_layout
13723
13724 \end_inset
13725
13726
13727 \end_layout
13728
13729 \begin_layout Standard
13730 Diese Formel wurde mit folgendem Befehl erstellt:
13731 \begin_inset Newline newline
13732 \end_inset
13733
13734
13735 \series bold
13736
13737 \backslash
13738 fcolorbox{cyan
13739 \begin_inset Formula $\to$
13740 \end_inset
13741
13742
13743 \backslash
13744 {magenta
13745 \begin_inset Formula $\to$
13746 \end_inset
13747
13748
13749 \backslash
13750 {A=B
13751 \end_layout
13752
13753 \begin_layout Standard
13754 \begin_inset VSpace bigskip
13755 \end_inset
13756
13757 Um andere als die vordefinierten Farben zu verwenden, muss man diese zuerst
13758  selbst definieren.
13759 \end_layout
13760
13761 \begin_layout Standard
13762 Man kann z.
13763 \begin_inset space \thinspace{}
13764 \end_inset
13765
13766 B.
13767  mit folgender LaTeX-Vorspannzeile die Farbe 
13768 \begin_inset Quotes gld
13769 \end_inset
13770
13771
13772 \series bold
13773 dunkelgruen
13774 \series default
13775
13776 \begin_inset Quotes grd
13777 \end_inset
13778
13779
13780 \begin_inset Foot
13781 status collapsed
13782
13783 \begin_layout Plain Layout
13784 In Befehlen darf kein Umlaut stehen, siehe 
13785 \begin_inset CommandInset ref
13786 LatexCommand ref
13787 reference "sec:Benutzerdefinierte-Befehle"
13788
13789 \end_inset
13790
13791 .
13792 \end_layout
13793
13794 \end_inset
13795
13796  definieren:
13797 \end_layout
13798
13799 \begin_layout Standard
13800
13801 \series bold
13802
13803 \backslash
13804 definecolor{dunkelgruen}{cmyk}{0.5,
13805 \series default
13806  
13807 \series bold
13808 0,
13809 \series default
13810  
13811 \series bold
13812 1,
13813 \series default
13814  
13815 \series bold
13816 0.5}
13817 \series default
13818
13819 \begin_inset Index
13820 status collapsed
13821
13822 \begin_layout Plain Layout
13823 Befehle ! D ! 
13824 \backslash
13825 definecolor
13826 \end_layout
13827
13828 \end_inset
13829
13830
13831 \end_layout
13832
13833 \begin_layout Standard
13834
13835 \series bold
13836 cmyk
13837 \series default
13838  ist der Farbraum und steht für die Farben 
13839 \series bold
13840 cyan
13841 \series default
13842
13843 \series bold
13844 magenta
13845 \series default
13846
13847 \series bold
13848 yellow
13849 \series default
13850  und 
13851 \series bold
13852 black
13853 \series default
13854 .
13855  Die vier Zahlen geben der Reihe nach den Anteil der vier Farben an.
13856  Für den Anteil kann man Werte im Bereich 0
13857 \begin_inset space \thinspace{}
13858 \end_inset
13859
13860 -
13861 \begin_inset space \thinspace{}
13862 \end_inset
13863
13864 1 angeben.
13865  Anstelle von 
13866 \series bold
13867 cmyk
13868 \series default
13869  kann man zur Definition auch den Farbraum 
13870 \series bold
13871 rgb
13872 \series default
13873  verwenden.
13874  
13875 \series bold
13876 rgb
13877 \series default
13878  steht für 
13879 \series bold
13880 red
13881 \series default
13882
13883 \series bold
13884 green
13885 \series default
13886  und 
13887 \series bold
13888 blue
13889 \series default
13890 , so dass man dann mit drei Zahlen die Anteile dieser Farben festlegen kann.
13891  Des Weiteren gibt es noch den Farbraum 
13892 \series bold
13893 gray
13894 \series default
13895 , bei dem man mit einer Zahl den Graustufenanteil festlegen kann.
13896 \end_layout
13897
13898 \begin_layout Standard
13899 Als Beispiel eine gerahmte Box mit der neu definierten Farbe 
13900 \series bold
13901 darkgreen
13902 \series default
13903 , bei der die Zeichenfarbe 
13904 \series bold
13905 yellow
13906 \series default
13907  gewählt wurde:
13908 \begin_inset Formula \begin{equation}
13909 \colorbox{dunkelgruen}{\color{yellow}\boxed{\int A\,\mathrm{d}x=\frac{\sqrt[5]{B}}{\ln\left(\frac{1}{3}\right)}}}\end{equation}
13910
13911 \end_inset
13912
13913
13914 \end_layout
13915
13916 \begin_layout Standard
13917 Selbst definierte Farben können mit dem Befehl 
13918 \series bold
13919
13920 \backslash
13921 textcolor
13922 \series default
13923  auch für Text
13924 \begin_inset Index
13925 status collapsed
13926
13927 \begin_layout Plain Layout
13928 Text ! farbiger
13929 \end_layout
13930
13931 \end_inset
13932
13933  verwendet werden:
13934 \end_layout
13935
13936 \begin_layout Standard
13937 \begin_inset ERT
13938 status collapsed
13939
13940 \begin_layout Plain Layout
13941
13942
13943 \backslash
13944 textcolor{dunkelgruen}{
13945 \end_layout
13946
13947 \end_inset
13948
13949 Dieser Satz ist 
13950 \begin_inset Quotes gld
13951 \end_inset
13952
13953 dunkelgruen
13954 \begin_inset Quotes grd
13955 \end_inset
13956
13957 .
13958 \begin_inset ERT
13959 status collapsed
13960
13961 \begin_layout Plain Layout
13962
13963 }
13964 \end_layout
13965
13966 \end_inset
13967
13968
13969 \end_layout
13970
13971 \begin_layout Standard
13972
13973 \series bold
13974
13975 \backslash
13976 textcolor
13977 \series default
13978
13979 \begin_inset Index
13980 status collapsed
13981
13982 \begin_layout Plain Layout
13983 Befehle ! T ! 
13984 \backslash
13985 textcolor
13986 \end_layout
13987
13988 \end_inset
13989
13990  wird nach dem Schema 
13991 \series bold
13992
13993 \backslash
13994 textcolor{Farbe}{zu
13995 \series default
13996  
13997 \series bold
13998 färbende
13999 \series default
14000  
14001 \series bold
14002 Zeichen}
14003 \series default
14004  verwendet.
14005 \end_layout
14006
14007 \begin_layout Subsection
14008 Absatzboxen
14009 \begin_inset CommandInset label
14010 LatexCommand label
14011 name "sub:Absatzboxen"
14012
14013 \end_inset
14014
14015
14016 \begin_inset Index
14017 status collapsed
14018
14019 \begin_layout Plain Layout
14020 Boxen ! Absatz-
14021 \end_layout
14022
14023 \end_inset
14024
14025
14026 \end_layout
14027
14028 \begin_layout Standard
14029 Mit dem Menü 
14030 \family sans
14031 Einfügen\SpecialChar \menuseparator
14032 Box
14033 \family default
14034  oder dem Werkzeugleistenknopf 
14035 \begin_inset Graphics
14036         filename ../../images/box-insert.png
14037         scale 85
14038
14039 \end_inset
14040
14041  kann man eine Box erstellen, die mehrere Zeilen und Absätze enthalten kann,
14042  eine so genannte 
14043 \emph on
14044 Parbox
14045 \emph default
14046  (Absatzbox).
14047 \end_layout
14048
14049 \begin_layout Standard
14050 Das folgende Beispiel zeigt eine umrahmte Absatzbox in einer Zeile:
14051 \end_layout
14052
14053 \begin_layout Standard
14054 \begin_inset VSpace medskip
14055 \end_inset
14056
14057 Dies ist eine Zeile 
14058 \begin_inset Box Boxed
14059 position "c"
14060 hor_pos "c"
14061 has_inner_box 1
14062 inner_pos "t"
14063 use_parbox 1
14064 width "5cm"
14065 special "none"
14066 height "1in"
14067 height_special "totalheight"
14068 status open
14069
14070 \begin_layout Plain Layout
14071 Dies ist die Absatzbox.
14072  Sie ist genau 5
14073 \begin_inset space \thinspace{}
14074 \end_inset
14075
14076 cm lang und kann auch Formeln enthalten: 
14077 \begin_inset Formula $\int A\,\mathrm{d}s=C$
14078 \end_inset
14079
14080
14081 \end_layout
14082
14083 \end_inset
14084
14085  mit einer Absatzbox.
14086 \begin_inset VSpace medskip
14087 \end_inset
14088
14089
14090 \end_layout
14091
14092 \begin_layout Standard
14093 Solch eine Box wird erstellt, indem man mit der rechten Maustaste auf die
14094  graue Box mit dem Namen 
14095 \begin_inset Quotes gld
14096 \end_inset
14097
14098 Box(Gerahmt)
14099 \begin_inset Quotes grd
14100 \end_inset
14101
14102  klickt.
14103  Es erscheint dann ein Fenster in dem man die Boxeigenschaften festlegt.
14104  In diesem Fall: 
14105 \emph on
14106 Verzierung
14107 \emph default
14108 : Rechteckige Box, 
14109 \emph on
14110 Innere Box
14111 \emph default
14112 : Parbox, 
14113 \emph on
14114 Breite
14115 \emph default
14116 : 5
14117 \begin_inset space \thinspace{}
14118 \end_inset
14119
14120 cm, 
14121 \emph on
14122 Vertikale Box Ausrichtung
14123 \emph default
14124 : Mitte
14125 \end_layout
14126
14127 \begin_layout Standard
14128 \begin_inset VSpace medskip
14129 \end_inset
14130
14131 In LaTeX wird eine Absatzbox mit dem Befehl 
14132 \series bold
14133
14134 \backslash
14135 parbox
14136 \series default
14137
14138 \begin_inset Index
14139 status collapsed
14140
14141 \begin_layout Plain Layout
14142 Befehle ! P ! 
14143 \backslash
14144 parbox
14145 \end_layout
14146
14147 \end_inset
14148
14149  erstellt, welcher folgendes Schema besitzt:
14150 \end_layout
14151
14152 \begin_layout Standard
14153
14154 \series bold
14155
14156 \backslash
14157 parbox[Position]{Breite}{Boxinhalt}
14158 \end_layout
14159
14160 \begin_layout Standard
14161 Die Positionen 
14162 \emph on
14163 b
14164 \emph default
14165  und 
14166 \emph on
14167 t
14168 \emph default
14169  sind möglich.
14170  
14171 \emph on
14172 b
14173 \emph default
14174  steht für bottom und bedeutet, dass die letzte Absatzzeile in den umstehenden
14175  Text eingepasst wird.
14176  Bei 
14177 \emph on
14178 t
14179 \emph default
14180  wie top geschieht dies für die erste Zeile.
14181  Wird keine Position angegeben, wird der Absatz in mittlerer Höhe eingepasst,
14182  siehe das Kapitel 
14183 \emph on
14184 Boxen
14185 \emph default
14186  des Handbuchs
14187 \emph on
14188  Eingebettete
14189 \begin_inset space ~
14190 \end_inset
14191
14192 Objekte
14193 \emph default
14194  für Beispiele.
14195 \end_layout
14196
14197 \begin_layout Standard
14198 \begin_inset VSpace bigskip
14199 \end_inset
14200
14201 Möchte man Formeln komplett mit Formelnummer umranden, muss man die Formel
14202  in eine Absatzbox setzen.
14203  Dazu schreibt man im TeX-Modus vor die Formel den Befehl 
14204 \series bold
14205
14206 \backslash
14207 fbox{
14208 \backslash
14209 parbox{
14210 \backslash
14211 linewidth-2
14212 \backslash
14213 fboxsep-2
14214 \backslash
14215 fboxrule}{
14216 \series default
14217 .
14218  Hierbei steht 
14219 \series bold
14220
14221 \backslash
14222 linewidth
14223 \begin_inset Index
14224 status collapsed
14225
14226 \begin_layout Plain Layout
14227 Befehle ! L ! 
14228 \backslash
14229 linewidth
14230 \end_layout
14231
14232 \end_inset
14233
14234
14235 \series default
14236  für die im Dokument eingestellte Zeilenbreite.
14237  Da sich der Rahmen außerhalb der Absatzbox befindet, muss man von der Zeilenbre
14238 ite zweimal die Rahmendicke und den Rahmenabstand abziehen.
14239  Da dies LyX aufgrund eines Fehlers
14240 \begin_inset Foot
14241 status collapsed
14242
14243 \begin_layout Plain Layout
14244 \begin_inset CommandInset href
14245 LatexCommand href
14246 name "LyX-Fehler #4483"
14247 target "http://bugzilla.lyx.org/show_bug.cgi?id=4483"
14248
14249 \end_inset
14250
14251
14252 \end_layout
14253
14254 \end_inset
14255
14256  nicht automatisch macht, muss der TeX-Modus verwendet werden.
14257  Damit man in Argumenten multiplizieren und subtrahieren kann, muss im LaTeX-Vor
14258 spann das LaTeX-Paket 
14259 \series bold
14260 calc
14261 \series default
14262
14263 \begin_inset Foot
14264 status collapsed
14265
14266 \begin_layout Plain Layout
14267
14268 \series bold
14269 calc
14270 \series default
14271  ist Teil jeder LaTeX-Standardinstallation.
14272 \end_layout
14273
14274 \end_inset
14275
14276
14277 \begin_inset Index
14278 status collapsed
14279
14280 \begin_layout Plain Layout
14281 Pakete ! calc
14282 \end_layout
14283
14284 \end_inset
14285
14286  mit der Zeile
14287 \end_layout
14288
14289 \begin_layout Standard
14290
14291 \series bold
14292
14293 \backslash
14294 usepackage{calc}
14295 \end_layout
14296
14297 \begin_layout Standard
14298 geladen werden.
14299  Nach der Formel werden beide Boxen geschlossen, indem man 
14300 \series bold
14301 }}
14302 \series default
14303  im TeX-Modus eingibt.
14304  Dazu ein Beispiel:
14305 \begin_inset ERT
14306 status collapsed
14307
14308 \begin_layout Plain Layout
14309
14310
14311 \backslash
14312 fboxsep 5mm 
14313 \backslash
14314 fboxrule 5mm
14315 \end_layout
14316
14317 \end_inset
14318
14319
14320 \end_layout
14321
14322 \begin_layout Standard
14323 \begin_inset ERT
14324 status collapsed
14325
14326 \begin_layout Plain Layout
14327
14328
14329 \backslash
14330 fbox{
14331 \backslash
14332 parbox{
14333 \backslash
14334 linewidth-2
14335 \backslash
14336 fboxsep-2
14337 \backslash
14338 fboxrule}{
14339 \end_layout
14340
14341 \end_inset
14342
14343
14344 \begin_inset Formula \begin{equation}
14345 \int A\,\mathrm{d}x=\frac{\sqrt[5]{B}}{\ln\left(\frac{1}{3}\right)}\end{equation}
14346
14347 \end_inset
14348
14349
14350 \begin_inset ERT
14351 status collapsed
14352
14353 \begin_layout Plain Layout
14354
14355 }}
14356 \end_layout
14357
14358 \end_inset
14359
14360
14361 \begin_inset ERT
14362 status collapsed
14363
14364 \begin_layout Plain Layout
14365
14366
14367 \backslash
14368 fboxrule 0.4pt 
14369 \backslash
14370 fboxsep 3pt
14371 \end_layout
14372
14373 \end_inset
14374
14375
14376 \end_layout
14377
14378 \begin_layout Standard
14379 \begin_inset VSpace medskip
14380 \end_inset
14381
14382 Da im Argument von 
14383 \series bold
14384
14385 \backslash
14386 fbox
14387 \series default
14388  eine Absatzbox verwendet wird, gibt es in diesem Fall bei der Formelgröße
14389  keinen Unterschied zwischen 
14390 \series bold
14391
14392 \backslash
14393 fbox
14394 \series default
14395  und 
14396 \series bold
14397
14398 \backslash
14399 boxed
14400 \series default
14401 .
14402 \end_layout
14403
14404 \begin_layout Standard
14405 \begin_inset VSpace bigskip
14406 \end_inset
14407
14408 Sehr nützlich sind Absatzboxen, wenn man Formeln direkt kommentieren möchte.
14409  Dazu verwendet man 
14410 \series bold
14411
14412 \backslash
14413 parbox
14414 \series default
14415  in Verbindung mit dem Befehl 
14416 \series bold
14417
14418 \backslash
14419 tag
14420 \series default
14421 .
14422  (mehr zu 
14423 \series bold
14424
14425 \backslash
14426 tag
14427 \series default
14428  siehe 
14429 \begin_inset CommandInset ref
14430 LatexCommand ref
14431 reference "sub:Benutzerdefinierte-Nummerierung"
14432
14433 \end_inset
14434
14435 )
14436 \end_layout
14437
14438 \begin_layout Standard
14439 Ein Beispiel einer mit Hilfe von 
14440 \series bold
14441
14442 \backslash
14443 parbox
14444 \series default
14445  kommentierten Formel:
14446 \end_layout
14447
14448 \begin_layout Standard
14449 \begin_inset ERT
14450 status collapsed
14451
14452 \begin_layout Plain Layout
14453
14454
14455 \backslash
14456 [5x-7b=3b
14457 \backslash
14458 tag*{
14459 \backslash
14460 parbox{5cm}{
14461 \end_layout
14462
14463 \end_inset
14464
14465 Dies ist eine Beschreibung.
14466  Sie ist deutlich von der Formel getrennt und mehrzeilig.
14467 \begin_inset ERT
14468 status collapsed
14469
14470 \begin_layout Plain Layout
14471
14472 }}
14473 \backslash
14474 ]
14475 \end_layout
14476
14477 \end_inset
14478
14479
14480 \end_layout
14481
14482 \begin_layout Standard
14483 So eine Formel muss komplett im TeX-Modus eingegeben werden, da LyX den
14484  Befehl 
14485 \series bold
14486
14487 \backslash
14488 parbox
14489 \series default
14490  in Formeln noch nicht unterstützt.
14491  Die Formel wird mit folgender Befehlssequenz erstellt:
14492 \end_layout
14493
14494 \begin_layout Standard
14495 Der Befehl 
14496 \series bold
14497
14498 \backslash
14499 [5x-7b=3b
14500 \backslash
14501 tag*
14502 \backslash
14503 {
14504 \backslash
14505 parbox{5cm}{
14506 \series default
14507  wird im TeX-Modus eingegeben.
14508 \begin_inset Foot
14509 status collapsed
14510
14511 \begin_layout Plain Layout
14512 Ist der Formelstil 
14513 \series bold
14514 Eingerückt
14515 \series default
14516  aktiviert, kann 
14517 \series bold
14518
14519 \backslash
14520 tag*
14521 \backslash
14522 {
14523 \series default
14524  auch durch 
14525 \series bold
14526
14527 \backslash
14528 hfill
14529 \series default
14530  ersetzt werden.
14531  (Formelstile siehe 
14532 \begin_inset CommandInset ref
14533 LatexCommand ref
14534 reference "sec:Formelstile"
14535
14536 \end_inset
14537
14538 )
14539 \end_layout
14540
14541 \end_inset
14542
14543  Dann folgt die Beschreibung als normaler Text und zuletzt gibt man 
14544 \series bold
14545 }}
14546 \backslash
14547 ]
14548 \series default
14549  im TeX-Modus ein.
14550  Die Befehle 
14551 \series bold
14552
14553 \backslash
14554 [
14555 \series default
14556  und 
14557 \series bold
14558
14559 \backslash
14560 ]
14561 \series default
14562  erstellen hierbei eine abgesetzte Formel.
14563 \end_layout
14564
14565 \begin_layout Standard
14566 Die Vorteile von 
14567 \series bold
14568
14569 \backslash
14570 parbox
14571 \series default
14572  erkennt man an folgendem Beispiel, in dem mit Hilfe des mathematischen
14573  Textmodus 
14574 \begin_inset Quotes gld
14575 \end_inset
14576
14577 kommentiert
14578 \begin_inset Quotes grd
14579 \end_inset
14580
14581  wurde:
14582 \begin_inset Formula \[
14583 5x-7b=3b\textrm{Dies ist eine Beschreibung. Sie ist nicht von der Formel getrennt ...}\]
14584
14585 \end_inset
14586
14587
14588 \end_layout
14589
14590 \begin_layout Section
14591 Operatoren
14592 \begin_inset Index
14593 status collapsed
14594
14595 \begin_layout Plain Layout
14596 Operatoren
14597 \end_layout
14598
14599 \end_inset
14600
14601
14602 \end_layout
14603
14604 \begin_layout Subsection
14605 Große Operatoren
14606 \begin_inset CommandInset label
14607 LatexCommand label
14608 name "sub:Große-Operatoren"
14609
14610 \end_inset
14611
14612
14613 \begin_inset Index
14614 status collapsed
14615
14616 \begin_layout Plain Layout
14617 Operatoren ! große
14618 \end_layout
14619
14620 \end_inset
14621
14622
14623 \begin_inset Index
14624 status collapsed
14625
14626 \begin_layout Plain Layout
14627 Summen
14628 \end_layout
14629
14630 \end_inset
14631
14632
14633 \begin_inset Index
14634 status collapsed
14635
14636 \begin_layout Plain Layout
14637 Integrale
14638 \end_layout
14639
14640 \end_inset
14641
14642
14643 \end_layout
14644
14645 \begin_layout Standard
14646 Um alle großen Integraloperatoren nutzen zu können, die im Folgenden aufgelistet
14647  sind, muss die Option 
14648 \family sans
14649 esint-Paket automatisch verwenden
14650 \family default
14651  in den Dokumenteinstellungen unter 
14652 \family sans
14653 Mathe-Optionen
14654 \family default
14655  gewählt sein.
14656 \end_layout
14657
14658 \begin_layout Standard
14659 \begin_inset space \hfill{}
14660 \end_inset
14661
14662
14663 \begin_inset Tabular
14664 <lyxtabular version="3" rows="11" columns="2">
14665 <features>
14666 <column alignment="center" valignment="top" width="0pt">
14667 <column alignment="center" valignment="top" width="0pt">
14668 <row>
14669 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
14670 \begin_inset Text
14671
14672 \begin_layout Plain Layout
14673 Befehl
14674 \end_layout
14675
14676 \end_inset
14677 </cell>
14678 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
14679 \begin_inset Text
14680
14681 \begin_layout Plain Layout
14682 Ergebnis
14683 \end_layout
14684
14685 \end_inset
14686 </cell>
14687 </row>
14688 <row>
14689 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14690 \begin_inset Text
14691
14692 \begin_layout Plain Layout
14693
14694 \backslash
14695 sum
14696 \begin_inset Index
14697 status collapsed
14698
14699 \begin_layout Plain Layout
14700 Befehle ! S ! 
14701 \backslash
14702 sum
14703 \end_layout
14704
14705 \end_inset
14706
14707
14708 \end_layout
14709
14710 \end_inset
14711 </cell>
14712 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14713 \begin_inset Text
14714
14715 \begin_layout Plain Layout
14716 \begin_inset Formula $\sum$
14717 \end_inset
14718
14719
14720 \end_layout
14721
14722 \end_inset
14723 </cell>
14724 </row>
14725 <row>
14726 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14727 \begin_inset Text
14728
14729 \begin_layout Plain Layout
14730
14731 \backslash
14732 int
14733 \begin_inset Index
14734 status collapsed
14735
14736 \begin_layout Plain Layout
14737 Befehle ! I ! 
14738 \backslash
14739 int
14740 \end_layout
14741
14742 \end_inset
14743
14744
14745 \end_layout
14746
14747 \end_inset
14748 </cell>
14749 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14750 \begin_inset Text
14751
14752 \begin_layout Plain Layout
14753 \begin_inset Formula $\int$
14754 \end_inset
14755
14756
14757 \end_layout
14758
14759 \end_inset
14760 </cell>
14761 </row>
14762 <row>
14763 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14764 \begin_inset Text
14765
14766 \begin_layout Plain Layout
14767
14768 \backslash
14769 intop
14770 \end_layout
14771
14772 \end_inset
14773 </cell>
14774 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14775 \begin_inset Text
14776
14777 \begin_layout Plain Layout
14778 \begin_inset Formula $\intop$
14779 \end_inset
14780
14781
14782 \end_layout
14783
14784 \end_inset
14785 </cell>
14786 </row>
14787 <row>
14788 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14789 \begin_inset Text
14790
14791 \begin_layout Plain Layout
14792
14793 \backslash
14794 oint
14795 \end_layout
14796
14797 \end_inset
14798 </cell>
14799 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14800 \begin_inset Text
14801
14802 \begin_layout Plain Layout
14803 \begin_inset Formula $\oint$
14804 \end_inset
14805
14806
14807 \end_layout
14808
14809 \end_inset
14810 </cell>
14811 </row>
14812 <row>
14813 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14814 \begin_inset Text
14815
14816 \begin_layout Plain Layout
14817
14818 \backslash
14819 ointop
14820 \end_layout
14821
14822 \end_inset
14823 </cell>
14824 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14825 \begin_inset Text
14826
14827 \begin_layout Plain Layout
14828 \begin_inset Formula $\ointop$
14829 \end_inset
14830
14831
14832 \end_layout
14833
14834 \end_inset
14835 </cell>
14836 </row>
14837 <row>
14838 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14839 \begin_inset Text
14840
14841 \begin_layout Plain Layout
14842
14843 \backslash
14844 ointctrclockwise
14845 \end_layout
14846
14847 \end_inset
14848 </cell>
14849 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14850 \begin_inset Text
14851
14852 \begin_layout Plain Layout
14853 \begin_inset Formula $\ointctrclockwise$
14854 \end_inset
14855
14856
14857 \end_layout
14858
14859 \end_inset
14860 </cell>
14861 </row>
14862 <row>
14863 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14864 \begin_inset Text
14865
14866 \begin_layout Plain Layout
14867
14868 \backslash
14869 ointclockwise
14870 \end_layout
14871
14872 \end_inset
14873 </cell>
14874 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14875 \begin_inset Text
14876
14877 \begin_layout Plain Layout
14878 \begin_inset Formula $\ointclockwise$
14879 \end_inset
14880
14881
14882 \end_layout
14883
14884 \end_inset
14885 </cell>
14886 </row>
14887 <row>
14888 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14889 \begin_inset Text
14890
14891 \begin_layout Plain Layout
14892
14893 \backslash
14894 sqint
14895 \end_layout
14896
14897 \end_inset
14898 </cell>
14899 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14900 \begin_inset Text
14901
14902 \begin_layout Plain Layout
14903 \begin_inset Formula $\sqint$
14904 \end_inset
14905
14906
14907 \end_layout
14908
14909 \end_inset
14910 </cell>
14911 </row>
14912 <row>
14913 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14914 \begin_inset Text
14915
14916 \begin_layout Plain Layout
14917
14918 \backslash
14919 bigcap
14920 \end_layout
14921
14922 \end_inset
14923 </cell>
14924 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14925 \begin_inset Text
14926
14927 \begin_layout Plain Layout
14928 \begin_inset Formula $\bigcap$
14929 \end_inset
14930
14931
14932 \end_layout
14933
14934 \end_inset
14935 </cell>
14936 </row>
14937 <row>
14938 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
14939 \begin_inset Text
14940
14941 \begin_layout Plain Layout
14942
14943 \backslash
14944 bigcup
14945 \end_layout
14946
14947 \end_inset
14948 </cell>
14949 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
14950 \begin_inset Text
14951
14952 \begin_layout Plain Layout
14953 \begin_inset Formula $\bigcup$
14954 \end_inset
14955
14956
14957 \end_layout
14958
14959 \end_inset
14960 </cell>
14961 </row>
14962 </lyxtabular>
14963
14964 \end_inset
14965
14966
14967 \begin_inset space \hfill{}
14968 \end_inset
14969
14970
14971 \begin_inset Tabular
14972 <lyxtabular version="3" rows="10" columns="2">
14973 <features>
14974 <column alignment="center" valignment="top" width="0pt">
14975 <column alignment="center" valignment="top" width="0pt">
14976 <row>
14977 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
14978 \begin_inset Text
14979
14980 \begin_layout Plain Layout
14981 Befehl
14982 \end_layout
14983
14984 \end_inset
14985 </cell>
14986 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
14987 \begin_inset Text
14988
14989 \begin_layout Plain Layout
14990 Ergebnis
14991 \end_layout
14992
14993 \end_inset
14994 </cell>
14995 </row>
14996 <row>
14997 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14998 \begin_inset Text
14999
15000 \begin_layout Plain Layout
15001
15002 \backslash
15003 prod
15004 \begin_inset Index
15005 status collapsed
15006
15007 \begin_layout Plain Layout
15008 Befehle ! P ! 
15009 \backslash
15010 prod
15011 \end_layout
15012
15013 \end_inset
15014
15015
15016 \end_layout
15017
15018 \end_inset
15019 </cell>
15020 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15021 \begin_inset Text
15022
15023 \begin_layout Plain Layout
15024 \begin_inset Formula $\prod$
15025 \end_inset
15026
15027
15028 \end_layout
15029
15030 \end_inset
15031 </cell>
15032 </row>
15033 <row>
15034 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15035 \begin_inset Text
15036
15037 \begin_layout Plain Layout
15038
15039 \backslash
15040 coprod
15041 \end_layout
15042
15043 \end_inset
15044 </cell>
15045 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15046 \begin_inset Text
15047
15048 \begin_layout Plain Layout
15049 \begin_inset Formula $\coprod$
15050 \end_inset
15051
15052
15053 \end_layout
15054
15055 \end_inset
15056 </cell>
15057 </row>
15058 <row>
15059 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15060 \begin_inset Text
15061
15062 \begin_layout Plain Layout
15063
15064 \backslash
15065 bigodot
15066 \end_layout
15067
15068 \end_inset
15069 </cell>
15070 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15071 \begin_inset Text
15072
15073 \begin_layout Plain Layout
15074 \begin_inset Formula $\bigodot$
15075 \end_inset
15076
15077
15078 \end_layout
15079
15080 \end_inset
15081 </cell>
15082 </row>
15083 <row>
15084 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15085 \begin_inset Text
15086
15087 \begin_layout Plain Layout
15088
15089 \backslash
15090 bigotimes
15091 \end_layout
15092
15093 \end_inset
15094 </cell>
15095 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15096 \begin_inset Text
15097
15098 \begin_layout Plain Layout
15099 \begin_inset Formula $\bigotimes$
15100 \end_inset
15101
15102
15103 \end_layout
15104
15105 \end_inset
15106 </cell>
15107 </row>
15108 <row>
15109 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15110 \begin_inset Text
15111
15112 \begin_layout Plain Layout
15113
15114 \backslash
15115 bigoplus
15116 \end_layout
15117
15118 \end_inset
15119 </cell>
15120 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15121 \begin_inset Text
15122
15123 \begin_layout Plain Layout
15124 \begin_inset Formula $\bigoplus$
15125 \end_inset
15126
15127
15128 \end_layout
15129
15130 \end_inset
15131 </cell>
15132 </row>
15133 <row>
15134 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15135 \begin_inset Text
15136
15137 \begin_layout Plain Layout
15138
15139 \backslash
15140 bigwedge
15141 \end_layout
15142
15143 \end_inset
15144 </cell>
15145 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15146 \begin_inset Text
15147
15148 \begin_layout Plain Layout
15149 \begin_inset Formula $\bigwedge$
15150 \end_inset
15151
15152
15153 \end_layout
15154
15155 \end_inset
15156 </cell>
15157 </row>
15158 <row>
15159 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15160 \begin_inset Text
15161
15162 \begin_layout Plain Layout
15163
15164 \backslash
15165 bigvee
15166 \end_layout
15167
15168 \end_inset
15169 </cell>
15170 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15171 \begin_inset Text
15172
15173 \begin_layout Plain Layout
15174 \begin_inset Formula $\bigvee$
15175 \end_inset
15176
15177
15178 \end_layout
15179
15180 \end_inset
15181 </cell>
15182 </row>
15183 <row>
15184 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15185 \begin_inset Text
15186
15187 \begin_layout Plain Layout
15188
15189 \backslash
15190 bigsqcup
15191 \end_layout
15192
15193 \end_inset
15194 </cell>
15195 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15196 \begin_inset Text
15197
15198 \begin_layout Plain Layout
15199 \begin_inset Formula $\bigsqcup$
15200 \end_inset
15201
15202
15203 \end_layout
15204
15205 \end_inset
15206 </cell>
15207 </row>
15208 <row>
15209 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
15210 \begin_inset Text
15211
15212 \begin_layout Plain Layout
15213
15214 \backslash
15215 biguplus
15216 \end_layout
15217
15218 \end_inset
15219 </cell>
15220 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
15221 \begin_inset Text
15222
15223 \begin_layout Plain Layout
15224 \begin_inset Formula $\biguplus$
15225 \end_inset
15226
15227
15228 \end_layout
15229
15230 \end_inset
15231 </cell>
15232 </row>
15233 </lyxtabular>
15234
15235 \end_inset
15236
15237
15238 \begin_inset space \hfill{}
15239 \end_inset
15240
15241
15242 \end_layout
15243
15244 \begin_layout Standard
15245 Alle großen Operatoren können auch über den Mathe-Werkzeugleistenknopf 
15246 \begin_inset Graphics
15247         filename ../../images/math/intop.png
15248         scale 85
15249
15250 \end_inset
15251
15252  eingefügt werden.
15253 \end_layout
15254
15255 \begin_layout Standard
15256 Die Operatoren werden als groß bezeichnet, da sie größer sind als die zum
15257  Teil gleich aussehenden binären Operatoren.
15258  Zu allen großen Operatoren kann man Grenzen angeben, wie im nächsten Abschnitt
15259  beschrieben.
15260 \end_layout
15261
15262 \begin_layout Standard
15263 Die Operatoren 
15264 \series bold
15265
15266 \backslash
15267 intop
15268 \series default
15269  und 
15270 \series bold
15271
15272 \backslash
15273 ointop
15274 \series default
15275  unterscheiden sich von 
15276 \series bold
15277
15278 \backslash
15279 int
15280 \series default
15281  bzw.
15282  
15283 \series bold
15284
15285 \backslash
15286 oint
15287 \series default
15288  in der Art wie die Operatorgrenzen dargestellt werden, siehe 
15289 \begin_inset CommandInset ref
15290 LatexCommand ref
15291 reference "sub:Operatorgrenzen"
15292
15293 \end_inset
15294
15295 .
15296  
15297 \end_layout
15298
15299 \begin_layout Subsubsection*
15300 Hinweise zu Integralen
15301 \end_layout
15302
15303 \begin_layout Standard
15304 Der Buchstabe 
15305 \emph on
15306 d
15307 \emph default
15308  in einer Integralen ist ein Operator, der deswegen aufrecht erscheinen
15309  muss.
15310  Dazu markiert man das 
15311 \emph on
15312 d
15313 \emph default
15314  und wandelt es mit der Tastenkombination 
15315 \family sans
15316 Alt-z
15317 \begin_inset space ~
15318 \end_inset
15319
15320 r
15321 \family default
15322
15323 \begin_inset Foot
15324 status collapsed
15325
15326 \begin_layout Plain Layout
15327 Schriftstile siehe 
15328 \begin_inset CommandInset ref
15329 LatexCommand ref
15330 reference "sub:Schriftstile"
15331
15332 \end_inset
15333
15334
15335 \end_layout
15336
15337 \end_inset
15338
15339  um.
15340  Anschließend fügt man vor dem 
15341 \emph on
15342 d
15343 \emph default
15344 , wie bei Operatoren üblich, den kleinsten Leerraum ein.
15345  Dazu ein Beispiel:
15346 \end_layout
15347
15348 \begin_layout Standard
15349 inkorrekt: 
15350 \begin_inset Formula $\int A(x)dx$
15351 \end_inset
15352
15353
15354 \begin_inset Newline newline
15355 \end_inset
15356
15357
15358 \begin_inset ERT
15359 status collapsed
15360
15361 \begin_layout Plain Layout
15362
15363
15364 \backslash
15365 hphantom{in}
15366 \end_layout
15367
15368 \end_inset
15369
15370 korrekt: 
15371 \begin_inset Formula $\int A(x)\,\mathrm{d}x$
15372 \end_inset
15373
15374
15375 \end_layout
15376
15377 \begin_layout Standard
15378 \begin_inset VSpace medskip
15379 \end_inset
15380
15381 Für Mehrfachintegrale gibt es folgende Befehle:
15382 \begin_inset VSpace medskip
15383 \end_inset
15384
15385
15386 \end_layout
15387
15388 \begin_layout Standard
15389 \begin_inset space \hfill{}
15390 \end_inset
15391
15392
15393 \begin_inset Tabular
15394 <lyxtabular version="3" rows="4" columns="2">
15395 <features>
15396 <column alignment="center" valignment="top" width="0">
15397 <column alignment="center" valignment="top" width="0">
15398 <row>
15399 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
15400 \begin_inset Text
15401
15402 \begin_layout Plain Layout
15403 Befehl
15404 \end_layout
15405
15406 \end_inset
15407 </cell>
15408 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
15409 \begin_inset Text
15410
15411 \begin_layout Plain Layout
15412 Ergebnis
15413 \begin_inset Note Note
15414 status collapsed
15415
15416 \begin_layout Plain Layout
15417
15418 \series bold
15419
15420 \backslash
15421 raisebox
15422 \series default
15423  dient nur als Abstandhalter.
15424 \end_layout
15425
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 iint
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 $\raisebox{4.5mm}{}\iint\raisebox{-2.5mm}{}$
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 oiint
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 $\raisebox{4.5mm}{}\oiint\raisebox{-2.5mm}{}$
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" bottomline="true" leftline="true" usebox="none">
15486 \begin_inset Text
15487
15488 \begin_layout Plain Layout
15489
15490 \backslash
15491 sqiint
15492 \end_layout
15493
15494 \end_inset
15495 </cell>
15496 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
15497 \begin_inset Text
15498
15499 \begin_layout Plain Layout
15500 \begin_inset Formula $\raisebox{4.5mm}{}\sqiint\raisebox{-2.5mm}{}$
15501 \end_inset
15502
15503
15504 \end_layout
15505
15506 \end_inset
15507 </cell>
15508 </row>
15509 </lyxtabular>
15510
15511 \end_inset
15512
15513
15514 \begin_inset space \hfill{}
15515 \end_inset
15516
15517
15518 \begin_inset Tabular
15519 <lyxtabular version="3" rows="4" columns="2">
15520 <features>
15521 <column alignment="center" valignment="top" width="0">
15522 <column alignment="center" valignment="top" width="0">
15523 <row>
15524 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
15525 \begin_inset Text
15526
15527 \begin_layout Plain Layout
15528 Befehl
15529 \end_layout
15530
15531 \end_inset
15532 </cell>
15533 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
15534 \begin_inset Text
15535
15536 \begin_layout Plain Layout
15537 Ergebnis
15538 \end_layout
15539
15540 \end_inset
15541 </cell>
15542 </row>
15543 <row>
15544 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15545 \begin_inset Text
15546
15547 \begin_layout Plain Layout
15548
15549 \backslash
15550 iiint
15551 \end_layout
15552
15553 \end_inset
15554 </cell>
15555 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15556 \begin_inset Text
15557
15558 \begin_layout Plain Layout
15559 \begin_inset Formula $\raisebox{4.5mm}{}\iiint\raisebox{-2.5mm}{}$
15560 \end_inset
15561
15562
15563 \end_layout
15564
15565 \end_inset
15566 </cell>
15567 </row>
15568 <row>
15569 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15570 \begin_inset Text
15571
15572 \begin_layout Plain Layout
15573
15574 \backslash
15575 iiiint
15576 \end_layout
15577
15578 \end_inset
15579 </cell>
15580 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15581 \begin_inset Text
15582
15583 \begin_layout Plain Layout
15584 \begin_inset Formula $\raisebox{4.5mm}{}\iiiint\raisebox{-2.5mm}{}$
15585 \end_inset
15586
15587
15588 \end_layout
15589
15590 \end_inset
15591 </cell>
15592 </row>
15593 <row>
15594 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
15595 \begin_inset Text
15596
15597 \begin_layout Plain Layout
15598
15599 \backslash
15600 dotsint
15601 \end_layout
15602
15603 \end_inset
15604 </cell>
15605 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
15606 \begin_inset Text
15607
15608 \begin_layout Plain Layout
15609 \begin_inset Formula $\raisebox{4.5mm}{}\dotsint\raisebox{-2.5mm}{}$
15610 \end_inset
15611
15612
15613 \end_layout
15614
15615 \end_inset
15616 </cell>
15617 </row>
15618 </lyxtabular>
15619
15620 \end_inset
15621
15622
15623 \begin_inset space \hfill{}
15624 \end_inset
15625
15626
15627 \begin_inset Newpage newpage
15628 \end_inset
15629
15630
15631 \end_layout
15632
15633 \begin_layout Subsection
15634 Operatorgrenzen
15635 \begin_inset CommandInset label
15636 LatexCommand label
15637 name "sub:Operatorgrenzen"
15638
15639 \end_inset
15640
15641
15642 \begin_inset Index
15643 status collapsed
15644
15645 \begin_layout Plain Layout
15646 Operatoren ! Grenzen
15647 \end_layout
15648
15649 \end_inset
15650
15651
15652 \end_layout
15653
15654 \begin_layout Standard
15655 Grenzen werden durch Hoch- bzw.
15656  Tiefstellen erzeugt:
15657 \end_layout
15658
15659 \begin_layout Standard
15660 \align center
15661 \begin_inset Tabular
15662 <lyxtabular version="3" rows="2" columns="2">
15663 <features>
15664 <column alignment="center" valignment="top" width="0pt">
15665 <column alignment="center" valignment="top" width="0pt">
15666 <row>
15667 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
15668 \begin_inset Text
15669
15670 \begin_layout Plain Layout
15671 Befehl
15672 \end_layout
15673
15674 \end_inset
15675 </cell>
15676 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
15677 \begin_inset Text
15678
15679 \begin_layout Plain Layout
15680 Ergebnis
15681 \begin_inset Note Note
15682 status collapsed
15683
15684 \begin_layout Plain Layout
15685
15686 \series bold
15687
15688 \backslash
15689 raisebox
15690 \series default
15691  dient nur als Abstandhalter.
15692 \end_layout
15693
15694 \end_inset
15695
15696
15697 \end_layout
15698
15699 \end_inset
15700 </cell>
15701 </row>
15702 <row>
15703 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
15704 \begin_inset Text
15705
15706 \begin_layout Plain Layout
15707
15708 \backslash
15709 prod^
15710 \backslash
15711 infty
15712 \begin_inset ERT
15713 status collapsed
15714
15715 \begin_layout Plain Layout
15716
15717
15718 \backslash
15719 leer 
15720 \end_layout
15721
15722 \end_inset
15723
15724
15725 \begin_inset Formula $\to$
15726 \end_inset
15727
15728 _0
15729 \begin_inset Formula $\to$
15730 \end_inset
15731
15732 A(x)
15733 \end_layout
15734
15735 \end_inset
15736 </cell>
15737 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
15738 \begin_inset Text
15739
15740 \begin_layout Plain Layout
15741 \begin_inset Formula $\raisebox{5mm}{}\prod_{0}^{\infty}A(x)\raisebox{-2.5mm}{}$
15742 \end_inset
15743
15744
15745 \end_layout
15746
15747 \end_inset
15748 </cell>
15749 </row>
15750 </lyxtabular>
15751
15752 \end_inset
15753
15754
15755 \end_layout
15756
15757 \begin_layout Standard
15758 Bei einer Formel in einer Textzeile werden die Grenzen rechts neben den
15759  Operator gesetzt.
15760  In einer abgesetzten Formel werden, außer bei Integralen, die Grenzen über
15761  bzw.
15762  unter den Operator gesetzt.
15763 \end_layout
15764
15765 \begin_layout Standard
15766 Um zu erzwingen, dass die Grenzen neben den Operator gesetzt werden, setzt
15767  man den Cursor direkt hinter den Operator und setzt über das Menü 
15768 \family sans
15769 Bearbeiten\SpecialChar \menuseparator
15770 Mathe\SpecialChar \menuseparator
15771 Art der Operatorgrenzen ändern
15772 \family default
15773  die Grenzen auf 
15774 \series bold
15775 Eingebettet
15776 \series default
15777  (Tastenkombination 
15778 \family sans
15779 Alt-m
15780 \begin_inset space ~
15781 \end_inset
15782
15783 l
15784 \family default
15785 ).
15786  Dazu folgendes Beispiel:
15787 \end_layout
15788
15789 \begin_layout Standard
15790 Die normalen Grenzen sehen so aus:
15791 \begin_inset Formula \[
15792 \sum_{x=0}^{\infty}\frac{1}{x^{2}}\]
15793
15794 \end_inset
15795
15796 So sieht die Formel aus, wenn man die Grenzen neben das Summenzeichen setzt:
15797 \begin_inset Formula \[
15798 \sum\nolimits _{x=0}^{\infty}\frac{1}{x^{2}}\]
15799
15800 \end_inset
15801
15802 Bei Integralen werden mit Ausnahme von 
15803 \series bold
15804
15805 \backslash
15806 intop
15807 \series default
15808  und 
15809 \series bold
15810
15811 \backslash
15812 ointop
15813 \series default
15814  die Grenzen standardmäßig neben den Operator gesetzt.
15815  Bei Mehrfachintegralen werden die Grenzen jedoch meistens unter den Operator
15816  gesetzt.
15817  Im folgenden Beispiel wurde die Grenze deswegen auf 
15818 \series bold
15819 Anzeige
15820 \series default
15821  gesetzt und damit unter die Integrale geschrieben:
15822 \begin_inset Formula \begin{equation}
15823 \iiint\limits _{V}X\,\mathrm{d}V=U\label{eq:VolInt}\end{equation}
15824
15825 \end_inset
15826
15827
15828 \end_layout
15829
15830 \begin_layout Standard
15831 \begin_inset VSpace medskip
15832 \end_inset
15833
15834 Um Bedingungen für Grenzen anzugeben, gibt es die Befehle 
15835 \series bold
15836
15837 \backslash
15838 subarray
15839 \series default
15840
15841 \begin_inset Index
15842 status collapsed
15843
15844 \begin_layout Plain Layout
15845 Befehle ! S ! 
15846 \backslash
15847 subarray
15848 \end_layout
15849
15850 \end_inset
15851
15852  und 
15853 \series bold
15854
15855 \backslash
15856 substack
15857 \series default
15858
15859 \begin_inset Index
15860 status collapsed
15861
15862 \begin_layout Plain Layout
15863 Befehle ! S ! 
15864 \backslash
15865 substack
15866 \end_layout
15867
15868 \end_inset
15869
15870 .
15871  Um z.
15872 \begin_inset space \thinspace{}
15873 \end_inset
15874
15875 B.
15876  diesen Ausdruck 
15877 \begin_inset Formula \begin{equation}
15878 \sum_{\begin{subarray}{c}
15879 0<k<1000\\
15880 \\k\,\in\,\mathbb{N}\end{subarray}}^{n}k^{-2}\label{eq:substack}\end{equation}
15881
15882 \end_inset
15883
15884 zu erstellen, muss man Folgendes tun:
15885 \begin_inset Newline newline
15886 \end_inset
15887
15888 Zuerst gibt man den Befehl 
15889 \series bold
15890
15891 \backslash
15892 sum
15893 \series default
15894 ^
15895 \series bold
15896 n
15897 \begin_inset ERT
15898 status collapsed
15899
15900 \begin_layout Plain Layout
15901
15902
15903 \backslash
15904 leer 
15905 \end_layout
15906
15907 \end_inset
15908
15909 _
15910 \series default
15911  ein.
15912  Man befindet sich nun in einem blauen Kästchen unter dem Summenzeichen.
15913  In dieses gibt man den Befehl 
15914 \series bold
15915
15916 \backslash
15917 subarray
15918 \begin_inset ERT
15919 status collapsed
15920
15921 \begin_layout Plain Layout
15922
15923
15924 \backslash
15925 leer 
15926 \end_layout
15927
15928 \end_inset
15929
15930
15931 \series default
15932  ein.
15933  Das blaue Kästchen hat nun eine lila Umrahmung und man kann jetzt mehrere
15934  Zeilen untereinander schreiben.
15935  Mit Eingabe des Zeilenumbruchs (
15936 \family sans
15937 Strg-Enter
15938 \family default
15939 ) wird eine neue Zeile erstellt.
15940  Gibt man
15941 \begin_inset Newline newline
15942 \end_inset
15943
15944
15945 \series bold
15946 0<k<1000 Strg-Enter
15947 \begin_inset Newline newline
15948 \end_inset
15949
15950
15951 \series default
15952 ein, erscheint darunter ein Kästchen für die neue Zeile.
15953 \end_layout
15954
15955 \begin_layout Standard
15956 Die Ausrichtung der Zeilen kann mit der 
15957 \family sans
15958 Tabellen-Werkzeugleiste
15959 \family default
15960  oder dem Menü 
15961 \family sans
15962 Bearbeiten\SpecialChar \menuseparator
15963 Zeilen & Spalten
15964 \family default
15965  auf links geändert werden.
15966  Um rechts ausgerichtete Zeilen zu erhalten, wird am Anfang der Zeile 
15967 \series bold
15968
15969 \backslash
15970 hfill
15971 \begin_inset ERT
15972 status collapsed
15973
15974 \begin_layout Plain Layout
15975
15976
15977 \backslash
15978 leer 
15979 \end_layout
15980
15981 \end_inset
15982
15983
15984 \series default
15985  eingegeben.
15986 \end_layout
15987
15988 \begin_layout Standard
15989 Der Befehl 
15990 \series bold
15991
15992 \backslash
15993 substack
15994 \series default
15995  ist äquivalent zu 
15996 \series bold
15997
15998 \backslash
15999 subarray
16000 \series default
16001 , mit dem Unterschied dass die Zeilen immer zentriert ausgerichtet sind.
16002 \end_layout
16003
16004 \begin_layout Standard
16005 \begin_inset VSpace bigskip
16006 \end_inset
16007
16008 Wie bei Formel 
16009 \begin_inset CommandInset ref
16010 LatexCommand eqref
16011 reference "eq:substack"
16012
16013 \end_inset
16014
16015  kann es vorkommen, dass sich neben dem Operator zu viel Leerraum befindet,
16016  denn das dem Operator folgende Zeichen wird neben die Grenzen gesetzt.
16017 \end_layout
16018
16019 \begin_layout Standard
16020 Um das zu verhindern, kann man folgendes Makro in den LaTeX-Vorspann einfügen:
16021 \end_layout
16022
16023 \begin_layout Standard
16024
16025 \series bold
16026
16027 \backslash
16028 def
16029 \backslash
16030 clap#1{
16031 \backslash
16032 hbox to 0pt{
16033 \backslash
16034 hss #1
16035 \backslash
16036 hss}}
16037 \begin_inset Newline newline
16038 \end_inset
16039
16040
16041 \backslash
16042 def
16043 \backslash
16044 mathclap {
16045 \backslash
16046 mathpalette 
16047 \backslash
16048 mathclapinternal}
16049 \begin_inset Newline newline
16050 \end_inset
16051
16052
16053 \backslash
16054 def
16055 \backslash
16056 mathclapinternal #1#2{
16057 \backslash
16058 clap{$
16059 \backslash
16060 mathsurround =0pt #1{#2}$}}
16061 \end_layout
16062
16063 \begin_layout Standard
16064 Dadurch wird der Befehl 
16065 \series bold
16066
16067 \backslash
16068 mathclap
16069 \series default
16070
16071 \begin_inset Index
16072 status collapsed
16073
16074 \begin_layout Plain Layout
16075 Befehle ! M ! 
16076 \backslash
16077 mathclap
16078 \end_layout
16079
16080 \end_inset
16081
16082  definiert, der die Breite der Grenze auf 0
16083 \begin_inset space \thinspace{}
16084 \end_inset
16085
16086 pt setzt.
16087  Das Befehlsschema lautet
16088 \end_layout
16089
16090 \begin_layout Standard
16091
16092 \series bold
16093
16094 \backslash
16095 mathclap{Grenze}
16096 \end_layout
16097
16098 \begin_layout Standard
16099 wobei die Grenze auch aus mehreren Bedingungen bestehen kann.
16100 \end_layout
16101
16102 \begin_layout Standard
16103 Auf Formel 
16104 \begin_inset CommandInset ref
16105 LatexCommand eqref
16106 reference "eq:substack"
16107
16108 \end_inset
16109
16110  angewandt, gibt man also den Befehl
16111 \end_layout
16112
16113 \begin_layout Standard
16114
16115 \series bold
16116
16117 \backslash
16118 sum_
16119 \backslash
16120 mathclap{
16121 \backslash
16122 substack
16123 \begin_inset ERT
16124 status collapsed
16125
16126 \begin_layout Plain Layout
16127
16128
16129 \backslash
16130 leer 
16131 \end_layout
16132
16133 \end_inset
16134
16135 0<k<1000 Strg-Enter
16136 \end_layout
16137
16138 \begin_layout Standard
16139 ein, um die untere Grenze zu erstellen.
16140  Der Summand befindet sich nun direkt hinter dem Summenzeichen:
16141 \begin_inset Formula \[
16142 \sum_{\mathclap{\substack{0<k<1000\\
16143 \\k\,\in\,\mathbb{N}}
16144 }}^{n}k^{-2}\]
16145
16146 \end_inset
16147
16148
16149 \end_layout
16150
16151 \begin_layout Standard
16152 \begin_inset VSpace bigskip
16153 \end_inset
16154
16155 In 
16156 \begin_inset CommandInset ref
16157 LatexCommand ref
16158 reference "sub:Selbstdefinierte-Operatoren"
16159
16160 \end_inset
16161
16162  ist beschrieben, wie man eine Grenze für mehrere Operatoren verwenden kann.
16163 \end_layout
16164
16165 \begin_layout Subsection
16166 Binäre Operatoren
16167 \begin_inset CommandInset label
16168 LatexCommand label
16169 name "sub:Binäre-Operatoren"
16170
16171 \end_inset
16172
16173
16174 \begin_inset Index
16175 status collapsed
16176
16177 \begin_layout Plain Layout
16178 Operatoren ! binäre
16179 \end_layout
16180
16181 \end_inset
16182
16183
16184 \end_layout
16185
16186 \begin_layout Standard
16187 Binäre Operatoren sind von Leerraum umgeben, wenn sich vor und hinter ihnen
16188  ein Zeichen befindet.
16189 \begin_inset VSpace medskip
16190 \end_inset
16191
16192
16193 \end_layout
16194
16195 \begin_layout Standard
16196 \begin_inset space \hfill{}
16197 \end_inset
16198
16199
16200 \begin_inset Tabular
16201 <lyxtabular version="3" rows="13" columns="2">
16202 <features>
16203 <column alignment="center" valignment="top" width="0pt">
16204 <column alignment="center" valignment="top" width="0pt">
16205 <row>
16206 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
16207 \begin_inset Text
16208
16209 \begin_layout Plain Layout
16210 Befehl
16211 \begin_inset Note Note
16212 status collapsed
16213
16214 \begin_layout Plain Layout
16215
16216 \series bold
16217
16218 \backslash
16219 raisebox
16220 \series default
16221  dient nur als Abstandhalter.
16222 \end_layout
16223
16224 \end_inset
16225
16226
16227 \end_layout
16228
16229 \end_inset
16230 </cell>
16231 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
16232 \begin_inset Text
16233
16234 \begin_layout Plain Layout
16235 Ergebnis
16236 \end_layout
16237
16238 \end_inset
16239 </cell>
16240 </row>
16241 <row>
16242 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16243 \begin_inset Text
16244
16245 \begin_layout Plain Layout
16246 +
16247 \end_layout
16248
16249 \end_inset
16250 </cell>
16251 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16252 \begin_inset Text
16253
16254 \begin_layout Plain Layout
16255 \begin_inset Formula $+$
16256 \end_inset
16257
16258
16259 \end_layout
16260
16261 \end_inset
16262 </cell>
16263 </row>
16264 <row>
16265 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16266 \begin_inset Text
16267
16268 \begin_layout Plain Layout
16269 -
16270 \end_layout
16271
16272 \end_inset
16273 </cell>
16274 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16275 \begin_inset Text
16276
16277 \begin_layout Plain Layout
16278 \begin_inset Formula $-$
16279 \end_inset
16280
16281
16282 \end_layout
16283
16284 \end_inset
16285 </cell>
16286 </row>
16287 <row>
16288 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16289 \begin_inset Text
16290
16291 \begin_layout Plain Layout
16292
16293 \backslash
16294 pm
16295 \end_layout
16296
16297 \end_inset
16298 </cell>
16299 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16300 \begin_inset Text
16301
16302 \begin_layout Plain Layout
16303 \begin_inset Formula $\pm$
16304 \end_inset
16305
16306
16307 \end_layout
16308
16309 \end_inset
16310 </cell>
16311 </row>
16312 <row>
16313 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16314 \begin_inset Text
16315
16316 \begin_layout Plain Layout
16317
16318 \backslash
16319 mp
16320 \end_layout
16321
16322 \end_inset
16323 </cell>
16324 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16325 \begin_inset Text
16326
16327 \begin_layout Plain Layout
16328 \begin_inset Formula $\mp$
16329 \end_inset
16330
16331
16332 \end_layout
16333
16334 \end_inset
16335 </cell>
16336 </row>
16337 <row>
16338 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16339 \begin_inset Text
16340
16341 \begin_layout Plain Layout
16342
16343 \backslash
16344 cdot
16345 \end_layout
16346
16347 \end_inset
16348 </cell>
16349 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16350 \begin_inset Text
16351
16352 \begin_layout Plain Layout
16353 \begin_inset Formula $\cdot$
16354 \end_inset
16355
16356
16357 \end_layout
16358
16359 \end_inset
16360 </cell>
16361 </row>
16362 <row>
16363 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16364 \begin_inset Text
16365
16366 \begin_layout Plain Layout
16367
16368 \backslash
16369 times
16370 \end_layout
16371
16372 \end_inset
16373 </cell>
16374 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16375 \begin_inset Text
16376
16377 \begin_layout Plain Layout
16378 \begin_inset Formula $\times$
16379 \end_inset
16380
16381
16382 \end_layout
16383
16384 \end_inset
16385 </cell>
16386 </row>
16387 <row>
16388 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16389 \begin_inset Text
16390
16391 \begin_layout Plain Layout
16392
16393 \backslash
16394 div
16395 \end_layout
16396
16397 \end_inset
16398 </cell>
16399 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16400 \begin_inset Text
16401
16402 \begin_layout Plain Layout
16403 \begin_inset Formula $\div$
16404 \end_inset
16405
16406
16407 \end_layout
16408
16409 \end_inset
16410 </cell>
16411 </row>
16412 <row>
16413 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16414 \begin_inset Text
16415
16416 \begin_layout Plain Layout
16417 \begin_inset ERT
16418 status collapsed
16419
16420 \begin_layout Plain Layout
16421
16422
16423 \backslash
16424 raisebox{-1.2mm}{
16425 \end_layout
16426
16427 \end_inset
16428
16429 *
16430 \begin_inset ERT
16431 status collapsed
16432
16433 \begin_layout Plain Layout
16434
16435 }
16436 \end_layout
16437
16438 \end_inset
16439
16440
16441 \end_layout
16442
16443 \end_inset
16444 </cell>
16445 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16446 \begin_inset Text
16447
16448 \begin_layout Plain Layout
16449 \begin_inset Formula $*$
16450 \end_inset
16451
16452
16453 \end_layout
16454
16455 \end_inset
16456 </cell>
16457 </row>
16458 <row>
16459 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16460 \begin_inset Text
16461
16462 \begin_layout Plain Layout
16463
16464 \backslash
16465 star
16466 \end_layout
16467
16468 \end_inset
16469 </cell>
16470 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16471 \begin_inset Text
16472
16473 \begin_layout Plain Layout
16474 \begin_inset Formula $\star$
16475 \end_inset
16476
16477
16478 \end_layout
16479
16480 \end_inset
16481 </cell>
16482 </row>
16483 <row>
16484 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16485 \begin_inset Text
16486
16487 \begin_layout Plain Layout
16488
16489 \backslash
16490 circ
16491 \end_layout
16492
16493 \end_inset
16494 </cell>
16495 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16496 \begin_inset Text
16497
16498 \begin_layout Plain Layout
16499 \begin_inset Formula $\circ$
16500 \end_inset
16501
16502
16503 \end_layout
16504
16505 \end_inset
16506 </cell>
16507 </row>
16508 <row>
16509 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16510 \begin_inset Text
16511
16512 \begin_layout Plain Layout
16513
16514 \backslash
16515 diamond
16516 \end_layout
16517
16518 \end_inset
16519 </cell>
16520 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16521 \begin_inset Text
16522
16523 \begin_layout Plain Layout
16524 \begin_inset Formula $\diamond$
16525 \end_inset
16526
16527
16528 \end_layout
16529
16530 \end_inset
16531 </cell>
16532 </row>
16533 <row>
16534 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
16535 \begin_inset Text
16536
16537 \begin_layout Plain Layout
16538
16539 \backslash
16540 bullet
16541 \end_layout
16542
16543 \end_inset
16544 </cell>
16545 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
16546 \begin_inset Text
16547
16548 \begin_layout Plain Layout
16549 \begin_inset Formula $\bullet$
16550 \end_inset
16551
16552
16553 \end_layout
16554
16555 \end_inset
16556 </cell>
16557 </row>
16558 </lyxtabular>
16559
16560 \end_inset
16561
16562
16563 \begin_inset space \hfill{}
16564 \end_inset
16565
16566
16567 \begin_inset Tabular
16568 <lyxtabular version="3" rows="13" columns="2">
16569 <features>
16570 <column alignment="center" valignment="top" width="0pt">
16571 <column alignment="center" valignment="top" width="0pt">
16572 <row>
16573 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
16574 \begin_inset Text
16575
16576 \begin_layout Plain Layout
16577 Befehl
16578 \end_layout
16579
16580 \end_inset
16581 </cell>
16582 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
16583 \begin_inset Text
16584
16585 \begin_layout Plain Layout
16586 Ergebnis
16587 \end_layout
16588
16589 \end_inset
16590 </cell>
16591 </row>
16592 <row>
16593 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16594 \begin_inset Text
16595
16596 \begin_layout Plain Layout
16597
16598 \backslash
16599 nabla
16600 \end_layout
16601
16602 \end_inset
16603 </cell>
16604 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16605 \begin_inset Text
16606
16607 \begin_layout Plain Layout
16608 \begin_inset Formula $\nabla$
16609 \end_inset
16610
16611
16612 \end_layout
16613
16614 \end_inset
16615 </cell>
16616 </row>
16617 <row>
16618 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16619 \begin_inset Text
16620
16621 \begin_layout Plain Layout
16622
16623 \backslash
16624 bigtriangledown
16625 \end_layout
16626
16627 \end_inset
16628 </cell>
16629 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16630 \begin_inset Text
16631
16632 \begin_layout Plain Layout
16633 \begin_inset Formula $\bigtriangledown$
16634 \end_inset
16635
16636
16637 \end_layout
16638
16639 \end_inset
16640 </cell>
16641 </row>
16642 <row>
16643 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16644 \begin_inset Text
16645
16646 \begin_layout Plain Layout
16647
16648 \backslash
16649 bigtriangleup
16650 \end_layout
16651
16652 \end_inset
16653 </cell>
16654 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16655 \begin_inset Text
16656
16657 \begin_layout Plain Layout
16658 \begin_inset Formula $\bigtriangleup$
16659 \end_inset
16660
16661
16662 \end_layout
16663
16664 \end_inset
16665 </cell>
16666 </row>
16667 <row>
16668 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16669 \begin_inset Text
16670
16671 \begin_layout Plain Layout
16672
16673 \backslash
16674 Box
16675 \end_layout
16676
16677 \end_inset
16678 </cell>
16679 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16680 \begin_inset Text
16681
16682 \begin_layout Plain Layout
16683 \begin_inset Formula $\Box$
16684 \end_inset
16685
16686
16687 \end_layout
16688
16689 \end_inset
16690 </cell>
16691 </row>
16692 <row>
16693 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16694 \begin_inset Text
16695
16696 \begin_layout Plain Layout
16697
16698 \backslash
16699 cap 
16700 \end_layout
16701
16702 \end_inset
16703 </cell>
16704 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16705 \begin_inset Text
16706
16707 \begin_layout Plain Layout
16708 \begin_inset Formula $\cap$
16709 \end_inset
16710
16711
16712 \end_layout
16713
16714 \end_inset
16715 </cell>
16716 </row>
16717 <row>
16718 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16719 \begin_inset Text
16720
16721 \begin_layout Plain Layout
16722
16723 \backslash
16724 cup
16725 \end_layout
16726
16727 \end_inset
16728 </cell>
16729 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16730 \begin_inset Text
16731
16732 \begin_layout Plain Layout
16733 \begin_inset Formula $\cup$
16734 \end_inset
16735
16736
16737 \end_layout
16738
16739 \end_inset
16740 </cell>
16741 </row>
16742 <row>
16743 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16744 \begin_inset Text
16745
16746 \begin_layout Plain Layout
16747
16748 \backslash
16749 dagger
16750 \end_layout
16751
16752 \end_inset
16753 </cell>
16754 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16755 \begin_inset Text
16756
16757 \begin_layout Plain Layout
16758 \begin_inset Formula $\dagger$
16759 \end_inset
16760
16761
16762 \end_layout
16763
16764 \end_inset
16765 </cell>
16766 </row>
16767 <row>
16768 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16769 \begin_inset Text
16770
16771 \begin_layout Plain Layout
16772
16773 \backslash
16774 ddagger
16775 \end_layout
16776
16777 \end_inset
16778 </cell>
16779 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16780 \begin_inset Text
16781
16782 \begin_layout Plain Layout
16783 \begin_inset Formula $\ddagger$
16784 \end_inset
16785
16786
16787 \end_layout
16788
16789 \end_inset
16790 </cell>
16791 </row>
16792 <row>
16793 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16794 \begin_inset Text
16795
16796 \begin_layout Plain Layout
16797
16798 \backslash
16799 wr
16800 \end_layout
16801
16802 \end_inset
16803 </cell>
16804 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16805 \begin_inset Text
16806
16807 \begin_layout Plain Layout
16808 \begin_inset Formula $\wr$
16809 \end_inset
16810
16811
16812 \end_layout
16813
16814 \end_inset
16815 </cell>
16816 </row>
16817 <row>
16818 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16819 \begin_inset Text
16820
16821 \begin_layout Plain Layout
16822
16823 \backslash
16824 bigcirc
16825 \end_layout
16826
16827 \end_inset
16828 </cell>
16829 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16830 \begin_inset Text
16831
16832 \begin_layout Plain Layout
16833 \begin_inset Formula $\bigcirc$
16834 \end_inset
16835
16836
16837 \end_layout
16838
16839 \end_inset
16840 </cell>
16841 </row>
16842 <row>
16843 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16844 \begin_inset Text
16845
16846 \begin_layout Plain Layout
16847
16848 \backslash
16849 wedge
16850 \end_layout
16851
16852 \end_inset
16853 </cell>
16854 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16855 \begin_inset Text
16856
16857 \begin_layout Plain Layout
16858 \begin_inset Formula $\wedge$
16859 \end_inset
16860
16861
16862 \end_layout
16863
16864 \end_inset
16865 </cell>
16866 </row>
16867 <row>
16868 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
16869 \begin_inset Text
16870
16871 \begin_layout Plain Layout
16872
16873 \backslash
16874 vee
16875 \end_layout
16876
16877 \end_inset
16878 </cell>
16879 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
16880 \begin_inset Text
16881
16882 \begin_layout Plain Layout
16883 \begin_inset Formula $\vee$
16884 \end_inset
16885
16886
16887 \end_layout
16888
16889 \end_inset
16890 </cell>
16891 </row>
16892 </lyxtabular>
16893
16894 \end_inset
16895
16896
16897 \begin_inset space \hfill{}
16898 \end_inset
16899
16900
16901 \begin_inset Tabular
16902 <lyxtabular version="3" rows="13" columns="2">
16903 <features>
16904 <column alignment="center" valignment="top" width="0pt">
16905 <column alignment="center" valignment="top" width="0pt">
16906 <row>
16907 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
16908 \begin_inset Text
16909
16910 \begin_layout Plain Layout
16911 Befehl
16912 \end_layout
16913
16914 \end_inset
16915 </cell>
16916 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
16917 \begin_inset Text
16918
16919 \begin_layout Plain Layout
16920 Ergebnis
16921 \end_layout
16922
16923 \end_inset
16924 </cell>
16925 </row>
16926 <row>
16927 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16928 \begin_inset Text
16929
16930 \begin_layout Plain Layout
16931
16932 \backslash
16933 oplus
16934 \end_layout
16935
16936 \end_inset
16937 </cell>
16938 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16939 \begin_inset Text
16940
16941 \begin_layout Plain Layout
16942 \begin_inset Formula $\oplus$
16943 \end_inset
16944
16945
16946 \end_layout
16947
16948 \end_inset
16949 </cell>
16950 </row>
16951 <row>
16952 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16953 \begin_inset Text
16954
16955 \begin_layout Plain Layout
16956
16957 \backslash
16958 ominus
16959 \end_layout
16960
16961 \end_inset
16962 </cell>
16963 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16964 \begin_inset Text
16965
16966 \begin_layout Plain Layout
16967 \begin_inset Formula $\ominus$
16968 \end_inset
16969
16970
16971 \end_layout
16972
16973 \end_inset
16974 </cell>
16975 </row>
16976 <row>
16977 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16978 \begin_inset Text
16979
16980 \begin_layout Plain Layout
16981
16982 \backslash
16983 otimes
16984 \end_layout
16985
16986 \end_inset
16987 </cell>
16988 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16989 \begin_inset Text
16990
16991 \begin_layout Plain Layout
16992 \begin_inset Formula $\otimes$
16993 \end_inset
16994
16995
16996 \end_layout
16997
16998 \end_inset
16999 </cell>
17000 </row>
17001 <row>
17002 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17003 \begin_inset Text
17004
17005 \begin_layout Plain Layout
17006
17007 \backslash
17008 oslash
17009 \end_layout
17010
17011 \end_inset
17012 </cell>
17013 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17014 \begin_inset Text
17015
17016 \begin_layout Plain Layout
17017 \begin_inset Formula $\oslash$
17018 \end_inset
17019
17020
17021 \end_layout
17022
17023 \end_inset
17024 </cell>
17025 </row>
17026 <row>
17027 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17028 \begin_inset Text
17029
17030 \begin_layout Plain Layout
17031
17032 \backslash
17033 odot
17034 \end_layout
17035
17036 \end_inset
17037 </cell>
17038 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17039 \begin_inset Text
17040
17041 \begin_layout Plain Layout
17042 \begin_inset Formula $\odot$
17043 \end_inset
17044
17045
17046 \end_layout
17047
17048 \end_inset
17049 </cell>
17050 </row>
17051 <row>
17052 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17053 \begin_inset Text
17054
17055 \begin_layout Plain Layout
17056
17057 \backslash
17058 amalg
17059 \end_layout
17060
17061 \end_inset
17062 </cell>
17063 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17064 \begin_inset Text
17065
17066 \begin_layout Plain Layout
17067 \begin_inset Formula $\amalg$
17068 \end_inset
17069
17070
17071 \end_layout
17072
17073 \end_inset
17074 </cell>
17075 </row>
17076 <row>
17077 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17078 \begin_inset Text
17079
17080 \begin_layout Plain Layout
17081
17082 \backslash
17083 uplus
17084 \end_layout
17085
17086 \end_inset
17087 </cell>
17088 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17089 \begin_inset Text
17090
17091 \begin_layout Plain Layout
17092 \begin_inset Formula $\uplus$
17093 \end_inset
17094
17095
17096 \end_layout
17097
17098 \end_inset
17099 </cell>
17100 </row>
17101 <row>
17102 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17103 \begin_inset Text
17104
17105 \begin_layout Plain Layout
17106
17107 \backslash
17108 setminus
17109 \end_layout
17110
17111 \end_inset
17112 </cell>
17113 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17114 \begin_inset Text
17115
17116 \begin_layout Plain Layout
17117 \begin_inset Formula $\setminus$
17118 \end_inset
17119
17120
17121 \end_layout
17122
17123 \end_inset
17124 </cell>
17125 </row>
17126 <row>
17127 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17128 \begin_inset Text
17129
17130 \begin_layout Plain Layout
17131
17132 \backslash
17133 sqcap
17134 \end_layout
17135
17136 \end_inset
17137 </cell>
17138 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17139 \begin_inset Text
17140
17141 \begin_layout Plain Layout
17142 \begin_inset Formula $\sqcap$
17143 \end_inset
17144
17145
17146 \end_layout
17147
17148 \end_inset
17149 </cell>
17150 </row>
17151 <row>
17152 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17153 \begin_inset Text
17154
17155 \begin_layout Plain Layout
17156
17157 \backslash
17158 sqcup
17159 \end_layout
17160
17161 \end_inset
17162 </cell>
17163 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17164 \begin_inset Text
17165
17166 \begin_layout Plain Layout
17167 \begin_inset Formula $\sqcup$
17168 \end_inset
17169
17170
17171 \end_layout
17172
17173 \end_inset
17174 </cell>
17175 </row>
17176 <row>
17177 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17178 \begin_inset Text
17179
17180 \begin_layout Plain Layout
17181
17182 \backslash
17183 triangleleft
17184 \end_layout
17185
17186 \end_inset
17187 </cell>
17188 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17189 \begin_inset Text
17190
17191 \begin_layout Plain Layout
17192 \begin_inset Formula $\triangleleft$
17193 \end_inset
17194
17195
17196 \end_layout
17197
17198 \end_inset
17199 </cell>
17200 </row>
17201 <row>
17202 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
17203 \begin_inset Text
17204
17205 \begin_layout Plain Layout
17206
17207 \backslash
17208 triangleright
17209 \end_layout
17210
17211 \end_inset
17212 </cell>
17213 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
17214 \begin_inset Text
17215
17216 \begin_layout Plain Layout
17217 \begin_inset Formula $\triangleright$
17218 \end_inset
17219
17220
17221 \end_layout
17222
17223 \end_inset
17224 </cell>
17225 </row>
17226 </lyxtabular>
17227
17228 \end_inset
17229
17230
17231 \begin_inset space \hfill{}
17232 \end_inset
17233
17234
17235 \end_layout
17236
17237 \begin_layout Standard
17238 Alle binären Operatoren können auch über den Mathe-Werkzeugleistenknopf
17239  
17240 \begin_inset Graphics
17241         filename ../../images/math/pm.png
17242         scale 85
17243
17244 \end_inset
17245
17246  eingefügt werden.
17247 \end_layout
17248
17249 \begin_layout Standard
17250 Um den Laplace-Operator darzustellen, kann man statt 
17251 \series bold
17252
17253 \backslash
17254 bigtriangleup
17255 \series default
17256  auch 
17257 \series bold
17258
17259 \backslash
17260 Delta
17261 \series default
17262  verwenden oder man benutzt 
17263 \series bold
17264
17265 \backslash
17266 nabla
17267 \series default
17268 ^
17269 \series bold
17270 2
17271 \series default
17272  (
17273 \begin_inset Formula $\nabla^{2}$
17274 \end_inset
17275
17276 ).
17277 \end_layout
17278
17279 \begin_layout Standard
17280 Das Zeichen 
17281 \family sans
17282 Menütrenner
17283 \family default
17284  im Menü 
17285 \family sans
17286 Einfügen\SpecialChar \menuseparator
17287 Sonderzeichen
17288 \family default
17289  ist der Operator 
17290 \series bold
17291
17292 \backslash
17293 triangleright
17294 \series default
17295 .
17296 \end_layout
17297
17298 \begin_layout Subsection
17299 Selbst definierte Operatoren
17300 \begin_inset CommandInset label
17301 LatexCommand label
17302 name "sub:Selbstdefinierte-Operatoren"
17303
17304 \end_inset
17305
17306
17307 \begin_inset Index
17308 status collapsed
17309
17310 \begin_layout Plain Layout
17311 Operatoren ! selbstdefinierte
17312 \end_layout
17313
17314 \end_inset
17315
17316
17317 \end_layout
17318
17319 \begin_layout Standard
17320 Mit Hilfe des Befehls 
17321 \series bold
17322
17323 \backslash
17324 DeclareMathOperator
17325 \series default
17326
17327 \begin_inset Index
17328 status collapsed
17329
17330 \begin_layout Plain Layout
17331 Befehle ! D ! 
17332 \backslash
17333 dbinom@
17334 \backslash
17335 DeclareMathOperator
17336 \end_layout
17337
17338 \end_inset
17339
17340  kann man im LaTeX-Vorspann eigene Operatoren definieren.
17341  Das Befehlsschema dazu lautet:
17342 \end_layout
17343
17344 \begin_layout Standard
17345
17346 \series bold
17347
17348 \backslash
17349 DeclareMathOperator{neuer Befehl}{Anzeige}
17350 \end_layout
17351
17352 \begin_layout Standard
17353 Anzeige können Zeichen und Symbole sein, die festlegen, wie der Operator
17354  im Ausdruck aussieht.
17355  Will man einen großen Operator definieren, setzt man hinter den Befehl
17356  ein 
17357 \series bold
17358 *
17359 \series default
17360 .
17361  Zu allen selbst definierten großen Operatoren kann man Grenzen angeben,
17362  wie in 
17363 \begin_inset CommandInset ref
17364 LatexCommand ref
17365 reference "sub:Operatorgrenzen"
17366
17367 \end_inset
17368
17369  beschrieben.
17370 \end_layout
17371
17372 \begin_layout Standard
17373 Beispielsweise definiert die LaTeX-Vorspannzeile
17374 \end_layout
17375
17376 \begin_layout Standard
17377
17378 \series bold
17379
17380 \backslash
17381 DeclareMathOperator*{
17382 \backslash
17383 Raute}{
17384 \backslash
17385 blacklozenge}
17386 \end_layout
17387
17388 \begin_layout Standard
17389 den Befehl 
17390 \series bold
17391
17392 \backslash
17393 Raute
17394 \series default
17395 , mit dem man einen großen Operator aufrufen kann, der aus dem Raute Symbol
17396  aus 
17397 \begin_inset CommandInset ref
17398 LatexCommand ref
17399 reference "sub:Sonstige-Symbole"
17400
17401 \end_inset
17402
17403  besteht:
17404 \begin_inset Formula \[
17405 \Raute_{n=1}^{\infty}\]
17406
17407 \end_inset
17408
17409 Der Befehl für diese Formel lautet: 
17410 \series bold
17411
17412 \backslash
17413 Raute
17414 \series default
17415 ^
17416 \series bold
17417
17418 \backslash
17419 infty
17420 \begin_inset Formula $\to$
17421 \end_inset
17422
17423 _n=1
17424 \end_layout
17425
17426 \begin_layout Standard
17427 \begin_inset VSpace bigskip
17428 \end_inset
17429
17430 Benötigt man eigene Operatoren nicht mehrfach im Dokument, kann man diese
17431  auch mit den Befehlen 
17432 \series bold
17433
17434 \backslash
17435 mathop
17436 \series default
17437
17438 \begin_inset Index
17439 status collapsed
17440
17441 \begin_layout Plain Layout
17442 Befehle ! M ! 
17443 \backslash
17444 mathop
17445 \end_layout
17446
17447 \end_inset
17448
17449  und 
17450 \series bold
17451
17452 \backslash
17453 mathbin
17454 \series default
17455
17456 \begin_inset Index
17457 status collapsed
17458
17459 \begin_layout Plain Layout
17460 Befehle ! M ! 
17461 \backslash
17462 mathbin
17463 \end_layout
17464
17465 \end_inset
17466
17467  definieren, die folgendes Schema besitzen:
17468 \end_layout
17469
17470 \begin_layout Standard
17471
17472 \series bold
17473
17474 \backslash
17475 mathop{Anzeige}
17476 \series default
17477  bzw.
17478  
17479 \series bold
17480
17481 \backslash
17482 mathbin{Anzeige}
17483 \end_layout
17484
17485 \begin_layout Standard
17486
17487 \series bold
17488
17489 \backslash
17490 mathop
17491 \series default
17492  definiert große, 
17493 \series bold
17494
17495 \backslash
17496 mathbin
17497 \series default
17498  binäre Operatoren.
17499 \end_layout
17500
17501 \begin_layout Standard
17502
17503 \series bold
17504
17505 \backslash
17506 mathop
17507 \series default
17508  lässt sich z.
17509 \begin_inset space \thinspace{}
17510 \end_inset
17511
17512 B.
17513  nutzen, um eine Grenze für mehrere Operatoren zu verwenden:
17514 \begin_inset Formula \[
17515 \mathop{\sum\negmedspace\sum}_{i,j=1}^{N}\]
17516
17517 \end_inset
17518
17519
17520 \end_layout
17521
17522 \begin_layout Standard
17523 Der Befehl für obige Formel lautet:
17524 \begin_inset Newline newline
17525 \end_inset
17526
17527  
17528 \series bold
17529
17530 \backslash
17531 mathop{
17532 \backslash
17533 sum
17534 \backslash
17535 negmedspace
17536 \backslash
17537 sum
17538 \series default
17539
17540 \begin_inset ERT
17541 status collapsed
17542
17543 \begin_layout Plain Layout
17544
17545
17546 \backslash
17547 leer 
17548 \end_layout
17549
17550 \end_inset
17551
17552
17553 \series bold
17554
17555 \begin_inset Formula $\to$
17556 \end_inset
17557
17558 ^N
17559 \series default
17560
17561 \begin_inset ERT
17562 status collapsed
17563
17564 \begin_layout Plain Layout
17565
17566
17567 \backslash
17568 leer 
17569 \end_layout
17570
17571 \end_inset
17572
17573
17574 \series bold
17575 _i,j=1
17576 \end_layout
17577
17578 \begin_layout Section
17579 Schriften
17580 \begin_inset Index
17581 status collapsed
17582
17583 \begin_layout Plain Layout
17584 Schriften
17585 \end_layout
17586
17587 \end_inset
17588
17589
17590 \end_layout
17591
17592 \begin_layout Subsection
17593 Schriftstile
17594 \begin_inset CommandInset label
17595 LatexCommand label
17596 name "sub:Schriftstile"
17597
17598 \end_inset
17599
17600
17601 \begin_inset Index
17602 status collapsed
17603
17604 \begin_layout Plain Layout
17605 Schriften ! Schriftstile
17606 \end_layout
17607
17608 \end_inset
17609
17610
17611 \end_layout
17612
17613 \begin_layout Standard
17614 Lateinische Buchstaben in einer Formel können in folgenden Schriftstilen
17615  gesetzt werden:
17616 \begin_inset VSpace -2mm
17617 \end_inset
17618
17619
17620 \end_layout
17621
17622 \begin_layout Standard
17623 \align center
17624 \begin_inset Tabular
17625 <lyxtabular version="3" rows="6" columns="3">
17626 <features>
17627 <column alignment="center" valignment="top" width="0">
17628 <column alignment="center" valignment="top" width="0">
17629 <column alignment="center" valignment="top" width="0">
17630 <row>
17631 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
17632 \begin_inset Text
17633
17634 \begin_layout Plain Layout
17635 Befehl
17636 \end_layout
17637
17638 \end_inset
17639 </cell>
17640 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
17641 \begin_inset Text
17642
17643 \begin_layout Plain Layout
17644 Ergebnis
17645 \end_layout
17646
17647 \end_inset
17648 </cell>
17649 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
17650 \begin_inset Text
17651
17652 \begin_layout Plain Layout
17653 Tastenkürzel
17654 \end_layout
17655
17656 \end_inset
17657 </cell>
17658 </row>
17659 <row>
17660 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17661 \begin_inset Text
17662
17663 \begin_layout Plain Layout
17664
17665 \backslash
17666 mathbb
17667 \series bold
17668
17669 \begin_inset ERT
17670 status collapsed
17671
17672 \begin_layout Plain Layout
17673
17674
17675 \backslash
17676 leer 
17677 \end_layout
17678
17679 \end_inset
17680
17681
17682 \series default
17683 ABC
17684 \end_layout
17685
17686 \end_inset
17687 </cell>
17688 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17689 \begin_inset Text
17690
17691 \begin_layout Plain Layout
17692 \begin_inset Formula $\mathbb{ABC}$
17693 \end_inset
17694
17695
17696 \end_layout
17697
17698 \end_inset
17699 </cell>
17700 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17701 \begin_inset Text
17702
17703 \begin_layout Plain Layout
17704 Alt-z k
17705 \end_layout
17706
17707 \end_inset
17708 </cell>
17709 </row>
17710 <row>
17711 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17712 \begin_inset Text
17713
17714 \begin_layout Plain Layout
17715
17716 \backslash
17717 mathbf
17718 \series bold
17719
17720 \begin_inset ERT
17721 status collapsed
17722
17723 \begin_layout Plain Layout
17724
17725
17726 \backslash
17727 leer 
17728 \end_layout
17729
17730 \end_inset
17731
17732
17733 \series default
17734 AbC
17735 \end_layout
17736
17737 \end_inset
17738 </cell>
17739 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17740 \begin_inset Text
17741
17742 \begin_layout Plain Layout
17743 \begin_inset Formula $\mathbf{AbC}$
17744 \end_inset
17745
17746
17747 \end_layout
17748
17749 \end_inset
17750 </cell>
17751 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17752 \begin_inset Text
17753
17754 \begin_layout Plain Layout
17755 -
17756 \end_layout
17757
17758 \end_inset
17759 </cell>
17760 </row>
17761 <row>
17762 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17763 \begin_inset Text
17764
17765 \begin_layout Plain Layout
17766
17767 \backslash
17768 boldsymbol
17769 \series bold
17770
17771 \begin_inset ERT
17772 status collapsed
17773
17774 \begin_layout Plain Layout
17775
17776
17777 \backslash
17778 leer 
17779 \end_layout
17780
17781 \end_inset
17782
17783
17784 \series default
17785 AbC
17786 \end_layout
17787
17788 \end_inset
17789 </cell>
17790 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17791 \begin_inset Text
17792
17793 \begin_layout Plain Layout
17794 \begin_inset Formula $\boldsymbol{AbC}$
17795 \end_inset
17796
17797
17798 \end_layout
17799
17800 \end_inset
17801 </cell>
17802 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17803 \begin_inset Text
17804
17805 \begin_layout Plain Layout
17806 Alt-z f
17807 \end_layout
17808
17809 \end_inset
17810 </cell>
17811 </row>
17812 <row>
17813 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17814 \begin_inset Text
17815
17816 \begin_layout Plain Layout
17817
17818 \backslash
17819 mathcal
17820 \series bold
17821
17822 \begin_inset ERT
17823 status collapsed
17824
17825 \begin_layout Plain Layout
17826
17827
17828 \backslash
17829 leer 
17830 \end_layout
17831
17832 \end_inset
17833
17834
17835 \series default
17836 ABC
17837 \end_layout
17838
17839 \end_inset
17840 </cell>
17841 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17842 \begin_inset Text
17843
17844 \begin_layout Plain Layout
17845 \begin_inset Formula $\mathcal{ABC}$
17846 \end_inset
17847
17848
17849 \end_layout
17850
17851 \end_inset
17852 </cell>
17853 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17854 \begin_inset Text
17855
17856 \begin_layout Plain Layout
17857 Alt-z h
17858 \end_layout
17859
17860 \end_inset
17861 </cell>
17862 </row>
17863 <row>
17864 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
17865 \begin_inset Text
17866
17867 \begin_layout Plain Layout
17868
17869 \backslash
17870 mathfrak
17871 \series bold
17872
17873 \begin_inset ERT
17874 status collapsed
17875
17876 \begin_layout Plain Layout
17877
17878
17879 \backslash
17880 leer 
17881 \end_layout
17882
17883 \end_inset
17884
17885
17886 \series default
17887 AbC
17888 \end_layout
17889
17890 \end_inset
17891 </cell>
17892 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
17893 \begin_inset Text
17894
17895 \begin_layout Plain Layout
17896 \begin_inset Formula $\mathfrak{AbC}$
17897 \end_inset
17898
17899
17900 \end_layout
17901
17902 \end_inset
17903 </cell>
17904 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
17905 \begin_inset Text
17906
17907 \begin_layout Plain Layout
17908 -
17909 \end_layout
17910
17911 \end_inset
17912 </cell>
17913 </row>
17914 </lyxtabular>
17915
17916 \end_inset
17917
17918
17919 \end_layout
17920
17921 \begin_layout Standard
17922 \align center
17923 \begin_inset Tabular
17924 <lyxtabular version="3" rows="5" columns="3">
17925 <features>
17926 <column alignment="center" valignment="top" width="0">
17927 <column alignment="center" valignment="top" width="0">
17928 <column alignment="center" valignment="top" width="0">
17929 <row>
17930 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
17931 \begin_inset Text
17932
17933 \begin_layout Plain Layout
17934 Befehl
17935 \end_layout
17936
17937 \end_inset
17938 </cell>
17939 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
17940 \begin_inset Text
17941
17942 \begin_layout Plain Layout
17943 Ergebnis
17944 \end_layout
17945
17946 \end_inset
17947 </cell>
17948 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
17949 \begin_inset Text
17950
17951 \begin_layout Plain Layout
17952 Tastenkürzel
17953 \end_layout
17954
17955 \end_inset
17956 </cell>
17957 </row>
17958 <row>
17959 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17960 \begin_inset Text
17961
17962 \begin_layout Plain Layout
17963
17964 \backslash
17965 mathit
17966 \series bold
17967
17968 \begin_inset ERT
17969 status collapsed
17970
17971 \begin_layout Plain Layout
17972
17973
17974 \backslash
17975 leer 
17976 \end_layout
17977
17978 \end_inset
17979
17980
17981 \series default
17982 AbC
17983 \end_layout
17984
17985 \end_inset
17986 </cell>
17987 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17988 \begin_inset Text
17989
17990 \begin_layout Plain Layout
17991 \begin_inset Formula $\mathit{AbC}$
17992 \end_inset
17993
17994
17995 \end_layout
17996
17997 \end_inset
17998 </cell>
17999 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
18000 \begin_inset Text
18001
18002 \begin_layout Plain Layout
18003 -
18004 \end_layout
18005
18006 \end_inset
18007 </cell>
18008 </row>
18009 <row>
18010 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18011 \begin_inset Text
18012
18013 \begin_layout Plain Layout
18014
18015 \backslash
18016 mathrm
18017 \series bold
18018
18019 \begin_inset ERT
18020 status collapsed
18021
18022 \begin_layout Plain Layout
18023
18024
18025 \backslash
18026 leer 
18027 \end_layout
18028
18029 \end_inset
18030
18031
18032 \series default
18033 AbC
18034 \end_layout
18035
18036 \end_inset
18037 </cell>
18038 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18039 \begin_inset Text
18040
18041 \begin_layout Plain Layout
18042 \begin_inset Formula $\mathrm{AbC}$
18043 \end_inset
18044
18045
18046 \end_layout
18047
18048 \end_inset
18049 </cell>
18050 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
18051 \begin_inset Text
18052
18053 \begin_layout Plain Layout
18054 Alt-z r
18055 \end_layout
18056
18057 \end_inset
18058 </cell>
18059 </row>
18060 <row>
18061 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18062 \begin_inset Text
18063
18064 \begin_layout Plain Layout
18065
18066 \backslash
18067 mathsf
18068 \series bold
18069
18070 \begin_inset ERT
18071 status collapsed
18072
18073 \begin_layout Plain Layout
18074
18075
18076 \backslash
18077 leer 
18078 \end_layout
18079
18080 \end_inset
18081
18082
18083 \series default
18084 AbC
18085 \end_layout
18086
18087 \end_inset
18088 </cell>
18089 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18090 \begin_inset Text
18091
18092 \begin_layout Plain Layout
18093 \begin_inset Formula $\mathsf{AbC}$
18094 \end_inset
18095
18096
18097 \end_layout
18098
18099 \end_inset
18100 </cell>
18101 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
18102 \begin_inset Text
18103
18104 \begin_layout Plain Layout
18105 Alt-z s
18106 \end_layout
18107
18108 \end_inset
18109 </cell>
18110 </row>
18111 <row>
18112 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
18113 \begin_inset Text
18114
18115 \begin_layout Plain Layout
18116
18117 \backslash
18118 mathtt
18119 \series bold
18120
18121 \begin_inset ERT
18122 status collapsed
18123
18124 \begin_layout Plain Layout
18125
18126
18127 \backslash
18128 leer 
18129 \end_layout
18130
18131 \end_inset
18132
18133
18134 \series default
18135 AbC
18136 \end_layout
18137
18138 \end_inset
18139 </cell>
18140 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
18141 \begin_inset Text
18142
18143 \begin_layout Plain Layout
18144 \begin_inset Formula $\mathtt{AbC}$
18145 \end_inset
18146
18147
18148 \end_layout
18149
18150 \end_inset
18151 </cell>
18152 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
18153 \begin_inset Text
18154
18155 \begin_layout Plain Layout
18156 Alt-z c
18157 \end_layout
18158
18159 \end_inset
18160 </cell>
18161 </row>
18162 </lyxtabular>
18163
18164 \end_inset
18165
18166
18167 \end_layout
18168
18169 \begin_layout Standard
18170 \begin_inset Note Greyedout
18171 status open
18172
18173 \begin_layout Plain Layout
18174
18175 \series bold
18176 Achtung:
18177 \series default
18178  Die Stile 
18179 \series bold
18180
18181 \backslash
18182 mathbb
18183 \series default
18184  und 
18185 \series bold
18186
18187 \backslash
18188 mathcal
18189 \series default
18190  können nur für Großbuchstaben verwendet werden.
18191 \end_layout
18192
18193 \end_inset
18194
18195
18196 \end_layout
18197
18198 \begin_layout Standard
18199 Voreingestellt ist der Stil 
18200 \series bold
18201
18202 \backslash
18203 mathnormal
18204 \series default
18205 .
18206 \end_layout
18207
18208 \begin_layout Standard
18209 Die Stilbefehle wirken auch auf Buchstaben in mathematischen Konstruktionen:
18210 \begin_inset Formula \[
18211 \mathfrak{A=\frac{b}{C}}\]
18212
18213 \end_inset
18214
18215
18216 \end_layout
18217
18218 \begin_layout Standard
18219 Zeichen im mathematischen Textmodus erscheinen nicht in einem der Matheschriftst
18220 ile, sondern in dem Textschriftstil 
18221 \series bold
18222
18223 \backslash
18224 textrm
18225 \series default
18226 .
18227  Dass ihr Stil nicht über den Textstil Dialog geändert werden kann ist ein
18228  Fehler in LyX .
18229 \begin_inset Foot
18230 status collapsed
18231
18232 \begin_layout Plain Layout
18233 \begin_inset CommandInset href
18234 LatexCommand href
18235 name "LyX-Fehler #4091"
18236 target "http://bugzilla.lyx.org/show_bug.cgi?id=4091"
18237
18238 \end_inset
18239
18240
18241 \end_layout
18242
18243 \end_inset
18244
18245
18246 \end_layout
18247
18248 \begin_layout Standard
18249 Anstelle der Stilbefehle kann man auch den Dialog 
18250 \family sans
18251 Bearbeiten\SpecialChar \menuseparator
18252 Mathe\SpecialChar \menuseparator
18253 Text-Stil
18254 \family default
18255  oder den Mathe-Werkzeugleistenknopf 
18256 \begin_inset Graphics
18257         filename ../../images/math/font.png
18258         scale 85
18259
18260 \end_inset
18261
18262  verwenden.
18263 \end_layout
18264
18265 \begin_layout Subsection
18266 Fett gedruckte Formeln
18267 \begin_inset CommandInset label
18268 LatexCommand label
18269 name "sub:Fett-gedruckte-Formeln"
18270
18271 \end_inset
18272
18273
18274 \begin_inset Index
18275 status collapsed
18276
18277 \begin_layout Plain Layout
18278 Formel ! fett gedruckte
18279 \end_layout
18280
18281 \end_inset
18282
18283
18284 \end_layout
18285
18286 \begin_layout Standard
18287 Möchte man komplette Formeln fett setzen, kann man nicht den im vorigen
18288  Kapitel angegebenen Befehl 
18289 \series bold
18290
18291 \backslash
18292 mathbf
18293 \series default
18294  verwenden, denn dieser wirkt nicht auf kleine griechische Buchstaben.
18295  Außerdem setzt er lateinische Buchstaben immer aufrecht, was man an folgender
18296  Formel gut erkennt:
18297 \end_layout
18298
18299 \begin_layout Standard
18300 \begin_inset Formula \[
18301 \mathbf{\int_{n}^{2}f(\theta)=\Gamma}\qquad\textrm{Formel mit \textbackslash mathbf}\]
18302
18303 \end_inset
18304
18305
18306 \end_layout
18307
18308 \begin_layout Standard
18309 Um die Formel korrekt darzustellen, verwendet man den Befehl 
18310 \series bold
18311
18312 \backslash
18313 boldsymbol
18314 \series default
18315 :
18316 \begin_inset Formula \[
18317 \boldsymbol{\int_{n}^{2}f(\theta)=\Gamma\qquad\textrm{Formel mit \textbackslash boldsymbol}}\]
18318
18319 \end_inset
18320
18321 Es gibt auch die Möglichkeit die Formel in eine 
18322 \series bold
18323 boldmath-Umgebung
18324 \series default
18325  zu setzen.
18326  Diese Umgebung wird erzeugt, indem man im TeX-Modus den Befehl 
18327 \series bold
18328
18329 \backslash
18330 boldmath
18331 \begin_inset Index
18332 status collapsed
18333
18334 \begin_layout Plain Layout
18335 Befehle ! B ! 
18336 \backslash
18337 boldmath
18338 \end_layout
18339
18340 \end_inset
18341
18342
18343 \series default
18344  eingibt.
18345  Um die Umgebung wieder zu beenden, gibt man im TeX-Modus den Befehl 
18346 \series bold
18347
18348 \backslash
18349 unboldmath
18350 \begin_inset Index
18351 status collapsed
18352
18353 \begin_layout Plain Layout
18354 Befehle ! U ! 
18355 \backslash
18356 unboldmath
18357 \end_layout
18358
18359 \end_inset
18360
18361
18362 \series default
18363  ein.
18364 \begin_inset ERT
18365 status collapsed
18366
18367 \begin_layout Plain Layout
18368
18369
18370 \backslash
18371 boldmath 
18372 \end_layout
18373
18374 \end_inset
18375
18376
18377 \begin_inset Formula \[
18378 \int_{n}^{2}f(\theta)=\Gamma\qquad\textrm{Formel in boldmath-Umgebung}\]
18379
18380 \end_inset
18381
18382
18383 \begin_inset ERT
18384 status collapsed
18385
18386 \begin_layout Plain Layout
18387
18388
18389 \backslash
18390 unboldmath 
18391 \end_layout
18392
18393 \end_inset
18394
18395
18396 \end_layout
18397
18398 \begin_layout Subsection
18399 Schriftgrößen
18400 \begin_inset CommandInset label
18401 LatexCommand label
18402 name "sub:Schriftgrößen"
18403
18404 \end_inset
18405
18406
18407 \begin_inset Index
18408 status collapsed
18409
18410 \begin_layout Plain Layout
18411 Schriften ! Schriftgrößen
18412 \end_layout
18413
18414 \end_inset
18415
18416
18417 \end_layout
18418
18419 \begin_layout Standard
18420 Für Zeichen in einer Formel gibt es, analog zu Textzeichen, folgende Größenbefeh
18421 le:
18422 \end_layout
18423
18424 \begin_layout Standard
18425
18426 \series bold
18427
18428 \backslash
18429 Huge
18430 \series default
18431
18432 \series bold
18433
18434 \backslash
18435 huge
18436 \series default
18437
18438 \series bold
18439
18440 \backslash
18441 LARGE
18442 \series default
18443
18444 \series bold
18445
18446 \backslash
18447 Large
18448 \series default
18449
18450 \series bold
18451
18452 \backslash
18453 large
18454 \series default
18455
18456 \series bold
18457
18458 \backslash
18459 normalsize
18460 \series default
18461
18462 \series bold
18463
18464 \backslash
18465 small
18466 \series default
18467
18468 \series bold
18469
18470 \backslash
18471 footnotesize
18472 \series default
18473 ,
18474 \begin_inset Newline linebreak
18475 \end_inset
18476
18477
18478 \series bold
18479
18480 \backslash
18481 scriptsize
18482 \series default
18483  und 
18484 \series bold
18485
18486 \backslash
18487 tiny
18488 \end_layout
18489
18490 \begin_layout Standard
18491 Welche Größe die Befehle produzieren, hängt von der Dokumentschriftgröße
18492  ab, die dem Befehl 
18493 \series bold
18494
18495 \backslash
18496 normalsize
18497 \series default
18498  entspricht.
18499  Die anderen Befehle produzieren kleinere oder größere Schriften als 
18500 \series bold
18501
18502 \backslash
18503 normalsize
18504 \series default
18505 .
18506  Die Schriftgröße kann jedoch einen bestimmten Wert nicht übertreffen.
18507  Beträgt z.
18508 \begin_inset space \thinspace{}
18509 \end_inset
18510
18511 B.
18512  die Dokumentschriftgröße 12
18513 \begin_inset space \thinspace{}
18514 \end_inset
18515
18516 pt, produziert der Befehl 
18517 \series bold
18518
18519 \backslash
18520 Huge
18521 \series default
18522  dasselbe wie 
18523 \series bold
18524
18525 \backslash
18526 huge
18527 \series default
18528 .
18529  
18530 \end_layout
18531
18532 \begin_layout Standard
18533 Ein Größenbefehl wird im TeX-Modus vor der Formel eingegeben und legt die
18534  Größe aller nachfolgenden Formel- und Textzeichen fest.
18535  Um wieder zur Ausgangsgröße zurückzukehren, gibt man nach der Formel im
18536  TeX-Modus den Befehl 
18537 \series bold
18538
18539 \backslash
18540 normalsize
18541 \series default
18542  ein.
18543 \end_layout
18544
18545 \begin_layout Standard
18546 Innerhalb einer Formel kann die Größe nur für Symbole oder Buchstaben im
18547  mathematischen Text geändert werden.
18548  Dazu wird der Größenbefehl im mathematischen Textmodus eingegeben.
18549  Alle diesem Befehl folgenden Zeichen bis zum Ende des mathematischen Textes
18550  oder bis zu einem anderen Größenbefehl haben dann die angegebene Größe.
18551  Dazu zwei Beispiele:
18552 \begin_inset VSpace -2mm
18553 \end_inset
18554
18555
18556 \end_layout
18557
18558 \begin_layout Standard
18559 \begin_inset ERT
18560 status collapsed
18561
18562 \begin_layout Plain Layout
18563
18564
18565 \backslash
18566 huge 
18567 \end_layout
18568
18569 \end_inset
18570
18571
18572 \begin_inset Formula \[
18573 A=\frac{B}{c}\cdot\maltese\]
18574
18575 \end_inset
18576
18577
18578 \begin_inset Formula \[
18579 \maltese A\textrm{\Large\maltese\textit{A}}\textrm{\tiny\maltese\textit{A}}\]
18580
18581 \end_inset
18582
18583
18584 \begin_inset ERT
18585 status collapsed
18586
18587 \begin_layout Plain Layout
18588
18589
18590 \backslash
18591 normalsize 
18592 \end_layout
18593
18594 \end_inset
18595
18596
18597 \end_layout
18598
18599 \begin_layout Standard
18600 \begin_inset VSpace medskip
18601 \end_inset
18602
18603 Vor beiden Formeln wurde der Befehl 
18604 \series bold
18605
18606 \backslash
18607 huge
18608 \series default
18609  eingegeben.
18610  Der Befehl für die zweite Formel lautet:
18611 \begin_inset Newline newline
18612 \end_inset
18613
18614
18615 \series bold
18616
18617 \backslash
18618 maltese
18619 \begin_inset ERT
18620 status collapsed
18621
18622 \begin_layout Plain Layout
18623
18624
18625 \backslash
18626 leer 
18627 \end_layout
18628
18629 \end_inset
18630
18631 A M-m m 
18632 \backslash
18633 Large
18634 \begin_inset ERT
18635 status collapsed
18636
18637 \begin_layout Plain Layout
18638
18639
18640 \backslash
18641 leer 
18642 \end_layout
18643
18644 \end_inset
18645
18646
18647 \backslash
18648 maltese
18649 \begin_inset ERT
18650 status collapsed
18651
18652 \begin_layout Plain Layout
18653
18654
18655 \backslash
18656 leer 
18657 \end_layout
18658
18659 \end_inset
18660
18661
18662 \backslash
18663 textit
18664 \begin_inset ERT
18665 status collapsed
18666
18667 \begin_layout Plain Layout
18668
18669
18670 \backslash
18671 leer 
18672 \end_layout
18673
18674 \end_inset
18675
18676 A
18677 \begin_inset Formula $\to$
18678 \end_inset
18679
18680
18681 \begin_inset Formula $\to$
18682 \end_inset
18683
18684
18685 \begin_inset Newline newline
18686 \end_inset
18687
18688
18689 \begin_inset space \hspace*{}
18690 \length 1cm
18691 \end_inset
18692
18693 M-m
18694 \series default
18695  
18696 \series bold
18697
18698 \backslash
18699 tiny
18700 \begin_inset ERT
18701 status collapsed
18702
18703 \begin_layout Plain Layout
18704
18705
18706 \backslash
18707 leer 
18708 \end_layout
18709
18710 \end_inset
18711
18712
18713 \backslash
18714 maltese
18715 \begin_inset ERT
18716 status collapsed
18717
18718 \begin_layout Plain Layout
18719
18720
18721 \backslash
18722 leer 
18723 \end_layout
18724
18725 \end_inset
18726
18727
18728 \backslash
18729 textit
18730 \begin_inset ERT
18731 status collapsed
18732
18733 \begin_layout Plain Layout
18734
18735
18736 \backslash
18737 leer 
18738 \end_layout
18739
18740 \end_inset
18741
18742 A
18743 \end_layout
18744
18745 \begin_layout Standard
18746 Kann ein Symbol nicht in verschiedenen Größen dargestellt werden, wird es
18747  immer in der Standardgröße dargestellt.
18748 \end_layout
18749
18750 \begin_layout Section
18751 Griechische Buchstaben
18752 \begin_inset Index
18753 status collapsed
18754
18755 \begin_layout Plain Layout
18756 griechische Buchstaben
18757 \end_layout
18758
18759 \end_inset
18760
18761
18762 \end_layout
18763
18764 \begin_layout Standard
18765 Alle griechischen Buchstaben können auch über den Mathe-Werkzeugleistenknopf
18766  
18767 \begin_inset Graphics
18768         filename ../../images/math/alpha.png
18769         scale 85
18770
18771 \end_inset
18772
18773  eingefügt werden.
18774 \end_layout
18775
18776 \begin_layout Subsection
18777 Kleine Buchstaben
18778 \begin_inset CommandInset label
18779 LatexCommand label
18780 name "sub:Kleine-Buchstaben"
18781
18782 \end_inset
18783
18784
18785 \begin_inset Index
18786 status collapsed
18787
18788 \begin_layout Plain Layout
18789 griechische Buchstaben ! kleine
18790 \end_layout
18791
18792 \end_inset
18793
18794
18795 \end_layout
18796
18797 \begin_layout Standard
18798 \begin_inset space \hfill{}
18799 \end_inset
18800
18801
18802 \begin_inset Tabular
18803 <lyxtabular version="3" rows="11" columns="2">
18804 <features>
18805 <column alignment="center" valignment="top" width="0pt">
18806 <column alignment="center" valignment="top" width="0pt">
18807 <row>
18808 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
18809 \begin_inset Text
18810
18811 \begin_layout Plain Layout
18812 Befehl
18813 \end_layout
18814
18815 \end_inset
18816 </cell>
18817 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
18818 \begin_inset Text
18819
18820 \begin_layout Plain Layout
18821 Ergebnis
18822 \end_layout
18823
18824 \end_inset
18825 </cell>
18826 </row>
18827 <row>
18828 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18829 \begin_inset Text
18830
18831 \begin_layout Plain Layout
18832
18833 \backslash
18834 alpha
18835 \end_layout
18836
18837 \end_inset
18838 </cell>
18839 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
18840 \begin_inset Text
18841
18842 \begin_layout Plain Layout
18843 \begin_inset Formula $\alpha$
18844 \end_inset
18845
18846
18847 \end_layout
18848
18849 \end_inset
18850 </cell>
18851 </row>
18852 <row>
18853 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18854 \begin_inset Text
18855
18856 \begin_layout Plain Layout
18857
18858 \backslash
18859 beta
18860 \end_layout
18861
18862 \end_inset
18863 </cell>
18864 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
18865 \begin_inset Text
18866
18867 \begin_layout Plain Layout
18868 \begin_inset Formula $\beta$
18869 \end_inset
18870
18871
18872 \end_layout
18873
18874 \end_inset
18875 </cell>
18876 </row>
18877 <row>
18878 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18879 \begin_inset Text
18880
18881 \begin_layout Plain Layout
18882
18883 \backslash
18884 gamma
18885 \end_layout
18886
18887 \end_inset
18888 </cell>
18889 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
18890 \begin_inset Text
18891
18892 \begin_layout Plain Layout
18893 \begin_inset Formula $\gamma$
18894 \end_inset
18895
18896
18897 \end_layout
18898
18899 \end_inset
18900 </cell>
18901 </row>
18902 <row>
18903 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18904 \begin_inset Text
18905
18906 \begin_layout Plain Layout
18907
18908 \backslash
18909 delta
18910 \end_layout
18911
18912 \end_inset
18913 </cell>
18914 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
18915 \begin_inset Text
18916
18917 \begin_layout Plain Layout
18918 \begin_inset Formula $\delta$
18919 \end_inset
18920
18921
18922 \end_layout
18923
18924 \end_inset
18925 </cell>
18926 </row>
18927 <row>
18928 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18929 \begin_inset Text
18930
18931 \begin_layout Plain Layout
18932
18933 \backslash
18934 epsilon
18935 \end_layout
18936
18937 \end_inset
18938 </cell>
18939 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
18940 \begin_inset Text
18941
18942 \begin_layout Plain Layout
18943 \begin_inset Formula $\epsilon$
18944 \end_inset
18945
18946
18947 \end_layout
18948
18949 \end_inset
18950 </cell>
18951 </row>
18952 <row>
18953 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18954 \begin_inset Text
18955
18956 \begin_layout Plain Layout
18957
18958 \backslash
18959 varepsilon
18960 \end_layout
18961
18962 \end_inset
18963 </cell>
18964 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
18965 \begin_inset Text
18966
18967 \begin_layout Plain Layout
18968 \begin_inset Formula $\varepsilon$
18969 \end_inset
18970
18971
18972 \end_layout
18973
18974 \end_inset
18975 </cell>
18976 </row>
18977 <row>
18978 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18979 \begin_inset Text
18980
18981 \begin_layout Plain Layout
18982
18983 \backslash
18984 zeta
18985 \end_layout
18986
18987 \end_inset
18988 </cell>
18989 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
18990 \begin_inset Text
18991
18992 \begin_layout Plain Layout
18993 \begin_inset Formula $\zeta$
18994 \end_inset
18995
18996
18997 \end_layout
18998
18999 \end_inset
19000 </cell>
19001 </row>
19002 <row>
19003 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19004 \begin_inset Text
19005
19006 \begin_layout Plain Layout
19007
19008 \backslash
19009 eta
19010 \end_layout
19011
19012 \end_inset
19013 </cell>
19014 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19015 \begin_inset Text
19016
19017 \begin_layout Plain Layout
19018 \begin_inset Formula $\eta$
19019 \end_inset
19020
19021
19022 \end_layout
19023
19024 \end_inset
19025 </cell>
19026 </row>
19027 <row>
19028 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19029 \begin_inset Text
19030
19031 \begin_layout Plain Layout
19032
19033 \backslash
19034 theta
19035 \end_layout
19036
19037 \end_inset
19038 </cell>
19039 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19040 \begin_inset Text
19041
19042 \begin_layout Plain Layout
19043 \begin_inset Formula $\theta$
19044 \end_inset
19045
19046
19047 \end_layout
19048
19049 \end_inset
19050 </cell>
19051 </row>
19052 <row>
19053 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
19054 \begin_inset Text
19055
19056 \begin_layout Plain Layout
19057
19058 \backslash
19059 vartheta
19060 \end_layout
19061
19062 \end_inset
19063 </cell>
19064 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
19065 \begin_inset Text
19066
19067 \begin_layout Plain Layout
19068 \begin_inset Formula $\vartheta$
19069 \end_inset
19070
19071
19072 \end_layout
19073
19074 \end_inset
19075 </cell>
19076 </row>
19077 </lyxtabular>
19078
19079 \end_inset
19080
19081
19082 \begin_inset space \hfill{}
19083 \end_inset
19084
19085
19086 \begin_inset Tabular
19087 <lyxtabular version="3" rows="12" columns="2">
19088 <features>
19089 <column alignment="center" valignment="top" width="0pt">
19090 <column alignment="center" valignment="top" width="0pt">
19091 <row>
19092 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
19093 \begin_inset Text
19094
19095 \begin_layout Plain Layout
19096 Befehl
19097 \end_layout
19098
19099 \end_inset
19100 </cell>
19101 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
19102 \begin_inset Text
19103
19104 \begin_layout Plain Layout
19105 Ergebnis
19106 \end_layout
19107
19108 \end_inset
19109 </cell>
19110 </row>
19111 <row>
19112 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19113 \begin_inset Text
19114
19115 \begin_layout Plain Layout
19116
19117 \backslash
19118 iota
19119 \end_layout
19120
19121 \end_inset
19122 </cell>
19123 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19124 \begin_inset Text
19125
19126 \begin_layout Plain Layout
19127 \begin_inset Formula $\iota$
19128 \end_inset
19129
19130
19131 \end_layout
19132
19133 \end_inset
19134 </cell>
19135 </row>
19136 <row>
19137 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19138 \begin_inset Text
19139
19140 \begin_layout Plain Layout
19141
19142 \backslash
19143 kappa
19144 \end_layout
19145
19146 \end_inset
19147 </cell>
19148 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19149 \begin_inset Text
19150
19151 \begin_layout Plain Layout
19152 \begin_inset Formula $\kappa$
19153 \end_inset
19154
19155
19156 \end_layout
19157
19158 \end_inset
19159 </cell>
19160 </row>
19161 <row>
19162 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19163 \begin_inset Text
19164
19165 \begin_layout Plain Layout
19166
19167 \backslash
19168 varkappa
19169 \end_layout
19170
19171 \end_inset
19172 </cell>
19173 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19174 \begin_inset Text
19175
19176 \begin_layout Plain Layout
19177 \begin_inset Formula $\varkappa$
19178 \end_inset
19179
19180
19181 \end_layout
19182
19183 \end_inset
19184 </cell>
19185 </row>
19186 <row>
19187 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19188 \begin_inset Text
19189
19190 \begin_layout Plain Layout
19191
19192 \backslash
19193 lambda
19194 \end_layout
19195
19196 \end_inset
19197 </cell>
19198 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19199 \begin_inset Text
19200
19201 \begin_layout Plain Layout
19202 \begin_inset Formula $\lambda$
19203 \end_inset
19204
19205
19206 \end_layout
19207
19208 \end_inset
19209 </cell>
19210 </row>
19211 <row>
19212 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19213 \begin_inset Text
19214
19215 \begin_layout Plain Layout
19216
19217 \backslash
19218 mu
19219 \end_layout
19220
19221 \end_inset
19222 </cell>
19223 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19224 \begin_inset Text
19225
19226 \begin_layout Plain Layout
19227 \begin_inset Formula $\mu$
19228 \end_inset
19229
19230
19231 \end_layout
19232
19233 \end_inset
19234 </cell>
19235 </row>
19236 <row>
19237 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19238 \begin_inset Text
19239
19240 \begin_layout Plain Layout
19241
19242 \backslash
19243 nu
19244 \end_layout
19245
19246 \end_inset
19247 </cell>
19248 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19249 \begin_inset Text
19250
19251 \begin_layout Plain Layout
19252 \begin_inset Formula $\nu$
19253 \end_inset
19254
19255
19256 \end_layout
19257
19258 \end_inset
19259 </cell>
19260 </row>
19261 <row>
19262 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19263 \begin_inset Text
19264
19265 \begin_layout Plain Layout
19266
19267 \backslash
19268 xi
19269 \end_layout
19270
19271 \end_inset
19272 </cell>
19273 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19274 \begin_inset Text
19275
19276 \begin_layout Plain Layout
19277 \begin_inset Formula $\xi$
19278 \end_inset
19279
19280
19281 \end_layout
19282
19283 \end_inset
19284 </cell>
19285 </row>
19286 <row>
19287 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19288 \begin_inset Text
19289
19290 \begin_layout Plain Layout
19291 o
19292 \end_layout
19293
19294 \end_inset
19295 </cell>
19296 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19297 \begin_inset Text
19298
19299 \begin_layout Plain Layout
19300 \begin_inset Formula $o$
19301 \end_inset
19302
19303
19304 \end_layout
19305
19306 \end_inset
19307 </cell>
19308 </row>
19309 <row>
19310 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19311 \begin_inset Text
19312
19313 \begin_layout Plain Layout
19314
19315 \backslash
19316 pi
19317 \end_layout
19318
19319 \end_inset
19320 </cell>
19321 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19322 \begin_inset Text
19323
19324 \begin_layout Plain Layout
19325 \begin_inset Formula $\pi$
19326 \end_inset
19327
19328
19329 \end_layout
19330
19331 \end_inset
19332 </cell>
19333 </row>
19334 <row>
19335 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19336 \begin_inset Text
19337
19338 \begin_layout Plain Layout
19339
19340 \backslash
19341 varpi
19342 \end_layout
19343
19344 \end_inset
19345 </cell>
19346 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19347 \begin_inset Text
19348
19349 \begin_layout Plain Layout
19350 \begin_inset Formula $\varpi$
19351 \end_inset
19352
19353
19354 \end_layout
19355
19356 \end_inset
19357 </cell>
19358 </row>
19359 <row>
19360 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
19361 \begin_inset Text
19362
19363 \begin_layout Plain Layout
19364
19365 \backslash
19366 rho
19367 \end_layout
19368
19369 \end_inset
19370 </cell>
19371 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
19372 \begin_inset Text
19373
19374 \begin_layout Plain Layout
19375 \begin_inset Formula $\rho$
19376 \end_inset
19377
19378
19379 \end_layout
19380
19381 \end_inset
19382 </cell>
19383 </row>
19384 </lyxtabular>
19385
19386 \end_inset
19387
19388
19389 \begin_inset space \hfill{}
19390 \end_inset
19391
19392
19393 \begin_inset Tabular
19394 <lyxtabular version="3" rows="11" columns="2">
19395 <features>
19396 <column alignment="center" valignment="top" width="0pt">
19397 <column alignment="center" valignment="top" width="0pt">
19398 <row>
19399 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
19400 \begin_inset Text
19401
19402 \begin_layout Plain Layout
19403 Befehl
19404 \end_layout
19405
19406 \end_inset
19407 </cell>
19408 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
19409 \begin_inset Text
19410
19411 \begin_layout Plain Layout
19412 Ergebnis
19413 \end_layout
19414
19415 \end_inset
19416 </cell>
19417 </row>
19418 <row>
19419 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19420 \begin_inset Text
19421
19422 \begin_layout Plain Layout
19423
19424 \backslash
19425 varrho
19426 \end_layout
19427
19428 \end_inset
19429 </cell>
19430 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19431 \begin_inset Text
19432
19433 \begin_layout Plain Layout
19434 \begin_inset Formula $\varrho$
19435 \end_inset
19436
19437
19438 \end_layout
19439
19440 \end_inset
19441 </cell>
19442 </row>
19443 <row>
19444 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19445 \begin_inset Text
19446
19447 \begin_layout Plain Layout
19448
19449 \backslash
19450 sigma
19451 \end_layout
19452
19453 \end_inset
19454 </cell>
19455 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19456 \begin_inset Text
19457
19458 \begin_layout Plain Layout
19459 \begin_inset Formula $\sigma$
19460 \end_inset
19461
19462
19463 \end_layout
19464
19465 \end_inset
19466 </cell>
19467 </row>
19468 <row>
19469 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19470 \begin_inset Text
19471
19472 \begin_layout Plain Layout
19473
19474 \backslash
19475 varsigma
19476 \end_layout
19477
19478 \end_inset
19479 </cell>
19480 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19481 \begin_inset Text
19482
19483 \begin_layout Plain Layout
19484 \begin_inset Formula $\varsigma$
19485 \end_inset
19486
19487
19488 \end_layout
19489
19490 \end_inset
19491 </cell>
19492 </row>
19493 <row>
19494 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19495 \begin_inset Text
19496
19497 \begin_layout Plain Layout
19498
19499 \backslash
19500 tau
19501 \end_layout
19502
19503 \end_inset
19504 </cell>
19505 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19506 \begin_inset Text
19507
19508 \begin_layout Plain Layout
19509 \begin_inset Formula $\tau$
19510 \end_inset
19511
19512
19513 \end_layout
19514
19515 \end_inset
19516 </cell>
19517 </row>
19518 <row>
19519 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19520 \begin_inset Text
19521
19522 \begin_layout Plain Layout
19523
19524 \backslash
19525 upsilon
19526 \end_layout
19527
19528 \end_inset
19529 </cell>
19530 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19531 \begin_inset Text
19532
19533 \begin_layout Plain Layout
19534 \begin_inset Formula $\upsilon$
19535 \end_inset
19536
19537
19538 \end_layout
19539
19540 \end_inset
19541 </cell>
19542 </row>
19543 <row>
19544 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19545 \begin_inset Text
19546
19547 \begin_layout Plain Layout
19548
19549 \backslash
19550 phi
19551 \end_layout
19552
19553 \end_inset
19554 </cell>
19555 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19556 \begin_inset Text
19557
19558 \begin_layout Plain Layout
19559 \begin_inset Formula $\phi$
19560 \end_inset
19561
19562
19563 \end_layout
19564
19565 \end_inset
19566 </cell>
19567 </row>
19568 <row>
19569 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19570 \begin_inset Text
19571
19572 \begin_layout Plain Layout
19573
19574 \backslash
19575 varphi
19576 \end_layout
19577
19578 \end_inset
19579 </cell>
19580 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19581 \begin_inset Text
19582
19583 \begin_layout Plain Layout
19584 \begin_inset Formula $\varphi$
19585 \end_inset
19586
19587
19588 \end_layout
19589
19590 \end_inset
19591 </cell>
19592 </row>
19593 <row>
19594 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19595 \begin_inset Text
19596
19597 \begin_layout Plain Layout
19598
19599 \backslash
19600 chi
19601 \end_layout
19602
19603 \end_inset
19604 </cell>
19605 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19606 \begin_inset Text
19607
19608 \begin_layout Plain Layout
19609 \begin_inset Formula $\chi$
19610 \end_inset
19611
19612
19613 \end_layout
19614
19615 \end_inset
19616 </cell>
19617 </row>
19618 <row>
19619 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19620 \begin_inset Text
19621
19622 \begin_layout Plain Layout
19623
19624 \backslash
19625 psi
19626 \end_layout
19627
19628 \end_inset
19629 </cell>
19630 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19631 \begin_inset Text
19632
19633 \begin_layout Plain Layout
19634 \begin_inset Formula $\psi$
19635 \end_inset
19636
19637
19638 \end_layout
19639
19640 \end_inset
19641 </cell>
19642 </row>
19643 <row>
19644 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
19645 \begin_inset Text
19646
19647 \begin_layout Plain Layout
19648
19649 \backslash
19650 omega
19651 \end_layout
19652
19653 \end_inset
19654 </cell>
19655 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
19656 \begin_inset Text
19657
19658 \begin_layout Plain Layout
19659 \begin_inset Formula $\omega$
19660 \end_inset
19661
19662
19663 \end_layout
19664
19665 \end_inset
19666 </cell>
19667 </row>
19668 </lyxtabular>
19669
19670 \end_inset
19671
19672
19673 \begin_inset space \hfill{}
19674 \end_inset
19675
19676
19677 \end_layout
19678
19679 \begin_layout Standard
19680 \begin_inset VSpace medskip
19681 \end_inset
19682
19683 Wie man aufrechte griechische Buchstaben erstellt, ist in 
19684 \begin_inset CommandInset ref
19685 LatexCommand ref
19686 reference "sub:Aufrechte-kleine-griechische"
19687
19688 \end_inset
19689
19690  beschrieben.
19691 \end_layout
19692
19693 \begin_layout Subsection
19694 Große Buchstaben
19695 \begin_inset Index
19696 status collapsed
19697
19698 \begin_layout Plain Layout
19699 griechische Buchstaben ! große
19700 \end_layout
19701
19702 \end_inset
19703
19704
19705 \end_layout
19706
19707 \begin_layout Standard
19708 \begin_inset space \hfill{}
19709 \end_inset
19710
19711
19712 \begin_inset Tabular
19713 <lyxtabular version="3" rows="7" columns="2">
19714 <features>
19715 <column alignment="center" valignment="top" width="0pt">
19716 <column alignment="center" valignment="top" width="0pt">
19717 <row>
19718 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
19719 \begin_inset Text
19720
19721 \begin_layout Plain Layout
19722 Befehl
19723 \end_layout
19724
19725 \end_inset
19726 </cell>
19727 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
19728 \begin_inset Text
19729
19730 \begin_layout Plain Layout
19731 Ergebnis
19732 \end_layout
19733
19734 \end_inset
19735 </cell>
19736 </row>
19737 <row>
19738 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19739 \begin_inset Text
19740
19741 \begin_layout Plain Layout
19742
19743 \backslash
19744 Gamma
19745 \end_layout
19746
19747 \end_inset
19748 </cell>
19749 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19750 \begin_inset Text
19751
19752 \begin_layout Plain Layout
19753 \begin_inset Formula $\Gamma$
19754 \end_inset
19755
19756
19757 \end_layout
19758
19759 \end_inset
19760 </cell>
19761 </row>
19762 <row>
19763 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19764 \begin_inset Text
19765
19766 \begin_layout Plain Layout
19767
19768 \backslash
19769 Delta
19770 \end_layout
19771
19772 \end_inset
19773 </cell>
19774 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19775 \begin_inset Text
19776
19777 \begin_layout Plain Layout
19778 \begin_inset Formula $\Delta$
19779 \end_inset
19780
19781
19782 \end_layout
19783
19784 \end_inset
19785 </cell>
19786 </row>
19787 <row>
19788 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19789 \begin_inset Text
19790
19791 \begin_layout Plain Layout
19792
19793 \backslash
19794 Theta
19795 \end_layout
19796
19797 \end_inset
19798 </cell>
19799 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19800 \begin_inset Text
19801
19802 \begin_layout Plain Layout
19803 \begin_inset Formula $\Theta$
19804 \end_inset
19805
19806
19807 \end_layout
19808
19809 \end_inset
19810 </cell>
19811 </row>
19812 <row>
19813 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19814 \begin_inset Text
19815
19816 \begin_layout Plain Layout
19817
19818 \backslash
19819 Lambda
19820 \end_layout
19821
19822 \end_inset
19823 </cell>
19824 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19825 \begin_inset Text
19826
19827 \begin_layout Plain Layout
19828 \begin_inset Formula $\Lambda$
19829 \end_inset
19830
19831
19832 \end_layout
19833
19834 \end_inset
19835 </cell>
19836 </row>
19837 <row>
19838 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19839 \begin_inset Text
19840
19841 \begin_layout Plain Layout
19842
19843 \backslash
19844 Xi
19845 \end_layout
19846
19847 \end_inset
19848 </cell>
19849 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19850 \begin_inset Text
19851
19852 \begin_layout Plain Layout
19853 \begin_inset Formula $\Xi$
19854 \end_inset
19855
19856
19857 \end_layout
19858
19859 \end_inset
19860 </cell>
19861 </row>
19862 <row>
19863 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
19864 \begin_inset Text
19865
19866 \begin_layout Plain Layout
19867
19868 \backslash
19869 Pi
19870 \end_layout
19871
19872 \end_inset
19873 </cell>
19874 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
19875 \begin_inset Text
19876
19877 \begin_layout Plain Layout
19878 \begin_inset Formula $\Pi$
19879 \end_inset
19880
19881
19882 \end_layout
19883
19884 \end_inset
19885 </cell>
19886 </row>
19887 </lyxtabular>
19888
19889 \end_inset
19890
19891
19892 \begin_inset space \hfill{}
19893 \end_inset
19894
19895
19896 \begin_inset Tabular
19897 <lyxtabular version="3" rows="6" columns="2">
19898 <features>
19899 <column alignment="center" valignment="top" width="0pt">
19900 <column alignment="center" valignment="top" width="0pt">
19901 <row>
19902 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
19903 \begin_inset Text
19904
19905 \begin_layout Plain Layout
19906 Befehl
19907 \end_layout
19908
19909 \end_inset
19910 </cell>
19911 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
19912 \begin_inset Text
19913
19914 \begin_layout Plain Layout
19915 Ergebnis
19916 \end_layout
19917
19918 \end_inset
19919 </cell>
19920 </row>
19921 <row>
19922 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19923 \begin_inset Text
19924
19925 \begin_layout Plain Layout
19926
19927 \backslash
19928 Sigma
19929 \end_layout
19930
19931 \end_inset
19932 </cell>
19933 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19934 \begin_inset Text
19935
19936 \begin_layout Plain Layout
19937 \begin_inset Formula $\Sigma$
19938 \end_inset
19939
19940
19941 \end_layout
19942
19943 \end_inset
19944 </cell>
19945 </row>
19946 <row>
19947 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19948 \begin_inset Text
19949
19950 \begin_layout Plain Layout
19951
19952 \backslash
19953 Upsilon
19954 \end_layout
19955
19956 \end_inset
19957 </cell>
19958 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19959 \begin_inset Text
19960
19961 \begin_layout Plain Layout
19962 \begin_inset Formula $\Upsilon$
19963 \end_inset
19964
19965
19966 \end_layout
19967
19968 \end_inset
19969 </cell>
19970 </row>
19971 <row>
19972 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19973 \begin_inset Text
19974
19975 \begin_layout Plain Layout
19976
19977 \backslash
19978 Phi
19979 \end_layout
19980
19981 \end_inset
19982 </cell>
19983 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19984 \begin_inset Text
19985
19986 \begin_layout Plain Layout
19987 \begin_inset Formula $\Phi$
19988 \end_inset
19989
19990
19991 \end_layout
19992
19993 \end_inset
19994 </cell>
19995 </row>
19996 <row>
19997 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19998 \begin_inset Text
19999
20000 \begin_layout Plain Layout
20001
20002 \backslash
20003 Psi
20004 \end_layout
20005
20006 \end_inset
20007 </cell>
20008 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20009 \begin_inset Text
20010
20011 \begin_layout Plain Layout
20012 \begin_inset Formula $\Psi$
20013 \end_inset
20014
20015
20016 \end_layout
20017
20018 \end_inset
20019 </cell>
20020 </row>
20021 <row>
20022 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
20023 \begin_inset Text
20024
20025 \begin_layout Plain Layout
20026
20027 \backslash
20028 Omega
20029 \end_layout
20030
20031 \end_inset
20032 </cell>
20033 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
20034 \begin_inset Text
20035
20036 \begin_layout Plain Layout
20037 \begin_inset Formula $\Omega$
20038 \end_inset
20039
20040
20041 \end_layout
20042
20043 \end_inset
20044 </cell>
20045 </row>
20046 </lyxtabular>
20047
20048 \end_inset
20049
20050
20051 \begin_inset space \hfill{}
20052 \end_inset
20053
20054
20055 \end_layout
20056
20057 \begin_layout Standard
20058 \begin_inset VSpace medskip
20059 \end_inset
20060
20061 Dass die großen griechischen Buchstaben aufrecht erscheinen, ist einem Fehler
20062  geschuldet, der während der Entwicklung von TeX gemacht wurde.
20063  Um korrekte kursive Großbuchstaben zu erhalten, beginnt man einen Befehl
20064  mit 
20065 \series bold
20066 var
20067 \series default
20068 .
20069  So ergibt z.
20070 \begin_inset space \thinspace{}
20071 \end_inset
20072
20073 B.
20074  der Befehl 
20075 \series bold
20076
20077 \backslash
20078 varGamma
20079 \series default
20080
20081 \begin_inset Formula $\varGamma$
20082 \end_inset
20083
20084
20085 \end_layout
20086
20087 \begin_layout Subsection
20088 Fett gedruckte Buchstaben
20089 \begin_inset Index
20090 status collapsed
20091
20092 \begin_layout Plain Layout
20093 griechische Buchstaben ! fett gedruckte
20094 \end_layout
20095
20096 \end_inset
20097
20098
20099 \end_layout
20100
20101 \begin_layout Standard
20102 Griechische lassen sich nicht wie lateinische Buchstaben in verschiedenen
20103  Schriftstilen darstellen.
20104  Es besteht nur die Möglichkeit, sie mit dem Befehl 
20105 \series bold
20106
20107 \backslash
20108 boldsymbol
20109 \series default
20110
20111 \begin_inset Index
20112 status collapsed
20113
20114 \begin_layout Plain Layout
20115 Befehle ! B ! 
20116 \backslash
20117 boldsymbol
20118 \end_layout
20119
20120 \end_inset
20121
20122  fett gedruckt auszugeben.
20123 \end_layout
20124
20125 \begin_layout Standard
20126 \align center
20127 \begin_inset Tabular
20128 <lyxtabular version="3" rows="3" columns="2">
20129 <features>
20130 <column alignment="center" valignment="top" width="0">
20131 <column alignment="center" valignment="top" width="0">
20132 <row>
20133 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
20134 \begin_inset Text
20135
20136 \begin_layout Plain Layout
20137 Befehl
20138 \end_layout
20139
20140 \end_inset
20141 </cell>
20142 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
20143 \begin_inset Text
20144
20145 \begin_layout Plain Layout
20146 Ergebnis
20147 \end_layout
20148
20149 \end_inset
20150 </cell>
20151 </row>
20152 <row>
20153 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20154 \begin_inset Text
20155
20156 \begin_layout Plain Layout
20157
20158 \backslash
20159 Upsilon
20160 \backslash
20161 boldsymbol
20162 \backslash
20163 Upsilon
20164 \end_layout
20165
20166 \end_inset
20167 </cell>
20168 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20169 \begin_inset Text
20170
20171 \begin_layout Plain Layout
20172 \begin_inset Formula $\Upsilon\boldsymbol{\Upsilon}$
20173 \end_inset
20174
20175
20176 \end_layout
20177
20178 \end_inset
20179 </cell>
20180 </row>
20181 <row>
20182 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
20183 \begin_inset Text
20184
20185 \begin_layout Plain Layout
20186
20187 \backslash
20188 theta
20189 \backslash
20190 boldsymbol
20191 \backslash
20192 theta
20193 \end_layout
20194
20195 \end_inset
20196 </cell>
20197 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
20198 \begin_inset Text
20199
20200 \begin_layout Plain Layout
20201 \begin_inset Formula $\theta\boldsymbol{\theta}$
20202 \end_inset
20203
20204
20205 \end_layout
20206
20207 \end_inset
20208 </cell>
20209 </row>
20210 </lyxtabular>
20211
20212 \end_inset
20213
20214
20215 \end_layout
20216
20217 \begin_layout Section
20218 Symbole
20219 \begin_inset ERT
20220 status collapsed
20221
20222 \begin_layout Plain Layout
20223
20224
20225 \backslash
20226 texorpdfstring{
20227 \end_layout
20228
20229 \end_inset
20230
20231
20232 \begin_inset Foot
20233 status collapsed
20234
20235 \begin_layout Plain Layout
20236 Eine Liste mit sämtlichen Symbolen der meisten LaTeX-Pakete findet man in
20237  
20238 \begin_inset CommandInset citation
20239 LatexCommand cite
20240 key "Symbole"
20241
20242 \end_inset
20243
20244 .
20245 \end_layout
20246
20247 \end_inset
20248
20249
20250 \begin_inset ERT
20251 status collapsed
20252
20253 \begin_layout Plain Layout
20254
20255 }{}
20256 \end_layout
20257
20258 \end_inset
20259
20260
20261 \begin_inset Note Note
20262 status collapsed
20263
20264 \begin_layout Plain Layout
20265
20266 \series bold
20267
20268 \backslash
20269 texorpdfstring
20270 \series default
20271  dient dazu, dass die Fußnote nicht mit im pdf-Lesezeichen erscheint.
20272 \end_layout
20273
20274 \begin_layout Plain Layout
20275 Näheres zu 
20276 \series bold
20277
20278 \backslash
20279 texorpdfstring
20280 \series default
20281  steht in Kapitel 
20282 \begin_inset CommandInset ref
20283 LatexCommand ref
20284 reference "sub:Formeln-in-Überschriften"
20285
20286 \end_inset
20287
20288 .
20289 \end_layout
20290
20291 \end_inset
20292
20293
20294 \begin_inset Index
20295 status collapsed
20296
20297 \begin_layout Plain Layout
20298 Symbole
20299 \end_layout
20300
20301 \end_inset
20302
20303
20304 \end_layout
20305
20306 \begin_layout Standard
20307 Viele der im Folgenden aufgelisteten Symbole können auch über die Mathe-Werkzeug\SpecialChar \-
20308
20309 leistenknöpfe 
20310 \begin_inset Graphics
20311         filename ../../images/math/nabla.png
20312         scale 85
20313
20314 \end_inset
20315
20316  und 
20317 \begin_inset Graphics
20318         filename ../../images/math/digamma.png
20319         scale 85
20320
20321 \end_inset
20322
20323  eingefügt werden.
20324 \end_layout
20325
20326 \begin_layout Standard
20327 \begin_inset Newpage newpage
20328 \end_inset
20329
20330
20331 \end_layout
20332
20333 \begin_layout Subsection
20334 Mathematische Symbole
20335 \begin_inset CommandInset label
20336 LatexCommand label
20337 name "sub:Mathematische-Symbole"
20338
20339 \end_inset
20340
20341
20342 \begin_inset Index
20343 status collapsed
20344
20345 \begin_layout Plain Layout
20346 Symbole ! mathematische
20347 \end_layout
20348
20349 \end_inset
20350
20351
20352 \end_layout
20353
20354 \begin_layout Standard
20355 \begin_inset space \hfill{}
20356 \end_inset
20357
20358
20359 \begin_inset Tabular
20360 <lyxtabular version="3" rows="10" columns="2">
20361 <features>
20362 <column alignment="center" valignment="top" width="0pt">
20363 <column alignment="center" valignment="top" width="0pt">
20364 <row>
20365 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
20366 \begin_inset Text
20367
20368 \begin_layout Plain Layout
20369 Befehl
20370 \end_layout
20371
20372 \end_inset
20373 </cell>
20374 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
20375 \begin_inset Text
20376
20377 \begin_layout Plain Layout
20378 Ergebnis
20379 \end_layout
20380
20381 \end_inset
20382 </cell>
20383 </row>
20384 <row>
20385 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20386 \begin_inset Text
20387
20388 \begin_layout Plain Layout
20389
20390 \backslash
20391 neg
20392 \end_layout
20393
20394 \end_inset
20395 </cell>
20396 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20397 \begin_inset Text
20398
20399 \begin_layout Plain Layout
20400 \begin_inset Formula $\neg$
20401 \end_inset
20402
20403
20404 \end_layout
20405
20406 \end_inset
20407 </cell>
20408 </row>
20409 <row>
20410 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20411 \begin_inset Text
20412
20413 \begin_layout Plain Layout
20414
20415 \backslash
20416 Im
20417 \end_layout
20418
20419 \end_inset
20420 </cell>
20421 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20422 \begin_inset Text
20423
20424 \begin_layout Plain Layout
20425 \begin_inset Formula $\Im$
20426 \end_inset
20427
20428
20429 \end_layout
20430
20431 \end_inset
20432 </cell>
20433 </row>
20434 <row>
20435 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20436 \begin_inset Text
20437
20438 \begin_layout Plain Layout
20439
20440 \backslash
20441 Re
20442 \end_layout
20443
20444 \end_inset
20445 </cell>
20446 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20447 \begin_inset Text
20448
20449 \begin_layout Plain Layout
20450 \begin_inset Formula $\Re$
20451 \end_inset
20452
20453
20454 \end_layout
20455
20456 \end_inset
20457 </cell>
20458 </row>
20459 <row>
20460 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20461 \begin_inset Text
20462
20463 \begin_layout Plain Layout
20464
20465 \backslash
20466 aleph
20467 \end_layout
20468
20469 \end_inset
20470 </cell>
20471 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20472 \begin_inset Text
20473
20474 \begin_layout Plain Layout
20475 \begin_inset Formula $\aleph$
20476 \end_inset
20477
20478
20479 \end_layout
20480
20481 \end_inset
20482 </cell>
20483 </row>
20484 <row>
20485 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20486 \begin_inset Text
20487
20488 \begin_layout Plain Layout
20489
20490 \backslash
20491 partial
20492 \end_layout
20493
20494 \end_inset
20495 </cell>
20496 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20497 \begin_inset Text
20498
20499 \begin_layout Plain Layout
20500 \begin_inset Formula $\partial$
20501 \end_inset
20502
20503
20504 \end_layout
20505
20506 \end_inset
20507 </cell>
20508 </row>
20509 <row>
20510 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20511 \begin_inset Text
20512
20513 \begin_layout Plain Layout
20514
20515 \backslash
20516 infty
20517 \end_layout
20518
20519 \end_inset
20520 </cell>
20521 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20522 \begin_inset Text
20523
20524 \begin_layout Plain Layout
20525 \begin_inset Formula $\infty$
20526 \end_inset
20527
20528
20529 \end_layout
20530
20531 \end_inset
20532 </cell>
20533 </row>
20534 <row>
20535 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
20536 \begin_inset Text
20537
20538 \begin_layout Plain Layout
20539
20540 \backslash
20541 wp
20542 \end_layout
20543
20544 \end_inset
20545 </cell>
20546 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
20547 \begin_inset Text
20548
20549 \begin_layout Plain Layout
20550 \begin_inset Formula $\wp$
20551 \end_inset
20552
20553
20554 \end_layout
20555
20556 \end_inset
20557 </cell>
20558 </row>
20559 <row>
20560 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
20561 \begin_inset Text
20562
20563 \begin_layout Plain Layout
20564
20565 \backslash
20566 imath
20567 \end_layout
20568
20569 \end_inset
20570 </cell>
20571 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
20572 \begin_inset Text
20573
20574 \begin_layout Plain Layout
20575 \begin_inset Formula $\imath$
20576 \end_inset
20577
20578
20579 \end_layout
20580
20581 \end_inset
20582 </cell>
20583 </row>
20584 <row>
20585 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
20586 \begin_inset Text
20587
20588 \begin_layout Plain Layout
20589
20590 \backslash
20591 jmath
20592 \end_layout
20593
20594 \end_inset
20595 </cell>
20596 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
20597 \begin_inset Text
20598
20599 \begin_layout Plain Layout
20600 \begin_inset Formula $\jmath$
20601 \end_inset
20602
20603
20604 \end_layout
20605
20606 \end_inset
20607 </cell>
20608 </row>
20609 </lyxtabular>
20610
20611 \end_inset
20612
20613
20614 \begin_inset space \hfill{}
20615 \end_inset
20616
20617
20618 \begin_inset Tabular
20619 <lyxtabular version="3" rows="10" columns="2">
20620 <features>
20621 <column alignment="center" valignment="top" width="0pt">
20622 <column alignment="center" valignment="top" width="0pt">
20623 <row>
20624 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
20625 \begin_inset Text
20626
20627 \begin_layout Plain Layout
20628 Befehl
20629 \end_layout
20630
20631 \end_inset
20632 </cell>
20633 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
20634 \begin_inset Text
20635
20636 \begin_layout Plain Layout
20637 Ergebnis
20638 \begin_inset Note Note
20639 status collapsed
20640
20641 \begin_layout Plain Layout
20642
20643 \series bold
20644
20645 \backslash
20646 raisebox
20647 \series default
20648  dient nur als Abstandhalter.
20649 \end_layout
20650
20651 \end_inset
20652
20653
20654 \end_layout
20655
20656 \end_inset
20657 </cell>
20658 </row>
20659 <row>
20660 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20661 \begin_inset Text
20662
20663 \begin_layout Plain Layout
20664
20665 \backslash
20666 forall
20667 \end_layout
20668
20669 \end_inset
20670 </cell>
20671 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20672 \begin_inset Text
20673
20674 \begin_layout Plain Layout
20675 \begin_inset Formula $\forall$
20676 \end_inset
20677
20678
20679 \end_layout
20680
20681 \end_inset
20682 </cell>
20683 </row>
20684 <row>
20685 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20686 \begin_inset Text
20687
20688 \begin_layout Plain Layout
20689
20690 \backslash
20691 exists
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 $\exists$
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 nexists
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 $\nexists$
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 emptyset
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 $\emptyset$
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 varnothing
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 $\varnothing$
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" leftline="true" usebox="none">
20786 \begin_inset Text
20787
20788 \begin_layout Plain Layout
20789
20790 \backslash
20791 dag
20792 \end_layout
20793
20794 \end_inset
20795 </cell>
20796 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20797 \begin_inset Text
20798
20799 \begin_layout Plain Layout
20800 \begin_inset Formula $\dag$
20801 \end_inset
20802
20803
20804 \end_layout
20805
20806 \end_inset
20807 </cell>
20808 </row>
20809 <row>
20810 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
20811 \begin_inset Text
20812
20813 \begin_layout Plain Layout
20814
20815 \backslash
20816 ddag
20817 \end_layout
20818
20819 \end_inset
20820 </cell>
20821 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
20822 \begin_inset Text
20823
20824 \begin_layout Plain Layout
20825 \begin_inset Formula $\ddag$
20826 \end_inset
20827
20828
20829 \end_layout
20830
20831 \end_inset
20832 </cell>
20833 </row>
20834 <row>
20835 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
20836 \begin_inset Text
20837
20838 \begin_layout Plain Layout
20839
20840 \backslash
20841 complement
20842 \end_layout
20843
20844 \end_inset
20845 </cell>
20846 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
20847 \begin_inset Text
20848
20849 \begin_layout Plain Layout
20850 \begin_inset ERT
20851 status collapsed
20852
20853 \begin_layout Plain Layout
20854
20855
20856 \backslash
20857 raisebox{-0.8mm}{
20858 \end_layout
20859
20860 \end_inset
20861
20862
20863 \begin_inset Formula $\complement$
20864 \end_inset
20865
20866
20867 \begin_inset ERT
20868 status collapsed
20869
20870 \begin_layout Plain Layout
20871
20872 }
20873 \end_layout
20874
20875 \end_inset
20876
20877
20878 \end_layout
20879
20880 \end_inset
20881 </cell>
20882 </row>
20883 <row>
20884 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
20885 \begin_inset Text
20886
20887 \begin_layout Plain Layout
20888
20889 \backslash
20890 Bbbk
20891 \end_layout
20892
20893 \end_inset
20894 </cell>
20895 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
20896 \begin_inset Text
20897
20898 \begin_layout Plain Layout
20899 \begin_inset Formula $\Bbbk$
20900 \end_inset
20901
20902
20903 \end_layout
20904
20905 \end_inset
20906 </cell>
20907 </row>
20908 </lyxtabular>
20909
20910 \end_inset
20911
20912
20913 \begin_inset space \hfill{}
20914 \end_inset
20915
20916
20917 \begin_inset Tabular
20918 <lyxtabular version="3" rows="10" columns="2">
20919 <features>
20920 <column alignment="center" valignment="top" width="0pt">
20921 <column alignment="center" valignment="top" width="0pt">
20922 <row>
20923 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
20924 \begin_inset Text
20925
20926 \begin_layout Plain Layout
20927 Befehl
20928 \end_layout
20929
20930 \end_inset
20931 </cell>
20932 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
20933 \begin_inset Text
20934
20935 \begin_layout Plain Layout
20936 Ergebnis
20937 \end_layout
20938
20939 \end_inset
20940 </cell>
20941 </row>
20942 <row>
20943 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20944 \begin_inset Text
20945
20946 \begin_layout Plain Layout
20947
20948 \backslash
20949 prime
20950 \end_layout
20951
20952 \end_inset
20953 </cell>
20954 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20955 \begin_inset Text
20956
20957 \begin_layout Plain Layout
20958 \begin_inset Formula $\prime$
20959 \end_inset
20960
20961
20962 \end_layout
20963
20964 \end_inset
20965 </cell>
20966 </row>
20967 <row>
20968 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20969 \begin_inset Text
20970
20971 \begin_layout Plain Layout
20972
20973 \backslash
20974 backprime
20975 \end_layout
20976
20977 \end_inset
20978 </cell>
20979 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20980 \begin_inset Text
20981
20982 \begin_layout Plain Layout
20983 \begin_inset Formula $\backprime$
20984 \end_inset
20985
20986
20987 \end_layout
20988
20989 \end_inset
20990 </cell>
20991 </row>
20992 <row>
20993 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20994 \begin_inset Text
20995
20996 \begin_layout Plain Layout
20997
20998 \backslash
20999 mho
21000 \end_layout
21001
21002 \end_inset
21003 </cell>
21004 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21005 \begin_inset Text
21006
21007 \begin_layout Plain Layout
21008 \begin_inset Formula $\mho$
21009 \end_inset
21010
21011
21012 \end_layout
21013
21014 \end_inset
21015 </cell>
21016 </row>
21017 <row>
21018 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21019 \begin_inset Text
21020
21021 \begin_layout Plain Layout
21022
21023 \backslash
21024 triangle
21025 \end_layout
21026
21027 \end_inset
21028 </cell>
21029 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21030 \begin_inset Text
21031
21032 \begin_layout Plain Layout
21033 \begin_inset Formula $\triangle$
21034 \end_inset
21035
21036
21037 \end_layout
21038
21039 \end_inset
21040 </cell>
21041 </row>
21042 <row>
21043 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21044 \begin_inset Text
21045
21046 \begin_layout Plain Layout
21047
21048 \backslash
21049 angle
21050 \end_layout
21051
21052 \end_inset
21053 </cell>
21054 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21055 \begin_inset Text
21056
21057 \begin_layout Plain Layout
21058 \begin_inset Formula $\angle$
21059 \end_inset
21060
21061
21062 \end_layout
21063
21064 \end_inset
21065 </cell>
21066 </row>
21067 <row>
21068 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21069 \begin_inset Text
21070
21071 \begin_layout Plain Layout
21072
21073 \backslash
21074 measuredangle
21075 \end_layout
21076
21077 \end_inset
21078 </cell>
21079 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21080 \begin_inset Text
21081
21082 \begin_layout Plain Layout
21083 \begin_inset Formula $\measuredangle$
21084 \end_inset
21085
21086
21087 \end_layout
21088
21089 \end_inset
21090 </cell>
21091 </row>
21092 <row>
21093 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
21094 \begin_inset Text
21095
21096 \begin_layout Plain Layout
21097
21098 \backslash
21099 sphericalangle
21100 \end_layout
21101
21102 \end_inset
21103 </cell>
21104 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
21105 \begin_inset Text
21106
21107 \begin_layout Plain Layout
21108 \begin_inset Formula $\sphericalangle$
21109 \end_inset
21110
21111
21112 \end_layout
21113
21114 \end_inset
21115 </cell>
21116 </row>
21117 <row>
21118 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
21119 \begin_inset Text
21120
21121 \begin_layout Plain Layout
21122
21123 \backslash
21124 top
21125 \end_layout
21126
21127 \end_inset
21128 </cell>
21129 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
21130 \begin_inset Text
21131
21132 \begin_layout Plain Layout
21133 \begin_inset Formula $\top$
21134 \end_inset
21135
21136
21137 \end_layout
21138
21139 \end_inset
21140 </cell>
21141 </row>
21142 <row>
21143 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
21144 \begin_inset Text
21145
21146 \begin_layout Plain Layout
21147
21148 \backslash
21149 bot
21150 \end_layout
21151
21152 \end_inset
21153 </cell>
21154 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
21155 \begin_inset Text
21156
21157 \begin_layout Plain Layout
21158 \begin_inset Formula $\bot$
21159 \end_inset
21160
21161
21162 \end_layout
21163
21164 \end_inset
21165 </cell>
21166 </row>
21167 </lyxtabular>
21168
21169 \end_inset
21170
21171
21172 \begin_inset space \hfill{}
21173 \end_inset
21174
21175
21176 \end_layout
21177
21178 \begin_layout Subsection
21179 Sonstige Symbole
21180 \begin_inset CommandInset label
21181 LatexCommand label
21182 name "sub:Sonstige-Symbole"
21183
21184 \end_inset
21185
21186
21187 \begin_inset Index
21188 status collapsed
21189
21190 \begin_layout Plain Layout
21191 Symbole ! sonstige
21192 \end_layout
21193
21194 \end_inset
21195
21196
21197 \end_layout
21198
21199 \begin_layout Standard
21200 \noindent
21201 \align center
21202 \begin_inset Tabular
21203 <lyxtabular version="3" rows="10" columns="2">
21204 <features>
21205 <column alignment="center" valignment="top" width="0pt">
21206 <column alignment="center" valignment="top" width="0pt">
21207 <row>
21208 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
21209 \begin_inset Text
21210
21211 \begin_layout Plain Layout
21212 Befehl
21213 \end_layout
21214
21215 \end_inset
21216 </cell>
21217 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
21218 \begin_inset Text
21219
21220 \begin_layout Plain Layout
21221 Ergebnis
21222 \end_layout
21223
21224 \end_inset
21225 </cell>
21226 </row>
21227 <row>
21228 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21229 \begin_inset Text
21230
21231 \begin_layout Plain Layout
21232
21233 \backslash
21234 flat
21235 \end_layout
21236
21237 \end_inset
21238 </cell>
21239 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21240 \begin_inset Text
21241
21242 \begin_layout Plain Layout
21243 \begin_inset Formula $\flat$
21244 \end_inset
21245
21246
21247 \end_layout
21248
21249 \end_inset
21250 </cell>
21251 </row>
21252 <row>
21253 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21254 \begin_inset Text
21255
21256 \begin_layout Plain Layout
21257
21258 \backslash
21259 natural
21260 \end_layout
21261
21262 \end_inset
21263 </cell>
21264 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21265 \begin_inset Text
21266
21267 \begin_layout Plain Layout
21268 \begin_inset Formula $\natural$
21269 \end_inset
21270
21271
21272 \end_layout
21273
21274 \end_inset
21275 </cell>
21276 </row>
21277 <row>
21278 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21279 \begin_inset Text
21280
21281 \begin_layout Plain Layout
21282
21283 \backslash
21284 sharp
21285 \end_layout
21286
21287 \end_inset
21288 </cell>
21289 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21290 \begin_inset Text
21291
21292 \begin_layout Plain Layout
21293 \begin_inset Formula $\sharp$
21294 \end_inset
21295
21296
21297 \end_layout
21298
21299 \end_inset
21300 </cell>
21301 </row>
21302 <row>
21303 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
21304 \begin_inset Text
21305
21306 \begin_layout Plain Layout
21307
21308 \backslash
21309 surd
21310 \end_layout
21311
21312 \end_inset
21313 </cell>
21314 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
21315 \begin_inset Text
21316
21317 \begin_layout Plain Layout
21318 \begin_inset Formula $\surd$
21319 \end_inset
21320
21321
21322 \end_layout
21323
21324 \end_inset
21325 </cell>
21326 </row>
21327 <row>
21328 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
21329 \begin_inset Text
21330
21331 \begin_layout Plain Layout
21332
21333 \backslash
21334 checkmark
21335 \end_layout
21336
21337 \end_inset
21338 </cell>
21339 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
21340 \begin_inset Text
21341
21342 \begin_layout Plain Layout
21343 \begin_inset Formula $\checkmark$
21344 \end_inset
21345
21346
21347 \end_layout
21348
21349 \end_inset
21350 </cell>
21351 </row>
21352 <row>
21353 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
21354 \begin_inset Text
21355
21356 \begin_layout Plain Layout
21357
21358 \backslash
21359 yen
21360 \end_layout
21361
21362 \end_inset
21363 </cell>
21364 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
21365 \begin_inset Text
21366
21367 \begin_layout Plain Layout
21368 \begin_inset Formula $\yen$
21369 \end_inset
21370
21371
21372 \end_layout
21373
21374 \end_inset
21375 </cell>
21376 </row>
21377 <row>
21378 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
21379 \begin_inset Text
21380
21381 \begin_layout Plain Layout
21382
21383 \backslash
21384 pounds
21385 \end_layout
21386
21387 \end_inset
21388 </cell>
21389 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
21390 \begin_inset Text
21391
21392 \begin_layout Plain Layout
21393 \begin_inset Formula $\pounds$
21394 \end_inset
21395
21396
21397 \end_layout
21398
21399 \end_inset
21400 </cell>
21401 </row>
21402 <row>
21403 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
21404 \begin_inset Text
21405
21406 \begin_layout Plain Layout
21407 $
21408 \end_layout
21409
21410 \end_inset
21411 </cell>
21412 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
21413 \begin_inset Text
21414
21415 \begin_layout Plain Layout
21416 \begin_inset Formula $\$$
21417 \end_inset
21418
21419
21420 \end_layout
21421
21422 \end_inset
21423 </cell>
21424 </row>
21425 <row>
21426 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
21427 \begin_inset Text
21428
21429 \begin_layout Plain Layout
21430 §
21431 \end_layout
21432
21433 \end_inset
21434 </cell>
21435 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
21436 \begin_inset Text
21437
21438 \begin_layout Plain Layout
21439 \begin_inset Formula $§$
21440 \end_inset
21441
21442
21443 \end_layout
21444
21445 \end_inset
21446 </cell>
21447 </row>
21448 </lyxtabular>
21449
21450 \end_inset
21451
21452
21453 \begin_inset Tabular
21454 <lyxtabular version="3" rows="10" columns="2">
21455 <features>
21456 <column alignment="center" valignment="top" width="0">
21457 <column alignment="center" valignment="top" width="0">
21458 <row>
21459 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
21460 \begin_inset Text
21461
21462 \begin_layout Plain Layout
21463 Befehl
21464 \end_layout
21465
21466 \end_inset
21467 </cell>
21468 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
21469 \begin_inset Text
21470
21471 \begin_layout Plain Layout
21472 Ergebnis
21473 \end_layout
21474
21475 \end_inset
21476 </cell>
21477 </row>
21478 <row>
21479 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21480 \begin_inset Text
21481
21482 \begin_layout Plain Layout
21483
21484 \backslash
21485 hbar
21486 \end_layout
21487
21488 \end_inset
21489 </cell>
21490 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21491 \begin_inset Text
21492
21493 \begin_layout Plain Layout
21494 \begin_inset Formula $\hbar$
21495 \end_inset
21496
21497
21498 \end_layout
21499
21500 \end_inset
21501 </cell>
21502 </row>
21503 <row>
21504 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21505 \begin_inset Text
21506
21507 \begin_layout Plain Layout
21508
21509 \backslash
21510 hslash
21511 \end_layout
21512
21513 \end_inset
21514 </cell>
21515 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21516 \begin_inset Text
21517
21518 \begin_layout Plain Layout
21519 \begin_inset Formula $\hslash$
21520 \end_inset
21521
21522
21523 \end_layout
21524
21525 \end_inset
21526 </cell>
21527 </row>
21528 <row>
21529 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21530 \begin_inset Text
21531
21532 \begin_layout Plain Layout
21533
21534 \backslash
21535 clubsuit
21536 \end_layout
21537
21538 \end_inset
21539 </cell>
21540 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21541 \begin_inset Text
21542
21543 \begin_layout Plain Layout
21544 \begin_inset Formula $\clubsuit$
21545 \end_inset
21546
21547
21548 \end_layout
21549
21550 \end_inset
21551 </cell>
21552 </row>
21553 <row>
21554 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21555 \begin_inset Text
21556
21557 \begin_layout Plain Layout
21558
21559 \backslash
21560 spadesuit
21561 \end_layout
21562
21563 \end_inset
21564 </cell>
21565 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21566 \begin_inset Text
21567
21568 \begin_layout Plain Layout
21569 \begin_inset Formula $\spadesuit$
21570 \end_inset
21571
21572
21573 \end_layout
21574
21575 \end_inset
21576 </cell>
21577 </row>
21578 <row>
21579 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21580 \begin_inset Text
21581
21582 \begin_layout Plain Layout
21583
21584 \backslash
21585 bigstar
21586 \end_layout
21587
21588 \end_inset
21589 </cell>
21590 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21591 \begin_inset Text
21592
21593 \begin_layout Plain Layout
21594 \begin_inset Formula $\bigstar$
21595 \end_inset
21596
21597
21598 \end_layout
21599
21600 \end_inset
21601 </cell>
21602 </row>
21603 <row>
21604 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21605 \begin_inset Text
21606
21607 \begin_layout Plain Layout
21608
21609 \backslash
21610 blacklozenge
21611 \end_layout
21612
21613 \end_inset
21614 </cell>
21615 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21616 \begin_inset Text
21617
21618 \begin_layout Plain Layout
21619 \begin_inset Formula $\blacklozenge$
21620 \end_inset
21621
21622
21623 \end_layout
21624
21625 \end_inset
21626 </cell>
21627 </row>
21628 <row>
21629 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21630 \begin_inset Text
21631
21632 \begin_layout Plain Layout
21633
21634 \backslash
21635 blacktriangle
21636 \end_layout
21637
21638 \end_inset
21639 </cell>
21640 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21641 \begin_inset Text
21642
21643 \begin_layout Plain Layout
21644 \begin_inset Formula $\blacktriangle$
21645 \end_inset
21646
21647
21648 \end_layout
21649
21650 \end_inset
21651 </cell>
21652 </row>
21653 <row>
21654 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21655 \begin_inset Text
21656
21657 \begin_layout Plain Layout
21658
21659 \backslash
21660 blacktiangledown
21661 \end_layout
21662
21663 \end_inset
21664 </cell>
21665 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21666 \begin_inset Text
21667
21668 \begin_layout Plain Layout
21669 \begin_inset Formula $\blacktriangledown$
21670 \end_inset
21671
21672
21673 \end_layout
21674
21675 \end_inset
21676 </cell>
21677 </row>
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
21684 \backslash
21685 bullet
21686 \end_layout
21687
21688 \end_inset
21689 </cell>
21690 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
21691 \begin_inset Text
21692
21693 \begin_layout Plain Layout
21694 \begin_inset Formula $\bullet$
21695 \end_inset
21696
21697
21698 \end_layout
21699
21700 \end_inset
21701 </cell>
21702 </row>
21703 </lyxtabular>
21704
21705 \end_inset
21706
21707
21708 \begin_inset Tabular
21709 <lyxtabular version="3" rows="10" columns="2">
21710 <features>
21711 <column alignment="center" valignment="top" width="0pt">
21712 <column alignment="center" valignment="top" width="0pt">
21713 <row>
21714 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
21715 \begin_inset Text
21716
21717 \begin_layout Plain Layout
21718 Befehl
21719 \end_layout
21720
21721 \end_inset
21722 </cell>
21723 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
21724 \begin_inset Text
21725
21726 \begin_layout Plain Layout
21727 Ergebnis
21728 \end_layout
21729
21730 \end_inset
21731 </cell>
21732 </row>
21733 <row>
21734 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21735 \begin_inset Text
21736
21737 \begin_layout Plain Layout
21738
21739 \backslash
21740 diamondsuit
21741 \end_layout
21742
21743 \end_inset
21744 </cell>
21745 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21746 \begin_inset Text
21747
21748 \begin_layout Plain Layout
21749 \begin_inset Formula $\diamondsuit$
21750 \end_inset
21751
21752
21753 \end_layout
21754
21755 \end_inset
21756 </cell>
21757 </row>
21758 <row>
21759 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21760 \begin_inset Text
21761
21762 \begin_layout Plain Layout
21763
21764 \backslash
21765 Diamond
21766 \end_layout
21767
21768 \end_inset
21769 </cell>
21770 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21771 \begin_inset Text
21772
21773 \begin_layout Plain Layout
21774 \begin_inset Formula $\Diamond$
21775 \end_inset
21776
21777
21778 \end_layout
21779
21780 \end_inset
21781 </cell>
21782 </row>
21783 <row>
21784 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21785 \begin_inset Text
21786
21787 \begin_layout Plain Layout
21788
21789 \backslash
21790 heartsuit
21791 \end_layout
21792
21793 \end_inset
21794 </cell>
21795 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21796 \begin_inset Text
21797
21798 \begin_layout Plain Layout
21799 \begin_inset Formula $\heartsuit$
21800 \end_inset
21801
21802
21803 \end_layout
21804
21805 \end_inset
21806 </cell>
21807 </row>
21808 <row>
21809 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
21810 \begin_inset Text
21811
21812 \begin_layout Plain Layout
21813
21814 \backslash
21815 P
21816 \end_layout
21817
21818 \end_inset
21819 </cell>
21820 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
21821 \begin_inset Text
21822
21823 \begin_layout Plain Layout
21824 \begin_inset Formula $\P$
21825 \end_inset
21826
21827
21828 \end_layout
21829
21830 \end_inset
21831 </cell>
21832 </row>
21833 <row>
21834 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
21835 \begin_inset Text
21836
21837 \begin_layout Plain Layout
21838
21839 \backslash
21840 copyright
21841 \end_layout
21842
21843 \end_inset
21844 </cell>
21845 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
21846 \begin_inset Text
21847
21848 \begin_layout Plain Layout
21849 \begin_inset Formula $\copyright$
21850 \end_inset
21851
21852
21853 \end_layout
21854
21855 \end_inset
21856 </cell>
21857 </row>
21858 <row>
21859 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
21860 \begin_inset Text
21861
21862 \begin_layout Plain Layout
21863
21864 \backslash
21865 circledR
21866 \end_layout
21867
21868 \end_inset
21869 </cell>
21870 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
21871 \begin_inset Text
21872
21873 \begin_layout Plain Layout
21874 \begin_inset Formula $\circledR$
21875 \end_inset
21876
21877
21878 \end_layout
21879
21880 \end_inset
21881 </cell>
21882 </row>
21883 <row>
21884 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
21885 \begin_inset Text
21886
21887 \begin_layout Plain Layout
21888
21889 \backslash
21890 maltese
21891 \end_layout
21892
21893 \end_inset
21894 </cell>
21895 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
21896 \begin_inset Text
21897
21898 \begin_layout Plain Layout
21899 \begin_inset Formula $\maltese$
21900 \end_inset
21901
21902
21903 \end_layout
21904
21905 \end_inset
21906 </cell>
21907 </row>
21908 <row>
21909 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
21910 \begin_inset Text
21911
21912 \begin_layout Plain Layout
21913
21914 \backslash
21915 diagup
21916 \end_layout
21917
21918 \end_inset
21919 </cell>
21920 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
21921 \begin_inset Text
21922
21923 \begin_layout Plain Layout
21924 \begin_inset Formula $\diagup$
21925 \end_inset
21926
21927
21928 \end_layout
21929
21930 \end_inset
21931 </cell>
21932 </row>
21933 <row>
21934 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
21935 \begin_inset Text
21936
21937 \begin_layout Plain Layout
21938
21939 \backslash
21940 diagdown
21941 \end_layout
21942
21943 \end_inset
21944 </cell>
21945 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
21946 \begin_inset Text
21947
21948 \begin_layout Plain Layout
21949 \begin_inset Formula $\diagdown$
21950 \end_inset
21951
21952
21953 \end_layout
21954
21955 \end_inset
21956 </cell>
21957 </row>
21958 </lyxtabular>
21959
21960 \end_inset
21961
21962
21963 \end_layout
21964
21965 \begin_layout Standard
21966 \begin_inset VSpace medskip
21967 \end_inset
21968
21969 Weitere Symbole sind in 
21970 \begin_inset CommandInset ref
21971 LatexCommand ref
21972 reference "sub:Sonstige-Sonderzeichen"
21973
21974 \end_inset
21975
21976  aufgelistet.
21977 \end_layout
21978
21979 \begin_layout Standard
21980 Einige Symbole können in unterschiedlicher Größe dargestellt werden, siehe
21981  
21982 \begin_inset CommandInset ref
21983 LatexCommand ref
21984 reference "sub:Schriftgrößen"
21985
21986 \end_inset
21987
21988 .
21989 \end_layout
21990
21991 \begin_layout Subsection
21992 Das Euro-Symbol €
21993 \begin_inset Index
21994 status collapsed
21995
21996 \begin_layout Plain Layout
21997 Symbole ! Euro-Symbol
21998 \end_layout
21999
22000 \end_inset
22001
22002
22003 \begin_inset Index
22004 status collapsed
22005
22006 \begin_layout Plain Layout
22007 \begin_inset ERT
22008 status collapsed
22009
22010 \begin_layout Plain Layout
22011
22012
22013 \backslash
22014 officialeuro
22015 \end_layout
22016
22017 \end_inset
22018
22019
22020 \end_layout
22021
22022 \end_inset
22023
22024
22025 \end_layout
22026
22027 \begin_layout Standard
22028 Wenn man in einer Formel das Euro-Symbol verwenden will, muss man das LaTeX-Pake
22029
22030 \series bold
22031 eurosym
22032 \series default
22033
22034 \begin_inset Index
22035 status collapsed
22036
22037 \begin_layout Plain Layout
22038 Pakete ! eurosym
22039 \end_layout
22040
22041 \end_inset
22042
22043  installieren und dieses mit der LaTeX-Vorspannzeile
22044 \end_layout
22045
22046 \begin_layout Standard
22047
22048 \series bold
22049
22050 \backslash
22051 usepackage[gennarrow]{eurosym}
22052 \end_layout
22053
22054 \begin_layout Standard
22055 aktivieren.
22056  Das Euro-Symbol kann man nun mit dem Befehl 
22057 \series bold
22058
22059 \backslash
22060 euro
22061 \series default
22062
22063 \begin_inset Index
22064 status collapsed
22065
22066 \begin_layout Plain Layout
22067 Befehle ! E ! 
22068 \backslash
22069 euro
22070 \end_layout
22071
22072 \end_inset
22073
22074  aufrufen.
22075 \end_layout
22076
22077 \begin_layout Standard
22078 Das Euro-Symbol kann man direkt übder die Tastatur in mathematischen Text
22079  eingeben, ohne 
22080 \series bold
22081 eurosym
22082 \series default
22083  installiert zu haben.
22084  Ist 
22085 \series bold
22086 eurosym
22087 \series default
22088  installiert, kann man 
22089 \series bold
22090
22091 \backslash
22092 euro
22093 \series default
22094  auch im TeX-Modus eingeben.
22095  Das offizielle Währungssymbol erhält man dann über den Befehl 
22096 \series bold
22097
22098 \backslash
22099 officialeuro
22100 \series default
22101
22102 \begin_inset Index
22103 status collapsed
22104
22105 \begin_layout Plain Layout
22106 Befehle ! O ! 
22107 \backslash
22108 officialeuro
22109 \end_layout
22110
22111 \end_inset
22112
22113 , der nur im TeX-Modus verfügbar ist.
22114 \end_layout
22115
22116 \begin_layout Standard
22117 \begin_inset ERT
22118 status collapsed
22119
22120 \begin_layout Plain Layout
22121
22122
22123 \backslash
22124 ifeurosym 
22125 \end_layout
22126
22127 \end_inset
22128
22129
22130 \begin_inset Note Note
22131 status open
22132
22133 \begin_layout Plain Layout
22134 Die folgende Tabelle erscheint nur im Ausdruck wenn das LaTeX-Paket 
22135 \series bold
22136 eurosym
22137 \series default
22138  installiert ist:
22139 \end_layout
22140
22141 \end_inset
22142
22143
22144 \end_layout
22145
22146 \begin_layout Standard
22147 Eine Übersicht der verschiedenen Euro-Symbole:
22148 \end_layout
22149
22150 \begin_layout Standard
22151 \align center
22152 \begin_inset Tabular
22153 <lyxtabular version="3" rows="4" columns="3">
22154 <features>
22155 <column alignment="center" valignment="top" width="0pt">
22156 <column alignment="center" valignment="top" width="0pt">
22157 <column alignment="center" valignment="top" width="0pt">
22158 <row>
22159 <cell multicolumn="1" alignment="center" valignment="top" bottomline="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" topline="true" bottomline="true" leftline="true" usebox="none">
22169 \begin_inset Text
22170
22171 \begin_layout Plain Layout
22172 Befehl 
22173 \end_layout
22174
22175 \end_inset
22176 </cell>
22177 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
22178 \begin_inset Text
22179
22180 \begin_layout Plain Layout
22181 Ergebnis
22182 \end_layout
22183
22184 \end_inset
22185 </cell>
22186 </row>
22187 <row>
22188 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22189 \begin_inset Text
22190
22191 \begin_layout Plain Layout
22192 Formel
22193 \end_layout
22194
22195 \end_inset
22196 </cell>
22197 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22198 \begin_inset Text
22199
22200 \begin_layout Plain Layout
22201
22202 \backslash
22203 euro
22204 \end_layout
22205
22206 \end_inset
22207 </cell>
22208 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22209 \begin_inset Text
22210
22211 \begin_layout Plain Layout
22212 \begin_inset Formula $\euro$
22213 \end_inset
22214
22215
22216 \end_layout
22217
22218 \end_inset
22219 </cell>
22220 </row>
22221 <row>
22222 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22223 \begin_inset Text
22224
22225 \begin_layout Plain Layout
22226 mathematischer Text
22227 \end_layout
22228
22229 \end_inset
22230 </cell>
22231 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22232 \begin_inset Text
22233
22234 \begin_layout Plain Layout
22235
22236 \end_layout
22237
22238 \end_inset
22239 </cell>
22240 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22241 \begin_inset Text
22242
22243 \begin_layout Plain Layout
22244 \begin_inset Formula $\mbox{€}$
22245 \end_inset
22246
22247
22248 \end_layout
22249
22250 \end_inset
22251 </cell>
22252 </row>
22253 <row>
22254 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
22255 \begin_inset Text
22256
22257 \begin_layout Plain Layout
22258 TeX-Modus
22259 \end_layout
22260
22261 \end_inset
22262 </cell>
22263 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
22264 \begin_inset Text
22265
22266 \begin_layout Plain Layout
22267
22268 \backslash
22269 officialeuro
22270 \end_layout
22271
22272 \end_inset
22273 </cell>
22274 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
22275 \begin_inset Text
22276
22277 \begin_layout Plain Layout
22278 \begin_inset ERT
22279 status collapsed
22280
22281 \begin_layout Plain Layout
22282
22283
22284 \backslash
22285 officialeuro
22286 \end_layout
22287
22288 \end_inset
22289
22290
22291 \end_layout
22292
22293 \end_inset
22294 </cell>
22295 </row>
22296 </lyxtabular>
22297
22298 \end_inset
22299
22300
22301 \end_layout
22302
22303 \begin_layout Standard
22304 \begin_inset ERT
22305 status collapsed
22306
22307 \begin_layout Plain Layout
22308
22309
22310 \backslash
22311 else 
22312 \end_layout
22313
22314 \end_inset
22315
22316
22317 \begin_inset Note Note
22318 status open
22319
22320 \begin_layout Plain Layout
22321 Folgendes erscheint im Ausdruck wenn das LaTeX-Paket 
22322 \series bold
22323 eurosym
22324 \series default
22325  nicht installiert ist:
22326 \end_layout
22327
22328 \end_inset
22329
22330
22331 \end_layout
22332
22333 \begin_layout Standard
22334 Das LaTeX-Paket 
22335 \series bold
22336 eurosym 
22337 \series default
22338 muss installiert sein, um den Rest dieses Abschnitts im Ausdruck zu sehen.
22339 \end_layout
22340
22341 \begin_layout Standard
22342 \begin_inset ERT
22343 status collapsed
22344
22345 \begin_layout Plain Layout
22346
22347
22348 \backslash
22349 fi 
22350 \end_layout
22351
22352 \end_inset
22353
22354
22355 \end_layout
22356
22357 \begin_layout Section
22358 Relationen
22359 \begin_inset CommandInset label
22360 LatexCommand label
22361 name "sec:Relationen"
22362
22363 \end_inset
22364
22365
22366 \begin_inset Index
22367 status collapsed
22368
22369 \begin_layout Plain Layout
22370 Relationen
22371 \end_layout
22372
22373 \end_inset
22374
22375
22376 \begin_inset Index
22377 status collapsed
22378
22379 \begin_layout Plain Layout
22380 Vergleiche|see
22381 \begin_inset ERT
22382 status collapsed
22383
22384 \begin_layout Plain Layout
22385
22386 {
22387 \end_layout
22388
22389 \end_inset
22390
22391 Relationen
22392 \begin_inset ERT
22393 status collapsed
22394
22395 \begin_layout Plain Layout
22396
22397 }
22398 \end_layout
22399
22400 \end_inset
22401
22402
22403 \end_layout
22404
22405 \end_inset
22406
22407
22408 \end_layout
22409
22410 \begin_layout Standard
22411 Alle griechischen Buchstaben können auch über den Mathe-Werkzeugleistenknopf
22412  
22413 \begin_inset Graphics
22414         filename ../../images/math/leq.png
22415         scale 85
22416
22417 \end_inset
22418
22419  eingefügt werden.
22420 \end_layout
22421
22422 \begin_layout Standard
22423 \begin_inset space \hfill{}
22424 \end_inset
22425
22426
22427 \begin_inset Tabular
22428 <lyxtabular version="3" rows="17" columns="2">
22429 <features>
22430 <column alignment="center" valignment="top" width="0pt">
22431 <column alignment="center" valignment="top" width="0pt">
22432 <row>
22433 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
22434 \begin_inset Text
22435
22436 \begin_layout Plain Layout
22437 Befehl
22438 \end_layout
22439
22440 \end_inset
22441 </cell>
22442 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
22443 \begin_inset Text
22444
22445 \begin_layout Plain Layout
22446 Ergebnis
22447 \end_layout
22448
22449 \end_inset
22450 </cell>
22451 </row>
22452 <row>
22453 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22454 \begin_inset Text
22455
22456 \begin_layout Plain Layout
22457 <
22458 \end_layout
22459
22460 \end_inset
22461 </cell>
22462 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22463 \begin_inset Text
22464
22465 \begin_layout Plain Layout
22466 \begin_inset Formula $<$
22467 \end_inset
22468
22469
22470 \end_layout
22471
22472 \end_inset
22473 </cell>
22474 </row>
22475 <row>
22476 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22477 \begin_inset Text
22478
22479 \begin_layout Plain Layout
22480
22481 \backslash
22482 le
22483 \end_layout
22484
22485 \end_inset
22486 </cell>
22487 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22488 \begin_inset Text
22489
22490 \begin_layout Plain Layout
22491 \begin_inset Formula $\le$
22492 \end_inset
22493
22494
22495 \end_layout
22496
22497 \end_inset
22498 </cell>
22499 </row>
22500 <row>
22501 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22502 \begin_inset Text
22503
22504 \begin_layout Plain Layout
22505
22506 \backslash
22507 ll
22508 \end_layout
22509
22510 \end_inset
22511 </cell>
22512 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22513 \begin_inset Text
22514
22515 \begin_layout Plain Layout
22516 \begin_inset Formula $\ll$
22517 \end_inset
22518
22519
22520 \end_layout
22521
22522 \end_inset
22523 </cell>
22524 </row>
22525 <row>
22526 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22527 \begin_inset Text
22528
22529 \begin_layout Plain Layout
22530
22531 \backslash
22532 prec
22533 \end_layout
22534
22535 \end_inset
22536 </cell>
22537 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22538 \begin_inset Text
22539
22540 \begin_layout Plain Layout
22541 \begin_inset Formula $\prec$
22542 \end_inset
22543
22544
22545 \end_layout
22546
22547 \end_inset
22548 </cell>
22549 </row>
22550 <row>
22551 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22552 \begin_inset Text
22553
22554 \begin_layout Plain Layout
22555
22556 \backslash
22557 preceq
22558 \end_layout
22559
22560 \end_inset
22561 </cell>
22562 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22563 \begin_inset Text
22564
22565 \begin_layout Plain Layout
22566 \begin_inset Formula $\preceq$
22567 \end_inset
22568
22569
22570 \end_layout
22571
22572 \end_inset
22573 </cell>
22574 </row>
22575 <row>
22576 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22577 \begin_inset Text
22578
22579 \begin_layout Plain Layout
22580
22581 \backslash
22582 subset
22583 \end_layout
22584
22585 \end_inset
22586 </cell>
22587 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22588 \begin_inset Text
22589
22590 \begin_layout Plain Layout
22591 \begin_inset Formula $\subset$
22592 \end_inset
22593
22594
22595 \end_layout
22596
22597 \end_inset
22598 </cell>
22599 </row>
22600 <row>
22601 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22602 \begin_inset Text
22603
22604 \begin_layout Plain Layout
22605
22606 \backslash
22607 subseteq
22608 \end_layout
22609
22610 \end_inset
22611 </cell>
22612 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22613 \begin_inset Text
22614
22615 \begin_layout Plain Layout
22616 \begin_inset Formula $\subseteq$
22617 \end_inset
22618
22619
22620 \end_layout
22621
22622 \end_inset
22623 </cell>
22624 </row>
22625 <row>
22626 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22627 \begin_inset Text
22628
22629 \begin_layout Plain Layout
22630
22631 \backslash
22632 sqsubseteq
22633 \end_layout
22634
22635 \end_inset
22636 </cell>
22637 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22638 \begin_inset Text
22639
22640 \begin_layout Plain Layout
22641 \begin_inset Formula $\sqsubseteq$
22642 \end_inset
22643
22644
22645 \end_layout
22646
22647 \end_inset
22648 </cell>
22649 </row>
22650 <row>
22651 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22652 \begin_inset Text
22653
22654 \begin_layout Plain Layout
22655
22656 \backslash
22657 in
22658 \end_layout
22659
22660 \end_inset
22661 </cell>
22662 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22663 \begin_inset Text
22664
22665 \begin_layout Plain Layout
22666 \begin_inset Formula $\in$
22667 \end_inset
22668
22669
22670 \end_layout
22671
22672 \end_inset
22673 </cell>
22674 </row>
22675 <row>
22676 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22677 \begin_inset Text
22678
22679 \begin_layout Plain Layout
22680
22681 \backslash
22682 vdash
22683 \end_layout
22684
22685 \end_inset
22686 </cell>
22687 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22688 \begin_inset Text
22689
22690 \begin_layout Plain Layout
22691 \begin_inset Formula $\vdash$
22692 \end_inset
22693
22694
22695 \end_layout
22696
22697 \end_inset
22698 </cell>
22699 </row>
22700 <row>
22701 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22702 \begin_inset Text
22703
22704 \begin_layout Plain Layout
22705
22706 \backslash
22707 smile
22708 \end_layout
22709
22710 \end_inset
22711 </cell>
22712 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22713 \begin_inset Text
22714
22715 \begin_layout Plain Layout
22716 \begin_inset Formula $\smile$
22717 \end_inset
22718
22719
22720 \end_layout
22721
22722 \end_inset
22723 </cell>
22724 </row>
22725 <row>
22726 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22727 \begin_inset Text
22728
22729 \begin_layout Plain Layout
22730
22731 \backslash
22732 lhd
22733 \end_layout
22734
22735 \end_inset
22736 </cell>
22737 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22738 \begin_inset Text
22739
22740 \begin_layout Plain Layout
22741 \begin_inset Formula $\lhd$
22742 \end_inset
22743
22744
22745 \end_layout
22746
22747 \end_inset
22748 </cell>
22749 </row>
22750 <row>
22751 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22752 \begin_inset Text
22753
22754 \begin_layout Plain Layout
22755
22756 \backslash
22757 unlhd
22758 \end_layout
22759
22760 \end_inset
22761 </cell>
22762 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22763 \begin_inset Text
22764
22765 \begin_layout Plain Layout
22766 \begin_inset Formula $\unlhd$
22767 \end_inset
22768
22769
22770 \end_layout
22771
22772 \end_inset
22773 </cell>
22774 </row>
22775 <row>
22776 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22777 \begin_inset Text
22778
22779 \begin_layout Plain Layout
22780
22781 \backslash
22782 gtrless
22783 \end_layout
22784
22785 \end_inset
22786 </cell>
22787 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22788 \begin_inset Text
22789
22790 \begin_layout Plain Layout
22791 \begin_inset Formula $\gtrless$
22792 \end_inset
22793
22794
22795 \end_layout
22796
22797 \end_inset
22798 </cell>
22799 </row>
22800 <row>
22801 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22802 \begin_inset Text
22803
22804 \begin_layout Plain Layout
22805
22806 \backslash
22807 mid
22808 \end_layout
22809
22810 \end_inset
22811 </cell>
22812 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22813 \begin_inset Text
22814
22815 \begin_layout Plain Layout
22816 \begin_inset Formula $\mid$
22817 \end_inset
22818
22819
22820 \end_layout
22821
22822 \end_inset
22823 </cell>
22824 </row>
22825 <row>
22826 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
22827 \begin_inset Text
22828
22829 \begin_layout Plain Layout
22830
22831 \backslash
22832 nmid
22833 \end_layout
22834
22835 \end_inset
22836 </cell>
22837 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
22838 \begin_inset Text
22839
22840 \begin_layout Plain Layout
22841 \begin_inset Formula $\nmid$
22842 \end_inset
22843
22844
22845 \end_layout
22846
22847 \end_inset
22848 </cell>
22849 </row>
22850 </lyxtabular>
22851
22852 \end_inset
22853
22854
22855 \begin_inset space \hfill{}
22856 \end_inset
22857
22858
22859 \begin_inset Tabular
22860 <lyxtabular version="3" rows="17" columns="2">
22861 <features>
22862 <column alignment="center" valignment="top" width="0pt">
22863 <column alignment="center" valignment="top" width="0pt">
22864 <row>
22865 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
22866 \begin_inset Text
22867
22868 \begin_layout Plain Layout
22869 Befehl
22870 \end_layout
22871
22872 \end_inset
22873 </cell>
22874 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
22875 \begin_inset Text
22876
22877 \begin_layout Plain Layout
22878 Ergebnis
22879 \end_layout
22880
22881 \end_inset
22882 </cell>
22883 </row>
22884 <row>
22885 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22886 \begin_inset Text
22887
22888 \begin_layout Plain Layout
22889 =
22890 \end_layout
22891
22892 \end_inset
22893 </cell>
22894 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22895 \begin_inset Text
22896
22897 \begin_layout Plain Layout
22898 \begin_inset Formula $=$
22899 \end_inset
22900
22901
22902 \end_layout
22903
22904 \end_inset
22905 </cell>
22906 </row>
22907 <row>
22908 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22909 \begin_inset Text
22910
22911 \begin_layout Plain Layout
22912
22913 \backslash
22914 not=
22915 \end_layout
22916
22917 \end_inset
22918 </cell>
22919 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22920 \begin_inset Text
22921
22922 \begin_layout Plain Layout
22923 \begin_inset Formula $\not=$
22924 \end_inset
22925
22926
22927 \end_layout
22928
22929 \end_inset
22930 </cell>
22931 </row>
22932 <row>
22933 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22934 \begin_inset Text
22935
22936 \begin_layout Plain Layout
22937
22938 \backslash
22939 equiv
22940 \end_layout
22941
22942 \end_inset
22943 </cell>
22944 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22945 \begin_inset Text
22946
22947 \begin_layout Plain Layout
22948 \begin_inset Formula $\equiv$
22949 \end_inset
22950
22951
22952 \end_layout
22953
22954 \end_inset
22955 </cell>
22956 </row>
22957 <row>
22958 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22959 \begin_inset Text
22960
22961 \begin_layout Plain Layout
22962
22963 \backslash
22964 sim
22965 \end_layout
22966
22967 \end_inset
22968 </cell>
22969 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22970 \begin_inset Text
22971
22972 \begin_layout Plain Layout
22973 \begin_inset Formula $\sim$
22974 \end_inset
22975
22976
22977 \end_layout
22978
22979 \end_inset
22980 </cell>
22981 </row>
22982 <row>
22983 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22984 \begin_inset Text
22985
22986 \begin_layout Plain Layout
22987
22988 \backslash
22989 simeq
22990 \end_layout
22991
22992 \end_inset
22993 </cell>
22994 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22995 \begin_inset Text
22996
22997 \begin_layout Plain Layout
22998 \begin_inset Formula $\simeq$
22999 \end_inset
23000
23001
23002 \end_layout
23003
23004 \end_inset
23005 </cell>
23006 </row>
23007 <row>
23008 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23009 \begin_inset Text
23010
23011 \begin_layout Plain Layout
23012
23013 \backslash
23014 approx
23015 \end_layout
23016
23017 \end_inset
23018 </cell>
23019 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23020 \begin_inset Text
23021
23022 \begin_layout Plain Layout
23023 \begin_inset Formula $\approx$
23024 \end_inset
23025
23026
23027 \end_layout
23028
23029 \end_inset
23030 </cell>
23031 </row>
23032 <row>
23033 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23034 \begin_inset Text
23035
23036 \begin_layout Plain Layout
23037
23038 \backslash
23039 cong
23040 \end_layout
23041
23042 \end_inset
23043 </cell>
23044 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23045 \begin_inset Text
23046
23047 \begin_layout Plain Layout
23048 \begin_inset Formula $\cong$
23049 \end_inset
23050
23051
23052 \end_layout
23053
23054 \end_inset
23055 </cell>
23056 </row>
23057 <row>
23058 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23059 \begin_inset Text
23060
23061 \begin_layout Plain Layout
23062
23063 \backslash
23064 bowtie
23065 \end_layout
23066
23067 \end_inset
23068 </cell>
23069 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23070 \begin_inset Text
23071
23072 \begin_layout Plain Layout
23073 \begin_inset Formula $\bowtie$
23074 \end_inset
23075
23076
23077 \end_layout
23078
23079 \end_inset
23080 </cell>
23081 </row>
23082 <row>
23083 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23084 \begin_inset Text
23085
23086 \begin_layout Plain Layout
23087
23088 \backslash
23089 notin
23090 \end_layout
23091
23092 \end_inset
23093 </cell>
23094 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23095 \begin_inset Text
23096
23097 \begin_layout Plain Layout
23098 \begin_inset Formula $\notin$
23099 \end_inset
23100
23101
23102 \end_layout
23103
23104 \end_inset
23105 </cell>
23106 </row>
23107 <row>
23108 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23109 \begin_inset Text
23110
23111 \begin_layout Plain Layout
23112
23113 \backslash
23114 perp
23115 \end_layout
23116
23117 \end_inset
23118 </cell>
23119 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23120 \begin_inset Text
23121
23122 \begin_layout Plain Layout
23123 \begin_inset Formula $\perp$
23124 \end_inset
23125
23126
23127 \end_layout
23128
23129 \end_inset
23130 </cell>
23131 </row>
23132 <row>
23133 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23134 \begin_inset Text
23135
23136 \begin_layout Plain Layout
23137
23138 \backslash
23139 propto
23140 \end_layout
23141
23142 \end_inset
23143 </cell>
23144 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23145 \begin_inset Text
23146
23147 \begin_layout Plain Layout
23148 \begin_inset Formula $\propto$
23149 \end_inset
23150
23151
23152 \end_layout
23153
23154 \end_inset
23155 </cell>
23156 </row>
23157 <row>
23158 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23159 \begin_inset Text
23160
23161 \begin_layout Plain Layout
23162
23163 \backslash
23164 asymp
23165 \end_layout
23166
23167 \end_inset
23168 </cell>
23169 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23170 \begin_inset Text
23171
23172 \begin_layout Plain Layout
23173 \begin_inset Formula $\asymp$
23174 \end_inset
23175
23176
23177 \end_layout
23178
23179 \end_inset
23180 </cell>
23181 </row>
23182 <row>
23183 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23184 \begin_inset Text
23185
23186 \begin_layout Plain Layout
23187
23188 \backslash
23189 doteq
23190 \end_layout
23191
23192 \end_inset
23193 </cell>
23194 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23195 \begin_inset Text
23196
23197 \begin_layout Plain Layout
23198 \begin_inset Formula $\doteq$
23199 \end_inset
23200
23201
23202 \end_layout
23203
23204 \end_inset
23205 </cell>
23206 </row>
23207 <row>
23208 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23209 \begin_inset Text
23210
23211 \begin_layout Plain Layout
23212
23213 \backslash
23214 circeq
23215 \end_layout
23216
23217 \end_inset
23218 </cell>
23219 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23220 \begin_inset Text
23221
23222 \begin_layout Plain Layout
23223 \begin_inset Formula $\circeq$
23224 \end_inset
23225
23226
23227 \end_layout
23228
23229 \end_inset
23230 </cell>
23231 </row>
23232 <row>
23233 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23234 \begin_inset Text
23235
23236 \begin_layout Plain Layout
23237
23238 \backslash
23239 models
23240 \end_layout
23241
23242 \end_inset
23243 </cell>
23244 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23245 \begin_inset Text
23246
23247 \begin_layout Plain Layout
23248 \begin_inset Formula $\models$
23249 \end_inset
23250
23251
23252 \end_layout
23253
23254 \end_inset
23255 </cell>
23256 </row>
23257 <row>
23258 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
23259 \begin_inset Text
23260
23261 \begin_layout Plain Layout
23262
23263 \backslash
23264 widehat=
23265 \end_layout
23266
23267 \end_inset
23268 </cell>
23269 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
23270 \begin_inset Text
23271
23272 \begin_layout Plain Layout
23273 \begin_inset Formula $\widehat{=}$
23274 \end_inset
23275
23276
23277 \end_layout
23278
23279 \end_inset
23280 </cell>
23281 </row>
23282 </lyxtabular>
23283
23284 \end_inset
23285
23286
23287 \begin_inset space \hfill{}
23288 \end_inset
23289
23290
23291 \begin_inset Tabular
23292 <lyxtabular version="3" rows="17" columns="2">
23293 <features>
23294 <column alignment="center" valignment="top" width="0pt">
23295 <column alignment="center" valignment="top" width="0pt">
23296 <row>
23297 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
23298 \begin_inset Text
23299
23300 \begin_layout Plain Layout
23301 Befehl
23302 \end_layout
23303
23304 \end_inset
23305 </cell>
23306 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
23307 \begin_inset Text
23308
23309 \begin_layout Plain Layout
23310 Ergebnis
23311 \end_layout
23312
23313 \end_inset
23314 </cell>
23315 </row>
23316 <row>
23317 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23318 \begin_inset Text
23319
23320 \begin_layout Plain Layout
23321 >
23322 \end_layout
23323
23324 \end_inset
23325 </cell>
23326 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23327 \begin_inset Text
23328
23329 \begin_layout Plain Layout
23330 \begin_inset Formula $>$
23331 \end_inset
23332
23333
23334 \end_layout
23335
23336 \end_inset
23337 </cell>
23338 </row>
23339 <row>
23340 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23341 \begin_inset Text
23342
23343 \begin_layout Plain Layout
23344
23345 \backslash
23346 ge
23347 \end_layout
23348
23349 \end_inset
23350 </cell>
23351 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23352 \begin_inset Text
23353
23354 \begin_layout Plain Layout
23355 \begin_inset Formula $\ge$
23356 \end_inset
23357
23358
23359 \end_layout
23360
23361 \end_inset
23362 </cell>
23363 </row>
23364 <row>
23365 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23366 \begin_inset Text
23367
23368 \begin_layout Plain Layout
23369
23370 \backslash
23371 gg
23372 \end_layout
23373
23374 \end_inset
23375 </cell>
23376 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23377 \begin_inset Text
23378
23379 \begin_layout Plain Layout
23380 \begin_inset Formula $\gg$
23381 \end_inset
23382
23383
23384 \end_layout
23385
23386 \end_inset
23387 </cell>
23388 </row>
23389 <row>
23390 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23391 \begin_inset Text
23392
23393 \begin_layout Plain Layout
23394
23395 \backslash
23396 succ
23397 \end_layout
23398
23399 \end_inset
23400 </cell>
23401 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23402 \begin_inset Text
23403
23404 \begin_layout Plain Layout
23405 \begin_inset Formula $\succ$
23406 \end_inset
23407
23408
23409 \end_layout
23410
23411 \end_inset
23412 </cell>
23413 </row>
23414 <row>
23415 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23416 \begin_inset Text
23417
23418 \begin_layout Plain Layout
23419
23420 \backslash
23421 succeq
23422 \end_layout
23423
23424 \end_inset
23425 </cell>
23426 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23427 \begin_inset Text
23428
23429 \begin_layout Plain Layout
23430 \begin_inset Formula $\succeq$
23431 \end_inset
23432
23433
23434 \end_layout
23435
23436 \end_inset
23437 </cell>
23438 </row>
23439 <row>
23440 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23441 \begin_inset Text
23442
23443 \begin_layout Plain Layout
23444
23445 \backslash
23446 supset
23447 \end_layout
23448
23449 \end_inset
23450 </cell>
23451 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23452 \begin_inset Text
23453
23454 \begin_layout Plain Layout
23455 \begin_inset Formula $\supset$
23456 \end_inset
23457
23458
23459 \end_layout
23460
23461 \end_inset
23462 </cell>
23463 </row>
23464 <row>
23465 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23466 \begin_inset Text
23467
23468 \begin_layout Plain Layout
23469
23470 \backslash
23471 supseteq
23472 \end_layout
23473
23474 \end_inset
23475 </cell>
23476 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23477 \begin_inset Text
23478
23479 \begin_layout Plain Layout
23480 \begin_inset Formula $\supseteq$
23481 \end_inset
23482
23483
23484 \end_layout
23485
23486 \end_inset
23487 </cell>
23488 </row>
23489 <row>
23490 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23491 \begin_inset Text
23492
23493 \begin_layout Plain Layout
23494
23495 \backslash
23496 sqsupseteq
23497 \end_layout
23498
23499 \end_inset
23500 </cell>
23501 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23502 \begin_inset Text
23503
23504 \begin_layout Plain Layout
23505 \begin_inset Formula $\sqsupseteq$
23506 \end_inset
23507
23508
23509 \end_layout
23510
23511 \end_inset
23512 </cell>
23513 </row>
23514 <row>
23515 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23516 \begin_inset Text
23517
23518 \begin_layout Plain Layout
23519
23520 \backslash
23521 ni
23522 \end_layout
23523
23524 \end_inset
23525 </cell>
23526 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23527 \begin_inset Text
23528
23529 \begin_layout Plain Layout
23530 \begin_inset Formula $\ni$
23531 \end_inset
23532
23533
23534 \end_layout
23535
23536 \end_inset
23537 </cell>
23538 </row>
23539 <row>
23540 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23541 \begin_inset Text
23542
23543 \begin_layout Plain Layout
23544
23545 \backslash
23546 dashv
23547 \end_layout
23548
23549 \end_inset
23550 </cell>
23551 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23552 \begin_inset Text
23553
23554 \begin_layout Plain Layout
23555 \begin_inset Formula $\dashv$
23556 \end_inset
23557
23558
23559 \end_layout
23560
23561 \end_inset
23562 </cell>
23563 </row>
23564 <row>
23565 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23566 \begin_inset Text
23567
23568 \begin_layout Plain Layout
23569
23570 \backslash
23571 frown
23572 \end_layout
23573
23574 \end_inset
23575 </cell>
23576 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23577 \begin_inset Text
23578
23579 \begin_layout Plain Layout
23580 \begin_inset Formula $\frown$
23581 \end_inset
23582
23583
23584 \end_layout
23585
23586 \end_inset
23587 </cell>
23588 </row>
23589 <row>
23590 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23591 \begin_inset Text
23592
23593 \begin_layout Plain Layout
23594
23595 \backslash
23596 rhd
23597 \end_layout
23598
23599 \end_inset
23600 </cell>
23601 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23602 \begin_inset Text
23603
23604 \begin_layout Plain Layout
23605 \begin_inset Formula $\rhd$
23606 \end_inset
23607
23608
23609 \end_layout
23610
23611 \end_inset
23612 </cell>
23613 </row>
23614 <row>
23615 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23616 \begin_inset Text
23617
23618 \begin_layout Plain Layout
23619
23620 \backslash
23621 unrhd
23622 \end_layout
23623
23624 \end_inset
23625 </cell>
23626 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23627 \begin_inset Text
23628
23629 \begin_layout Plain Layout
23630 \begin_inset Formula $\unrhd$
23631 \end_inset
23632
23633
23634 \end_layout
23635
23636 \end_inset
23637 </cell>
23638 </row>
23639 <row>
23640 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23641 \begin_inset Text
23642
23643 \begin_layout Plain Layout
23644
23645 \backslash
23646 lessgtr
23647 \end_layout
23648
23649 \end_inset
23650 </cell>
23651 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23652 \begin_inset Text
23653
23654 \begin_layout Plain Layout
23655 \begin_inset Formula $\lessgtr$
23656 \end_inset
23657
23658
23659 \end_layout
23660
23661 \end_inset
23662 </cell>
23663 </row>
23664 <row>
23665 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23666 \begin_inset Text
23667
23668 \begin_layout Plain Layout
23669
23670 \backslash
23671 parallel
23672 \end_layout
23673
23674 \end_inset
23675 </cell>
23676 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23677 \begin_inset Text
23678
23679 \begin_layout Plain Layout
23680 \begin_inset Formula $\parallel$
23681 \end_inset
23682
23683
23684 \end_layout
23685
23686 \end_inset
23687 </cell>
23688 </row>
23689 <row>
23690 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
23691 \begin_inset Text
23692
23693 \begin_layout Plain Layout
23694
23695 \backslash
23696 nparallel
23697 \end_layout
23698
23699 \end_inset
23700 </cell>
23701 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
23702 \begin_inset Text
23703
23704 \begin_layout Plain Layout
23705 \begin_inset Formula $\nparallel$
23706 \end_inset
23707
23708
23709 \end_layout
23710
23711 \end_inset
23712 </cell>
23713 </row>
23714 </lyxtabular>
23715
23716 \end_inset
23717
23718
23719 \begin_inset space \hfill{}
23720 \end_inset
23721
23722
23723 \end_layout
23724
23725 \begin_layout Standard
23726 \begin_inset VSpace medskip
23727 \end_inset
23728
23729 Die Zeichen 
23730 \series bold
23731
23732 \backslash
23733 lhd
23734 \series default
23735  bzw.
23736  
23737 \series bold
23738
23739 \backslash
23740 rhd
23741 \series default
23742  sind größer als die gleich aussehenden Operatoren
23743 \begin_inset Newline linebreak
23744 \end_inset
23745
23746
23747 \series bold
23748
23749 \backslash
23750 triangleleft
23751 \series default
23752  bzw.
23753  
23754 \series bold
23755
23756 \backslash
23757 triangleright
23758 \series default
23759 .
23760 \end_layout
23761
23762 \begin_layout Standard
23763 Relationen sind im Gegensatz zu Symbolen immer von Leerraum umgeben.
23764 \end_layout
23765
23766 \begin_layout Standard
23767 Relationen mit Beschriftungen können mit Hilfe des Befehls 
23768 \series bold
23769
23770 \backslash
23771 stackrel
23772 \series default
23773
23774 \begin_inset Index
23775 status collapsed
23776
23777 \begin_layout Plain Layout
23778 Befehle ! S ! 
23779 \backslash
23780 stackrel
23781 \end_layout
23782
23783 \end_inset
23784
23785  erstellt werden:
23786 \end_layout
23787
23788 \begin_layout Standard
23789 \align center
23790 \begin_inset Tabular
23791 <lyxtabular version="3" rows="2" columns="2">
23792 <features>
23793 <column alignment="center" valignment="top" width="0">
23794 <column alignment="center" valignment="top" width="0">
23795 <row>
23796 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
23797 \begin_inset Text
23798
23799 \begin_layout Plain Layout
23800 Befehl
23801 \end_layout
23802
23803 \end_inset
23804 </cell>
23805 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
23806 \begin_inset Text
23807
23808 \begin_layout Plain Layout
23809 Ergebnis
23810 \begin_inset Note Note
23811 status collapsed
23812
23813 \begin_layout Plain Layout
23814
23815 \series bold
23816
23817 \backslash
23818 raisebox
23819 \series default
23820  dient nur als Abstandhalter.
23821 \end_layout
23822
23823 \end_inset
23824
23825
23826 \end_layout
23827
23828 \end_inset
23829 </cell>
23830 </row>
23831 <row>
23832 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
23833 \begin_inset Text
23834
23835 \begin_layout Plain Layout
23836 A(r)
23837 \backslash
23838 stackrel
23839 \begin_inset ERT
23840 status collapsed
23841
23842 \begin_layout Plain Layout
23843
23844
23845 \backslash
23846 leer 
23847 \end_layout
23848
23849 \end_inset
23850
23851 r
23852 \backslash
23853 to
23854 \backslash
23855 infty
23856 \begin_inset ERT
23857 status collapsed
23858
23859 \begin_layout Plain Layout
23860
23861
23862 \backslash
23863 leer 
23864 \end_layout
23865
23866 \end_inset
23867
23868
23869 \begin_inset Formula $\downarrow$
23870 \end_inset
23871
23872
23873 \backslash
23874 approx
23875 \begin_inset ERT
23876 status collapsed
23877
23878 \begin_layout Plain Layout
23879
23880
23881 \backslash
23882 leer 
23883 \end_layout
23884
23885 \end_inset
23886
23887
23888 \begin_inset ERT
23889 status collapsed
23890
23891 \begin_layout Plain Layout
23892
23893
23894 \backslash
23895 leer 
23896 \end_layout
23897
23898 \end_inset
23899
23900 B
23901 \end_layout
23902
23903 \end_inset
23904 </cell>
23905 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
23906 \begin_inset Text
23907
23908 \begin_layout Plain Layout
23909 \begin_inset Formula $\raisebox{5mm}{}A(r)\stackrel{r\to\infty}{\approx}B$
23910 \end_inset
23911
23912
23913 \end_layout
23914
23915 \end_inset
23916 </cell>
23917 </row>
23918 </lyxtabular>
23919
23920 \end_inset
23921
23922
23923 \end_layout
23924
23925 \begin_layout Standard
23926 \begin_inset Newpage newpage
23927 \end_inset
23928
23929
23930 \end_layout
23931
23932 \begin_layout Section
23933 Funktionen
23934 \end_layout
23935
23936 \begin_layout Subsection
23937 Vordefinierte Funktionen
23938 \begin_inset CommandInset label
23939 LatexCommand label
23940 name "sub:Vordefinierte-Funktionen"
23941
23942 \end_inset
23943
23944
23945 \begin_inset Index
23946 status collapsed
23947
23948 \begin_layout Plain Layout
23949 Funktionen ! vordefinierte
23950 \end_layout
23951
23952 \end_inset
23953
23954
23955 \end_layout
23956
23957 \begin_layout Standard
23958 Allgemein werden in mathematischen Ausdrücken Variablen 
23959 \shape italic
23960 kursiv
23961 \shape default
23962  gesetzt, Funktionsnamen hingegen nicht, denn 
23963 \begin_inset Formula $sin$
23964 \end_inset
23965
23966  könnte als 
23967 \begin_inset Formula $s\cdot i\cdot n$
23968 \end_inset
23969
23970  missverstanden werden.
23971  Aus diesem Grund gibt es vordefinierte Funktionen, die zusätzlich von Vorfaktor
23972 en etwas abgesetzt sind.
23973  Sie werden als Befehle mit einem Backslash vor dem Funktionsnamen eingefügt.
23974 \end_layout
23975
23976 \begin_layout Standard
23977 \align center
23978 \begin_inset Tabular
23979 <lyxtabular version="3" rows="2" columns="4">
23980 <features>
23981 <column alignment="center" valignment="top" width="0pt">
23982 <column alignment="center" valignment="top" width="0pt">
23983 <column alignment="center" valignment="top" width="0pt">
23984 <column alignment="center" valignment="top" width="0pt">
23985 <row>
23986 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
23987 \begin_inset Text
23988
23989 \begin_layout Plain Layout
23990 Befehl
23991 \end_layout
23992
23993 \end_inset
23994 </cell>
23995 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
23996 \begin_inset Text
23997
23998 \begin_layout Plain Layout
23999 Ergebnis
24000 \end_layout
24001
24002 \end_inset
24003 </cell>
24004 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24005 \begin_inset Text
24006
24007 \begin_layout Plain Layout
24008 Befehl
24009 \end_layout
24010
24011 \end_inset
24012 </cell>
24013 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
24014 \begin_inset Text
24015
24016 \begin_layout Plain Layout
24017 Ergebnis
24018 \end_layout
24019
24020 \end_inset
24021 </cell>
24022 </row>
24023 <row>
24024 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24025 \begin_inset Text
24026
24027 \begin_layout Plain Layout
24028 Asin(x)+B
24029 \end_layout
24030
24031 \end_inset
24032 </cell>
24033 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
24034 \begin_inset Text
24035
24036 \begin_layout Plain Layout
24037 \begin_inset Formula $Asin(x)+B$
24038 \end_inset
24039
24040
24041 \end_layout
24042
24043 \end_inset
24044 </cell>
24045 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24046 \begin_inset Text
24047
24048 \begin_layout Plain Layout
24049 A
24050 \backslash
24051 sin(x)+B
24052 \end_layout
24053
24054 \end_inset
24055 </cell>
24056 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
24057 \begin_inset Text
24058
24059 \begin_layout Plain Layout
24060 \begin_inset Formula $A\sin(x)+B$
24061 \end_inset
24062
24063
24064 \end_layout
24065
24066 \end_inset
24067 </cell>
24068 </row>
24069 </lyxtabular>
24070
24071 \end_inset
24072
24073
24074 \end_layout
24075
24076 \begin_layout Standard
24077 Folgende Funktionen sind vordefiniert:
24078 \end_layout
24079
24080 \begin_layout Standard
24081 \begin_inset VSpace -2mm
24082 \end_inset
24083
24084
24085 \end_layout
24086
24087 \begin_layout Standard
24088 \align center
24089 \begin_inset Tabular
24090 <lyxtabular version="3" rows="9" columns="4">
24091 <features>
24092 <column alignment="center" valignment="top" width="0pt">
24093 <column alignment="center" valignment="top" width="0pt">
24094 <column alignment="center" valignment="top" width="0pt">
24095 <column alignment="center" valignment="top" width="0pt">
24096 <row>
24097 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24098 \begin_inset Text
24099
24100 \begin_layout Plain Layout
24101 Befehl
24102 \end_layout
24103
24104 \end_inset
24105 </cell>
24106 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24107 \begin_inset Text
24108
24109 \begin_layout Plain Layout
24110 Befehl
24111 \end_layout
24112
24113 \end_inset
24114 </cell>
24115 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24116 \begin_inset Text
24117
24118 \begin_layout Plain Layout
24119 Befehl
24120 \end_layout
24121
24122 \end_inset
24123 </cell>
24124 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
24125 \begin_inset Text
24126
24127 \begin_layout Plain Layout
24128 Befehl
24129 \end_layout
24130
24131 \end_inset
24132 </cell>
24133 </row>
24134 <row>
24135 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24136 \begin_inset Text
24137
24138 \begin_layout Plain Layout
24139
24140 \backslash
24141 sin
24142 \end_layout
24143
24144 \end_inset
24145 </cell>
24146 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24147 \begin_inset Text
24148
24149 \begin_layout Plain Layout
24150
24151 \backslash
24152 sinh
24153 \end_layout
24154
24155 \end_inset
24156 </cell>
24157 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24158 \begin_inset Text
24159
24160 \begin_layout Plain Layout
24161
24162 \backslash
24163 arcsin
24164 \end_layout
24165
24166 \end_inset
24167 </cell>
24168 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24169 \begin_inset Text
24170
24171 \begin_layout Plain Layout
24172
24173 \backslash
24174 sup
24175 \end_layout
24176
24177 \end_inset
24178 </cell>
24179 </row>
24180 <row>
24181 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24182 \begin_inset Text
24183
24184 \begin_layout Plain Layout
24185
24186 \backslash
24187 cos
24188 \end_layout
24189
24190 \end_inset
24191 </cell>
24192 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24193 \begin_inset Text
24194
24195 \begin_layout Plain Layout
24196
24197 \backslash
24198 cosh
24199 \end_layout
24200
24201 \end_inset
24202 </cell>
24203 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24204 \begin_inset Text
24205
24206 \begin_layout Plain Layout
24207
24208 \backslash
24209 arccos
24210 \end_layout
24211
24212 \end_inset
24213 </cell>
24214 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24215 \begin_inset Text
24216
24217 \begin_layout Plain Layout
24218
24219 \backslash
24220 inf
24221 \end_layout
24222
24223 \end_inset
24224 </cell>
24225 </row>
24226 <row>
24227 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24228 \begin_inset Text
24229
24230 \begin_layout Plain Layout
24231
24232 \backslash
24233 tan
24234 \end_layout
24235
24236 \end_inset
24237 </cell>
24238 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24239 \begin_inset Text
24240
24241 \begin_layout Plain Layout
24242
24243 \backslash
24244 tanh
24245 \end_layout
24246
24247 \end_inset
24248 </cell>
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 arctan
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
24265 \backslash
24266 lim
24267 \end_layout
24268
24269 \end_inset
24270 </cell>
24271 </row>
24272 <row>
24273 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24274 \begin_inset Text
24275
24276 \begin_layout Plain Layout
24277
24278 \backslash
24279 cot
24280 \end_layout
24281
24282 \end_inset
24283 </cell>
24284 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24285 \begin_inset Text
24286
24287 \begin_layout Plain Layout
24288
24289 \backslash
24290 coth
24291 \end_layout
24292
24293 \end_inset
24294 </cell>
24295 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24296 \begin_inset Text
24297
24298 \begin_layout Plain Layout
24299
24300 \backslash
24301 arg
24302 \end_layout
24303
24304 \end_inset
24305 </cell>
24306 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24307 \begin_inset Text
24308
24309 \begin_layout Plain Layout
24310
24311 \backslash
24312 liminf
24313 \end_layout
24314
24315 \end_inset
24316 </cell>
24317 </row>
24318 <row>
24319 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24320 \begin_inset Text
24321
24322 \begin_layout Plain Layout
24323
24324 \backslash
24325 sec
24326 \end_layout
24327
24328 \end_inset
24329 </cell>
24330 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24331 \begin_inset Text
24332
24333 \begin_layout Plain Layout
24334
24335 \backslash
24336 min
24337 \end_layout
24338
24339 \end_inset
24340 </cell>
24341 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24342 \begin_inset Text
24343
24344 \begin_layout Plain Layout
24345
24346 \backslash
24347 deg
24348 \end_layout
24349
24350 \end_inset
24351 </cell>
24352 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24353 \begin_inset Text
24354
24355 \begin_layout Plain Layout
24356
24357 \backslash
24358 limsup
24359 \end_layout
24360
24361 \end_inset
24362 </cell>
24363 </row>
24364 <row>
24365 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24366 \begin_inset Text
24367
24368 \begin_layout Plain Layout
24369
24370 \backslash
24371 csc
24372 \end_layout
24373
24374 \end_inset
24375 </cell>
24376 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24377 \begin_inset Text
24378
24379 \begin_layout Plain Layout
24380
24381 \backslash
24382 max
24383 \end_layout
24384
24385 \end_inset
24386 </cell>
24387 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24388 \begin_inset Text
24389
24390 \begin_layout Plain Layout
24391
24392 \backslash
24393 det
24394 \end_layout
24395
24396 \end_inset
24397 </cell>
24398 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24399 \begin_inset Text
24400
24401 \begin_layout Plain Layout
24402
24403 \backslash
24404 Pr
24405 \end_layout
24406
24407 \end_inset
24408 </cell>
24409 </row>
24410 <row>
24411 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24412 \begin_inset Text
24413
24414 \begin_layout Plain Layout
24415
24416 \backslash
24417 ln
24418 \end_layout
24419
24420 \end_inset
24421 </cell>
24422 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24423 \begin_inset Text
24424
24425 \begin_layout Plain Layout
24426
24427 \backslash
24428 exp
24429 \end_layout
24430
24431 \end_inset
24432 </cell>
24433 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24434 \begin_inset Text
24435
24436 \begin_layout Plain Layout
24437
24438 \backslash
24439 dim
24440 \end_layout
24441
24442 \end_inset
24443 </cell>
24444 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24445 \begin_inset Text
24446
24447 \begin_layout Plain Layout
24448
24449 \backslash
24450 hom
24451 \end_layout
24452
24453 \end_inset
24454 </cell>
24455 </row>
24456 <row>
24457 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24458 \begin_inset Text
24459
24460 \begin_layout Plain Layout
24461
24462 \backslash
24463 lg
24464 \end_layout
24465
24466 \end_inset
24467 </cell>
24468 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24469 \begin_inset Text
24470
24471 \begin_layout Plain Layout
24472
24473 \backslash
24474 log
24475 \end_layout
24476
24477 \end_inset
24478 </cell>
24479 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24480 \begin_inset Text
24481
24482 \begin_layout Plain Layout
24483
24484 \backslash
24485 ker
24486 \end_layout
24487
24488 \end_inset
24489 </cell>
24490 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
24491 \begin_inset Text
24492
24493 \begin_layout Plain Layout
24494
24495 \backslash
24496 gcd
24497 \end_layout
24498
24499 \end_inset
24500 </cell>
24501 </row>
24502 </lyxtabular>
24503
24504 \end_inset
24505
24506
24507 \end_layout
24508
24509 \begin_layout Standard
24510 Sie können auch über den Mathe-Werkzeugleistenknopf 
24511 \begin_inset Graphics
24512         filename ../../images/math/functions.png
24513         scale 85
24514
24515 \end_inset
24516
24517  eingefügt werden.
24518 \end_layout
24519
24520 \begin_layout Subsection
24521 Selbst definierte Funktionen
24522 \begin_inset Index
24523 status collapsed
24524
24525 \begin_layout Plain Layout
24526 Funktionen ! selbstdefinierte
24527 \end_layout
24528
24529 \end_inset
24530
24531
24532 \end_layout
24533
24534 \begin_layout Standard
24535 Will man eine Funktion verwenden, die nicht vordefiniert ist, wie z.
24536 \begin_inset space \thinspace{}
24537 \end_inset
24538
24539 B.
24540  die Signumfunktion sgn(x), hat man zwei Möglichkeiten:
24541 \end_layout
24542
24543 \begin_layout Itemize
24544 Man definiert die Funktion selbst.
24545  Dazu gibt man im LaTeX-Vorspann die Zeile
24546 \begin_inset Newline newline
24547 \end_inset
24548
24549
24550 \begin_inset VSpace -3mm
24551 \end_inset
24552
24553
24554 \begin_inset Newline newline
24555 \end_inset
24556
24557
24558 \series bold
24559
24560 \backslash
24561 DeclareMathOperator{
24562 \backslash
24563 sgn}{sgn}
24564 \series default
24565
24566 \begin_inset Index
24567 status collapsed
24568
24569 \begin_layout Plain Layout
24570 Befehle ! D ! 
24571 \backslash
24572 dbinom@
24573 \backslash
24574 DeclareMathOperator
24575 \end_layout
24576
24577 \end_inset
24578
24579
24580 \begin_inset Newline newline
24581 \end_inset
24582
24583
24584 \begin_inset VSpace -2mm
24585 \end_inset
24586
24587
24588 \begin_inset Newline newline
24589 \end_inset
24590
24591 ein
24592 \begin_inset Foot
24593 status collapsed
24594
24595 \begin_layout Plain Layout
24596 Näheres zu 
24597 \series bold
24598
24599 \backslash
24600 DeclareMathOperator
24601 \series default
24602  siehe 
24603 \begin_inset CommandInset ref
24604 LatexCommand ref
24605 reference "sub:Selbstdefinierte-Operatoren"
24606
24607 \end_inset
24608
24609 .
24610 \end_layout
24611
24612 \end_inset
24613
24614 .
24615  Nun kann man mit dem Befehl 
24616 \series bold
24617
24618 \backslash
24619 sgn
24620 \series default
24621  die neu definierte Funktion aufrufen.
24622 \end_layout
24623
24624 \begin_layout Itemize
24625 Man schreibt die Formel wie gewohnt, markiert den Formelnamen, also in unserem
24626  Beispiel die Buchstaben 
24627 \emph on
24628 sgn
24629 \emph default
24630 , und wandelt ihn in in mathematischen Text um.
24631  Zwischen Vorfaktor und Funktion fügt man einen kleinen Leerraum ein.
24632 \end_layout
24633
24634 \begin_layout Standard
24635 Das Ergebnis ist bei beiden Methoden dasselbe wie bei einer vordefinierten
24636  Funktion
24637 \begin_inset Foot
24638 status collapsed
24639
24640 \begin_layout Plain Layout
24641 Selbst definierte Funktionen werden in LyX rot, vordefinierte schwarz angezeigt.
24642 \end_layout
24643
24644 \end_inset
24645
24646 :
24647 \end_layout
24648
24649 \begin_layout Standard
24650 \align center
24651 \begin_inset Tabular
24652 <lyxtabular version="3" rows="3" columns="2">
24653 <features>
24654 <column alignment="center" valignment="top" width="0pt">
24655 <column alignment="center" valignment="top" width="0pt">
24656 <row>
24657 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24658 \begin_inset Text
24659
24660 \begin_layout Plain Layout
24661 Befehl
24662 \end_layout
24663
24664 \end_inset
24665 </cell>
24666 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
24667 \begin_inset Text
24668
24669 \begin_layout Plain Layout
24670 Ergebnis
24671 \end_layout
24672
24673 \end_inset
24674 </cell>
24675 </row>
24676 <row>
24677 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24678 \begin_inset Text
24679
24680 \begin_layout Plain Layout
24681 A
24682 \backslash
24683 sgn(x)+B
24684 \end_layout
24685
24686 \end_inset
24687 </cell>
24688 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
24689 \begin_inset Text
24690
24691 \begin_layout Plain Layout
24692 \begin_inset Formula $A\sgn(x)+B$
24693 \end_inset
24694
24695
24696 \end_layout
24697
24698 \end_inset
24699 </cell>
24700 </row>
24701 <row>
24702 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24703 \begin_inset Text
24704
24705 \begin_layout Plain Layout
24706 A
24707 \backslash
24708 ,
24709 \begin_inset Formula $\underbrace{\textrm{sgn}}_{\textrm{Alt-m}\,\textrm{m}}$
24710 \end_inset
24711
24712 (x)+B
24713 \end_layout
24714
24715 \end_inset
24716 </cell>
24717 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
24718 \begin_inset Text
24719
24720 \begin_layout Plain Layout
24721 \begin_inset Formula $A\,\textrm{sgn}(x)+B$
24722 \end_inset
24723
24724
24725 \end_layout
24726
24727 \end_inset
24728 </cell>
24729 </row>
24730 </lyxtabular>
24731
24732 \end_inset
24733
24734
24735 \end_layout
24736
24737 \begin_layout Standard
24738 Die erste Methode ist besser geeignet, wenn die selbst definierte Funktion
24739  mehrfach verwendet werden soll.
24740 \end_layout
24741
24742 \begin_layout Subsection
24743 Grenzwerte
24744 \begin_inset Index
24745 status collapsed
24746
24747 \begin_layout Plain Layout
24748 Grenzwerte
24749 \end_layout
24750
24751 \end_inset
24752
24753
24754 \end_layout
24755
24756 \begin_layout Standard
24757 Für Grenzwerte sind außer 
24758 \series bold
24759
24760 \backslash
24761 lim
24762 \series default
24763
24764 \begin_inset Index
24765 status collapsed
24766
24767 \begin_layout Plain Layout
24768 Befehle ! L ! 
24769 \backslash
24770 lim
24771 \end_layout
24772
24773 \end_inset
24774
24775
24776 \series bold
24777
24778 \backslash
24779 liminf
24780 \series default
24781  und 
24782 \series bold
24783
24784 \backslash
24785 limsup
24786 \series default
24787  noch folgende Funktionen definiert:
24788 \end_layout
24789
24790 \begin_layout Standard
24791 \align center
24792 \begin_inset Tabular
24793 <lyxtabular version="3" rows="5" columns="2">
24794 <features>
24795 <column alignment="center" valignment="top" width="0">
24796 <column alignment="center" valignment="top" width="0">
24797 <row>
24798 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24799 \begin_inset Text
24800
24801 \begin_layout Plain Layout
24802 Befehl
24803 \end_layout
24804
24805 \end_inset
24806 </cell>
24807 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
24808 \begin_inset Text
24809
24810 \begin_layout Plain Layout
24811 Ergebnis
24812 \begin_inset Note Note
24813 status collapsed
24814
24815 \begin_layout Plain Layout
24816
24817 \series bold
24818
24819 \backslash
24820 raisebox
24821 \series default
24822  dient nur als Abstandhalter.
24823 \end_layout
24824
24825 \end_inset
24826
24827
24828 \end_layout
24829
24830 \end_inset
24831 </cell>
24832 </row>
24833 <row>
24834 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24835 \begin_inset Text
24836
24837 \begin_layout Plain Layout
24838
24839 \backslash
24840 varliminf
24841 \end_layout
24842
24843 \end_inset
24844 </cell>
24845 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24846 \begin_inset Text
24847
24848 \begin_layout Plain Layout
24849 \begin_inset Formula $\varliminf$
24850 \end_inset
24851
24852
24853 \end_layout
24854
24855 \end_inset
24856 </cell>
24857 </row>
24858 <row>
24859 <cell alignment="center" valignment="top" leftline="true" usebox="none">
24860 \begin_inset Text
24861
24862 \begin_layout Plain Layout
24863
24864 \backslash
24865 varlimsup
24866 \end_layout
24867
24868 \end_inset
24869 </cell>
24870 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
24871 \begin_inset Text
24872
24873 \begin_layout Plain Layout
24874 \begin_inset Formula $\varlimsup$
24875 \end_inset
24876
24877
24878 \end_layout
24879
24880 \end_inset
24881 </cell>
24882 </row>
24883 <row>
24884 <cell alignment="center" valignment="top" leftline="true" usebox="none">
24885 \begin_inset Text
24886
24887 \begin_layout Plain Layout
24888
24889 \backslash
24890 varprojlim
24891 \end_layout
24892
24893 \end_inset
24894 </cell>
24895 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
24896 \begin_inset Text
24897
24898 \begin_layout Plain Layout
24899 \begin_inset Formula $\varprojlim$
24900 \end_inset
24901
24902
24903 \end_layout
24904
24905 \end_inset
24906 </cell>
24907 </row>
24908 <row>
24909 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
24910 \begin_inset Text
24911
24912 \begin_layout Plain Layout
24913
24914 \backslash
24915 varinjlim
24916 \end_layout
24917
24918 \end_inset
24919 </cell>
24920 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
24921 \begin_inset Text
24922
24923 \begin_layout Plain Layout
24924 \begin_inset Formula $\varinjlim$
24925 \end_inset
24926
24927
24928 \begin_inset Formula $\raisebox{-2.5mm}{}$
24929 \end_inset
24930
24931
24932 \end_layout
24933
24934 \end_inset
24935 </cell>
24936 </row>
24937 </lyxtabular>
24938
24939 \end_inset
24940
24941
24942 \end_layout
24943
24944 \begin_layout Standard
24945 \begin_inset VSpace medskip
24946 \end_inset
24947
24948 Der Grenzwert wird durch Tiefstellen erzeugt.
24949  Bei einer eingebetteten Formel wird er rechts neben die Funktion gesetzt:
24950 \end_layout
24951
24952 \begin_layout Standard
24953 \align center
24954 \begin_inset Tabular
24955 <lyxtabular version="3" rows="2" columns="2">
24956 <features>
24957 <column alignment="center" valignment="top" width="0pt">
24958 <column alignment="center" valignment="top" width="0pt">
24959 <row>
24960 <cell alignment="center" valignment="top" usebox="none">
24961 \begin_inset Text
24962
24963 \begin_layout Plain Layout
24964 Befehl
24965 \end_layout
24966
24967 \end_inset
24968 </cell>
24969 <cell alignment="center" valignment="top" usebox="none">
24970 \begin_inset Text
24971
24972 \begin_layout Plain Layout
24973 \begin_inset space \hspace{}
24974 \length 1cm
24975 \end_inset
24976
24977 Ergebnis
24978 \begin_inset Note Note
24979 status collapsed
24980
24981 \begin_layout Plain Layout
24982
24983 \series bold
24984
24985 \backslash
24986 hspace
24987 \series default
24988  und 
24989 \series bold
24990
24991 \backslash
24992 raisebox
24993 \series default
24994  dienen nur als Abstandhalter.
24995 \end_layout
24996
24997 \end_inset
24998
24999
25000 \end_layout
25001
25002 \end_inset
25003 </cell>
25004 </row>
25005 <row>
25006 <cell alignment="center" valignment="top" usebox="none">
25007 \begin_inset Text
25008
25009 \begin_layout Plain Layout
25010
25011 \backslash
25012 lim_x
25013 \backslash
25014 to
25015 \begin_inset ERT
25016 status collapsed
25017
25018 \begin_layout Plain Layout
25019
25020
25021 \backslash
25022 leer 
25023 \end_layout
25024
25025 \end_inset
25026
25027 A
25028 \begin_inset ERT
25029 status collapsed
25030
25031 \begin_layout Plain Layout
25032
25033
25034 \backslash
25035 leer 
25036 \end_layout
25037
25038 \end_inset
25039
25040 x=B
25041 \end_layout
25042
25043 \end_inset
25044 </cell>
25045 <cell alignment="center" valignment="top" usebox="none">
25046 \begin_inset Text
25047
25048 \begin_layout Plain Layout
25049 \begin_inset Formula $\hspace{1cm}\raisebox{5mm}{}\lim_{x\to A}x=B$
25050 \end_inset
25051
25052
25053 \end_layout
25054
25055 \end_inset
25056 </cell>
25057 </row>
25058 </lyxtabular>
25059
25060 \end_inset
25061
25062
25063 \end_layout
25064
25065 \begin_layout Standard
25066 In einer abgesetzten Formel steht der Grenzwert wie gewohnt darunter:
25067 \begin_inset Formula \[
25068 \lim_{x\to A}x=B\]
25069
25070 \end_inset
25071
25072
25073 \end_layout
25074
25075 \begin_layout Subsection
25076 Modulo-Funktionen
25077 \begin_inset Index
25078 status collapsed
25079
25080 \begin_layout Plain Layout
25081 Funktionen ! Modulo-
25082 \end_layout
25083
25084 \end_inset
25085
25086
25087 \end_layout
25088
25089 \begin_layout Standard
25090 Eine Besonderheit stellt die Modulo-Funktion dar, denn es gibt sie in vier
25091  Varianten.
25092 \begin_inset Newpage newpage
25093 \end_inset
25094
25095
25096 \end_layout
25097
25098 \begin_layout Standard
25099 Die Varianten in einer abgesetzten Formel:
25100 \begin_inset Formula \begin{align*}
25101 \underline{\textrm{Befehl}\raisebox{-0.9mm}{}} &  & \underline{\textrm{Ergebnis}}\\
25102 \mathrm{a\backslash mod\textrm{\leer}b} &  & a\mod b\\
25103 \mathrm{a\backslash pmod\textrm{\leer}b} &  & a\pmod b\\
25104 \mathrm{a\backslash bmod\textrm{\leer}b} &  & a\bmod b\\
25105 \mathrm{a\backslash pod\textrm{\leer}b} &  & a\pod b\end{align*}
25106
25107 \end_inset
25108
25109
25110 \end_layout
25111
25112 \begin_layout Standard
25113 In einer eingebetteten Formel wird bei allen Varianten vor den Funktionsnamen
25114  weniger Leerraum gesetzt.
25115 \end_layout
25116
25117 \begin_layout Section
25118 Sonderzeichen
25119 \begin_inset Index
25120 status collapsed
25121
25122 \begin_layout Plain Layout
25123 Sonderzeichen
25124 \end_layout
25125
25126 \end_inset
25127
25128
25129 \end_layout
25130
25131 \begin_layout Subsection
25132 Sonderzeichen im mathematischen Text
25133 \end_layout
25134
25135 \begin_layout Standard
25136 Die folgenden Befehle können nur im mathematischen Textmodus oder im TeX-Modus
25137  verwendet werden:
25138 \end_layout
25139
25140 \begin_layout Standard
25141 \begin_inset space \hfill{}
25142 \end_inset
25143
25144
25145 \begin_inset Tabular
25146 <lyxtabular version="3" rows="8" columns="2">
25147 <features>
25148 <column alignment="block" valignment="top" width="0">
25149 <column alignment="block" valignment="top" width="0">
25150 <row>
25151 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25152 \begin_inset Text
25153
25154 \begin_layout Plain Layout
25155 Befehl
25156 \end_layout
25157
25158 \end_inset
25159 </cell>
25160 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
25161 \begin_inset Text
25162
25163 \begin_layout Plain Layout
25164 Ergebnis
25165 \end_layout
25166
25167 \end_inset
25168 </cell>
25169 </row>
25170 <row>
25171 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25172 \begin_inset Text
25173
25174 \begin_layout Plain Layout
25175
25176 \backslash
25177 oe
25178 \end_layout
25179
25180 \end_inset
25181 </cell>
25182 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25183 \begin_inset Text
25184
25185 \begin_layout Plain Layout
25186 \begin_inset Formula $\textrm{œ}$
25187 \end_inset
25188
25189
25190 \end_layout
25191
25192 \end_inset
25193 </cell>
25194 </row>
25195 <row>
25196 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25197 \begin_inset Text
25198
25199 \begin_layout Plain Layout
25200
25201 \backslash
25202 OE
25203 \end_layout
25204
25205 \end_inset
25206 </cell>
25207 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25208 \begin_inset Text
25209
25210 \begin_layout Plain Layout
25211 \begin_inset Formula $\textrm{Œ}$
25212 \end_inset
25213
25214
25215 \end_layout
25216
25217 \end_inset
25218 </cell>
25219 </row>
25220 <row>
25221 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25222 \begin_inset Text
25223
25224 \begin_layout Plain Layout
25225
25226 \backslash
25227 ae
25228 \end_layout
25229
25230 \end_inset
25231 </cell>
25232 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25233 \begin_inset Text
25234
25235 \begin_layout Plain Layout
25236 \begin_inset Formula $\textrm{æ}$
25237 \end_inset
25238
25239
25240 \end_layout
25241
25242 \end_inset
25243 </cell>
25244 </row>
25245 <row>
25246 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25247 \begin_inset Text
25248
25249 \begin_layout Plain Layout
25250
25251 \backslash
25252 AE
25253 \end_layout
25254
25255 \end_inset
25256 </cell>
25257 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25258 \begin_inset Text
25259
25260 \begin_layout Plain Layout
25261 \begin_inset Formula $\textrm{Æ}$
25262 \end_inset
25263
25264
25265 \end_layout
25266
25267 \end_inset
25268 </cell>
25269 </row>
25270 <row>
25271 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25272 \begin_inset Text
25273
25274 \begin_layout Plain Layout
25275
25276 \backslash
25277 aa
25278 \end_layout
25279
25280 \end_inset
25281 </cell>
25282 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25283 \begin_inset Text
25284
25285 \begin_layout Plain Layout
25286 \begin_inset Formula $\textrm{\aa}$
25287 \end_inset
25288
25289
25290 \end_layout
25291
25292 \end_inset
25293 </cell>
25294 </row>
25295 <row>
25296 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25297 \begin_inset Text
25298
25299 \begin_layout Plain Layout
25300
25301 \backslash
25302 AA
25303 \begin_inset Index
25304 status collapsed
25305
25306 \begin_layout Plain Layout
25307 \begin_inset ERT
25308 status collapsed
25309
25310 \begin_layout Plain Layout
25311
25312
25313 \backslash
25314 @
25315 \backslash
25316 textrm{
25317 \backslash
25318 AA}
25319 \end_layout
25320
25321 \end_inset
25322
25323
25324 \end_layout
25325
25326 \end_inset
25327
25328
25329 \end_layout
25330
25331 \end_inset
25332 </cell>
25333 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
25334 \begin_inset Text
25335
25336 \begin_layout Plain Layout
25337 \begin_inset Formula $\textrm{Å}$
25338 \end_inset
25339
25340
25341 \end_layout
25342
25343 \end_inset
25344 </cell>
25345 </row>
25346 <row>
25347 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
25348 \begin_inset Text
25349
25350 \begin_layout Plain Layout
25351
25352 \backslash
25353 i
25354 \end_layout
25355
25356 \end_inset
25357 </cell>
25358 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
25359 \begin_inset Text
25360
25361 \begin_layout Plain Layout
25362 \begin_inset Formula $\textrm{ı}$
25363 \end_inset
25364
25365
25366 \end_layout
25367
25368 \end_inset
25369 </cell>
25370 </row>
25371 </lyxtabular>
25372
25373 \end_inset
25374
25375
25376 \begin_inset space \hfill{}
25377 \end_inset
25378
25379
25380 \begin_inset Tabular
25381 <lyxtabular version="3" rows="8" columns="2">
25382 <features>
25383 <column alignment="block" valignment="top" width="0">
25384 <column alignment="center" valignment="top" width="0">
25385 <row>
25386 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25387 \begin_inset Text
25388
25389 \begin_layout Plain Layout
25390 Befehl
25391 \begin_inset Note Note
25392 status collapsed
25393
25394 \begin_layout Plain Layout
25395
25396 \series bold
25397
25398 \backslash
25399 hspace{0mm}
25400 \series default
25401  dient nur zur Trennung,da sonst im Ausdruck ¡ bzw.
25402  ¿ erscheinen würde.
25403 \end_layout
25404
25405 \end_inset
25406
25407
25408 \end_layout
25409
25410 \end_inset
25411 </cell>
25412 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
25413 \begin_inset Text
25414
25415 \begin_layout Plain Layout
25416 Ergebnis
25417 \end_layout
25418
25419 \end_inset
25420 </cell>
25421 </row>
25422 <row>
25423 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25424 \begin_inset Text
25425
25426 \begin_layout Plain Layout
25427
25428 \backslash
25429 o
25430 \end_layout
25431
25432 \end_inset
25433 </cell>
25434 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25435 \begin_inset Text
25436
25437 \begin_layout Plain Layout
25438 \begin_inset Formula $\textrm{ø}$
25439 \end_inset
25440
25441
25442 \end_layout
25443
25444 \end_inset
25445 </cell>
25446 </row>
25447 <row>
25448 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25449 \begin_inset Text
25450
25451 \begin_layout Plain Layout
25452
25453 \backslash
25454 O
25455 \end_layout
25456
25457 \end_inset
25458 </cell>
25459 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25460 \begin_inset Text
25461
25462 \begin_layout Plain Layout
25463 \begin_inset Formula $\textrm{Ø}$
25464 \end_inset
25465
25466
25467 \end_layout
25468
25469 \end_inset
25470 </cell>
25471 </row>
25472 <row>
25473 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25474 \begin_inset Text
25475
25476 \begin_layout Plain Layout
25477
25478 \backslash
25479 l
25480 \end_layout
25481
25482 \end_inset
25483 </cell>
25484 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25485 \begin_inset Text
25486
25487 \begin_layout Plain Layout
25488 \begin_inset Formula $\textrm{ł}$
25489 \end_inset
25490
25491
25492 \end_layout
25493
25494 \end_inset
25495 </cell>
25496 </row>
25497 <row>
25498 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25499 \begin_inset Text
25500
25501 \begin_layout Plain Layout
25502
25503 \backslash
25504 L
25505 \end_layout
25506
25507 \end_inset
25508 </cell>
25509 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25510 \begin_inset Text
25511
25512 \begin_layout Plain Layout
25513 \begin_inset Formula $\textrm{Ł}$
25514 \end_inset
25515
25516
25517 \end_layout
25518
25519 \end_inset
25520 </cell>
25521 </row>
25522 <row>
25523 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25524 \begin_inset Text
25525
25526 \begin_layout Plain Layout
25527 !
25528 \begin_inset space \hspace{}
25529 \length 0mm
25530 \end_inset
25531
25532 `
25533 \begin_inset ERT
25534 status collapsed
25535
25536 \begin_layout Plain Layout
25537
25538
25539 \backslash
25540 leer 
25541 \end_layout
25542
25543 \end_inset
25544
25545
25546 \end_layout
25547
25548 \end_inset
25549 </cell>
25550 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
25551 \begin_inset Text
25552
25553 \begin_layout Plain Layout
25554 \begin_inset Formula $\textrm{!`}$
25555 \end_inset
25556
25557
25558 \end_layout
25559
25560 \end_inset
25561 </cell>
25562 </row>
25563 <row>
25564 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
25565 \begin_inset Text
25566
25567 \begin_layout Plain Layout
25568 ?
25569 \begin_inset space \hspace{}
25570 \length 0mm
25571 \end_inset
25572
25573 `
25574 \begin_inset ERT
25575 status collapsed
25576
25577 \begin_layout Plain Layout
25578
25579
25580 \backslash
25581 leer 
25582 \end_layout
25583
25584 \end_inset
25585
25586
25587 \end_layout
25588
25589 \end_inset
25590 </cell>
25591 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
25592 \begin_inset Text
25593
25594 \begin_layout Plain Layout
25595 \begin_inset Formula $\textrm{?`}$
25596 \end_inset
25597
25598
25599 \end_layout
25600
25601 \end_inset
25602 </cell>
25603 </row>
25604 <row>
25605 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
25606 \begin_inset Text
25607
25608 \begin_layout Plain Layout
25609
25610 \backslash
25611 j
25612 \end_layout
25613
25614 \end_inset
25615 </cell>
25616 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
25617 \begin_inset Text
25618
25619 \begin_layout Plain Layout
25620 \begin_inset Formula $\textrm{ȷ}$
25621 \end_inset
25622
25623
25624 \end_layout
25625
25626 \end_inset
25627 </cell>
25628 </row>
25629 </lyxtabular>
25630
25631 \end_inset
25632
25633
25634 \begin_inset space \hfill{}
25635 \end_inset
25636
25637
25638 \end_layout
25639
25640 \begin_layout Standard
25641 Die Zeichen 
25642 \begin_inset Formula $\textrm{\textrm{Å}}$
25643 \end_inset
25644
25645  und 
25646 \begin_inset Formula $\textrm{\textrm{Ø}}$
25647 \end_inset
25648
25649  können auch über den Mathe-Werkzeugleistenknopf 
25650 \begin_inset Graphics
25651         filename ../../images/math/digamma.png
25652         scale 85
25653
25654 \end_inset
25655
25656  eingefügt werden.
25657 \end_layout
25658
25659 \begin_layout Standard
25660 Eine Ausnahme bilden die Befehle 
25661 \series bold
25662 !
25663 \begin_inset space \hspace{}
25664 \length 0mm
25665 \end_inset
25666
25667 `
25668 \series default
25669  und 
25670 \series bold
25671 ?
25672 \begin_inset space \hspace{}
25673 \length 0mm
25674 \end_inset
25675
25676 `
25677 \series default
25678 , denn man kann sie in LyX direkt in den Text eingeben.
25679 \end_layout
25680
25681 \begin_layout Subsection
25682 Akzente im Text
25683 \begin_inset CommandInset label
25684 LatexCommand label
25685 name "sub:Sonderzeichen-Akzente"
25686
25687 \end_inset
25688
25689
25690 \begin_inset Index
25691 status collapsed
25692
25693 \begin_layout Plain Layout
25694 Akzente ! im Text
25695 \end_layout
25696
25697 \end_inset
25698
25699
25700 \end_layout
25701
25702 \begin_layout Standard
25703 Man kann mit den folgenden Befehlen sämtliche Buchstaben akzentuieren.
25704  Die Befehle müssen dazu im TeX-Modus eingegeben werden.
25705 \end_layout
25706
25707 \begin_layout Standard
25708 \begin_inset space \hfill{}
25709 \end_inset
25710
25711
25712 \begin_inset Tabular
25713 <lyxtabular version="3" rows="8" columns="2">
25714 <features>
25715 <column alignment="block" valignment="top" width="0">
25716 <column alignment="block" valignment="top" width="0">
25717 <row>
25718 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25719 \begin_inset Text
25720
25721 \begin_layout Plain Layout
25722 Befehl
25723 \end_layout
25724
25725 \end_inset
25726 </cell>
25727 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
25728 \begin_inset Text
25729
25730 \begin_layout Plain Layout
25731 Ergebnis
25732 \end_layout
25733
25734 \end_inset
25735 </cell>
25736 </row>
25737 <row>
25738 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25739 \begin_inset Text
25740
25741 \begin_layout Plain Layout
25742
25743 \backslash
25744
25745 \begin_inset Quotes grd
25746 \end_inset
25747
25748 e
25749 \end_layout
25750
25751 \end_inset
25752 </cell>
25753 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25754 \begin_inset Text
25755
25756 \begin_layout Plain Layout
25757 \begin_inset ERT
25758 status collapsed
25759
25760 \begin_layout Plain Layout
25761
25762
25763 \backslash
25764 "e
25765 \end_layout
25766
25767 \end_inset
25768
25769
25770 \end_layout
25771
25772 \end_inset
25773 </cell>
25774 </row>
25775 <row>
25776 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25777 \begin_inset Text
25778
25779 \begin_layout Plain Layout
25780
25781 \backslash
25782 `e
25783 \end_layout
25784
25785 \end_inset
25786 </cell>
25787 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25788 \begin_inset Text
25789
25790 \begin_layout Plain Layout
25791 \begin_inset ERT
25792 status collapsed
25793
25794 \begin_layout Plain Layout
25795
25796
25797 \backslash
25798 `e
25799 \end_layout
25800
25801 \end_inset
25802
25803
25804 \end_layout
25805
25806 \end_inset
25807 </cell>
25808 </row>
25809 <row>
25810 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25811 \begin_inset Text
25812
25813 \begin_layout Plain Layout
25814
25815 \backslash
25816 ^
25817 \begin_inset ERT
25818 status collapsed
25819
25820 \begin_layout Plain Layout
25821
25822
25823 \backslash
25824 leer 
25825 \end_layout
25826
25827 \end_inset
25828
25829 e
25830 \end_layout
25831
25832 \end_inset
25833 </cell>
25834 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25835 \begin_inset Text
25836
25837 \begin_layout Plain Layout
25838 \begin_inset ERT
25839 status collapsed
25840
25841 \begin_layout Plain Layout
25842
25843
25844 \backslash
25845 ^e
25846 \end_layout
25847
25848 \end_inset
25849
25850
25851 \end_layout
25852
25853 \end_inset
25854 </cell>
25855 </row>
25856 <row>
25857 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25858 \begin_inset Text
25859
25860 \begin_layout Plain Layout
25861
25862 \backslash
25863 =e
25864 \end_layout
25865
25866 \end_inset
25867 </cell>
25868 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25869 \begin_inset Text
25870
25871 \begin_layout Plain Layout
25872 \begin_inset ERT
25873 status collapsed
25874
25875 \begin_layout Plain Layout
25876
25877
25878 \backslash
25879 =e
25880 \end_layout
25881
25882 \end_inset
25883
25884
25885 \end_layout
25886
25887 \end_inset
25888 </cell>
25889 </row>
25890 <row>
25891 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25892 \begin_inset Text
25893
25894 \begin_layout Plain Layout
25895
25896 \backslash
25897 u
25898 \begin_inset ERT
25899 status collapsed
25900
25901 \begin_layout Plain Layout
25902
25903
25904 \backslash
25905 leer 
25906 \end_layout
25907
25908 \end_inset
25909
25910 e
25911 \end_layout
25912
25913 \end_inset
25914 </cell>
25915 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25916 \begin_inset Text
25917
25918 \begin_layout Plain Layout
25919 \begin_inset ERT
25920 status collapsed
25921
25922 \begin_layout Plain Layout
25923
25924
25925 \backslash
25926 u e
25927 \end_layout
25928
25929 \end_inset
25930
25931
25932 \end_layout
25933
25934 \end_inset
25935 </cell>
25936 </row>
25937 <row>
25938 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25939 \begin_inset Text
25940
25941 \begin_layout Plain Layout
25942
25943 \backslash
25944 b
25945 \begin_inset ERT
25946 status collapsed
25947
25948 \begin_layout Plain Layout
25949
25950
25951 \backslash
25952 leer 
25953 \end_layout
25954
25955 \end_inset
25956
25957 e
25958 \end_layout
25959
25960 \end_inset
25961 </cell>
25962 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
25963 \begin_inset Text
25964
25965 \begin_layout Plain Layout
25966 \begin_inset ERT
25967 status collapsed
25968
25969 \begin_layout Plain Layout
25970
25971
25972 \backslash
25973 b e
25974 \end_layout
25975
25976 \end_inset
25977
25978
25979 \end_layout
25980
25981 \end_inset
25982 </cell>
25983 </row>
25984 <row>
25985 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
25986 \begin_inset Text
25987
25988 \begin_layout Plain Layout
25989
25990 \backslash
25991 t
25992 \begin_inset ERT
25993 status collapsed
25994
25995 \begin_layout Plain Layout
25996
25997
25998 \backslash
25999 leer 
26000 \end_layout
26001
26002 \end_inset
26003
26004 ee
26005 \end_layout
26006
26007 \end_inset
26008 </cell>
26009 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
26010 \begin_inset Text
26011
26012 \begin_layout Plain Layout
26013 \begin_inset ERT
26014 status collapsed
26015
26016 \begin_layout Plain Layout
26017
26018
26019 \backslash
26020 t ee
26021 \end_layout
26022
26023 \end_inset
26024
26025
26026 \end_layout
26027
26028 \end_inset
26029 </cell>
26030 </row>
26031 </lyxtabular>
26032
26033 \end_inset
26034
26035
26036 \begin_inset space \hfill{}
26037 \end_inset
26038
26039
26040 \begin_inset Tabular
26041 <lyxtabular version="3" rows="8" columns="2">
26042 <features>
26043 <column alignment="block" valignment="top" width="0">
26044 <column alignment="center" valignment="top" width="0">
26045 <row>
26046 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
26047 \begin_inset Text
26048
26049 \begin_layout Plain Layout
26050 Befehl
26051 \end_layout
26052
26053 \end_inset
26054 </cell>
26055 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
26056 \begin_inset Text
26057
26058 \begin_layout Plain Layout
26059 Ergebnis
26060 \end_layout
26061
26062 \end_inset
26063 </cell>
26064 </row>
26065 <row>
26066 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26067 \begin_inset Text
26068
26069 \begin_layout Plain Layout
26070
26071 \backslash
26072 H
26073 \begin_inset ERT
26074 status collapsed
26075
26076 \begin_layout Plain Layout
26077
26078
26079 \backslash
26080 leer 
26081 \end_layout
26082
26083 \end_inset
26084
26085 e
26086 \end_layout
26087
26088 \end_inset
26089 </cell>
26090 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26091 \begin_inset Text
26092
26093 \begin_layout Plain Layout
26094 \begin_inset ERT
26095 status collapsed
26096
26097 \begin_layout Plain Layout
26098
26099
26100 \backslash
26101 H e
26102 \end_layout
26103
26104 \end_inset
26105
26106
26107 \end_layout
26108
26109 \end_inset
26110 </cell>
26111 </row>
26112 <row>
26113 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26114 \begin_inset Text
26115
26116 \begin_layout Plain Layout
26117
26118 \backslash
26119 'e
26120 \end_layout
26121
26122 \end_inset
26123 </cell>
26124 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26125 \begin_inset Text
26126
26127 \begin_layout Plain Layout
26128 \begin_inset ERT
26129 status collapsed
26130
26131 \begin_layout Plain Layout
26132
26133
26134 \backslash
26135 'e
26136 \end_layout
26137
26138 \end_inset
26139
26140
26141 \end_layout
26142
26143 \end_inset
26144 </cell>
26145 </row>
26146 <row>
26147 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26148 \begin_inset Text
26149
26150 \begin_layout Plain Layout
26151
26152 \backslash
26153 ~e
26154 \begin_inset Index
26155 status collapsed
26156
26157 \begin_layout Plain Layout
26158 Tilde
26159 \end_layout
26160
26161 \end_inset
26162
26163
26164 \end_layout
26165
26166 \end_inset
26167 </cell>
26168 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26169 \begin_inset Text
26170
26171 \begin_layout Plain Layout
26172 \begin_inset ERT
26173 status collapsed
26174
26175 \begin_layout Plain Layout
26176
26177
26178 \backslash
26179 ~e
26180 \end_layout
26181
26182 \end_inset
26183
26184
26185 \end_layout
26186
26187 \end_inset
26188 </cell>
26189 </row>
26190 <row>
26191 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26192 \begin_inset Text
26193
26194 \begin_layout Plain Layout
26195
26196 \backslash
26197 .e
26198 \end_layout
26199
26200 \end_inset
26201 </cell>
26202 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26203 \begin_inset Text
26204
26205 \begin_layout Plain Layout
26206 \begin_inset ERT
26207 status collapsed
26208
26209 \begin_layout Plain Layout
26210
26211
26212 \backslash
26213 .e
26214 \end_layout
26215
26216 \end_inset
26217
26218
26219 \end_layout
26220
26221 \end_inset
26222 </cell>
26223 </row>
26224 <row>
26225 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
26226 \begin_inset Text
26227
26228 \begin_layout Plain Layout
26229
26230 \backslash
26231 v
26232 \begin_inset ERT
26233 status collapsed
26234
26235 \begin_layout Plain Layout
26236
26237
26238 \backslash
26239 leer 
26240 \end_layout
26241
26242 \end_inset
26243
26244 e
26245 \end_layout
26246
26247 \end_inset
26248 </cell>
26249 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
26250 \begin_inset Text
26251
26252 \begin_layout Plain Layout
26253 \begin_inset ERT
26254 status collapsed
26255
26256 \begin_layout Plain Layout
26257
26258
26259 \backslash
26260 v e
26261 \end_layout
26262
26263 \end_inset
26264
26265
26266 \end_layout
26267
26268 \end_inset
26269 </cell>
26270 </row>
26271 <row>
26272 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
26273 \begin_inset Text
26274
26275 \begin_layout Plain Layout
26276
26277 \backslash
26278 d
26279 \begin_inset ERT
26280 status collapsed
26281
26282 \begin_layout Plain Layout
26283
26284
26285 \backslash
26286 leer 
26287 \end_layout
26288
26289 \end_inset
26290
26291 e
26292 \end_layout
26293
26294 \end_inset
26295 </cell>
26296 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
26297 \begin_inset Text
26298
26299 \begin_layout Plain Layout
26300 \begin_inset ERT
26301 status collapsed
26302
26303 \begin_layout Plain Layout
26304
26305
26306 \backslash
26307 d e
26308 \end_layout
26309
26310 \end_inset
26311
26312
26313 \end_layout
26314
26315 \end_inset
26316 </cell>
26317 </row>
26318 <row>
26319 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
26320 \begin_inset Text
26321
26322 \begin_layout Plain Layout
26323
26324 \backslash
26325 c
26326 \begin_inset ERT
26327 status collapsed
26328
26329 \begin_layout Plain Layout
26330
26331
26332 \backslash
26333 leer 
26334 \end_layout
26335
26336 \end_inset
26337
26338 e
26339 \end_layout
26340
26341 \end_inset
26342 </cell>
26343 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
26344 \begin_inset Text
26345
26346 \begin_layout Plain Layout
26347 \begin_inset ERT
26348 status collapsed
26349
26350 \begin_layout Plain Layout
26351
26352
26353 \backslash
26354 c e
26355 \end_layout
26356
26357 \end_inset
26358
26359
26360 \end_layout
26361
26362 \end_inset
26363 </cell>
26364 </row>
26365 </lyxtabular>
26366
26367 \end_inset
26368
26369
26370 \begin_inset space \hfill{}
26371 \end_inset
26372
26373
26374 \end_layout
26375
26376 \begin_layout Standard
26377 \begin_inset VSpace medskip
26378 \end_inset
26379
26380 Mit dem Befehl 
26381 \series bold
26382
26383 \backslash
26384 t
26385 \series default
26386  können auch zwei verschiedene Zeichen akzentuiert werden.
26387  Der Befehl 
26388 \series bold
26389
26390 \backslash
26391 t
26392 \begin_inset ERT
26393 status collapsed
26394
26395 \begin_layout Plain Layout
26396
26397
26398 \backslash
26399 leer 
26400 \end_layout
26401
26402 \end_inset
26403
26404 sz
26405 \series default
26406  ergibt: 
26407 \begin_inset ERT
26408 status collapsed
26409
26410 \begin_layout Plain Layout
26411
26412
26413 \backslash
26414 t sz
26415 \end_layout
26416
26417 \end_inset
26418
26419
26420 \end_layout
26421
26422 \begin_layout Standard
26423 Die Akzente 
26424 \series bold
26425 `
26426 \series default
26427  , 
26428 \series bold
26429 '
26430 \series default
26431  und 
26432 \series bold
26433 ^
26434 \series default
26435  können in Verbindung mit Selbstlauten auch direkt über die Tastatur eingegeben
26436  werden ohne den TeX-Modus zu benutzen.
26437  Dasselbe gilt für die Tilde
26438 \begin_inset Foot
26439 status collapsed
26440
26441 \begin_layout Plain Layout
26442 Gilt nur für Tastaturen, bei denen die Tilde als Akzent definiert ist.
26443 \end_layout
26444
26445 \end_inset
26446
26447  
26448 \series bold
26449 ~
26450 \series default
26451  in Verbindung mit 
26452 \emph on
26453 a
26454 \emph default
26455  , 
26456 \emph on
26457 n
26458 \emph default
26459  oder 
26460 \emph on
26461 o
26462 \emph default
26463 .
26464 \end_layout
26465
26466 \begin_layout Standard
26467 Die Befehle 
26468 \series bold
26469
26470 \backslash
26471 b
26472 \series default
26473  , 
26474 \series bold
26475
26476 \backslash
26477 c
26478 \series default
26479  , 
26480 \series bold
26481
26482 \backslash
26483 d
26484 \series default
26485  , 
26486 \series bold
26487
26488 \backslash
26489 H
26490 \series default
26491  , 
26492 \series bold
26493
26494 \backslash
26495 t
26496 \series default
26497  , 
26498 \series bold
26499
26500 \backslash
26501 u
26502 \series default
26503  , 
26504 \series bold
26505
26506 \backslash
26507 v
26508 \series default
26509  und direkt über die Tastatur eingegebene Akzente sind auch im mathematischen
26510  Textmodus verfügbar.
26511  Für die restlichen Akzente gibt es in Formeln spezielle Mathebefehle, siehe
26512  
26513 \begin_inset CommandInset ref
26514 LatexCommand ref
26515 reference "sub:Akzente-für-ein"
26516
26517 \end_inset
26518
26519 .
26520 \end_layout
26521
26522 \begin_layout Standard
26523 \begin_inset VSpace bigskip
26524 \end_inset
26525
26526 Des Weiteren kann man mit dem Befehl 
26527 \series bold
26528
26529 \backslash
26530 textcircled
26531 \series default
26532
26533 \begin_inset Index
26534 status collapsed
26535
26536 \begin_layout Plain Layout
26537 Befehle ! T ! 
26538 \backslash
26539 textcircled
26540 \end_layout
26541
26542 \end_inset
26543
26544 , ähnlich dem Copyrightsymbol, sämtliche Zahlen und Buchstaben in einen
26545  Kreis setzen, quasi mit einem Kreis akzentuieren.
26546 \end_layout
26547
26548 \begin_layout Standard
26549 \align center
26550 \begin_inset Tabular
26551 <lyxtabular version="3" rows="3" columns="2">
26552 <features>
26553 <column alignment="center" valignment="top" width="0">
26554 <column alignment="center" valignment="top" width="0">
26555 <row>
26556 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
26557 \begin_inset Text
26558
26559 \begin_layout Plain Layout
26560 Befehl
26561 \end_layout
26562
26563 \end_inset
26564 </cell>
26565 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
26566 \begin_inset Text
26567
26568 \begin_layout Plain Layout
26569 Ergebnis
26570 \begin_inset Note Note
26571 status collapsed
26572
26573 \begin_layout Plain Layout
26574
26575 \series bold
26576
26577 \backslash
26578 raisebox
26579 \series default
26580  in der Formel dient nur als Abstandhalter.
26581 \end_layout
26582
26583 \end_inset
26584
26585
26586 \end_layout
26587
26588 \end_inset
26589 </cell>
26590 </row>
26591 <row>
26592 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26593 \begin_inset Text
26594
26595 \begin_layout Plain Layout
26596
26597 \backslash
26598 textcircled{w}
26599 \end_layout
26600
26601 \end_inset
26602 </cell>
26603 <cell multicolumn="1" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26604 \begin_inset Text
26605
26606 \begin_layout Plain Layout
26607 \begin_inset ERT
26608 status collapsed
26609
26610 \begin_layout Plain Layout
26611
26612
26613 \backslash
26614 textcircled{w}
26615 \end_layout
26616
26617 \end_inset
26618
26619
26620 \end_layout
26621
26622 \end_inset
26623 </cell>
26624 </row>
26625 <row>
26626 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
26627 \begin_inset Text
26628
26629 \begin_layout Plain Layout
26630
26631 \backslash
26632 Large 
26633 \backslash
26634 textcircled{
26635 \backslash
26636 normalsize
26637 \backslash
26638 protect
26639 \backslash
26640 raisebox{-1.5pt}{W}}
26641 \end_layout
26642
26643 \end_inset
26644 </cell>
26645 <cell multicolumn="1" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
26646 \begin_inset Text
26647
26648 \begin_layout Plain Layout
26649 \begin_inset Formula $\raisebox{4.5mm}{}$
26650 \end_inset
26651
26652
26653 \begin_inset ERT
26654 status collapsed
26655
26656 \begin_layout Plain Layout
26657
26658
26659 \backslash
26660 Large 
26661 \backslash
26662 textcircled{
26663 \backslash
26664 normalsize
26665 \backslash
26666 protect
26667 \backslash
26668 raisebox{-1.5pt}W}
26669 \end_layout
26670
26671 \end_inset
26672
26673
26674 \begin_inset Formula $\raisebox{-2mm}{}$
26675 \end_inset
26676
26677
26678 \end_layout
26679
26680 \end_inset
26681 </cell>
26682 </row>
26683 </lyxtabular>
26684
26685 \end_inset
26686
26687
26688 \end_layout
26689
26690 \begin_layout Standard
26691 Man muss darauf achten, dass das Zeichen in einen Kreis passt.
26692  
26693 \series bold
26694
26695 \backslash
26696 Large
26697 \series default
26698
26699 \begin_inset Foot
26700 status collapsed
26701
26702 \begin_layout Plain Layout
26703 siehe 
26704 \begin_inset CommandInset ref
26705 LatexCommand ref
26706 reference "sub:Schriftgrößen"
26707
26708 \end_inset
26709
26710
26711 \end_layout
26712
26713 \end_inset
26714
26715  bestimmt dabei die Größe des Kreises.
26716  Mit Hilfe von 
26717 \series bold
26718
26719 \backslash
26720 raisebox
26721 \series default
26722
26723 \begin_inset Foot
26724 status collapsed
26725
26726 \begin_layout Plain Layout
26727 siehe 
26728 \begin_inset CommandInset ref
26729 LatexCommand ref
26730 reference "sub:Boxen-ohne-Rahmen"
26731
26732 \end_inset
26733
26734
26735 \end_layout
26736
26737 \end_inset
26738
26739  kann man das Zeichen zentrieren.
26740 \end_layout
26741
26742 \begin_layout Subsection
26743 Minuskelziffern
26744 \begin_inset Index
26745 status collapsed
26746
26747 \begin_layout Plain Layout
26748 Minuskelziffern
26749 \end_layout
26750
26751 \end_inset
26752
26753
26754 \end_layout
26755
26756 \begin_layout Standard
26757 Minuskelziffern werden mit dem Befehl 
26758 \series bold
26759
26760 \backslash
26761 oldstylenums
26762 \series default
26763
26764 \begin_inset Index
26765 status collapsed
26766
26767 \begin_layout Plain Layout
26768 Befehle ! O ! 
26769 \backslash
26770 oldstylenums
26771 \end_layout
26772
26773 \end_inset
26774
26775  erzeugt.
26776  Der Befehl ist sowohl in einer Formel als auch im TeX-Modus verwendbar.
26777  Das Befehlsschema lautet:
26778 \end_layout
26779
26780 \begin_layout Standard
26781
26782 \series bold
26783
26784 \backslash
26785 oldstylenums{Ziffer}
26786 \end_layout
26787
26788 \begin_layout Standard
26789 Der Befehl 
26790 \series bold
26791
26792 \backslash
26793 oldstylenums{0123456789
26794 \series default
26795  ergibt: 
26796 \begin_inset Formula $\oldstylenums{0123456789}$
26797 \end_inset
26798
26799
26800 \end_layout
26801
26802 \begin_layout Subsection
26803 Sonstige Sonderzeichen
26804 \begin_inset CommandInset label
26805 LatexCommand label
26806 name "sub:Sonstige-Sonderzeichen"
26807
26808 \end_inset
26809
26810
26811 \begin_inset Index
26812 status collapsed
26813
26814 \begin_layout Plain Layout
26815 Sonderzeichen ! sonstige
26816 \end_layout
26817
26818 \end_inset
26819
26820
26821 \end_layout
26822
26823 \begin_layout Standard
26824 Folgende Zeichen können in eine Formel nur mit Befehlen eingegeben werden:
26825 \end_layout
26826
26827 \begin_layout Standard
26828 \align center
26829 \begin_inset Tabular
26830 <lyxtabular version="3" rows="4" columns="2">
26831 <features>
26832 <column alignment="center" valignment="top" width="0">
26833 <column alignment="center" valignment="top" width="0">
26834 <row>
26835 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
26836 \begin_inset Text
26837
26838 \begin_layout Plain Layout
26839 Befehl
26840 \end_layout
26841
26842 \end_inset
26843 </cell>
26844 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
26845 \begin_inset Text
26846
26847 \begin_layout Plain Layout
26848 Ergebnis
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 ^
26862 \begin_inset ERT
26863 status collapsed
26864
26865 \begin_layout Plain Layout
26866
26867
26868 \backslash
26869 leer 
26870 \end_layout
26871
26872 \end_inset
26873
26874
26875 \end_layout
26876
26877 \end_inset
26878 </cell>
26879 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26880 \begin_inset Text
26881
26882 \begin_layout Plain Layout
26883 \begin_inset Formula $\mathcircumflex$
26884 \end_inset
26885
26886
26887 \end_layout
26888
26889 \end_inset
26890 </cell>
26891 </row>
26892 <row>
26893 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26894 \begin_inset Text
26895
26896 \begin_layout Plain Layout
26897
26898 \backslash
26899 _
26900 \end_layout
26901
26902 \end_inset
26903 </cell>
26904 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26905 \begin_inset Text
26906
26907 \begin_layout Plain Layout
26908 \begin_inset Formula $\_$
26909 \end_inset
26910
26911
26912 \end_layout
26913
26914 \end_inset
26915 </cell>
26916 </row>
26917 <row>
26918 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
26919 \begin_inset Text
26920
26921 \begin_layout Plain Layout
26922 ^
26923 \begin_inset ERT
26924 status collapsed
26925
26926 \begin_layout Plain Layout
26927
26928
26929 \backslash
26930 leer 
26931 \end_layout
26932
26933 \end_inset
26934
26935
26936 \backslash
26937 circ
26938 \begin_inset Index
26939 status collapsed
26940
26941 \begin_layout Plain Layout
26942 °
26943 \end_layout
26944
26945 \end_inset
26946
26947
26948 \end_layout
26949
26950 \end_inset
26951 </cell>
26952 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
26953 \begin_inset Text
26954
26955 \begin_layout Plain Layout
26956 \begin_inset Formula $^{\circ}$
26957 \end_inset
26958
26959
26960 \end_layout
26961
26962 \end_inset
26963 </cell>
26964 </row>
26965 </lyxtabular>
26966
26967 \end_inset
26968
26969
26970 \end_layout
26971
26972 \begin_layout Standard
26973 Das Gradzeichen ° kann dennoch direkt eingegeben werden, wenn der LaTeX-Vorspann
26974  folgende Zeile enthält
26975 \begin_inset Foot
26976 status collapsed
26977
26978 \begin_layout Plain Layout
26979 Mehr dazu ist in 
26980 \begin_inset CommandInset ref
26981 LatexCommand ref
26982 reference "sub:Textzeichen-in-Formeln"
26983
26984 \end_inset
26985
26986  beschrieben.
26987 \end_layout
26988
26989 \end_inset
26990
26991 :
26992 \end_layout
26993
26994 \begin_layout Standard
26995
26996 \series bold
26997
26998 \backslash
26999 DeclareInputText{176}{
27000 \backslash
27001 ifmmode^
27002 \backslash
27003 circ
27004 \backslash
27005 else
27006 \backslash
27007 textdegree
27008 \backslash
27009 fi}
27010 \end_layout
27011
27012 \begin_layout Section
27013 Formelstile
27014 \begin_inset CommandInset label
27015 LatexCommand label
27016 name "sec:Formelstile"
27017
27018 \end_inset
27019
27020
27021 \begin_inset Index
27022 status collapsed
27023
27024 \begin_layout Plain Layout
27025 Formel ! Stile
27026 \end_layout
27027
27028 \end_inset
27029
27030
27031 \end_layout
27032
27033 \begin_layout Itemize
27034 Für abgesetzte Formeln gibt es zwei verschiedene Anordnungsstile:
27035 \end_layout
27036
27037 \begin_deeper
27038 \begin_layout Description
27039 Zentriert ist der voreingestellte Standard
27040 \end_layout
27041
27042 \begin_layout Description
27043 Eingerückt dazu muss im Menü 
27044 \family sans
27045 Dokument\SpecialChar \menuseparator
27046 Einstellungen
27047 \family default
27048  unter 
27049 \family sans
27050 Dokumentklasse
27051 \family default
27052  die Option 
27053 \series bold
27054 fleqn
27055 \series default
27056  eingeben werden
27057 \end_layout
27058
27059 \begin_layout Standard
27060 Wird 
27061 \series bold
27062 Eingerückt
27063 \series default
27064  verwendet, kann mit der Länge 
27065 \series bold
27066
27067 \backslash
27068 mathindent
27069 \series default
27070
27071 \begin_inset Index
27072 status collapsed
27073
27074 \begin_layout Plain Layout
27075 Befehle ! M ! 
27076 \backslash
27077 mathindent
27078 \end_layout
27079
27080 \end_inset
27081
27082  die Einrückung eingestellt werden.
27083  Soll der Abstand 15
27084 \begin_inset space \thinspace{}
27085 \end_inset
27086
27087 mm betragen, gibt man im LaTeX-Vorspann die Zeile
27088 \end_layout
27089
27090 \begin_layout Standard
27091
27092 \series bold
27093
27094 \backslash
27095 setlength{
27096 \backslash
27097 mathindent}{15mm}
27098 \end_layout
27099
27100 \begin_layout Standard
27101 ein.
27102  Wenn keine Länge vorgegeben wird, wird der voreingestellte Wert von 30
27103 \begin_inset space \thinspace{}
27104 \end_inset
27105
27106 pt verwendet.
27107 \end_layout
27108
27109 \end_deeper
27110 \begin_layout Itemize
27111 Und zwei verschiedene Nummerierungsstile:
27112 \end_layout
27113
27114 \begin_deeper
27115 \begin_layout Description
27116 Rechts ist der voreingestellte Standard
27117 \end_layout
27118
27119 \begin_layout Description
27120 Links dazu muss im Menü 
27121 \family sans
27122 Dokument\SpecialChar \menuseparator
27123 Einstellungen
27124 \family default
27125  unter 
27126 \family sans
27127 Dokumentklasse
27128 \family default
27129  die Option 
27130 \series bold
27131 leqno
27132 \series default
27133  eingeben werden
27134 \end_layout
27135
27136 \end_deeper
27137 \begin_layout Standard
27138
27139 \series bold
27140 fleqn
27141 \series default
27142  und 
27143 \series bold
27144 leqno
27145 \series default
27146  können auch gemeinsam verwendet werden.
27147  Dazu werden beide Optionen, durch ein Komma getrennt, hintereinander geschriebe
27148 n.
27149 \end_layout
27150
27151 \begin_layout Standard
27152 Die eingestellten Stile gelten für alle abgesetzten Formeln eines Dokuments.
27153  Möchte man jedoch in einem Dokument sowohl zentrierte als auch eingerückte
27154  ausgerichtete Formeln setzen, verwendet man den Stil 
27155 \series bold
27156 Zentriert
27157 \series default
27158 .
27159  Die einzurückenden Formeln setzt man dann in eine flalign-Umgebung, siehe
27160  
27161 \begin_inset CommandInset ref
27162 LatexCommand ref
27163 reference "sub:Flalign-Umgebung"
27164
27165 \end_inset
27166
27167 .
27168 \end_layout
27169
27170 \begin_layout Section
27171 Mehrzeilige Formeln
27172 \begin_inset CommandInset label
27173 LatexCommand label
27174 name "sec:Mehrzeilige-Formeln"
27175
27176 \end_inset
27177
27178
27179 \begin_inset Index
27180 status collapsed
27181
27182 \begin_layout Plain Layout
27183 Formel ! mehrzeilige
27184 \end_layout
27185
27186 \end_inset
27187
27188
27189 \end_layout
27190
27191 \begin_layout Subsection
27192 Allgemeines
27193 \end_layout
27194
27195 \begin_layout Standard
27196 In LyX werden mehrzeilige Formeln erstellt, wenn man in einer Formel 
27197 \family sans
27198 \series bold
27199 Strg-Enter
27200 \family default
27201 \series default
27202  drückt.
27203  Dies erzeugt eine 
27204 \series bold
27205 align-Umgebung
27206 \series default
27207 , die in 
27208 \begin_inset CommandInset ref
27209 LatexCommand ref
27210 reference "sub:Standard-align-Umgebung"
27211
27212 \end_inset
27213
27214  beschrieben ist.
27215 \end_layout
27216
27217 \begin_layout Standard
27218 Es gibt noch weitere mehrzeilige Formelumgebungen, die über das Menü 
27219 \family sans
27220 Einfügen\SpecialChar \menuseparator
27221 Mathe
27222 \family default
27223  erstellt werden können.
27224  Diese Umgebungen werden in den folgenden Kapiteln beschrieben.
27225 \end_layout
27226
27227 \begin_layout Standard
27228 In allen mehrzeiligen Formelumgebungen erstellt man eine neue Zeile, indem
27229  man 
27230 \family sans
27231 Strg-Enter
27232 \family default
27233  drückt.
27234  Um Spalten hinzuzufügen oder zu entfernen, können die Mathe-Werkzeugleistenknöp
27235 fe 
27236 \begin_inset Graphics
27237         filename ../../images/tabular-feature_append-row.png
27238         scale 85
27239
27240 \end_inset
27241
27242  bzw.
27243 \begin_inset space ~
27244 \end_inset
27245
27246
27247 \begin_inset Graphics
27248         filename ../../images/tabular-feature_delete-row.png
27249         scale 85
27250
27251 \end_inset
27252
27253  oder das Menü 
27254 \family sans
27255 Bearbeiten\SpecialChar \menuseparator
27256 Zeilen & Spalten
27257 \family default
27258  verwendet werden.
27259 \end_layout
27260
27261 \begin_layout Subsubsection
27262 Zeilenabstand
27263 \begin_inset CommandInset label
27264 LatexCommand label
27265 name "sub:Zeilenabstand"
27266
27267 \end_inset
27268
27269
27270 \begin_inset Index
27271 status collapsed
27272
27273 \begin_layout Plain Layout
27274 Formel ! mehrzeilige ! Zeilenabstand
27275 \end_layout
27276
27277 \end_inset
27278
27279
27280 \end_layout
27281
27282 \begin_layout Standard
27283 Bei mehrzeiligen Formeln fehlt manchmal etwas Platz zwischen den Zeilen:
27284 \begin_inset Formula \begin{eqnarray*}
27285 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}\\
27286 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\end{eqnarray*}
27287
27288 \end_inset
27289
27290
27291 \end_layout
27292
27293 \begin_layout Standard
27294 In LaTeX wird zusätzlicher Zeilenabstand als optionales Argument des Zeilenumbru
27295 chbefehls angegeben.
27296  Dies ist in LyX aber nicht möglich
27297 \begin_inset Foot
27298 status collapsed
27299
27300 \begin_layout Plain Layout
27301 siehe 
27302 \begin_inset CommandInset href
27303 LatexCommand href
27304 name "LyX-Fehler #1505"
27305 target "http://bugzilla.lyx.org/show_bug.cgi?id=1505"
27306
27307 \end_inset
27308
27309
27310 \end_layout
27311
27312 \end_inset
27313
27314 , weshalb man die ganze Formel im TeX-Modus eingeben muss.
27315  Um für unser Beispiel Leerraum einzufügen, gibt man am Ende der ersten
27316  Zeile den Befehl 
27317 \series bold
27318
27319 \backslash
27320
27321 \backslash
27322 [3mm]
27323 \series default
27324  ein.
27325  Damit erhält man: 
27326 \begin_inset ERT
27327 status collapsed
27328
27329 \begin_layout Plain Layout
27330
27331
27332 \backslash
27333 begin{eqnarray*}
27334 \end_layout
27335
27336 \begin_layout Plain Layout
27337
27338 B^{2}(B^{2}-2r_{g}^{2}+2x_{0}^{2}-2r_{k}^{2})+4x_{0}^{2}x^{2}+4x_{0}xD &
27339  = & 
27340 \backslash
27341 textrm{-}4x^{2}B^{2}+4x_{0}xB^{2}
27342 \backslash
27343
27344 \backslash
27345 [3mm]
27346 \end_layout
27347
27348 \begin_layout Plain Layout
27349
27350 4x^{2}
27351 \backslash
27352 left(B^{2}+x_{0}^{2}
27353 \backslash
27354 right)+4x_{0}x
27355 \backslash
27356 left(D-B^{2}
27357 \backslash
27358 right)+B^{2}
27359 \backslash
27360 left(B^{2}-2r_{g}^{2}+2x_{0}^{2}-2r_{k}^{2}
27361 \backslash
27362 right) & = & 0
27363 \end_layout
27364
27365 \begin_layout Plain Layout
27366
27367
27368 \backslash
27369 end{eqnarray*}
27370 \end_layout
27371
27372 \end_inset
27373
27374
27375 \end_layout
27376
27377 \begin_layout Standard
27378 \begin_inset VSpace bigskip
27379 \end_inset
27380
27381 Möchte man den Zeilenabstand für alle Zeilen einer Formel festlegen, verändert
27382  man die Länge 
27383 \series bold
27384
27385 \backslash
27386 jot
27387 \series default
27388
27389 \begin_inset Index
27390 status collapsed
27391
27392 \begin_layout Plain Layout
27393 Befehle ! J ! 
27394 \backslash
27395 jot
27396 \end_layout
27397
27398 \end_inset
27399
27400 .
27401  Es gilt 
27402 \begin_inset Formula $\mbox{Zeilenabstand}=\mathrm{6\, pt+\backslash jot}$
27403 \end_inset
27404
27405 .
27406  Voreingestellt ist für 
27407 \series bold
27408
27409 \backslash
27410 jot
27411 \series default
27412  der Wert 3
27413 \begin_inset space \thinspace{}
27414 \end_inset
27415
27416 pt.
27417  Um wie im vorigen Beispiel 3
27418 \begin_inset space \thinspace{}
27419 \end_inset
27420
27421 mm zusätzlichen Zeilenabstand zu erzeugen, gibt man den Befehl
27422 \end_layout
27423
27424 \begin_layout Standard
27425
27426 \series bold
27427
27428 \backslash
27429 setlength{
27430 \backslash
27431 jot}{3mm+3pt}
27432 \end_layout
27433
27434 \begin_layout Standard
27435 im TeX-Modus vor der Formel ein.
27436  Das setzt voraus, dass das LaTeX-Paket 
27437 \series bold
27438 calc
27439 \series default
27440
27441 \begin_inset Foot
27442 status collapsed
27443
27444 \begin_layout Plain Layout
27445
27446 \series bold
27447 calc
27448 \series default
27449  ist Teil jeder LaTeX-Standardinstallation.
27450 \end_layout
27451
27452 \end_inset
27453
27454
27455 \begin_inset Index
27456 status collapsed
27457
27458 \begin_layout Plain Layout
27459 Pakete ! calc
27460 \end_layout
27461
27462 \end_inset
27463
27464  im LaTeX-Vorspann mit der Zeile
27465 \end_layout
27466
27467 \begin_layout Standard
27468
27469 \series bold
27470
27471 \backslash
27472 usepackage{calc}
27473 \end_layout
27474
27475 \begin_layout Standard
27476 geladen wurde.
27477 \end_layout
27478
27479 \begin_layout Standard
27480 Man erhält: 
27481 \begin_inset ERT
27482 status collapsed
27483
27484 \begin_layout Plain Layout
27485
27486
27487 \backslash
27488 setlength{
27489 \backslash
27490 jot}{3mm+3pt}
27491 \end_layout
27492
27493 \end_inset
27494
27495
27496 \begin_inset Formula \begin{eqnarray*}
27497 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}\\
27498 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\end{eqnarray*}
27499
27500 \end_inset
27501
27502
27503 \end_layout
27504
27505 \begin_layout Standard
27506 \begin_inset ERT
27507 status collapsed
27508
27509 \begin_layout Plain Layout
27510
27511
27512 \backslash
27513 setlength{
27514 \backslash
27515 jot}{3pt}
27516 \end_layout
27517
27518 \end_inset
27519
27520  Um wieder zum voreingestellten Abstand zu wechseln, setzt man 
27521 \series bold
27522
27523 \backslash
27524 jot
27525 \series default
27526  auf den Wert 3
27527 \begin_inset space \thinspace{}
27528 \end_inset
27529
27530 pt.
27531 \end_layout
27532
27533 \begin_layout Subsubsection
27534 Spaltenabstand
27535 \begin_inset CommandInset label
27536 LatexCommand label
27537 name "sub:Spaltenabstand"
27538
27539 \end_inset
27540
27541
27542 \begin_inset Index
27543 status collapsed
27544
27545 \begin_layout Plain Layout
27546 Formel ! mehrzeilige ! Spaltenabstand
27547 \end_layout
27548
27549 \end_inset
27550
27551
27552 \end_layout
27553
27554 \begin_layout Standard
27555 Mehrzeilige Formeln bilden eine Matrix.
27556  Eine Formel in der Eqnarray-Umgebung ist z.
27557 \begin_inset space \thinspace{}
27558 \end_inset
27559
27560 B.
27561  eine dreispaltige Matrix.
27562  Durch Änderung des Spaltenabstands in dieser Umgebung, kann man den Leerraum
27563  neben den Relationszeichen ändern.
27564 \end_layout
27565
27566 \begin_layout Standard
27567 Der Spaltenabstand wird mit der Länge 
27568 \series bold
27569
27570 \backslash
27571 arraycolsep
27572 \series default
27573
27574 \begin_inset Index
27575 status collapsed
27576
27577 \begin_layout Plain Layout
27578 Befehle ! A ! 
27579 \backslash
27580 arraycolsep
27581 \end_layout
27582
27583 \end_inset
27584
27585  festgelegt, wobei gilt:
27586 \begin_inset Newline newline
27587 \end_inset
27588
27589 Spaltenabstand = 2
27590 \begin_inset space \thinspace{}
27591 \end_inset
27592
27593
27594 \series bold
27595
27596 \backslash
27597 arraycolsep
27598 \series default
27599 .
27600 \begin_inset Newline newline
27601 \end_inset
27602
27603 Der im TeX-Modus eingegebene Befehl
27604 \end_layout
27605
27606 \begin_layout Standard
27607
27608 \series bold
27609
27610 \backslash
27611 setlength{
27612 \backslash
27613 arraycolsep}{1cm}
27614 \end_layout
27615
27616 \begin_layout Standard
27617 bewirkt also für alle folgenden Formeln einen Spaltenabstand von 2
27618 \begin_inset space \thinspace{}
27619 \end_inset
27620
27621 cm.
27622  Um wieder zum voreingestellten Abstand zurückzukehren, setzt man 
27623 \series bold
27624
27625 \backslash
27626 arraycolsep
27627 \series default
27628  auf 5
27629 \begin_inset space \thinspace{}
27630 \end_inset
27631
27632 pt.
27633 \end_layout
27634
27635 \begin_layout Standard
27636 Eine Formel mit 2
27637 \begin_inset space \thinspace{}
27638 \end_inset
27639
27640 cm Spaltenabstand:
27641 \begin_inset ERT
27642 status collapsed
27643
27644 \begin_layout Plain Layout
27645
27646
27647 \backslash
27648 setlength{
27649 \backslash
27650 arraycolsep}{1cm}
27651 \end_layout
27652
27653 \end_inset
27654
27655
27656 \begin_inset Formula \begin{eqnarray*}
27657 A & = & B\\
27658 C & \ne & A\end{eqnarray*}
27659
27660 \end_inset
27661
27662 Eine Formel mit dem für Matrizen voreingestellten Spaltenabstand von 10
27663 \begin_inset space \thinspace{}
27664 \end_inset
27665
27666 pt:
27667 \begin_inset ERT
27668 status collapsed
27669
27670 \begin_layout Plain Layout
27671
27672
27673 \backslash
27674 setlength{
27675 \backslash
27676 arraycolsep}{5pt}
27677 \end_layout
27678
27679 \end_inset
27680
27681
27682 \begin_inset Formula \begin{eqnarray*}
27683 A & = & B\\
27684 C & \ne & A\end{eqnarray*}
27685
27686 \end_inset
27687
27688
27689 \end_layout
27690
27691 \begin_layout Subsubsection
27692 Lange Formeln
27693 \begin_inset Index
27694 status collapsed
27695
27696 \begin_layout Plain Layout
27697 Formel ! lange
27698 \end_layout
27699
27700 \end_inset
27701
27702
27703 \end_layout
27704
27705 \begin_layout Standard
27706 Lange Formeln kann man wie folgt setzen:
27707 \end_layout
27708
27709 \begin_layout Itemize
27710 Ist eine Seite der Gleichung deutlich kürzer als die Zeilenbreite, wählt
27711  man man diese als linke Seite und schreibt die rechte über zwei Zeilen:
27712 \begin_inset ERT
27713 status collapsed
27714
27715 \begin_layout Plain Layout
27716
27717
27718 \backslash
27719 medskip
27720 \end_layout
27721
27722 \end_inset
27723
27724  
27725 \begin_inset Formula \begin{eqnarray}
27726 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 \\
27727  &  & -\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}\end{eqnarray}
27728
27729 \end_inset
27730
27731
27732 \begin_inset ERT
27733 status collapsed
27734
27735 \begin_layout Plain Layout
27736
27737
27738 \backslash
27739 smallskip
27740 \end_layout
27741
27742 \end_inset
27743
27744
27745 \begin_inset Newline newline
27746 \end_inset
27747
27748 Das Minuszeichen zu Beginn der zweiten Zeile erscheint eigentlich nicht
27749  als Operator, da es das erste Zeichen der Zeile ist.
27750  Deswegen wäre es nicht von Leerraum umgeben und ließe sich schlecht vom
27751  Bruchstrich unterscheiden.
27752  Um das zu verhindern, wurde mit dem Befehl 
27753 \series bold
27754
27755 \backslash
27756 hspace{3pt}
27757 \series default
27758
27759 \begin_inset Foot
27760 status collapsed
27761
27762 \begin_layout Plain Layout
27763 mehr zu 
27764 \series bold
27765
27766 \backslash
27767 hspace
27768 \series default
27769  siehe 
27770 \begin_inset CommandInset ref
27771 LatexCommand ref
27772 reference "sub:Variabler-Leerraum"
27773
27774 \end_inset
27775
27776
27777 \end_layout
27778
27779 \end_inset
27780
27781
27782 \begin_inset Index
27783 status collapsed
27784
27785 \begin_layout Plain Layout
27786 Befehle ! H ! 
27787 \backslash
27788 hspace
27789 \end_layout
27790
27791 \end_inset
27792
27793  Leerraum hinter das Minuszeichen eingefügt.
27794 \end_layout
27795
27796 \begin_layout Itemize
27797 Sind beide Seiten der Gleichung zu lang, verwendet man den Befehl 
27798 \series bold
27799
27800 \backslash
27801 lefteqn
27802 \series default
27803
27804 \begin_inset Index
27805 status collapsed
27806
27807 \begin_layout Plain Layout
27808 Befehle ! L ! 
27809 \backslash
27810 lefteqn
27811 \end_layout
27812
27813 \end_inset
27814
27815 .
27816  Dieser wird in die erste Spalte der ersten Zeile eingegeben und bewirkt,
27817  dass alle weiteren Eingaben die folgenden Spalten überschreiben:
27818 \begin_inset ERT
27819 status collapsed
27820
27821 \begin_layout Plain Layout
27822
27823
27824 \backslash
27825 medskip
27826 \end_layout
27827
27828 \end_inset
27829
27830
27831 \begin_inset Formula \begin{eqnarray}
27832 \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 \\
27833  &  & -\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 \\
27834  &  & =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}\end{eqnarray}
27835
27836 \end_inset
27837
27838
27839 \begin_inset ERT
27840 status collapsed
27841
27842 \begin_layout Plain Layout
27843
27844
27845 \backslash
27846 smallskip
27847 \end_layout
27848
27849 \end_inset
27850
27851
27852 \begin_inset Newline newline
27853 \end_inset
27854
27855 Nachdem man 
27856 \series bold
27857
27858 \backslash
27859 lefteqn
27860 \series default
27861  eingegeben hat, befindet sich der Cursor in einem pinkfarbenen Kästchen,
27862  das gegenüber dem blauen leicht verschoben ist.
27863  In dieses wird die Formel eingegeben.
27864 \begin_inset ERT
27865 status collapsed
27866
27867 \begin_layout Plain Layout
27868
27869
27870 \backslash
27871 medskip
27872 \end_layout
27873
27874 \end_inset
27875
27876
27877 \begin_inset Newline newline
27878 \end_inset
27879
27880 Der Inhalt der weiteren Zeilen wird in die zweite oder eine andere Formelspalte
27881  eingegeben.
27882  Je größer die Spaltennummer in die eingegeben wurde, desto größer ist die
27883  Einrückung.
27884 \begin_inset ERT
27885 status collapsed
27886
27887 \begin_layout Plain Layout
27888
27889
27890 \backslash
27891 medskip
27892 \end_layout
27893
27894 \end_inset
27895
27896
27897 \begin_inset Newline newline
27898 \end_inset
27899
27900
27901 \begin_inset Note Greyedout
27902 status open
27903
27904 \begin_layout Plain Layout
27905 Bei der Verwendung von 
27906 \series bold
27907
27908 \backslash
27909 lefteqn
27910 \series default
27911  ist Folgendes zu beachten:
27912 \end_layout
27913
27914 \begin_layout Itemize
27915 Die Formel nutzt nicht die gesamte Seitenbreite aus.
27916  Würde man in obigem Beispiel der ersten Zeile den Term 
27917 \begin_inset Formula $-B^{2}$
27918 \end_inset
27919
27920  anfügen, befände sich dieser außerhalb des Seitenrands.
27921  Um die Breite besser auszunutzen, kann man zu Beginn der ersten Zeile negativen
27922  Leerraum einfügen.
27923 \end_layout
27924
27925 \begin_layout Itemize
27926 Aufgrund eines Fehlers in LyX kann der Cursor nicht mit der Maus in die
27927  erste Zeile gesetzt werden.
27928 \begin_inset Foot
27929 status collapsed
27930
27931 \begin_layout Plain Layout
27932 \begin_inset CommandInset href
27933 LatexCommand href
27934 name "LyX-Fehler #1429"
27935 target "http://bugzilla.lyx.org/show_bug.cgi?id=1429"
27936
27937 \end_inset
27938
27939
27940 \end_layout
27941
27942 \end_inset
27943
27944  Man kann den Cursor nur an den Anfang der Zeile setzen und ihn mit den
27945  Pfeiltasten bewegen.
27946 \end_layout
27947
27948 \end_inset
27949
27950
27951 \end_layout
27952
27953 \begin_layout Itemize
27954 Weitere Möglichkeiten lange Formeln zu setzen, bieten die in 
27955 \begin_inset CommandInset ref
27956 LatexCommand ref
27957 reference "sub:Multline-Umgebung"
27958
27959 \end_inset
27960
27961  und 
27962 \begin_inset CommandInset ref
27963 LatexCommand ref
27964 reference "sub:Mehrzeilige-Formelteile"
27965
27966 \end_inset
27967
27968  beschriebenen Umgebungen.
27969 \end_layout
27970
27971 \begin_layout Subsubsection
27972 Mehrzeilige Klammern
27973 \begin_inset CommandInset label
27974 LatexCommand label
27975 name "sub:Mehrzeilige-Klammern"
27976
27977 \end_inset
27978
27979
27980 \begin_inset Index
27981 status collapsed
27982
27983 \begin_layout Plain Layout
27984 Klammern ! mehrzeilige
27985 \end_layout
27986
27987 \end_inset
27988
27989
27990 \end_layout
27991
27992 \begin_layout Standard
27993 Bei Klammern, die über mehrere Zeilen gehen, tritt folgendes Problem auf:
27994 \begin_inset Formula \begin{eqnarray*}
27995 A & = & \sin(x)\left[\prod_{R=1}^{\infty}\frac{1}{R}+\cdots\right.\\
27996  &  & \left.\cdots+B-D\right]\end{eqnarray*}
27997
27998 \end_inset
27999
28000
28001 \end_layout
28002
28003 \begin_layout Standard
28004 Die schließende Klammer ist kleiner als die öffnende, denn Klammern variabler
28005  Größe dürfen nicht über mehrere Zeilen gehen.
28006 \end_layout
28007
28008 \begin_layout Standard
28009 Um die Größe für die Klammer der zweiten Zeile anzupassen, beendet man die
28010  erste Zeile mit 
28011 \series bold
28012
28013 \backslash
28014 right.
28015 \series default
28016
28017 \begin_inset Index
28018 status collapsed
28019
28020 \begin_layout Plain Layout
28021 Befehle ! R ! 
28022 \backslash
28023 right
28024 \end_layout
28025
28026 \end_inset
28027
28028  und beginnt die zweite Zeile mit 
28029 \series bold
28030
28031 \backslash
28032 left.
28033 \begin_inset Foot
28034 status collapsed
28035
28036 \begin_layout Plain Layout
28037 mehr zu 
28038 \series bold
28039
28040 \backslash
28041 left
28042 \series default
28043  und 
28044 \series bold
28045
28046 \backslash
28047 right
28048 \series default
28049  siehe 
28050 \begin_inset CommandInset ref
28051 LatexCommand ref
28052 reference "sub:Automatische-Klammergrößen"
28053
28054 \end_inset
28055
28056
28057 \end_layout
28058
28059 \end_inset
28060
28061
28062 \series default
28063
28064 \begin_inset Index
28065 status collapsed
28066
28067 \begin_layout Plain Layout
28068 Befehle ! L ! 
28069 \backslash
28070 left
28071 \end_layout
28072
28073 \end_inset
28074
28075 .
28076  Nach 
28077 \series bold
28078
28079 \backslash
28080 left.
28081
28082 \series default
28083  gibt man den Befehl 
28084 \series bold
28085
28086 \backslash
28087 vphantom
28088 \series default
28089
28090 \begin_inset ERT
28091 status collapsed
28092
28093 \begin_layout Plain Layout
28094
28095
28096 \backslash
28097 leer 
28098 \end_layout
28099
28100 \end_inset
28101
28102
28103 \series bold
28104
28105 \backslash
28106 prod
28107 \series default
28108 ^
28109 \begin_inset ERT
28110 status collapsed
28111
28112 \begin_layout Plain Layout
28113
28114
28115 \backslash
28116 leer 
28117 \end_layout
28118
28119 \end_inset
28120
28121
28122 \series bold
28123
28124 \backslash
28125 infty
28126 \series default
28127
28128 \begin_inset ERT
28129 status collapsed
28130
28131 \begin_layout Plain Layout
28132
28133
28134 \backslash
28135 leer 
28136 \end_layout
28137
28138 \end_inset
28139
28140
28141 \series bold
28142
28143 \begin_inset Formula $\downarrow$
28144 \end_inset
28145
28146 _R=1}
28147 \series default
28148
28149 \begin_inset Index
28150 status collapsed
28151
28152 \begin_layout Plain Layout
28153 Befehle ! V ! 
28154 \backslash
28155 vphantom
28156 \end_layout
28157
28158 \end_inset
28159
28160  ein, denn der Multiplikationsoperator mit seinen Grenzen ist das größte
28161  Symbol der ersten Zeile, und daran soll die zweite Klammer angepasst werden.
28162 \end_layout
28163
28164 \begin_layout Standard
28165 Das Ergebnis sieht so aus:
28166 \begin_inset Formula \begin{eqnarray*}
28167 A & = & \sin(x)\left[\prod_{R=1}^{\infty}\frac{1}{R}+\cdots\right.\\
28168  &  & \left.\vphantom{\prod_{R=1}^{\infty}}\cdots+B-D\right]\end{eqnarray*}
28169
28170 \end_inset
28171
28172
28173 \end_layout
28174
28175 \begin_layout Subsection
28176 Align-Umgebungen
28177 \end_layout
28178
28179 \begin_layout Standard
28180 Align-Umgebungen können für jede Art von mehrzeiligen Formeln verwendet
28181  werden.
28182  Sie sind besonders geeignet um mehrere Formeln nebeneinander zu setzen.
28183 \end_layout
28184
28185 \begin_layout Standard
28186 Align-Umgebungen bestehen aus Spalten.
28187  Die ungeradzahligen Spalten sind rechts-, die geradzahligen linksbündig
28188  ausgerichtet.
28189  Jede Zeile einer Align-Umgebung kann nummeriert werden.
28190 \end_layout
28191
28192 \begin_layout Standard
28193 Align-Umgebung werden über das Menü 
28194 \family sans
28195 Einfügen\SpecialChar \menuseparator
28196 Mathe
28197 \family default
28198  erstellt.
28199  Über das Menü 
28200 \family sans
28201 Bearbeiten\SpecialChar \menuseparator
28202 Mathe\SpecialChar \menuseparator
28203 Formelart
28204 \begin_inset space ~
28205 \end_inset
28206
28207 ändern
28208 \family default
28209  können bereits existierende Formeln in Align-Umgebungen umgewandelt werden.
28210 \end_layout
28211
28212 \begin_layout Standard
28213 Um Spalten hinzuzufügen oder zu entfernen, können die Mathe-Werkzeugleistenknöpf
28214
28215 \begin_inset Graphics
28216         filename ../../images/tabular-feature_append-column.png
28217         scale 85
28218
28219 \end_inset
28220
28221  bzw.
28222 \begin_inset space ~
28223 \end_inset
28224
28225
28226 \begin_inset Graphics
28227         filename ../../images/tabular-feature_delete-column.png
28228         scale 85
28229
28230 \end_inset
28231
28232  oder das Menü 
28233 \family sans
28234 Bearbeiten\SpecialChar \menuseparator
28235 Zeilen & Spalten
28236 \family default
28237  verwendet werden.
28238 \end_layout
28239
28240 \begin_layout Subsubsection
28241 Standard align-Umgebung
28242 \begin_inset CommandInset label
28243 LatexCommand label
28244 name "sub:Standard-align-Umgebung"
28245
28246 \end_inset
28247
28248
28249 \begin_inset Index
28250 status collapsed
28251
28252 \begin_layout Plain Layout
28253 Formel ! mehrzeilige ! align-Umgebung
28254 \end_layout
28255
28256 \end_inset
28257
28258
28259 \end_layout
28260
28261 \begin_layout Standard
28262 Diese Align-Umgebung wird erstellt, indem man in einer Formel 
28263 \family sans
28264 Strg-Enter
28265 \family default
28266  drückt oder das Menü 
28267 \family sans
28268 Einfügen\SpecialChar \menuseparator
28269 Mathe\SpecialChar \menuseparator
28270 AMS align-Umge\SpecialChar \-
28271 bung
28272 \family default
28273  aufruft.
28274 \end_layout
28275
28276 \begin_layout Standard
28277 Ein Beispiel für zwei nebeneinander stehende Formeln, die mit einer vierspaltige
28278 n align-Umgebung erzeugt wurden:
28279 \begin_inset Formula \begin{align*}
28280 A & =\sin(B) & C & =D\\
28281 C & \ne A & B & \ne D\end{align*}
28282
28283 \end_inset
28284
28285 Wie man sieht, werden die Formeln in dieser Umgebung so angeordnet, als
28286  würde sich vor der ersten und hinter jeder geraden Spalte ein 
28287 \series bold
28288
28289 \backslash
28290 hfill
28291 \begin_inset Foot
28292 status collapsed
28293
28294 \begin_layout Plain Layout
28295 mehr zu 
28296 \series bold
28297
28298 \backslash
28299 hfill
28300 \series default
28301  siehe 
28302 \begin_inset CommandInset ref
28303 LatexCommand ref
28304 reference "sub:Variabler-Leerraum"
28305
28306 \end_inset
28307
28308
28309 \end_layout
28310
28311 \end_inset
28312
28313
28314 \series default
28315  befinden.
28316  Ist der Formelstil 
28317 \series bold
28318 Eingerückt
28319 \begin_inset Foot
28320 status collapsed
28321
28322 \begin_layout Plain Layout
28323 Formelstile siehe 
28324 \begin_inset CommandInset ref
28325 LatexCommand ref
28326 reference "sec:Formelstile"
28327
28328 \end_inset
28329
28330
28331 \end_layout
28332
28333 \end_inset
28334
28335
28336 \series default
28337  gewählt, wird die Formel ohne den 
28338 \series bold
28339
28340 \backslash
28341 hfill
28342 \series default
28343  vor der ersten Spalte gesetzt.
28344 \end_layout
28345
28346 \begin_layout Subsubsection
28347 Alignat-Umgebung
28348 \begin_inset Index
28349 status collapsed
28350
28351 \begin_layout Plain Layout
28352 Formel ! mehrzeilige ! alignat-Umgebung
28353 \end_layout
28354
28355 \end_inset
28356
28357
28358 \end_layout
28359
28360 \begin_layout Standard
28361 In der alignat-Umgebung gibt es keinen vordefinierten Spaltenabstand.
28362  Man kann ihn manuell durch die in 
28363 \begin_inset CommandInset ref
28364 LatexCommand ref
28365 reference "sub:Leerraum"
28366
28367 \end_inset
28368
28369  beschriebenen Leerräume einfügen.
28370 \end_layout
28371
28372 \begin_layout Standard
28373 Das vorige Beispiel in der alignat-Umgebung, bei dem zu Beginn der zweiten
28374  Formel 1
28375 \begin_inset space \thinspace{}
28376 \end_inset
28377
28378 cm Leerraum eingefügt wurde:
28379 \begin_inset Formula \begin{alignat*}{2}
28380 A & =\sin(B) & \hspace{1cm}C & =D\\
28381 C & \ne A & B & \ne D\end{alignat*}
28382
28383 \end_inset
28384
28385 Weil man den Spaltenabstand für jede Spalte einzeln einstellen kann, eignet
28386  sich diese Umgebung besonders für drei und mehr nebeneinander gesetzte
28387  Formeln.
28388 \end_layout
28389
28390 \begin_layout Subsubsection
28391 Flalign-Umgebung
28392 \begin_inset CommandInset label
28393 LatexCommand label
28394 name "sub:Flalign-Umgebung"
28395
28396 \end_inset
28397
28398
28399 \begin_inset Index
28400 status collapsed
28401
28402 \begin_layout Plain Layout
28403 Formel ! mehrzeilige ! flalign-Umgebung
28404 \end_layout
28405
28406 \end_inset
28407
28408
28409 \end_layout
28410
28411 \begin_layout Standard
28412 Bei dieser Umgebung werden die ersten beiden Spalten immer so weit links
28413  und die letzten beiden Spalten so weit rechts wie möglich gesetzt.
28414  Dazu ein Beispiel:
28415 \begin_inset Formula \begin{flalign*}
28416 A & =1 & B & =2 & C & =3\\
28417 X & =\textrm{-}1 & Y & =\textrm{-}2 & Z & =4\end{flalign*}
28418
28419 \end_inset
28420
28421
28422 \end_layout
28423
28424 \begin_layout Standard
28425 Erzeugt man eine flalign-Umgebung mit ungerader Spaltenanzahl und gibt in
28426  die letzte Spalte eine leere TeX-Klammer ein, kann man einzelne Formeln
28427  im Dokument links setzen obwohl der Formelstil 
28428 \series bold
28429 Zentriert
28430 \series default
28431  eingestellt ist.
28432  Als Beispiel die eingerückte ausgerichtete Formel 
28433 \begin_inset CommandInset ref
28434 LatexCommand eqref
28435 reference "eq:VolInt"
28436
28437 \end_inset
28438
28439 :
28440 \begin_inset Formula \begin{flalign}
28441 \hspace{30pt}\iiint\limits _{V}X\,\mathrm{d}V & =U & {}\end{flalign}
28442
28443 \end_inset
28444
28445 In den ersten beiden Spalten befindet sich die Formel.
28446  Damit sie wie beim Formelstil 
28447 \series bold
28448 Eingerückt
28449 \series default
28450  vom Rand etwas abgesetzt ist, wurde zu Beginn der ersten Spalte 30
28451 \begin_inset space \thinspace{}
28452 \end_inset
28453
28454 pt Leerraum eingefügt.
28455 \end_layout
28456
28457 \begin_layout Subsection
28458 Eqnarray-Umgebung
28459 \begin_inset Index
28460 status collapsed
28461
28462 \begin_layout Plain Layout
28463 Formel ! mehrzeilige ! Eqnarray-Umgebung
28464 \end_layout
28465
28466 \end_inset
28467
28468
28469 \end_layout
28470
28471 \begin_layout Standard
28472 Hat man diese Umgebung erzeugt, erscheinen drei blaue Kästchen.
28473  Der Inhalt des ersten Kästchens wird rechtsbündig, der des letzten linksbündig
28474  ausgerichtet.
28475  Der Inhalt des mittleren Kästchens erscheint zentriert und etwas kleiner,
28476  da dieses Kästchen nur für Relationzeichen gedacht ist.
28477 \begin_inset Formula \begin{eqnarray*}
28478 \frac{ABC}{D} & \frac{ABC}{D} & \frac{ABC}{D}\\
28479 AB & AB & AB\\
28480 A & = & A\end{eqnarray*}
28481
28482 \end_inset
28483
28484
28485 \end_layout
28486
28487 \begin_layout Subsection
28488 Gather-Umgebung
28489 \begin_inset Index
28490 status collapsed
28491
28492 \begin_layout Plain Layout
28493 Formel ! mehrzeilige ! Gather-Umgebung
28494 \end_layout
28495
28496 \end_inset
28497
28498
28499 \end_layout
28500
28501 \begin_layout Standard
28502 Diese Umgebung besteht nur aus einer Spalte, deren Inhalt zentriert ist.
28503  Jede Zeile kann nummeriert werden.
28504 \begin_inset Formula \begin{gather}
28505 A=1\\
28506 X=\textrm{-}1\end{gather}
28507
28508 \end_inset
28509
28510
28511 \end_layout
28512
28513 \begin_layout Subsection
28514 Multline-Umgebung
28515 \begin_inset CommandInset label
28516 LatexCommand label
28517 name "sub:Multline-Umgebung"
28518
28519 \end_inset
28520
28521
28522 \begin_inset Index
28523 status collapsed
28524
28525 \begin_layout Plain Layout
28526 Formel ! mehrzeilige ! Multline-Umgebung
28527 \end_layout
28528
28529 \end_inset
28530
28531
28532 \end_layout
28533
28534 \begin_layout Standard
28535 Die multline-Umgebung besteht wie die Gather-Umgebung nur aus einer Spalte.
28536  Jedoch ist die erste Zeile links, die letzte rechts ausgerichtet.
28537  Alle anderen Zeilen sind zentriert.
28538  Dadurch eignet sich diese Umgebung besonders für lange Formeln.
28539  Als Beispiel Formel 
28540 \begin_inset CommandInset ref
28541 LatexCommand eqref
28542 reference "eq:lefteqn"
28543
28544 \end_inset
28545
28546  in der multline-Umgebung:
28547 \begin_inset Formula \begin{multline}
28548 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}\\
28549 -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}\\
28550 =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}}\end{multline}
28551
28552 \end_inset
28553
28554
28555 \end_layout
28556
28557 \begin_layout Standard
28558 In der Ausgabe erscheint nur die letzte (erste) Zeile einer multline-Umgebung
28559  nummeriert, wenn rechts (links) nummeriert wird.
28560 \begin_inset Foot
28561 status collapsed
28562
28563 \begin_layout Plain Layout
28564 Nummerierungsstile siehe 
28565 \begin_inset CommandInset ref
28566 LatexCommand ref
28567 reference "sec:Formelstile"
28568
28569 \end_inset
28570
28571
28572 \end_layout
28573
28574 \end_inset
28575
28576
28577 \end_layout
28578
28579 \begin_layout Standard
28580 Mit den Befehlen 
28581 \series bold
28582
28583 \backslash
28584 shoveright
28585 \begin_inset Index
28586 status collapsed
28587
28588 \begin_layout Plain Layout
28589 Befehle ! S ! 
28590 \backslash
28591 shoveright
28592 \end_layout
28593
28594 \end_inset
28595
28596
28597 \series default
28598  und 
28599 \series bold
28600
28601 \backslash
28602 shoveleft
28603 \begin_inset Index
28604 status collapsed
28605
28606 \begin_layout Plain Layout
28607 Befehle ! S ! 
28608 \backslash
28609 shoveleft
28610 \end_layout
28611
28612 \end_inset
28613
28614
28615 \series default
28616  kann eine zentrierte Zeile rechts bzw.
28617  links ausgerichtet werden.
28618  Die Befehle werden folgendermaßen verwendet:
28619 \end_layout
28620
28621 \begin_layout Standard
28622
28623 \series bold
28624
28625 \backslash
28626 shoveright{Zeileninhalt}
28627 \series default
28628  bzw.
28629  
28630 \series bold
28631
28632 \backslash
28633 shoveleft{Zeileninhalt}
28634 \end_layout
28635
28636 \begin_layout Standard
28637 \begin_inset VSpace medskip
28638 \end_inset
28639
28640 Die Länge 
28641 \series bold
28642
28643 \backslash
28644 multlinegap
28645 \begin_inset Index
28646 status collapsed
28647
28648 \begin_layout Plain Layout
28649 Befehle ! M ! 
28650 \backslash
28651 multlinegap
28652 \end_layout
28653
28654 \end_inset
28655
28656
28657 \series default
28658  legt den Abstand der ersten Zeile vom linken Seitenrand fest.
28659  Voreingestellt ist die Länge 0
28660 \begin_inset space \thinspace{}
28661 \end_inset
28662
28663 pt.
28664 \end_layout
28665
28666 \begin_layout Standard
28667 Als Beispiel obige Formel, vor der im TeX-Modus der Befehl
28668 \end_layout
28669
28670 \begin_layout Standard
28671
28672 \series bold
28673
28674 \backslash
28675 setlength{
28676 \backslash
28677 multlinegap}{2cm}
28678 \end_layout
28679
28680 \begin_layout Standard
28681 eingegeben wurde:
28682 \begin_inset ERT
28683 status collapsed
28684
28685 \begin_layout Plain Layout
28686
28687
28688 \backslash
28689 setlength{
28690 \backslash
28691 multlinegap}{2cm}
28692 \end_layout
28693
28694 \end_inset
28695
28696
28697 \begin_inset Formula \begin{multline}
28698 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}\\
28699 \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}}\\
28700 =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}}\end{multline}
28701
28702 \end_inset
28703
28704
28705 \begin_inset ERT
28706 status collapsed
28707
28708 \begin_layout Plain Layout
28709
28710
28711 \backslash
28712 setlength{
28713 \backslash
28714 multlinegap}{0pt}
28715 \end_layout
28716
28717 \end_inset
28718
28719
28720 \end_layout
28721
28722 \begin_layout Standard
28723 Die zweite Zeile wurde mit 
28724 \series bold
28725
28726 \backslash
28727 shoveleft
28728 \series default
28729  linksbündig ausgerichtet.
28730 \end_layout
28731
28732 \begin_layout Subsection
28733 Mehrzeilige Formelteile
28734 \begin_inset CommandInset label
28735 LatexCommand label
28736 name "sub:Mehrzeilige-Formelteile"
28737
28738 \end_inset
28739
28740
28741 \begin_inset Index
28742 status collapsed
28743
28744 \begin_layout Plain Layout
28745 Formel ! mehrzeilige ! Formelteile
28746 \end_layout
28747
28748 \end_inset
28749
28750
28751 \end_layout
28752
28753 \begin_layout Standard
28754 Möchte man nur Teile einer Formel mehrzeilig darstellen, verwendet man eine
28755  der folgenden Umgebungen: 
28756 \series bold
28757 aligned
28758 \series default
28759
28760 \series bold
28761 alignedat
28762 \series default
28763
28764 \series bold
28765 gathered
28766 \series default
28767  oder 
28768 \series bold
28769 split
28770 \series default
28771 .
28772  Sie können über das Menü 
28773 \family sans
28774 Einfügen\SpecialChar \menuseparator
28775 Mathe
28776 \family default
28777  oder mit Befehlen eingefügt werden, wie in diesem Abschnitt beschrieben.
28778 \end_layout
28779
28780 \begin_layout Standard
28781 Die ersten drei haben dieselben Eigenschaften wie die entsprechenden mehrzeilige
28782 n Formel\SpecialChar \-
28783 umgebungen.
28784  Man kann jedoch zusätzlich weitere Formelteile daneben setzen.
28785  Dazu ein Beispiel:
28786 \begin_inset Formula \[
28787 \left.\begin{aligned}\Delta x\Delta p & \ge\frac{\hbar}{2}\\
28788 \Delta E\Delta t & \ge\frac{\hbar}{2}\end{aligned}
28789 \right\} \textrm{Unbestimmtheitsrelationen}\]
28790
28791 \end_inset
28792
28793
28794 \end_layout
28795
28796 \begin_layout Standard
28797 Um diese Formel zu erhalten, wird eine abgesetzte Formel erstellt, in die
28798  der Befehl 
28799 \series bold
28800
28801 \backslash
28802 aligned
28803 \begin_inset Index
28804 status collapsed
28805
28806 \begin_layout Plain Layout
28807 Befehle ! A ! 
28808 \backslash
28809 aligned
28810 \end_layout
28811
28812 \end_inset
28813
28814
28815 \series default
28816  eingegeben wird.
28817  Es erscheint eine lila Box um das blaue Formelkästchen in der man nun Spalten
28818  und Zeilen hinzufügen kann.
28819  Außerhalb der mehrzeiligen Umgebung können Formelteile, wie die Klammer,
28820  gesetzt werden.
28821 \end_layout
28822
28823 \begin_layout Standard
28824 Die aligned-Umgebung eignet sich auch für lange Formeln, deren Zeilen horizontal
28825  ausgerichtet sind.
28826  Verwendet man aligned in einer abgesetzten Formel, hat das den Vorteil,
28827  dass die Formelnummer vertikal mittig hinter den Zeilen steht.
28828  Als Beispiel Formel 
28829 \begin_inset CommandInset ref
28830 LatexCommand eqref
28831 reference "eq:kurzlang"
28832
28833 \end_inset
28834
28835  in der aligned-Umgebung:
28836 \begin_inset Formula \begin{equation}
28837 \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}|}\\
28838  & -\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}|}\end{aligned}
28839 \end{equation}
28840
28841 \end_inset
28842
28843
28844 \end_layout
28845
28846 \begin_layout Standard
28847 Möchte man die Umgebung 
28848 \series bold
28849 alignedat
28850 \series default
28851
28852 \series bold
28853 gathered
28854 \series default
28855  oder 
28856 \series bold
28857 split
28858 \series default
28859  verwenden, gibt man den Befehl 
28860 \series bold
28861
28862 \backslash
28863 alignedat
28864 \series default
28865 ,
28866 \begin_inset Index
28867 status collapsed
28868
28869 \begin_layout Plain Layout
28870 Befehle ! A ! 
28871 \backslash
28872 alignedat
28873 \end_layout
28874
28875 \end_inset
28876
28877  
28878 \series bold
28879
28880 \backslash
28881 gathered
28882 \series default
28883
28884 \begin_inset Index
28885 status collapsed
28886
28887 \begin_layout Plain Layout
28888 Befehle ! G ! 
28889 \backslash
28890 gathered
28891 \end_layout
28892
28893 \end_inset
28894
28895  bzw.
28896  
28897 \series bold
28898
28899 \backslash
28900 split
28901 \series default
28902
28903 \begin_inset Index
28904 status collapsed
28905
28906 \begin_layout Plain Layout
28907 Befehle ! S ! 
28908 \backslash
28909 split
28910 \end_layout
28911
28912 \end_inset
28913
28914  ein.
28915  Die split-Umgebung hat dieselben Eigenschaften wie die aligned-Umgebung,
28916  jedoch darf sie nur zwei Spalten enthalten.
28917 \end_layout
28918
28919 \begin_layout Subsection
28920 Text in mehrzeiligen Formeln
28921 \begin_inset CommandInset label
28922 LatexCommand label
28923 name "sub:Text-in-mehrzeiligen"
28924
28925 \end_inset
28926
28927
28928 \begin_inset Index
28929 status collapsed
28930
28931 \begin_layout Plain Layout
28932 Text ! in Formeln
28933 \end_layout
28934
28935 \end_inset
28936
28937
28938 \begin_inset Index
28939 status collapsed
28940
28941 \begin_layout Plain Layout
28942 Formel ! mehrzeilige ! Text
28943 \end_layout
28944
28945 \end_inset
28946
28947
28948 \end_layout
28949
28950 \begin_layout Standard
28951 Bei den Align-Umgebungen sowie der multline- und gather-Umgebung besteht
28952  die Möglichkeit Text einzufügen, der in einer eigenen Zeile erscheint und
28953  die Ausrichtung der Spalten nicht beeinflusst.
28954  Dazu wird der Befehl 
28955 \series bold
28956
28957 \backslash
28958 intertext
28959 \begin_inset Index
28960 status collapsed
28961
28962 \begin_layout Plain Layout
28963 Befehle ! I ! 
28964 \backslash
28965 intertext
28966 \end_layout
28967
28968 \end_inset
28969
28970
28971 \series default
28972  nach folgendem Schema benutzt:
28973 \end_layout
28974
28975 \begin_layout Standard
28976
28977 \series bold
28978
28979 \backslash
28980 intertext{Text}
28981 \end_layout
28982
28983 \begin_layout Standard
28984 Der Text sollte nicht länger als eine Zeile sein, da er nicht umgebrochen
28985  werden kann.
28986  Weil LyX 
28987 \series bold
28988
28989 \backslash
28990 intertext
28991 \series default
28992  noch nicht direkt unterstützt, schreibt man den Text als mathematischen
28993  Text.
28994  
28995 \series bold
28996
28997 \backslash
28998 intertext
28999 \series default
29000  muss dabei zu Beginn einer Zeile stehen und erscheint in der Ausgabe über
29001  dieser Zeile.
29002  Ein Beispiel bei dem der Text zu Beginn der zweiten Zeile eingegeben wurde:
29003 \begin_inset Formula \begin{align}
29004 I & =a\sqrt{2}\int_{0}^{2\pi}\sqrt{1+\cos(\phi)}\;\mathrm{d}\phi\\
29005 \intertext{\text{Integrand ist symmetrisch zu $\phi=\pi$, daher}} & =2a\sqrt{2}\int_{0}^{\pi}\sqrt{1+\cos(\phi)}\;\mathrm{d}\phi\end{align}
29006
29007 \end_inset
29008
29009
29010 \end_layout
29011
29012 \begin_layout Section
29013 Formelnummerierung
29014 \begin_inset Index
29015 status collapsed
29016
29017 \begin_layout Plain Layout
29018 Formelnummerierung
29019 \end_layout
29020
29021 \end_inset
29022
29023
29024 \begin_inset Index
29025 status collapsed
29026
29027 \begin_layout Plain Layout
29028 Formel ! Nummerierung|see
29029 \begin_inset ERT
29030 status collapsed
29031
29032 \begin_layout Plain Layout
29033
29034 {
29035 \end_layout
29036
29037 \end_inset
29038
29039 Formelnummerierung
29040 \begin_inset ERT
29041 status collapsed
29042
29043 \begin_layout Plain Layout
29044
29045 }
29046 \end_layout
29047
29048 \end_inset
29049
29050
29051 \end_layout
29052
29053 \end_inset
29054
29055
29056 \end_layout
29057
29058 \begin_layout Subsection
29059 Allgemeines
29060 \end_layout
29061
29062 \begin_layout Standard
29063 Nummerierte Formeln können mit dem Menü 
29064 \family sans
29065 Einfügen\SpecialChar \menuseparator
29066 Mathe\SpecialChar \menuseparator
29067 Nummerierte
29068 \begin_inset space ~
29069 \end_inset
29070
29071 Formel
29072 \family default
29073  (Tastenkürzel 
29074 \family sans
29075 Strg-Alt
29076 \begin_inset space ~
29077 \end_inset
29078
29079 n
29080 \family default
29081 ) erstellt, bestehende Formeln über das Menü 
29082 \family sans
29083 Bearbeiten\SpecialChar \menuseparator
29084 Mathe\SpecialChar \menuseparator
29085 Nummerierung
29086 \begin_inset space ~
29087 \end_inset
29088
29089 an/aus
29090 \family default
29091  (Tastenkürzel 
29092 \family sans
29093 Alt-m
29094 \begin_inset space ~
29095 \end_inset
29096
29097 n
29098 \family default
29099 ) nummeriert werden.
29100  Die Formelnummer erscheint in LyX hinter der Formel als Raute in runden
29101  Klammern.
29102  Im Ausdruck erscheint anstelle der Raute die Formelnummer.
29103 \end_layout
29104
29105 \begin_layout Standard
29106 Wird in mehrzeiligen Formeln die Nummerierung angeschaltet, werden alle
29107  Zeilen nummeriert.
29108  Man kann jedoch über das Menü 
29109 \family sans
29110 Bearbeiten\SpecialChar \menuseparator
29111 Mathe\SpecialChar \menuseparator
29112 Zeilennummerierung an/aus
29113 \family default
29114  (Tastenkürzel 
29115 \family sans
29116 Alt-m
29117 \begin_inset space ~
29118 \end_inset
29119
29120 N
29121 \family default
29122 ) für jede Zeile die Nummerierung festlegen.
29123 \end_layout
29124
29125 \begin_layout Standard
29126 Außer eingebetteten können alle Formeln in zwei verschiedenen Stilen nummeriert
29127  werden, siehe 
29128 \begin_inset CommandInset ref
29129 LatexCommand ref
29130 reference "sec:Formelstile"
29131
29132 \end_inset
29133
29134 .
29135 \end_layout
29136
29137 \begin_layout Subsection
29138 Querverweise
29139 \begin_inset CommandInset label
29140 LatexCommand label
29141 name "sub:Querverweise"
29142
29143 \end_inset
29144
29145
29146 \begin_inset Index
29147 status collapsed
29148
29149 \begin_layout Plain Layout
29150 Querverweise ! auf Formeln
29151 \end_layout
29152
29153 \end_inset
29154
29155
29156 \end_layout
29157
29158 \begin_layout Standard
29159 Es kann auf alle Formeln verwiesen werden, die eine Marke besitzen.
29160  Eine Marke wird mit dem Menü 
29161 \family sans
29162 Einfügen\SpecialChar \menuseparator
29163 Marke
29164 \family default
29165  oder dem Werkzeugleistenknopf 
29166 \begin_inset Graphics
29167         filename ../../images/label-insert.png
29168         scale 85
29169
29170 \end_inset
29171
29172  gesetzt.
29173  Dabei muss sich der Cursor in einer abgesetzten Formel befinden.
29174  Es erscheint ein Eingabefeld mit dem voreingestellten Eintrag 
29175 \series bold
29176 eq:
29177 \series default
29178 , nachdem der eigentliche Markenname eingegeben wird.
29179  Der voreingestellte Eintrag steht für 
29180 \begin_inset Quotes gld
29181 \end_inset
29182
29183 equation
29184 \begin_inset Quotes grd
29185 \end_inset
29186
29187  und erleichtert bei größeren Dokumenten die Zuordnung, dass die Marke zu
29188  einer Formel und nicht zu einem Kapitel gehört.
29189  Um eine Marke zu ändern, wählt man wieder das Menü 
29190 \family sans
29191 Einfügen\SpecialChar \menuseparator
29192 Marke
29193 \family default
29194 .
29195 \end_layout
29196
29197 \begin_layout Standard
29198 Der Name der Marke erscheint in LyX in zwei runden Klammern hinter der Formel.
29199  Eine Formel mit Marke wird immer nummeriert.
29200 \end_layout
29201
29202 \begin_layout Standard
29203 Querverweise werden mit dem Menü 
29204 \family sans
29205 Einfügen\SpecialChar \menuseparator
29206 Querverweis
29207 \family default
29208  oder dem Werkzeugleistenknopf 
29209 \begin_inset Graphics
29210         filename ../../images/dialog-show-new-inset_ref.png
29211         scale 85
29212
29213 \end_inset
29214
29215  eingefügt.
29216  Ein Querverweis auf Formeln erscheint im Ausdruck als Formelnummer.
29217  Wenn man im Querverweis Dialogfenster das Format 
29218 \series bold
29219 (<Querverweis>)
29220 \series default
29221  wählt, erscheint der Querverweis als Formelnummer in Klammern.
29222 \begin_inset Newline newline
29223 \end_inset
29224
29225 Drückt man in LyX mit der rechten Maustaste auf einen Querverweis, gelangt
29226  man zur Formel auf die verwiesen wird.
29227 \end_layout
29228
29229 \begin_layout Standard
29230 Als Beispiel folgen Querverweise zu Formeln aus diesem Kapitel:
29231 \begin_inset Note Note
29232 status open
29233
29234 \begin_layout Plain Layout
29235 Man beachte die unterschiedlichen Querverweistypen.
29236 \end_layout
29237
29238 \end_inset
29239
29240
29241 \end_layout
29242
29243 \begin_layout Standard
29244 Die Gleichungen 
29245 \begin_inset CommandInset ref
29246 LatexCommand eqref
29247 reference "eq:tag"
29248
29249 \end_inset
29250
29251  und 
29252 \begin_inset CommandInset ref
29253 LatexCommand eqref
29254 reference "eq:c"
29255
29256 \end_inset
29257
29258  sind äquivalent.
29259  In (
29260 \begin_inset CommandInset ref
29261 LatexCommand ref
29262 reference "eq:Lat"
29263
29264 \end_inset
29265
29266 ) werden im Gegensatz zu (
29267 \begin_inset CommandInset ref
29268 LatexCommand ref
29269 reference "eq:Roem"
29270
29271 \end_inset
29272
29273 ) große lateinische Buchstaben zur Nummerierung verwendet.
29274 \end_layout
29275
29276 \begin_layout Standard
29277 \begin_inset VSpace medskip
29278 \end_inset
29279
29280 Ist im Argument von 
29281 \series bold
29282
29283 \backslash
29284 tag
29285 \begin_inset Foot
29286 status collapsed
29287
29288 \begin_layout Plain Layout
29289
29290 \series bold
29291
29292 \backslash
29293 tag
29294 \series default
29295  ist in 
29296 \begin_inset CommandInset ref
29297 LatexCommand ref
29298 reference "sub:Benutzerdefinierte-Nummerierung"
29299
29300 \end_inset
29301
29302  beschrieben.
29303 \end_layout
29304
29305 \end_inset
29306
29307
29308 \series default
29309  wie in 
29310 \begin_inset CommandInset ref
29311 LatexCommand ref
29312 reference "sub:Absatzboxen"
29313
29314 \end_inset
29315
29316  eine Box angegeben, kann nicht auf die Formel verwiesen werden.
29317 \end_layout
29318
29319 \begin_layout Subsection
29320 Unternummerierung
29321 \begin_inset Index
29322 status collapsed
29323
29324 \begin_layout Plain Layout
29325 Formelnummerierung ! Unternummerierung
29326 \end_layout
29327
29328 \end_inset
29329
29330
29331 \end_layout
29332
29333 \begin_layout Standard
29334 Möchte man Formeln weiter untergliedern, kann man das mit Hilfe der Befehle
29335  
29336 \begin_inset Newline newline
29337 \end_inset
29338
29339
29340 \series bold
29341
29342 \backslash
29343 begin{subequations}
29344 \series default
29345  und 
29346 \series bold
29347
29348 \backslash
29349 end{subequations}
29350 \series default
29351  erreichen.
29352  Beide Befehle werden im TeX-Modus eingegeben.
29353 \end_layout
29354
29355 \begin_layout Standard
29356 Dazu ein Beispiel:
29357 \begin_inset Formula \begin{equation}
29358 A=C-B\label{eq:a}\end{equation}
29359
29360 \end_inset
29361
29362
29363 \begin_inset ERT
29364 status collapsed
29365
29366 \begin_layout Plain Layout
29367
29368
29369 \backslash
29370 addtocounter{equation}{-1}
29371 \end_layout
29372
29373 \end_inset
29374
29375
29376 \begin_inset ERT
29377 status collapsed
29378
29379 \begin_layout Plain Layout
29380
29381
29382 \backslash
29383 begin{subequations}
29384 \end_layout
29385
29386 \end_inset
29387
29388
29389 \begin_inset VSpace -5mm
29390 \end_inset
29391
29392
29393 \begin_inset Formula \begin{equation}
29394 B=C-A\label{eq:b}\end{equation}
29395
29396 \end_inset
29397
29398
29399 \begin_inset Formula \begin{equation}
29400 C=A+B\label{eq:c}\end{equation}
29401
29402 \end_inset
29403
29404
29405 \end_layout
29406
29407 \begin_layout Standard
29408 \begin_inset ERT
29409 status collapsed
29410
29411 \begin_layout Plain Layout
29412
29413
29414 \backslash
29415 end{subequations}
29416 \end_layout
29417
29418 \end_inset
29419
29420
29421 \end_layout
29422
29423 \begin_layout Standard
29424 Um das Beispiel zu erstellen, geht man folgendermaßen vor:
29425 \end_layout
29426
29427 \begin_layout Enumerate
29428 erste Formel eingeben
29429 \end_layout
29430
29431 \begin_layout Enumerate
29432
29433 \series bold
29434
29435 \backslash
29436 addtocounter{equation}{-1} 
29437 \backslash
29438 begin{subequations}
29439 \begin_inset Index
29440 status collapsed
29441
29442 \begin_layout Plain Layout
29443 Befehle ! A ! 
29444 \backslash
29445 addtocounter
29446 \end_layout
29447
29448 \end_inset
29449
29450
29451 \begin_inset Newline newline
29452 \end_inset
29453
29454
29455 \series default
29456 nach der ersten Formel einfügen
29457 \end_layout
29458
29459 \begin_layout Enumerate
29460 zweite Formel eingeben
29461 \end_layout
29462
29463 \begin_layout Enumerate
29464 dritte Formel eingeben
29465 \end_layout
29466
29467 \begin_layout Enumerate
29468
29469 \series bold
29470
29471 \backslash
29472 end{subequations}
29473 \series default
29474  nach der dritten Formel einfügen
29475 \end_layout
29476
29477 \begin_layout Standard
29478 Jede Formel, die zwischen den Befehlen 
29479 \series bold
29480
29481 \backslash
29482 begin
29483 \series default
29484  und 
29485 \series bold
29486
29487 \backslash
29488 end
29489 \series default
29490  steht, wird mit a, b, c, \SpecialChar \ldots{}
29491  untergliedert.
29492  Bei mehrzeiligen Formeln wird jede Zeile untergliedert.
29493  Alle untergliederten Formeln gelten als 
29494 \emph on
29495 eine
29496 \emph default
29497  nummerierte Formel.
29498  Da jede nummerierte Formel den Formelzähler 
29499 \series bold
29500 equation
29501 \series default
29502  um Eins erhöht, ist der Befehl 
29503 \series bold
29504
29505 \backslash
29506 addtocounter
29507 \series default
29508  notwendig um den Zähler wieder zu erniedrigen.
29509  Ansonsten würden die Formeln 
29510 \begin_inset CommandInset ref
29511 LatexCommand eqref
29512 reference "eq:a"
29513
29514 \end_inset
29515
29516
29517 \begin_inset CommandInset ref
29518 LatexCommand eqref
29519 reference "eq:b"
29520
29521 \end_inset
29522
29523
29524 \begin_inset CommandInset ref
29525 LatexCommand eqref
29526 reference "eq:c"
29527
29528 \end_inset
29529
29530  als 
29531 \begin_inset CommandInset ref
29532 LatexCommand eqref
29533 reference "eq:a"
29534
29535 \end_inset
29536
29537
29538 \begin_inset CommandInset ref
29539 LatexCommand eqref
29540 reference "eq:d"
29541
29542 \end_inset
29543
29544
29545 \begin_inset CommandInset ref
29546 LatexCommand eqref
29547 reference "eq:f"
29548
29549 \end_inset
29550
29551  nummeriert werden.
29552 \end_layout
29553
29554 \begin_layout Standard
29555 Durch die Eingabe der Befehle im TeX-Modus wird zwischen den ersten beiden
29556  Formeln automatisch etwas Leerraum erstellt.
29557  Um dies rückgängig zu machen, fügt man nach dem Befehl 
29558 \series bold
29559
29560 \backslash
29561 begin{subequations}
29562 \series default
29563  -5
29564 \begin_inset space \thinspace{}
29565 \end_inset
29566
29567 mm vertikalen Leerraum ein.
29568  Ist der Formelstil 
29569 \series bold
29570 Eingerückt
29571 \begin_inset Foot
29572 status collapsed
29573
29574 \begin_layout Plain Layout
29575 Formelstile siehe 
29576 \begin_inset CommandInset ref
29577 LatexCommand ref
29578 reference "sec:Formelstile"
29579
29580 \end_inset
29581
29582
29583 \end_layout
29584
29585 \end_inset
29586
29587
29588 \series default
29589  gewählt, fügt man -7
29590 \begin_inset space \thinspace{}
29591 \end_inset
29592
29593 mm Leerraum ein.
29594 \end_layout
29595
29596 \begin_layout Standard
29597 Hier ist ein Beispiel für mehrzeilige Formeln, bei dem die Nummerierung
29598  der zweiten Zeile abgeschaltet wurde:
29599 \begin_inset ERT
29600 status collapsed
29601
29602 \begin_layout Plain Layout
29603
29604
29605 \backslash
29606 begin{subequations}
29607 \end_layout
29608
29609 \end_inset
29610
29611
29612 \begin_inset Formula \begin{eqnarray}
29613 A & = & (B-Z)^{2}=(B-Z)(B-Z)\label{eq:d}\\
29614  & = & B^{2}-ZB-BZ+Z^{²}\nonumber \\
29615  & = & B^{2}-2BZ+Z^{2}\label{eq:f}\end{eqnarray}
29616
29617 \end_inset
29618
29619
29620 \begin_inset ERT
29621 status collapsed
29622
29623 \begin_layout Plain Layout
29624
29625
29626 \backslash
29627 end{subequations}
29628 \end_layout
29629
29630 \end_inset
29631
29632
29633 \end_layout
29634
29635 \begin_layout Subsection
29636 Benutzerdefinierte Nummerierung
29637 \begin_inset CommandInset label
29638 LatexCommand label
29639 name "sub:Benutzerdefinierte-Nummerierung"
29640
29641 \end_inset
29642
29643
29644 \begin_inset Index
29645 status collapsed
29646
29647 \begin_layout Plain Layout
29648 Formelnummerierung ! benutzerdefinierte
29649 \end_layout
29650
29651 \end_inset
29652
29653
29654 \end_layout
29655
29656 \begin_layout Standard
29657 \begin_inset Index
29658 status collapsed
29659
29660 \begin_layout Plain Layout
29661 Formelnummerierung ! eigene Klammern
29662 \end_layout
29663
29664 \end_inset
29665
29666 Bei der Standardnummerierung werden um die Formelnummern runde Klammern
29667  gesetzt.
29668  Will man diese Klammern z.
29669 \begin_inset space \thinspace{}
29670 \end_inset
29671
29672 B.
29673  durch senkrechte Striche ersetzen, gibt man im LaTeX-Vorspann Folgendes
29674  an:
29675 \end_layout
29676
29677 \begin_layout Standard
29678
29679 \series bold
29680
29681 \backslash
29682 def
29683 \backslash
29684 tagform@#1{
29685 \backslash
29686 maketag@@@{|#1|}}
29687 \series default
29688
29689 \begin_inset Note Note
29690 status collapsed
29691
29692 \begin_layout Plain Layout
29693 Dieses Makro ist zum Testen bereits im LaTeX-Vorspann angegeben.
29694  Damit es wirksam wird, muss das Prozentzeichen am Zeilenbeginn entfernt
29695  werden.
29696 \end_layout
29697
29698 \end_inset
29699
29700
29701 \end_layout
29702
29703 \begin_layout Standard
29704 Möchte man andere Zeichen haben, ersetzt man die Striche neben 
29705 \series bold
29706 #1
29707 \series default
29708  durch ein oder mehrere gewünschte Zeichen.
29709  Möchte man nur die Formelnummer haben, lässt man die Striche weg.
29710 \end_layout
29711
29712 \begin_layout Standard
29713 \begin_inset VSpace bigskip
29714 \end_inset
29715
29716 Soll statt einer fortlaufenden Nummer ein beliebiger Ausdruck in den Klammern
29717  hinter der Formel stehen, benutzt man den Befehl 
29718 \series bold
29719
29720 \backslash
29721 tag
29722 \series default
29723
29724 \begin_inset Index
29725 status collapsed
29726
29727 \begin_layout Plain Layout
29728 Befehle ! T ! 
29729 \backslash
29730 tag
29731 \end_layout
29732
29733 \end_inset
29734
29735 :
29736 \begin_inset Formula \begin{equation}
29737 A+B=C\tag{etwas}\label{eq:tag}\end{equation}
29738
29739 \end_inset
29740
29741  In diesem Beispiel wurde in der Formel der Befehl 
29742 \series bold
29743
29744 \backslash
29745 tag
29746 \series default
29747
29748 \begin_inset ERT
29749 status collapsed
29750
29751 \begin_layout Plain Layout
29752
29753
29754 \backslash
29755 leer 
29756 \end_layout
29757
29758 \end_inset
29759
29760
29761 \series bold
29762 etwas
29763 \series default
29764  eingegeben.
29765 \end_layout
29766
29767 \begin_layout Standard
29768 Gibt man stattdessen 
29769 \series bold
29770
29771 \backslash
29772 tag*
29773 \series default
29774
29775 \begin_inset ERT
29776 status collapsed
29777
29778 \begin_layout Plain Layout
29779
29780
29781 \backslash
29782 leer 
29783 \end_layout
29784
29785 \end_inset
29786
29787
29788 \series bold
29789 etwas
29790 \series default
29791  ein, verhindert der Stern die Klammern um den Ausdruck:
29792 \begin_inset Formula \[
29793 A+B=C\tag*{etwas}\]
29794
29795 \end_inset
29796
29797
29798 \end_layout
29799
29800 \begin_layout Standard
29801 \begin_inset VSpace bigskip
29802 \end_inset
29803
29804 Möchte man die Formelnummerierung neu starten wenn ein neuer Dokumentteil
29805  oder 
29806 \begin_inset ERT
29807 status collapsed
29808
29809 \begin_layout Plain Layout
29810
29811
29812 \backslash
29813 mbox{
29814 \end_layout
29815
29816 \end_inset
29817
29818 -abschnitt
29819 \begin_inset ERT
29820 status collapsed
29821
29822 \begin_layout Plain Layout
29823
29824 }
29825 \end_layout
29826
29827 \end_inset
29828
29829
29830 \begin_inset Note Note
29831 status collapsed
29832
29833 \begin_layout Plain Layout
29834 Der Befehl 
29835 \series bold
29836
29837 \backslash
29838 mbox
29839 \series default
29840  verhindert, dass am Bindestrich umgebrochen wird.
29841  Mehr zu 
29842 \series bold
29843
29844 \backslash
29845 mbox
29846 \series default
29847  siehe Kap.
29848 \begin_inset space \thinspace{}
29849 \end_inset
29850
29851
29852 \begin_inset CommandInset ref
29853 LatexCommand ref
29854 reference "sub:Worttrennungen"
29855
29856 \end_inset
29857
29858 .
29859 \end_layout
29860
29861 \end_inset
29862
29863  beginnt, verwendet man folgende LaTeX-Vorspannzeile:
29864 \end_layout
29865
29866 \begin_layout Standard
29867
29868 \series bold
29869
29870 \backslash
29871 @addtoreset{equation}{part}
29872 \series default
29873
29874 \begin_inset Index
29875 status collapsed
29876
29877 \begin_layout Plain Layout
29878 Befehle ! 
29879 \begin_inset ERT
29880 status collapsed
29881
29882 \begin_layout Plain Layout
29883
29884 "
29885 \end_layout
29886
29887 \end_inset
29888
29889 @
29890 \begin_inset ERT
29891 status collapsed
29892
29893 \begin_layout Plain Layout
29894
29895 "
29896 \end_layout
29897
29898 \end_inset
29899
29900  ! 
29901 \backslash
29902
29903 \begin_inset ERT
29904 status collapsed
29905
29906 \begin_layout Plain Layout
29907
29908 "
29909 \end_layout
29910
29911 \end_inset
29912
29913 @
29914 \begin_inset ERT
29915 status collapsed
29916
29917 \begin_layout Plain Layout
29918
29919 "
29920 \end_layout
29921
29922 \end_inset
29923
29924 addtoreset
29925 \end_layout
29926
29927 \end_inset
29928
29929
29930 \begin_inset Newline newline
29931 \end_inset
29932
29933 bzw.
29934 \begin_inset Newline newline
29935 \end_inset
29936
29937
29938 \series bold
29939
29940 \backslash
29941 @addtoreset{equation}{section}
29942 \end_layout
29943
29944 \begin_layout Standard
29945 Um diese Befehle im TeX-Modus benutzen zu können, muss das 
29946 \begin_inset Quotes gld
29947 \end_inset
29948
29949 @
29950 \begin_inset Quotes grd
29951 \end_inset
29952
29953  Zeichen für LaTeX mit dem Befehl 
29954 \series bold
29955
29956 \backslash
29957 makeatletter
29958 \series default
29959  
29960 \begin_inset Quotes gld
29961 \end_inset
29962
29963 aktiv
29964 \begin_inset Quotes grd
29965 \end_inset
29966
29967  gemacht werden.
29968  Der Befehl 
29969 \series bold
29970
29971 \backslash
29972 makeatother
29973 \series default
29974  macht dies wieder rückgängig.
29975  Daher ist die Befehlssequenz im TeX-Modus:
29976 \end_layout
29977
29978 \begin_layout Standard
29979
29980 \series bold
29981
29982 \backslash
29983 makeatletter
29984 \begin_inset Newline newline
29985 \end_inset
29986
29987
29988 \backslash
29989 @addtoreset{equation}{section}
29990 \begin_inset Newline newline
29991 \end_inset
29992
29993
29994 \backslash
29995 makeatother
29996 \end_layout
29997
29998 \begin_layout Standard
29999 Im LaTeX-Vorspann können 
30000 \series bold
30001
30002 \backslash
30003 makeatletter
30004 \series default
30005  und 
30006 \series bold
30007
30008 \backslash
30009 makeatother
30010 \series default
30011  weggelassen werden, da LyX sie automatisch intern einfügt.
30012 \end_layout
30013
30014 \begin_layout Standard
30015 Um 
30016 \series bold
30017
30018 \backslash
30019 @addtoreset
30020 \series default
30021  rückgängig zu machen, muss die Datei 
30022 \series bold
30023 remreset.sty
30024 \series default
30025
30026 \begin_inset Foot
30027 status collapsed
30028
30029 \begin_layout Plain Layout
30030
30031 \series bold
30032 remreset
30033 \series default
30034  ist Teil des LaTeX-Paketes 
30035 \series bold
30036 carlisle
30037 \series default
30038
30039 \begin_inset Index
30040 status collapsed
30041
30042 \begin_layout Plain Layout
30043 Pakete ! carlisle
30044 \end_layout
30045
30046 \end_inset
30047
30048 , das Teil jeder LaTeX-Standardinstallation ist.
30049 \end_layout
30050
30051 \end_inset
30052
30053
30054 \begin_inset Index
30055 status collapsed
30056
30057 \begin_layout Plain Layout
30058 Pakete ! remreset
30059 \end_layout
30060
30061 \end_inset
30062
30063  im LaTeX-Vorspann mit der Zeile
30064 \end_layout
30065
30066 \begin_layout Standard
30067
30068 \series bold
30069
30070 \backslash
30071 usepackage{remreset}
30072 \end_layout
30073
30074 \begin_layout Standard
30075 geladen werden.
30076  Dann kann der Befehl 
30077 \series bold
30078
30079 \backslash
30080 @removefromreset
30081 \series default
30082
30083 \begin_inset Index
30084 status collapsed
30085
30086 \begin_layout Plain Layout
30087 Befehle ! 
30088 \begin_inset ERT
30089 status collapsed
30090
30091 \begin_layout Plain Layout
30092
30093 "
30094 \end_layout
30095
30096 \end_inset
30097
30098 @
30099 \begin_inset ERT
30100 status collapsed
30101
30102 \begin_layout Plain Layout
30103
30104 "
30105 \end_layout
30106
30107 \end_inset
30108
30109  ! 
30110 \backslash
30111
30112 \begin_inset ERT
30113 status collapsed
30114
30115 \begin_layout Plain Layout
30116
30117 "
30118 \end_layout
30119
30120 \end_inset
30121
30122 @
30123 \begin_inset ERT
30124 status collapsed
30125
30126 \begin_layout Plain Layout
30127
30128 "
30129 \end_layout
30130
30131 \end_inset
30132
30133 removefromreset
30134 \end_layout
30135
30136 \end_inset
30137
30138  mit dem selben Schema wie 
30139 \series bold
30140
30141 \backslash
30142 @addtoreset
30143 \series default
30144  benutzt werden.
30145 \end_layout
30146
30147 \begin_layout Standard
30148 \begin_inset VSpace bigskip
30149 \end_inset
30150
30151 Oftmals möchte man Formeln in folgender Art nummerieren:
30152 \end_layout
30153
30154 \begin_layout Standard
30155
30156 \family typewriter
30157 (Kapitelnummer.Formelnummer)
30158 \end_layout
30159
30160 \begin_layout Standard
30161 Dabei soll die Formelnummer bei jedem Kapitel wieder mit Eins beginnen.
30162 \end_layout
30163
30164 \begin_layout Standard
30165 Für diesen Fall gibt es den Befehl 
30166 \series bold
30167
30168 \backslash
30169 numberwithin
30170 \series default
30171
30172 \begin_inset Index
30173 status collapsed
30174
30175 \begin_layout Plain Layout
30176 Befehle ! N ! 
30177 \backslash
30178 numberwithin
30179 \end_layout
30180
30181 \end_inset
30182
30183 , der nach folgendem Schema benutzt wird:
30184 \end_layout
30185
30186 \begin_layout Standard
30187
30188 \series bold
30189
30190 \backslash
30191 numberwithin{Zähler}{Gliederung}
30192 \end_layout
30193
30194 \begin_layout Standard
30195 Zähler gibt an, welche Nummerierung betroffen ist.
30196  Gliederung gibt an, welche Nummer vor dem Punkt steht.
30197 \end_layout
30198
30199 \begin_layout Standard
30200 In unserem Fall gibt man demnach folgende LaTeX-Vorspann- oder ERT-zeile
30201  ein:
30202 \end_layout
30203
30204 \begin_layout Standard
30205
30206 \series bold
30207
30208 \backslash
30209 numberwithin{equation}{section}
30210 \end_layout
30211
30212 \begin_layout Standard
30213 Das ist das Ergebnis:
30214 \begin_inset ERT
30215 status collapsed
30216
30217 \begin_layout Plain Layout
30218
30219
30220 \backslash
30221 numberwithin{equation}{section}
30222 \end_layout
30223
30224 \end_inset
30225
30226
30227 \begin_inset Formula \begin{equation}
30228 A+B=C\end{equation}
30229
30230 \end_inset
30231
30232
30233 \end_layout
30234
30235 \begin_layout Standard
30236 Möchte man z.
30237 \begin_inset space \thinspace{}
30238 \end_inset
30239
30240 B.
30241  Tabellen nummerieren, so dass die Nummer des Teils vor dem Punkt steht,
30242  gibt man 
30243 \series bold
30244
30245 \backslash
30246 numberwithin{table}{part}
30247 \series default
30248  ein.
30249 \end_layout
30250
30251 \begin_layout Standard
30252 Um wieder auf Standardnummerierung umzuschalten oder um diese Art der Nummerieru
30253 ng zu vermeiden wenn sie von der Dokumentklasse vorgegeben ist, gibt man
30254  folgenden Befehl als ERT oder als LaTeX-Vorspannzeile ein:
30255 \end_layout
30256
30257 \begin_layout Standard
30258
30259 \series bold
30260
30261 \backslash
30262 renewcommand{
30263 \backslash
30264 theequation}{
30265 \backslash
30266 arabic{equation}}
30267 \begin_inset Index
30268 status collapsed
30269
30270 \begin_layout Plain Layout
30271 Befehle ! A ! 
30272 \backslash
30273 arabic
30274 \end_layout
30275
30276 \end_inset
30277
30278
30279 \series default
30280
30281 \begin_inset ERT
30282 status collapsed
30283
30284 \begin_layout Plain Layout
30285
30286
30287 \backslash
30288 renewcommand{
30289 \backslash
30290 theequation}{
30291 \backslash
30292 arabic{equation}}
30293 \end_layout
30294
30295 \end_inset
30296
30297
30298 \series bold
30299
30300 \begin_inset Newline newline
30301 \end_inset
30302
30303
30304 \series default
30305 bzw.
30306 \series bold
30307
30308 \begin_inset Newline newline
30309 \end_inset
30310
30311
30312 \backslash
30313 renewcommand{
30314 \backslash
30315 thetable}{
30316 \backslash
30317 arabic{table}}
30318 \end_layout
30319
30320 \begin_layout Standard
30321
30322 \series bold
30323
30324 \backslash
30325 numberwithin
30326 \series default
30327  benutzt intern den oben beschriebenen Befehl 
30328 \series bold
30329
30330 \backslash
30331 @addtoreset
30332 \series default
30333 , der ebenfalls rückgängig gemacht werden muss.
30334 \begin_inset ERT
30335 status collapsed
30336
30337 \begin_layout Plain Layout
30338
30339
30340 \backslash
30341 makeatletter
30342 \end_layout
30343
30344 \begin_layout Plain Layout
30345
30346
30347 \backslash
30348 @removefromreset{equation}{section}
30349 \end_layout
30350
30351 \begin_layout Plain Layout
30352
30353
30354 \backslash
30355 makeatother
30356 \end_layout
30357
30358 \end_inset
30359
30360
30361 \end_layout
30362
30363 \begin_layout Subsection
30364 Nummerierung mit römischen Zahlen und Buchstaben
30365 \begin_inset CommandInset label
30366 LatexCommand label
30367 name "sub:Nummerierung-mit-römischen"
30368
30369 \end_inset
30370
30371
30372 \begin_inset Index
30373 status collapsed
30374
30375 \begin_layout Plain Layout
30376 Formelnummerierung ! mit Buchstaben
30377 \end_layout
30378
30379 \end_inset
30380
30381
30382 \begin_inset Index
30383 status collapsed
30384
30385 \begin_layout Plain Layout
30386 Formelnummerierung ! mit römischen Zahlen
30387 \end_layout
30388
30389 \end_inset
30390
30391
30392 \end_layout
30393
30394 \begin_layout Standard
30395 Formeln können auch mit römischen Zahlen und lateinischen Buchstaben nummeriert
30396  werden.
30397  Um z.
30398 \begin_inset space \thinspace{}
30399 \end_inset
30400
30401 B.
30402  mit kleinen römischen Zahlen zu nummerieren, gibt man vor der Formel im
30403  TeX-Modus den Befehl
30404 \end_layout
30405
30406 \begin_layout Standard
30407
30408 \series bold
30409
30410 \backslash
30411 renewcommand{
30412 \backslash
30413 theequation}{
30414 \backslash
30415 roman{equation}}
30416 \end_layout
30417
30418 \begin_layout Standard
30419 ein.
30420  
30421 \series bold
30422
30423 \backslash
30424 renewcommand
30425 \series default
30426
30427 \begin_inset Index
30428 status collapsed
30429
30430 \begin_layout Plain Layout
30431 Befehle ! R ! 
30432 \backslash
30433 renewcommand
30434 \end_layout
30435
30436 \end_inset
30437
30438  weist dem vordefinierten Befehl 
30439 \series bold
30440
30441 \backslash
30442 theequation
30443 \series default
30444  den Befehl
30445 \begin_inset Newline linebreak
30446 \end_inset
30447
30448
30449 \series bold
30450
30451 \backslash
30452 roman{equation}
30453 \series default
30454  zu
30455 \begin_inset Foot
30456 status collapsed
30457
30458 \begin_layout Plain Layout
30459 Der Befehl 
30460 \series bold
30461
30462 \backslash
30463 renewcommand
30464 \series default
30465  besitzt dasselbe Schema wie der in 
30466 \begin_inset CommandInset ref
30467 LatexCommand ref
30468 reference "sec:Benutzerdefinierte-Befehle"
30469
30470 \end_inset
30471
30472  beschriebene Befehl
30473 \begin_inset Newline newline
30474 \end_inset
30475
30476
30477 \series bold
30478
30479 \backslash
30480 newcommand
30481 \series default
30482 .
30483 \end_layout
30484
30485 \end_inset
30486
30487 .
30488  
30489 \series bold
30490 equation
30491 \series default
30492  ist der Formelzähler.
30493  Stellt man einem Zähler den Befehl 
30494 \series bold
30495
30496 \backslash
30497 the
30498 \series default
30499  voran, bewirkt dies, dass der Wert des Zählers als arabische Zahl ausgegeben
30500  wird.
30501  Gibt man an, dass eine Formel nummeriert wird, setzt LaTeX intern den Befehl
30502  
30503 \series bold
30504
30505 \backslash
30506 theequation
30507 \series default
30508  hinter die Formel.
30509  
30510 \series bold
30511
30512 \backslash
30513 roman{equation}
30514 \begin_inset Index
30515 status collapsed
30516
30517 \begin_layout Plain Layout
30518 Befehle ! R ! 
30519 \backslash
30520 roman
30521 \end_layout
30522
30523 \end_inset
30524
30525
30526 \series default
30527  bewirkt, dass der Formelzähler als kleine römische Zahl erscheint.
30528 \end_layout
30529
30530 \begin_layout Standard
30531 Alle Formeln nach dem 
30532 \series bold
30533
30534 \backslash
30535 renewcommand
30536 \series default
30537 -Befehl werden nun römisch nummeriert.
30538  Um auf Nummerierung mit großen römischen Zahlen umzuschalten, gibt man
30539  den Befehl erneut ein, ersetzt aber 
30540 \series bold
30541
30542 \backslash
30543 roman
30544 \series default
30545  durch 
30546 \series bold
30547
30548 \backslash
30549 Roman
30550 \series default
30551
30552 \begin_inset Index
30553 status collapsed
30554
30555 \begin_layout Plain Layout
30556 Befehle ! R ! 
30557 \backslash
30558 roman@
30559 \backslash
30560 Roman
30561 \end_layout
30562
30563 \end_inset
30564
30565 .
30566  Für die 
30567 \begin_inset Quotes gld
30568 \end_inset
30569
30570 Nummerierung
30571 \begin_inset Quotes grd
30572 \end_inset
30573
30574  mit lateinischen Buchstaben gibt es den Befehl 
30575 \series bold
30576
30577 \backslash
30578 alph
30579 \series default
30580
30581 \begin_inset Index
30582 status collapsed
30583
30584 \begin_layout Plain Layout
30585 Befehle ! A ! 
30586 \backslash
30587 alph
30588 \end_layout
30589
30590 \end_inset
30591
30592  für kleine und 
30593 \series bold
30594
30595 \backslash
30596 Alph
30597 \series default
30598
30599 \begin_inset Index
30600 status collapsed
30601
30602 \begin_layout Plain Layout
30603 Befehle ! A ! 
30604 \backslash
30605 alph@
30606 \backslash
30607 Alph
30608 \end_layout
30609
30610 \end_inset
30611
30612  für große Buchstaben.
30613 \end_layout
30614
30615 \begin_layout Standard
30616 \begin_inset Note Greyedout
30617 status open
30618
30619 \begin_layout Plain Layout
30620
30621 \series bold
30622 Achtung:
30623 \series default
30624  Es können nur maximal 26 Formeln in einem Dokument mit lateinischen Buchstaben
30625  nummeriert werden.
30626 \end_layout
30627
30628 \end_inset
30629
30630
30631 \end_layout
30632
30633 \begin_layout Standard
30634 \begin_inset ERT
30635 status collapsed
30636
30637 \begin_layout Plain Layout
30638
30639
30640 \backslash
30641 renewcommand{
30642 \backslash
30643 theequation}{
30644 \backslash
30645 roman{equation}}
30646 \end_layout
30647
30648 \end_inset
30649
30650
30651 \end_layout
30652
30653 \begin_layout Standard
30654 \begin_inset Formula \begin{equation}
30655 A=\textrm{römisch}\label{eq:roem}\end{equation}
30656
30657 \end_inset
30658
30659
30660 \begin_inset ERT
30661 status collapsed
30662
30663 \begin_layout Plain Layout
30664
30665
30666 \backslash
30667 renewcommand{
30668 \backslash
30669 theequation}{
30670 \backslash
30671 Roman{equation}}
30672 \end_layout
30673
30674 \end_inset
30675
30676
30677 \begin_inset Formula \begin{equation}
30678 B=\textrm{Römisch}\label{eq:Roem}\end{equation}
30679
30680 \end_inset
30681
30682
30683 \begin_inset ERT
30684 status collapsed
30685
30686 \begin_layout Plain Layout
30687
30688
30689 \backslash
30690 renewcommand{
30691 \backslash
30692 theequation}{
30693 \backslash
30694 alph{equation}}
30695 \end_layout
30696
30697 \end_inset
30698
30699
30700 \begin_inset Formula \begin{equation}
30701 C=\textrm{lateinisch}\label{eq:lat}\end{equation}
30702
30703 \end_inset
30704
30705
30706 \begin_inset ERT
30707 status collapsed
30708
30709 \begin_layout Plain Layout
30710
30711
30712 \backslash
30713 renewcommand{
30714 \backslash
30715 theequation}{
30716 \backslash
30717 Alph{equation}}
30718 \end_layout
30719
30720 \end_inset
30721
30722
30723 \begin_inset Formula \begin{equation}
30724 D=\textrm{Lateinisch}\label{eq:Lat}\end{equation}
30725
30726 \end_inset
30727
30728
30729 \end_layout
30730
30731 \begin_layout Standard
30732 Um wieder auf Standardnummerierung umzuschalten, gibt man folgenden Befehl
30733  ein:
30734 \end_layout
30735
30736 \begin_layout Standard
30737
30738 \series bold
30739
30740 \backslash
30741 renewcommand{
30742 \backslash
30743 theequation}{
30744 \backslash
30745 arabic{equation}}
30746 \begin_inset Index
30747 status collapsed
30748
30749 \begin_layout Plain Layout
30750 Befehle ! A ! 
30751 \backslash
30752 arabic
30753 \end_layout
30754
30755 \end_inset
30756
30757
30758 \end_layout
30759
30760 \begin_layout Standard
30761 \begin_inset ERT
30762 status collapsed
30763
30764 \begin_layout Plain Layout
30765
30766
30767 \backslash
30768 renewcommand{
30769 \backslash
30770 theequation}{
30771 \backslash
30772 arabic{equation}}
30773 \end_layout
30774
30775 \end_inset
30776
30777
30778 \begin_inset Formula \begin{equation}
30779 E=\textrm{arabisch}\label{eq:arab}\end{equation}
30780
30781 \end_inset
30782
30783
30784 \end_layout
30785
30786 \begin_layout Standard
30787 \begin_inset VSpace medskip
30788 \end_inset
30789
30790 Wie man sieht, werden die Formeln unabhängig von der Nummerierungsart durchnumme
30791 riert.
30792  Soll beim Wechsel der Nummerierungsart die Nummerierung wieder mit Eins
30793  beginnen, müssen neue Formelzähler angelegt werden.
30794  Eine Beschreibung dazu findet man in der Datei 
30795 \begin_inset CommandInset href
30796 LatexCommand href
30797 target "Formelnummerierung.lyx"
30798
30799 \end_inset
30800
30801 .
30802 \end_layout
30803
30804 \begin_layout Section
30805 Benutzerdefinierte Befehle
30806 \begin_inset CommandInset label
30807 LatexCommand label
30808 name "sec:Benutzerdefinierte-Befehle"
30809
30810 \end_inset
30811
30812
30813 \begin_inset Index
30814 status collapsed
30815
30816 \begin_layout Plain Layout
30817 benutzerdefinierte Befehle
30818 \end_layout
30819
30820 \end_inset
30821
30822
30823 \end_layout
30824
30825 \begin_layout Standard
30826 Viele der LaTeX-Befehle sind für den ständigen Gebrauch viel zu lang.
30827  Man kann sich aber mit dem Befehl 
30828 \series bold
30829
30830 \backslash
30831 newcommand
30832 \series default
30833
30834 \begin_inset Index
30835 status collapsed
30836
30837 \begin_layout Plain Layout
30838 Befehle ! N ! 
30839 \backslash
30840 newcommand
30841 \end_layout
30842
30843 \end_inset
30844
30845  neue kürzere Befehle definieren.
30846 \end_layout
30847
30848 \begin_layout Standard
30849 Das Befehlsschema von 
30850 \series bold
30851
30852 \backslash
30853 newcommand
30854 \series default
30855  lautet:
30856 \end_layout
30857
30858 \begin_layout Standard
30859
30860 \series bold
30861
30862 \backslash
30863 newcommand{neuer Befehlsname}[Argumentanzahl][optionaler
30864 \series default
30865  
30866 \series bold
30867 Wert]
30868 \begin_inset Newline newline
30869 \end_inset
30870
30871
30872 \begin_inset ERT
30873 status collapsed
30874
30875 \begin_layout Plain Layout
30876
30877
30878 \backslash
30879 phantom{
30880 \end_layout
30881
30882 \end_inset
30883
30884
30885 \backslash
30886 newcommand
30887 \begin_inset ERT
30888 status collapsed
30889
30890 \begin_layout Plain Layout
30891
30892 }
30893 \end_layout
30894
30895 \end_inset
30896
30897 {Befehlsdefinition}
30898 \end_layout
30899
30900 \begin_layout Standard
30901 \begin_inset Note Greyedout
30902 status open
30903
30904 \begin_layout Plain Layout
30905
30906 \series bold
30907 Achtung:
30908 \series default
30909  Es muss darauf geachtet werden, dass der Befehlsname nicht schon im Dokument
30910  oder von benutzten LaTeX-Paketen verwendet wird.
30911  Definiert man beispielsweise für 
30912 \series bold
30913
30914 \backslash
30915 Leftarrow
30916 \series default
30917  den Befehl 
30918 \series bold
30919
30920 \backslash
30921 le
30922 \series default
30923 , erhält man eine Fehlermeldung, denn 
30924 \series bold
30925
30926 \backslash
30927 le
30928 \series default
30929  ist schon für 
30930 \begin_inset Quotes gld
30931 \end_inset
30932
30933
30934 \begin_inset Formula $\le$
30935 \end_inset
30936
30937
30938 \begin_inset Quotes grd
30939 \end_inset
30940
30941  definiert.
30942 \end_layout
30943
30944 \end_inset
30945
30946
30947 \end_layout
30948
30949 \begin_layout Standard
30950 \begin_inset Note Greyedout
30951 status open
30952
30953 \begin_layout Plain Layout
30954
30955 \series bold
30956 Achtung: 
30957 \series default
30958 Die Namen von selbst definierten Befehlen dürfen nur aus lateinischen Buchstaben
30959  bestehen.
30960 \end_layout
30961
30962 \end_inset
30963
30964
30965 \end_layout
30966
30967 \begin_layout Standard
30968 Die Argumentanzahl ist eine ganze Zahl im Bereich 0
30969 \begin_inset space \thinspace{}
30970 \end_inset
30971
30972 -
30973 \begin_inset space \thinspace{}
30974 \end_inset
30975
30976 9 und gibt an, wie viele Argumente der neue Befehl haben soll.
30977  Als optionalen Wert kann man den Wert für ein optionales Argument voreinstellen.
30978  Wenn man dies macht, bedeutet das gleichzeitig, dass das 
30979 \emph on
30980 erste
30981 \emph default
30982  Argument des neuen Befehls ein optionales ist.
30983 \end_layout
30984
30985 \begin_layout Standard
30986 Es folgen einige Beispiele:
30987 \end_layout
30988
30989 \begin_layout Itemize
30990 Will man für 
30991 \series bold
30992
30993 \backslash
30994 Longrightarrow
30995 \series default
30996  den Befehl 
30997 \series bold
30998
30999 \backslash
31000 gr
31001 \series default
31002  definieren, lautet die LaTeX-Vor\SpecialChar \-
31003 spannzeile:
31004 \begin_inset ERT
31005 status collapsed
31006
31007 \begin_layout Plain Layout
31008
31009
31010 \backslash
31011 medskip
31012 \end_layout
31013
31014 \end_inset
31015
31016
31017 \series bold
31018
31019 \begin_inset Newline newline
31020 \end_inset
31021
31022
31023 \backslash
31024 newcommand{
31025 \backslash
31026 gr}{
31027 \backslash
31028 Longrightarrow}
31029 \end_layout
31030
31031 \begin_layout Itemize
31032 Um für den Befehl 
31033 \series bold
31034
31035 \backslash
31036 underline
31037 \series default
31038  den Befehl 
31039 \series bold
31040
31041 \backslash
31042 us
31043 \series default
31044  zu definieren, muss das Argument (was unterstrichen werden soll) berücksichtigt
31045  werden.
31046  Dazu sieht die Vorspannzeile wie folgt aus:
31047 \begin_inset ERT
31048 status collapsed
31049
31050 \begin_layout Plain Layout
31051
31052
31053 \backslash
31054 medskip
31055 \end_layout
31056
31057 \end_inset
31058
31059
31060 \series bold
31061
31062 \begin_inset Newline newline
31063 \end_inset
31064
31065
31066 \backslash
31067 newcommand{
31068 \backslash
31069 us}[1]{
31070 \backslash
31071 underline{#1}}
31072 \series default
31073
31074 \begin_inset ERT
31075 status collapsed
31076
31077 \begin_layout Plain Layout
31078
31079
31080 \backslash
31081 medskip
31082 \end_layout
31083
31084 \end_inset
31085
31086
31087 \series bold
31088
31089 \begin_inset Newline newline
31090 \end_inset
31091
31092
31093 \series default
31094 Das Zeichen 
31095 \series bold
31096 #
31097 \series default
31098  fungiert als Argumentplatzhalter, die 
31099 \series bold
31100 1
31101 \series default
31102  dahinter gibt an, dass es der Platzhalter für das erste Argument ist.
31103 \end_layout
31104
31105 \begin_layout Itemize
31106 Für 
31107 \series bold
31108
31109 \backslash
31110 framebox
31111 \series default
31112  kann man z.
31113 \begin_inset space \thinspace{}
31114 \end_inset
31115
31116 B.
31117  den Befehl 
31118 \series bold
31119
31120 \backslash
31121 fb
31122 \series default
31123  definieren:
31124 \begin_inset ERT
31125 status collapsed
31126
31127 \begin_layout Plain Layout
31128
31129
31130 \backslash
31131 medskip
31132 \end_layout
31133
31134 \end_inset
31135
31136
31137 \series bold
31138
31139 \begin_inset Newline newline
31140 \end_inset
31141
31142
31143 \backslash
31144 newcommand{
31145 \backslash
31146 fb}[3]{
31147 \backslash
31148 framebox#1#2{$#3$}}
31149 \series default
31150
31151 \begin_inset ERT
31152 status collapsed
31153
31154 \begin_layout Plain Layout
31155
31156
31157 \backslash
31158 medskip
31159 \end_layout
31160
31161 \end_inset
31162
31163
31164 \series bold
31165
31166 \begin_inset Newline newline
31167 \end_inset
31168
31169
31170 \series default
31171 Die beiden Dollarzeichen erstellen hierbei die für 
31172 \series bold
31173
31174 \backslash
31175 framebox
31176 \series default
31177  geforderte weitere Formel, siehe 
31178 \begin_inset CommandInset ref
31179 LatexCommand ref
31180 reference "sub:Boxen-mit-Rahmen"
31181
31182 \end_inset
31183
31184 .
31185 \end_layout
31186
31187 \begin_layout Itemize
31188 Um einen neuen Befehl für 
31189 \series bold
31190
31191 \backslash
31192 fcolorbox
31193 \series default
31194  zu erstellen, bei dem die Farbe der Box nicht mehr angegeben werden muss,
31195  definiert man das Argument für die Farbe als optional:
31196 \begin_inset ERT
31197 status collapsed
31198
31199 \begin_layout Plain Layout
31200
31201
31202 \backslash
31203 medskip
31204 \end_layout
31205
31206 \end_inset
31207
31208
31209 \series bold
31210
31211 \begin_inset Newline newline
31212 \end_inset
31213
31214
31215 \backslash
31216 newcommand{
31217 \backslash
31218 cb}[3][white]{
31219 \backslash
31220 fcolorbox{#2}{#1}{$#3$}}
31221 \series default
31222
31223 \begin_inset ERT
31224 status collapsed
31225
31226 \begin_layout Plain Layout
31227
31228
31229 \backslash
31230 medskip
31231 \end_layout
31232
31233 \end_inset
31234
31235
31236 \begin_inset Newline newline
31237 \end_inset
31238
31239 Gibt man bei der Verwendung von 
31240 \series bold
31241
31242 \backslash
31243 cb
31244 \series default
31245  die Farbe nicht an, wird die voreingestellte Farbe 
31246 \series bold
31247 white
31248 \series default
31249  verwendet.
31250 \begin_inset Newpage pagebreak
31251 \end_inset
31252
31253
31254 \end_layout
31255
31256 \begin_layout Standard
31257 Ein Test der neu definierten Befehle:
31258 \end_layout
31259
31260 \begin_layout Standard
31261 \align center
31262 \begin_inset Tabular
31263 <lyxtabular version="3" rows="6" columns="2">
31264 <features>
31265 <column alignment="center" valignment="top" width="0">
31266 <column alignment="center" valignment="top" width="0">
31267 <row>
31268 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
31269 \begin_inset Text
31270
31271 \begin_layout Plain Layout
31272 Befehl
31273 \end_layout
31274
31275 \end_inset
31276 </cell>
31277 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
31278 \begin_inset Text
31279
31280 \begin_layout Plain Layout
31281 Ergebnis
31282 \begin_inset Note Note
31283 status collapsed
31284
31285 \begin_layout Plain Layout
31286
31287 \series bold
31288
31289 \backslash
31290 raisebox
31291 \series default
31292  dient nur als Abstandhalter.
31293 \end_layout
31294
31295 \end_inset
31296
31297
31298 \end_layout
31299
31300 \end_inset
31301 </cell>
31302 </row>
31303 <row>
31304 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
31305 \begin_inset Text
31306
31307 \begin_layout Plain Layout
31308 A
31309 \backslash
31310 gr
31311 \begin_inset ERT
31312 status collapsed
31313
31314 \begin_layout Plain Layout
31315
31316
31317 \backslash
31318 leer 
31319 \end_layout
31320
31321 \end_inset
31322
31323 B
31324 \end_layout
31325
31326 \end_inset
31327 </cell>
31328 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
31329 \begin_inset Text
31330
31331 \begin_layout Plain Layout
31332 \begin_inset Formula $A\gr B$
31333 \end_inset
31334
31335
31336 \end_layout
31337
31338 \end_inset
31339 </cell>
31340 </row>
31341 <row>
31342 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
31343 \begin_inset Text
31344
31345 \begin_layout Plain Layout
31346
31347 \backslash
31348 us{ABcd
31349 \end_layout
31350
31351 \end_inset
31352 </cell>
31353 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
31354 \begin_inset Text
31355
31356 \begin_layout Plain Layout
31357 \begin_inset Formula $\raisebox{4.5mm}{}\us{ABcd}\raisebox{-2mm}{}$
31358 \end_inset
31359
31360
31361 \end_layout
31362
31363 \end_inset
31364 </cell>
31365 </row>
31366 <row>
31367 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
31368 \begin_inset Text
31369
31370 \begin_layout Plain Layout
31371
31372 \backslash
31373 fb{[2cm]
31374 \begin_inset Formula $\to$
31375 \end_inset
31376
31377
31378 \backslash
31379 {
31380 \begin_inset Formula $\to$
31381 \end_inset
31382
31383
31384 \backslash
31385 {
31386 \backslash
31387 int
31388 \begin_inset ERT
31389 status collapsed
31390
31391 \begin_layout Plain Layout
31392
31393
31394 \backslash
31395 leer 
31396 \end_layout
31397
31398 \end_inset
31399
31400 A=B
31401 \end_layout
31402
31403 \end_inset
31404 </cell>
31405 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
31406 \begin_inset Text
31407
31408 \begin_layout Plain Layout
31409 \begin_inset Formula $\raisebox{6mm}{}\fb{[2cm]}{}{\int A=B}\raisebox{-4mm}{}$
31410 \end_inset
31411
31412
31413 \end_layout
31414
31415 \end_inset
31416 </cell>
31417 </row>
31418 <row>
31419 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
31420 \begin_inset Text
31421
31422 \begin_layout Plain Layout
31423
31424 \backslash
31425 cb{red
31426 \begin_inset Formula $\to$
31427 \end_inset
31428
31429
31430 \backslash
31431 {
31432 \backslash
31433 int
31434 \begin_inset ERT
31435 status collapsed
31436
31437 \begin_layout Plain Layout
31438
31439
31440 \backslash
31441 leer 
31442 \end_layout
31443
31444 \end_inset
31445
31446 A=B
31447 \end_layout
31448
31449 \end_inset
31450 </cell>
31451 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
31452 \begin_inset Text
31453
31454 \begin_layout Plain Layout
31455 \begin_inset Formula $\raisebox{6mm}{}\cb{red}{\int A=B}\raisebox{-4mm}{}$
31456 \end_inset
31457
31458
31459 \end_layout
31460
31461 \end_inset
31462 </cell>
31463 </row>
31464 <row>
31465 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
31466 \begin_inset Text
31467
31468 \begin_layout Plain Layout
31469
31470 \backslash
31471 cb[green]
31472 \backslash
31473 {red
31474 \begin_inset Formula $\to$
31475 \end_inset
31476
31477
31478 \backslash
31479 {
31480 \backslash
31481 int
31482 \begin_inset ERT
31483 status collapsed
31484
31485 \begin_layout Plain Layout
31486
31487
31488 \backslash
31489 leer 
31490 \end_layout
31491
31492 \end_inset
31493
31494 A=B
31495 \end_layout
31496
31497 \end_inset
31498 </cell>
31499 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
31500 \begin_inset Text
31501
31502 \begin_layout Plain Layout
31503 \begin_inset Formula $\raisebox{6mm}{}\cb[green]{red}{\int A=B}\raisebox{-4mm}{}$
31504 \end_inset
31505
31506
31507 \end_layout
31508
31509 \end_inset
31510 </cell>
31511 </row>
31512 </lyxtabular>
31513
31514 \end_inset
31515
31516
31517 \end_layout
31518
31519 \begin_layout Section
31520 Diagramme
31521 \begin_inset Index
31522 status collapsed
31523
31524 \begin_layout Plain Layout
31525 Diagramme
31526 \end_layout
31527
31528 \end_inset
31529
31530
31531 \end_layout
31532
31533 \begin_layout Standard
31534 Um Diagramme zu erstellen, wird das LaTeX-Paket 
31535 \series bold
31536 amscd
31537 \begin_inset Foot
31538 status collapsed
31539
31540 \begin_layout Plain Layout
31541
31542 \series bold
31543 amscd
31544 \series default
31545  ist Teil jeder LaTeX-Standardinstallation.
31546 \end_layout
31547
31548 \end_inset
31549
31550
31551 \series default
31552
31553 \begin_inset Index
31554 status collapsed
31555
31556 \begin_layout Plain Layout
31557 Pakete ! amscd
31558 \end_layout
31559
31560 \end_inset
31561
31562  benötigt.
31563  Es wird im LaTeX-Vorspann mit der Zeile
31564 \end_layout
31565
31566 \begin_layout Standard
31567
31568 \series bold
31569
31570 \backslash
31571 usepackage{amscd}
31572 \end_layout
31573
31574 \begin_layout Standard
31575 geladen.
31576 \end_layout
31577
31578 \begin_layout Standard
31579 Diagramme stellen Beziehungen dar und sehen folgendermaßen aus:
31580 \begin_inset Formula \[
31581 \begin{CD}A@>>>B@>>>C\\
31582 @AAA@.@VVV\\
31583 F@<<<E@<<<D\end{CD}\]
31584
31585 \end_inset
31586
31587
31588 \end_layout
31589
31590 \begin_layout Standard
31591 Um sie zu erstellen, gibt man in einer Formel den Befehl 
31592 \series bold
31593
31594 \backslash
31595 CD
31596 \begin_inset Index
31597 status collapsed
31598
31599 \begin_layout Plain Layout
31600 Befehle ! C ! 
31601 \backslash
31602 CD
31603 \end_layout
31604
31605 \end_inset
31606
31607
31608 \series default
31609  ein.
31610  Es erscheint ein blaues Kästchen mit zwei gestrichelten Linien, in das
31611  man die weiteren Befehle eingibt.
31612  Mit 
31613 \series bold
31614
31615 \begin_inset ERT
31616 status collapsed
31617
31618 \begin_layout Plain Layout
31619
31620
31621 \backslash
31622 mbox{
31623 \end_layout
31624
31625 \end_inset
31626
31627
31628 \family sans
31629 \series default
31630 Strg-Enter
31631 \family default
31632 \series bold
31633
31634 \begin_inset ERT
31635 status collapsed
31636
31637 \begin_layout Plain Layout
31638
31639 }
31640 \end_layout
31641
31642 \end_inset
31643
31644
31645 \series default
31646  wird eine neue Zeile erstellt.
31647  Horizontale Beziehungen werden in ungerade Zeilen, vertikale in gerade
31648  Zeilen der Formel eingegeben.
31649 \end_layout
31650
31651 \begin_layout Standard
31652 Zum Erstellen der Beziehungen gibt es folgende Befehle:
31653 \end_layout
31654
31655 \begin_layout Itemize
31656
31657 \series bold
31658 @<<<
31659 \series default
31660  erstellt einen Linkspfeil, 
31661 \series bold
31662 @>>>
31663 \series default
31664  einen Rechtspfeil und 
31665 \series bold
31666 @=
31667 \series default
31668  ein langes Gleichheitszeichen
31669 \end_layout
31670
31671 \begin_layout Itemize
31672
31673 \series bold
31674 @AAA
31675 \series default
31676  erstellt einen Pfeil nach oben, 
31677 \series bold
31678 @VVV
31679 \series default
31680  einen Pfeil nach unten und 
31681 \series bold
31682 @|
31683 \series default
31684  ein senkrechtes Gleichheitszeichen
31685 \end_layout
31686
31687 \begin_layout Itemize
31688
31689 \series bold
31690 @.
31691
31692 \series default
31693  dient als Platzhalter für nicht vorhandene Beziehungen
31694 \end_layout
31695
31696 \begin_layout Standard
31697 Alle Pfeile sind wie folgt beschriftbar:
31698 \end_layout
31699
31700 \begin_layout Itemize
31701 Wird bei horizontalen Pfeilen zwischen dem ersten und zweiten < bzw.
31702  > Text eingegeben, erscheint er über dem Pfeil.
31703  Wird der Text zwischen dem zweiten und dritten < bzw.
31704  > eingegeben, erscheint er unter dem Pfeil.
31705 \end_layout
31706
31707 \begin_layout Itemize
31708 Wird bei vertikalen Pfeilen Text zwischen erstem und zweitem A bzw.
31709  V eingegeben, erscheint er links neben dem Pfeil.
31710  Bei Eingabe zwischen zweitem und drittem A bzw.
31711  V erscheint er rechts daneben.
31712  Enthält der Text ein A oder V, müssen diese Buchstaben in eine TeX-Klammer
31713  gesetzt werden.
31714 \end_layout
31715
31716 \begin_layout Standard
31717 Als Beispiel ein Diagramm mit allen möglichen Beziehungen:
31718 \end_layout
31719
31720 \begin_layout Standard
31721 \begin_inset Formula \[
31722 \begin{CD}A@>j>>B@>>k>C@=F\\
31723 @AmAA@.@VV{V}V@|\\
31724 D@<<j<E@>k>>F@=C\end{CD}\]
31725
31726 \end_inset
31727
31728
31729 \end_layout
31730
31731 \begin_layout Standard
31732 Der Befehl dazu lautet:
31733 \begin_inset Newline newline
31734 \end_inset
31735
31736
31737 \series bold
31738
31739 \backslash
31740 CD
31741 \begin_inset ERT
31742 status collapsed
31743
31744 \begin_layout Plain Layout
31745
31746
31747 \backslash
31748 leer 
31749 \end_layout
31750
31751 \end_inset
31752
31753 A@>j>>B@>>k>C@=F Strg-Enter
31754 \begin_inset Newline newline
31755 \end_inset
31756
31757
31758 \begin_inset ERT
31759 status collapsed
31760
31761 \begin_layout Plain Layout
31762
31763
31764 \backslash
31765 hphantom{
31766 \end_layout
31767
31768 \end_inset
31769
31770
31771 \backslash
31772 CD
31773 \begin_inset ERT
31774 status collapsed
31775
31776 \begin_layout Plain Layout
31777
31778
31779 \backslash
31780 leer 
31781 \end_layout
31782
31783 \end_inset
31784
31785
31786 \begin_inset ERT
31787 status collapsed
31788
31789 \begin_layout Plain Layout
31790
31791 }
31792 \end_layout
31793
31794 \end_inset
31795
31796 @AmAA@.@VV
31797 \backslash
31798 {V
31799 \series default
31800
31801 \begin_inset Formula $\to$
31802 \end_inset
31803
31804
31805 \series bold
31806 V@| Strg-Enter
31807 \begin_inset Newline newline
31808 \end_inset
31809
31810
31811 \begin_inset ERT
31812 status collapsed
31813
31814 \begin_layout Plain Layout
31815
31816
31817 \backslash
31818 hphantom{
31819 \end_layout
31820
31821 \end_inset
31822
31823
31824 \backslash
31825 CD
31826 \begin_inset ERT
31827 status collapsed
31828
31829 \begin_layout Plain Layout
31830
31831
31832 \backslash
31833 leer 
31834 \end_layout
31835
31836 \end_inset
31837
31838
31839 \begin_inset ERT
31840 status collapsed
31841
31842 \begin_layout Plain Layout
31843
31844 }
31845 \end_layout
31846
31847 \end_inset
31848
31849 D@<<j<E@>k>>F@=C
31850 \end_layout
31851
31852 \begin_layout Standard
31853 \begin_inset Newpage newpage
31854 \end_inset
31855
31856
31857 \end_layout
31858
31859 \begin_layout Section
31860 Tipps
31861 \begin_inset ERT
31862 status collapsed
31863
31864 \begin_layout Plain Layout
31865
31866
31867 \backslash
31868 texorpdfstring{
31869 \end_layout
31870
31871 \end_inset
31872
31873
31874 \begin_inset Foot
31875 status collapsed
31876
31877 \begin_layout Plain Layout
31878 Weitere gute Tipps gibt es unter 
31879 \begin_inset CommandInset citation
31880 LatexCommand cite
31881 key "Voss"
31882
31883 \end_inset
31884
31885 .
31886 \end_layout
31887
31888 \end_inset
31889
31890
31891 \begin_inset ERT
31892 status collapsed
31893
31894 \begin_layout Plain Layout
31895
31896 }{}
31897 \end_layout
31898
31899 \end_inset
31900
31901
31902 \begin_inset Note Note
31903 status collapsed
31904
31905 \begin_layout Plain Layout
31906
31907 \series bold
31908
31909 \backslash
31910 texorpdfstring
31911 \series default
31912  dient dazu, dass die Fußnote nicht mit im pdf-Lesezeichen erscheint.
31913 \end_layout
31914
31915 \begin_layout Plain Layout
31916 Näheres zu 
31917 \series bold
31918
31919 \backslash
31920 texorpdfstring
31921 \series default
31922  steht in Kapitel 
31923 \begin_inset CommandInset ref
31924 LatexCommand ref
31925 reference "sub:Formeln-in-Überschriften"
31926
31927 \end_inset
31928
31929 .
31930 \end_layout
31931
31932 \end_inset
31933
31934
31935 \begin_inset Index
31936 status collapsed
31937
31938 \begin_layout Plain Layout
31939 Tipps
31940 \end_layout
31941
31942 \end_inset
31943
31944
31945 \begin_inset Index
31946 status collapsed
31947
31948 \begin_layout Plain Layout
31949 Ionen|see
31950 \begin_inset ERT
31951 status collapsed
31952
31953 \begin_layout Plain Layout
31954
31955 {
31956 \end_layout
31957
31958 \end_inset
31959
31960 chemische Zeichen
31961 \begin_inset ERT
31962 status collapsed
31963
31964 \begin_layout Plain Layout
31965
31966 }
31967 \end_layout
31968
31969 \end_inset
31970
31971
31972 \end_layout
31973
31974 \end_inset
31975
31976
31977 \end_layout
31978
31979 \begin_layout Subsection
31980 Chemische Symbole und Reaktionsgleichungen
31981 \begin_inset CommandInset label
31982 LatexCommand label
31983 name "sub:Chemische-Symbole-und"
31984
31985 \end_inset
31986
31987
31988 \begin_inset Index
31989 status collapsed
31990
31991 \begin_layout Plain Layout
31992 chemische Zeichen ! Symbole
31993 \end_layout
31994
31995 \end_inset
31996
31997
31998 \begin_inset Index
31999 status collapsed
32000
32001 \begin_layout Plain Layout
32002 Reaktionsgleichungen
32003 \end_layout
32004
32005 \end_inset
32006
32007
32008 \begin_inset Index
32009 status collapsed
32010
32011 \begin_layout Plain Layout
32012 Symbole ! chemische
32013 \end_layout
32014
32015 \end_inset
32016
32017
32018 \end_layout
32019
32020 \begin_layout Standard
32021 Ein Beispieltext aus der Chemie:
32022 \end_layout
32023
32024 \begin_layout Quote
32025 Das 
32026 \begin_inset Formula $\mathrm{SO_{4}^{2-}}$
32027 \end_inset
32028
32029 -Ion verbindet sich mit zwei 
32030 \begin_inset Formula $\mathrm{Na^{+}}$
32031 \end_inset
32032
32033 -Ionen zu Natriumsulfat 
32034 \begin_inset Formula $\left(\mathrm{Na_{2}SO_{4}}\right)$
32035 \end_inset
32036
32037 .
32038  Die Reaktionsgleichung dazu lautet:
32039 \begin_inset Formula \[
32040 \mathrm{2\, Na^{+}+SO_{4}^{2-}\longrightarrow Na_{2}SO_{4}}\]
32041
32042 \end_inset
32043
32044
32045 \end_layout
32046
32047 \begin_layout Standard
32048 Diese Reaktionsgleichung kann direkt als Formel erstellt werden.
32049  Damit die Symbole nicht kursiv erscheinen, markiert man sämtliche Zeichen
32050  in der Formel und wandelt diese mit der Tastenkombination 
32051 \family sans
32052 Alt-z
32053 \begin_inset space ~
32054 \end_inset
32055
32056 r
32057 \family default
32058  in den aufrechten Schriftstil um.
32059 \begin_inset Foot
32060 status collapsed
32061
32062 \begin_layout Plain Layout
32063 Schriftstile siehe 
32064 \begin_inset CommandInset ref
32065 LatexCommand ref
32066 reference "sub:Schriftstile"
32067
32068 \end_inset
32069
32070
32071 \end_layout
32072
32073 \end_inset
32074
32075
32076 \end_layout
32077
32078 \begin_layout Subsection
32079 Negative Zahlen
32080 \begin_inset Index
32081 status collapsed
32082
32083 \begin_layout Plain Layout
32084 Zahlen ! negative
32085 \end_layout
32086
32087 \end_inset
32088
32089
32090 \end_layout
32091
32092 \begin_layout Standard
32093 Negative Zahlen sehen im Formelmodus oft schlecht aus, denn das Minuszeichen
32094  vor der Ziffer wird mit der gleichen Länge wie das Zeichen der Minus-Operation
32095  dargestellt.
32096  Schreibt man dagegen eine negative Zahl im normalen Text, erscheint das
32097  Minuszeichen korrekt.
32098 \end_layout
32099
32100 \begin_layout Standard
32101 Wandelt man also das Minuszeichen in mathematischen Text um, tritt das Problem
32102  nicht mehr auf.
32103 \end_layout
32104
32105 \begin_layout Standard
32106 Ein Beispiel zur Veranschaulichung der Problematik:
32107 \end_layout
32108
32109 \begin_layout Standard
32110 \align center
32111 \begin_inset Tabular
32112 <lyxtabular version="3" rows="3" columns="2">
32113 <features>
32114 <column alignment="right" valignment="top" width="0">
32115 <column alignment="left" valignment="top" width="0">
32116 <row>
32117 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
32118 \begin_inset Text
32119
32120 \begin_layout Plain Layout
32121 normaler Text:
32122 \end_layout
32123
32124 \end_inset
32125 </cell>
32126 <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
32127 \begin_inset Text
32128
32129 \begin_layout Plain Layout
32130 x = -2
32131 \end_layout
32132
32133 \end_inset
32134 </cell>
32135 </row>
32136 <row>
32137 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
32138 \begin_inset Text
32139
32140 \begin_layout Plain Layout
32141 Formelmodus:
32142 \end_layout
32143
32144 \end_inset
32145 </cell>
32146 <cell alignment="center" valignment="top" topline="true" bottomline="true" rightline="true" usebox="none">
32147 \begin_inset Text
32148
32149 \begin_layout Plain Layout
32150 \begin_inset Formula $x=-2$
32151 \end_inset
32152
32153
32154 \end_layout
32155
32156 \end_inset
32157 </cell>
32158 </row>
32159 <row>
32160 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
32161 \begin_inset Text
32162
32163 \begin_layout Plain Layout
32164 Lösung:
32165 \end_layout
32166
32167 \end_inset
32168 </cell>
32169 <cell alignment="center" valignment="top" topline="true" bottomline="true" rightline="true" usebox="none">
32170 \begin_inset Text
32171
32172 \begin_layout Plain Layout
32173 \begin_inset Formula $x=\textrm{-}2$
32174 \end_inset
32175
32176
32177 \end_layout
32178
32179 \end_inset
32180 </cell>
32181 </row>
32182 </lyxtabular>
32183
32184 \end_inset
32185
32186
32187 \end_layout
32188
32189 \begin_layout Subsection
32190 Komma als Dezimaltrennzeichen
32191 \begin_inset Index
32192 status collapsed
32193
32194 \begin_layout Plain Layout
32195 Komma
32196 \end_layout
32197
32198 \end_inset
32199
32200
32201 \end_layout
32202
32203 \begin_layout Standard
32204 In LaTeX fungiert das Komma in einer Formel, gemäß englischer Konvention,
32205  als Gruppentrennzeichen.
32206  Es wird demnach automatisch hinter allen Kommas in Formeln ein Leerraum
32207  eingefügt.
32208 \end_layout
32209
32210 \begin_layout Standard
32211 Um dies zu verhindern, markiert man das Komma und wandelt es in mathematischen
32212  Text um (Tastenkürzel 
32213 \family sans
32214 Alt-m
32215 \begin_inset space ~
32216 \end_inset
32217
32218 m
32219 \family default
32220 ).
32221 \end_layout
32222
32223 \begin_layout Standard
32224 Um hingegen alle Formelkommas des Dokuments als Dezimaltrennzeichen zu setzen,
32225  lädt man die Datei 
32226 \series bold
32227 icomma.sty
32228 \series default
32229
32230 \begin_inset Foot
32231 status collapsed
32232
32233 \begin_layout Plain Layout
32234
32235 \series bold
32236 icomma
32237 \series default
32238  ist Teil des LaTeX-Paketes 
32239 \series bold
32240 was
32241 \series default
32242
32243 \begin_inset Index
32244 status collapsed
32245
32246 \begin_layout Plain Layout
32247 Pakete ! was
32248 \begin_inset ERT
32249 status collapsed
32250
32251 \begin_layout Plain Layout
32252
32253
32254 \backslash
32255 vspace{4mm}
32256 \end_layout
32257
32258 \end_inset
32259
32260
32261 \end_layout
32262
32263 \end_inset
32264
32265 .
32266 \end_layout
32267
32268 \end_inset
32269
32270
32271 \begin_inset Index
32272 status collapsed
32273
32274 \begin_layout Plain Layout
32275 Pakete ! icomma
32276 \end_layout
32277
32278 \end_inset
32279
32280  mit der LaTeX-Vorspannzeile
32281 \end_layout
32282
32283 \begin_layout Standard
32284
32285 \series bold
32286
32287 \backslash
32288 usepackage{icomma}
32289 \end_layout
32290
32291 \begin_layout Subsection
32292 Physikalische Vektoren
32293 \begin_inset CommandInset label
32294 LatexCommand label
32295 name "sub:Physikalische-Vektoren"
32296
32297 \end_inset
32298
32299
32300 \begin_inset Index
32301 status collapsed
32302
32303 \begin_layout Plain Layout
32304 Vektoren ! physikalische
32305 \end_layout
32306
32307 \end_inset
32308
32309
32310 \end_layout
32311
32312 \begin_layout Standard
32313 Vordefinierte Vektoren bietet das LaTeX-Paket 
32314 \series bold
32315 braket
32316 \series default
32317
32318 \begin_inset Foot
32319 status collapsed
32320
32321 \begin_layout Plain Layout
32322
32323 \series bold
32324 braket
32325 \series default
32326  sollte Teil jeder LaTeX-Standardinstallation sein.
32327 \end_layout
32328
32329 \end_inset
32330
32331
32332 \begin_inset Index
32333 status collapsed
32334
32335 \begin_layout Plain Layout
32336 Pakete ! braket
32337 \end_layout
32338
32339 \end_inset
32340
32341 , das mit der LaTeX-Vorspannzeile
32342 \end_layout
32343
32344 \begin_layout Standard
32345
32346 \series bold
32347
32348 \backslash
32349 usepackage{braket}
32350 \end_layout
32351
32352 \begin_layout Standard
32353 geladen wird.
32354 \begin_inset ERT
32355 status collapsed
32356
32357 \begin_layout Plain Layout
32358
32359
32360 \backslash
32361 ifbraket 
32362 \end_layout
32363
32364 \end_inset
32365
32366
32367 \begin_inset Note Note
32368 status open
32369
32370 \begin_layout Plain Layout
32371 Die folgende Tabelle erscheint nur im Ausdruck wenn das LaTeX-Paket 
32372 \series bold
32373 braket
32374 \series default
32375  installiert ist:
32376 \end_layout
32377
32378 \end_inset
32379
32380
32381 \end_layout
32382
32383 \begin_layout Standard
32384 Folgende Befehle sind definiert:
32385 \end_layout
32386
32387 \begin_layout Standard
32388 \align center
32389 \begin_inset Tabular
32390 <lyxtabular version="3" rows="4" columns="2">
32391 <features>
32392 <column alignment="center" valignment="top" width="0">
32393 <column alignment="center" valignment="top" width="0">
32394 <row>
32395 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
32396 \begin_inset Text
32397
32398 \begin_layout Plain Layout
32399 Befehl
32400 \end_layout
32401
32402 \end_inset
32403 </cell>
32404 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
32405 \begin_inset Text
32406
32407 \begin_layout Plain Layout
32408 Ergebnis
32409 \end_layout
32410
32411 \end_inset
32412 </cell>
32413 </row>
32414 <row>
32415 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
32416 \begin_inset Text
32417
32418 \begin_layout Plain Layout
32419
32420 \backslash
32421 Bra{
32422 \backslash
32423 psi
32424 \end_layout
32425
32426 \end_inset
32427 </cell>
32428 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
32429 \begin_inset Text
32430
32431 \begin_layout Plain Layout
32432 \begin_inset Formula $\Bra{\psi}$
32433 \end_inset
32434
32435
32436 \end_layout
32437
32438 \end_inset
32439 </cell>
32440 </row>
32441 <row>
32442 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
32443 \begin_inset Text
32444
32445 \begin_layout Plain Layout
32446
32447 \backslash
32448 Ket{
32449 \backslash
32450 psi
32451 \end_layout
32452
32453 \end_inset
32454 </cell>
32455 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
32456 \begin_inset Text
32457
32458 \begin_layout Plain Layout
32459 \begin_inset Formula $\Ket{\psi}$
32460 \end_inset
32461
32462
32463 \end_layout
32464
32465 \end_inset
32466 </cell>
32467 </row>
32468 <row>
32469 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
32470 \begin_inset Text
32471
32472 \begin_layout Plain Layout
32473
32474 \backslash
32475 Braket{
32476 \backslash
32477 psi|
32478 \backslash
32479 phi
32480 \end_layout
32481
32482 \end_inset
32483 </cell>
32484 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
32485 \begin_inset Text
32486
32487 \begin_layout Plain Layout
32488 \begin_inset Formula $\Braket{\psi|\phi}$
32489 \end_inset
32490
32491
32492 \end_layout
32493
32494 \end_inset
32495 </cell>
32496 </row>
32497 </lyxtabular>
32498
32499 \end_inset
32500
32501
32502 \end_layout
32503
32504 \begin_layout Standard
32505 Der Befehl 
32506 \series bold
32507
32508 \backslash
32509 Braket
32510 \series default
32511  stellt sicher, dass alle senkrechten Striche in der Größe der umgebenden
32512  Klammern gesetzt werden:
32513 \begin_inset Formula \[
32514 \Braket{\phi|J=\frac{3}{2}\,,\, M_{J}}\]
32515
32516 \end_inset
32517
32518
32519 \begin_inset ERT
32520 status collapsed
32521
32522 \begin_layout Plain Layout
32523
32524
32525 \backslash
32526 else 
32527 \end_layout
32528
32529 \end_inset
32530
32531
32532 \begin_inset Note Note
32533 status open
32534
32535 \begin_layout Plain Layout
32536 Folgendes erscheint im Ausdruck wenn das LaTeX-Paket 
32537 \series bold
32538 braket
32539 \series default
32540  nicht installiert ist:
32541 \end_layout
32542
32543 \end_inset
32544
32545
32546 \end_layout
32547
32548 \begin_layout Standard
32549 Das LaTeX-Paket 
32550 \series bold
32551 braket 
32552 \series default
32553 muss installiert sein, um den Rest dieses Abschnitts im Ausdruck zu sehen.
32554 \end_layout
32555
32556 \begin_layout Standard
32557 \begin_inset ERT
32558 status collapsed
32559
32560 \begin_layout Plain Layout
32561
32562
32563 \backslash
32564 fi 
32565 \end_layout
32566
32567 \end_inset
32568
32569
32570 \end_layout
32571
32572 \begin_layout Standard
32573 Der Effekt von 
32574 \series bold
32575
32576 \backslash
32577 Braket
32578 \series default
32579  kann auch mit dem Befehl 
32580 \series bold
32581
32582 \backslash
32583 middle
32584 \series default
32585  erzielt werden, der in 
32586 \begin_inset CommandInset ref
32587 LatexCommand ref
32588 reference "sub:Automatische-Klammergrößen"
32589
32590 \end_inset
32591
32592  beschrieben ist.
32593 \end_layout
32594
32595 \begin_layout Subsection
32596 Selbst definierte Brüche
32597 \begin_inset CommandInset label
32598 LatexCommand label
32599 name "sub:Selbstdefinierte-Brüche"
32600
32601 \end_inset
32602
32603
32604 \begin_inset Index
32605 status collapsed
32606
32607 \begin_layout Plain Layout
32608 Brüche ! selbstdefinierte
32609 \end_layout
32610
32611 \end_inset
32612
32613
32614 \end_layout
32615
32616 \begin_layout Standard
32617 Um eigene Befehle für Brüche zu definieren, verwendet man den Befehl 
32618 \series bold
32619
32620 \backslash
32621 genfrac
32622 \series default
32623
32624 \begin_inset Index
32625 status collapsed
32626
32627 \begin_layout Plain Layout
32628 Befehle ! G ! 
32629 \backslash
32630 genfrac
32631 \end_layout
32632
32633 \end_inset
32634
32635  in folgendem Schema:
32636 \end_layout
32637
32638 \begin_layout Standard
32639
32640 \series bold
32641
32642 \backslash
32643 genfrac{linke
32644 \series default
32645  
32646 \series bold
32647 Klammer}{rechte
32648 \series default
32649  
32650 \series bold
32651 Klammer}{Bruchstrichdicke}{Ansichtsstil}
32652 \begin_inset Newline newline
32653 \end_inset
32654
32655
32656 \begin_inset ERT
32657 status collapsed
32658
32659 \begin_layout Plain Layout
32660
32661
32662 \backslash
32663 phantom{
32664 \end_layout
32665
32666 \end_inset
32667
32668
32669 \backslash
32670 genfrac
32671 \begin_inset ERT
32672 status collapsed
32673
32674 \begin_layout Plain Layout
32675
32676 }
32677 \end_layout
32678
32679 \end_inset
32680
32681 {Zähler}{Nenner}
32682 \end_layout
32683
32684 \begin_layout Standard
32685 Der Ansichtsstil wird mit einer ganzen Zahl im Bereich 0
32686 \begin_inset space \thinspace{}
32687 \end_inset
32688
32689 -
32690 \begin_inset space \thinspace{}
32691 \end_inset
32692
32693 3 angegeben.
32694 \end_layout
32695
32696 \begin_layout Standard
32697 \align center
32698 \begin_inset Tabular
32699 <lyxtabular version="3" rows="5" columns="2">
32700 <features>
32701 <column alignment="center" valignment="top" width="0">
32702 <column alignment="center" valignment="top" width="0">
32703 <row>
32704 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
32705 \begin_inset Text
32706
32707 \begin_layout Plain Layout
32708 Nummer
32709 \end_layout
32710
32711 \end_inset
32712 </cell>
32713 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
32714 \begin_inset Text
32715
32716 \begin_layout Plain Layout
32717 Ansichtsstil
32718 \end_layout
32719
32720 \end_inset
32721 </cell>
32722 </row>
32723 <row>
32724 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
32725 \begin_inset Text
32726
32727 \begin_layout Plain Layout
32728 0
32729 \end_layout
32730
32731 \end_inset
32732 </cell>
32733 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
32734 \begin_inset Text
32735
32736 \begin_layout Plain Layout
32737 abgesetzte Formel
32738 \end_layout
32739
32740 \end_inset
32741 </cell>
32742 </row>
32743 <row>
32744 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
32745 \begin_inset Text
32746
32747 \begin_layout Plain Layout
32748 1
32749 \end_layout
32750
32751 \end_inset
32752 </cell>
32753 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
32754 \begin_inset Text
32755
32756 \begin_layout Plain Layout
32757 eingebettete Formel
32758 \end_layout
32759
32760 \end_inset
32761 </cell>
32762 </row>
32763 <row>
32764 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
32765 \begin_inset Text
32766
32767 \begin_layout Plain Layout
32768 2
32769 \end_layout
32770
32771 \end_inset
32772 </cell>
32773 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
32774 \begin_inset Text
32775
32776 \begin_layout Plain Layout
32777 klein
32778 \end_layout
32779
32780 \end_inset
32781 </cell>
32782 </row>
32783 <row>
32784 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
32785 \begin_inset Text
32786
32787 \begin_layout Plain Layout
32788 3
32789 \end_layout
32790
32791 \end_inset
32792 </cell>
32793 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
32794 \begin_inset Text
32795
32796 \begin_layout Plain Layout
32797 winzig
32798 \end_layout
32799
32800 \end_inset
32801 </cell>
32802 </row>
32803 </lyxtabular>
32804
32805 \end_inset
32806
32807
32808 \end_layout
32809
32810 \begin_layout Standard
32811 Wird nichts für den Ansichtsstil angegeben, passt sich die Größe wie bei
32812  
32813 \series bold
32814
32815 \backslash
32816 frac
32817 \series default
32818  der Umgebung an.
32819 \end_layout
32820
32821 \begin_layout Standard
32822 Wird keine Bruchstrichdicke angegeben, wird der voreingestellte Wert von
32823  0.4
32824 \begin_inset space \thinspace{}
32825 \end_inset
32826
32827 pt verwendet.
32828 \end_layout
32829
32830 \begin_layout Standard
32831 \begin_inset VSpace medskip
32832 \end_inset
32833
32834 Zum Beispiel sind die Befehle 
32835 \series bold
32836
32837 \backslash
32838 dfrac
32839 \series default
32840  und 
32841 \series bold
32842
32843 \backslash
32844 tbinom
32845 \series default
32846  aus 
32847 \begin_inset CommandInset ref
32848 LatexCommand ref
32849 reference "sub:Brüche"
32850
32851 \end_inset
32852
32853  folgendermaßen definiert:
32854 \end_layout
32855
32856 \begin_layout Standard
32857
32858 \series bold
32859
32860 \backslash
32861 newcommand{
32862 \backslash
32863 dfrac}[2]{
32864 \backslash
32865 genfrac{}{}{}{0}{#1}{#2}}
32866 \end_layout
32867
32868 \begin_layout Standard
32869 und
32870 \end_layout
32871
32872 \begin_layout Standard
32873
32874 \series bold
32875
32876 \backslash
32877 newcommand{
32878 \backslash
32879 tbinom}[2]{
32880 \backslash
32881 genfrac{(}{)}{0pt}{1}{#1}{#2}}
32882 \end_layout
32883
32884 \begin_layout Standard
32885 \begin_inset VSpace medskip
32886 \end_inset
32887
32888 Um einen Bruch zu definieren, bei dem man die Bruchstrichdicke als optionales
32889  Argument angeben kann, gibt man im LaTeX-Vorspann folgenden Befehl ein:
32890 \end_layout
32891
32892 \begin_layout Standard
32893
32894 \series bold
32895
32896 \backslash
32897 newcommand{
32898 \backslash
32899 fracS}[3][]{
32900 \backslash
32901 genfrac{}{}{#1}{}{#2}{#3}}
32902 \end_layout
32903
32904 \begin_layout Standard
32905 Dazu ein Test:
32906 \begin_inset Formula \begin{align*}
32907 \text{Befehl} &  & \mathrm{\backslash fracS[1mm]\backslash\{A\to\backslash\{B} &  & \mathrm{\backslash fracS[5mm]\backslash\{A\to\backslash\{B}\\
32908 \text{Ergebnis} &  & \fracS[1mm]{A}{B} &  & \fracS[5mm]{A}{B}\end{align*}
32909
32910 \end_inset
32911
32912 Wie man sieht, entspricht der Abstand des Zählers und Nenners vom Strich
32913  in etwa der dreifachen Strichdicke.
32914 \end_layout
32915
32916 \begin_layout Subsection
32917 Durchgestrichene Formeln
32918 \begin_inset CommandInset label
32919 LatexCommand label
32920 name "sub:Durchgestrichene-Formeln"
32921
32922 \end_inset
32923
32924
32925 \begin_inset Index
32926 status collapsed
32927
32928 \begin_layout Plain Layout
32929 Formel ! durchgestrichene
32930 \end_layout
32931
32932 \end_inset
32933
32934
32935 \end_layout
32936
32937 \begin_layout Standard
32938 Um Formeln oder Formelteile durchzustreichen, muss das LaTeX-Paket 
32939 \series bold
32940 cancel
32941 \series default
32942
32943 \begin_inset Foot
32944 status collapsed
32945
32946 \begin_layout Plain Layout
32947
32948 \series bold
32949 cancel
32950 \series default
32951  ist Teil jeder LaTeX-Standardinstallation.
32952 \end_layout
32953
32954 \end_inset
32955
32956
32957 \begin_inset Index
32958 status collapsed
32959
32960 \begin_layout Plain Layout
32961 Pakete ! cancel
32962 \end_layout
32963
32964 \end_inset
32965
32966  mit der LaTeX-Vorspannzeile
32967 \end_layout
32968
32969 \begin_layout Standard
32970
32971 \series bold
32972
32973 \backslash
32974 usepackage[samesize]{cancel}
32975 \end_layout
32976
32977 \begin_layout Standard
32978 geladen werden.
32979 \begin_inset Newpage pagebreak
32980 \end_inset
32981
32982
32983 \end_layout
32984
32985 \begin_layout Standard
32986 Es gibt vier verschiedene Arten durchzustreichen:
32987 \end_layout
32988
32989 \begin_layout Standard
32990 \align center
32991 \begin_inset Tabular
32992 <lyxtabular version="3" rows="5" columns="2">
32993 <features>
32994 <column alignment="center" valignment="top" width="0">
32995 <column alignment="center" valignment="top" width="0">
32996 <row>
32997 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
32998 \begin_inset Text
32999
33000 \begin_layout Plain Layout
33001 Befehl
33002 \end_layout
33003
33004 \end_inset
33005 </cell>
33006 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
33007 \begin_inset Text
33008
33009 \begin_layout Plain Layout
33010 Ergebnis
33011 \begin_inset Note Note
33012 status collapsed
33013
33014 \begin_layout Plain Layout
33015
33016 \series bold
33017
33018 \backslash
33019 hspace
33020 \series default
33021  und 
33022 \series bold
33023
33024 \backslash
33025 raisebox
33026 \series default
33027  dienen nur als Abstandhalter.
33028 \end_layout
33029
33030 \end_inset
33031
33032
33033 \end_layout
33034
33035 \end_inset
33036 </cell>
33037 </row>
33038 <row>
33039 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
33040 \begin_inset Text
33041
33042 \begin_layout Plain Layout
33043
33044 \backslash
33045 cancel{
33046 \backslash
33047 int
33048 \begin_inset ERT
33049 status collapsed
33050
33051 \begin_layout Plain Layout
33052
33053
33054 \backslash
33055 leer 
33056 \end_layout
33057
33058 \end_inset
33059
33060 A=B
33061 \end_layout
33062
33063 \end_inset
33064 </cell>
33065 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
33066 \begin_inset Text
33067
33068 \begin_layout Plain Layout
33069 \begin_inset Formula $\raisebox{4.5mm}{}\cancel{\int A=B}\raisebox{-2.5mm}{}$
33070 \end_inset
33071
33072
33073 \end_layout
33074
33075 \end_inset
33076 </cell>
33077 </row>
33078 <row>
33079 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
33080 \begin_inset Text
33081
33082 \begin_layout Plain Layout
33083
33084 \backslash
33085 bcancel{
33086 \backslash
33087 int
33088 \begin_inset ERT
33089 status collapsed
33090
33091 \begin_layout Plain Layout
33092
33093
33094 \backslash
33095 leer 
33096 \end_layout
33097
33098 \end_inset
33099
33100 A=B
33101 \end_layout
33102
33103 \end_inset
33104 </cell>
33105 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
33106 \begin_inset Text
33107
33108 \begin_layout Plain Layout
33109 \begin_inset Formula $\raisebox{4.5mm}{}\bcancel{\int A=B}\raisebox{-2.5mm}{}$
33110 \end_inset
33111
33112
33113 \end_layout
33114
33115 \end_inset
33116 </cell>
33117 </row>
33118 <row>
33119 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
33120 \begin_inset Text
33121
33122 \begin_layout Plain Layout
33123
33124 \backslash
33125 xcancel{
33126 \backslash
33127 int
33128 \begin_inset ERT
33129 status collapsed
33130
33131 \begin_layout Plain Layout
33132
33133
33134 \backslash
33135 leer 
33136 \end_layout
33137
33138 \end_inset
33139
33140 A=B
33141 \end_layout
33142
33143 \end_inset
33144 </cell>
33145 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
33146 \begin_inset Text
33147
33148 \begin_layout Plain Layout
33149 \begin_inset Formula $\raisebox{4.5mm}{}\xcancel{\int A=B}\raisebox{-2.5mm}{}$
33150 \end_inset
33151
33152
33153 \end_layout
33154
33155 \end_inset
33156 </cell>
33157 </row>
33158 <row>
33159 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
33160 \begin_inset Text
33161
33162 \begin_layout Plain Layout
33163
33164 \backslash
33165 cancelto{1
33166 \begin_inset Formula $\to$
33167 \end_inset
33168
33169
33170 \backslash
33171 {
33172 \backslash
33173 int
33174 \begin_inset ERT
33175 status collapsed
33176
33177 \begin_layout Plain Layout
33178
33179
33180 \backslash
33181 leer 
33182 \end_layout
33183
33184 \end_inset
33185
33186 A=B
33187 \end_layout
33188
33189 \end_inset
33190 </cell>
33191 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
33192 \begin_inset Text
33193
33194 \begin_layout Plain Layout
33195 \begin_inset Formula $\raisebox{7mm}{}\cancelto{1}{\int A=B}\raisebox{-2.5mm}{}\hspace{3mm}$
33196 \end_inset
33197
33198
33199 \end_layout
33200
33201 \end_inset
33202 </cell>
33203 </row>
33204 </lyxtabular>
33205
33206 \end_inset
33207
33208
33209 \end_layout
33210
33211 \begin_layout Standard
33212
33213 \series bold
33214
33215 \backslash
33216 cancelto
33217 \series default
33218  eignet sich besonders, wenn man das Kürzen innerhalb einer Formel darstellen
33219  will:
33220 \begin_inset Formula \[
33221 \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}}}\]
33222
33223 \end_inset
33224
33225
33226 \end_layout
33227
33228 \begin_layout Subsection
33229 Formeln in Überschriften
33230 \begin_inset CommandInset label
33231 LatexCommand label
33232 name "sub:Formeln-in-Überschriften"
33233
33234 \end_inset
33235
33236
33237 \begin_inset Index
33238 status collapsed
33239
33240 \begin_layout Plain Layout
33241 Formel ! in Überschriften
33242 \end_layout
33243
33244 \end_inset
33245
33246
33247 \end_layout
33248
33249 \begin_layout Standard
33250 Benutzt man Formeln in Überschriften, ist auf Folgendes zu achten:
33251 \end_layout
33252
33253 \begin_layout Standard
33254 \begin_inset Note Greyedout
33255 status open
33256
33257 \begin_layout Plain Layout
33258 Verwendet man 
33259 \series bold
33260 hyperref
33261 \series default
33262
33263 \begin_inset Index
33264 status collapsed
33265
33266 \begin_layout Plain Layout
33267 Pakete ! hyperref
33268 \end_layout
33269
33270 \end_inset
33271
33272  Unterstützung im den Dokumenteinstellungen unter 
33273 \family sans
33274 PDF-Eigenschaften
33275 \family default
33276 , werden PDF-Lesezeichen für jede Überschrift aus dem Inhaltsverzeichnis
33277  erzeugt.
33278  Enthält eine Überschrift Formeln, werden diese im Lesezeichentext falsch
33279  dargestellt.
33280  Denn Formeln in Lesezeichen verstoßen gegen die PDF-Konventionen.
33281 \end_layout
33282
33283 \end_inset
33284
33285
33286 \end_layout
33287
33288 \begin_layout Standard
33289 Beide Probleme lassen sich lösen, indem man am Ende der Überschrift einen
33290  Kurztitel über das Menü 
33291 \family sans
33292 Einfügen\SpecialChar \menuseparator
33293 Kurztitel
33294 \family default
33295  einfügt.
33296  Kurztitel werden als Alternative für mehrzeilige Überschriften verwendet,
33297  um das Inhaltsverzeichnis übersichtlich zu halten.
33298  Nur der Kurztitel erscheint im Inhaltsverzeichnis und damit auch im PDF-Lesezei
33299 chen.
33300 \end_layout
33301
33302 \begin_layout Standard
33303 Möchte man im Inhaltsverzeichnis eine Formel verwenden, benutzt aber 
33304 \series bold
33305 hyperref
33306 \series default
33307 , verwendet man im TeX-Modus den Befehl
33308 \end_layout
33309
33310 \begin_layout Standard
33311
33312 \series bold
33313
33314 \backslash
33315 texorpdfstring{Teil}{Alternative}
33316 \begin_inset Index
33317 status collapsed
33318
33319 \begin_layout Plain Layout
33320 Befehle ! T ! 
33321 \backslash
33322 texorpdfstring
33323 \end_layout
33324
33325 \end_inset
33326
33327
33328 \end_layout
33329
33330 \begin_layout Standard
33331 Teil ist der Überschriftsteil, der nicht im PDF-Lesezeichen erscheinen solle.
33332  Das können Zeichen, Formeln, Fußnoten aber auch Querverweise sein.
33333  Als Alternative kann man angeben, was stattdessen im Lesezeichen erscheinen
33334  soll.
33335 \end_layout
33336
33337 \begin_layout Standard
33338 Es folgen zwei Beispielüberschriften:
33339 \begin_inset VSpace -3mm
33340 \end_inset
33341
33342
33343 \begin_inset ERT
33344 status collapsed
33345
33346 \begin_layout Plain Layout
33347
33348
33349 \backslash
33350 boldmath 
33351 \end_layout
33352
33353 \end_inset
33354
33355
33356 \end_layout
33357
33358 \begin_layout Subsubsection
33359 Überschrift ohne Formel im Inhaltsverzeichnis 
33360 \begin_inset Formula $\sqrt{-1}=\mathrm{i}$
33361 \end_inset
33362
33363
33364 \begin_inset OptArg
33365 status collapsed
33366
33367 \begin_layout Plain Layout
33368 Überschrift ohne Formel im Inhaltsverzeichnis
33369 \end_layout
33370
33371 \end_inset
33372
33373
33374 \end_layout
33375
33376 \begin_layout Subsubsection
33377 Überschrift mit Formel im Inhaltsverzeichnis
33378 \begin_inset ERT
33379 status collapsed
33380
33381 \begin_layout Plain Layout
33382
33383
33384 \backslash
33385 texorpdfstring{
33386 \end_layout
33387
33388 \end_inset
33389
33390  
33391 \begin_inset Formula $\sqrt{-1}=\mathrm{i}$
33392 \end_inset
33393
33394
33395 \begin_inset ERT
33396 status collapsed
33397
33398 \begin_layout Plain Layout
33399
33400 }{}
33401 \end_layout
33402
33403 \end_inset
33404
33405
33406 \end_layout
33407
33408 \begin_layout Standard
33409 \begin_inset ERT
33410 status collapsed
33411
33412 \begin_layout Plain Layout
33413
33414
33415 \backslash
33416 unboldmath 
33417 \end_layout
33418
33419 \end_inset
33420
33421 In der ersten Überschrift wurde ein Kurztitel verwendet.
33422  In der zweiten 
33423 \series bold
33424
33425 \backslash
33426 texorpdfstring
33427 \series default
33428 .
33429 \end_layout
33430
33431 \begin_layout Standard
33432 Damit die Formeln so wie der Rest der Überschrift formatiert werden, wurde
33433  die komplette Überschrift in eine 
33434 \series bold
33435 boldmath
33436 \series default
33437 -Umgebung
33438 \begin_inset Foot
33439 status collapsed
33440
33441 \begin_layout Plain Layout
33442 siehe 
33443 \begin_inset CommandInset ref
33444 LatexCommand ref
33445 reference "sub:Fett-gedruckte-Formeln"
33446
33447 \end_inset
33448
33449
33450 \end_layout
33451
33452 \end_inset
33453
33454  gesetzt.
33455 \end_layout
33456
33457 \begin_layout Subsection
33458 Formeln im mehrspaltigen Text
33459 \begin_inset Index
33460 status collapsed
33461
33462 \begin_layout Plain Layout
33463 Formel ! im mehrspaltigen Text
33464 \end_layout
33465
33466 \end_inset
33467
33468
33469 \end_layout
33470
33471 \begin_layout Standard
33472 Formeln im mehrspaltigen Text sind oftmals zu breit für eine Spalte und
33473  müssen daher über die gesamte Seitenbreite gesetzt werden.
33474  Dazu verwendet man das LaTeX-Paket 
33475 \series bold
33476 multicol
33477 \series default
33478
33479 \begin_inset Foot
33480 status collapsed
33481
33482 \begin_layout Plain Layout
33483
33484 \series bold
33485 multicol
33486 \series default
33487  ist Teil jeder LaTeX-Standardinstallation.
33488 \end_layout
33489
33490 \end_inset
33491
33492
33493 \begin_inset Index
33494 status collapsed
33495
33496 \begin_layout Plain Layout
33497 Pakete ! multicol
33498 \end_layout
33499
33500 \end_inset
33501
33502 , das mit der LaTeX-Vorspannzeile
33503 \end_layout
33504
33505 \begin_layout Standard
33506
33507 \series bold
33508
33509 \backslash
33510 usepackage{multicol}
33511 \end_layout
33512
33513 \begin_layout Standard
33514 geladen wird.
33515 \end_layout
33516
33517 \begin_layout Standard
33518 \begin_inset Note Greyedout
33519 status open
33520
33521 \begin_layout Plain Layout
33522 Dabei ist zu beachten, dass im Menü 
33523 \family sans
33524 Dokument\SpecialChar \menuseparator
33525 Einstellungen
33526 \family default
33527  unter 
33528 \family sans
33529 Textformat
33530 \family default
33531  
33532 \emph on
33533 nicht
33534 \emph default
33535  
33536 \family sans
33537 Zweispaltiges
33538 \begin_inset space ~
33539 \end_inset
33540
33541 Dokument
33542 \family default
33543  ausgewählt sein darf.
33544 \end_layout
33545
33546 \end_inset
33547
33548
33549 \end_layout
33550
33551 \begin_layout Standard
33552 Vor den mehrspaltigen Text schreibt man im TeX-Modus den Befehl
33553 \end_layout
33554
33555 \begin_layout Standard
33556
33557 \series bold
33558
33559 \backslash
33560 begin{multicols}{Spaltenanzahl}
33561 \end_layout
33562
33563 \begin_layout Standard
33564 wobei die Spaltenanzahl eine Zahl im Bereich 2
33565 \begin_inset space \thinspace{}
33566 \end_inset
33567
33568 -
33569 \begin_inset space \thinspace{}
33570 \end_inset
33571
33572 10 ist.
33573  Vor der Formel beendet man den mehrspaltigen Text mit dem Befehl
33574 \end_layout
33575
33576 \begin_layout Standard
33577
33578 \series bold
33579
33580 \backslash
33581 end{multicols}
33582 \end_layout
33583
33584 \begin_layout Standard
33585 der im TeX-Modus eingegeben wird.
33586 \end_layout
33587
33588 \begin_layout Standard
33589 Durch den Befehl wird vor der Formel automatisch etwas Leerraum erstellt.
33590  Um dies rückgängig zu machen, fügt man vor der Formel -6
33591 \begin_inset space \thinspace{}
33592 \end_inset
33593
33594 mm vertikalen Leerraum ein.
33595  Ist der Formelstil 
33596 \series bold
33597 Eingerückt
33598 \begin_inset Foot
33599 status collapsed
33600
33601 \begin_layout Plain Layout
33602 Formelstile siehe 
33603 \begin_inset CommandInset ref
33604 LatexCommand ref
33605 reference "sec:Formelstile"
33606
33607 \end_inset
33608
33609
33610 \end_layout
33611
33612 \end_inset
33613
33614
33615 \series default
33616  gewählt, fügt man stattdessen -9
33617 \begin_inset space \thinspace{}
33618 \end_inset
33619
33620 mm Leerraum ein.
33621 \end_layout
33622
33623 \begin_layout Standard
33624 Als Beispiel ein mehrspaltiger Text mit einer abgesetzten Formel:
33625 \end_layout
33626
33627 \begin_layout Standard
33628 \begin_inset ERT
33629 status collapsed
33630
33631 \begin_layout Plain Layout
33632
33633
33634 \backslash
33635 begin{multicols}{2}
33636 \end_layout
33637
33638 \end_inset
33639
33640 Das Spektrum wird fouriertransformiert.
33641  Die Fouriertransformation wird verwendet, um die überlagerten Signale (Netzwerk
33642 , Lösungsmittel) zu trennen.
33643  Nachdem wir die Phasenverschiebung bestimmen konnten, interessiert uns
33644  nun das Aussehen des Ausgangssignals.
33645  Im Experiment haben wir es mit sehr vielen Teilchen zu tun, so dass man
33646  über alle Phasen integrieren muss.
33647  Sei nun 
33648 \begin_inset Formula $S$
33649 \end_inset
33650
33651  unser normiertes Ausgangssignal und 
33652 \begin_inset Formula $P$
33653 \end_inset
33654
33655  die Phasenverteilungsfunktion, so ergibt sich die Beziehung
33656 \begin_inset ERT
33657 status collapsed
33658
33659 \begin_layout Plain Layout
33660
33661
33662 \backslash
33663 end{multicols}
33664 \end_layout
33665
33666 \end_inset
33667
33668
33669 \begin_inset VSpace -6mm
33670 \end_inset
33671
33672
33673 \begin_inset Formula \begin{equation}
33674 S(t)=S_{0}(t)\int_{-\infty}^{\infty}P(\phi,t)\mathrm{e}^{\mathrm{i}\phi}\,\mathrm{d}\phi\label{eq:fouriertrafo}\end{equation}
33675
33676 \end_inset
33677
33678
33679 \begin_inset ERT
33680 status collapsed
33681
33682 \begin_layout Plain Layout
33683
33684
33685 \backslash
33686 begin{multicols}{2}
33687 \end_layout
33688
33689 \end_inset
33690
33691 wobei 
33692 \begin_inset Formula $S_{0}$
33693 \end_inset
33694
33695  das Signal ohne Gradient ist und die Normierungsbedingung 
33696 \begin_inset Formula $\int_{-\infty}^{\infty}P(\phi,t)\,\mathrm{d}\phi=1$
33697 \end_inset
33698
33699  gilt.
33700  Nun dürfen wir aber nicht den Relaxationsprozess außer Acht lassen.
33701  Direkt nach dem 
33702 \begin_inset Formula $\nicefrac{\pi}{2}$
33703 \end_inset
33704
33705
33706 \begin_inset space \thinspace{}
33707 \end_inset
33708
33709 -rf-Puls beginnt sich die Magnetisierung zu entfokussieren, wodurch sich
33710  das Signal zusätzlich abschwächt.
33711  Diese Abschwächung verläuft exponentiell in Abhängigkeit der so genannten
33712  
33713 \begin_inset Formula $T_{2}$
33714 \end_inset
33715
33716 -Zeit.
33717 \end_layout
33718
33719 \begin_layout Standard
33720 \begin_inset ERT
33721 status collapsed
33722
33723 \begin_layout Plain Layout
33724
33725
33726 \backslash
33727 end{multicols}
33728 \end_layout
33729
33730 \end_inset
33731
33732  
33733 \end_layout
33734
33735 \begin_layout Subsection
33736 Formeln mit Beschreibung der Variablen
33737 \begin_inset Index
33738 status collapsed
33739
33740 \begin_layout Plain Layout
33741 Formel ! mit Variablenbeschreibung
33742 \end_layout
33743
33744 \end_inset
33745
33746
33747 \end_layout
33748
33749 \begin_layout Standard
33750 Möchte man wie in Formel 
33751 \begin_inset CommandInset ref
33752 LatexCommand eqref
33753 reference "eq:innerhalb"
33754
33755 \end_inset
33756
33757 , Variablen innerhalb einer Formel beschreiben, verwendet man eine 2
33758 \series bold
33759 ×
33760 \series default
33761
33762 \begin_inset Formula $n$
33763 \end_inset
33764
33765
33766 \begin_inset space ~
33767 \end_inset
33768
33769 Matrix mit links ausgerichteten Spalten für die verwendeten 
33770 \begin_inset Formula $n$
33771 \end_inset
33772
33773  Variablen.
33774 \begin_inset Foot
33775 status collapsed
33776
33777 \begin_layout Plain Layout
33778 Matrizen siehe 
33779 \begin_inset CommandInset ref
33780 LatexCommand ref
33781 reference "sec:Matrizen"
33782
33783 \end_inset
33784
33785
33786 \end_layout
33787
33788 \end_inset
33789
33790  Um die Beschreibung kleiner zu setzen, gibt man vor der Matrix z.
33791 \begin_inset space \thinspace{}
33792 \end_inset
33793
33794 B.
33795  den Befehl 
33796 \series bold
33797
33798 \backslash
33799 footnotesize
33800 \series default
33801  ein.
33802 \begin_inset Foot
33803 status collapsed
33804
33805 \begin_layout Plain Layout
33806 Schriftgrößen siehe 
33807 \begin_inset CommandInset ref
33808 LatexCommand ref
33809 reference "sub:Schriftgrößen"
33810
33811 \end_inset
33812
33813
33814 \end_layout
33815
33816 \end_inset
33817
33818
33819 \end_layout
33820
33821 \begin_layout Standard
33822 Wird der Formelstil 
33823 \series bold
33824 Eingerückt
33825 \begin_inset Foot
33826 status collapsed
33827
33828 \begin_layout Plain Layout
33829 Formelstile siehe 
33830 \begin_inset CommandInset ref
33831 LatexCommand ref
33832 reference "sec:Formelstile"
33833
33834 \end_inset
33835
33836
33837 \end_layout
33838
33839 \end_inset
33840
33841
33842 \series default
33843  verwendet, fügt man vor und nach der Matrix ein 
33844 \series bold
33845
33846 \backslash
33847 hfill
33848 \series default
33849
33850 \begin_inset Foot
33851 status collapsed
33852
33853 \begin_layout Plain Layout
33854
33855 \series bold
33856
33857 \backslash
33858 hfill
33859 \series default
33860  wirkt nur in Formeln mit dem Stil 
33861 \series bold
33862 Eingerückt
33863 \series default
33864 , siehe 
33865 \begin_inset CommandInset ref
33866 LatexCommand ref
33867 reference "sub:Variabler-Leerraum"
33868
33869 \end_inset
33870
33871 .
33872 \end_layout
33873
33874 \end_inset
33875
33876  ein, damit der Abstand der Matrix von der Gleichung und vom Seitenrand
33877  gleich ist.
33878 \end_layout
33879
33880 \begin_layout Standard
33881 Ist der Formelstil 
33882 \series bold
33883 Zentriert
33884 \series default
33885  gewählt, nutzt man die in 
33886 \begin_inset CommandInset ref
33887 LatexCommand ref
33888 reference "sub:Flalign-Umgebung"
33889
33890 \end_inset
33891
33892  beschriebene Möglichkeit, Formeln einzurücken.
33893  Formel 
33894 \begin_inset CommandInset ref
33895 LatexCommand eqref
33896 reference "eq:innerhalb"
33897
33898 \end_inset
33899
33900  besteht aus fünf Spalten, wobei in den ersten beiden die Gleichung, in
33901  der dritten die Matrix und in der letzten die leere TeX-Klammer steht.
33902 \begin_inset Formula \begin{flalign}
33903 \hspace{30pt}F_{A} & =\rho·V·g & \footnotesize\begin{array}{ll}
33904 \rho & \textrm{Dichte}\\
33905 V & \textrm{Volumen}\\
33906 g & \textrm{Fallbeschleunigung}\end{array} &  & {}\label{eq:innerhalb}\end{flalign}
33907
33908 \end_inset
33909
33910
33911 \end_layout
33912
33913 \begin_layout Subsection
33914 Aufrechte kleine griechische Buchstaben
33915 \begin_inset CommandInset label
33916 LatexCommand label
33917 name "sub:Aufrechte-kleine-griechische"
33918
33919 \end_inset
33920
33921
33922 \begin_inset Index
33923 status collapsed
33924
33925 \begin_layout Plain Layout
33926 griechische Buchstaben ! aufrechte
33927 \end_layout
33928
33929 \end_inset
33930
33931
33932 \end_layout
33933
33934 \begin_layout Standard
33935 Die meisten Mathe-Schriften stellen nur kursive kleine griechische Buchstaben
33936  zur Verfügung.
33937  Für Symbole der Elementarteilchen, wie Pionen und Neutrinos werden jedoch
33938  aufrechte griechische Buchstaben benötigt.
33939  Die Datei 
33940 \series bold
33941 upgreek.sty
33942 \series default
33943
33944 \begin_inset Foot
33945 status collapsed
33946
33947 \begin_layout Plain Layout
33948
33949 \series bold
33950 upgreek
33951 \series default
33952  ist Teil des LaTeX-Paketes 
33953 \series bold
33954 was
33955 \series default
33956
33957 \begin_inset Index
33958 status collapsed
33959
33960 \begin_layout Plain Layout
33961 Pakete ! was
33962 \begin_inset ERT
33963 status collapsed
33964
33965 \begin_layout Plain Layout
33966
33967
33968 \backslash
33969 vspace{4mm}
33970 \end_layout
33971
33972 \end_inset
33973
33974
33975 \end_layout
33976
33977 \end_inset
33978
33979 .
33980 \end_layout
33981
33982 \end_inset
33983
33984
33985 \begin_inset Index
33986 status collapsed
33987
33988 \begin_layout Plain Layout
33989 Pakete ! upgreek
33990 \end_layout
33991
33992 \end_inset
33993
33994 , die mit der LaTeX-Vorspannzeile
33995 \end_layout
33996
33997 \begin_layout Standard
33998
33999 \series bold
34000
34001 \backslash
34002 usepackage{upgreek}
34003 \end_layout
34004
34005 \begin_layout Standard
34006 geladen wird, stellt diese Buchstaben zur Verfügung.
34007  
34008 \begin_inset ERT
34009 status collapsed
34010
34011 \begin_layout Plain Layout
34012
34013
34014 \backslash
34015 ifupgreek 
34016 \end_layout
34017
34018 \end_inset
34019
34020
34021 \begin_inset Note Note
34022 status open
34023
34024 \begin_layout Plain Layout
34025 Die folgende Tabelle erscheint nur im Ausdruck wenn das LaTeX-Paket 
34026 \series bold
34027 upgreek
34028 \series default
34029  installiert ist:
34030 \end_layout
34031
34032 \end_inset
34033
34034  Sie werden erzeugt, wenn der Befehl für einen griechischen Buchstaben mit
34035  
34036 \series bold
34037 up
34038 \series default
34039  begonnen wird.
34040  So erzeugt z.
34041 \begin_inset space \thinspace{}
34042 \end_inset
34043
34044 B.
34045  der Befehl 
34046 \series bold
34047
34048 \backslash
34049 uptau
34050 \series default
34051  dies: 
34052 \begin_inset Formula $\uptau$
34053 \end_inset
34054
34055
34056 \end_layout
34057
34058 \begin_layout Standard
34059 Damit kann man Elementarteilchenreaktionen erstellen:
34060 \begin_inset Formula \[
34061 \uppi^{+}\to\upmu^{+}+\upnu_{\upmu}\]
34062
34063 \end_inset
34064
34065
34066 \end_layout
34067
34068 \begin_layout Standard
34069 Die aufrechten Buchstaben sind fetter und breiter als die kursiven.
34070  Sie sollten daher nicht für Einheiten wie 
34071 \begin_inset Quotes gld
34072 \end_inset
34073
34074 µm
34075 \begin_inset Quotes grd
34076 \end_inset
34077
34078  verwendet werden.
34079 \end_layout
34080
34081 \begin_layout Standard
34082 \begin_inset ERT
34083 status collapsed
34084
34085 \begin_layout Plain Layout
34086
34087
34088 \backslash
34089 else 
34090 \end_layout
34091
34092 \end_inset
34093
34094
34095 \begin_inset Note Note
34096 status open
34097
34098 \begin_layout Plain Layout
34099 Folgendes erscheint im Ausdruck wenn das LaTeX-Paket 
34100 \series bold
34101 upgreek
34102 \series default
34103  nicht installiert ist:
34104 \end_layout
34105
34106 \end_inset
34107
34108
34109 \end_layout
34110
34111 \begin_layout Standard
34112 Das LaTeX-Paket 
34113 \series bold
34114 upgreek 
34115 \series default
34116 muss installiert sein, um den Rest dieses Abschnitts im Ausdruck zu sehen.
34117 \end_layout
34118
34119 \begin_layout Standard
34120 \begin_inset ERT
34121 status collapsed
34122
34123 \begin_layout Plain Layout
34124
34125
34126 \backslash
34127 fi 
34128 \end_layout
34129
34130 \end_inset
34131
34132
34133 \end_layout
34134
34135 \begin_layout Subsection
34136 Textzeichen in Formeln
34137 \begin_inset CommandInset label
34138 LatexCommand label
34139 name "sub:Textzeichen-in-Formeln"
34140
34141 \end_inset
34142
34143
34144 \begin_inset Index
34145 status collapsed
34146
34147 \begin_layout Plain Layout
34148 Text ! in Formeln
34149 \end_layout
34150
34151 \end_inset
34152
34153
34154 \end_layout
34155
34156 \begin_layout Standard
34157 In einigen Fällen möchte man Textzeichen direkt in Formeln eingeben.
34158  Benötigt man z.
34159 \begin_inset space \thinspace{}
34160 \end_inset
34161
34162 B.
34163  den mittigen Punkt · in Formeln wie 
34164 \begin_inset Formula $\nu=5·10^{5}\,\mathrm{Hz}$
34165 \end_inset
34166
34167 , müsste man dafür jedes Mal den Befehl 
34168 \series bold
34169
34170 \backslash
34171 cdot
34172 \series default
34173  eingeben
34174 \begin_inset Foot
34175 status collapsed
34176
34177 \begin_layout Plain Layout
34178 siehe 
34179 \begin_inset CommandInset ref
34180 LatexCommand ref
34181 reference "sub:Binäre-Operatoren"
34182
34183 \end_inset
34184
34185
34186 \end_layout
34187
34188 \end_inset
34189
34190 , da dieses Zeichen in allen Kodierungen als Textzeichen definiert ist.
34191  Man kann jedoch die Kodierung mit folgender LaTeX-Vorspannzeile ändern:
34192 \end_layout
34193
34194 \begin_layout Standard
34195
34196 \series bold
34197
34198 \backslash
34199 DeclareInputText{183}{
34200 \backslash
34201 ifmmode
34202 \backslash
34203 cdot
34204 \backslash
34205 else
34206 \backslash
34207 textperiodcentered
34208 \backslash
34209 f\SpecialChar \textcompwordmark{}
34210 i}
34211 \end_layout
34212
34213 \begin_layout Standard
34214 Die Zeichenkodierung (Menü 
34215 \family sans
34216 Dokument\SpecialChar \menuseparator
34217 Einstellungen\SpecialChar \menuseparator
34218 Sprache
34219 \family default
34220 ) legt fest, welches Zeichen beim Druck einer bestimmten Taste erscheint.
34221  Wenn man die Taste für das Zeichen '·' drückt, wird intern der Befehl 
34222 \series bold
34223
34224 \backslash
34225 textperiodcentered
34226 \series default
34227  verwendet.
34228  Dieser Befehl ist in einer Formel jedoch nicht verfügbar, so dass es zu
34229  LaTeX-Fehlern kommen würde.
34230  Durch die geänderte Kodierung wird hingegen automatisch der richtige Befehl
34231  gewählt, je nachdem ob das Zeichen in eine Formel eingegeben wurde oder
34232  nicht.
34233 \end_layout
34234
34235 \begin_layout Standard
34236 Die Kodierung der einzelnen Zeichen ist in Definitionsdateien abgespeichert.
34237  Z.
34238 \begin_inset space \thinspace{}
34239 \end_inset
34240
34241 B.
34242  ist die Kodierung 
34243 \series bold
34244 latin9
34245 \series default
34246  in der Datei 
34247 \series bold
34248 latin9.def
34249 \series default
34250  definiert, die sich im Installationsverzeichnis von LaTeX befindet.
34251  Kodierungen sollten nur über den LaTeX-Vorspann und nicht in den Definitionsdat
34252 eien geändert werden.
34253  Ansonsten können eigene Dokumente von anderen LyX-Nutzern auf anderen Computern
34254  nicht ohne Weiteres bearbeitet werden.
34255 \end_layout
34256
34257 \begin_layout Standard
34258 \begin_inset VSpace medskip
34259 \end_inset
34260
34261 In diesem Dokument wurde außerdem mittigen Punkt noch das Gradzeichen °
34262  mit folgenden LaTeX-Vorspannzeilen so definiert, dass sie direkt in eine
34263  Formel eingegeben werden können:
34264 \end_layout
34265
34266 \begin_layout Standard
34267
34268 \series bold
34269
34270 \backslash
34271 DeclareInputText{176}{
34272 \backslash
34273 ifmmode^
34274 \backslash
34275 circ
34276 \backslash
34277 else
34278 \backslash
34279 textdegree
34280 \backslash
34281 f\SpecialChar \textcompwordmark{}
34282 i}
34283 \end_layout
34284
34285 \begin_layout Standard
34286 \begin_inset Newpage newpage
34287 \end_inset
34288
34289
34290 \end_layout
34291
34292 \begin_layout Section
34293 \start_of_appendix
34294 Typographische Hinweise
34295 \begin_inset Index
34296 status collapsed
34297
34298 \begin_layout Plain Layout
34299 Typographische Hinweise
34300 \end_layout
34301
34302 \end_inset
34303
34304
34305 \end_layout
34306
34307 \begin_layout Standard
34308 Dieses Kapitel ist eine Zusammenfassung der wichtigsten typographischen
34309  Regeln, die teilweise auch im Duden 
34310 \begin_inset CommandInset citation
34311 LatexCommand cite
34312 key "Duden"
34313
34314 \end_inset
34315
34316  unter 
34317 \family typewriter
34318 Textverarbeitung
34319 \family default
34320  aufgelistet sind.
34321 \end_layout
34322
34323 \begin_layout Itemize
34324 Physikalische Einheiten werden 
34325 \emph on
34326 immer
34327 \emph default
34328  aufrecht gesetzt
34329 \begin_inset Foot
34330 status collapsed
34331
34332 \begin_layout Plain Layout
34333 wird durch Schriftstile erreicht, siehe 
34334 \begin_inset CommandInset ref
34335 LatexCommand ref
34336 reference "sub:Schriftstile"
34337
34338 \end_inset
34339
34340
34341 \end_layout
34342
34343 \end_inset
34344
34345 : 30
34346 \begin_inset space \thinspace{}
34347 \end_inset
34348
34349 km/h
34350 \begin_inset Newline newline
34351 \end_inset
34352
34353 Zwischen Wert und Einheit befindet sich der kleinste Leerraum, siehe 
34354 \begin_inset CommandInset ref
34355 LatexCommand ref
34356 reference "sub:Vordefinierter-Leerraum"
34357
34358 \end_inset
34359
34360 .
34361 \end_layout
34362
34363 \begin_layout Itemize
34364 Prozent- und Promillezeichen werden wie physikalische Einheiten gesetzt:
34365 \begin_inset Newline newline
34366 \end_inset
34367
34368 1,2
34369 \begin_inset space \thinspace{}
34370 \end_inset
34371
34372 ‰ Alkohol im Blut
34373 \begin_inset Newline newline
34374 \end_inset
34375
34376 Sie folgen jedoch direkt auf die Zahl, wenn sie in einer Zusammensetzung
34377  oder Ableitung stehen: 3%-ige Rendite, 20%-Grenze
34378 \end_layout
34379
34380 \begin_layout Itemize
34381 Das Grad-Symbol folgt immer unmittelbar auf die Zahl: 15°, es sei denn es
34382  wird in einer Einheit verwendet: 15
34383 \begin_inset space \thinspace{}
34384 \end_inset
34385
34386 °C
34387 \end_layout
34388
34389 \begin_layout Itemize
34390 In Zahlen mit mehr als vier Ziffern wird zur Gruppierung vor jeder dritten
34391  Ziffer der kleinste Leerraum eingefügt: 18
34392 \begin_inset space \thinspace{}
34393 \end_inset
34394
34395 473
34396 \begin_inset space \thinspace{}
34397 \end_inset
34398
34399 588
34400 \end_layout
34401
34402 \begin_layout Itemize
34403 Für Bemaßungen wie z.
34404 \begin_inset space \thinspace{}
34405 \end_inset
34406
34407 B.
34408  120×90×40
34409 \begin_inset space \thinspace{}
34410 \end_inset
34411
34412 cm, verwendet man das gelegte Kreuz 
34413 \begin_inset Quotes gld
34414 \end_inset
34415
34416 ×
34417 \begin_inset Quotes grd
34418 \end_inset
34419
34420 , dass über den LaTeX-Befehl 
34421 \series bold
34422
34423 \backslash
34424 texttimes
34425 \series default
34426  verfügbar ist, mit einigen Tastaturdefinitionen aber auch direkt eingegeben
34427  werden kann.
34428 \end_layout
34429
34430 \begin_layout Itemize
34431 Bei Datumsangaben befindet sich zwischen Tag und Monat der kleinste Leerraum,
34432  zwischen Monat und Jahr ein geschütztes Leerzeichen: 23.
34433 \begin_inset space \thinspace{}
34434 \end_inset
34435
34436 6.
34437 \begin_inset space ~
34438 \end_inset
34439
34440 1979
34441 \end_layout
34442
34443 \begin_layout Itemize
34444 Funktionen, deren Name aus mehreren Buchstaben besteht, werden aufrecht
34445  gesetzt um Verwechslungen mit Variablen zu vermeiden, siehe 
34446 \begin_inset CommandInset ref
34447 LatexCommand ref
34448 reference "sub:Vordefinierte-Funktionen"
34449
34450 \end_inset
34451
34452 .
34453 \end_layout
34454
34455 \begin_layout Itemize
34456 Indizes, die aus mehreren Buchstaben bestehen, werden aufrecht gesetzt:
34457  
34458 \begin_inset Formula $E_{\mathrm{kin}}$
34459 \end_inset
34460
34461
34462 \begin_inset Newline newline
34463 \end_inset
34464
34465 Komponenten von Matrizen werden kursiv gesetzt: 
34466 \begin_inset Formula $\hat{H}_{kl}$
34467 \end_inset
34468
34469
34470 \end_layout
34471
34472 \begin_layout Itemize
34473 Der Ableitungs-/Integrationsoperator 'd', die Eulersche Zahl 'e' und die
34474  Imaginäre Zahl 'i' sollten aufrecht gesetzt werden, um sie nicht mit anderen
34475  Variablen zu verwechseln.
34476 \end_layout
34477
34478 \begin_layout Standard
34479 \begin_inset Newpage newpage
34480 \end_inset
34481
34482
34483 \end_layout
34484
34485 \begin_layout Section
34486 Synonyme
34487 \begin_inset Index
34488 status collapsed
34489
34490 \begin_layout Plain Layout
34491 Synonyme
34492 \end_layout
34493
34494 \end_inset
34495
34496
34497 \end_layout
34498
34499 \begin_layout Standard
34500 Einige Zeichen und Symbole können mit mehreren Befehlen erstellt werden.
34501  Hier ist eine Übersicht der Synonymbefehle:
34502 \end_layout
34503
34504 \begin_layout Standard
34505 \begin_inset VSpace bigskip
34506 \end_inset
34507
34508
34509 \begin_inset space \hfill{}
34510 \end_inset
34511
34512
34513 \begin_inset Tabular
34514 <lyxtabular version="3" rows="12" columns="2">
34515 <features>
34516 <column alignment="center" valignment="top" width="0pt">
34517 <column alignment="center" valignment="top" width="0pt">
34518 <row>
34519 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
34520 \begin_inset Text
34521
34522 \begin_layout Plain Layout
34523 Befehl
34524 \end_layout
34525
34526 \end_inset
34527 </cell>
34528 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
34529 \begin_inset Text
34530
34531 \begin_layout Plain Layout
34532 äquivalent zu
34533 \begin_inset Note Note
34534 status collapsed
34535
34536 \begin_layout Plain Layout
34537
34538 \series bold
34539
34540 \backslash
34541 raisebox
34542 \series default
34543  dient nur als Abstandhalter.
34544 \end_layout
34545
34546 \end_inset
34547
34548
34549 \end_layout
34550
34551 \end_inset
34552 </cell>
34553 </row>
34554 <row>
34555 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
34556 \begin_inset Text
34557
34558 \begin_layout Plain Layout
34559
34560 \backslash
34561 ast
34562 \end_layout
34563
34564 \end_inset
34565 </cell>
34566 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
34567 \begin_inset Text
34568
34569 \begin_layout Plain Layout
34570 \begin_inset ERT
34571 status collapsed
34572
34573 \begin_layout Plain Layout
34574
34575
34576 \backslash
34577 raisebox{-1.2mm}{
34578 \end_layout
34579
34580 \end_inset
34581
34582 *
34583 \begin_inset ERT
34584 status collapsed
34585
34586 \begin_layout Plain Layout
34587
34588 }
34589 \end_layout
34590
34591 \end_inset
34592
34593
34594 \end_layout
34595
34596 \end_inset
34597 </cell>
34598 </row>
34599 <row>
34600 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
34601 \begin_inset Text
34602
34603 \begin_layout Plain Layout
34604
34605 \backslash
34606 choose
34607 \end_layout
34608
34609 \end_inset
34610 </cell>
34611 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
34612 \begin_inset Text
34613
34614 \begin_layout Plain Layout
34615
34616 \backslash
34617 binom
34618 \end_layout
34619
34620 \end_inset
34621 </cell>
34622 </row>
34623 <row>
34624 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
34625 \begin_inset Text
34626
34627 \begin_layout Plain Layout
34628
34629 \backslash
34630 geq
34631 \end_layout
34632
34633 \end_inset
34634 </cell>
34635 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
34636 \begin_inset Text
34637
34638 \begin_layout Plain Layout
34639
34640 \backslash
34641 ge
34642 \end_layout
34643
34644 \end_inset
34645 </cell>
34646 </row>
34647 <row>
34648 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
34649 \begin_inset Text
34650
34651 \begin_layout Plain Layout
34652
34653 \backslash
34654 lbrace
34655 \end_layout
34656
34657 \end_inset
34658 </cell>
34659 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
34660 \begin_inset Text
34661
34662 \begin_layout Plain Layout
34663 {
34664 \end_layout
34665
34666 \end_inset
34667 </cell>
34668 </row>
34669 <row>
34670 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
34671 \begin_inset Text
34672
34673 \begin_layout Plain Layout
34674
34675 \backslash
34676 lbracket
34677 \end_layout
34678
34679 \end_inset
34680 </cell>
34681 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
34682 \begin_inset Text
34683
34684 \begin_layout Plain Layout
34685 [
34686 \end_layout
34687
34688 \end_inset
34689 </cell>
34690 </row>
34691 <row>
34692 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
34693 \begin_inset Text
34694
34695 \begin_layout Plain Layout
34696
34697 \backslash
34698 leftarrow
34699 \end_layout
34700
34701 \end_inset
34702 </cell>
34703 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
34704 \begin_inset Text
34705
34706 \begin_layout Plain Layout
34707
34708 \backslash
34709 gets
34710 \end_layout
34711
34712 \end_inset
34713 </cell>
34714 </row>
34715 <row>
34716 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
34717 \begin_inset Text
34718
34719 \begin_layout Plain Layout
34720
34721 \backslash
34722 leq
34723 \end_layout
34724
34725 \end_inset
34726 </cell>
34727 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
34728 \begin_inset Text
34729
34730 \begin_layout Plain Layout
34731
34732 \backslash
34733 le
34734 \end_layout
34735
34736 \end_inset
34737 </cell>
34738 </row>
34739 <row>
34740 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
34741 \begin_inset Text
34742
34743 \begin_layout Plain Layout
34744
34745 \backslash
34746 lor
34747 \end_layout
34748
34749 \end_inset
34750 </cell>
34751 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
34752 \begin_inset Text
34753
34754 \begin_layout Plain Layout
34755
34756 \backslash
34757 vee
34758 \end_layout
34759
34760 \end_inset
34761 </cell>
34762 </row>
34763 <row>
34764 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
34765 \begin_inset Text
34766
34767 \begin_layout Plain Layout
34768
34769 \backslash
34770 neq
34771 \end_layout
34772
34773 \end_inset
34774 </cell>
34775 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
34776 \begin_inset Text
34777
34778 \begin_layout Plain Layout
34779
34780 \backslash
34781 not=
34782 \end_layout
34783
34784 \end_inset
34785 </cell>
34786 </row>
34787 <row>
34788 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
34789 \begin_inset Text
34790
34791 \begin_layout Plain Layout
34792
34793 \backslash
34794 slash
34795 \end_layout
34796
34797 \end_inset
34798 </cell>
34799 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
34800 \begin_inset Text
34801
34802 \begin_layout Plain Layout
34803 /
34804 \end_layout
34805
34806 \end_inset
34807 </cell>
34808 </row>
34809 <row>
34810 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
34811 \begin_inset Text
34812
34813 \begin_layout Plain Layout
34814
34815 \backslash
34816 vert
34817 \end_layout
34818
34819 \end_inset
34820 </cell>
34821 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
34822 \begin_inset Text
34823
34824 \begin_layout Plain Layout
34825 |
34826 \end_layout
34827
34828 \end_inset
34829 </cell>
34830 </row>
34831 </lyxtabular>
34832
34833 \end_inset
34834
34835
34836 \begin_inset space \hfill{}
34837 \end_inset
34838
34839
34840 \begin_inset Tabular
34841 <lyxtabular version="3" rows="12" columns="2">
34842 <features>
34843 <column alignment="center" valignment="top" width="0pt">
34844 <column alignment="center" valignment="top" width="0pt">
34845 <row>
34846 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
34847 \begin_inset Text
34848
34849 \begin_layout Plain Layout
34850 Befehl
34851 \end_layout
34852
34853 \end_inset
34854 </cell>
34855 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
34856 \begin_inset Text
34857
34858 \begin_layout Plain Layout
34859 äquivalent zu
34860 \end_layout
34861
34862 \end_inset
34863 </cell>
34864 </row>
34865 <row>
34866 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
34867 \begin_inset Text
34868
34869 \begin_layout Plain Layout
34870
34871 \backslash
34872 backslash
34873 \end_layout
34874
34875 \end_inset
34876 </cell>
34877 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
34878 \begin_inset Text
34879
34880 \begin_layout Plain Layout
34881
34882 \backslash
34883
34884 \backslash
34885
34886 \end_layout
34887
34888 \end_inset
34889 </cell>
34890 </row>
34891 <row>
34892 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
34893 \begin_inset Text
34894
34895 \begin_layout Plain Layout
34896
34897 \backslash
34898 dasharrow
34899 \end_layout
34900
34901 \end_inset
34902 </cell>
34903 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
34904 \begin_inset Text
34905
34906 \begin_layout Plain Layout
34907
34908 \backslash
34909 dashrightarrow
34910 \end_layout
34911
34912 \end_inset
34913 </cell>
34914 </row>
34915 <row>
34916 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
34917 \begin_inset Text
34918
34919 \begin_layout Plain Layout
34920
34921 \backslash
34922 land
34923 \end_layout
34924
34925 \end_inset
34926 </cell>
34927 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
34928 \begin_inset Text
34929
34930 \begin_layout Plain Layout
34931
34932 \backslash
34933 wedge
34934 \end_layout
34935
34936 \end_inset
34937 </cell>
34938 </row>
34939 <row>
34940 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
34941 \begin_inset Text
34942
34943 \begin_layout Plain Layout
34944
34945 \backslash
34946 rbrace
34947 \end_layout
34948
34949 \end_inset
34950 </cell>
34951 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
34952 \begin_inset Text
34953
34954 \begin_layout Plain Layout
34955 }
34956 \end_layout
34957
34958 \end_inset
34959 </cell>
34960 </row>
34961 <row>
34962 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
34963 \begin_inset Text
34964
34965 \begin_layout Plain Layout
34966
34967 \backslash
34968 rbracket
34969 \end_layout
34970
34971 \end_inset
34972 </cell>
34973 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
34974 \begin_inset Text
34975
34976 \begin_layout Plain Layout
34977 ]
34978 \end_layout
34979
34980 \end_inset
34981 </cell>
34982 </row>
34983 <row>
34984 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
34985 \begin_inset Text
34986
34987 \begin_layout Plain Layout
34988
34989 \backslash
34990 rightarrow
34991 \end_layout
34992
34993 \end_inset
34994 </cell>
34995 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
34996 \begin_inset Text
34997
34998 \begin_layout Plain Layout
34999
35000 \backslash
35001 to
35002 \end_layout
35003
35004 \end_inset
35005 </cell>
35006 </row>
35007 <row>
35008 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
35009 \begin_inset Text
35010
35011 \begin_layout Plain Layout
35012
35013 \backslash
35014 lnot
35015 \end_layout
35016
35017 \end_inset
35018 </cell>
35019 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
35020 \begin_inset Text
35021
35022 \begin_layout Plain Layout
35023
35024 \backslash
35025 neg
35026 \end_layout
35027
35028 \end_inset
35029 </cell>
35030 </row>
35031 <row>
35032 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
35033 \begin_inset Text
35034
35035 \begin_layout Plain Layout
35036
35037 \backslash
35038 ne
35039 \end_layout
35040
35041 \end_inset
35042 </cell>
35043 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
35044 \begin_inset Text
35045
35046 \begin_layout Plain Layout
35047
35048 \backslash
35049 not=
35050 \end_layout
35051
35052 \end_inset
35053 </cell>
35054 </row>
35055 <row>
35056 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
35057 \begin_inset Text
35058
35059 \begin_layout Plain Layout
35060
35061 \backslash
35062 owns
35063 \end_layout
35064
35065 \end_inset
35066 </cell>
35067 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
35068 \begin_inset Text
35069
35070 \begin_layout Plain Layout
35071
35072 \backslash
35073 ni
35074 \end_layout
35075
35076 \end_inset
35077 </cell>
35078 </row>
35079 <row>
35080 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
35081 \begin_inset Text
35082
35083 \begin_layout Plain Layout
35084
35085 \backslash
35086 square
35087 \end_layout
35088
35089 \end_inset
35090 </cell>
35091 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
35092 \begin_inset Text
35093
35094 \begin_layout Plain Layout
35095
35096 \backslash
35097 Box
35098 \end_layout
35099
35100 \end_inset
35101 </cell>
35102 </row>
35103 <row>
35104 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
35105 \begin_inset Text
35106
35107 \begin_layout Plain Layout
35108
35109 \backslash
35110 Vert
35111 \end_layout
35112
35113 \end_inset
35114 </cell>
35115 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
35116 \begin_inset Text
35117
35118 \begin_layout Plain Layout
35119
35120 \backslash
35121 |
35122 \end_layout
35123
35124 \end_inset
35125 </cell>
35126 </row>
35127 </lyxtabular>
35128
35129 \end_inset
35130
35131
35132 \begin_inset space \hfill{}
35133 \end_inset
35134
35135
35136 \end_layout
35137
35138 \begin_layout Standard
35139 \begin_inset Newpage newpage
35140 \end_inset
35141
35142
35143 \end_layout
35144
35145 \begin_layout Bibliography
35146 \begin_inset CommandInset bibitem
35147 LatexCommand bibitem
35148 key "TLC2"
35149
35150 \end_inset
35151
35152
35153 \shape smallcaps
35154 Mittelbach, F.
35155  ; Goossens, M.
35156 \shape default
35157
35158 \shape italic
35159 The LaTeX Companion
35160 \shape default
35161 .
35162  Addison Wesley, 2004
35163 \end_layout
35164
35165 \begin_layout Bibliography
35166 \begin_inset CommandInset bibitem
35167 LatexCommand bibitem
35168 key "Mathmode"
35169
35170 \end_inset
35171
35172
35173 \begin_inset CommandInset href
35174 LatexCommand href
35175 name "Beschreibung"
35176 target "ftp://ftp.dante.de/tex-archive/info/math/voss/mathmode/Mathmode.pdf"
35177
35178 \end_inset
35179
35180  der mathematischen Fähigkeiten von LaTeX
35181 \end_layout
35182
35183 \begin_layout Bibliography
35184 \begin_inset CommandInset bibitem
35185 LatexCommand bibitem
35186 key "Voss"
35187
35188 \end_inset
35189
35190 LaTeX Tipps- und Tricks-
35191 \begin_inset CommandInset href
35192 LatexCommand href
35193 name "Seite"
35194 target "http://tug.org/TeXnik/"
35195
35196 \end_inset
35197
35198
35199 \end_layout
35200
35201 \begin_layout Bibliography
35202 \begin_inset CommandInset bibitem
35203 LatexCommand bibitem
35204 key "AMS"
35205
35206 \end_inset
35207
35208
35209 \begin_inset CommandInset href
35210 LatexCommand href
35211 name "Beschreibung"
35212 target "ftp://ftp.ams.org/pub/tex/doc/amsmath/amsldoc.pdf"
35213
35214 \end_inset
35215
35216  von 
35217 \begin_inset ERT
35218 status collapsed
35219
35220 \begin_layout Plain Layout
35221
35222
35223 \backslash
35224 AmS
35225 \end_layout
35226
35227 \end_inset
35228
35229 -LaTeX
35230 \end_layout
35231
35232 \begin_layout Bibliography
35233 \begin_inset CommandInset bibitem
35234 LatexCommand bibitem
35235 key "Symbole"
35236
35237 \end_inset
35238
35239
35240 \begin_inset CommandInset href
35241 LatexCommand href
35242 name "Auflistung"
35243 target "ftp://ftp.dante.de/tex-archive/info/symbols/comprehensive/symbols-a4.pdf"
35244
35245 \end_inset
35246
35247  aller über LaTeX-Pakete verfügbare Symbole
35248 \end_layout
35249
35250 \begin_layout Bibliography
35251 \begin_inset CommandInset bibitem
35252 LatexCommand bibitem
35253 key "hyperref"
35254
35255 \end_inset
35256
35257
35258 \begin_inset CommandInset href
35259 LatexCommand href
35260 name "Dokumentation"
35261 target "http://www.tug.org/applications/hyperref/ftp/doc/manual.pdf"
35262
35263 \end_inset
35264
35265  des LaTeX-Pakets 
35266 \series bold
35267 hyperref
35268 \series default
35269
35270 \begin_inset Index
35271 status collapsed
35272
35273 \begin_layout Plain Layout
35274 Pakete ! hyperref
35275 \end_layout
35276
35277 \end_inset
35278
35279
35280 \end_layout
35281
35282 \begin_layout Bibliography
35283 \begin_inset CommandInset bibitem
35284 LatexCommand bibitem
35285 key "Mathclap"
35286
35287 \end_inset
35288
35289
35290 \begin_inset CommandInset href
35291 LatexCommand href
35292 name "Beschreibung"
35293 target "http://www.tug.org/TUGboat/Articles/tb22-4/tb72perlS.pdf"
35294
35295 \end_inset
35296
35297  des in 
35298 \begin_inset CommandInset ref
35299 LatexCommand ref
35300 reference "sub:Operatorgrenzen"
35301
35302 \end_inset
35303
35304  vorgestellten Befehls 
35305 \series bold
35306
35307 \backslash
35308 mathclap
35309 \series default
35310
35311 \begin_inset Index
35312 status collapsed
35313
35314 \begin_layout Plain Layout
35315 Befehle ! M ! 
35316 \backslash
35317 mathclap
35318 \end_layout
35319
35320 \end_inset
35321
35322
35323 \end_layout
35324
35325 \begin_layout Bibliography
35326 \begin_inset CommandInset bibitem
35327 LatexCommand bibitem
35328 key "Duden"
35329
35330 \end_inset
35331
35332
35333 \emph on
35334 Duden Band 1
35335 \emph default
35336 .
35337  22.
35338  Auflage, Duden Verlag 2001
35339 \end_layout
35340
35341 \begin_layout Subsubsection*
35342 \begin_inset Note Note
35343 status collapsed
35344
35345 \begin_layout Plain Layout
35346 Damit der Index den Namen 
35347 \begin_inset Quotes gld
35348 \end_inset
35349
35350 Stichwortverzeichnis
35351 \begin_inset Quotes grd
35352 \end_inset
35353
35354  erhält, wurde im LaTeX-Vorspann
35355 \end_layout
35356
35357 \begin_layout Plain Layout
35358
35359 \series bold
35360
35361 \backslash
35362 addto
35363 \backslash
35364 captionsngerman{
35365 \backslash
35366 renewcommand{
35367 \backslash
35368 indexname}{Stichwortverzeichnis}}
35369 \end_layout
35370
35371 \begin_layout Plain Layout
35372 eingefügt.
35373 \end_layout
35374
35375 \begin_layout Plain Layout
35376 Das Paket 
35377 \series bold
35378 babel
35379 \series default
35380  sorgt dafür, dass die Beschriftungen in der ausgewählten Sprache erscheinen.
35381  Ehe man Beschriftungen ändern kann, muss es geladen werden.
35382  Außerdem wird 
35383 \series bold
35384 babel
35385 \series default
35386  von LyX automatisch nach dem LaTeX-Vorspann geladen.
35387  Das ruft aber keine Probleme hervor, solange im LaTeX-Vorspann die Dokumentspra
35388 che verwendet wurde.
35389 \end_layout
35390
35391 \begin_layout Plain Layout
35392 Möchte man andere Beschriftungen ändern, ersetzt man 
35393 \series bold
35394
35395 \backslash
35396 indexname
35397 \series default
35398  durch 
35399 \series bold
35400
35401 \backslash
35402 <Beschriftungs>name
35403 \series default
35404 .
35405  Eine Auflistung der möglichen Namen findet man unter
35406 \end_layout
35407
35408 \begin_layout Plain Layout
35409
35410 \family typewriter
35411 http://www.tex.ac.uk/cgi-bin/texfaq2html?label=fixnam
35412 \end_layout
35413
35414 \begin_layout Plain Layout
35415 Möchte man Beschriftungen für andere Sprachen ändern, ersetzt man 
35416 \series bold
35417 ngerman
35418 \series default
35419  durch die Dokumentsprache und
35420 \end_layout
35421
35422 \begin_layout Plain Layout
35423
35424 \series bold
35425
35426 \backslash
35427 captionsgerman
35428 \series default
35429  durch 
35430 \series bold
35431
35432 \backslash
35433 captions<Dokumentsprache>
35434 \series default
35435 .
35436 \end_layout
35437
35438 \end_inset
35439
35440
35441 \begin_inset CommandInset index_print
35442 LatexCommand printindex
35443
35444 \end_inset
35445
35446
35447 \end_layout
35448
35449 \end_body
35450 \end_document