]> git.lyx.org Git - features.git/blob - lib/doc/de/Math.lyx
Another witch hunting case: break-paragraph -> paragraph-break.
[features.git] / lib / doc / de / Math.lyx
1 #LyX 2.0 created this file. For more info see http://www.lyx.org/
2 \lyxformat 413
3 \begin_document
4 \begin_header
5 \textclass scrartcl
6 \begin_preamble
7 % DO NOT ALTER THIS PREAMBLE!!!
8 %
9 % This preamble is designed to ensure that the file prints
10 % out as advertised. If you mess with this preamble,
11 % parts of this document may not print out as expected.  If you
12 % have problems LaTeXing this file, please contact 
13 % the documentation team
14 % email: lyx-docs@lists.lyx.org
15
16 % if pdflatex is used
17 \usepackage{ifpdf}
18 \ifpdf
19
20 % set fonts for nicer pdf view
21 \IfFileExists{lmodern.sty}
22  {\usepackage{lmodern}}{}
23
24 \fi % end if pdflatex is used
25
26 % Folgendes Problem lösen:
27 % Besteht die Kapitelnummer aus zu vielen Ziffern, wird  die
28 % Kapitelüberschrift im Inhaltsverzeichnis direkt an oder über
29 % die Kapitelnummer geschrieben.
30 % Als Lösung wird mehr Platz zwischen Nummer und
31 % Überschrift eingefügt.
32 \renewcommand{\l@subsection}{\@dottedtocline{2}{1.5em}{2.8em}}
33 \renewcommand{\l@subsubsection}{\@dottedtocline{3}{4.3em}{3.6em}}
34
35 % Damit die Zeichen ° und · in LyX direkt eingegeben werden können,
36 % siehe Kap. 22.11
37 \DeclareInputText{176}{\ifmmode^\circ\else\textdegree\fi}
38 \DeclareInputText{183}{\ifmmode\cdot\else\textperiodcentered\fi}
39
40 % Linkfläche für Querverweise vergrößern und automatisch benennen,
41 \AtBeginDocument{\renewcommand{\ref}[1]{\mbox{\autoref{#1}}}}
42 \addto\extrasngerman{%
43  \renewcommand*{\equationautorefname}[1]{}
44  \renewcommand{\sectionautorefname}{Kap.\negthinspace}
45  \renewcommand{\subsectionautorefname}{Kap.\negthinspace}
46  \renewcommand{\subsubsectionautorefname}{Kap.\negthinspace}
47 }
48
49 % Makros damit Pakete nicht doppelt geladen werden.
50 % siehe erste Fußnote in Kap. 9.3
51 \@ifundefined{textcolor}{\usepackage{color}}{}
52
53 % Die Seiten des Inhaltsverzeichnisses werden römisch numeriert,
54 % ein PDF-Lesezeichen für das Inhaltsverzeichnis wird hinzugefügt
55 \pagenumbering{roman}
56 \let\myTOC\tableofcontents
57 \renewcommand{\tableofcontents}{%
58  \vspace{1cm}
59  \pdfbookmark[1]{\contentsname}{}
60  \myTOC
61  \cleardoublepage
62  \pagenumbering{arabic}}
63
64 % Damit die Fußnoten einen zusätzlichen vertikalen Abstand von 1,5 mm haben,
65 \let\myFoot\footnote
66 \renewcommand{\footnote}[1]{\myFoot{#1\vspace{1.5mm}}}
67
68 % provides caption formatting
69 \setkomafont{captionlabel}{\bfseries}
70
71 % benutzt in Kap. 24.5
72 \usepackage[samesize]{cancel}
73
74 % enables calculation of values
75 \usepackage{calc}
76
77 % für Mehrfachzeilen, benutzt in Kap. 24.7
78 \usepackage{multicol}
79
80 % benutzt in Kap. 19.4
81 \usepackage{remreset}
82
83 % für das Fourier-Transformationssymbol
84 \usepackage{mathrsfs}
85
86 % Farbdefinition aus Kap. 9.3
87 \definecolor{dunkelgruen}{cmyk}{0.5, 0, 1, 0.5}
88
89 % Operatoren deklarieren (siehe Kap. 10.4 und 15.2)
90 \DeclareMathOperator*{\Raute}{\blacklozenge}
91 \DeclareMathOperator{\sgn}{sgn}
92
93 \newcommand{\leer}{\textvisiblespace}
94
95 % Beispielbefehle aus Kap. 20.1 
96 \newcommand{\gr}{\Longrightarrow}
97 \newcommand{\us}[1]{\underline{#1}}
98 \newcommand{\fb}[3]{\framebox#1#2{$#3$}}
99 \newcommand{\cb}[3][white]{\fcolorbox{#2}{#1}{$#3$}}
100 \newcommand{\fracS}[3][]{\genfrac{}{}{#1}{}{#2}{#3}}
101
102 % Beispielmakro aus Kap. 19.4
103 %\def\tagform@#1{\maketag@@@{|#1|}}
104
105 % Makro aus Kap. 10.2
106 \def\clap#1{\hbox to 0pt{\hss #1\hss}}
107 \def\mathclap {\mathpalette \mathclapinternal}
108 \def\mathclapinternal #1#2{\clap{$\mathsurround =0pt #1{#2}$}}
109
110 % Damit der Index einen anderen Namen erhält.
111 \addto\captionsngerman
112 {\renewcommand{\indexname}
113 {Stichwort- und Befehlsverzeichnis}}
114
115 % ------------------------------------
116 % used to check for needed LaTeX packages
117 \usepackage{ifthen}
118
119 % testen ob das Paket eurosym installiert ist
120 % wird benutzt für das Euro-Symbol
121 \newboolean{eurosym}
122 \IfFileExists{eurosym.sty}
123  {\usepackage[gennarrow]{eurosym}
124   \setboolean{eurosym}{true}}
125  {\setboolean{eurosym}{false}}
126
127 % testen ob Paket braket installiert ist
128 % benötigt für physikalische Vektoren
129 \newboolean{braket}
130 \IfFileExists{braket.sty}
131  {\usepackage{braket}
132   \setboolean{braket}{true}}
133  {\setboolean{braket}{false}}
134
135 % testen ob Paket cancel installiert ist
136 \newboolean{cancel}
137 \IfFileExists{cancel.sty}
138  {\usepackage{cancel}
139   \setboolean{cancel}{true}}
140  {\setboolean{cancel}{false}}
141
142 % testen ob Paket upgreek installiert ist
143 \newboolean{upgreek}
144 \IfFileExists{upgreek.sty}
145  {\usepackage{upgreek}
146   \setboolean{upgreek}{true}}
147  {\setboolean{upgreek}{false}}
148
149 % benötigt für Kommas in Formeln, siehe Kap. 22.3
150 \IfFileExists{icomma.sty}
151  {\usepackage{icomma}}{}
152 \end_preamble
153 \options bibliography=totoc,index=totoc,BCOR7.5mm,titlepage,captions=tableheading
154 \use_default_options false
155 \maintain_unincluded_children false
156 \language ngerman
157 \language_package default
158 \inputencoding auto
159 \fontencoding global
160 \font_roman default
161 \font_sans default
162 \font_typewriter default
163 \font_default_family default
164 \use_non_tex_fonts false
165 \font_sc false
166 \font_osf false
167 \font_sf_scale 100
168 \font_tt_scale 100
169
170 \graphics default
171 \default_output_format default
172 \output_sync 0
173 \bibtex_command default
174 \index_command default
175 \paperfontsize 12
176 \spacing single
177 \use_hyperref true
178 \pdf_title "LyXs Mathehandbuch"
179 \pdf_author "LyX Team, Uwe Stöhr"
180 \pdf_subject "LyX-Dokumentation der Mathefunktionen"
181 \pdf_keywords "LyX, Mathed"
182 \pdf_bookmarks true
183 \pdf_bookmarksnumbered true
184 \pdf_bookmarksopen true
185 \pdf_bookmarksopenlevel 1
186 \pdf_breaklinks false
187 \pdf_pdfborder false
188 \pdf_colorlinks true
189 \pdf_backref false
190 \pdf_pdfusetitle false
191 \pdf_quoted_options "linkcolor=black, citecolor=black, urlcolor=blue, filecolor=blue, pdfpagelayout=OneColumn, pdfnewwindow=true, pdfstartview=XYZ, plainpages=false"
192 \papersize a4paper
193 \use_geometry false
194 \use_amsmath 2
195 \use_esint 1
196 \use_mhchem 1
197 \use_mathdots 1
198 \cite_engine basic
199 \use_bibtopic false
200 \use_indices false
201 \paperorientation portrait
202 \suppress_date false
203 \use_refstyle 0
204 \notefontcolor #0000ff
205 \index Stichwortverzeichnis
206 \shortcut idx
207 \color #008000
208 \end_index
209 \secnumdepth 4
210 \tocdepth 3
211 \paragraph_separation skip
212 \defskip medskip
213 \quotes_language german
214 \papercolumns 1
215 \papersides 2
216 \paperpagestyle plain
217 \bullet 1 0 6 -1
218 \bullet 2 2 35 -1
219 \bullet 3 2 7 -1
220 \tracking_changes false
221 \output_changes false
222 \html_math_output 0
223 \html_css_as_file 0
224 \html_be_strict false
225 \end_header
226
227 \begin_body
228
229 \begin_layout Title
230 LyXs detailliertes Mathe Handbuch
231 \end_layout
232
233 \begin_layout Author
234 vom LyX Team
235 \begin_inset Foot
236 status collapsed
237
238 \begin_layout Plain Layout
239 \noindent
240 Für Anmerkungen oder Korrekturen senden sie bitte eine Email an LyXs Dokumentati
241 ons-Liste: 
242 \family typewriter
243
244 \begin_inset CommandInset href
245 LatexCommand href
246 name "lyx-docs@lists.lyx.org"
247 target "lyx-docs@lists.lyx.org?subject=LyXs Mathehandbuch"
248
249 \end_inset
250
251
252 \end_layout
253
254 \end_inset
255
256
257 \begin_inset Note Note
258 status collapsed
259
260 \begin_layout Plain Layout
261 Verfasser: Uwe Stöhr
262 \end_layout
263
264 \end_inset
265
266
267 \begin_inset Newline newline
268 \end_inset
269
270
271 \begin_inset Newline newline
272 \end_inset
273
274
275 \family sans
276 Version 2.0.x
277 \end_layout
278
279 \begin_layout Standard
280 \begin_inset CommandInset toc
281 LatexCommand tableofcontents
282
283 \end_inset
284
285
286 \end_layout
287
288 \begin_layout Standard
289 \begin_inset Note Note
290 status open
291
292 \begin_layout Plain Layout
293 Um diese Datei als PDF, PS oder DVI zu exportieren, sollten die LaTeX-Pakete
294  
295 \series bold
296 braket, cancel, eurosym, mathdots, mhchem
297 \series default
298  und 
299 \series bold
300 was
301 \series default
302  installiert sein.
303  Wenn diese nicht installiert sind, kann das Dokument zwar exportiert werden,
304  die Abschnitte in denen die Pakete benötigt werden, erscheinen dann aber
305  nicht im Ausdruck.
306  Eine Ausnahme ist 
307 \series bold
308 mhchem
309 \series default
310 ; wenn es nicht installiert ist, kann dieses Dokument nicht exportiert werden.
311 \end_layout
312
313 \begin_layout Plain Layout
314 Die neueste PDF-Version dieses Dokuments ist hier zu finden:
315 \begin_inset Newline newline
316 \end_inset
317
318
319 \series bold
320 http://wiki.lyx.org/LyX/DocumentationDevelopment#Math
321 \end_layout
322
323 \end_inset
324
325
326 \end_layout
327
328 \begin_layout Standard
329 \begin_inset Newpage newpage
330 \end_inset
331
332
333 \end_layout
334
335 \begin_layout Section
336 Einleitung
337 \end_layout
338
339 \begin_layout Standard
340 Dieses Dokument ist eine Zusammenstellung und Erläuterung der wichtigsten
341  LaTeX-Befehle für mathematische Zeichen und Konstruktionen.
342  Die Erläuterungen sind speziell auf die Benutzung der Befehle mit LyX zugeschni
343 tten.
344  Das setzt voraus, dass bereits das Kapitel 
345 \family typewriter
346 Mathematische
347 \family default
348  
349 \family typewriter
350 Formeln
351 \family default
352  des Benutzerhandbuchs gelesen worden ist.
353 \end_layout
354
355 \begin_layout Standard
356 Die meisten Zeichen und viele Konstruktionen sind auch über das Menü 
357 \family sans
358 Einfügen
359 \series bold
360 \SpecialChar \menuseparator
361
362 \series default
363 Mathe
364 \family default
365  oder die 
366 \family sans
367 Mathe-Werkzeugleiste
368 \family default
369  aufrufbar.
370  Wer viele Formeln zu schreiben hat, wird jedoch feststellen, dass man mit
371  den LaTeX-Befehlen viel schneller eine Formel setzen kann.
372  Daher wird in diesem Handbuch der Fokus auf Befehle gesetzt wobei entsprechende
373  Werkzeugleistenknöpfe, falls vorhanden, erwähnt werden.
374 \end_layout
375
376 \begin_layout Standard
377 Sofern nicht anders angegeben, sind Befehle nur in der Formel-Umgebung von
378  LyX verfügbar.
379  Um alle Befehle nutzen zu können, muss die Option 
380 \family sans
381 AMS-Mathe-Paket verwenden
382 \family default
383  im Menü 
384 \family sans
385 Dokument\SpecialChar \menuseparator
386 Einstellungen\SpecialChar \menuseparator
387 Mathe Optionen
388 \family default
389  aktiviert sein.
390 \begin_inset Foot
391 status collapsed
392
393 \begin_layout Plain Layout
394 Die 
395 \family sans
396 Option
397 \family default
398  
399 \family sans
400 AMS-Mathe-Paket automatisch verwenden
401 \family default
402  verwendet 
403 \begin_inset ERT
404 status collapsed
405
406 \begin_layout Plain Layout
407
408
409 \backslash
410 AmS 
411 \end_layout
412
413 \end_inset
414
415 -Mathe nur wenn im Dokument mathematische Konstrukte gefunden wurden die
416  LyX unterstützt.
417 \end_layout
418
419 \end_inset
420
421
422 \end_layout
423
424 \begin_layout Standard
425 Es wird in diesem Dokument der Übersichtlichkeit halber auf die Auf\SpecialChar \textcompwordmark{}
426 listung
427  aller 
428 \begin_inset ERT
429 status collapsed
430
431 \begin_layout Plain Layout
432
433
434 \backslash
435 AmS 
436 \end_layout
437
438 \end_inset
439
440 -Mathe Befehle
441 \begin_inset Foot
442 status collapsed
443
444 \begin_layout Plain Layout
445 Eine Liste mit allen 
446 \begin_inset ERT
447 status collapsed
448
449 \begin_layout Plain Layout
450
451
452 \backslash
453 AmS
454 \end_layout
455
456 \end_inset
457
458 -Mathe Befehlen findet sich in der Datei 
459 \family sans
460
461 \begin_inset CommandInset href
462 LatexCommand href
463 name "amsguide.ps"
464 target "ftp://ctan.tug.org/tex-archive/macros/amstex/doc/amsguide.ps"
465
466 \end_inset
467
468
469 \family default
470 , die Teil jeder LaTeX-Standardinstallation ist.
471 \end_layout
472
473 \end_inset
474
475  verzichtet.
476 \end_layout
477
478 \begin_layout Section
479 Allgemeine Hinweise
480 \end_layout
481
482 \begin_layout Standard
483 Um eine in einer Textzeile eingebettete Formel
484 \begin_inset Index idx
485 status collapsed
486
487 \begin_layout Plain Layout
488 Formel ! eingebettete
489 \end_layout
490
491 \end_inset
492
493  zu erstellen, drückt man 
494 \family sans
495 Strg+M
496 \family default
497  oder den Werkzeugleistenknopf 
498 \begin_inset Graphics
499         filename ../../images/math-mode.png
500         scale 85
501
502 \end_inset
503
504 .
505 \begin_inset Newline newline
506 \end_inset
507
508 Um eine abgesetzte Formel
509 \begin_inset Index idx
510 status collapsed
511
512 \begin_layout Plain Layout
513 Formel ! abgesetzte
514 \end_layout
515
516 \end_inset
517
518  zu erstellen, drückt man 
519 \family sans
520 Strg+Shift+M
521 \family default
522 .
523 \end_layout
524
525 \begin_layout Standard
526 Um eine abgesetzte Formel in eine eingebettete umzuwandeln, setzt man den
527  Cursor in die Formel und drückt 
528 \family sans
529 Strg+Shift+M
530 \family default
531  oder benutzt das Menü 
532 \family sans
533 Bearbeiten\SpecialChar \menuseparator
534 Mathe\SpecialChar \menuseparator
535
536 \begin_inset Newline linebreak
537 \end_inset
538
539 Formelart ändern
540 \family default
541 .
542  Auf die selbe Weise lässt sich eine eingebettete in eine abgesetzte Formel
543  umwandeln.
544 \end_layout
545
546 \begin_layout Standard
547 Um Teile einer eingebetteten Formel in der Größe einer abgesetzten darzustellen,
548  gibt man in die Formel den Befehl 
549 \series bold
550
551 \backslash
552 displaystyle
553 \series default
554
555 \begin_inset Index idx
556 status collapsed
557
558 \begin_layout Plain Layout
559 Befehle ! D ! 
560 \backslash
561 displaystyle
562 \end_layout
563
564 \end_inset
565
566  ein.
567  Es erscheint ein neues blaues Kästchen, in das dann der Formelteil eingegeben
568  wird.
569 \end_layout
570
571 \begin_layout Standard
572 In einer Tabelle dürfen nur eingebettete Formeln verwendet werden.
573 \end_layout
574
575 \begin_layout Standard
576 Die 
577 \family sans
578 Mathe-Werkzeugleiste
579 \family default
580  kann über das Menü 
581 \family sans
582 Ansicht\SpecialChar \menuseparator
583 Werkzeugleisten
584 \family default
585  eingeblendet werden.
586  Wenn dort auf 
587 \begin_inset Quotes eld
588 \end_inset
589
590 Mathe
591 \begin_inset Quotes erd
592 \end_inset
593
594  geklickt wird, wird die Werkzeugleiste permanent am unteren Rand eingeblendet;
595  diese Einstellung wird durch ein Häkchen im Menü 
596 \family sans
597 Werkzeugleisten
598 \family default
599  angezeigt.
600  Wenn nun im Menü 
601 \family sans
602 Werkzeugleisten
603 \family default
604  nochmal auf 
605 \begin_inset Quotes eld
606 \end_inset
607
608 Mathe
609 \begin_inset Quotes erd
610 \end_inset
611
612  geklickt wird, wird die Werkzeugleiste nur angezeigt, wenn sich der Cursor
613  in einer Formel befindet; diese Einstellung wird durch die Umbenennung
614  des Menüeintrags von 
615 \begin_inset Quotes eld
616 \end_inset
617
618 Mathe
619 \begin_inset Quotes erd
620 \end_inset
621
622  zu 
623 \begin_inset Quotes eld
624 \end_inset
625
626 Mathe
627 \begin_inset space ~
628 \end_inset
629
630 (automatisch)
631 \begin_inset Quotes erd
632 \end_inset
633
634  angezeigt.
635 \end_layout
636
637 \begin_layout Standard
638 In den TeX-Modus
639 \begin_inset Index idx
640 status collapsed
641
642 \begin_layout Plain Layout
643 T@TeX-Modus
644 \end_layout
645
646 \end_inset
647
648  gelangt man über den Werkzeugleistenknopf 
649 \begin_inset Graphics
650         filename ../../images/ert-insert.png
651         scale 85
652
653 \end_inset
654
655  oder das Menü 
656 \family sans
657 Einfügen\SpecialChar \menuseparator
658 Te
659 \begin_inset ERT
660 status collapsed
661
662 \begin_layout Plain Layout
663
664 {}
665 \end_layout
666
667 \end_inset
668
669 X
670 \begin_inset space ~
671 \end_inset
672
673 Code
674 \family default
675  (Tastenkürzel 
676 \family sans
677 Strg+L
678 \family default
679 ).
680 \begin_inset Note Note
681 status collapsed
682
683 \begin_layout Plain Layout
684 In LyX gibt es drei 
685 \begin_inset Quotes gld
686 \end_inset
687
688 Eigennamen
689 \begin_inset Quotes grd
690 \end_inset
691
692 , die im Ausdruck mit hoch bzw.
693  tief gestellten Großbuchstaben erscheinen: TeX, LaTeX und LyX
694 \end_layout
695
696 \begin_layout Plain Layout
697 Um zu verhindern, dass diese Wörter als Eigennamen erkannt werden, fügt
698  man ein TeX-Klammerpaar ein.
699 \end_layout
700
701 \end_inset
702
703
704 \end_layout
705
706 \begin_layout Standard
707 In den LaTeX-Vorspann
708 \begin_inset Index idx
709 status collapsed
710
711 \begin_layout Plain Layout
712 L@LaTeX-Vorspann
713 \end_layout
714
715 \end_inset
716
717  gelangt man über das Menü 
718 \family sans
719 Dokument\SpecialChar \menuseparator
720 Einstellungen\SpecialChar \menuseparator
721 LaT
722 \begin_inset ERT
723 status collapsed
724
725 \begin_layout Plain Layout
726
727 {}
728 \end_layout
729
730 \end_inset
731
732 eX-Vorspann
733 \family default
734 .
735 \end_layout
736
737 \begin_layout Standard
738 Zur nachträglichen Bearbeitung von Matrizen, Fallunterscheidungen und mehrzeilig
739 en Formeln kann man die Menüs 
740 \family sans
741 Bearbeiten\SpecialChar \menuseparator
742 Mathe
743 \family default
744  und 
745 \family sans
746 Bearbeiten\SpecialChar \menuseparator
747 Zeilen
748 \begin_inset space \thinspace{}
749 \end_inset
750
751 &
752 \begin_inset space \thinspace{}
753 \end_inset
754
755 Spalten
756 \family default
757  oder die 
758 \family sans
759 Tabellen-Werkzeugleiste
760 \family default
761  verwenden.
762  Beim Vertauschen von Zeilen und Spalten mit Hilfe dieses Menüs wird immer
763  die Spalte bzw.
764  Zeile, in der der Cursor steht, mit der rechts daneben stehenden Spalte
765  bzw.
766  darunter liegenden Zeile vertauscht.
767  Befindet sich der Cursor in der letzten Spalte bzw.
768  Zeile, wird mit der links daneben stehenden Spalte bzw.
769  darüber liegenden Zeile vertauscht.
770 \end_layout
771
772 \begin_layout Standard
773 Zum Schreiben von Text in einer Formel
774 \begin_inset Foot
775 status collapsed
776
777 \begin_layout Plain Layout
778 Bei mehrzeiligen Formeln wird der Befehl 
779 \series bold
780
781 \backslash
782 intertext
783 \series default
784  verwendet, siehe 
785 \begin_inset CommandInset ref
786 LatexCommand ref
787 reference "sub:Text-in-mehrzeiligen"
788
789 \end_inset
790
791 .
792 \end_layout
793
794 \end_inset
795
796  verwendet man den 
797 \emph on
798 mathematischen Textmodus
799 \emph default
800
801 \begin_inset Index idx
802 status collapsed
803
804 \begin_layout Plain Layout
805 Text ! in Formeln
806 \end_layout
807
808 \end_inset
809
810
811 \begin_inset Index idx
812 status collapsed
813
814 \begin_layout Plain Layout
815 Mathematischer Textmodus
816 \end_layout
817
818 \end_inset
819
820 , in den man mit dem Tastenkürzel 
821 \family sans
822 Alt+M
823 \begin_inset space ~
824 \end_inset
825
826 M
827 \family default
828  oder durch Eingabe des Befehls 
829 \series bold
830
831 \backslash
832 text
833 \begin_inset Index idx
834 status collapsed
835
836 \begin_layout Plain Layout
837 Befehle ! T ! 
838 \backslash
839 text
840 \end_layout
841
842 \end_inset
843
844
845 \series default
846  gelangt.
847  Der Text erscheint in LyX schwarz und lässt sich dadurch gut vom Rest der
848  Formel unterscheiden.
849  Im fertigen Dokument erscheint mathematischer Text im Gegensatz zu allen
850  anderen Zeichen einer Formel nicht kursiv.
851 \end_layout
852
853 \begin_layout Subsection*
854 Befehlsschema
855 \end_layout
856
857 \begin_layout Standard
858 Die meisten LaTeX-Befehle für mathematische Konstruktionen besitzen folgendes
859  Schema:
860 \end_layout
861
862 \begin_layout Standard
863
864 \series bold
865
866 \backslash
867 Befehlsname[optionales
868 \series default
869  
870 \series bold
871 Argument]{anzugebendes
872 \series default
873  
874 \series bold
875 Argument}
876 \end_layout
877
878 \begin_layout Standard
879 Ein Befehl muss immer mit einem Backslash 
880 \begin_inset Quotes gld
881 \end_inset
882
883
884 \series bold
885
886 \backslash
887
888 \series default
889
890 \begin_inset Quotes grd
891 \end_inset
892
893  beginnen.
894  Möchte man ein optionales Argument nicht angeben, müssen auch die zugehörigen
895  eckigen Klammern weggelassen werden.
896  Die geschweiften Klammern werden in diesem Dokument als TeX-Klammern
897 \begin_inset Index idx
898 status collapsed
899
900 \begin_layout Plain Layout
901 T@TeX-Klammern
902 \end_layout
903
904 \end_inset
905
906  bezeichnet.
907  Hängt man in einer Formel an Befehlsnamen eine linke geschweifte Klammer
908  an, erzeugt LyX automatisch eine TeX-Klammer.
909  Ansonsten werden sie in Formeln mit dem Befehl 
910 \series bold
911
912 \backslash
913 {
914 \series default
915  erzeugt.
916  TeX-Klammern erscheinen in LyX rot, im Gegensatz zu normalen geschweiften
917  Klammern, die blau erscheinen.
918  Im TeX-Modus sind für TeX-Klammern keine Befehle notwendig.
919  TeX-Klammern erscheinen nicht im Ausdruck.
920 \end_layout
921
922 \begin_layout Standard
923 Werden Befehle ohne Argumente, wie z.
924 \begin_inset space \thinspace{}
925 \end_inset
926
927 B.
928  Symbolbefehle, im TeX-Modus eingegeben, muss auf den Befehl 
929 \emph on
930 immer
931 \emph default
932  ein Leerzeichen folgen um ihn zu beenden.
933  Dieses Leerzeichen erscheint nicht im Ausdruck.
934  Soll das Leerzeichen auch im Ausdruck erscheinen, muss auf den Befehl im
935  normalen Text ein geschütztes Leerzeichen folgen.
936 \end_layout
937
938 \begin_layout Standard
939 Ein geschütztes Leerzeichen gibt man mit 
940 \family sans
941 Strg+Leertaste
942 \family default
943  ein.
944 \end_layout
945
946 \begin_layout Subsection*
947 Zeichenerklärung
948 \end_layout
949
950 \begin_layout Itemize
951 Das Symbol
952 \begin_inset Foot
953 status collapsed
954
955 \begin_layout Plain Layout
956 Dieses sichtbare Leerzeichen erhält man über den Befehl 
957 \series bold
958
959 \backslash
960 textvisiblespace
961 \series default
962
963 \begin_inset Index idx
964 status collapsed
965
966 \begin_layout Plain Layout
967 Befehle ! T ! 
968 \backslash
969 textvisiblespace
970 \end_layout
971
972 \end_inset
973
974 , der im TeX-Modus einzugeben ist.
975 \end_layout
976
977 \end_inset
978
979  
980 \begin_inset ERT
981 status collapsed
982
983 \begin_layout Plain Layout
984
985
986 \backslash
987 leer 
988 \end_layout
989
990 \end_inset
991
992
993 \begin_inset space ~
994 \end_inset
995
996 steht für ein einzugebendes Leerzeichen.
997 \end_layout
998
999 \begin_layout Itemize
1000 Ein Pfeil wie z.
1001 \begin_inset space \thinspace{}
1002 \end_inset
1003
1004 B.
1005  
1006 \begin_inset Formula $\to$
1007 \end_inset
1008
1009  steht für den Druck der jeweiligen Pfeiltaste auf der Tastatur.
1010  Die 
1011 \family sans
1012 Tabulator
1013 \family default
1014 -Taste kann oft anstelle von 
1015 \begin_inset Formula $\to$
1016 \end_inset
1017
1018  und 
1019 \begin_inset Formula $\downarrow$
1020 \end_inset
1021
1022  benutzt werden und 
1023 \family sans
1024 Umschalt+Tabulator
1025 \family default
1026  anstelle von 
1027 \begin_inset Formula $\leftarrow$
1028 \end_inset
1029
1030  und 
1031 \begin_inset Formula $\uparrow$
1032 \end_inset
1033
1034 .
1035 \end_layout
1036
1037 \begin_layout Subsection*
1038 Verfügbare Einheiten
1039 \end_layout
1040
1041 \begin_layout Standard
1042 \align center
1043 \begin_inset Float table
1044 placement H
1045 wide false
1046 sideways false
1047 status open
1048
1049 \begin_layout Plain Layout
1050 \align center
1051 \begin_inset Caption
1052
1053 \begin_layout Plain Layout
1054 \begin_inset CommandInset label
1055 LatexCommand label
1056 name "tab:Verfügbare-Einheiten"
1057
1058 \end_inset
1059
1060 Verfügbare Einheiten
1061 \end_layout
1062
1063 \end_inset
1064
1065
1066 \end_layout
1067
1068 \begin_layout Plain Layout
1069 \align center
1070 \begin_inset Tabular
1071 <lyxtabular version="3" rows="13" columns="2">
1072 <features tabularvalignment="middle">
1073 <column alignment="center" valignment="top" width="0">
1074 <column alignment="center" valignment="top" width="0">
1075 <row>
1076 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1077 \begin_inset Text
1078
1079 \begin_layout Plain Layout
1080 Einheit
1081 \end_layout
1082
1083 \end_inset
1084 </cell>
1085 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
1086 \begin_inset Text
1087
1088 \begin_layout Plain Layout
1089 Name / Beschreibung
1090 \end_layout
1091
1092 \end_inset
1093 </cell>
1094 </row>
1095 <row>
1096 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1097 \begin_inset Text
1098
1099 \begin_layout Plain Layout
1100 mm
1101 \end_layout
1102
1103 \end_inset
1104 </cell>
1105 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1106 \begin_inset Text
1107
1108 \begin_layout Plain Layout
1109 Millimeter
1110 \end_layout
1111
1112 \end_inset
1113 </cell>
1114 </row>
1115 <row>
1116 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1117 \begin_inset Text
1118
1119 \begin_layout Plain Layout
1120 cm
1121 \end_layout
1122
1123 \end_inset
1124 </cell>
1125 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1126 \begin_inset Text
1127
1128 \begin_layout Plain Layout
1129 Zentimeter
1130 \end_layout
1131
1132 \end_inset
1133 </cell>
1134 </row>
1135 <row>
1136 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1137 \begin_inset Text
1138
1139 \begin_layout Plain Layout
1140 in
1141 \end_layout
1142
1143 \end_inset
1144 </cell>
1145 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1146 \begin_inset Text
1147
1148 \begin_layout Plain Layout
1149 Inch / Zoll (1
1150 \begin_inset space \thinspace{}
1151 \end_inset
1152
1153 in = 2,54
1154 \begin_inset space \thinspace{}
1155 \end_inset
1156
1157 cm)
1158 \end_layout
1159
1160 \end_inset
1161 </cell>
1162 </row>
1163 <row>
1164 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1165 \begin_inset Text
1166
1167 \begin_layout Plain Layout
1168 pt
1169 \end_layout
1170
1171 \end_inset
1172 </cell>
1173 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1174 \begin_inset Text
1175
1176 \begin_layout Plain Layout
1177 Punkt (72,27
1178 \begin_inset space \thinspace{}
1179 \end_inset
1180
1181 pt = 1
1182 \begin_inset space \thinspace{}
1183 \end_inset
1184
1185 in)
1186 \end_layout
1187
1188 \end_inset
1189 </cell>
1190 </row>
1191 <row>
1192 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1193 \begin_inset Text
1194
1195 \begin_layout Plain Layout
1196 pc
1197 \end_layout
1198
1199 \end_inset
1200 </cell>
1201 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1202 \begin_inset Text
1203
1204 \begin_layout Plain Layout
1205 Pica (1
1206 \begin_inset space \thinspace{}
1207 \end_inset
1208
1209 pc = 12
1210 \begin_inset space \thinspace{}
1211 \end_inset
1212
1213 pt)
1214 \end_layout
1215
1216 \end_inset
1217 </cell>
1218 </row>
1219 <row>
1220 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1221 \begin_inset Text
1222
1223 \begin_layout Plain Layout
1224 sp
1225 \end_layout
1226
1227 \end_inset
1228 </cell>
1229 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1230 \begin_inset Text
1231
1232 \begin_layout Plain Layout
1233 scaled point (65536
1234 \begin_inset space \thinspace{}
1235 \end_inset
1236
1237 sp = 1
1238 \begin_inset space \thinspace{}
1239 \end_inset
1240
1241 pt)
1242 \end_layout
1243
1244 \end_inset
1245 </cell>
1246 </row>
1247 <row>
1248 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1249 \begin_inset Text
1250
1251 \begin_layout Plain Layout
1252 bp
1253 \end_layout
1254
1255 \end_inset
1256 </cell>
1257 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1258 \begin_inset Text
1259
1260 \begin_layout Plain Layout
1261 big point (72
1262 \begin_inset space \thinspace{}
1263 \end_inset
1264
1265 bp = 1
1266 \begin_inset space \thinspace{}
1267 \end_inset
1268
1269 in)
1270 \end_layout
1271
1272 \end_inset
1273 </cell>
1274 </row>
1275 <row>
1276 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1277 \begin_inset Text
1278
1279 \begin_layout Plain Layout
1280 dd
1281 \end_layout
1282
1283 \end_inset
1284 </cell>
1285 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1286 \begin_inset Text
1287
1288 \begin_layout Plain Layout
1289 Didot (1
1290 \begin_inset space \thinspace{}
1291 \end_inset
1292
1293 dd 
1294 \begin_inset Formula $\approx$
1295 \end_inset
1296
1297  0,376
1298 \begin_inset space \thinspace{}
1299 \end_inset
1300
1301 mm)
1302 \end_layout
1303
1304 \end_inset
1305 </cell>
1306 </row>
1307 <row>
1308 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1309 \begin_inset Text
1310
1311 \begin_layout Plain Layout
1312 cc
1313 \end_layout
1314
1315 \end_inset
1316 </cell>
1317 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1318 \begin_inset Text
1319
1320 \begin_layout Plain Layout
1321 Cicero (1
1322 \begin_inset space \thinspace{}
1323 \end_inset
1324
1325 cc = 12
1326 \begin_inset space \thinspace{}
1327 \end_inset
1328
1329 dd)
1330 \end_layout
1331
1332 \end_inset
1333 </cell>
1334 </row>
1335 <row>
1336 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1337 \begin_inset Text
1338
1339 \begin_layout Plain Layout
1340 ex
1341 \end_layout
1342
1343 \end_inset
1344 </cell>
1345 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1346 \begin_inset Text
1347
1348 \begin_layout Plain Layout
1349 Höhe des Buchstabens 
1350 \emph on
1351 x
1352 \emph default
1353  in der aktuellen Schrift
1354 \end_layout
1355
1356 \end_inset
1357 </cell>
1358 </row>
1359 <row>
1360 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1361 \begin_inset Text
1362
1363 \begin_layout Plain Layout
1364 em
1365 \end_layout
1366
1367 \end_inset
1368 </cell>
1369 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1370 \begin_inset Text
1371
1372 \begin_layout Plain Layout
1373 Breite des Buchstabens 
1374 \emph on
1375 M
1376 \emph default
1377  in der aktuellen Schrift
1378 \end_layout
1379
1380 \end_inset
1381 </cell>
1382 </row>
1383 <row>
1384 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1385 \begin_inset Text
1386
1387 \begin_layout Plain Layout
1388 mu
1389 \end_layout
1390
1391 \end_inset
1392 </cell>
1393 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
1394 \begin_inset Text
1395
1396 \begin_layout Plain Layout
1397 math unit (1
1398 \begin_inset space \thinspace{}
1399 \end_inset
1400
1401 mu = 
1402 \begin_inset Formula $\nicefrac{1}{18}$
1403 \end_inset
1404
1405
1406 \begin_inset space \thinspace{}
1407 \end_inset
1408
1409 em)
1410 \end_layout
1411
1412 \end_inset
1413 </cell>
1414 </row>
1415 </lyxtabular>
1416
1417 \end_inset
1418
1419
1420 \end_layout
1421
1422 \end_inset
1423
1424
1425 \end_layout
1426
1427 \begin_layout Standard
1428 \begin_inset Newpage newpage
1429 \end_inset
1430
1431
1432 \end_layout
1433
1434 \begin_layout Section
1435 Grundlegende Funktionen
1436 \end_layout
1437
1438 \begin_layout Subsection
1439 Exponenten
1440 \begin_inset Index idx
1441 status collapsed
1442
1443 \begin_layout Plain Layout
1444 Exponenten
1445 \end_layout
1446
1447 \end_inset
1448
1449  und Indizes
1450 \begin_inset Index idx
1451 status collapsed
1452
1453 \begin_layout Plain Layout
1454 Indizes
1455 \end_layout
1456
1457 \end_inset
1458
1459
1460 \begin_inset Index idx
1461 status collapsed
1462
1463 \begin_layout Plain Layout
1464 Hochstellen|see
1465 \begin_inset ERT
1466 status collapsed
1467
1468 \begin_layout Plain Layout
1469
1470 {
1471 \end_layout
1472
1473 \end_inset
1474
1475 Exponenten
1476 \begin_inset ERT
1477 status collapsed
1478
1479 \begin_layout Plain Layout
1480
1481 }
1482 \end_layout
1483
1484 \end_inset
1485
1486
1487 \end_layout
1488
1489 \end_inset
1490
1491
1492 \begin_inset Index idx
1493 status collapsed
1494
1495 \begin_layout Plain Layout
1496 Tiefstellen|see
1497 \begin_inset ERT
1498 status collapsed
1499
1500 \begin_layout Plain Layout
1501
1502 {
1503 \end_layout
1504
1505 \end_inset
1506
1507 Indizes
1508 \begin_inset ERT
1509 status collapsed
1510
1511 \begin_layout Plain Layout
1512
1513 }
1514 \end_layout
1515
1516 \end_inset
1517
1518
1519 \end_layout
1520
1521 \end_inset
1522
1523
1524 \end_layout
1525
1526 \begin_layout Standard
1527 Indizes werden mit dem Unterstrich _ oder mit dem Mathe-Werkzeugleistenknopf
1528  
1529 \begin_inset Graphics
1530         filename ../../images/math-subscript.png
1531         scale 85
1532
1533 \end_inset
1534
1535 , Exponenten mit dem Zirkumflexzeichen ^ oder mit dem Mathe-Werkzeugleistenknopf
1536  
1537 \begin_inset Graphics
1538         filename ../../images/math-superscript.png
1539         scale 85
1540
1541 \end_inset
1542
1543  erzeugt.
1544 \end_layout
1545
1546 \begin_layout Standard
1547 \align center
1548 \begin_inset Tabular
1549 <lyxtabular version="3" rows="4" columns="2">
1550 <features tabularvalignment="middle">
1551 <column alignment="center" valignment="top" width="0pt">
1552 <column alignment="center" valignment="top" width="0pt">
1553 <row>
1554 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1555 \begin_inset Text
1556
1557 \begin_layout Plain Layout
1558 Befehl
1559 \end_layout
1560
1561 \end_inset
1562 </cell>
1563 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
1564 \begin_inset Text
1565
1566 \begin_layout Plain Layout
1567 Ergebnis
1568 \begin_inset Note Note
1569 status collapsed
1570
1571 \begin_layout Plain Layout
1572
1573 \series bold
1574
1575 \backslash
1576 raisebox
1577 \series default
1578  dient nur als Abstandhalter.
1579 \end_layout
1580
1581 \end_inset
1582
1583
1584 \end_layout
1585
1586 \end_inset
1587 </cell>
1588 </row>
1589 <row>
1590 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1591 \begin_inset Text
1592
1593 \begin_layout Plain Layout
1594 B_V
1595 \end_layout
1596
1597 \end_inset
1598 </cell>
1599 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1600 \begin_inset Text
1601
1602 \begin_layout Plain Layout
1603 \begin_inset Formula $B_{V}$
1604 \end_inset
1605
1606
1607 \end_layout
1608
1609 \end_inset
1610 </cell>
1611 </row>
1612 <row>
1613 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1614 \begin_inset Text
1615
1616 \begin_layout Plain Layout
1617 B^V
1618 \end_layout
1619
1620 \end_inset
1621 </cell>
1622 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
1623 \begin_inset Text
1624
1625 \begin_layout Plain Layout
1626 \begin_inset Formula $\raisebox{5mm}{}B^{V}$
1627 \end_inset
1628
1629
1630 \end_layout
1631
1632 \end_inset
1633 </cell>
1634 </row>
1635 <row>
1636 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1637 \begin_inset Text
1638
1639 \begin_layout Plain Layout
1640 B^
1641 \begin_inset ERT
1642 status collapsed
1643
1644 \begin_layout Plain Layout
1645
1646
1647 \backslash
1648 leer 
1649 \end_layout
1650
1651 \end_inset
1652
1653 A
1654 \end_layout
1655
1656 \end_inset
1657 </cell>
1658 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
1659 \begin_inset Text
1660
1661 \begin_layout Plain Layout
1662 \begin_inset Formula $\raisebox{5mm}{}B^{A}$
1663 \end_inset
1664
1665
1666 \end_layout
1667
1668 \end_inset
1669 </cell>
1670 </row>
1671 </lyxtabular>
1672
1673 \end_inset
1674
1675
1676 \end_layout
1677
1678 \begin_layout Standard
1679 Da der Zirkumflex ein Akzent ist, werden Selbstlaute akzentuiert statt hochgeste
1680 llt
1681 \begin_inset Foot
1682 status collapsed
1683
1684 \begin_layout Plain Layout
1685 Je nach Tastatureinstellung werden auch andere Buchstaben akzentuiert.
1686 \end_layout
1687
1688 \end_inset
1689
1690 .
1691  Um in diesem Fall Exponenten zu erzeugen, muss nach dem Zirkumflex ein
1692  Leerzeichen eingegeben werden, siehe letztes Beispiel.
1693 \end_layout
1694
1695 \begin_layout Subsection
1696 Brüche
1697 \begin_inset CommandInset label
1698 LatexCommand label
1699 name "sub:Brüche"
1700
1701 \end_inset
1702
1703
1704 \begin_inset Index idx
1705 status collapsed
1706
1707 \begin_layout Plain Layout
1708 Brüche
1709 \end_layout
1710
1711 \end_inset
1712
1713
1714 \end_layout
1715
1716 \begin_layout Standard
1717 Brüche werden mit dem Befehl 
1718 \series bold
1719
1720 \backslash
1721 frac
1722 \series default
1723
1724 \begin_inset Index idx
1725 status collapsed
1726
1727 \begin_layout Plain Layout
1728 Befehle ! F ! 
1729 \backslash
1730 frac
1731 \end_layout
1732
1733 \end_inset
1734
1735  oder mit dem Mathe-Werkzeugleistenknopf 
1736 \begin_inset Graphics
1737         filename ../../images/math/frac.png
1738         scale 50
1739
1740 \end_inset
1741
1742  erstellt.
1743  Die Zeichengröße wird automatisch angepasst, je nachdem, ob sich der Bruch
1744  in einer eingebetteten oder abgesetzten Formel befindet.
1745  Mit dem Mathe-Werkzeugleistenknopf 
1746 \begin_inset Graphics
1747         filename ../../images/math/frac-square.png
1748         scale 85
1749
1750 \end_inset
1751
1752  können verschieden Bruchtypen gewählt werden.
1753 \end_layout
1754
1755 \begin_layout Standard
1756 Mit dem Befehl 
1757 \series bold
1758
1759 \backslash
1760 dfrac
1761 \series default
1762
1763 \begin_inset Index idx
1764 status collapsed
1765
1766 \begin_layout Plain Layout
1767 Befehle ! D ! 
1768 \backslash
1769 dfrac
1770 \end_layout
1771
1772 \end_inset
1773
1774  kann man einen Bruch erzeugen, der immer in der Größe einer abgesetzten
1775  Formel erscheint.
1776  Mit 
1777 \series bold
1778
1779 \backslash
1780 tfrac
1781 \series default
1782
1783 \begin_inset Index idx
1784 status collapsed
1785
1786 \begin_layout Plain Layout
1787 Befehle ! T ! 
1788 \backslash
1789 tfrac
1790 \end_layout
1791
1792 \end_inset
1793
1794  erscheint der Bruch immer in der Größe einer eingebetteten Formel.
1795  Ein Beispiel:
1796 \end_layout
1797
1798 \begin_layout Standard
1799 Eine Zeile mit dem Bruch 
1800 \begin_inset Formula $\frac{1}{2}$
1801 \end_inset
1802
1803 , der mit dem Befehl 
1804 \series bold
1805
1806 \backslash
1807 frac
1808 \series default
1809  erstellt wurde.
1810 \end_layout
1811
1812 \begin_layout Standard
1813 Eine Zeile mit dem Bruch 
1814 \begin_inset Formula $\dfrac{1}{2}$
1815 \end_inset
1816
1817 , der mit dem Befehl 
1818 \series bold
1819
1820 \backslash
1821 dfrac
1822 \series default
1823  erstellt wurde.
1824 \end_layout
1825
1826 \begin_layout Standard
1827 \align center
1828 \begin_inset Tabular
1829 <lyxtabular version="3" rows="4" columns="2">
1830 <features tabularvalignment="middle">
1831 <column alignment="center" valignment="top" width="0pt">
1832 <column alignment="center" valignment="top" width="0pt">
1833 <row>
1834 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1835 \begin_inset Text
1836
1837 \begin_layout Plain Layout
1838 Befehl
1839 \end_layout
1840
1841 \end_inset
1842 </cell>
1843 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
1844 \begin_inset Text
1845
1846 \begin_layout Plain Layout
1847 Ergebnis
1848 \begin_inset Note Note
1849 status collapsed
1850
1851 \begin_layout Plain Layout
1852
1853 \series bold
1854
1855 \backslash
1856 raisebox
1857 \series default
1858  dient nur als Abstandhalter.
1859 \end_layout
1860
1861 \end_inset
1862
1863
1864 \end_layout
1865
1866 \end_inset
1867 </cell>
1868 </row>
1869 <row>
1870 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1871 \begin_inset Text
1872
1873 \begin_layout Plain Layout
1874
1875 \backslash
1876 frac
1877 \begin_inset ERT
1878 status collapsed
1879
1880 \begin_layout Plain Layout
1881
1882
1883 \backslash
1884 leer 
1885 \end_layout
1886
1887 \end_inset
1888
1889 A
1890 \begin_inset Formula $\downarrow$
1891 \end_inset
1892
1893 B
1894 \end_layout
1895
1896 \end_inset
1897 </cell>
1898 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1899 \begin_inset Text
1900
1901 \begin_layout Plain Layout
1902 \begin_inset Formula $\raisebox{4.5mm}{}\frac{A}{B}\raisebox{-2.5mm}{}$
1903 \end_inset
1904
1905
1906 \end_layout
1907
1908 \end_inset
1909 </cell>
1910 </row>
1911 <row>
1912 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1913 \begin_inset Text
1914
1915 \begin_layout Plain Layout
1916
1917 \backslash
1918 dfrac
1919 \begin_inset ERT
1920 status collapsed
1921
1922 \begin_layout Plain Layout
1923
1924
1925 \backslash
1926 leer 
1927 \end_layout
1928
1929 \end_inset
1930
1931 A
1932 \begin_inset Formula $\downarrow$
1933 \end_inset
1934
1935 B
1936 \end_layout
1937
1938 \end_inset
1939 </cell>
1940 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1941 \begin_inset Text
1942
1943 \begin_layout Plain Layout
1944 \begin_inset Formula $\raisebox{7mm}{}\dfrac{A}{B}\raisebox{-4mm}{}$
1945 \end_inset
1946
1947
1948 \end_layout
1949
1950 \end_inset
1951 </cell>
1952 </row>
1953 <row>
1954 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1955 \begin_inset Text
1956
1957 \begin_layout Plain Layout
1958
1959 \backslash
1960 dfrac
1961 \begin_inset ERT
1962 status collapsed
1963
1964 \begin_layout Plain Layout
1965
1966
1967 \backslash
1968 leer 
1969 \end_layout
1970
1971 \end_inset
1972
1973 e^
1974 \backslash
1975 frac
1976 \begin_inset ERT
1977 status collapsed
1978
1979 \begin_layout Plain Layout
1980
1981
1982 \backslash
1983 leer 
1984 \end_layout
1985
1986 \end_inset
1987
1988 1
1989 \begin_inset Formula $\downarrow$
1990 \end_inset
1991
1992 2
1993 \begin_inset Formula $\downarrow\downarrow$
1994 \end_inset
1995
1996 3
1997 \end_layout
1998
1999 \end_inset
2000 </cell>
2001 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2002 \begin_inset Text
2003
2004 \begin_layout Plain Layout
2005 \begin_inset Formula $\raisebox{8mm}{}\dfrac{e^{\frac{1}{2}}}{3}\raisebox{-4mm}{}$
2006 \end_inset
2007
2008
2009 \end_layout
2010
2011 \end_inset
2012 </cell>
2013 </row>
2014 </lyxtabular>
2015
2016 \end_inset
2017
2018
2019 \end_layout
2020
2021 \begin_layout Standard
2022 \begin_inset VSpace bigskip
2023 \end_inset
2024
2025
2026 \begin_inset Newpage newpage
2027 \end_inset
2028
2029 Für Mehrfachbrüche gibt es den Befehl 
2030 \series bold
2031
2032 \backslash
2033 cfrac
2034 \series default
2035
2036 \begin_inset Index idx
2037 status collapsed
2038
2039 \begin_layout Plain Layout
2040 Befehle ! C ! 
2041 \backslash
2042 cfrac
2043 \end_layout
2044
2045 \end_inset
2046
2047 .
2048  Dazu ein Beispiel:
2049 \begin_inset VSpace -3mm
2050 \end_inset
2051
2052
2053 \end_layout
2054
2055 \begin_layout Standard
2056 \begin_inset Formula 
2057 \begin{align*}
2058 \textrm{mit \textbf{\textbackslash frac} erstellt} &  & \textrm{mit \textbf{\textbackslash cfrac} erstellt}\\
2059 \frac{A}{B+\frac{C+\frac{E}{F}}{D}} &  & \cfrac{A}{B+\cfrac{C+\cfrac{E}{F}}{D}}
2060 \end{align*}
2061
2062 \end_inset
2063
2064
2065 \end_layout
2066
2067 \begin_layout Standard
2068 Der Befehl für obiges Beispiel lautet:
2069 \end_layout
2070
2071 \begin_layout Standard
2072
2073 \series bold
2074
2075 \backslash
2076 cfrac
2077 \begin_inset ERT
2078 status collapsed
2079
2080 \begin_layout Plain Layout
2081
2082
2083 \backslash
2084 leer 
2085 \end_layout
2086
2087 \end_inset
2088
2089 A
2090 \begin_inset Formula $\downarrow$
2091 \end_inset
2092
2093 B+
2094 \backslash
2095 cfrac
2096 \begin_inset ERT
2097 status collapsed
2098
2099 \begin_layout Plain Layout
2100
2101
2102 \backslash
2103 leer 
2104 \end_layout
2105
2106 \end_inset
2107
2108 C+
2109 \backslash
2110 cfrac
2111 \begin_inset ERT
2112 status collapsed
2113
2114 \begin_layout Plain Layout
2115
2116
2117 \backslash
2118 leer 
2119 \end_layout
2120
2121 \end_inset
2122
2123 E
2124 \begin_inset Formula $\downarrow$
2125 \end_inset
2126
2127 F
2128 \begin_inset Formula $\downarrow$
2129 \end_inset
2130
2131 D
2132 \end_layout
2133
2134 \begin_layout Standard
2135 \begin_inset VSpace medskip
2136 \end_inset
2137
2138
2139 \end_layout
2140
2141 \begin_layout Standard
2142
2143 \series bold
2144
2145 \backslash
2146 cfrac
2147 \series default
2148  bewirkt, dass der Bruch immer in der Größe einer abgesetzten Formel erscheint,
2149  auch wenn er selbst Teil eines Bruches ist.
2150 \end_layout
2151
2152 \begin_layout Standard
2153 Es ist möglich die Ausrichtung des Zählers einzustellen.
2154  Der Befehl 
2155 \series bold
2156
2157 \backslash
2158 cfracleft
2159 \series default
2160  richtet ihn links, der Befehl 
2161 \series bold
2162
2163 \backslash
2164 cfracright
2165 \series default
2166  rechts aus.
2167  
2168 \series bold
2169
2170 \backslash
2171 cfrac
2172 \series default
2173  zentriert den Zähler.
2174  Diese Brüche demonstrieren die verschiedenen Ausrichtungen:
2175 \end_layout
2176
2177 \begin_layout Standard
2178
2179 \series bold
2180 \begin_inset Formula 
2181 \[
2182 \cfrac[l]{A}{B+C}\,,\,\cfrac{A}{B+C}\,,\,\cfrac[r]{A}{B+C}
2183 \]
2184
2185 \end_inset
2186
2187
2188 \end_layout
2189
2190 \begin_layout Standard
2191 \begin_inset Note Greyedout
2192 status open
2193
2194 \begin_layout Plain Layout
2195
2196 \series bold
2197 Achtung:
2198 \series default
2199  
2200 \series bold
2201
2202 \backslash
2203 cfracleft
2204 \series default
2205  und
2206 \series bold
2207  
2208 \backslash
2209 cfracright
2210 \series default
2211  sind keine echten LaTeX-Befehle, sondern stellen den Befehl 
2212 \series bold
2213
2214 \backslash
2215 cfrac[Ausrichtung]{Zähler}{Nenner}
2216 \series default
2217  dar.
2218  Daher kann man sie nicht im TeX-Code benutzen.
2219 \end_layout
2220
2221 \end_inset
2222
2223
2224 \end_layout
2225
2226 \begin_layout Standard
2227 \begin_inset VSpace medskip
2228 \end_inset
2229
2230 Oftmals ist es am günstigsten 
2231 \series bold
2232
2233 \backslash
2234 cfrac
2235 \series default
2236  und 
2237 \series bold
2238
2239 \backslash
2240 frac
2241 \series default
2242  zu kombinieren:
2243 \begin_inset Formula 
2244 \[
2245 \cfrac{A}{B+\cfrac{C+\frac{E}{F}}{D}}
2246 \]
2247
2248 \end_inset
2249
2250
2251 \end_layout
2252
2253 \begin_layout Standard
2254 Um Brüche mit schrägem Bruchstrich zu erzeugen, kann der Befehl 
2255 \series bold
2256
2257 \backslash
2258 nicefrac
2259 \series default
2260
2261 \begin_inset Index idx
2262 status collapsed
2263
2264 \begin_layout Plain Layout
2265 Befehle ! N ! 
2266 \backslash
2267 nicefrac
2268 \end_layout
2269
2270 \end_inset
2271
2272
2273 \begin_inset Formula $\nicefrac{5}{31}$
2274 \end_inset
2275
2276  oder 
2277 \series bold
2278
2279 \backslash
2280 unitfrac
2281 \series default
2282
2283 \begin_inset Index idx
2284 status collapsed
2285
2286 \begin_layout Plain Layout
2287 Befehle! U ! 
2288 \backslash
2289 unitfrac
2290 \end_layout
2291
2292 \end_inset
2293
2294
2295 \begin_inset Formula $\unitfrac{5}{31}$
2296 \end_inset
2297
2298  benutzt werden.
2299  Des Weiteren gibt es den Befehl 
2300 \series bold
2301
2302 \backslash
2303 unitfracthree
2304 \series default
2305  mit dem man einen Bruch in Kombination mit einer Zahl setzen kann: 
2306 \begin_inset Formula $\unitfrac[2]{1}{3}$
2307 \end_inset
2308
2309
2310 \end_layout
2311
2312 \begin_layout Standard
2313 \begin_inset Note Greyedout
2314 status open
2315
2316 \begin_layout Plain Layout
2317
2318 \series bold
2319 Achtung:
2320 \series default
2321  
2322 \series bold
2323
2324 \backslash
2325 unitfracthree
2326 \series default
2327  ist kein echter LaTeX-Befehl, sondern der Befehl
2328 \begin_inset Newline newline
2329 \end_inset
2330
2331
2332 \series bold
2333
2334 \backslash
2335 unitfrac[Zahl]{Zähler}{Nenner}
2336 \series default
2337  .
2338  Daher kann man ihn nicht im TeX-Code benutzen.
2339 \end_layout
2340
2341 \end_inset
2342
2343
2344 \end_layout
2345
2346 \begin_layout Standard
2347 Wie man eigene Brüche definiert, um die Bruchstrichdicke zu ändern, ist
2348  in 
2349 \begin_inset CommandInset ref
2350 LatexCommand ref
2351 reference "sub:Selbstdefinierte-Brüche"
2352
2353 \end_inset
2354
2355  erklärt.
2356 \end_layout
2357
2358 \begin_layout Standard
2359 \begin_inset Newpage newpage
2360 \end_inset
2361
2362
2363 \end_layout
2364
2365 \begin_layout Subsection
2366 Wurzeln
2367 \begin_inset Index idx
2368 status collapsed
2369
2370 \begin_layout Plain Layout
2371 Wurzeln
2372 \end_layout
2373
2374 \end_inset
2375
2376
2377 \end_layout
2378
2379 \begin_layout Standard
2380 Quadratwurzeln werden mit 
2381 \series bold
2382
2383 \backslash
2384 sqrt
2385 \series default
2386
2387 \begin_inset Index idx
2388 status collapsed
2389
2390 \begin_layout Plain Layout
2391 Befehle ! S ! 
2392 \backslash
2393 sqrt
2394 \end_layout
2395
2396 \end_inset
2397
2398  oder dem Mathe-Werkzeugleistenknopf 
2399 \begin_inset Graphics
2400         filename ../../images/math/sqrt.png
2401         scale 85
2402
2403 \end_inset
2404
2405  gesetzt, alle anderen Wurzeln mit dem Befehl 
2406 \series bold
2407
2408 \backslash
2409 root
2410 \series default
2411
2412 \begin_inset Index idx
2413 status collapsed
2414
2415 \begin_layout Plain Layout
2416 Befehle ! R ! 
2417 \backslash
2418 root
2419 \end_layout
2420
2421 \end_inset
2422
2423  oder dem Mathe-Werkzeugleistenknopf 
2424 \begin_inset Graphics
2425         filename ../../images/math/root.png
2426         scale 85
2427
2428 \end_inset
2429
2430 .
2431 \end_layout
2432
2433 \begin_layout Standard
2434 \align center
2435 \begin_inset Tabular
2436 <lyxtabular version="3" rows="3" columns="2">
2437 <features tabularvalignment="middle">
2438 <column alignment="center" valignment="top" width="0pt">
2439 <column alignment="center" valignment="top" width="0pt">
2440 <row>
2441 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
2442 \begin_inset Text
2443
2444 \begin_layout Plain Layout
2445 Befehl
2446 \end_layout
2447
2448 \end_inset
2449 </cell>
2450 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2451 \begin_inset Text
2452
2453 \begin_layout Plain Layout
2454 Ergebnis
2455 \begin_inset Note Note
2456 status collapsed
2457
2458 \begin_layout Plain Layout
2459
2460 \series bold
2461
2462 \backslash
2463 raisebox
2464 \series default
2465  dient nur als Abstandhalter.
2466 \end_layout
2467
2468 \end_inset
2469
2470
2471 \end_layout
2472
2473 \end_inset
2474 </cell>
2475 </row>
2476 <row>
2477 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
2478 \begin_inset Text
2479
2480 \begin_layout Plain Layout
2481
2482 \backslash
2483 sqrt
2484 \begin_inset ERT
2485 status collapsed
2486
2487 \begin_layout Plain Layout
2488
2489
2490 \backslash
2491 leer 
2492 \end_layout
2493
2494 \end_inset
2495
2496 A-B
2497 \end_layout
2498
2499 \end_inset
2500 </cell>
2501 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2502 \begin_inset Text
2503
2504 \begin_layout Plain Layout
2505 \begin_inset Formula $\raisebox{4.5mm}{}\sqrt{A-B}$
2506 \end_inset
2507
2508
2509 \end_layout
2510
2511 \end_inset
2512 </cell>
2513 </row>
2514 <row>
2515 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
2516 \begin_inset Text
2517
2518 \begin_layout Plain Layout
2519
2520 \backslash
2521 root
2522 \begin_inset ERT
2523 status collapsed
2524
2525 \begin_layout Plain Layout
2526
2527
2528 \backslash
2529 leer 
2530 \end_layout
2531
2532 \end_inset
2533
2534 3
2535 \begin_inset Formula $\downarrow$
2536 \end_inset
2537
2538 A-B
2539 \end_layout
2540
2541 \end_inset
2542 </cell>
2543 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
2544 \begin_inset Text
2545
2546 \begin_layout Plain Layout
2547 \begin_inset Formula $\raisebox{4.5mm}{}\sqrt[3]{A-B}$
2548 \end_inset
2549
2550
2551 \end_layout
2552
2553 \end_inset
2554 </cell>
2555 </row>
2556 </lyxtabular>
2557
2558 \end_inset
2559
2560
2561 \end_layout
2562
2563 \begin_layout Standard
2564 Eine Quadratwurzel kann man auch mit 
2565 \series bold
2566
2567 \backslash
2568 root
2569 \series default
2570  erstellen, indem man das Feld über der Wurzel frei lässt.
2571 \end_layout
2572
2573 \begin_layout Standard
2574 Bei manchen Indizes ist der Abstand zur Wurzel zu gering, wie bei dieser
2575  Formel: 
2576 \begin_inset Formula $\sqrt[\beta]{B}$
2577 \end_inset
2578
2579
2580 \begin_inset Newline newline
2581 \end_inset
2582
2583 Das 
2584 \begin_inset Formula $\beta$
2585 \end_inset
2586
2587  berührt die Wurzel.
2588  Um dies zu verhindern, verwendet man die Befehle 
2589 \series bold
2590
2591 \backslash
2592 leftroot
2593 \series default
2594
2595 \begin_inset Index idx
2596 status collapsed
2597
2598 \begin_layout Plain Layout
2599 Befehle ! L ! 
2600 \backslash
2601 leftroot
2602 \end_layout
2603
2604 \end_inset
2605
2606  und 
2607 \series bold
2608
2609 \backslash
2610 uproot
2611 \series default
2612
2613 \begin_inset Index idx
2614 status collapsed
2615
2616 \begin_layout Plain Layout
2617 Befehle ! U ! 
2618 \backslash
2619 uproot
2620 \end_layout
2621
2622 \end_inset
2623
2624 , die folgendes Schema besitzen:
2625 \end_layout
2626
2627 \begin_layout Standard
2628
2629 \series bold
2630
2631 \backslash
2632 leftroot{Abstand}
2633 \series default
2634  bzw.
2635  
2636 \series bold
2637
2638 \backslash
2639 uproot{Abstand}
2640 \end_layout
2641
2642 \begin_layout Standard
2643 Abstand ist die Anzahl der Big Points (Einheit bp; 
2644 \begin_inset Formula $\mathrm{72\, bp=1\, inch}$
2645 \end_inset
2646
2647 ), um die der Index nach links bzw.
2648  nach oben verschoben werden soll.
2649  Die Befehle werden in den Index geschrieben.
2650  So ergibt der Befehl
2651 \begin_inset Newline newline
2652 \end_inset
2653
2654
2655 \series bold
2656
2657 \backslash
2658 root
2659 \backslash
2660 leftroot{-1
2661 \begin_inset Formula $\to$
2662 \end_inset
2663
2664
2665 \backslash
2666 uproot{2
2667 \begin_inset Formula $\to$
2668 \end_inset
2669
2670
2671 \backslash
2672 beta
2673 \begin_inset ERT
2674 status collapsed
2675
2676 \begin_layout Plain Layout
2677
2678
2679 \backslash
2680 leer 
2681 \end_layout
2682
2683 \end_inset
2684
2685
2686 \begin_inset Formula $\to$
2687 \end_inset
2688
2689 B
2690 \begin_inset Newline newline
2691 \end_inset
2692
2693
2694 \series default
2695 eine korrekt gesetzte Formel: 
2696 \begin_inset Formula $\sqrt[\leftroot{-1}\uproot{2}\beta]{B}$
2697 \end_inset
2698
2699
2700 \end_layout
2701
2702 \begin_layout Subsection
2703 Binomialkoeffizienten
2704 \begin_inset Index idx
2705 status collapsed
2706
2707 \begin_layout Plain Layout
2708 Binomialkoeffizienten
2709 \end_layout
2710
2711 \end_inset
2712
2713
2714 \end_layout
2715
2716 \begin_layout Standard
2717 Binomialkoeffizienten können mit dem Befehl 
2718 \series bold
2719
2720 \backslash
2721 binom
2722 \series default
2723
2724 \begin_inset Index idx
2725 status collapsed
2726
2727 \begin_layout Plain Layout
2728 Befehle ! B ! 
2729 \backslash
2730 binom
2731 \end_layout
2732
2733 \end_inset
2734
2735  oder über das Untermenü des Mathe-Werkzeugleistenknopfs 
2736 \begin_inset Graphics
2737         filename ../../images/math/frac-square.png
2738         scale 85
2739
2740 \end_inset
2741
2742 eingefügt werden.
2743  Analog zu Brüchen (
2744 \series bold
2745
2746 \backslash
2747 frac
2748 \series default
2749 ) gibt es außer 
2750 \series bold
2751
2752 \backslash
2753 binom
2754 \series default
2755  noch die Befehle 
2756 \series bold
2757
2758 \backslash
2759 dbinom
2760 \series default
2761
2762 \begin_inset Index idx
2763 status collapsed
2764
2765 \begin_layout Plain Layout
2766 Befehle ! D ! 
2767 \backslash
2768 dbinom
2769 \end_layout
2770
2771 \end_inset
2772
2773  und 
2774 \series bold
2775
2776 \backslash
2777 tbinom
2778 \series default
2779
2780 \begin_inset Index idx
2781 status collapsed
2782
2783 \begin_layout Plain Layout
2784 Befehle ! T ! 
2785 \backslash
2786 tbinom
2787 \end_layout
2788
2789 \end_inset
2790
2791 .
2792  Für andere Klammern um Binomialkoeffizienten gibt es die Befehle 
2793 \series bold
2794
2795 \backslash
2796 brace
2797 \series default
2798
2799 \begin_inset Index idx
2800 status collapsed
2801
2802 \begin_layout Plain Layout
2803 Befehle ! B ! 
2804 \backslash
2805 brace
2806 \end_layout
2807
2808 \end_inset
2809
2810  und 
2811 \series bold
2812
2813 \backslash
2814 brack
2815 \series default
2816
2817 \begin_inset Index idx
2818 status collapsed
2819
2820 \begin_layout Plain Layout
2821 Befehle ! B ! 
2822 \backslash
2823 brack
2824 \end_layout
2825
2826 \end_inset
2827
2828 .
2829 \end_layout
2830
2831 \begin_layout Standard
2832 \align center
2833 \begin_inset Tabular
2834 <lyxtabular version="3" rows="6" columns="2">
2835 <features tabularvalignment="middle">
2836 <column alignment="center" valignment="top" width="0pt">
2837 <column alignment="center" valignment="top" width="0pt">
2838 <row>
2839 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2840 \begin_inset Text
2841
2842 \begin_layout Plain Layout
2843 Befehl
2844 \end_layout
2845
2846 \end_inset
2847 </cell>
2848 <cell alignment="center" valignment="top" topline="true" bottomline="true" rightline="true" usebox="none">
2849 \begin_inset Text
2850
2851 \begin_layout Plain Layout
2852 Ergebnis
2853 \begin_inset Note Note
2854 status collapsed
2855
2856 \begin_layout Plain Layout
2857
2858 \series bold
2859
2860 \backslash
2861 raisebox
2862 \series default
2863  dient nur als Abstandhalter.
2864 \end_layout
2865
2866 \end_inset
2867
2868
2869 \end_layout
2870
2871 \end_inset
2872 </cell>
2873 </row>
2874 <row>
2875 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
2876 \begin_inset Text
2877
2878 \begin_layout Plain Layout
2879
2880 \backslash
2881 binom
2882 \begin_inset ERT
2883 status collapsed
2884
2885 \begin_layout Plain Layout
2886
2887
2888 \backslash
2889 leer 
2890 \end_layout
2891
2892 \end_inset
2893
2894 A
2895 \begin_inset Formula $\downarrow$
2896 \end_inset
2897
2898 B
2899 \end_layout
2900
2901 \end_inset
2902 </cell>
2903 <cell alignment="center" valignment="top" bottomline="true" rightline="true" usebox="none">
2904 \begin_inset Text
2905
2906 \begin_layout Plain Layout
2907 \begin_inset Formula $\raisebox{5mm}{}\binom{A}{B}\raisebox{-2.5mm}{}$
2908 \end_inset
2909
2910
2911 \end_layout
2912
2913 \end_inset
2914 </cell>
2915 </row>
2916 <row>
2917 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
2918 \begin_inset Text
2919
2920 \begin_layout Plain Layout
2921
2922 \backslash
2923 dbinom
2924 \begin_inset ERT
2925 status collapsed
2926
2927 \begin_layout Plain Layout
2928
2929
2930 \backslash
2931 leer 
2932 \end_layout
2933
2934 \end_inset
2935
2936 A
2937 \begin_inset Formula $\downarrow$
2938 \end_inset
2939
2940 B
2941 \end_layout
2942
2943 \end_inset
2944 </cell>
2945 <cell alignment="center" valignment="top" bottomline="true" rightline="true" usebox="none">
2946 \begin_inset Text
2947
2948 \begin_layout Plain Layout
2949 \begin_inset Formula $\raisebox{5mm}{}\dbinom{A}{B}\raisebox{-2.5mm}{}$
2950 \end_inset
2951
2952
2953 \end_layout
2954
2955 \end_inset
2956 </cell>
2957 </row>
2958 <row>
2959 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
2960 \begin_inset Text
2961
2962 \begin_layout Plain Layout
2963
2964 \backslash
2965 tbinom
2966 \begin_inset ERT
2967 status collapsed
2968
2969 \begin_layout Plain Layout
2970
2971
2972 \backslash
2973 leer 
2974 \end_layout
2975
2976 \end_inset
2977
2978 A
2979 \begin_inset Formula $\downarrow$
2980 \end_inset
2981
2982 B
2983 \end_layout
2984
2985 \end_inset
2986 </cell>
2987 <cell alignment="center" valignment="top" bottomline="true" rightline="true" usebox="none">
2988 \begin_inset Text
2989
2990 \begin_layout Plain Layout
2991 \begin_inset Formula $\raisebox{5mm}{}\tbinom{A}{B}\raisebox{-2.5mm}{}$
2992 \end_inset
2993
2994
2995 \end_layout
2996
2997 \end_inset
2998 </cell>
2999 </row>
3000 <row>
3001 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
3002 \begin_inset Text
3003
3004 \begin_layout Plain Layout
3005
3006 \backslash
3007 brack
3008 \begin_inset ERT
3009 status collapsed
3010
3011 \begin_layout Plain Layout
3012
3013
3014 \backslash
3015 leer 
3016 \end_layout
3017
3018 \end_inset
3019
3020 A
3021 \begin_inset Formula $\downarrow$
3022 \end_inset
3023
3024 B
3025 \end_layout
3026
3027 \end_inset
3028 </cell>
3029 <cell alignment="center" valignment="top" topline="true" bottomline="true" rightline="true" usebox="none">
3030 \begin_inset Text
3031
3032 \begin_layout Plain Layout
3033 \begin_inset Formula $\raisebox{5mm}{}{A \brack B}\raisebox{-2.5mm}{}$
3034 \end_inset
3035
3036
3037 \end_layout
3038
3039 \end_inset
3040 </cell>
3041 </row>
3042 <row>
3043 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
3044 \begin_inset Text
3045
3046 \begin_layout Plain Layout
3047
3048 \backslash
3049 brace
3050 \begin_inset ERT
3051 status collapsed
3052
3053 \begin_layout Plain Layout
3054
3055
3056 \backslash
3057 leer 
3058 \end_layout
3059
3060 \end_inset
3061
3062 A
3063 \begin_inset Formula $\downarrow$
3064 \end_inset
3065
3066 B
3067 \end_layout
3068
3069 \end_inset
3070 </cell>
3071 <cell alignment="center" valignment="top" bottomline="true" rightline="true" usebox="none">
3072 \begin_inset Text
3073
3074 \begin_layout Plain Layout
3075 \begin_inset Formula $\raisebox{5mm}{}{A \brace B}\raisebox{-2.5mm}{}$
3076 \end_inset
3077
3078
3079 \end_layout
3080
3081 \end_inset
3082 </cell>
3083 </row>
3084 </lyxtabular>
3085
3086 \end_inset
3087
3088
3089 \end_layout
3090
3091 \begin_layout Subsection
3092 Fallunterscheidungen
3093 \begin_inset Index idx
3094 status collapsed
3095
3096 \begin_layout Plain Layout
3097 Fallunterscheidungen
3098 \end_layout
3099
3100 \end_inset
3101
3102
3103 \end_layout
3104
3105 \begin_layout Standard
3106 \align center
3107 \begin_inset Tabular
3108 <lyxtabular version="3" rows="3" columns="2">
3109 <features tabularvalignment="middle">
3110 <column alignment="center" valignment="top" width="0pt">
3111 <column alignment="center" valignment="top" width="0pt">
3112 <row>
3113 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
3114 \begin_inset Text
3115
3116 \begin_layout Plain Layout
3117 Befehl
3118 \end_layout
3119
3120 \end_inset
3121 </cell>
3122 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
3123 \begin_inset Text
3124
3125 \begin_layout Plain Layout
3126 Ergebnis
3127 \end_layout
3128
3129 \end_inset
3130 </cell>
3131 </row>
3132 <row>
3133 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3134 \begin_inset Text
3135
3136 \begin_layout Plain Layout
3137
3138 \backslash
3139 cases
3140 \begin_inset ERT
3141 status collapsed
3142
3143 \begin_layout Plain Layout
3144
3145
3146 \backslash
3147 leer 
3148 \end_layout
3149
3150 \end_inset
3151
3152 A
3153 \begin_inset Formula $\to$
3154 \end_inset
3155
3156 B>0
3157 \begin_inset Index idx
3158 status collapsed
3159
3160 \begin_layout Plain Layout
3161 Befehle ! C ! 
3162 \backslash
3163 cases
3164 \end_layout
3165
3166 \end_inset
3167
3168
3169 \end_layout
3170
3171 \end_inset
3172 </cell>
3173 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3174 \begin_inset Text
3175
3176 \begin_layout Plain Layout
3177 \begin_inset Formula $\begin{cases}
3178 A & B>0\end{cases}$
3179 \end_inset
3180
3181
3182 \end_layout
3183
3184 \end_inset
3185 </cell>
3186 </row>
3187 <row>
3188 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
3189 \begin_inset Text
3190
3191 \begin_layout Plain Layout
3192
3193 \backslash
3194 cases
3195 \begin_inset ERT
3196 status collapsed
3197
3198 \begin_layout Plain Layout
3199
3200
3201 \backslash
3202 leer 
3203 \end_layout
3204
3205 \end_inset
3206
3207 Strg+Enter
3208 \end_layout
3209
3210 \end_inset
3211 </cell>
3212 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
3213 \begin_inset Text
3214
3215 \begin_layout Plain Layout
3216 \begin_inset Formula $\begin{cases}
3217 A & \textrm{für }x>0\\
3218 B & \textrm{für }x=0
3219 \end{cases}$
3220 \end_inset
3221
3222
3223 \end_layout
3224
3225 \end_inset
3226 </cell>
3227 </row>
3228 </lyxtabular>
3229
3230 \end_inset
3231
3232
3233 \end_layout
3234
3235 \begin_layout Standard
3236 Nach der Eingabe von 
3237 \series bold
3238
3239 \backslash
3240 cases
3241 \series default
3242  oder der Benutzung des Mathe-Werkzeugleistenknopfs 
3243 \begin_inset Graphics
3244         filename ../../images/math/cases.png
3245         scale 85
3246
3247 \end_inset
3248
3249  können mit 
3250 \family sans
3251 Strg+Enter
3252 \family default
3253  oder dem Tabellen-Werkzeugleistenknopf 
3254 \begin_inset Graphics
3255         filename ../../images/tabular-feature_append-row.png
3256         scale 85
3257
3258 \end_inset
3259
3260  neue Zeilen erstellt werden.
3261 \begin_inset Foot
3262 status collapsed
3263
3264 \begin_layout Plain Layout
3265 Umlaute in Formeln, wie in obiger Tabelle, sind in 
3266 \begin_inset CommandInset ref
3267 LatexCommand ref
3268 reference "sub:Akzente-für-ein"
3269
3270 \end_inset
3271
3272  beschrieben.
3273 \end_layout
3274
3275 \end_inset
3276
3277
3278 \end_layout
3279
3280 \begin_layout Standard
3281 Der Befehl 
3282 \series bold
3283
3284 \backslash
3285 cases
3286 \series default
3287  ist auch über das Menü 
3288 \family sans
3289 Einfügen\SpecialChar \menuseparator
3290 Mathe\SpecialChar \menuseparator
3291 Cases-Umgebung
3292 \family default
3293  verfügbar.
3294 \end_layout
3295
3296 \begin_layout Subsection
3297 Verneinungen
3298 \begin_inset Index idx
3299 status collapsed
3300
3301 \begin_layout Plain Layout
3302 Verneinungen
3303 \end_layout
3304
3305 \end_inset
3306
3307
3308 \end_layout
3309
3310 \begin_layout Standard
3311 Durch die Eingabe von 
3312 \series bold
3313
3314 \backslash
3315 not
3316 \series default
3317
3318 \begin_inset Index idx
3319 status collapsed
3320
3321 \begin_layout Plain Layout
3322 Befehle ! N ! 
3323 \backslash
3324 not
3325 \end_layout
3326
3327 \end_inset
3328
3329  kann jedes beliebige Zeichen durchgestrichen dargestellt werden.
3330  Die Zeichen werden quasi mit einem Schrägstrich akzentuiert.
3331 \end_layout
3332
3333 \begin_layout Standard
3334 \align center
3335 \begin_inset Tabular
3336 <lyxtabular version="3" rows="4" columns="2">
3337 <features tabularvalignment="middle">
3338 <column alignment="center" valignment="top" width="0pt">
3339 <column alignment="center" valignment="top" width="0pt">
3340 <row>
3341 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
3342 \begin_inset Text
3343
3344 \begin_layout Plain Layout
3345 Befehl
3346 \end_layout
3347
3348 \end_inset
3349 </cell>
3350 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
3351 \begin_inset Text
3352
3353 \begin_layout Plain Layout
3354 Ergebnis
3355 \end_layout
3356
3357 \end_inset
3358 </cell>
3359 </row>
3360 <row>
3361 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3362 \begin_inset Text
3363
3364 \begin_layout Plain Layout
3365
3366 \backslash
3367 not=
3368 \end_layout
3369
3370 \end_inset
3371 </cell>
3372 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3373 \begin_inset Text
3374
3375 \begin_layout Plain Layout
3376 \begin_inset Formula $\not=$
3377 \end_inset
3378
3379
3380 \end_layout
3381
3382 \end_inset
3383 </cell>
3384 </row>
3385 <row>
3386 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
3387 \begin_inset Text
3388
3389 \begin_layout Plain Layout
3390
3391 \backslash
3392 not 
3393 \backslash
3394 le
3395 \end_layout
3396
3397 \end_inset
3398 </cell>
3399 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
3400 \begin_inset Text
3401
3402 \begin_layout Plain Layout
3403 \begin_inset Formula $\not\le$
3404 \end_inset
3405
3406
3407 \end_layout
3408
3409 \end_inset
3410 </cell>
3411 </row>
3412 <row>
3413 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
3414 \begin_inset Text
3415
3416 \begin_layout Plain Layout
3417
3418 \backslash
3419 not 
3420 \backslash
3421 parallel
3422 \end_layout
3423
3424 \end_inset
3425 </cell>
3426 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
3427 \begin_inset Text
3428
3429 \begin_layout Plain Layout
3430 \begin_inset Formula $\not\parallel$
3431 \end_inset
3432
3433
3434 \end_layout
3435
3436 \end_inset
3437 </cell>
3438 </row>
3439 </lyxtabular>
3440
3441 \end_inset
3442
3443
3444 \end_layout
3445
3446 \begin_layout Standard
3447 Das letzte Beispiel zeigt, dass nicht alle Verneinungen gut aussehen.
3448  Deswegen gibt es für Einige spezielle Befehle (siehe 
3449 \begin_inset CommandInset ref
3450 LatexCommand ref
3451 reference "sub:Mathematische-Symbole"
3452
3453 \end_inset
3454
3455  und 
3456 \begin_inset CommandInset ref
3457 LatexCommand ref
3458 reference "sec:Relationen"
3459
3460 \end_inset
3461
3462 ).
3463 \end_layout
3464
3465 \begin_layout Subsection
3466 Platzhalter
3467 \begin_inset CommandInset label
3468 LatexCommand label
3469 name "sub:Platzhalter"
3470
3471 \end_inset
3472
3473
3474 \begin_inset Index idx
3475 status collapsed
3476
3477 \begin_layout Plain Layout
3478 Platzhalter
3479 \end_layout
3480
3481 \end_inset
3482
3483
3484 \begin_inset Index idx
3485 status collapsed
3486
3487 \begin_layout Plain Layout
3488 chemische Zeichen ! Isotope
3489 \end_layout
3490
3491 \end_inset
3492
3493
3494 \begin_inset Index idx
3495 status collapsed
3496
3497 \begin_layout Plain Layout
3498 Isotope|see
3499 \begin_inset ERT
3500 status collapsed
3501
3502 \begin_layout Plain Layout
3503
3504 {
3505 \end_layout
3506
3507 \end_inset
3508
3509 chemische Zeichen
3510 \begin_inset ERT
3511 status collapsed
3512
3513 \begin_layout Plain Layout
3514
3515 }
3516 \end_layout
3517
3518 \end_inset
3519
3520
3521 \end_layout
3522
3523 \end_inset
3524
3525
3526 \end_layout
3527
3528 \begin_layout Standard
3529 Möchte man z.
3530 \begin_inset space \thinspace{}
3531 \end_inset
3532
3533 B.
3534  Isotope
3535 \begin_inset Foot
3536 status collapsed
3537
3538 \begin_layout Plain Layout
3539 Wie Isotope und chemische Reaktionen erstellt werden, ist in 
3540 \begin_inset CommandInset ref
3541 LatexCommand ref
3542 reference "sub:Chemische-Symbole-und"
3543
3544 \end_inset
3545
3546  beschrieben.
3547 \end_layout
3548
3549 \end_inset
3550
3551  darstellen, tritt folgendes Problem auf:
3552 \end_layout
3553
3554 \begin_layout Standard
3555 \align center
3556 \begin_inset Tabular
3557 <lyxtabular version="3" rows="2" columns="2">
3558 <features tabularvalignment="middle">
3559 <column alignment="center" valignment="top" width="0pt">
3560 <column alignment="center" valignment="top" width="0pt">
3561 <row>
3562 <cell alignment="center" valignment="top" usebox="none">
3563 \begin_inset Text
3564
3565 \begin_layout Plain Layout
3566 durch Hoch- und Tiefstellen erzeugte Indizes:
3567 \end_layout
3568
3569 \end_inset
3570 </cell>
3571 <cell alignment="center" valignment="top" usebox="none">
3572 \begin_inset Text
3573
3574 \begin_layout Plain Layout
3575 \begin_inset Formula $_{9}^{19}\mathrm{F}\raisebox{-3mm}{}$
3576 \end_inset
3577
3578
3579 \end_layout
3580
3581 \end_inset
3582 </cell>
3583 </row>
3584 <row>
3585 <cell alignment="center" valignment="top" usebox="none">
3586 \begin_inset Text
3587
3588 \begin_layout Plain Layout
3589 korrekte Indizes:
3590 \end_layout
3591
3592 \end_inset
3593 </cell>
3594 <cell alignment="center" valignment="top" usebox="none">
3595 \begin_inset Text
3596
3597 \begin_layout Plain Layout
3598 \begin_inset Formula $_{\phantom{1}9}^{19}\mathrm{F}$
3599 \end_inset
3600
3601
3602 \end_layout
3603
3604 \end_inset
3605 </cell>
3606 </row>
3607 </lyxtabular>
3608
3609 \end_inset
3610
3611
3612 \begin_inset Note Note
3613 status collapsed
3614
3615 \begin_layout Plain Layout
3616
3617 \series bold
3618
3619 \backslash
3620 raisebox
3621 \series default
3622  dient nur
3623 \end_layout
3624
3625 \begin_layout Plain Layout
3626 als Abstandhalter.
3627 \end_layout
3628
3629 \end_inset
3630
3631
3632 \end_layout
3633
3634 \begin_layout Standard
3635 Der kürzere Index wird standardmäßig unter oder über das erste Zeichen des
3636  längeren Index gesetzt.
3637  Um das zu verhindern gibt es den Befehl 
3638 \series bold
3639
3640 \backslash
3641 phantom
3642 \series default
3643
3644 \begin_inset Index idx
3645 status collapsed
3646
3647 \begin_layout Plain Layout
3648 Befehle ! P ! 
3649 \backslash
3650 phantom
3651 \end_layout
3652
3653 \end_inset
3654
3655  oder den Mathe-Werkzeugleistenknopf
3656 \begin_inset space \thinspace{}
3657 \end_inset
3658
3659
3660 \begin_inset Foot
3661 status collapsed
3662
3663 \begin_layout Plain Layout
3664 zu finden im Untermenü des Mathe-Werkzeugleistenknopfs 
3665 \begin_inset Graphics
3666         filename ../../images/math/space.png
3667         scale 85
3668
3669 \end_inset
3670
3671
3672 \end_layout
3673
3674 \end_inset
3675
3676  
3677 \begin_inset Graphics
3678         filename ../../images/math/phantom.png
3679         scale 85
3680
3681 \end_inset
3682
3683 , der ein oder mehrere Phantomzeichen erstellt.
3684  Wenn 
3685 \series bold
3686
3687 \backslash
3688 phantom
3689 \series default
3690  eingegeben wird, erscheint ein kleines blaues Kästchen, dass von zwei roten
3691  Pfeilen überlagert wird.
3692  Die Pfeile geben an, dass die komplette Breite und Höhe des Kästcheninhalts
3693  als Leerraum erstellt wird.
3694  Phantomzeichen sind dementsprechend Platzhalter mit der Größe der angegebenen
3695  Zeichen.
3696 \end_layout
3697
3698 \begin_layout Standard
3699 \align center
3700 \begin_inset Tabular
3701 <lyxtabular version="3" rows="4" columns="2">
3702 <features tabularvalignment="middle">
3703 <column alignment="center" valignment="top" width="0">
3704 <column alignment="center" valignment="top" width="0">
3705 <row>
3706 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
3707 \begin_inset Text
3708
3709 \begin_layout Plain Layout
3710 Befehl
3711 \end_layout
3712
3713 \end_inset
3714 </cell>
3715 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
3716 \begin_inset Text
3717
3718 \begin_layout Plain Layout
3719 Ergebnis
3720 \begin_inset Note Note
3721 status collapsed
3722
3723 \begin_layout Plain Layout
3724
3725 \series bold
3726
3727 \backslash
3728 raisebox
3729 \series default
3730  dient nur als Abstandhalter.
3731 \end_layout
3732
3733 \end_inset
3734
3735
3736 \end_layout
3737
3738 \end_inset
3739 </cell>
3740 </row>
3741 <row>
3742 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3743 \begin_inset Text
3744
3745 \begin_layout Plain Layout
3746 ^19
3747 \begin_inset ERT
3748 status collapsed
3749
3750 \begin_layout Plain Layout
3751
3752
3753 \backslash
3754 leer 
3755 \end_layout
3756
3757 \end_inset
3758
3759 _
3760 \backslash
3761 phantom
3762 \begin_inset ERT
3763 status collapsed
3764
3765 \begin_layout Plain Layout
3766
3767
3768 \backslash
3769 leer 
3770 \end_layout
3771
3772 \end_inset
3773
3774 1
3775 \begin_inset Formula $\to$
3776 \end_inset
3777
3778 9
3779 \begin_inset ERT
3780 status collapsed
3781
3782 \begin_layout Plain Layout
3783
3784
3785 \backslash
3786 leer 
3787 \end_layout
3788
3789 \end_inset
3790
3791 F
3792 \end_layout
3793
3794 \end_inset
3795 </cell>
3796 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3797 \begin_inset Text
3798
3799 \begin_layout Plain Layout
3800 \begin_inset Formula $\raisebox{4.5mm}{}{}_{\phantom{1}9}^{19}\mathrm{F}\raisebox{-2.5mm}{}$
3801 \end_inset
3802
3803
3804 \end_layout
3805
3806 \end_inset
3807 </cell>
3808 </row>
3809 <row>
3810 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
3811 \begin_inset Text
3812
3813 \begin_layout Plain Layout
3814 ^235
3815 \begin_inset ERT
3816 status collapsed
3817
3818 \begin_layout Plain Layout
3819
3820
3821 \backslash
3822 leer 
3823 \end_layout
3824
3825 \end_inset
3826
3827 _
3828 \backslash
3829 phantom
3830 \begin_inset ERT
3831 status collapsed
3832
3833 \begin_layout Plain Layout
3834
3835
3836 \backslash
3837 leer 
3838 \end_layout
3839
3840 \end_inset
3841
3842 23
3843 \begin_inset Formula $\to$
3844 \end_inset
3845
3846 9
3847 \begin_inset ERT
3848 status collapsed
3849
3850 \begin_layout Plain Layout
3851
3852
3853 \backslash
3854 leer 
3855 \end_layout
3856
3857 \end_inset
3858
3859 F
3860 \end_layout
3861
3862 \end_inset
3863 </cell>
3864 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
3865 \begin_inset Text
3866
3867 \begin_layout Plain Layout
3868 \begin_inset Formula $\raisebox{4.5mm}{}{}_{\phantom{23}9}^{235}\mathrm{F}\raisebox{-2.5mm}{}$
3869 \end_inset
3870
3871
3872 \end_layout
3873
3874 \end_inset
3875 </cell>
3876 </row>
3877 <row>
3878 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
3879 \begin_inset Text
3880
3881 \begin_layout Plain Layout
3882
3883 \backslash
3884 Lambda^
3885 \begin_inset ERT
3886 status collapsed
3887
3888 \begin_layout Plain Layout
3889
3890
3891 \backslash
3892 leer 
3893 \end_layout
3894
3895 \end_inset
3896
3897
3898 \backslash
3899 phantom
3900 \begin_inset ERT
3901 status collapsed
3902
3903 \begin_layout Plain Layout
3904
3905
3906 \backslash
3907 leer 
3908 \end_layout
3909
3910 \end_inset
3911
3912 ii
3913 \begin_inset Formula $\to$
3914 \end_inset
3915
3916 t
3917 \begin_inset ERT
3918 status collapsed
3919
3920 \begin_layout Plain Layout
3921
3922
3923 \backslash
3924 leer 
3925 \end_layout
3926
3927 \end_inset
3928
3929 _MMt
3930 \end_layout
3931
3932 \end_inset
3933 </cell>
3934 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
3935 \begin_inset Text
3936
3937 \begin_layout Plain Layout
3938 \begin_inset Formula $\raisebox{4.5mm}{}\Lambda_{MMt}^{\phantom{ii}t}\raisebox{-2.5mm}{}$
3939 \end_inset
3940
3941
3942 \end_layout
3943
3944 \end_inset
3945 </cell>
3946 </row>
3947 </lyxtabular>
3948
3949 \end_inset
3950
3951
3952 \end_layout
3953
3954 \begin_layout Standard
3955 Des Weiteren gibt es noch die Befehle 
3956 \series bold
3957
3958 \backslash
3959 vphantom
3960 \series default
3961
3962 \begin_inset Index idx
3963 status collapsed
3964
3965 \begin_layout Plain Layout
3966 Befehle ! V ! 
3967 \backslash
3968 vphantom
3969 \end_layout
3970
3971 \end_inset
3972
3973  (Werkzeugleistenknopf 
3974 \begin_inset space ~
3975 \end_inset
3976
3977
3978 \begin_inset Graphics
3979         filename ../../images/math/vphantom.png
3980         scale 85
3981
3982 \end_inset
3983
3984 ) und 
3985 \series bold
3986
3987 \backslash
3988 hphantom
3989 \series default
3990
3991 \begin_inset Index idx
3992 status collapsed
3993
3994 \begin_layout Plain Layout
3995 Befehle ! H ! 
3996 \backslash
3997 hphantom
3998 \end_layout
3999
4000 \end_inset
4001
4002  (Werkzeugleistenknopf 
4003 \begin_inset space ~
4004 \end_inset
4005
4006
4007 \begin_inset Graphics
4008         filename ../../images/math/hphantom.png
4009         scale 85
4010
4011 \end_inset
4012
4013 ).
4014  
4015 \series bold
4016
4017 \backslash
4018 hphantom
4019 \series default
4020  erzeugt nur Platz für die maximale Höhe der im Kästchen angegebenen Zeichen,
4021  nicht jedoch für deren Breite.
4022  Bei 
4023 \series bold
4024
4025 \backslash
4026 vphantom
4027 \series default
4028  wird nur Platz mit der Breite des Kästchens erstellt.
4029  Daher haben die Kästchen der beiden Befehle nur einen roten Pfeil.
4030 \end_layout
4031
4032 \begin_layout Standard
4033 Zum Beispiel erzeugt 
4034 \series bold
4035
4036 \backslash
4037 vphantom
4038 \series default
4039
4040 \begin_inset ERT
4041 status collapsed
4042
4043 \begin_layout Plain Layout
4044
4045
4046 \backslash
4047 leer 
4048 \end_layout
4049
4050 \end_inset
4051
4052
4053 \series bold
4054 a
4055 \backslash
4056 int
4057 \series default
4058  Platz der Höhe des Integralzeichens,
4059 \begin_inset Foot
4060 status collapsed
4061
4062 \begin_layout Plain Layout
4063 Der Befehl 
4064 \series bold
4065
4066 \backslash
4067 int
4068 \series default
4069  erzeugt ein Integralzeichen, siehe 
4070 \begin_inset CommandInset ref
4071 LatexCommand ref
4072 reference "sub:Große-Operatoren"
4073
4074 \end_inset
4075
4076 .
4077 \end_layout
4078
4079 \end_inset
4080
4081  da dieses das größere Zeichen ist.
4082  Eine Beispielanwendung ist in 
4083 \begin_inset CommandInset ref
4084 LatexCommand ref
4085 reference "sub:Mehrzeilige-Klammern"
4086
4087 \end_inset
4088
4089  zu finden.
4090 \end_layout
4091
4092 \begin_layout Standard
4093 Platzhalter können auch für Text verwendet werden, wenn sie über das Menü
4094  
4095 \family sans
4096 Einfügen\SpecialChar \menuseparator
4097 Formatierung\SpecialChar \menuseparator
4098 Phantom
4099 \family default
4100  eingefügt werden:
4101 \end_layout
4102
4103 \begin_layout Standard
4104 Dies ist ein Satz.
4105 \begin_inset Newline newline
4106 \end_inset
4107
4108
4109 \begin_inset Phantom Phantom
4110 status open
4111
4112 \begin_layout Plain Layout
4113 Dies
4114 \end_layout
4115
4116 \end_inset
4117
4118  ist ein Satz.
4119 \end_layout
4120
4121 \begin_layout Subsection
4122 Linien
4123 \begin_inset Index idx
4124 status collapsed
4125
4126 \begin_layout Plain Layout
4127 Linien
4128 \end_layout
4129
4130 \end_inset
4131
4132
4133 \begin_inset Index idx
4134 status collapsed
4135
4136 \begin_layout Plain Layout
4137 Formel ! unterstrichene
4138 \end_layout
4139
4140 \end_inset
4141
4142
4143 \end_layout
4144
4145 \begin_layout Standard
4146 \align center
4147 \begin_inset Tabular
4148 <lyxtabular version="3" rows="4" columns="2">
4149 <features tabularvalignment="middle">
4150 <column alignment="center" valignment="top" width="0pt">
4151 <column alignment="center" valignment="top" width="0pt">
4152 <row>
4153 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
4154 \begin_inset Text
4155
4156 \begin_layout Plain Layout
4157 Befehl
4158 \end_layout
4159
4160 \end_inset
4161 </cell>
4162 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
4163 \begin_inset Text
4164
4165 \begin_layout Plain Layout
4166 Ergebnis
4167 \begin_inset Note Note
4168 status collapsed
4169
4170 \begin_layout Plain Layout
4171
4172 \series bold
4173
4174 \backslash
4175 raisebox
4176 \series default
4177  dient nur als Abstandhalter.
4178 \end_layout
4179
4180 \end_inset
4181
4182
4183 \end_layout
4184
4185 \end_inset
4186 </cell>
4187 </row>
4188 <row>
4189 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
4190 \begin_inset Text
4191
4192 \begin_layout Plain Layout
4193
4194 \backslash
4195 overline
4196 \begin_inset ERT
4197 status collapsed
4198
4199 \begin_layout Plain Layout
4200
4201
4202 \backslash
4203 leer 
4204 \end_layout
4205
4206 \end_inset
4207
4208 A+B
4209 \begin_inset Index idx
4210 status collapsed
4211
4212 \begin_layout Plain Layout
4213 Befehle ! O ! 
4214 \backslash
4215 overline
4216 \end_layout
4217
4218 \end_inset
4219
4220
4221 \end_layout
4222
4223 \end_inset
4224 </cell>
4225 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
4226 \begin_inset Text
4227
4228 \begin_layout Plain Layout
4229 \begin_inset Formula $\raisebox{5mm}{}\overline{A+B}$
4230 \end_inset
4231
4232
4233 \end_layout
4234
4235 \end_inset
4236 </cell>
4237 </row>
4238 <row>
4239 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
4240 \begin_inset Text
4241
4242 \begin_layout Plain Layout
4243
4244 \backslash
4245 underline
4246 \begin_inset ERT
4247 status collapsed
4248
4249 \begin_layout Plain Layout
4250
4251
4252 \backslash
4253 leer 
4254 \end_layout
4255
4256 \end_inset
4257
4258 A+B
4259 \begin_inset Index idx
4260 status collapsed
4261
4262 \begin_layout Plain Layout
4263 Befehle ! U ! 
4264 \backslash
4265 underline
4266 \end_layout
4267
4268 \end_inset
4269
4270
4271 \end_layout
4272
4273 \end_inset
4274 </cell>
4275 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
4276 \begin_inset Text
4277
4278 \begin_layout Plain Layout
4279 \begin_inset Formula $\underline{A+B}\raisebox{-2.5mm}{}$
4280 \end_inset
4281
4282
4283 \end_layout
4284
4285 \end_inset
4286 </cell>
4287 </row>
4288 <row>
4289 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
4290 \begin_inset Text
4291
4292 \begin_layout Plain Layout
4293
4294 \backslash
4295 overline
4296 \begin_inset ERT
4297 status collapsed
4298
4299 \begin_layout Plain Layout
4300
4301
4302 \backslash
4303 leer 
4304 \end_layout
4305
4306 \end_inset
4307
4308
4309 \backslash
4310 underline
4311 \begin_inset ERT
4312 status collapsed
4313
4314 \begin_layout Plain Layout
4315
4316
4317 \backslash
4318 leer 
4319 \end_layout
4320
4321 \end_inset
4322
4323 A+B
4324 \end_layout
4325
4326 \end_inset
4327 </cell>
4328 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
4329 \begin_inset Text
4330
4331 \begin_layout Plain Layout
4332 \begin_inset Formula $\raisebox{5mm}{}\overline{\underline{A+B}}\raisebox{-2.5mm}{}$
4333 \end_inset
4334
4335
4336 \end_layout
4337
4338 \end_inset
4339 </cell>
4340 </row>
4341 </lyxtabular>
4342
4343 \end_inset
4344
4345
4346 \end_layout
4347
4348 \begin_layout Standard
4349 Beim letzten Beispiel spielt es keine Rolle, ob man zuerst 
4350 \series bold
4351
4352 \backslash
4353 overline
4354 \series default
4355  oder 
4356 \series bold
4357
4358 \backslash
4359 underline
4360 \series default
4361  eingibt.
4362 \end_layout
4363
4364 \begin_layout Standard
4365 Will man Ergebnisse doppelt unterstreichen, verwendet man zweimal hintereinander
4366 \begin_inset Newline linebreak
4367 \end_inset
4368
4369
4370 \series bold
4371
4372 \backslash
4373 underline
4374 \series default
4375 .
4376 \end_layout
4377
4378 \begin_layout Standard
4379 Man kann bis zu 6 Striche über oder unter Zeichen setzen.
4380 \end_layout
4381
4382 \begin_layout Standard
4383 \begin_inset VSpace bigskip
4384 \end_inset
4385
4386 Benutzerdefinierte Linien können mit dem Befehl 
4387 \series bold
4388
4389 \backslash
4390 rule
4391 \series default
4392
4393 \begin_inset Index idx
4394 status collapsed
4395
4396 \begin_layout Plain Layout
4397 Befehle! R ! 
4398 \backslash
4399 rule
4400 \end_layout
4401
4402 \end_inset
4403
4404  erstellt werden, der folgendes Schema besitzt:
4405 \end_layout
4406
4407 \begin_layout Standard
4408
4409 \series bold
4410
4411 \backslash
4412 rule[vertikaler Versatz]{Länge}{Dicke}
4413 \end_layout
4414
4415 \begin_layout Standard
4416 Der optionale vertikale Versatz verschiebt die Linie nach oben (oder nach
4417  unten, wenn der Wert negativ ist).
4418  Die Einheiten, die in 
4419 \begin_inset CommandInset ref
4420 LatexCommand ref
4421 reference "tab:Verfügbare-Einheiten"
4422
4423 \end_inset
4424
4425  aufgelistet sind, können für die Werte benutzt werden.
4426  Hier sind zwei Beispiele, die mit den Befehlen
4427 \begin_inset Newline newline
4428 \end_inset
4429
4430
4431 \series bold
4432
4433 \backslash
4434 rule[-2ex]{3cm}{2pt}
4435 \series default
4436  und 
4437 \series bold
4438
4439 \backslash
4440 rule{2cm}{1pt}
4441 \series default
4442  erzeugt wurden:
4443 \end_layout
4444
4445 \begin_layout Standard
4446 Dies ist ein Satz 
4447 \begin_inset Formula $\rule[-2ex]{3cm}{2pt}\rule{2cm}{1pt}$
4448 \end_inset
4449
4450  mit zwei Linien.
4451 \end_layout
4452
4453 \begin_layout Standard
4454
4455 \series bold
4456
4457 \backslash
4458 rule
4459 \series default
4460  kann auch für Text verwendet werden, wenn eine Linie über das Menü 
4461 \family sans
4462 Einfügen\SpecialChar \menuseparator
4463 Formatierung\SpecialChar \menuseparator
4464 Horizontale
4465 \begin_inset space ~
4466 \end_inset
4467
4468 Line
4469 \family default
4470  eingefügt wird:
4471 \end_layout
4472
4473 \begin_layout Standard
4474 Dies ist ein Satz 
4475 \begin_inset CommandInset line
4476 LatexCommand rule
4477 offset "0.5ex"
4478 width "3cm"
4479 height "1pt"
4480
4481 \end_inset
4482
4483  mit einer Linie.
4484 \end_layout
4485
4486 \begin_layout Subsection
4487 Fortsetzungspunkte
4488 \begin_inset CommandInset label
4489 LatexCommand label
4490 name "sub:Fortsetzungspunkte"
4491
4492 \end_inset
4493
4494
4495 \begin_inset Index idx
4496 status collapsed
4497
4498 \begin_layout Plain Layout
4499 Fortsetzungspunkte
4500 \end_layout
4501
4502 \end_inset
4503
4504
4505 \end_layout
4506
4507 \begin_layout Standard
4508 Es gibt unterschiedliche Arten von Fortsetzungspunkten.
4509 \begin_inset Foot
4510 status collapsed
4511
4512 \begin_layout Plain Layout
4513 In der Mathe-Werkzeugleiste zu finden im Untermenü des Knopfs 
4514 \begin_inset Graphics
4515         filename ../../images/math/ldots.png
4516         scale 85
4517
4518 \end_inset
4519
4520
4521 \end_layout
4522
4523 \end_inset
4524
4525  Für Aufzählungen verwendet man unten sitzende Punkte (
4526 \series bold
4527
4528 \backslash
4529 ldots
4530 \series default
4531
4532 \begin_inset Index idx
4533 status collapsed
4534
4535 \begin_layout Plain Layout
4536 Befehle ! L ! 
4537 \backslash
4538 ldots
4539 \end_layout
4540
4541 \end_inset
4542
4543 ), während man für Operationen Punkte braucht, die auf der selben Höhe wie
4544  die Operatoren sind (
4545 \series bold
4546
4547 \backslash
4548 cdots
4549 \series default
4550
4551 \begin_inset Index idx
4552 status collapsed
4553
4554 \begin_layout Plain Layout
4555 Befehle ! C ! 
4556 \backslash
4557 cdots
4558 \end_layout
4559
4560 \end_inset
4561
4562 ).
4563  Verwendet man den Befehl 
4564 \series bold
4565
4566 \backslash
4567 dots
4568 \series default
4569
4570 \begin_inset Index idx
4571 status collapsed
4572
4573 \begin_layout Plain Layout
4574 Befehle ! D ! 
4575 \backslash
4576 dots
4577 \end_layout
4578
4579 \end_inset
4580
4581 , entscheidet LaTeX anhand des nachfolgenden Zeichens, welche Punktart verwendet
4582  wird.
4583 \end_layout
4584
4585 \begin_layout Standard
4586 \align center
4587 \begin_inset Tabular
4588 <lyxtabular version="3" rows="9" columns="2">
4589 <features tabularvalignment="middle">
4590 <column alignment="center" valignment="top" width="0pt">
4591 <column alignment="center" valignment="top" width="0pt">
4592 <row>
4593 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
4594 \begin_inset Text
4595
4596 \begin_layout Plain Layout
4597 Befehl
4598 \end_layout
4599
4600 \end_inset
4601 </cell>
4602 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
4603 \begin_inset Text
4604
4605 \begin_layout Plain Layout
4606 Ergebnis
4607 \end_layout
4608
4609 \end_inset
4610 </cell>
4611 </row>
4612 <row>
4613 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4614 \begin_inset Text
4615
4616 \begin_layout Plain Layout
4617 A_1
4618 \begin_inset ERT
4619 status collapsed
4620
4621 \begin_layout Plain Layout
4622
4623
4624 \backslash
4625 leer 
4626 \end_layout
4627
4628 \end_inset
4629
4630 ,
4631 \backslash
4632 dots
4633 \begin_inset ERT
4634 status collapsed
4635
4636 \begin_layout Plain Layout
4637
4638
4639 \backslash
4640 leer 
4641 \end_layout
4642
4643 \end_inset
4644
4645 ,A_n
4646 \end_layout
4647
4648 \end_inset
4649 </cell>
4650 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4651 \begin_inset Text
4652
4653 \begin_layout Plain Layout
4654 \begin_inset Formula $A_{1},\dots,A_{n}$
4655 \end_inset
4656
4657
4658 \end_layout
4659
4660 \end_inset
4661 </cell>
4662 </row>
4663 <row>
4664 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4665 \begin_inset Text
4666
4667 \begin_layout Plain Layout
4668 A_1
4669 \begin_inset ERT
4670 status collapsed
4671
4672 \begin_layout Plain Layout
4673
4674
4675 \backslash
4676 leer 
4677 \end_layout
4678
4679 \end_inset
4680
4681 +
4682 \backslash
4683 dots
4684 \begin_inset ERT
4685 status collapsed
4686
4687 \begin_layout Plain Layout
4688
4689
4690 \backslash
4691 leer 
4692 \end_layout
4693
4694 \end_inset
4695
4696 +A_n
4697 \end_layout
4698
4699 \end_inset
4700 </cell>
4701 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4702 \begin_inset Text
4703
4704 \begin_layout Plain Layout
4705 \begin_inset Formula $A_{1}+\dots+A_{n}$
4706 \end_inset
4707
4708
4709 \end_layout
4710
4711 \end_inset
4712 </cell>
4713 </row>
4714 <row>
4715 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4716 \begin_inset Text
4717
4718 \begin_layout Plain Layout
4719 A_1
4720 \begin_inset ERT
4721 status collapsed
4722
4723 \begin_layout Plain Layout
4724
4725
4726 \backslash
4727 leer 
4728 \end_layout
4729
4730 \end_inset
4731
4732 ,
4733 \backslash
4734 ldots
4735 \begin_inset ERT
4736 status collapsed
4737
4738 \begin_layout Plain Layout
4739
4740
4741 \backslash
4742 leer 
4743 \end_layout
4744
4745 \end_inset
4746
4747 ,A_n
4748 \end_layout
4749
4750 \end_inset
4751 </cell>
4752 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4753 \begin_inset Text
4754
4755 \begin_layout Plain Layout
4756 \begin_inset Formula $A_{1},\ldots,A_{n}$
4757 \end_inset
4758
4759
4760 \end_layout
4761
4762 \end_inset
4763 </cell>
4764 </row>
4765 <row>
4766 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
4767 \begin_inset Text
4768
4769 \begin_layout Plain Layout
4770 A_1
4771 \begin_inset ERT
4772 status collapsed
4773
4774 \begin_layout Plain Layout
4775
4776
4777 \backslash
4778 leer 
4779 \end_layout
4780
4781 \end_inset
4782
4783 +
4784 \backslash
4785 cdots
4786 \begin_inset ERT
4787 status collapsed
4788
4789 \begin_layout Plain Layout
4790
4791
4792 \backslash
4793 leer 
4794 \end_layout
4795
4796 \end_inset
4797
4798 +A_n
4799 \end_layout
4800
4801 \end_inset
4802 </cell>
4803 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
4804 \begin_inset Text
4805
4806 \begin_layout Plain Layout
4807 \begin_inset Formula $A_{1}+\cdots+A_{n}$
4808 \end_inset
4809
4810
4811 \end_layout
4812
4813 \end_inset
4814 </cell>
4815 </row>
4816 <row>
4817 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4818 \begin_inset Text
4819
4820 \begin_layout Plain Layout
4821
4822 \backslash
4823 vdots
4824 \end_layout
4825
4826 \end_inset
4827 </cell>
4828 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4829 \begin_inset Text
4830
4831 \begin_layout Plain Layout
4832 \begin_inset Formula $\vdots$
4833 \end_inset
4834
4835
4836 \end_layout
4837
4838 \end_inset
4839 </cell>
4840 </row>
4841 <row>
4842 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4843 \begin_inset Text
4844
4845 \begin_layout Plain Layout
4846
4847 \backslash
4848 ddots
4849 \end_layout
4850
4851 \end_inset
4852 </cell>
4853 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4854 \begin_inset Text
4855
4856 \begin_layout Plain Layout
4857 \begin_inset Formula $\ddots$
4858 \end_inset
4859
4860
4861 \end_layout
4862
4863 \end_inset
4864 </cell>
4865 </row>
4866 <row>
4867 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
4868 \begin_inset Text
4869
4870 \begin_layout Plain Layout
4871
4872 \backslash
4873 iddots
4874 \end_layout
4875
4876 \end_inset
4877 </cell>
4878 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
4879 \begin_inset Text
4880
4881 \begin_layout Plain Layout
4882 \begin_inset Formula $\iddots$
4883 \end_inset
4884
4885
4886 \end_layout
4887
4888 \end_inset
4889 </cell>
4890 </row>
4891 <row>
4892 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
4893 \begin_inset Text
4894
4895 \begin_layout Plain Layout
4896 3
4897 \series bold
4898 ×
4899 \series default
4900 3
4901 \begin_inset space \thinspace{}
4902 \end_inset
4903
4904 Matrix mit obigen Befehlen
4905 \end_layout
4906
4907 \end_inset
4908 </cell>
4909 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
4910 \begin_inset Text
4911
4912 \begin_layout Plain Layout
4913 \begin_inset Formula $\begin{array}{ccc}
4914 A_{11} & \cdots & A_{1m}\\
4915 \vdots & \ddots & \vdots\\
4916 A_{n1} & \cdots & A_{nm}
4917 \end{array}$
4918 \end_inset
4919
4920
4921 \end_layout
4922
4923 \end_inset
4924 </cell>
4925 </row>
4926 </lyxtabular>
4927
4928 \end_inset
4929
4930
4931 \end_layout
4932
4933 \begin_layout Standard
4934 Die im Menü 
4935 \family sans
4936 Einfügen\SpecialChar \menuseparator
4937 Sonderzeichen
4938 \family default
4939  verfügbaren Fortsetzungspunkte sind 
4940 \series bold
4941
4942 \backslash
4943 ldots
4944 \series default
4945 .
4946 \end_layout
4947
4948 \begin_layout Standard
4949 \begin_inset VSpace medskip
4950 \end_inset
4951
4952 Um 
4953 \series bold
4954
4955 \backslash
4956 iddots
4957 \series default
4958  nutzen zu können, muss eine der Optionen 
4959 \family sans
4960 Mathdots Paket (automatisch) verwenden 
4961 \family default
4962 in den Dokumenteinstellungen unter 
4963 \family sans
4964 Mathe-Optionen
4965 \family default
4966  gewählt sein.
4967 \begin_inset Newline newline
4968 \end_inset
4969
4970 Die Option 
4971 \family sans
4972 Mathdots Paket verwenden
4973 \family default
4974  verbessert das Aussehen aller Fortsetzungspunkte des Dokuments wenn deren
4975  Schriftstil oder die Schriftgröße nicht Standard sind.
4976 \end_layout
4977
4978 \begin_layout Standard
4979 \begin_inset VSpace medskip
4980 \end_inset
4981
4982 Speziell für Matrizen gibt es Fortsetzungspunkte, die sich über mehrere
4983  Spalten erstrecken.
4984  Man erhält sie mit dem Befehl 
4985 \series bold
4986
4987 \backslash
4988 hdotsfor
4989 \series default
4990
4991 \begin_inset Index idx
4992 status collapsed
4993
4994 \begin_layout Plain Layout
4995 Befehle ! H ! 
4996 \backslash
4997 hdotsfor
4998 \end_layout
4999
5000 \end_inset
5001
5002 , der folgendes Schema besitzt:
5003 \end_layout
5004
5005 \begin_layout Standard
5006
5007 \series bold
5008
5009 \backslash
5010 hdotsfor[Abstand]{Anzahl der Spalten}
5011 \end_layout
5012
5013 \begin_layout Standard
5014 Anzahl der Spalten gibt an, über wie viele Spalten sich die Punkte erstrecken
5015  sollen.
5016  Abstand ist ein Faktor, der den Punktabstand festlegt.
5017 \end_layout
5018
5019 \begin_layout Standard
5020 In folgender Matrix wurde in das erste Kästchen der zweiten Zeile der Befehl
5021  
5022 \series bold
5023
5024 \backslash
5025 hdotsfor[2]{4}
5026 \series default
5027  eingegeben, um Fortsetzungspunkte mit doppelt so großem Punktabstand wie
5028  beim Befehl 
5029 \series bold
5030
5031 \backslash
5032 dots
5033 \series default
5034  zu erhalten:
5035 \begin_inset Formula 
5036 \[
5037 \left(\begin{array}{cccc}
5038 A & B & C & D\\
5039 \hdotsfor[2]{4}\\
5040 q & w & e & r
5041 \end{array}\right)
5042 \]
5043
5044 \end_inset
5045
5046 Es ist zu beachten, dass die Matrixfelder über die sich die Punkte erstrecken
5047  sollen leer sein müssen, ansonsten kommt es zu LaTeX-Fehlern.
5048 \end_layout
5049
5050 \begin_layout Standard
5051 \begin_inset VSpace bigskip
5052 \end_inset
5053
5054 Des Weiteren kann man mit dem Befehl 
5055 \series bold
5056
5057 \backslash
5058 dotfill
5059 \series default
5060
5061 \begin_inset Index idx
5062 status collapsed
5063
5064 \begin_layout Plain Layout
5065 Befehle ! D ! 
5066 \backslash
5067 dotfill
5068 \end_layout
5069
5070 \end_inset
5071
5072  den Rest einer Zeile mit Punkten füllen.
5073  Die Wirkungsweise des Befehls entspricht der von 
5074 \series bold
5075
5076 \backslash
5077 hfill
5078 \series default
5079 , siehe 
5080 \begin_inset CommandInset ref
5081 LatexCommand ref
5082 reference "sub:Variabler-Leerraum"
5083
5084 \end_inset
5085
5086 .
5087 \end_layout
5088
5089 \begin_layout Standard
5090 Z.
5091 \begin_inset space \thinspace{}
5092 \end_inset
5093
5094 B.
5095  ergibt der Befehl 
5096 \series bold
5097 A
5098 \backslash
5099 dotfill
5100 \begin_inset ERT
5101 status collapsed
5102
5103 \begin_layout Plain Layout
5104
5105
5106 \backslash
5107 leer 
5108 \end_layout
5109
5110 \end_inset
5111
5112 B
5113 \end_layout
5114
5115 \begin_layout Standard
5116 \begin_inset Formula $A\dotfill B$
5117 \end_inset
5118
5119
5120 \end_layout
5121
5122 \begin_layout Standard
5123 Analog dazu gibt es für eine Linie den Befehl 
5124 \series bold
5125
5126 \backslash
5127 hrulefill
5128 \series default
5129
5130 \begin_inset Index idx
5131 status collapsed
5132
5133 \begin_layout Plain Layout
5134 Befehle ! H ! 
5135 \backslash
5136 hrulefill
5137 \end_layout
5138
5139 \end_inset
5140
5141 :
5142 \end_layout
5143
5144 \begin_layout Standard
5145 \begin_inset Formula $A\hrulefill B$
5146 \end_inset
5147
5148
5149 \end_layout
5150
5151 \begin_layout Standard
5152 Um die Befehle für Text zu verwenden, müssen sie im TeX-Modus eingegeben
5153  werden.
5154 \end_layout
5155
5156 \begin_layout Section
5157 Matrizen
5158 \begin_inset CommandInset label
5159 LatexCommand label
5160 name "sec:Matrizen"
5161
5162 \end_inset
5163
5164
5165 \begin_inset Index idx
5166 status collapsed
5167
5168 \begin_layout Plain Layout
5169 Matrizen
5170 \end_layout
5171
5172 \end_inset
5173
5174
5175 \end_layout
5176
5177 \begin_layout Standard
5178 Matrizen können über den Mathe-Werkzeugleistenknopf
5179 \family sans
5180  
5181 \family default
5182
5183 \begin_inset Graphics
5184         filename ../../images/dialog-show_mathmatrix.png
5185         scale 85
5186
5187 \end_inset
5188
5189  oder das Menü 
5190 \family sans
5191 Einfügen\SpecialChar \menuseparator
5192 Mathe\SpecialChar \menuseparator
5193 Matrix
5194 \family default
5195  eingefügt werden.
5196  Sie werden nach der Spalten- und Zeilenanzahl, der Ausrichtung und der
5197  Verzierung gefragt.
5198  Die vertikale Ausrichtung ist dabei nur bei Matrizen in eingebetteten Formeln
5199  von Bedeutung:
5200 \end_layout
5201
5202 \begin_layout Standard
5203 Die erste Matrix ist oben 
5204 \begin_inset Formula $\begin{array}[t]{cccc}
5205 A & D & G & J\\
5206 B & E & H & K\\
5207 C & F & I & L
5208 \end{array}$
5209 \end_inset
5210
5211 , die zweite mittig 
5212 \begin_inset Formula $\begin{array}{cccc}
5213 A & D & G & J\\
5214 B & E & H & K\\
5215 C & F & I & L
5216 \end{array}$
5217 \end_inset
5218
5219  und die dritte unten 
5220 \begin_inset Formula $\begin{array}[b]{cccc}
5221 A & D & G & J\\
5222 B & E & H & K\\
5223 C & F & I & L
5224 \end{array}$
5225 \end_inset
5226
5227  ausgerichtet.
5228 \end_layout
5229
5230 \begin_layout Standard
5231 Die horizontale Ausrichtung gibt an, wie die Spalteneinträge ausgerichtet
5232  werden sollen.
5233  Dazu wird für jede Spalte ein Buchstabe eingegeben.
5234  
5235 \emph on
5236 l
5237 \emph default
5238  steht für linksbündig, 
5239 \emph on
5240 c
5241 \emph default
5242  für mittig und 
5243 \emph on
5244 r
5245 \emph default
5246  für rechtsbündig.
5247  Möchte man z.
5248 \begin_inset space \thinspace{}
5249 \end_inset
5250
5251 B.
5252  eine 4
5253 \series bold
5254 ×
5255 \series default
5256 4
5257 \begin_inset space ~
5258 \end_inset
5259
5260 Matrix erstellen, bei der der Inhalt der ersten Spalte linksbündig, der
5261  Inhalt der zweiten und dritten mittig und der Inhalt der letzten rechtsbündig
5262  ausgerichtet ist, gibt man für die horizontale Ausrichtung 
5263 \series bold
5264 lccr
5265 \series default
5266  an.
5267  Normalerweise sind in einer Matrix alle Spalteninhalte zentriert, weswegen
5268  die Voreinstellung für jede Spalte ein 
5269 \series bold
5270 c
5271 \series default
5272  ist.
5273 \end_layout
5274
5275 \begin_layout Standard
5276 Horizontale Ausrichtung:
5277 \end_layout
5278
5279 \begin_layout Standard
5280
5281 \series bold
5282 lll
5283 \series default
5284  : 
5285 \begin_inset Formula $\begin{array}{lll}
5286 10000 & D & G\\
5287 B & 10000 & H\\
5288 C & F & 10000
5289 \end{array}$
5290 \end_inset
5291
5292  , 
5293 \series bold
5294 ccc
5295 \series default
5296  : 
5297 \begin_inset Formula $\begin{array}{ccc}
5298 10000 & D & G\\
5299 B & 10000 & H\\
5300 C & F & 10000
5301 \end{array}$
5302 \end_inset
5303
5304  , 
5305 \series bold
5306 rrr
5307 \series default
5308  : 
5309 \begin_inset Formula $\begin{array}{rrr}
5310 10000 & D & G\\
5311 B & 10000 & H\\
5312 C & F & 10000
5313 \end{array}$
5314 \end_inset
5315
5316
5317 \end_layout
5318
5319 \begin_layout Standard
5320 Um nachträglich Zeilen und Spalten hinzuzufügen oder zu entfernen, kann
5321  man die Mathe-Werkzeugleistenknöpfe 
5322 \begin_inset Graphics
5323         filename ../../images/tabular-feature_append-row.png
5324         scale 85
5325
5326 \end_inset
5327
5328
5329 \begin_inset Graphics
5330         filename ../../images/tabular-feature_delete-row.png
5331         scale 85
5332
5333 \end_inset
5334
5335 , usw.
5336 \begin_inset space \space{}
5337 \end_inset
5338
5339 oder das Menü 
5340 \family sans
5341 Bearbeiten\SpecialChar \menuseparator
5342 Zeilen & Spalten
5343 \family default
5344  verwenden.
5345  Neue Zeilen können auch mit 
5346 \family sans
5347 Strg+Enter
5348 \family default
5349  erstellt werden.
5350 \end_layout
5351
5352 \begin_layout Standard
5353 \begin_inset VSpace bigskip
5354 \end_inset
5355
5356 Die 
5357 \family sans
5358 Verzierung
5359 \family default
5360  fügt Klammern um die Matrix in der ausgewählten Art hinzu.
5361  Alternativ können Klammern entweder mit den Befehlen 
5362 \series bold
5363
5364 \backslash
5365 left
5366 \series default
5367
5368 \begin_inset Index idx
5369 status collapsed
5370
5371 \begin_layout Plain Layout
5372 Befehle ! L ! 
5373 \backslash
5374 left
5375 \end_layout
5376
5377 \end_inset
5378
5379  und 
5380 \series bold
5381
5382 \backslash
5383 right
5384 \series default
5385
5386 \begin_inset Index idx
5387 status collapsed
5388
5389 \begin_layout Plain Layout
5390 Befehle ! R ! 
5391 \backslash
5392 right
5393 \end_layout
5394
5395 \end_inset
5396
5397  erstellt werden (Tastenkürzel 
5398 \family sans
5399 Alt+M
5400 \begin_inset space ~
5401 \end_inset
5402
5403 Klammer
5404 \family default
5405 ), siehe 
5406 \begin_inset CommandInset ref
5407 LatexCommand ref
5408 reference "sub:Automatische-Klammergrößen"
5409
5410 \end_inset
5411
5412 , oder man verwendet folgende Befehle:
5413 \begin_inset VSpace bigskip
5414 \end_inset
5415
5416
5417 \end_layout
5418
5419 \begin_layout Standard
5420 \begin_inset space \hfill{}
5421 \end_inset
5422
5423
5424 \begin_inset Tabular
5425 <lyxtabular version="3" rows="4" columns="2">
5426 <features tabularvalignment="middle">
5427 <column alignment="center" valignment="top" width="0">
5428 <column alignment="center" valignment="top" width="0">
5429 <row>
5430 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
5431 \begin_inset Text
5432
5433 \begin_layout Plain Layout
5434 Befehl
5435 \end_layout
5436
5437 \end_inset
5438 </cell>
5439 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
5440 \begin_inset Text
5441
5442 \begin_layout Plain Layout
5443 Ergebnis
5444 \end_layout
5445
5446 \end_inset
5447 </cell>
5448 </row>
5449 <row>
5450 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5451 \begin_inset Text
5452
5453 \begin_layout Plain Layout
5454
5455 \backslash
5456 bmatrix
5457 \begin_inset ERT
5458 status collapsed
5459
5460 \begin_layout Plain Layout
5461
5462
5463 \backslash
5464 leer 
5465 \end_layout
5466
5467 \end_inset
5468
5469 2
5470 \series bold
5471 ×
5472 \series default
5473 2
5474 \begin_inset space \thinspace{}
5475 \end_inset
5476
5477 Matrix
5478 \end_layout
5479
5480 \end_inset
5481 </cell>
5482 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5483 \begin_inset Text
5484
5485 \begin_layout Plain Layout
5486 \begin_inset Formula $\raisebox{7.5mm}{}\begin{bmatrix}\begin{array}{cc}
5487 0 & \textrm{-}\mathrm{i}\\
5488 \mathrm{i} & 0
5489 \end{array}\end{bmatrix}\raisebox{-5.3mm}{}$
5490 \end_inset
5491
5492
5493 \end_layout
5494
5495 \end_inset
5496 </cell>
5497 </row>
5498 <row>
5499 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5500 \begin_inset Text
5501
5502 \begin_layout Plain Layout
5503
5504 \backslash
5505 Bmatrix
5506 \begin_inset ERT
5507 status collapsed
5508
5509 \begin_layout Plain Layout
5510
5511
5512 \backslash
5513 leer 
5514 \end_layout
5515
5516 \end_inset
5517
5518 2
5519 \series bold
5520 ×
5521 \series default
5522 2
5523 \begin_inset space \thinspace{}
5524 \end_inset
5525
5526 Matrix
5527 \end_layout
5528
5529 \end_inset
5530 </cell>
5531 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5532 \begin_inset Text
5533
5534 \begin_layout Plain Layout
5535 \begin_inset Formula $\raisebox{7.5mm}{}\begin{Bmatrix}\begin{array}{cc}
5536 0 & \textrm{-}\mathrm{i}\\
5537 \mathrm{i} & 0
5538 \end{array}\end{Bmatrix}\raisebox{-5.3mm}{}$
5539 \end_inset
5540
5541
5542 \end_layout
5543
5544 \end_inset
5545 </cell>
5546 </row>
5547 <row>
5548 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
5549 \begin_inset Text
5550
5551 \begin_layout Plain Layout
5552
5553 \backslash
5554 pmatrix
5555 \begin_inset ERT
5556 status collapsed
5557
5558 \begin_layout Plain Layout
5559
5560
5561 \backslash
5562 leer 
5563 \end_layout
5564
5565 \end_inset
5566
5567 2
5568 \series bold
5569 ×
5570 \series default
5571 2
5572 \begin_inset space \thinspace{}
5573 \end_inset
5574
5575 Matrix
5576 \end_layout
5577
5578 \end_inset
5579 </cell>
5580 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
5581 \begin_inset Text
5582
5583 \begin_layout Plain Layout
5584 \begin_inset Formula $\raisebox{7.5mm}{}\begin{pmatrix}\begin{array}{cc}
5585 0 & \textrm{-}\mathrm{i}\\
5586 \mathrm{i} & 0
5587 \end{array}\end{pmatrix}\raisebox{-5.3mm}{}$
5588 \end_inset
5589
5590
5591 \end_layout
5592
5593 \end_inset
5594 </cell>
5595 </row>
5596 </lyxtabular>
5597
5598 \end_inset
5599
5600
5601 \begin_inset space \hfill{}
5602 \end_inset
5603
5604
5605 \begin_inset Tabular
5606 <lyxtabular version="3" rows="4" columns="2">
5607 <features tabularvalignment="middle">
5608 <column alignment="center" valignment="top" width="0">
5609 <column alignment="center" valignment="top" width="0">
5610 <row>
5611 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
5612 \begin_inset Text
5613
5614 \begin_layout Plain Layout
5615 Befehl
5616 \end_layout
5617
5618 \end_inset
5619 </cell>
5620 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
5621 \begin_inset Text
5622
5623 \begin_layout Plain Layout
5624 Ergebnis
5625 \end_layout
5626
5627 \end_inset
5628 </cell>
5629 </row>
5630 <row>
5631 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5632 \begin_inset Text
5633
5634 \begin_layout Plain Layout
5635
5636 \backslash
5637 vmatrix
5638 \begin_inset ERT
5639 status collapsed
5640
5641 \begin_layout Plain Layout
5642
5643
5644 \backslash
5645 leer 
5646 \end_layout
5647
5648 \end_inset
5649
5650 2
5651 \series bold
5652 ×
5653 \series default
5654 2
5655 \begin_inset space \thinspace{}
5656 \end_inset
5657
5658 Matrix
5659 \end_layout
5660
5661 \end_inset
5662 </cell>
5663 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5664 \begin_inset Text
5665
5666 \begin_layout Plain Layout
5667 \begin_inset Formula $\raisebox{7.5mm}{}\begin{vmatrix}\begin{array}{cc}
5668 0 & \textrm{-}\mathrm{i}\\
5669 \mathrm{i} & 0
5670 \end{array}\end{vmatrix}\raisebox{-5.3mm}{}$
5671 \end_inset
5672
5673
5674 \end_layout
5675
5676 \end_inset
5677 </cell>
5678 </row>
5679 <row>
5680 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
5681 \begin_inset Text
5682
5683 \begin_layout Plain Layout
5684
5685 \backslash
5686 Vmatrix
5687 \begin_inset ERT
5688 status collapsed
5689
5690 \begin_layout Plain Layout
5691
5692
5693 \backslash
5694 leer 
5695 \end_layout
5696
5697 \end_inset
5698
5699 2
5700 \series bold
5701 ×
5702 \series default
5703 2
5704 \begin_inset space \thinspace{}
5705 \end_inset
5706
5707 Matrix
5708 \end_layout
5709
5710 \end_inset
5711 </cell>
5712 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
5713 \begin_inset Text
5714
5715 \begin_layout Plain Layout
5716 \begin_inset Formula $\raisebox{7.5mm}{}\begin{Vmatrix}\begin{array}{cc}
5717 0 & \textrm{-}\mathrm{i}\\
5718 \mathrm{i} & 0
5719 \end{array}\end{Vmatrix}\raisebox{-5.3mm}{}$
5720 \end_inset
5721
5722
5723 \end_layout
5724
5725 \end_inset
5726 </cell>
5727 </row>
5728 <row>
5729 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
5730 \begin_inset Text
5731
5732 \begin_layout Plain Layout
5733
5734 \backslash
5735 matrix
5736 \begin_inset ERT
5737 status collapsed
5738
5739 \begin_layout Plain Layout
5740
5741
5742 \backslash
5743 leer 
5744 \end_layout
5745
5746 \end_inset
5747
5748 2
5749 \series bold
5750 ×
5751 \series default
5752 2
5753 \begin_inset space \thinspace{}
5754 \end_inset
5755
5756 Matrix
5757 \end_layout
5758
5759 \end_inset
5760 </cell>
5761 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
5762 \begin_inset Text
5763
5764 \begin_layout Plain Layout
5765 \begin_inset Formula $\raisebox{7.5mm}{}\begin{matrix}\begin{array}{cc}
5766 0 & \textrm{-}\mathrm{i}\\
5767 \mathrm{i} & 0
5768 \end{array}\end{matrix}\raisebox{-5.3mm}{}$
5769 \end_inset
5770
5771
5772 \end_layout
5773
5774 \end_inset
5775 </cell>
5776 </row>
5777 </lyxtabular>
5778
5779 \end_inset
5780
5781
5782 \begin_inset space \hfill{}
5783 \end_inset
5784
5785
5786 \end_layout
5787
5788 \begin_layout Standard
5789 \begin_inset VSpace medskip
5790 \end_inset
5791
5792 Wurde z.
5793 \begin_inset space \thinspace{}
5794 \end_inset
5795
5796 B.
5797  
5798 \series bold
5799
5800 \backslash
5801 vmatrix
5802 \series default
5803  eingegeben, erscheint ein blaues Kästchen zwischen zwei senkrechten Strichen,
5804  in das die Matrix eingefügt wird.
5805 \begin_inset Newline newline
5806 \end_inset
5807
5808 Man beachte, dass verzierte Matrizen die vertikale Ausrichtung ignorieren.
5809 \end_layout
5810
5811 \begin_layout Standard
5812 \begin_inset Note Greyedout
5813 status open
5814
5815 \begin_layout Plain Layout
5816
5817 \series bold
5818 Achtung:
5819 \series default
5820  LaTeX limitiert die Anzahl der Matrizenspalten auf 10.
5821  Wenn man mehr als 10
5822 \begin_inset space ~
5823 \end_inset
5824
5825 Spalten benötigt, muss folgende Zeile in die Dokument-Präambel eingefügt
5826  werden:
5827 \end_layout
5828
5829 \begin_layout Plain Layout
5830
5831 \series bold
5832
5833 \backslash
5834 setcounter{MaxMatrixCols}{Anzahl}
5835 \end_layout
5836
5837 \begin_layout Plain Layout
5838 wobei 
5839 \emph on
5840 Anzahl
5841 \emph default
5842  die Anzahl der Spalten zwischen 11 und 99 ist.
5843 \end_layout
5844
5845 \end_inset
5846
5847
5848 \end_layout
5849
5850 \begin_layout Standard
5851 \begin_inset VSpace bigskip
5852 \end_inset
5853
5854 Da alle mehrzeiligen Formeln Matrizen sind, kann man die in 
5855 \begin_inset CommandInset ref
5856 LatexCommand ref
5857 reference "sub:Spaltenabstand"
5858
5859 \end_inset
5860
5861  beschriebene Länge 
5862 \series bold
5863
5864 \backslash
5865 arraycolsep
5866 \series default
5867
5868 \begin_inset Index idx
5869 status collapsed
5870
5871 \begin_layout Plain Layout
5872 Befehle ! A ! 
5873 \backslash
5874 arraycolsep
5875 \end_layout
5876
5877 \end_inset
5878
5879  auch zur Änderung des Spaltenabstands von Matrizen verwenden.
5880 \end_layout
5881
5882 \begin_layout Standard
5883 Möchte man den Zeilenabstand ändern, verwendet man den Befehl 
5884 \series bold
5885
5886 \backslash
5887 arraystretch
5888 \series default
5889
5890 \begin_inset Index idx
5891 status collapsed
5892
5893 \begin_layout Plain Layout
5894 Befehle ! A ! 
5895 \backslash
5896 arraystretch
5897 \end_layout
5898
5899 \end_inset
5900
5901 .
5902  Dieser wird folgendermaßen benutzt:
5903 \end_layout
5904
5905 \begin_layout Standard
5906
5907 \series bold
5908
5909 \backslash
5910 renewcommand{
5911 \backslash
5912 arraystretch}{Dehnungsfaktor}
5913 \begin_inset Index idx
5914 status collapsed
5915
5916 \begin_layout Plain Layout
5917 Befehle ! R ! 
5918 \backslash
5919 renewcommand
5920 \end_layout
5921
5922 \end_inset
5923
5924
5925 \end_layout
5926
5927 \begin_layout Standard
5928 Der Befehl 
5929 \series bold
5930
5931 \backslash
5932 renewcommand
5933 \series default
5934  weist dabei dem vordefinierten Befehl 
5935 \series bold
5936
5937 \backslash
5938 arraystretch
5939 \series default
5940  den Dehnungsfaktor zu.
5941  Möchte man z.
5942 \begin_inset space \thinspace{}
5943 \end_inset
5944
5945 B.
5946  den Zeilenabstand verdoppeln, gibt man für den Faktor eine 2 an.
5947  Dieser wird dann für alle folgenden Matrizen verwendet.
5948  Um wieder zum ursprünglichen Abstand zurückzukehren, weist man 
5949 \series bold
5950
5951 \backslash
5952 arraystretch
5953 \series default
5954  den Faktor 1 zu.
5955 \end_layout
5956
5957 \begin_layout Standard
5958 Um Matrizen in eine Textzeile zu setzen, benutzt man den Befehl 
5959 \series bold
5960
5961 \backslash
5962 smallmatrix
5963 \series default
5964
5965 \begin_inset Index idx
5966 status collapsed
5967
5968 \begin_layout Plain Layout
5969 Befehle ! S ! 
5970 \backslash
5971 smallmatrix
5972 \end_layout
5973
5974 \end_inset
5975
5976 .
5977  Gibt man ihn in eine Formel ein, erscheint ein blaues Kästchen mit zwei
5978  gestrichelten Linien.
5979  In dieses Kästchen wird die Matrix eingegeben.
5980  Man verwendet stattdessen das Menü 
5981 \family sans
5982 Bearbeiten\SpecialChar \menuseparator
5983 Zeilen
5984 \begin_inset space ~
5985 \end_inset
5986
5987 &
5988 \begin_inset space ~
5989 \end_inset
5990
5991 Spalten
5992 \family default
5993  oder die Mathe-Werkzeugleiste um neue Spalten zu erstellen.
5994  Neue Zeilen können auch mit 
5995 \family sans
5996 Strg+Enter
5997 \family default
5998  erstellt werden.
5999 \end_layout
6000
6001 \begin_layout Standard
6002 Dies ist eine Matrix 
6003 \begin_inset Formula $\left(\begin{smallmatrix}A & B\\
6004 C & D
6005 \end{smallmatrix}\right)$
6006 \end_inset
6007
6008  in einer Textzeile.
6009 \end_layout
6010
6011 \begin_layout Section
6012 Klammern und Begrenzungszeichen
6013 \begin_inset Index idx
6014 status collapsed
6015
6016 \begin_layout Plain Layout
6017 Klammern
6018 \end_layout
6019
6020 \end_inset
6021
6022
6023 \begin_inset Index idx
6024 status collapsed
6025
6026 \begin_layout Plain Layout
6027 Begrenzungszeichen
6028 \end_layout
6029
6030 \end_inset
6031
6032
6033 \end_layout
6034
6035 \begin_layout Subsection
6036 Vertikale Klammern und Begrenzungszeichen
6037 \begin_inset Index idx
6038 status collapsed
6039
6040 \begin_layout Plain Layout
6041 Klammern ! vertikale
6042 \end_layout
6043
6044 \end_inset
6045
6046
6047 \end_layout
6048
6049 \begin_layout Standard
6050 \begin_inset space \hfill{}
6051 \end_inset
6052
6053
6054 \begin_inset Tabular
6055 <lyxtabular version="3" rows="9" columns="2">
6056 <features tabularvalignment="middle">
6057 <column alignment="center" valignment="top" width="0pt">
6058 <column alignment="center" valignment="top" width="0pt">
6059 <row>
6060 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
6061 \begin_inset Text
6062
6063 \begin_layout Plain Layout
6064 Befehl
6065 \end_layout
6066
6067 \end_inset
6068 </cell>
6069 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6070 \begin_inset Text
6071
6072 \begin_layout Plain Layout
6073 Ergebnis
6074 \end_layout
6075
6076 \end_inset
6077 </cell>
6078 </row>
6079 <row>
6080 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6081 \begin_inset Text
6082
6083 \begin_layout Plain Layout
6084 (
6085 \end_layout
6086
6087 \end_inset
6088 </cell>
6089 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6090 \begin_inset Text
6091
6092 \begin_layout Plain Layout
6093 \begin_inset Formula $($
6094 \end_inset
6095
6096
6097 \end_layout
6098
6099 \end_inset
6100 </cell>
6101 </row>
6102 <row>
6103 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6104 \begin_inset Text
6105
6106 \begin_layout Plain Layout
6107 {
6108 \end_layout
6109
6110 \end_inset
6111 </cell>
6112 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6113 \begin_inset Text
6114
6115 \begin_layout Plain Layout
6116 \begin_inset Formula $\{$
6117 \end_inset
6118
6119
6120 \end_layout
6121
6122 \end_inset
6123 </cell>
6124 </row>
6125 <row>
6126 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6127 \begin_inset Text
6128
6129 \begin_layout Plain Layout
6130 [
6131 \end_layout
6132
6133 \end_inset
6134 </cell>
6135 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6136 \begin_inset Text
6137
6138 \begin_layout Plain Layout
6139 \begin_inset Formula $[$
6140 \end_inset
6141
6142
6143 \end_layout
6144
6145 \end_inset
6146 </cell>
6147 </row>
6148 <row>
6149 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6150 \begin_inset Text
6151
6152 \begin_layout Plain Layout
6153
6154 \backslash
6155 langle
6156 \end_layout
6157
6158 \end_inset
6159 </cell>
6160 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6161 \begin_inset Text
6162
6163 \begin_layout Plain Layout
6164 \begin_inset Formula $\langle$
6165 \end_inset
6166
6167
6168 \end_layout
6169
6170 \end_inset
6171 </cell>
6172 </row>
6173 <row>
6174 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6175 \begin_inset Text
6176
6177 \begin_layout Plain Layout
6178
6179 \backslash
6180 lceil
6181 \end_layout
6182
6183 \end_inset
6184 </cell>
6185 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6186 \begin_inset Text
6187
6188 \begin_layout Plain Layout
6189 \begin_inset Formula $\lceil$
6190 \end_inset
6191
6192
6193 \end_layout
6194
6195 \end_inset
6196 </cell>
6197 </row>
6198 <row>
6199 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6200 \begin_inset Text
6201
6202 \begin_layout Plain Layout
6203
6204 \backslash
6205 lfloor
6206 \end_layout
6207
6208 \end_inset
6209 </cell>
6210 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6211 \begin_inset Text
6212
6213 \begin_layout Plain Layout
6214 \begin_inset Formula $\lfloor$
6215 \end_inset
6216
6217
6218 \end_layout
6219
6220 \end_inset
6221 </cell>
6222 </row>
6223 <row>
6224 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6225 \begin_inset Text
6226
6227 \begin_layout Plain Layout
6228 /
6229 \end_layout
6230
6231 \end_inset
6232 </cell>
6233 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6234 \begin_inset Text
6235
6236 \begin_layout Plain Layout
6237 \begin_inset Formula $/$
6238 \end_inset
6239
6240
6241 \end_layout
6242
6243 \end_inset
6244 </cell>
6245 </row>
6246 <row>
6247 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
6248 \begin_inset Text
6249
6250 \begin_layout Plain Layout
6251 |
6252 \end_layout
6253
6254 \end_inset
6255 </cell>
6256 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6257 \begin_inset Text
6258
6259 \begin_layout Plain Layout
6260 \begin_inset Formula $|$
6261 \end_inset
6262
6263
6264 \end_layout
6265
6266 \end_inset
6267 </cell>
6268 </row>
6269 </lyxtabular>
6270
6271 \end_inset
6272
6273
6274 \begin_inset space \hfill{}
6275 \end_inset
6276
6277
6278 \begin_inset Tabular
6279 <lyxtabular version="3" rows="9" columns="2">
6280 <features tabularvalignment="middle">
6281 <column alignment="center" valignment="top" width="0pt">
6282 <column alignment="center" valignment="top" width="0pt">
6283 <row>
6284 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
6285 \begin_inset Text
6286
6287 \begin_layout Plain Layout
6288 Befehl
6289 \end_layout
6290
6291 \end_inset
6292 </cell>
6293 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6294 \begin_inset Text
6295
6296 \begin_layout Plain Layout
6297 Ergebnis
6298 \end_layout
6299
6300 \end_inset
6301 </cell>
6302 </row>
6303 <row>
6304 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6305 \begin_inset Text
6306
6307 \begin_layout Plain Layout
6308 )
6309 \end_layout
6310
6311 \end_inset
6312 </cell>
6313 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6314 \begin_inset Text
6315
6316 \begin_layout Plain Layout
6317 \begin_inset Formula $)$
6318 \end_inset
6319
6320
6321 \end_layout
6322
6323 \end_inset
6324 </cell>
6325 </row>
6326 <row>
6327 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6328 \begin_inset Text
6329
6330 \begin_layout Plain Layout
6331 }
6332 \end_layout
6333
6334 \end_inset
6335 </cell>
6336 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6337 \begin_inset Text
6338
6339 \begin_layout Plain Layout
6340 \begin_inset Formula $\}$
6341 \end_inset
6342
6343
6344 \end_layout
6345
6346 \end_inset
6347 </cell>
6348 </row>
6349 <row>
6350 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6351 \begin_inset Text
6352
6353 \begin_layout Plain Layout
6354 ]
6355 \end_layout
6356
6357 \end_inset
6358 </cell>
6359 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6360 \begin_inset Text
6361
6362 \begin_layout Plain Layout
6363 \begin_inset Formula $]$
6364 \end_inset
6365
6366
6367 \end_layout
6368
6369 \end_inset
6370 </cell>
6371 </row>
6372 <row>
6373 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6374 \begin_inset Text
6375
6376 \begin_layout Plain Layout
6377
6378 \backslash
6379 rangle
6380 \end_layout
6381
6382 \end_inset
6383 </cell>
6384 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6385 \begin_inset Text
6386
6387 \begin_layout Plain Layout
6388 \begin_inset Formula $\rangle$
6389 \end_inset
6390
6391
6392 \end_layout
6393
6394 \end_inset
6395 </cell>
6396 </row>
6397 <row>
6398 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6399 \begin_inset Text
6400
6401 \begin_layout Plain Layout
6402
6403 \backslash
6404 rceil
6405 \end_layout
6406
6407 \end_inset
6408 </cell>
6409 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6410 \begin_inset Text
6411
6412 \begin_layout Plain Layout
6413 \begin_inset Formula $\rceil$
6414 \end_inset
6415
6416
6417 \end_layout
6418
6419 \end_inset
6420 </cell>
6421 </row>
6422 <row>
6423 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6424 \begin_inset Text
6425
6426 \begin_layout Plain Layout
6427
6428 \backslash
6429 rfloor
6430 \end_layout
6431
6432 \end_inset
6433 </cell>
6434 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6435 \begin_inset Text
6436
6437 \begin_layout Plain Layout
6438 \begin_inset Formula $\rfloor$
6439 \end_inset
6440
6441
6442 \end_layout
6443
6444 \end_inset
6445 </cell>
6446 </row>
6447 <row>
6448 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6449 \begin_inset Text
6450
6451 \begin_layout Plain Layout
6452
6453 \backslash
6454
6455 \backslash
6456
6457 \end_layout
6458
6459 \end_inset
6460 </cell>
6461 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6462 \begin_inset Text
6463
6464 \begin_layout Plain Layout
6465 \begin_inset Formula $\backslash$
6466 \end_inset
6467
6468
6469 \end_layout
6470
6471 \end_inset
6472 </cell>
6473 </row>
6474 <row>
6475 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
6476 \begin_inset Text
6477
6478 \begin_layout Plain Layout
6479
6480 \backslash
6481 |
6482 \end_layout
6483
6484 \end_inset
6485 </cell>
6486 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6487 \begin_inset Text
6488
6489 \begin_layout Plain Layout
6490 \begin_inset Formula $\|$
6491 \end_inset
6492
6493
6494 \end_layout
6495
6496 \end_inset
6497 </cell>
6498 </row>
6499 </lyxtabular>
6500
6501 \end_inset
6502
6503
6504 \begin_inset space \hfill{}
6505 \end_inset
6506
6507
6508 \end_layout
6509
6510 \begin_layout Standard
6511
6512 \series medium
6513 \begin_inset Note Greyedout
6514 status open
6515
6516 \begin_layout Plain Layout
6517
6518 \series bold
6519 Achtung:
6520 \series default
6521  Im TeX-Modus muss für den Backslash der Befehl 
6522 \series bold
6523
6524 \backslash
6525 textbackslash
6526 \series default
6527
6528 \begin_inset Index idx
6529 status collapsed
6530
6531 \begin_layout Plain Layout
6532 Befehle ! T ! 
6533 \backslash
6534 textbackslash
6535 \end_layout
6536
6537 \end_inset
6538
6539  verwendet werden, denn der Befehl 
6540 \series bold
6541
6542 \backslash
6543
6544 \backslash
6545
6546 \series default
6547  steht dort für einen Zeilenumbruch.
6548 \end_layout
6549
6550 \end_inset
6551
6552
6553 \end_layout
6554
6555 \begin_layout Standard
6556 Für alle oben aufgelisteten Zeichen kann die Größe mit den in den folgenden
6557  zwei Unterkapiteln beschriebenen Befehlen eingestellt werden.
6558  Dabei können dann statt den Befehlen 
6559 \series bold
6560
6561 \backslash
6562 langle
6563 \series default
6564  und 
6565 \series bold
6566
6567 \backslash
6568 rangle
6569 \series default
6570  direkt die Zeichen < und > verwendet werden.
6571 \end_layout
6572
6573 \begin_layout Subsubsection
6574 Manuelle Klammergrößen
6575 \begin_inset CommandInset label
6576 LatexCommand label
6577 name "sub:Manuelle-Klammergrößen"
6578
6579 \end_inset
6580
6581
6582 \begin_inset Index idx
6583 status collapsed
6584
6585 \begin_layout Plain Layout
6586 Klammergrößen ! manuelle
6587 \end_layout
6588
6589 \end_inset
6590
6591
6592 \end_layout
6593
6594 \begin_layout Standard
6595 Möchte man die Klammergröße manuell festlegen, kann man dies mittels der
6596  LaTeX-Befehle 
6597 \series bold
6598
6599 \backslash
6600 big
6601 \series default
6602
6603 \begin_inset Index idx
6604 status collapsed
6605
6606 \begin_layout Plain Layout
6607 Befehle ! B ! 
6608 \backslash
6609 big
6610 \end_layout
6611
6612 \end_inset
6613
6614
6615 \series bold
6616
6617 \backslash
6618 Big
6619 \series default
6620
6621 \series bold
6622
6623 \backslash
6624 bigg
6625 \series default
6626  und 
6627 \series bold
6628
6629 \backslash
6630 Bigg
6631 \series default
6632  tun.
6633  
6634 \series bold
6635
6636 \backslash
6637 big
6638 \series default
6639  steht hierbei für die kleinste und 
6640 \series bold
6641
6642 \backslash
6643 Bigg
6644 \series default
6645  für die größte Klammergröße.
6646 \end_layout
6647
6648 \begin_layout Standard
6649 Diese Befehle werden benutzt um Klammerebenen optisch hervorzuheben:
6650 \end_layout
6651
6652 \begin_layout Standard
6653 \align center
6654 \begin_inset Tabular
6655 <lyxtabular version="3" rows="2" columns="2">
6656 <features tabularvalignment="middle">
6657 <column alignment="center" valignment="top" width="0pt">
6658 <column alignment="center" valignment="top" width="0pt">
6659 <row>
6660 <cell alignment="center" valignment="top" usebox="none">
6661 \begin_inset Text
6662
6663 \begin_layout Plain Layout
6664 einheitliche Klammergröße:
6665 \end_layout
6666
6667 \end_inset
6668 </cell>
6669 <cell alignment="center" valignment="top" usebox="none">
6670 \begin_inset Text
6671
6672 \begin_layout Plain Layout
6673 \begin_inset Formula $((A+B)(A-B))^{C}\raisebox{-4mm}{}$
6674 \end_inset
6675
6676
6677 \end_layout
6678
6679 \end_inset
6680 </cell>
6681 </row>
6682 <row>
6683 <cell alignment="center" valignment="top" usebox="none">
6684 \begin_inset Text
6685
6686 \begin_layout Plain Layout
6687 besser sieht das so aus:
6688 \end_layout
6689
6690 \end_inset
6691 </cell>
6692 <cell alignment="center" valignment="top" usebox="none">
6693 \begin_inset Text
6694
6695 \begin_layout Plain Layout
6696 \begin_inset Formula $\Big((A+B)(A-B)\Big)^{C}$
6697 \end_inset
6698
6699
6700 \end_layout
6701
6702 \end_inset
6703 </cell>
6704 </row>
6705 </lyxtabular>
6706
6707 \end_inset
6708
6709
6710 \begin_inset Note Note
6711 status collapsed
6712
6713 \begin_layout Plain Layout
6714
6715 \series bold
6716
6717 \backslash
6718 raisebox
6719 \series default
6720  dient nur
6721 \end_layout
6722
6723 \begin_layout Plain Layout
6724 als Abstandhalter.
6725 \end_layout
6726
6727 \end_inset
6728
6729
6730 \end_layout
6731
6732 \begin_layout Standard
6733 Für die zweite Formel wurde der Befehl 
6734 \series bold
6735
6736 \backslash
6737 Big((A+B)(A-B)
6738 \backslash
6739 Big)^
6740 \begin_inset ERT
6741 status collapsed
6742
6743 \begin_layout Plain Layout
6744
6745
6746 \backslash
6747 leer 
6748 \end_layout
6749
6750 \end_inset
6751
6752 C
6753 \series default
6754  verwendet.
6755 \end_layout
6756
6757 \begin_layout Standard
6758 Hier alle Klammergrößen in der Übersicht:
6759 \end_layout
6760
6761 \begin_layout Standard
6762 \align center
6763
6764 \backslash
6765 Bigg(
6766 \backslash
6767 exp
6768 \backslash
6769 bigg<
6770 \backslash
6771 Big[
6772 \backslash
6773 big{
6774 \backslash
6775 ln(3x)
6776 \backslash
6777 big}^2
6778 \begin_inset ERT
6779 status collapsed
6780
6781 \begin_layout Plain Layout
6782
6783
6784 \backslash
6785 leer 
6786 \end_layout
6787
6788 \end_inset
6789
6790
6791 \backslash
6792 sin(x)
6793 \backslash
6794 Big]^
6795 \begin_inset ERT
6796 status collapsed
6797
6798 \begin_layout Plain Layout
6799
6800
6801 \backslash
6802 leer 
6803 \end_layout
6804
6805 \end_inset
6806
6807 A
6808 \begin_inset ERT
6809 status collapsed
6810
6811 \begin_layout Plain Layout
6812
6813
6814 \backslash
6815 leer 
6816 \end_layout
6817
6818 \end_inset
6819
6820
6821 \backslash
6822 bigg>
6823 \backslash
6824 Bigg)^0,5
6825 \end_layout
6826
6827 \begin_layout Standard
6828 \align center
6829 \begin_inset Formula $\Bigg(\exp\bigg<\Big[\big\{\ln(3x)\big\}^{2}\sin(x)\Big]^{A}\bigg>\Bigg)^{0,5}$
6830 \end_inset
6831
6832
6833 \end_layout
6834
6835 \begin_layout Standard
6836 Es gibt außer den 
6837 \series bold
6838
6839 \backslash
6840 big
6841 \series default
6842 -Befehlen noch die Variante 
6843 \series bold
6844
6845 \backslash
6846 bigm
6847 \series default
6848
6849 \begin_inset Index idx
6850 status collapsed
6851
6852 \begin_layout Plain Layout
6853 Befehle ! B ! 
6854 \backslash
6855 bigm
6856 \end_layout
6857
6858 \end_inset
6859
6860 , die etwas mehr Leerraum zwischen Klammer und Klammerinhalt erzeugt und
6861  die Variante 
6862 \series bold
6863
6864 \backslash
6865 bigl
6866 \series default
6867 -
6868 \series bold
6869
6870 \backslash
6871 bigr
6872 \series default
6873
6874 \begin_inset Index idx
6875 status collapsed
6876
6877 \begin_layout Plain Layout
6878 Befehle ! B ! 
6879 \backslash
6880 bigl - 
6881 \backslash
6882 bigr
6883 \end_layout
6884
6885 \end_inset
6886
6887 , die keinen zusätzlichen Leerraum erzeugt.
6888  Das 
6889 \emph on
6890 l
6891 \emph default
6892  am Ende des Befehls 
6893 \series bold
6894
6895 \backslash
6896 bigl
6897 \series default
6898  steht für eine linke Klammer; für eine rechte Klammer wird dieses durch
6899  ein 
6900 \emph on
6901 r
6902 \emph default
6903  ersetzt.
6904  Eine linke oder rechte Klammer kann je eine öffnende oder schließende Klammer
6905  sein.
6906 \end_layout
6907
6908 \begin_layout Standard
6909 In der folgenden Tabelle sind die Varianten miteinander verglichen:
6910 \end_layout
6911
6912 \begin_layout Standard
6913 \align center
6914 \begin_inset Tabular
6915 <lyxtabular version="3" rows="5" columns="2">
6916 <features tabularvalignment="middle">
6917 <column alignment="center" valignment="middle" width="0">
6918 <column alignment="center" valignment="middle" width="0">
6919 <row>
6920 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
6921 \begin_inset Text
6922
6923 \begin_layout Plain Layout
6924 Befehl
6925 \end_layout
6926
6927 \end_inset
6928 </cell>
6929 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6930 \begin_inset Text
6931
6932 \begin_layout Plain Layout
6933 Ergebnis
6934 \begin_inset Note Note
6935 status collapsed
6936
6937 \begin_layout Plain Layout
6938
6939 \series bold
6940
6941 \backslash
6942 raisebox
6943 \series default
6944  dient nur als Abstandhalter.
6945 \end_layout
6946
6947 \end_inset
6948
6949
6950 \end_layout
6951
6952 \end_inset
6953 </cell>
6954 </row>
6955 <row>
6956 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6957 \begin_inset Text
6958
6959 \begin_layout Plain Layout
6960
6961 \backslash
6962 Bigm(
6963 \backslash
6964 bigm(
6965 \backslash
6966 ln(3x)
6967 \backslash
6968 bigm)^2
6969 \begin_inset ERT
6970 status collapsed
6971
6972 \begin_layout Plain Layout
6973
6974
6975 \backslash
6976 leer 
6977 \end_layout
6978
6979 \end_inset
6980
6981
6982 \backslash
6983 Bigm)
6984 \end_layout
6985
6986 \end_inset
6987 </cell>
6988 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6989 \begin_inset Text
6990
6991 \begin_layout Plain Layout
6992 \begin_inset Formula $\raisebox{5.5mm}{}\Bigm(\bigm(\ln(3x)\bigm)^{2}\Bigm)\raisebox{-3.25mm}{}$
6993 \end_inset
6994
6995
6996 \end_layout
6997
6998 \end_inset
6999 </cell>
7000 </row>
7001 <row>
7002 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7003 \begin_inset Text
7004
7005 \begin_layout Plain Layout
7006
7007 \backslash
7008 Big(
7009 \backslash
7010 big(
7011 \backslash
7012 ln(3x)
7013 \backslash
7014 big)^2
7015 \begin_inset ERT
7016 status collapsed
7017
7018 \begin_layout Plain Layout
7019
7020
7021 \backslash
7022 leer 
7023 \end_layout
7024
7025 \end_inset
7026
7027
7028 \backslash
7029 Big)
7030 \end_layout
7031
7032 \end_inset
7033 </cell>
7034 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7035 \begin_inset Text
7036
7037 \begin_layout Plain Layout
7038 \begin_inset Formula $\raisebox{5.5mm}{}\Big(\big(\ln(3x)\big)^{2}\Big)\raisebox{-3.25mm}{}$
7039 \end_inset
7040
7041
7042 \end_layout
7043
7044 \end_inset
7045 </cell>
7046 </row>
7047 <row>
7048 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
7049 \begin_inset Text
7050
7051 \begin_layout Plain Layout
7052
7053 \backslash
7054 Bigl(
7055 \backslash
7056 bigl(
7057 \backslash
7058 ln(3x)
7059 \backslash
7060 bigr)^2
7061 \begin_inset ERT
7062 status collapsed
7063
7064 \begin_layout Plain Layout
7065
7066
7067 \backslash
7068 leer 
7069 \end_layout
7070
7071 \end_inset
7072
7073
7074 \backslash
7075 Bigr)
7076 \end_layout
7077
7078 \end_inset
7079 </cell>
7080 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
7081 \begin_inset Text
7082
7083 \begin_layout Plain Layout
7084 \begin_inset Formula $\raisebox{5.5mm}{}\Bigl(\bigl(\ln(3x)\bigr)^{2}\Bigr)\raisebox{-3.25mm}{}$
7085 \end_inset
7086
7087
7088 \end_layout
7089
7090 \end_inset
7091 </cell>
7092 </row>
7093 <row>
7094 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
7095 \begin_inset Text
7096
7097 \begin_layout Plain Layout
7098
7099 \backslash
7100 bigl)
7101 \backslash
7102 ln(3x)
7103 \backslash
7104 bigr(
7105 \end_layout
7106
7107 \end_inset
7108 </cell>
7109 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
7110 \begin_inset Text
7111
7112 \begin_layout Plain Layout
7113 \begin_inset Formula $\raisebox{4.5mm}{}\bigl)\ln(3x)\bigr(\raisebox{-2mm}{}$
7114 \end_inset
7115
7116
7117 \end_layout
7118
7119 \end_inset
7120 </cell>
7121 </row>
7122 </lyxtabular>
7123
7124 \end_inset
7125
7126
7127 \end_layout
7128
7129 \begin_layout Subsubsection
7130 Automatische Klammergrößen
7131 \begin_inset CommandInset label
7132 LatexCommand label
7133 name "sub:Automatische-Klammergrößen"
7134
7135 \end_inset
7136
7137
7138 \begin_inset Index idx
7139 status collapsed
7140
7141 \begin_layout Plain Layout
7142 Klammergrößen ! automatische
7143 \end_layout
7144
7145 \end_inset
7146
7147
7148 \end_layout
7149
7150 \begin_layout Standard
7151 Klammern variabler Größe können mit den Befehlen 
7152 \series bold
7153
7154 \backslash
7155 left
7156 \series default
7157
7158 \begin_inset Index idx
7159 status collapsed
7160
7161 \begin_layout Plain Layout
7162 Befehle ! L ! 
7163 \backslash
7164 left
7165 \end_layout
7166
7167 \end_inset
7168
7169  und 
7170 \series bold
7171
7172 \backslash
7173 right
7174 \series default
7175
7176 \begin_inset Index idx
7177 status collapsed
7178
7179 \begin_layout Plain Layout
7180 Befehle ! R ! 
7181 \backslash
7182 right
7183 \end_layout
7184
7185 \end_inset
7186
7187  oder über den Mathe-Werkzeugleistenknopf
7188 \family sans
7189  
7190 \family default
7191
7192 \begin_inset Graphics
7193         filename ../../images/dialog-show_mathdelimiter.png
7194         scale 85
7195
7196 \end_inset
7197
7198  eingefügt werden.
7199  Auf 
7200 \series bold
7201
7202 \backslash
7203 left
7204 \series default
7205  und 
7206 \series bold
7207
7208 \backslash
7209 right
7210 \series default
7211  muss unmittelbar die gewünschte Klammer folgen.
7212  Die Klammergröße wird dann bei der Ausgabe automatisch berechnet.
7213 \end_layout
7214
7215 \begin_layout Standard
7216 \align center
7217 normale Klammer: Der Befehl 
7218 \series bold
7219
7220 \backslash
7221 ln(
7222 \backslash
7223 frac
7224 \begin_inset ERT
7225 status collapsed
7226
7227 \begin_layout Plain Layout
7228
7229
7230 \backslash
7231 leer 
7232 \end_layout
7233
7234 \end_inset
7235
7236 A
7237 \begin_inset Formula $\downarrow$
7238 \end_inset
7239
7240 C
7241 \begin_inset ERT
7242 status collapsed
7243
7244 \begin_layout Plain Layout
7245
7246
7247 \backslash
7248 leer 
7249 \end_layout
7250
7251 \end_inset
7252
7253 )
7254 \series default
7255  ergibt
7256 \begin_inset Formula 
7257 \[
7258 \ln(\frac{A}{C})
7259 \]
7260
7261 \end_inset
7262
7263
7264 \end_layout
7265
7266 \begin_layout Standard
7267 \align center
7268 mehrzeilige Klammer: Der Befehl 
7269 \series bold
7270
7271 \backslash
7272 ln
7273 \backslash
7274 left(
7275 \backslash
7276 frac
7277 \begin_inset ERT
7278 status collapsed
7279
7280 \begin_layout Plain Layout
7281
7282
7283 \backslash
7284 leer 
7285 \end_layout
7286
7287 \end_inset
7288
7289 A
7290 \begin_inset Formula $\downarrow$
7291 \end_inset
7292
7293 C
7294 \begin_inset ERT
7295 status collapsed
7296
7297 \begin_layout Plain Layout
7298
7299
7300 \backslash
7301 leer 
7302 \end_layout
7303
7304 \end_inset
7305
7306
7307 \backslash
7308 right)
7309 \series default
7310  ergibt
7311 \begin_inset Formula 
7312 \[
7313 \ln\left(\frac{A}{C}\right)
7314 \]
7315
7316 \end_inset
7317
7318
7319 \end_layout
7320
7321 \begin_layout Standard
7322 An Stelle von 
7323 \series bold
7324
7325 \backslash
7326 left
7327 \series default
7328  und 
7329 \series bold
7330
7331 \backslash
7332 right
7333 \series default
7334  kann man die Tastenkürzel 
7335 \family sans
7336 Alt+M
7337 \begin_inset space ~
7338 \end_inset
7339
7340 Klammer
7341 \family default
7342  verwenden.
7343  Das hat den Vorteil, dass man in LyX sofort die wahre Klammergröße sieht
7344  und dass die rechte Klammer gleich mit erstellt wird.
7345 \begin_inset Newline newline
7346 \end_inset
7347
7348 Der Befehl für das letzte Beispiel würde dann lauten: 
7349 \series bold
7350
7351 \backslash
7352 ln Alt+M
7353 \series default
7354  
7355 \series bold
7356 (
7357 \backslash
7358 frac
7359 \begin_inset ERT
7360 status collapsed
7361
7362 \begin_layout Plain Layout
7363
7364
7365 \backslash
7366 leer 
7367 \end_layout
7368
7369 \end_inset
7370
7371 A
7372 \begin_inset Formula $\downarrow$
7373 \end_inset
7374
7375 C
7376 \end_layout
7377
7378 \begin_layout Standard
7379 Will man nur eine Klammerhälfte erstellen, schreibt man für die weggelassene
7380  Klammer einen Punkt.
7381  So ergibt z.
7382 \begin_inset space \thinspace{}
7383 \end_inset
7384
7385 B.
7386  der Befehl 
7387 \series bold
7388
7389 \backslash
7390 left.
7391 \backslash
7392 frac
7393 \begin_inset ERT
7394 status collapsed
7395
7396 \begin_layout Plain Layout
7397
7398
7399 \backslash
7400 leer 
7401 \end_layout
7402
7403 \end_inset
7404
7405 A
7406 \begin_inset Formula $\downarrow$
7407 \end_inset
7408
7409 B
7410 \begin_inset ERT
7411 status collapsed
7412
7413 \begin_layout Plain Layout
7414
7415
7416 \backslash
7417 leer 
7418 \end_layout
7419
7420 \end_inset
7421
7422
7423 \backslash
7424 right}
7425 \series default
7426
7427 \begin_inset space \thinspace{}
7428 \end_inset
7429
7430 :
7431 \series bold
7432
7433 \begin_inset Formula 
7434 \[
7435 \left.\frac{A}{B}\right\} 
7436 \]
7437
7438 \end_inset
7439
7440
7441 \series default
7442 Die Befehle 
7443 \series bold
7444
7445 \backslash
7446 left
7447 \series default
7448  und 
7449 \series bold
7450
7451 \backslash
7452 right
7453 \series default
7454  werden beim Neu laden des Dokuments von LyX in Klammern der richtigen Größe
7455  umgewandelt.
7456  Für eine weggelassene Klammer erscheint in LyX eine gestrichelte Linie.
7457 \end_layout
7458
7459 \begin_layout Standard
7460 \begin_inset VSpace bigskip
7461 \end_inset
7462
7463 Da alle gängigen LaTeX-Distributionen eTeX, eine Erweiterung von LaTeX,
7464  verwenden, steht für alle Klammern und Begrenzungszeichen zusätzlich der
7465  Befehl 
7466 \series bold
7467
7468 \backslash
7469 middle
7470 \series default
7471
7472 \begin_inset Index idx
7473 status collapsed
7474
7475 \begin_layout Plain Layout
7476 Befehle ! M ! 
7477 \backslash
7478 middle
7479 \end_layout
7480
7481 \end_inset
7482
7483  zur Verfügung.
7484  Durch diesen wird das folgende Zeichen an die Höhe der umgebenden Klammern
7485  angepasst, was z.
7486 \begin_inset space \thinspace{}
7487 \end_inset
7488
7489 B.
7490  für physikalische Vektoren von Nutzen ist:
7491 \begin_inset Formula 
7492 \[
7493 \left\langle \phi\:\middle|\: J=\frac{3}{2}\,,\, M_{J}\right\rangle 
7494 \]
7495
7496 \end_inset
7497
7498 Für physikalische Vektoren gibt es ein spezielles LaTeX-Paket, das in 
7499 \begin_inset CommandInset ref
7500 LatexCommand ref
7501 reference "sub:Physikalische-Vektoren"
7502
7503 \end_inset
7504
7505  beschrieben ist.
7506 \end_layout
7507
7508 \begin_layout Subsection
7509 Horizontale Klammern
7510 \begin_inset Index idx
7511 status collapsed
7512
7513 \begin_layout Plain Layout
7514 Klammern ! horizontale
7515 \end_layout
7516
7517 \end_inset
7518
7519
7520 \end_layout
7521
7522 \begin_layout Standard
7523 \align center
7524 \begin_inset Tabular
7525 <lyxtabular version="3" rows="4" columns="2">
7526 <features tabularvalignment="middle">
7527 <column alignment="center" valignment="top" width="0pt">
7528 <column alignment="center" valignment="top" width="0pt">
7529 <row>
7530 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
7531 \begin_inset Text
7532
7533 \begin_layout Plain Layout
7534 Befehl
7535 \begin_inset Note Note
7536 status collapsed
7537
7538 \begin_layout Plain Layout
7539
7540 \series bold
7541
7542 \backslash
7543 raisebox
7544 \series default
7545  dient nur als Abstandhalter.
7546 \end_layout
7547
7548 \end_inset
7549
7550
7551 \end_layout
7552
7553 \end_inset
7554 </cell>
7555 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
7556 \begin_inset Text
7557
7558 \begin_layout Plain Layout
7559 Ergebnis
7560 \end_layout
7561
7562 \end_inset
7563 </cell>
7564 </row>
7565 <row>
7566 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7567 \begin_inset Text
7568
7569 \begin_layout Plain Layout
7570 \begin_inset ERT
7571 status collapsed
7572
7573 \begin_layout Plain Layout
7574
7575
7576 \backslash
7577 raisebox{2.3mm}{
7578 \end_layout
7579
7580 \end_inset
7581
7582
7583 \backslash
7584 overbrace
7585 \begin_inset ERT
7586 status collapsed
7587
7588 \begin_layout Plain Layout
7589
7590
7591 \backslash
7592 leer 
7593 \end_layout
7594
7595 \end_inset
7596
7597 A+B
7598 \begin_inset ERT
7599 status collapsed
7600
7601 \begin_layout Plain Layout
7602
7603
7604 \backslash
7605 leer 
7606 \end_layout
7607
7608 \end_inset
7609
7610 ^
7611 \begin_inset ERT
7612 status collapsed
7613
7614 \begin_layout Plain Layout
7615
7616
7617 \backslash
7618 leer 
7619 \end_layout
7620
7621 \end_inset
7622
7623 3
7624 \begin_inset ERT
7625 status collapsed
7626
7627 \begin_layout Plain Layout
7628
7629 }
7630 \end_layout
7631
7632 \end_inset
7633
7634
7635 \begin_inset Index idx
7636 status collapsed
7637
7638 \begin_layout Plain Layout
7639 Befehle ! O ! 
7640 \backslash
7641 overbrace
7642 \end_layout
7643
7644 \end_inset
7645
7646
7647 \end_layout
7648
7649 \end_inset
7650 </cell>
7651 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7652 \begin_inset Text
7653
7654 \begin_layout Plain Layout
7655 \begin_inset Formula $\overbrace{A+B}^{3}$
7656 \end_inset
7657
7658
7659 \end_layout
7660
7661 \end_inset
7662 </cell>
7663 </row>
7664 <row>
7665 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
7666 \begin_inset Text
7667
7668 \begin_layout Plain Layout
7669 \begin_inset ERT
7670 status collapsed
7671
7672 \begin_layout Plain Layout
7673
7674
7675 \backslash
7676 raisebox{-2.2mm}{
7677 \end_layout
7678
7679 \end_inset
7680
7681
7682 \backslash
7683 underbrace
7684 \begin_inset ERT
7685 status collapsed
7686
7687 \begin_layout Plain Layout
7688
7689
7690 \backslash
7691 leer 
7692 \end_layout
7693
7694 \end_inset
7695
7696 A+B
7697 \begin_inset ERT
7698 status collapsed
7699
7700 \begin_layout Plain Layout
7701
7702
7703 \backslash
7704 leer 
7705 \end_layout
7706
7707 \end_inset
7708
7709 _5
7710 \begin_inset ERT
7711 status collapsed
7712
7713 \begin_layout Plain Layout
7714
7715 }
7716 \end_layout
7717
7718 \end_inset
7719
7720
7721 \begin_inset Index idx
7722 status collapsed
7723
7724 \begin_layout Plain Layout
7725 Befehle ! U ! 
7726 \backslash
7727 underbrace
7728 \end_layout
7729
7730 \end_inset
7731
7732
7733 \end_layout
7734
7735 \end_inset
7736 </cell>
7737 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
7738 \begin_inset Text
7739
7740 \begin_layout Plain Layout
7741 \begin_inset Formula $\underbrace{A+B}_{5}$
7742 \end_inset
7743
7744
7745 \end_layout
7746
7747 \end_inset
7748 </cell>
7749 </row>
7750 <row>
7751 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
7752 \begin_inset Text
7753
7754 \begin_layout Plain Layout
7755
7756 \backslash
7757 overbrace
7758 \begin_inset ERT
7759 status collapsed
7760
7761 \begin_layout Plain Layout
7762
7763
7764 \backslash
7765 leer 
7766 \end_layout
7767
7768 \end_inset
7769
7770
7771 \backslash
7772 underbrace
7773 \begin_inset ERT
7774 status collapsed
7775
7776 \begin_layout Plain Layout
7777
7778
7779 \backslash
7780 leer 
7781 \end_layout
7782
7783 \end_inset
7784
7785 A+B_w
7786 \begin_inset ERT
7787 status collapsed
7788
7789 \begin_layout Plain Layout
7790
7791
7792 \backslash
7793 leer 
7794 \end_layout
7795
7796 \end_inset
7797
7798
7799 \begin_inset ERT
7800 status collapsed
7801
7802 \begin_layout Plain Layout
7803
7804
7805 \backslash
7806 leer 
7807 \end_layout
7808
7809 \end_inset
7810
7811 _7
7812 \begin_inset ERT
7813 status collapsed
7814
7815 \begin_layout Plain Layout
7816
7817
7818 \backslash
7819 leer 
7820 \end_layout
7821
7822 \end_inset
7823
7824
7825 \begin_inset ERT
7826 status collapsed
7827
7828 \begin_layout Plain Layout
7829
7830
7831 \backslash
7832 leer 
7833 \end_layout
7834
7835 \end_inset
7836
7837 ^
7838 \begin_inset ERT
7839 status collapsed
7840
7841 \begin_layout Plain Layout
7842
7843
7844 \backslash
7845 leer 
7846 \end_layout
7847
7848 \end_inset
7849
7850 C
7851 \end_layout
7852
7853 \end_inset
7854 </cell>
7855 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
7856 \begin_inset Text
7857
7858 \begin_layout Plain Layout
7859 \begin_inset Formula $\overbrace{\underbrace{A+B_{w}}_{7}}^{C}$
7860 \end_inset
7861
7862
7863 \end_layout
7864
7865 \end_inset
7866 </cell>
7867 </row>
7868 </lyxtabular>
7869
7870 \end_inset
7871
7872
7873 \end_layout
7874
7875 \begin_layout Standard
7876 Beim letzten Beispiel spielt es keine Rolle, ob man zuerst 
7877 \series bold
7878
7879 \backslash
7880 overbrace
7881 \series default
7882  oder 
7883 \series bold
7884
7885 \backslash
7886 underbrace
7887 \series default
7888  eingibt.
7889 \end_layout
7890
7891 \begin_layout Standard
7892 \begin_inset VSpace bigskip
7893 \end_inset
7894
7895 Benötigt man Klammern, die sich überschneiden, muss man die in 
7896 \begin_inset CommandInset ref
7897 LatexCommand ref
7898 reference "sec:Mehrzeilige-Formeln"
7899
7900 \end_inset
7901
7902  beschriebenen mehrzeiligen Formeln verwenden:
7903 \begin_inset Formula 
7904 \begin{eqnarray*}
7905 A & = & \underbrace{gggg+bbqq}_{r}+\: dddd\\
7906  &  & \hphantom{gggg+\:}\underbrace{\hphantom{bbqq+dddd}}_{s}
7907 \end{eqnarray*}
7908
7909 \end_inset
7910
7911 In die erste Zeile wird die Formel zusammen mit der ersten Klammer eingegeben.
7912  Dabei ist es wichtig, dass vor dem ersten 
7913 \begin_inset Formula $d$
7914 \end_inset
7915
7916  der Abstandsbefehl
7917 \begin_inset Foot
7918 status collapsed
7919
7920 \begin_layout Plain Layout
7921 Abstandsbefehle sind in 
7922 \begin_inset CommandInset ref
7923 LatexCommand ref
7924 reference "sub:Vordefinierter-Leerraum"
7925
7926 \end_inset
7927
7928  erklärt.
7929 \end_layout
7930
7931 \end_inset
7932
7933  
7934 \series bold
7935
7936 \backslash
7937 :
7938 \series default
7939  eingegeben wird, denn die nach dem 
7940 \begin_inset Formula $q$
7941 \end_inset
7942
7943  endende Klammer verhindert, dass das nachfolgende 
7944 \begin_inset Quotes gld
7945 \end_inset
7946
7947 +
7948 \begin_inset Quotes grd
7949 \end_inset
7950
7951  von Leerraum umgeben ist.
7952 \begin_inset Foot
7953 status collapsed
7954
7955 \begin_layout Plain Layout
7956 weil eine Klammer nicht als Zeichen gilt, siehe 
7957 \begin_inset CommandInset ref
7958 LatexCommand ref
7959 reference "sub:Binäre-Operatoren"
7960
7961 \end_inset
7962
7963
7964 \end_layout
7965
7966 \end_inset
7967
7968  In die zweite Zeile wird die zweite Klammer eingegeben.
7969  Da sie vor dem 
7970 \begin_inset Formula $b$
7971 \end_inset
7972
7973  beginnen soll, gibt man zuerst 
7974 \series bold
7975
7976 \backslash
7977 hphantom{gggg+
7978 \backslash
7979 :}
7980 \series default
7981  ein.
7982 \begin_inset Foot
7983 status collapsed
7984
7985 \begin_layout Plain Layout
7986 mehr zu 
7987 \series bold
7988
7989 \backslash
7990 hphantom
7991 \series default
7992  siehe 
7993 \begin_inset CommandInset ref
7994 LatexCommand ref
7995 reference "sub:Platzhalter"
7996
7997 \end_inset
7998
7999 .
8000 \end_layout
8001
8002 \end_inset
8003
8004  Dieser Leerraum wird benötigt, weil das 
8005 \begin_inset Quotes gld
8006 \end_inset
8007
8008 +
8009 \begin_inset Quotes grd
8010 \end_inset
8011
8012  in der Formel auch von Leerraum umgeben ist.
8013  Die Klammer wird unter den Befehl 
8014 \series bold
8015
8016 \backslash
8017 hphantom{bbqq+dddd}
8018 \series default
8019  gesetzt.
8020 \end_layout
8021
8022 \begin_layout Standard
8023 Komplizierter wird es, wenn sich Klammern über und unter der Formel überschneide
8024 n, wie in folgendem Beispiel:
8025 \begin_inset ERT
8026 status collapsed
8027
8028 \begin_layout Plain Layout
8029
8030
8031 \backslash
8032 setlength{
8033 \backslash
8034 jot}{-6pt}
8035 \end_layout
8036
8037 \end_inset
8038
8039
8040 \begin_inset Formula 
8041 \begin{eqnarray*}
8042  &  & \hphantom{gggg+\:}\overbrace{\hphantom{bbqq+dddd}}^{s}\\
8043 A & = & \underbrace{gggg+bbqq}_{r}+\: dddd
8044 \end{eqnarray*}
8045
8046 \end_inset
8047
8048
8049 \begin_inset ERT
8050 status collapsed
8051
8052 \begin_layout Plain Layout
8053
8054
8055 \backslash
8056 setlength{
8057 \backslash
8058 jot}{3pt}
8059 \end_layout
8060
8061 \end_inset
8062
8063 Die erste Formelzeile ist gleich der zweiten Zeile des vorigen Beispiels,
8064  mit dem Unterschied, dass sich die Klammer oben befindet.
8065  Die zweite Zeile enthält die Formel zusammen mit der zweiten Klammer.
8066  Damit sich zwischen oberer Klammer in der ersten Zeile und der Formel in
8067  der zweiten Zeile kein Leerraum befindet, muss der Zeilenabstand verändert
8068  werden.
8069  Aufgrund eines Fehlers in LyX ist dies nicht ohne Weiteres möglich
8070 \begin_inset Foot
8071 status collapsed
8072
8073 \begin_layout Plain Layout
8074 \begin_inset CommandInset href
8075 LatexCommand href
8076 name "LyX-Fehler #1505"
8077 target "http://www.lyx.org/trac/ticket/1505"
8078
8079 \end_inset
8080
8081
8082 \end_layout
8083
8084 \end_inset
8085
8086 .
8087  Es muss als Lösung des Problems der globale Formelzeilenabstand 
8088 \series bold
8089
8090 \backslash
8091 jot
8092 \series default
8093
8094 \begin_inset Index idx
8095 status collapsed
8096
8097 \begin_layout Plain Layout
8098 Befehle ! J ! 
8099 \backslash
8100 jot
8101 \end_layout
8102
8103 \end_inset
8104
8105  vor der Formel mit dem Befehl 
8106 \series bold
8107
8108 \backslash
8109 setlength{
8110 \backslash
8111 jot}{-6pt}
8112 \series default
8113  im TeX-Modus auf den Wert -6
8114 \begin_inset space \thinspace{}
8115 \end_inset
8116
8117 pt geändert.
8118  Nach der Formel wird 
8119 \series bold
8120
8121 \backslash
8122 jot
8123 \series default
8124  mit demselben Befehl wieder auf den Standardwert 3
8125 \begin_inset space \thinspace{}
8126 \end_inset
8127
8128 pt zurückgesetzt.
8129  Genaueres zum Zeilenabstand in Formeln ist in 
8130 \begin_inset CommandInset ref
8131 LatexCommand ref
8132 reference "sub:Zeilenabstand"
8133
8134 \end_inset
8135
8136  erklärt.
8137 \end_layout
8138
8139 \begin_layout Standard
8140 \begin_inset Newpage newpage
8141 \end_inset
8142
8143
8144 \end_layout
8145
8146 \begin_layout Section
8147 Pfeile
8148 \begin_inset Index idx
8149 status collapsed
8150
8151 \begin_layout Plain Layout
8152 Pfeile
8153 \end_layout
8154
8155 \end_inset
8156
8157
8158 \end_layout
8159
8160 \begin_layout Standard
8161 Pfeile können über den Mathe-Werkzeugleistenknopf 
8162 \begin_inset Graphics
8163         filename ../../images/math/leftarrow.png
8164         scale 85
8165
8166 \end_inset
8167
8168  oder mit den Befehlen eingefügt werden, die in den folgenden Unterkapiteln
8169  aufgelistet sind.
8170 \end_layout
8171
8172 \begin_layout Subsection
8173 Horizontale Pfeile
8174 \begin_inset Index idx
8175 status collapsed
8176
8177 \begin_layout Plain Layout
8178 Pfeile ! horizontale
8179 \end_layout
8180
8181 \end_inset
8182
8183
8184 \end_layout
8185
8186 \begin_layout Standard
8187 \begin_inset space \hfill{}
8188 \end_inset
8189
8190
8191 \begin_inset Tabular
8192 <lyxtabular version="3" rows="8" columns="2">
8193 <features tabularvalignment="middle">
8194 <column alignment="center" valignment="top" width="0pt">
8195 <column alignment="center" valignment="top" width="0pt">
8196 <row>
8197 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
8198 \begin_inset Text
8199
8200 \begin_layout Plain Layout
8201 Befehl
8202 \end_layout
8203
8204 \end_inset
8205 </cell>
8206 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8207 \begin_inset Text
8208
8209 \begin_layout Plain Layout
8210 Ergebnis
8211 \end_layout
8212
8213 \end_inset
8214 </cell>
8215 </row>
8216 <row>
8217 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8218 \begin_inset Text
8219
8220 \begin_layout Plain Layout
8221
8222 \backslash
8223 gets
8224 \end_layout
8225
8226 \end_inset
8227 </cell>
8228 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8229 \begin_inset Text
8230
8231 \begin_layout Plain Layout
8232 \begin_inset Formula $\gets$
8233 \end_inset
8234
8235
8236 \end_layout
8237
8238 \end_inset
8239 </cell>
8240 </row>
8241 <row>
8242 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8243 \begin_inset Text
8244
8245 \begin_layout Plain Layout
8246
8247 \backslash
8248 Leftarrow
8249 \end_layout
8250
8251 \end_inset
8252 </cell>
8253 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8254 \begin_inset Text
8255
8256 \begin_layout Plain Layout
8257 \begin_inset Formula $\Leftarrow$
8258 \end_inset
8259
8260
8261 \end_layout
8262
8263 \end_inset
8264 </cell>
8265 </row>
8266 <row>
8267 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
8268 \begin_inset Text
8269
8270 \begin_layout Plain Layout
8271
8272 \backslash
8273 longleftarrow
8274 \end_layout
8275
8276 \end_inset
8277 </cell>
8278 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8279 \begin_inset Text
8280
8281 \begin_layout Plain Layout
8282 \begin_inset Formula $\longleftarrow$
8283 \end_inset
8284
8285
8286 \end_layout
8287
8288 \end_inset
8289 </cell>
8290 </row>
8291 <row>
8292 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
8293 \begin_inset Text
8294
8295 \begin_layout Plain Layout
8296
8297 \backslash
8298 Longleftarrow
8299 \end_layout
8300
8301 \end_inset
8302 </cell>
8303 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
8304 \begin_inset Text
8305
8306 \begin_layout Plain Layout
8307 \begin_inset Formula $\Longleftarrow$
8308 \end_inset
8309
8310
8311 \end_layout
8312
8313 \end_inset
8314 </cell>
8315 </row>
8316 <row>
8317 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
8318 \begin_inset Text
8319
8320 \begin_layout Plain Layout
8321
8322 \backslash
8323 leftharpoonup
8324 \end_layout
8325
8326 \end_inset
8327 </cell>
8328 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
8329 \begin_inset Text
8330
8331 \begin_layout Plain Layout
8332 \begin_inset Formula $\leftharpoonup$
8333 \end_inset
8334
8335
8336 \end_layout
8337
8338 \end_inset
8339 </cell>
8340 </row>
8341 <row>
8342 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
8343 \begin_inset Text
8344
8345 \begin_layout Plain Layout
8346
8347 \backslash
8348 leftharpoondown
8349 \end_layout
8350
8351 \end_inset
8352 </cell>
8353 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
8354 \begin_inset Text
8355
8356 \begin_layout Plain Layout
8357 \begin_inset Formula $\leftharpoondown$
8358 \end_inset
8359
8360
8361 \end_layout
8362
8363 \end_inset
8364 </cell>
8365 </row>
8366 <row>
8367 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
8368 \begin_inset Text
8369
8370 \begin_layout Plain Layout
8371
8372 \backslash
8373 hookleftarrow
8374 \end_layout
8375
8376 \end_inset
8377 </cell>
8378 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
8379 \begin_inset Text
8380
8381 \begin_layout Plain Layout
8382 \begin_inset Formula $\hookleftarrow$
8383 \end_inset
8384
8385
8386 \end_layout
8387
8388 \end_inset
8389 </cell>
8390 </row>
8391 </lyxtabular>
8392
8393 \end_inset
8394
8395
8396 \begin_inset space \hfill{}
8397 \end_inset
8398
8399
8400 \begin_inset Tabular
8401 <lyxtabular version="3" rows="8" columns="2">
8402 <features tabularvalignment="middle">
8403 <column alignment="center" valignment="top" width="0pt">
8404 <column alignment="center" valignment="top" width="0pt">
8405 <row>
8406 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
8407 \begin_inset Text
8408
8409 \begin_layout Plain Layout
8410 Befehl
8411 \end_layout
8412
8413 \end_inset
8414 </cell>
8415 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8416 \begin_inset Text
8417
8418 \begin_layout Plain Layout
8419 Ergebnis
8420 \end_layout
8421
8422 \end_inset
8423 </cell>
8424 </row>
8425 <row>
8426 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8427 \begin_inset Text
8428
8429 \begin_layout Plain Layout
8430
8431 \backslash
8432 to
8433 \end_layout
8434
8435 \end_inset
8436 </cell>
8437 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8438 \begin_inset Text
8439
8440 \begin_layout Plain Layout
8441 \begin_inset Formula $\to$
8442 \end_inset
8443
8444
8445 \end_layout
8446
8447 \end_inset
8448 </cell>
8449 </row>
8450 <row>
8451 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8452 \begin_inset Text
8453
8454 \begin_layout Plain Layout
8455
8456 \backslash
8457 Rightarrow
8458 \end_layout
8459
8460 \end_inset
8461 </cell>
8462 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8463 \begin_inset Text
8464
8465 \begin_layout Plain Layout
8466 \begin_inset Formula $\Rightarrow$
8467 \end_inset
8468
8469
8470 \end_layout
8471
8472 \end_inset
8473 </cell>
8474 </row>
8475 <row>
8476 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8477 \begin_inset Text
8478
8479 \begin_layout Plain Layout
8480
8481 \backslash
8482 longrightarrow
8483 \end_layout
8484
8485 \end_inset
8486 </cell>
8487 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8488 \begin_inset Text
8489
8490 \begin_layout Plain Layout
8491 \begin_inset Formula $\longrightarrow$
8492 \end_inset
8493
8494
8495 \end_layout
8496
8497 \end_inset
8498 </cell>
8499 </row>
8500 <row>
8501 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8502 \begin_inset Text
8503
8504 \begin_layout Plain Layout
8505
8506 \backslash
8507 Longrightarrow
8508 \end_layout
8509
8510 \end_inset
8511 </cell>
8512 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8513 \begin_inset Text
8514
8515 \begin_layout Plain Layout
8516 \begin_inset Formula $\Longrightarrow$
8517 \end_inset
8518
8519
8520 \end_layout
8521
8522 \end_inset
8523 </cell>
8524 </row>
8525 <row>
8526 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8527 \begin_inset Text
8528
8529 \begin_layout Plain Layout
8530
8531 \backslash
8532 rightharpoonup
8533 \end_layout
8534
8535 \end_inset
8536 </cell>
8537 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8538 \begin_inset Text
8539
8540 \begin_layout Plain Layout
8541 \begin_inset Formula $\rightharpoonup$
8542 \end_inset
8543
8544
8545 \end_layout
8546
8547 \end_inset
8548 </cell>
8549 </row>
8550 <row>
8551 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
8552 \begin_inset Text
8553
8554 \begin_layout Plain Layout
8555
8556 \backslash
8557 rightharpoondown
8558 \end_layout
8559
8560 \end_inset
8561 </cell>
8562 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8563 \begin_inset Text
8564
8565 \begin_layout Plain Layout
8566 \begin_inset Formula $\rightharpoondown$
8567 \end_inset
8568
8569
8570 \end_layout
8571
8572 \end_inset
8573 </cell>
8574 </row>
8575 <row>
8576 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
8577 \begin_inset Text
8578
8579 \begin_layout Plain Layout
8580
8581 \backslash
8582 hookrightarrow
8583 \end_layout
8584
8585 \end_inset
8586 </cell>
8587 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
8588 \begin_inset Text
8589
8590 \begin_layout Plain Layout
8591 \begin_inset Formula $\hookrightarrow$
8592 \end_inset
8593
8594
8595 \end_layout
8596
8597 \end_inset
8598 </cell>
8599 </row>
8600 </lyxtabular>
8601
8602 \end_inset
8603
8604
8605 \begin_inset space \hfill{}
8606 \end_inset
8607
8608
8609 \end_layout
8610
8611 \begin_layout Standard
8612 \begin_inset space \hfill{}
8613 \end_inset
8614
8615
8616 \begin_inset Tabular
8617 <lyxtabular version="3" rows="6" columns="2">
8618 <features tabularvalignment="middle">
8619 <column alignment="center" valignment="top" width="0pt">
8620 <column alignment="center" valignment="top" width="0pt">
8621 <row>
8622 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
8623 \begin_inset Text
8624
8625 \begin_layout Plain Layout
8626 Befehl
8627 \end_layout
8628
8629 \end_inset
8630 </cell>
8631 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8632 \begin_inset Text
8633
8634 \begin_layout Plain Layout
8635 Ergebnis
8636 \end_layout
8637
8638 \end_inset
8639 </cell>
8640 </row>
8641 <row>
8642 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8643 \begin_inset Text
8644
8645 \begin_layout Plain Layout
8646
8647 \backslash
8648 leftrightarrow
8649 \end_layout
8650
8651 \end_inset
8652 </cell>
8653 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8654 \begin_inset Text
8655
8656 \begin_layout Plain Layout
8657 \begin_inset Formula $\leftrightarrow$
8658 \end_inset
8659
8660
8661 \end_layout
8662
8663 \end_inset
8664 </cell>
8665 </row>
8666 <row>
8667 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8668 \begin_inset Text
8669
8670 \begin_layout Plain Layout
8671
8672 \backslash
8673 Leftrightarrow
8674 \end_layout
8675
8676 \end_inset
8677 </cell>
8678 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8679 \begin_inset Text
8680
8681 \begin_layout Plain Layout
8682 \begin_inset Formula $\Leftrightarrow$
8683 \end_inset
8684
8685
8686 \end_layout
8687
8688 \end_inset
8689 </cell>
8690 </row>
8691 <row>
8692 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8693 \begin_inset Text
8694
8695 \begin_layout Plain Layout
8696
8697 \backslash
8698 longleftrightarrow
8699 \end_layout
8700
8701 \end_inset
8702 </cell>
8703 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8704 \begin_inset Text
8705
8706 \begin_layout Plain Layout
8707 \begin_inset Formula $\longleftrightarrow$
8708 \end_inset
8709
8710
8711 \end_layout
8712
8713 \end_inset
8714 </cell>
8715 </row>
8716 <row>
8717 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8718 \begin_inset Text
8719
8720 \begin_layout Plain Layout
8721
8722 \backslash
8723 Longleftrightarrow
8724 \end_layout
8725
8726 \end_inset
8727 </cell>
8728 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8729 \begin_inset Text
8730
8731 \begin_layout Plain Layout
8732 \begin_inset Formula $\Longleftrightarrow$
8733 \end_inset
8734
8735
8736 \end_layout
8737
8738 \end_inset
8739 </cell>
8740 </row>
8741 <row>
8742 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
8743 \begin_inset Text
8744
8745 \begin_layout Plain Layout
8746
8747 \backslash
8748 rightleftharpoons
8749 \end_layout
8750
8751 \end_inset
8752 </cell>
8753 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8754 \begin_inset Text
8755
8756 \begin_layout Plain Layout
8757 \begin_inset Formula $\rightleftharpoons$
8758 \end_inset
8759
8760
8761 \end_layout
8762
8763 \end_inset
8764 </cell>
8765 </row>
8766 </lyxtabular>
8767
8768 \end_inset
8769
8770
8771 \begin_inset space \hspace{}
8772 \length 25pt
8773 \end_inset
8774
8775
8776 \begin_inset space \hfill{}
8777 \end_inset
8778
8779
8780 \begin_inset Tabular
8781 <lyxtabular version="3" rows="5" columns="2">
8782 <features tabularvalignment="middle">
8783 <column alignment="center" valignment="top" width="0pt">
8784 <column alignment="center" valignment="top" width="0pt">
8785 <row>
8786 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
8787 \begin_inset Text
8788
8789 \begin_layout Plain Layout
8790 Befehl
8791 \end_layout
8792
8793 \end_inset
8794 </cell>
8795 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8796 \begin_inset Text
8797
8798 \begin_layout Plain Layout
8799 Ergebnis
8800 \end_layout
8801
8802 \end_inset
8803 </cell>
8804 </row>
8805 <row>
8806 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8807 \begin_inset Text
8808
8809 \begin_layout Plain Layout
8810
8811 \backslash
8812 mapsto
8813 \end_layout
8814
8815 \end_inset
8816 </cell>
8817 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8818 \begin_inset Text
8819
8820 \begin_layout Plain Layout
8821 \begin_inset Formula $\mapsto$
8822 \end_inset
8823
8824
8825 \end_layout
8826
8827 \end_inset
8828 </cell>
8829 </row>
8830 <row>
8831 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8832 \begin_inset Text
8833
8834 \begin_layout Plain Layout
8835
8836 \backslash
8837 longmapsto
8838 \end_layout
8839
8840 \end_inset
8841 </cell>
8842 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8843 \begin_inset Text
8844
8845 \begin_layout Plain Layout
8846 \begin_inset Formula $\longmapsto$
8847 \end_inset
8848
8849
8850 \end_layout
8851
8852 \end_inset
8853 </cell>
8854 </row>
8855 <row>
8856 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8857 \begin_inset Text
8858
8859 \begin_layout Plain Layout
8860
8861 \backslash
8862 leadsto
8863 \end_layout
8864
8865 \end_inset
8866 </cell>
8867 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8868 \begin_inset Text
8869
8870 \begin_layout Plain Layout
8871 \begin_inset Formula $\leadsto$
8872 \end_inset
8873
8874
8875 \end_layout
8876
8877 \end_inset
8878 </cell>
8879 </row>
8880 <row>
8881 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
8882 \begin_inset Text
8883
8884 \begin_layout Plain Layout
8885
8886 \backslash
8887 dasharrow
8888 \end_layout
8889
8890 \end_inset
8891 </cell>
8892 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8893 \begin_inset Text
8894
8895 \begin_layout Plain Layout
8896 \begin_inset Formula $\dasharrow$
8897 \end_inset
8898
8899
8900 \end_layout
8901
8902 \end_inset
8903 </cell>
8904 </row>
8905 </lyxtabular>
8906
8907 \end_inset
8908
8909
8910 \begin_inset space \hfill{}
8911 \end_inset
8912
8913
8914 \end_layout
8915
8916 \begin_layout Standard
8917 \begin_inset VSpace medskip
8918 \end_inset
8919
8920 Als Akzente verwendete Pfeile, wie z.
8921 \begin_inset space \thinspace{}
8922 \end_inset
8923
8924 B.
8925  Vektorpfeile, sind in 
8926 \begin_inset CommandInset ref
8927 LatexCommand ref
8928 reference "sec:Akzente"
8929
8930 \end_inset
8931
8932  aufgelistet.
8933 \end_layout
8934
8935 \begin_layout Standard
8936 \begin_inset VSpace bigskip
8937 \end_inset
8938
8939 Des Weiteren gibt es die beschriftbaren Pfeile
8940 \begin_inset Index idx
8941 status collapsed
8942
8943 \begin_layout Plain Layout
8944 Pfeile ! beschriftbare
8945 \end_layout
8946
8947 \end_inset
8948
8949  
8950 \series bold
8951
8952 \backslash
8953 xleftarrow
8954 \series default
8955
8956 \begin_inset Index idx
8957 status collapsed
8958
8959 \begin_layout Plain Layout
8960 Befehle ! X ! 
8961 \backslash
8962 xleftarrow
8963 \end_layout
8964
8965 \end_inset
8966
8967  und 
8968 \series bold
8969
8970 \backslash
8971 xrightarrow
8972 \series default
8973
8974 \begin_inset Index idx
8975 status collapsed
8976
8977 \begin_layout Plain Layout
8978 Befehle ! X ! 
8979 \backslash
8980 xrightarrow
8981 \begin_inset ERT
8982 status collapsed
8983
8984 \begin_layout Plain Layout
8985
8986
8987 \backslash
8988 vspace{4mm}
8989 \end_layout
8990
8991 \end_inset
8992
8993
8994 \end_layout
8995
8996 \end_inset
8997
8998 .
8999  Gibt man einen dieser Befehle in eine Formel ein, erscheint ein Pfeil mit
9000  zwei blauen Kästchen, in die man die Beschriftung eingeben kann.
9001  Die Pfeillänge passt sich der Breite der Beschriftung an.
9002 \end_layout
9003
9004 \begin_layout Standard
9005 \align center
9006 \begin_inset Tabular
9007 <lyxtabular version="3" rows="3" columns="2">
9008 <features tabularvalignment="middle">
9009 <column alignment="center" valignment="top" width="0pt">
9010 <column alignment="center" valignment="top" width="0pt">
9011 <row>
9012 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
9013 \begin_inset Text
9014
9015 \begin_layout Plain Layout
9016 Befehl
9017 \end_layout
9018
9019 \end_inset
9020 </cell>
9021 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
9022 \begin_inset Text
9023
9024 \begin_layout Plain Layout
9025 Ergebnis
9026 \begin_inset Note Note
9027 status collapsed
9028
9029 \begin_layout Plain Layout
9030
9031 \series bold
9032
9033 \backslash
9034 raisebox
9035 \series default
9036  dient nur als Abstandhalter.
9037 \end_layout
9038
9039 \end_inset
9040
9041
9042 \end_layout
9043
9044 \end_inset
9045 </cell>
9046 </row>
9047 <row>
9048 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9049 \begin_inset Text
9050
9051 \begin_layout Plain Layout
9052 F(a)
9053 \backslash
9054 xleftarrow
9055 \begin_inset ERT
9056 status collapsed
9057
9058 \begin_layout Plain Layout
9059
9060
9061 \backslash
9062 leer 
9063 \end_layout
9064
9065 \end_inset
9066
9067 x=a
9068 \begin_inset Formula $\downarrow$
9069 \end_inset
9070
9071 x>0
9072 \begin_inset Formula $\to$
9073 \end_inset
9074
9075 F(x)
9076 \end_layout
9077
9078 \end_inset
9079 </cell>
9080 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9081 \begin_inset Text
9082
9083 \begin_layout Plain Layout
9084 \begin_inset Formula $\raisebox{5mm}{}F(a)\xleftarrow[x>0]{x=a}F(x)\raisebox{-4mm}{}$
9085 \end_inset
9086
9087
9088 \end_layout
9089
9090 \end_inset
9091 </cell>
9092 </row>
9093 <row>
9094 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
9095 \begin_inset Text
9096
9097 \begin_layout Plain Layout
9098 F(x)
9099 \backslash
9100 xrightarrow
9101 \begin_inset ERT
9102 status collapsed
9103
9104 \begin_layout Plain Layout
9105
9106
9107 \backslash
9108 leer 
9109 \end_layout
9110
9111 \end_inset
9112
9113 x=a
9114 \begin_inset Formula $\downarrow$
9115 \end_inset
9116
9117 x>0
9118 \begin_inset Formula $\to$
9119 \end_inset
9120
9121 F(a)
9122 \end_layout
9123
9124 \end_inset
9125 </cell>
9126 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
9127 \begin_inset Text
9128
9129 \begin_layout Plain Layout
9130 \begin_inset Formula $\raisebox{5mm}{}F(x)\xrightarrow[x>0]{x=a}F(a)\raisebox{-4mm}{}$
9131 \end_inset
9132
9133
9134 \end_layout
9135
9136 \end_inset
9137 </cell>
9138 </row>
9139 </lyxtabular>
9140
9141 \end_inset
9142
9143
9144 \end_layout
9145
9146 \begin_layout Standard
9147 \begin_inset Newpage newpage
9148 \end_inset
9149
9150
9151 \end_layout
9152
9153 \begin_layout Subsection
9154 Vertikale und diagonale Pfeile
9155 \begin_inset Index idx
9156 status collapsed
9157
9158 \begin_layout Plain Layout
9159 Pfeile ! diagonale
9160 \end_layout
9161
9162 \end_inset
9163
9164
9165 \begin_inset Index idx
9166 status collapsed
9167
9168 \begin_layout Plain Layout
9169 Pfeile ! vertikale
9170 \end_layout
9171
9172 \end_inset
9173
9174
9175 \end_layout
9176
9177 \begin_layout Standard
9178 \begin_inset space \hfill{}
9179 \end_inset
9180
9181
9182 \begin_inset Tabular
9183 <lyxtabular version="3" rows="7" columns="2">
9184 <features tabularvalignment="middle">
9185 <column alignment="center" valignment="top" width="0pt">
9186 <column alignment="center" valignment="top" width="0pt">
9187 <row>
9188 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
9189 \begin_inset Text
9190
9191 \begin_layout Plain Layout
9192 Befehl
9193 \end_layout
9194
9195 \end_inset
9196 </cell>
9197 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
9198 \begin_inset Text
9199
9200 \begin_layout Plain Layout
9201 Ergebnis
9202 \end_layout
9203
9204 \end_inset
9205 </cell>
9206 </row>
9207 <row>
9208 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9209 \begin_inset Text
9210
9211 \begin_layout Plain Layout
9212
9213 \backslash
9214 uparrow
9215 \end_layout
9216
9217 \end_inset
9218 </cell>
9219 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9220 \begin_inset Text
9221
9222 \begin_layout Plain Layout
9223 \begin_inset Formula $\uparrow$
9224 \end_inset
9225
9226
9227 \end_layout
9228
9229 \end_inset
9230 </cell>
9231 </row>
9232 <row>
9233 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9234 \begin_inset Text
9235
9236 \begin_layout Plain Layout
9237
9238 \backslash
9239 Uparrow
9240 \end_layout
9241
9242 \end_inset
9243 </cell>
9244 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9245 \begin_inset Text
9246
9247 \begin_layout Plain Layout
9248 \begin_inset Formula $\Uparrow$
9249 \end_inset
9250
9251
9252 \end_layout
9253
9254 \end_inset
9255 </cell>
9256 </row>
9257 <row>
9258 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9259 \begin_inset Text
9260
9261 \begin_layout Plain Layout
9262
9263 \backslash
9264 updownarrow
9265 \end_layout
9266
9267 \end_inset
9268 </cell>
9269 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9270 \begin_inset Text
9271
9272 \begin_layout Plain Layout
9273 \begin_inset Formula $\updownarrow$
9274 \end_inset
9275
9276
9277 \end_layout
9278
9279 \end_inset
9280 </cell>
9281 </row>
9282 <row>
9283 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9284 \begin_inset Text
9285
9286 \begin_layout Plain Layout
9287
9288 \backslash
9289 Updownarrow
9290 \end_layout
9291
9292 \end_inset
9293 </cell>
9294 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9295 \begin_inset Text
9296
9297 \begin_layout Plain Layout
9298 \begin_inset Formula $\Updownarrow$
9299 \end_inset
9300
9301
9302 \end_layout
9303
9304 \end_inset
9305 </cell>
9306 </row>
9307 <row>
9308 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
9309 \begin_inset Text
9310
9311 \begin_layout Plain Layout
9312
9313 \backslash
9314 Downarrow
9315 \end_layout
9316
9317 \end_inset
9318 </cell>
9319 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
9320 \begin_inset Text
9321
9322 \begin_layout Plain Layout
9323 \begin_inset Formula $\Downarrow$
9324 \end_inset
9325
9326
9327 \end_layout
9328
9329 \end_inset
9330 </cell>
9331 </row>
9332 <row>
9333 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9334 \begin_inset Text
9335
9336 \begin_layout Plain Layout
9337
9338 \backslash
9339 downarrow
9340 \end_layout
9341
9342 \end_inset
9343 </cell>
9344 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9345 \begin_inset Text
9346
9347 \begin_layout Plain Layout
9348 \begin_inset Formula $\downarrow$
9349 \end_inset
9350
9351
9352 \end_layout
9353
9354 \end_inset
9355 </cell>
9356 </row>
9357 </lyxtabular>
9358
9359 \end_inset
9360
9361
9362 \begin_inset space \hfill{}
9363 \end_inset
9364
9365
9366 \begin_inset Tabular
9367 <lyxtabular version="3" rows="5" columns="2">
9368 <features tabularvalignment="middle">
9369 <column alignment="center" valignment="top" width="0pt">
9370 <column alignment="center" valignment="top" width="0pt">
9371 <row>
9372 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
9373 \begin_inset Text
9374
9375 \begin_layout Plain Layout
9376 Befehl
9377 \end_layout
9378
9379 \end_inset
9380 </cell>
9381 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
9382 \begin_inset Text
9383
9384 \begin_layout Plain Layout
9385 Ergebnis
9386 \end_layout
9387
9388 \end_inset
9389 </cell>
9390 </row>
9391 <row>
9392 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9393 \begin_inset Text
9394
9395 \begin_layout Plain Layout
9396
9397 \backslash
9398 nearrow
9399 \end_layout
9400
9401 \end_inset
9402 </cell>
9403 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9404 \begin_inset Text
9405
9406 \begin_layout Plain Layout
9407 \begin_inset Formula $\nearrow$
9408 \end_inset
9409
9410
9411 \end_layout
9412
9413 \end_inset
9414 </cell>
9415 </row>
9416 <row>
9417 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9418 \begin_inset Text
9419
9420 \begin_layout Plain Layout
9421
9422 \backslash
9423 searrow
9424 \end_layout
9425
9426 \end_inset
9427 </cell>
9428 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9429 \begin_inset Text
9430
9431 \begin_layout Plain Layout
9432 \begin_inset Formula $\searrow$
9433 \end_inset
9434
9435
9436 \end_layout
9437
9438 \end_inset
9439 </cell>
9440 </row>
9441 <row>
9442 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
9443 \begin_inset Text
9444
9445 \begin_layout Plain Layout
9446
9447 \backslash
9448 swarrow
9449 \end_layout
9450
9451 \end_inset
9452 </cell>
9453 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
9454 \begin_inset Text
9455
9456 \begin_layout Plain Layout
9457 \begin_inset Formula $\swarrow$
9458 \end_inset
9459
9460
9461 \end_layout
9462
9463 \end_inset
9464 </cell>
9465 </row>
9466 <row>
9467 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9468 \begin_inset Text
9469
9470 \begin_layout Plain Layout
9471
9472 \backslash
9473 nwarrow
9474 \end_layout
9475
9476 \end_inset
9477 </cell>
9478 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9479 \begin_inset Text
9480
9481 \begin_layout Plain Layout
9482 \begin_inset Formula $\nwarrow$
9483 \end_inset
9484
9485
9486 \end_layout
9487
9488 \end_inset
9489 </cell>
9490 </row>
9491 </lyxtabular>
9492
9493 \end_inset
9494
9495
9496 \begin_inset space \hfill{}
9497 \end_inset
9498
9499
9500 \end_layout
9501
9502 \begin_layout Standard
9503 \begin_inset VSpace medskip
9504 \end_inset
9505
9506 Vertikale Pfeile können auch als Begrenzungszeichen zusammen mit den in
9507  
9508 \begin_inset CommandInset ref
9509 LatexCommand ref
9510 reference "sub:Manuelle-Klammergrößen"
9511
9512 \end_inset
9513
9514  und 
9515 \begin_inset CommandInset ref
9516 LatexCommand ref
9517 reference "sub:Automatische-Klammergrößen"
9518
9519 \end_inset
9520
9521  beschriebenen Befehlen verwendet werden.
9522 \end_layout
9523
9524 \begin_layout Section
9525 Akzente
9526 \begin_inset CommandInset label
9527 LatexCommand label
9528 name "sec:Akzente"
9529
9530 \end_inset
9531
9532
9533 \begin_inset Index idx
9534 status collapsed
9535
9536 \begin_layout Plain Layout
9537 Akzente
9538 \end_layout
9539
9540 \end_inset
9541
9542
9543 \end_layout
9544
9545 \begin_layout Standard
9546 Akzente können über den Mathe-Werkzeugleistenknopf 
9547 \begin_inset Graphics
9548         filename ../../images/math/hat.png
9549         scale 85
9550
9551 \end_inset
9552
9553  oder mit den Befehlen eingefügt werden, die in den folgenden Unterkapiteln
9554  aufgelistet sind.
9555 \end_layout
9556
9557 \begin_layout Subsection
9558 Akzente für ein Zeichen
9559 \begin_inset ERT
9560 status collapsed
9561
9562 \begin_layout Plain Layout
9563
9564
9565 \backslash
9566 texorpdfstring{
9567 \end_layout
9568
9569 \end_inset
9570
9571
9572 \begin_inset Foot
9573 status collapsed
9574
9575 \begin_layout Plain Layout
9576 Akzente im Text siehe 
9577 \begin_inset CommandInset ref
9578 LatexCommand ref
9579 reference "sub:Sonderzeichen-Akzente"
9580
9581 \end_inset
9582
9583
9584 \end_layout
9585
9586 \end_inset
9587
9588
9589 \begin_inset ERT
9590 status collapsed
9591
9592 \begin_layout Plain Layout
9593
9594 }{}
9595 \end_layout
9596
9597 \end_inset
9598
9599
9600 \begin_inset Note Note
9601 status collapsed
9602
9603 \begin_layout Plain Layout
9604
9605 \series bold
9606
9607 \backslash
9608 texorpdfstring
9609 \series default
9610  dient dazu, dass die Fußnote nicht im PDF-Lesezeichen erscheint.
9611 \end_layout
9612
9613 \begin_layout Plain Layout
9614 Näheres zu 
9615 \series bold
9616
9617 \backslash
9618 texorpdfstring
9619 \series default
9620  steht in Kapitel 
9621 \begin_inset CommandInset ref
9622 LatexCommand ref
9623 reference "sub:Formeln-in-Überschriften"
9624
9625 \end_inset
9626
9627 .
9628 \end_layout
9629
9630 \end_inset
9631
9632
9633 \begin_inset CommandInset label
9634 LatexCommand label
9635 name "sub:Akzente-für-ein"
9636
9637 \end_inset
9638
9639
9640 \begin_inset Index idx
9641 status collapsed
9642
9643 \begin_layout Plain Layout
9644 Akzente ! für ein Zeichen
9645 \end_layout
9646
9647 \end_inset
9648
9649
9650 \end_layout
9651
9652 \begin_layout Standard
9653 \begin_inset space \hfill{}
9654 \end_inset
9655
9656
9657 \begin_inset Tabular
9658 <lyxtabular version="3" rows="8" columns="2">
9659 <features tabularvalignment="middle">
9660 <column alignment="center" valignment="top" width="0pt">
9661 <column alignment="center" valignment="top" width="0pt">
9662 <row>
9663 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
9664 \begin_inset Text
9665
9666 \begin_layout Plain Layout
9667 Befehl
9668 \end_layout
9669
9670 \end_inset
9671 </cell>
9672 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
9673 \begin_inset Text
9674
9675 \begin_layout Plain Layout
9676 Ergebnis
9677 \begin_inset Note Note
9678 status collapsed
9679
9680 \begin_layout Plain Layout
9681
9682 \series bold
9683
9684 \backslash
9685 raisebox
9686 \series default
9687  dient nur als Abstandhalter.
9688 \end_layout
9689
9690 \end_inset
9691
9692
9693 \end_layout
9694
9695 \end_inset
9696 </cell>
9697 </row>
9698 <row>
9699 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
9700 \begin_inset Text
9701
9702 \begin_layout Plain Layout
9703
9704 \backslash
9705 dot
9706 \begin_inset ERT
9707 status collapsed
9708
9709 \begin_layout Plain Layout
9710
9711
9712 \backslash
9713 leer 
9714 \end_layout
9715
9716 \end_inset
9717
9718 A
9719 \end_layout
9720
9721 \end_inset
9722 </cell>
9723 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
9724 \begin_inset Text
9725
9726 \begin_layout Plain Layout
9727 \begin_inset Formula $\raisebox{5mm}{}\dot{A}$
9728 \end_inset
9729
9730
9731 \end_layout
9732
9733 \end_inset
9734 </cell>
9735 </row>
9736 <row>
9737 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9738 \begin_inset Text
9739
9740 \begin_layout Plain Layout
9741
9742 \backslash
9743 ddot
9744 \begin_inset ERT
9745 status collapsed
9746
9747 \begin_layout Plain Layout
9748
9749
9750 \backslash
9751 leer 
9752 \end_layout
9753
9754 \end_inset
9755
9756 A
9757 \end_layout
9758
9759 \end_inset
9760 </cell>
9761 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9762 \begin_inset Text
9763
9764 \begin_layout Plain Layout
9765 \begin_inset Formula $\raisebox{5mm}{}\ddot{A}$
9766 \end_inset
9767
9768
9769 \end_layout
9770
9771 \end_inset
9772 </cell>
9773 </row>
9774 <row>
9775 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9776 \begin_inset Text
9777
9778 \begin_layout Plain Layout
9779
9780 \backslash
9781 dddot
9782 \begin_inset ERT
9783 status collapsed
9784
9785 \begin_layout Plain Layout
9786
9787
9788 \backslash
9789 leer 
9790 \end_layout
9791
9792 \end_inset
9793
9794 A
9795 \end_layout
9796
9797 \end_inset
9798 </cell>
9799 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9800 \begin_inset Text
9801
9802 \begin_layout Plain Layout
9803 \begin_inset Formula $\raisebox{5mm}{}\dddot{A}$
9804 \end_inset
9805
9806
9807 \end_layout
9808
9809 \end_inset
9810 </cell>
9811 </row>
9812 <row>
9813 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9814 \begin_inset Text
9815
9816 \begin_layout Plain Layout
9817
9818 \backslash
9819 ddddot
9820 \begin_inset ERT
9821 status collapsed
9822
9823 \begin_layout Plain Layout
9824
9825
9826 \backslash
9827 leer 
9828 \end_layout
9829
9830 \end_inset
9831
9832 A
9833 \end_layout
9834
9835 \end_inset
9836 </cell>
9837 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9838 \begin_inset Text
9839
9840 \begin_layout Plain Layout
9841 \begin_inset Formula $\raisebox{5mm}{}\ddddot{A}$
9842 \end_inset
9843
9844
9845 \end_layout
9846
9847 \end_inset
9848 </cell>
9849 </row>
9850 <row>
9851 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9852 \begin_inset Text
9853
9854 \begin_layout Plain Layout
9855
9856 \backslash
9857 vec
9858 \begin_inset ERT
9859 status collapsed
9860
9861 \begin_layout Plain Layout
9862
9863
9864 \backslash
9865 leer 
9866 \end_layout
9867
9868 \end_inset
9869
9870 A
9871 \begin_inset Index idx
9872 status collapsed
9873
9874 \begin_layout Plain Layout
9875 Vektoren
9876 \end_layout
9877
9878 \end_inset
9879
9880
9881 \end_layout
9882
9883 \end_inset
9884 </cell>
9885 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9886 \begin_inset Text
9887
9888 \begin_layout Plain Layout
9889 \begin_inset Formula $\raisebox{5mm}{}\vec{A}$
9890 \end_inset
9891
9892
9893 \end_layout
9894
9895 \end_inset
9896 </cell>
9897 </row>
9898 <row>
9899 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9900 \begin_inset Text
9901
9902 \begin_layout Plain Layout
9903
9904 \backslash
9905 bar
9906 \begin_inset ERT
9907 status collapsed
9908
9909 \begin_layout Plain Layout
9910
9911
9912 \backslash
9913 leer 
9914 \end_layout
9915
9916 \end_inset
9917
9918 A
9919 \end_layout
9920
9921 \end_inset
9922 </cell>
9923 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9924 \begin_inset Text
9925
9926 \begin_layout Plain Layout
9927 \begin_inset Formula $\raisebox{5mm}{}\bar{A}$
9928 \end_inset
9929
9930
9931 \end_layout
9932
9933 \end_inset
9934 </cell>
9935 </row>
9936 <row>
9937 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9938 \begin_inset Text
9939
9940 \begin_layout Plain Layout
9941
9942 \backslash
9943 mathring
9944 \begin_inset ERT
9945 status collapsed
9946
9947 \begin_layout Plain Layout
9948
9949
9950 \backslash
9951 leer 
9952 \end_layout
9953
9954 \end_inset
9955
9956 A
9957 \end_layout
9958
9959 \end_inset
9960 </cell>
9961 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9962 \begin_inset Text
9963
9964 \begin_layout Plain Layout
9965 \begin_inset Formula $\raisebox{5mm}{}\mathring{A}$
9966 \end_inset
9967
9968
9969 \end_layout
9970
9971 \end_inset
9972 </cell>
9973 </row>
9974 </lyxtabular>
9975
9976 \end_inset
9977
9978
9979 \begin_inset space \hfill{}
9980 \end_inset
9981
9982
9983 \begin_inset Tabular
9984 <lyxtabular version="3" rows="7" columns="2">
9985 <features tabularvalignment="middle">
9986 <column alignment="center" valignment="top" width="0pt">
9987 <column alignment="center" valignment="top" width="0pt">
9988 <row>
9989 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
9990 \begin_inset Text
9991
9992 \begin_layout Plain Layout
9993 Befehl
9994 \end_layout
9995
9996 \end_inset
9997 </cell>
9998 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
9999 \begin_inset Text
10000
10001 \begin_layout Plain Layout
10002 Ergebnis
10003 \end_layout
10004
10005 \end_inset
10006 </cell>
10007 </row>
10008 <row>
10009 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
10010 \begin_inset Text
10011
10012 \begin_layout Plain Layout
10013
10014 \backslash
10015 tilde
10016 \begin_inset ERT
10017 status collapsed
10018
10019 \begin_layout Plain Layout
10020
10021
10022 \backslash
10023 leer 
10024 \end_layout
10025
10026 \end_inset
10027
10028 A
10029 \end_layout
10030
10031 \end_inset
10032 </cell>
10033 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
10034 \begin_inset Text
10035
10036 \begin_layout Plain Layout
10037 \begin_inset Formula $\raisebox{5mm}{}\tilde{A}$
10038 \end_inset
10039
10040
10041 \end_layout
10042
10043 \end_inset
10044 </cell>
10045 </row>
10046 <row>
10047 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10048 \begin_inset Text
10049
10050 \begin_layout Plain Layout
10051
10052 \backslash
10053 hat
10054 \begin_inset ERT
10055 status collapsed
10056
10057 \begin_layout Plain Layout
10058
10059
10060 \backslash
10061 leer 
10062 \end_layout
10063
10064 \end_inset
10065
10066 A
10067 \end_layout
10068
10069 \end_inset
10070 </cell>
10071 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
10072 \begin_inset Text
10073
10074 \begin_layout Plain Layout
10075 \begin_inset Formula $\raisebox{5mm}{}\hat{A}$
10076 \end_inset
10077
10078
10079 \end_layout
10080
10081 \end_inset
10082 </cell>
10083 </row>
10084 <row>
10085 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10086 \begin_inset Text
10087
10088 \begin_layout Plain Layout
10089
10090 \backslash
10091 check
10092 \begin_inset ERT
10093 status collapsed
10094
10095 \begin_layout Plain Layout
10096
10097
10098 \backslash
10099 leer 
10100 \end_layout
10101
10102 \end_inset
10103
10104 A
10105 \end_layout
10106
10107 \end_inset
10108 </cell>
10109 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
10110 \begin_inset Text
10111
10112 \begin_layout Plain Layout
10113 \begin_inset Formula $\raisebox{5mm}{}\check{A}$
10114 \end_inset
10115
10116
10117 \end_layout
10118
10119 \end_inset
10120 </cell>
10121 </row>
10122 <row>
10123 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10124 \begin_inset Text
10125
10126 \begin_layout Plain Layout
10127
10128 \backslash
10129 acute
10130 \begin_inset ERT
10131 status collapsed
10132
10133 \begin_layout Plain Layout
10134
10135
10136 \backslash
10137 leer 
10138 \end_layout
10139
10140 \end_inset
10141
10142 A
10143 \end_layout
10144
10145 \end_inset
10146 </cell>
10147 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
10148 \begin_inset Text
10149
10150 \begin_layout Plain Layout
10151 \begin_inset Formula $\raisebox{5mm}{}\acute{A}$
10152 \end_inset
10153
10154
10155 \end_layout
10156
10157 \end_inset
10158 </cell>
10159 </row>
10160 <row>
10161 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10162 \begin_inset Text
10163
10164 \begin_layout Plain Layout
10165
10166 \backslash
10167 grave
10168 \begin_inset ERT
10169 status collapsed
10170
10171 \begin_layout Plain Layout
10172
10173
10174 \backslash
10175 leer 
10176 \end_layout
10177
10178 \end_inset
10179
10180 A
10181 \end_layout
10182
10183 \end_inset
10184 </cell>
10185 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
10186 \begin_inset Text
10187
10188 \begin_layout Plain Layout
10189 \begin_inset Formula $\raisebox{5mm}{}\grave{A}$
10190 \end_inset
10191
10192
10193 \end_layout
10194
10195 \end_inset
10196 </cell>
10197 </row>
10198 <row>
10199 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10200 \begin_inset Text
10201
10202 \begin_layout Plain Layout
10203
10204 \backslash
10205 breve
10206 \begin_inset ERT
10207 status collapsed
10208
10209 \begin_layout Plain Layout
10210
10211
10212 \backslash
10213 leer 
10214 \end_layout
10215
10216 \end_inset
10217
10218 A
10219 \end_layout
10220
10221 \end_inset
10222 </cell>
10223 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
10224 \begin_inset Text
10225
10226 \begin_layout Plain Layout
10227 \begin_inset Formula $\raisebox{5mm}{}\breve{A}$
10228 \end_inset
10229
10230
10231 \end_layout
10232
10233 \end_inset
10234 </cell>
10235 </row>
10236 </lyxtabular>
10237
10238 \end_inset
10239
10240
10241 \begin_inset space \hfill{}
10242 \end_inset
10243
10244
10245 \end_layout
10246
10247 \begin_layout Standard
10248 \begin_inset VSpace bigskip
10249 \end_inset
10250
10251 Akzente wie z.B.
10252  é können direkt in Formeln eingegeben werden.
10253  LyX transformiert sie dann in den entsprechenden Akzentbefehl.
10254  Für Umlaute
10255 \begin_inset Index idx
10256 status collapsed
10257
10258 \begin_layout Plain Layout
10259 Umlaute
10260 \end_layout
10261
10262 \end_inset
10263
10264  ist es besser wenn man ein Anführungszeichen vor den Selbstlaut schreibt.
10265  Diese beiden Zeichen bilden dann für LaTeX 
10266 \emph on
10267 ein
10268 \emph default
10269  Zeichen.
10270  Im Gegensatz zu 
10271 \series bold
10272
10273 \backslash
10274 ddot
10275 \series default
10276  entstehen damit 
10277 \begin_inset Quotes gld
10278 \end_inset
10279
10280 echte
10281 \begin_inset Quotes grd
10282 \end_inset
10283
10284  Umlaute, was folgendes Beispiel zeigt:
10285 \end_layout
10286
10287 \begin_layout Standard
10288 \begin_inset VSpace -2mm
10289 \end_inset
10290
10291
10292 \end_layout
10293
10294 \begin_layout Standard
10295 \align center
10296 \begin_inset Tabular
10297 <lyxtabular version="3" rows="3" columns="2">
10298 <features tabularvalignment="middle">
10299 <column alignment="center" valignment="top" width="0">
10300 <column alignment="center" valignment="top" width="0">
10301 <row>
10302 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
10303 \begin_inset Text
10304
10305 \begin_layout Plain Layout
10306 Befehl
10307 \end_layout
10308
10309 \end_inset
10310 </cell>
10311 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
10312 \begin_inset Text
10313
10314 \begin_layout Plain Layout
10315 Ergebnis
10316 \begin_inset Note Note
10317 status collapsed
10318
10319 \begin_layout Plain Layout
10320
10321 \series bold
10322
10323 \backslash
10324 raisebox
10325 \series default
10326  dient nur als Abstandhalter.
10327 \end_layout
10328
10329 \end_inset
10330
10331
10332 \end_layout
10333
10334 \end_inset
10335 </cell>
10336 </row>
10337 <row>
10338 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10339 \begin_inset Text
10340
10341 \begin_layout Plain Layout
10342 \begin_inset Quotes grd
10343 \end_inset
10344
10345 i
10346 \end_layout
10347
10348 \end_inset
10349 </cell>
10350 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10351 \begin_inset Text
10352
10353 \begin_layout Plain Layout
10354 \begin_inset Formula $"i$
10355 \end_inset
10356
10357
10358 \end_layout
10359
10360 \end_inset
10361 </cell>
10362 </row>
10363 <row>
10364 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
10365 \begin_inset Text
10366
10367 \begin_layout Plain Layout
10368
10369 \backslash
10370 ddot
10371 \begin_inset ERT
10372 status collapsed
10373
10374 \begin_layout Plain Layout
10375
10376
10377 \backslash
10378 leer 
10379 \end_layout
10380
10381 \end_inset
10382
10383 i
10384 \end_layout
10385
10386 \end_inset
10387 </cell>
10388 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
10389 \begin_inset Text
10390
10391 \begin_layout Plain Layout
10392 \begin_inset Formula $\raisebox{5mm}{}\ddot{i}$
10393 \end_inset
10394
10395
10396 \end_layout
10397
10398 \end_inset
10399 </cell>
10400 </row>
10401 </lyxtabular>
10402
10403 \end_inset
10404
10405
10406 \end_layout
10407
10408 \begin_layout Standard
10409 Ein weiterer Vorteil gegenüber 
10410 \series bold
10411
10412 \backslash
10413 ddot
10414 \series default
10415  ist, dass man Umlaute direkt in mathematischen Text konvertieren kann,
10416  denn die obigen Akzentbefehle sind 
10417 \emph on
10418 im mathematischen Text\SpecialChar \-
10419 modus nicht erlaubt
10420 \emph default
10421 .
10422  Um ein akzentuiertes Zeichen in mathematischen Text zu überführen, darf
10423  nur das Zeichen unter dem Akzent umgewandelt werden.
10424  Das gilt auch für alle anderen Umwandlungen wie z.
10425 \begin_inset space \thinspace{}
10426 \end_inset
10427
10428 B.
10429  in kursiv oder fett.
10430 \end_layout
10431
10432 \begin_layout Standard
10433 Im mathematischen Textmodus können Umlaute und andere akzentuierten Zeichen
10434  direkt eingegeben werden.
10435 \end_layout
10436
10437 \begin_layout Subsection
10438 Akzente für Operatoren
10439 \begin_inset Index idx
10440 status collapsed
10441
10442 \begin_layout Plain Layout
10443 Akzente ! für Operatoren
10444 \end_layout
10445
10446 \end_inset
10447
10448
10449 \end_layout
10450
10451 \begin_layout Standard
10452 Zum Akzentuieren von Operatoren gibt es die Befehle 
10453 \series bold
10454
10455 \backslash
10456 overset
10457 \series default
10458
10459 \begin_inset Index idx
10460 status collapsed
10461
10462 \begin_layout Plain Layout
10463 Befehle ! O ! 
10464 \backslash
10465 overset
10466 \end_layout
10467
10468 \end_inset
10469
10470  und 
10471 \series bold
10472
10473 \backslash
10474 underset
10475 \series default
10476
10477 \begin_inset Index idx
10478 status collapsed
10479
10480 \begin_layout Plain Layout
10481 Befehle ! U ! 
10482 \backslash
10483 underset
10484 \end_layout
10485
10486 \end_inset
10487
10488 , mit denen man Zeichen über bzw.
10489  unter einen Operator setzen kann.
10490  Mit dem Befehl 
10491 \series bold
10492
10493 \backslash
10494 sideset
10495 \series default
10496
10497 \begin_inset Index idx
10498 status collapsed
10499
10500 \begin_layout Plain Layout
10501 Befehle ! S ! 
10502 \backslash
10503 sideset
10504 \end_layout
10505
10506 \end_inset
10507
10508  können Zeichen vor und nach einen Operator gesetzt werden.
10509  Das Befehlsschema lautet:
10510 \end_layout
10511
10512 \begin_layout Standard
10513
10514 \series bold
10515
10516 \backslash
10517 sideset{Zeichen
10518 \series default
10519  
10520 \series bold
10521 davor}{Zeichen
10522 \series default
10523  
10524 \series bold
10525 dahinter}
10526 \end_layout
10527
10528 \begin_layout Standard
10529
10530 \series bold
10531
10532 \backslash
10533 sideset
10534 \series default
10535  muss immer vor dem zu akzentuierenden Operator stehen.
10536  Es kann auch mit mehreren Zeichen und sogar mit anderen Operatoren und
10537  Symbolen akzentuiert werden.
10538  Will man mit 
10539 \series bold
10540
10541 \backslash
10542 sideset
10543 \series default
10544  z.
10545 \begin_inset space \thinspace{}
10546 \end_inset
10547
10548 B.
10549  nur Zeichen hinter einen Operator setzen, schreibt man nichts zwischen
10550  die ersten geschweiften Klammern, lässt die Klammern aber nicht weg.
10551 \end_layout
10552
10553 \begin_layout Standard
10554 Z.
10555 \begin_inset space \thinspace{}
10556 \end_inset
10557
10558 B.
10559  ergibt der Befehl 
10560 \series bold
10561
10562 \backslash
10563 sideset{
10564 \begin_inset Formula $\to$
10565 \end_inset
10566
10567
10568 \backslash
10569 {
10570 \series default
10571 '
10572 \series bold
10573
10574 \begin_inset Formula $\to$
10575 \end_inset
10576
10577
10578 \backslash
10579 sum_k=1
10580 \begin_inset ERT
10581 status collapsed
10582
10583 \begin_layout Plain Layout
10584
10585
10586 \backslash
10587 leer 
10588 \end_layout
10589
10590 \end_inset
10591
10592
10593 \series default
10594 ^
10595 \series bold
10596 n
10597 \series default
10598  :
10599 \begin_inset Formula 
10600 \[
10601 \sideset{}{'}\sum_{k=1}^{n}
10602 \]
10603
10604 \end_inset
10605
10606
10607 \end_layout
10608
10609 \begin_layout Standard
10610 Der Befehl 
10611 \series bold
10612
10613 \backslash
10614 overset
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
10628 \backslash
10629 maltese
10630 \begin_inset ERT
10631 status collapsed
10632
10633 \begin_layout Plain Layout
10634
10635
10636 \backslash
10637 leer 
10638 \end_layout
10639
10640 \end_inset
10641
10642
10643 \series default
10644
10645 \begin_inset Formula $\uparrow$
10646 \end_inset
10647
10648
10649 \series bold
10650 a
10651 \series default
10652  ergibt:
10653 \begin_inset Formula 
10654 \[
10655 \overset{a}{\maltese}
10656 \]
10657
10658 \end_inset
10659
10660 Wie man am letzten Beispiel sieht, kann man mit 
10661 \series bold
10662
10663 \backslash
10664 overset
10665 \series default
10666  bzw.
10667  
10668 \series bold
10669
10670 \backslash
10671 underset
10672 \series default
10673  außer Operatoren auch Symbole und Zeichen akzentuieren; mit 
10674 \series bold
10675
10676 \backslash
10677 sideset
10678 \series default
10679  ist dies nicht möglich.
10680 \end_layout
10681
10682 \begin_layout Subsection
10683 Akzente für mehrere Zeichen
10684 \begin_inset Index idx
10685 status collapsed
10686
10687 \begin_layout Plain Layout
10688 Akzente ! für mehrere Zeichen
10689 \end_layout
10690
10691 \end_inset
10692
10693
10694 \end_layout
10695
10696 \begin_layout Standard
10697 \begin_inset space \hfill{}
10698 \end_inset
10699
10700
10701 \begin_inset Tabular
10702 <lyxtabular version="3" rows="5" columns="2">
10703 <features tabularvalignment="middle">
10704 <column alignment="center" valignment="top" width="0pt">
10705 <column alignment="center" valignment="top" width="0pt">
10706 <row>
10707 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
10708 \begin_inset Text
10709
10710 \begin_layout Plain Layout
10711 Befehl
10712 \end_layout
10713
10714 \end_inset
10715 </cell>
10716 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
10717 \begin_inset Text
10718
10719 \begin_layout Plain Layout
10720 Ergebnis
10721 \begin_inset Note Note
10722 status collapsed
10723
10724 \begin_layout Plain Layout
10725
10726 \series bold
10727
10728 \backslash
10729 raisebox
10730 \series default
10731  dient nur als Abstandhalter.
10732 \end_layout
10733
10734 \end_inset
10735
10736
10737 \end_layout
10738
10739 \end_inset
10740 </cell>
10741 </row>
10742 <row>
10743 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
10744 \begin_inset Text
10745
10746 \begin_layout Plain Layout
10747
10748 \backslash
10749 overleftarrow
10750 \begin_inset ERT
10751 status collapsed
10752
10753 \begin_layout Plain Layout
10754
10755
10756 \backslash
10757 leer 
10758 \end_layout
10759
10760 \end_inset
10761
10762 A=B
10763 \end_layout
10764
10765 \end_inset
10766 </cell>
10767 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
10768 \begin_inset Text
10769
10770 \begin_layout Plain Layout
10771 \begin_inset Formula $\raisebox{6mm}{}\overleftarrow{A=B}\raisebox{-2mm}{}$
10772 \end_inset
10773
10774
10775 \end_layout
10776
10777 \end_inset
10778 </cell>
10779 </row>
10780 <row>
10781 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10782 \begin_inset Text
10783
10784 \begin_layout Plain Layout
10785
10786 \backslash
10787 underleftarrow
10788 \begin_inset ERT
10789 status collapsed
10790
10791 \begin_layout Plain Layout
10792
10793
10794 \backslash
10795 leer 
10796 \end_layout
10797
10798 \end_inset
10799
10800 A=B
10801 \end_layout
10802
10803 \end_inset
10804 </cell>
10805 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
10806 \begin_inset Text
10807
10808 \begin_layout Plain Layout
10809 \begin_inset Formula $\raisebox{5mm}{}\underleftarrow{A=B}\raisebox{-3mm}{}$
10810 \end_inset
10811
10812
10813 \end_layout
10814
10815 \end_inset
10816 </cell>
10817 </row>
10818 <row>
10819 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10820 \begin_inset Text
10821
10822 \begin_layout Plain Layout
10823
10824 \backslash
10825 overleftrightarrow
10826 \begin_inset ERT
10827 status collapsed
10828
10829 \begin_layout Plain Layout
10830
10831
10832 \backslash
10833 leer 
10834 \end_layout
10835
10836 \end_inset
10837
10838 A=B
10839 \end_layout
10840
10841 \end_inset
10842 </cell>
10843 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
10844 \begin_inset Text
10845
10846 \begin_layout Plain Layout
10847 \begin_inset Formula $\raisebox{6mm}{}\overleftrightarrow{A=B}\raisebox{-2mm}{}$
10848 \end_inset
10849
10850
10851 \end_layout
10852
10853 \end_inset
10854 </cell>
10855 </row>
10856 <row>
10857 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10858 \begin_inset Text
10859
10860 \begin_layout Plain Layout
10861
10862 \backslash
10863 underleftrightarrow
10864 \begin_inset ERT
10865 status collapsed
10866
10867 \begin_layout Plain Layout
10868
10869
10870 \backslash
10871 leer 
10872 \end_layout
10873
10874 \end_inset
10875
10876 A=B
10877 \end_layout
10878
10879 \end_inset
10880 </cell>
10881 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
10882 \begin_inset Text
10883
10884 \begin_layout Plain Layout
10885 \begin_inset Formula $\raisebox{5mm}{}\underleftrightarrow{A=B}\raisebox{-3mm}{}$
10886 \end_inset
10887
10888
10889 \end_layout
10890
10891 \end_inset
10892 </cell>
10893 </row>
10894 </lyxtabular>
10895
10896 \end_inset
10897
10898
10899 \begin_inset space \hfill{}
10900 \end_inset
10901
10902
10903 \begin_inset Tabular
10904 <lyxtabular version="3" rows="5" columns="2">
10905 <features tabularvalignment="middle">
10906 <column alignment="center" valignment="top" width="0pt">
10907 <column alignment="center" valignment="top" width="0pt">
10908 <row>
10909 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
10910 \begin_inset Text
10911
10912 \begin_layout Plain Layout
10913 Befehl
10914 \end_layout
10915
10916 \end_inset
10917 </cell>
10918 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
10919 \begin_inset Text
10920
10921 \begin_layout Plain Layout
10922 Ergebnis
10923 \end_layout
10924
10925 \end_inset
10926 </cell>
10927 </row>
10928 <row>
10929 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
10930 \begin_inset Text
10931
10932 \begin_layout Plain Layout
10933
10934 \backslash
10935 overrightarrow
10936 \begin_inset ERT
10937 status collapsed
10938
10939 \begin_layout Plain Layout
10940
10941
10942 \backslash
10943 leer 
10944 \end_layout
10945
10946 \end_inset
10947
10948 A=B
10949 \end_layout
10950
10951 \end_inset
10952 </cell>
10953 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
10954 \begin_inset Text
10955
10956 \begin_layout Plain Layout
10957 \begin_inset Formula $\raisebox{6mm}{}\overrightarrow{A=B}\raisebox{-2mm}{}$
10958 \end_inset
10959
10960
10961 \end_layout
10962
10963 \end_inset
10964 </cell>
10965 </row>
10966 <row>
10967 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10968 \begin_inset Text
10969
10970 \begin_layout Plain Layout
10971
10972 \backslash
10973 underrightarrow
10974 \begin_inset ERT
10975 status collapsed
10976
10977 \begin_layout Plain Layout
10978
10979
10980 \backslash
10981 leer 
10982 \end_layout
10983
10984 \end_inset
10985
10986 A=B
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 \begin_inset Formula $\raisebox{5mm}{}\underrightarrow{A=B}\raisebox{-3mm}{}$
10996 \end_inset
10997
10998
10999 \end_layout
11000
11001 \end_inset
11002 </cell>
11003 </row>
11004 <row>
11005 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11006 \begin_inset Text
11007
11008 \begin_layout Plain Layout
11009
11010 \backslash
11011 widetilde
11012 \begin_inset ERT
11013 status collapsed
11014
11015 \begin_layout Plain Layout
11016
11017
11018 \backslash
11019 leer 
11020 \end_layout
11021
11022 \end_inset
11023
11024 A=B
11025 \end_layout
11026
11027 \end_inset
11028 </cell>
11029 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
11030 \begin_inset Text
11031
11032 \begin_layout Plain Layout
11033 \begin_inset Formula $\raisebox{6mm}{}\widetilde{A=B}\raisebox{-2mm}{}$
11034 \end_inset
11035
11036
11037 \end_layout
11038
11039 \end_inset
11040 </cell>
11041 </row>
11042 <row>
11043 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11044 \begin_inset Text
11045
11046 \begin_layout Plain Layout
11047
11048 \backslash
11049 widehat
11050 \begin_inset ERT
11051 status collapsed
11052
11053 \begin_layout Plain Layout
11054
11055
11056 \backslash
11057 leer 
11058 \end_layout
11059
11060 \end_inset
11061
11062 A=B
11063 \end_layout
11064
11065 \end_inset
11066 </cell>
11067 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
11068 \begin_inset Text
11069
11070 \begin_layout Plain Layout
11071 \begin_inset Formula $\raisebox{6mm}{}\widehat{A=B}\raisebox{-2mm}{}$
11072 \end_inset
11073
11074
11075 \end_layout
11076
11077 \end_inset
11078 </cell>
11079 </row>
11080 </lyxtabular>
11081
11082 \end_inset
11083
11084
11085 \begin_inset space \hfill{}
11086 \end_inset
11087
11088
11089 \end_layout
11090
11091 \begin_layout Standard
11092 \begin_inset VSpace medskip
11093 \end_inset
11094
11095 Mit diesen Befehlen können beliebig viele Zeichen akzentuiert werden.
11096  Die Akzente
11097 \begin_inset Newline linebreak
11098 \end_inset
11099
11100
11101 \series bold
11102
11103 \backslash
11104 widetilde
11105 \series default
11106  und 
11107 \series bold
11108
11109 \backslash
11110 widehat
11111 \series default
11112  werden aber im Ausdruck nur mit einer Länge von etwa drei Zeichen gesetzt,
11113  was folgendes Beispiel verdeutlicht:
11114 \begin_inset Formula 
11115 \[
11116 \widetilde{A+B=C-D}
11117 \]
11118
11119 \end_inset
11120
11121
11122 \end_layout
11123
11124 \begin_layout Standard
11125 Mit den im vorigen Kapitel beschriebenen Befehlen 
11126 \series bold
11127
11128 \backslash
11129 overset
11130 \series default
11131
11132 \begin_inset Index idx
11133 status collapsed
11134
11135 \begin_layout Plain Layout
11136 Befehle ! O ! 
11137 \backslash
11138 overset
11139 \end_layout
11140
11141 \end_inset
11142
11143  und 
11144 \series bold
11145
11146 \backslash
11147 underset
11148 \series default
11149
11150 \begin_inset Index idx
11151 status collapsed
11152
11153 \begin_layout Plain Layout
11154 Befehle ! U ! 
11155 \backslash
11156 underset
11157 \end_layout
11158
11159 \end_inset
11160
11161  ist es auch möglich mehrere Zeichen zu akzentuieren.
11162  Der Befehl 
11163 \series bold
11164
11165 \backslash
11166 underset
11167 \begin_inset ERT
11168 status collapsed
11169
11170 \begin_layout Plain Layout
11171
11172
11173 \backslash
11174 leer 
11175 \end_layout
11176
11177 \end_inset
11178
11179 A=B
11180 \begin_inset Formula $\downarrow$
11181 \end_inset
11182
11183 ***
11184 \series default
11185  ergibt:
11186 \begin_inset Formula 
11187 \[
11188 \underset{***}{A=B}
11189 \]
11190
11191 \end_inset
11192
11193
11194 \end_layout
11195
11196 \begin_layout Section
11197 Leerraum
11198 \begin_inset CommandInset label
11199 LatexCommand label
11200 name "sub:Leerraum"
11201
11202 \end_inset
11203
11204
11205 \begin_inset Index idx
11206 status collapsed
11207
11208 \begin_layout Plain Layout
11209 Leerraum ! horizontaler
11210 \end_layout
11211
11212 \end_inset
11213
11214
11215 \end_layout
11216
11217 \begin_layout Subsection
11218 Vordefinierter Leerraum
11219 \begin_inset CommandInset label
11220 LatexCommand label
11221 name "sub:Vordefinierter-Leerraum"
11222
11223 \end_inset
11224
11225
11226 \begin_inset Index idx
11227 status collapsed
11228
11229 \begin_layout Plain Layout
11230 Leerraum ! horizontaler ! vordefiniert
11231 \end_layout
11232
11233 \end_inset
11234
11235
11236 \end_layout
11237
11238 \begin_layout Standard
11239 Ab und an ist es notwendig in einer Formel horizontalen Leerraum einzufügen.
11240  Dazu gibt man ein geschütztes Leerzeichen ein.
11241  Es erscheint ein 
11242 \begin_inset Quotes gld
11243 \end_inset
11244
11245
11246 \color blue
11247
11248 \begin_inset ERT
11249 status collapsed
11250
11251 \begin_layout Plain Layout
11252
11253
11254 \backslash
11255 leer 
11256 \end_layout
11257
11258 \end_inset
11259
11260
11261 \color inherit
11262
11263 \begin_inset Quotes grd
11264 \end_inset
11265
11266  und man kann durch mehrfaches Drücken der Leertaste aus acht verschiedenen
11267  Leerraum-Größen wählen.
11268  Man kann die Leerräume auch über den Mathe-Werkzeugleistenknopf 
11269 \begin_inset Graphics
11270         filename ../../images/math/space.png
11271         scale 85
11272
11273 \end_inset
11274
11275  oder mit einzelnen Befehlen aufrufen.
11276  Unabhängig vom eingegebenen Befehl kann man durch Drücken der Leertaste
11277  danach wieder aus allen Größen wählen.
11278 \end_layout
11279
11280 \begin_layout Standard
11281 \align center
11282 \begin_inset VSpace -5mm
11283 \end_inset
11284
11285
11286 \begin_inset Tabular
11287 <lyxtabular version="3" rows="3" columns="7">
11288 <features tabularvalignment="middle">
11289 <column alignment="center" valignment="middle" width="6.8cm">
11290 <column alignment="center" valignment="top" width="0pt">
11291 <column alignment="center" valignment="top" width="0pt">
11292 <column alignment="center" valignment="top" width="0pt">
11293 <column alignment="center" valignment="top" width="0pt">
11294 <column alignment="center" valignment="top" width="0pt">
11295 <column alignment="center" valignment="top" width="0pt">
11296 <row>
11297 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11298 \begin_inset Text
11299
11300 \begin_layout Plain Layout
11301 Befehl
11302 \end_layout
11303
11304 \end_inset
11305 </cell>
11306 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11307 \begin_inset Text
11308
11309 \begin_layout Plain Layout
11310
11311 \backslash
11312 ,
11313 \end_layout
11314
11315 \end_inset
11316 </cell>
11317 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11318 \begin_inset Text
11319
11320 \begin_layout Plain Layout
11321
11322 \backslash
11323 :
11324 \end_layout
11325
11326 \end_inset
11327 </cell>
11328 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11329 \begin_inset Text
11330
11331 \begin_layout Plain Layout
11332
11333 \backslash
11334 ;
11335 \end_layout
11336
11337 \end_inset
11338 </cell>
11339 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11340 \begin_inset Text
11341
11342 \begin_layout Plain Layout
11343
11344 \backslash
11345 quad
11346 \end_layout
11347
11348 \end_inset
11349 </cell>
11350 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11351 \begin_inset Text
11352
11353 \begin_layout Plain Layout
11354
11355 \backslash
11356 qquad
11357 \end_layout
11358
11359 \end_inset
11360 </cell>
11361 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
11362 \begin_inset Text
11363
11364 \begin_layout Plain Layout
11365
11366 \backslash
11367 !
11368 \end_layout
11369
11370 \end_inset
11371 </cell>
11372 </row>
11373 <row>
11374 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none" width="7cm">
11375 \begin_inset Text
11376
11377 \begin_layout Plain Layout
11378 Anzahl der Leertastendrücke nach Eingabe des geschützten Leerzeichens
11379 \end_layout
11380
11381 \end_inset
11382 </cell>
11383 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11384 \begin_inset Text
11385
11386 \begin_layout Plain Layout
11387 0
11388 \end_layout
11389
11390 \end_inset
11391 </cell>
11392 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11393 \begin_inset Text
11394
11395 \begin_layout Plain Layout
11396 1
11397 \end_layout
11398
11399 \end_inset
11400 </cell>
11401 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11402 \begin_inset Text
11403
11404 \begin_layout Plain Layout
11405 2
11406 \end_layout
11407
11408 \end_inset
11409 </cell>
11410 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11411 \begin_inset Text
11412
11413 \begin_layout Plain Layout
11414 3
11415 \end_layout
11416
11417 \end_inset
11418 </cell>
11419 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11420 \begin_inset Text
11421
11422 \begin_layout Plain Layout
11423 4
11424 \end_layout
11425
11426 \end_inset
11427 </cell>
11428 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
11429 \begin_inset Text
11430
11431 \begin_layout Plain Layout
11432 5
11433 \end_layout
11434
11435 \end_inset
11436 </cell>
11437 </row>
11438 <row>
11439 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11440 \begin_inset Text
11441
11442 \begin_layout Plain Layout
11443 Ergebnis
11444 \end_layout
11445
11446 \end_inset
11447 </cell>
11448 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11449 \begin_inset Text
11450
11451 \begin_layout Plain Layout
11452 \begin_inset Formula $A\, B$
11453 \end_inset
11454
11455
11456 \end_layout
11457
11458 \end_inset
11459 </cell>
11460 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11461 \begin_inset Text
11462
11463 \begin_layout Plain Layout
11464 \begin_inset Formula $A\: B$
11465 \end_inset
11466
11467
11468 \end_layout
11469
11470 \end_inset
11471 </cell>
11472 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11473 \begin_inset Text
11474
11475 \begin_layout Plain Layout
11476 \begin_inset Formula $A\; B$
11477 \end_inset
11478
11479
11480 \end_layout
11481
11482 \end_inset
11483 </cell>
11484 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11485 \begin_inset Text
11486
11487 \begin_layout Plain Layout
11488 \begin_inset Formula $A\quad B$
11489 \end_inset
11490
11491
11492 \end_layout
11493
11494 \end_inset
11495 </cell>
11496 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11497 \begin_inset Text
11498
11499 \begin_layout Plain Layout
11500 \begin_inset Formula $A\qquad B$
11501 \end_inset
11502
11503
11504 \end_layout
11505
11506 \end_inset
11507 </cell>
11508 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
11509 \begin_inset Text
11510
11511 \begin_layout Plain Layout
11512 \begin_inset Formula $A\! B$
11513 \end_inset
11514
11515
11516 \end_layout
11517
11518 \end_inset
11519 </cell>
11520 </row>
11521 </lyxtabular>
11522
11523 \end_inset
11524
11525
11526 \end_layout
11527
11528 \begin_layout Standard
11529 Die letzte Größe scheint überhaupt keinen Leerraum zu produzieren.
11530  In LyX ist diese allerdings auch im Gegensatz zu allen anderen rot eingefärbt,
11531  denn sie erstellt negativen Leerraum.
11532  Es gibt noch zwei weitere negative Leerräume:
11533 \end_layout
11534
11535 \begin_layout Standard
11536 \align center
11537 \begin_inset Tabular
11538 <lyxtabular version="3" rows="3" columns="3">
11539 <features tabularvalignment="middle">
11540 <column alignment="center" valignment="middle" width="6.8cm">
11541 <column alignment="center" valignment="top" width="0pt">
11542 <column alignment="center" valignment="top" width="0pt">
11543 <row>
11544 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11545 \begin_inset Text
11546
11547 \begin_layout Plain Layout
11548 Befehl
11549 \end_layout
11550
11551 \end_inset
11552 </cell>
11553 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11554 \begin_inset Text
11555
11556 \begin_layout Plain Layout
11557
11558 \backslash
11559 negmedspace
11560 \end_layout
11561
11562 \end_inset
11563 </cell>
11564 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
11565 \begin_inset Text
11566
11567 \begin_layout Plain Layout
11568
11569 \backslash
11570 negthickspace
11571 \end_layout
11572
11573 \end_inset
11574 </cell>
11575 </row>
11576 <row>
11577 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11578 \begin_inset Text
11579
11580 \begin_layout Plain Layout
11581 Anzahl der Leertastendrücke nach Eingabe des geschützten Leerzeichens
11582 \end_layout
11583
11584 \end_inset
11585 </cell>
11586 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11587 \begin_inset Text
11588
11589 \begin_layout Plain Layout
11590 6
11591 \end_layout
11592
11593 \end_inset
11594 </cell>
11595 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
11596 \begin_inset Text
11597
11598 \begin_layout Plain Layout
11599 7
11600 \end_layout
11601
11602 \end_inset
11603 </cell>
11604 </row>
11605 <row>
11606 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11607 \begin_inset Text
11608
11609 \begin_layout Plain Layout
11610 Ergebnis
11611 \end_layout
11612
11613 \end_inset
11614 </cell>
11615 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11616 \begin_inset Text
11617
11618 \begin_layout Plain Layout
11619 \begin_inset Formula $A\negmedspace B$
11620 \end_inset
11621
11622
11623 \end_layout
11624
11625 \end_inset
11626 </cell>
11627 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
11628 \begin_inset Text
11629
11630 \begin_layout Plain Layout
11631 \begin_inset Formula $A\negthickspace B$
11632 \end_inset
11633
11634
11635 \end_layout
11636
11637 \end_inset
11638 </cell>
11639 </row>
11640 </lyxtabular>
11641
11642 \end_inset
11643
11644
11645 \end_layout
11646
11647 \begin_layout Standard
11648 Negative Leerräume bewirken, dass sich benachbarte Zeichen überschneiden.
11649  Man kann auf diese Weise Ligaturen erzwingen, was z.
11650 \begin_inset space \thinspace{}
11651 \end_inset
11652
11653 B.
11654  für Summenzeichen von Nutzen ist: 
11655 \end_layout
11656
11657 \begin_layout Standard
11658 \align center
11659 \begin_inset Tabular
11660 <lyxtabular version="3" rows="3" columns="2">
11661 <features tabularvalignment="middle">
11662 <column alignment="center" valignment="top" width="0">
11663 <column alignment="center" valignment="top" width="0">
11664 <row>
11665 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11666 \begin_inset Text
11667
11668 \begin_layout Plain Layout
11669 Befehl
11670 \end_layout
11671
11672 \end_inset
11673 </cell>
11674 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
11675 \begin_inset Text
11676
11677 \begin_layout Plain Layout
11678 Ergebnis
11679 \begin_inset Note Note
11680 status collapsed
11681
11682 \begin_layout Plain Layout
11683
11684 \series bold
11685
11686 \backslash
11687 raisebox
11688 \series default
11689  dient nur als Abstandhalter.
11690 \end_layout
11691
11692 \end_inset
11693
11694
11695 \end_layout
11696
11697 \end_inset
11698 </cell>
11699 </row>
11700 <row>
11701 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11702 \begin_inset Text
11703
11704 \begin_layout Plain Layout
11705
11706 \backslash
11707 sum
11708 \backslash
11709 sum
11710 \begin_inset ERT
11711 status collapsed
11712
11713 \begin_layout Plain Layout
11714
11715
11716 \backslash
11717 leer 
11718 \end_layout
11719
11720 \end_inset
11721
11722 f_kl
11723 \end_layout
11724
11725 \end_inset
11726 </cell>
11727 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11728 \begin_inset Text
11729
11730 \begin_layout Plain Layout
11731 \begin_inset Formula $\raisebox{4.5mm}{}\sum\sum f_{kl}\raisebox{-2.5mm}{}$
11732 \end_inset
11733
11734
11735 \end_layout
11736
11737 \end_inset
11738 </cell>
11739 </row>
11740 <row>
11741 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11742 \begin_inset Text
11743
11744 \begin_layout Plain Layout
11745
11746 \backslash
11747 sum
11748 \backslash
11749 negmedspace
11750 \backslash
11751 sum
11752 \begin_inset ERT
11753 status collapsed
11754
11755 \begin_layout Plain Layout
11756
11757
11758 \backslash
11759 leer 
11760 \end_layout
11761
11762 \end_inset
11763
11764 f_kl
11765 \end_layout
11766
11767 \end_inset
11768 </cell>
11769 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
11770 \begin_inset Text
11771
11772 \begin_layout Plain Layout
11773 \begin_inset Formula $\raisebox{4.5mm}{}\sum\negmedspace\sum f_{kl}\raisebox{-2.5mm}{}$
11774 \end_inset
11775
11776
11777 \end_layout
11778
11779 \end_inset
11780 </cell>
11781 </row>
11782 </lyxtabular>
11783
11784 \end_inset
11785
11786
11787 \end_layout
11788
11789 \begin_layout Standard
11790 Relationen, wie z.
11791 \begin_inset space \thinspace{}
11792 \end_inset
11793
11794 B.
11795  Gleichheitszeichen, sind immer von Leerraum umgeben.
11796  Will man dies unterdrücken, schreibt man das Gleichheitszeichen in eine
11797  TeX-Klammer.
11798  Die Wirkung kann man an folgendem Beispiel gut erkennen:
11799 \end_layout
11800
11801 \begin_layout Standard
11802 \align center
11803 \begin_inset Tabular
11804 <lyxtabular version="3" rows="2" columns="2">
11805 <features tabularvalignment="middle">
11806 <column alignment="center" valignment="top" width="0pt">
11807 <column alignment="center" valignment="top" width="0pt">
11808 <row>
11809 <cell alignment="center" valignment="top" usebox="none">
11810 \begin_inset Text
11811
11812 \begin_layout Plain Layout
11813 normale Gleichung
11814 \end_layout
11815
11816 \end_inset
11817 </cell>
11818 <cell alignment="center" valignment="top" usebox="none">
11819 \begin_inset Text
11820
11821 \begin_layout Plain Layout
11822 \begin_inset Formula $A=B$
11823 \end_inset
11824
11825
11826 \end_layout
11827
11828 \end_inset
11829 </cell>
11830 </row>
11831 <row>
11832 <cell alignment="center" valignment="top" usebox="none">
11833 \begin_inset Text
11834
11835 \begin_layout Plain Layout
11836 \begin_inset Note Note
11837 status collapsed
11838
11839 \begin_layout Plain Layout
11840
11841 \series bold
11842
11843 \backslash
11844 raisebox
11845 \series default
11846  dient nur als Abstandhalter.
11847 \end_layout
11848
11849 \end_inset
11850
11851
11852 \begin_inset Formula $\raisebox{5mm}{}$
11853 \end_inset
11854
11855 Gleichung ohne Leerraum
11856 \end_layout
11857
11858 \end_inset
11859 </cell>
11860 <cell multicolumn="1" alignment="center" valignment="top" usebox="none">
11861 \begin_inset Text
11862
11863 \begin_layout Plain Layout
11864 \begin_inset Formula $A{=}B$
11865 \end_inset
11866
11867
11868 \end_layout
11869
11870 \end_inset
11871 </cell>
11872 </row>
11873 </lyxtabular>
11874
11875 \end_inset
11876
11877
11878 \end_layout
11879
11880 \begin_layout Standard
11881 Der Befehl für die letzte Formel lautet: 
11882 \series bold
11883 A
11884 \backslash
11885 {=
11886 \begin_inset Formula $\to$
11887 \end_inset
11888
11889 B
11890 \end_layout
11891
11892 \begin_layout Standard
11893 \begin_inset VSpace bigskip
11894 \end_inset
11895
11896 Leerräumen werden für physikalische Einheiten benötigt, denn zwischen Wert
11897  und Einheit ist der kleinste Leerraum und kein normales Leerzeichen.
11898  Bei Einheiten im Text fügt man den kleinsten Leerraum über das Menü 
11899 \family sans
11900 Einfügen\SpecialChar \menuseparator
11901 Formatierung\SpecialChar \menuseparator
11902 Kleiner
11903 \begin_inset space ~
11904 \end_inset
11905
11906 Abstand
11907 \family default
11908  (Tastenkürzel 
11909 \family sans
11910 Strg+Shift+Leertaste
11911 \family default
11912 ) ein.
11913 \end_layout
11914
11915 \begin_layout Standard
11916 Ein Beispiel zur Veranschaulichung:
11917 \end_layout
11918
11919 \begin_layout Standard
11920 \begin_inset Tabular
11921 <lyxtabular version="3" rows="2" columns="2">
11922 <features tabularvalignment="middle">
11923 <column alignment="left" valignment="top" width="0">
11924 <column alignment="left" valignment="top" width="0">
11925 <row>
11926 <cell alignment="center" valignment="top" usebox="none">
11927 \begin_inset Text
11928
11929 \begin_layout Plain Layout
11930 24 kW
11931 \begin_inset Formula $\cdot$
11932 \end_inset
11933
11934 h
11935 \end_layout
11936
11937 \end_inset
11938 </cell>
11939 <cell alignment="center" valignment="top" usebox="none">
11940 \begin_inset Text
11941
11942 \begin_layout Plain Layout
11943 Leerzeichen zwischen Wert und Einheit
11944 \end_layout
11945
11946 \end_inset
11947 </cell>
11948 </row>
11949 <row>
11950 <cell alignment="center" valignment="top" usebox="none">
11951 \begin_inset Text
11952
11953 \begin_layout Plain Layout
11954 24
11955 \begin_inset space \thinspace{}
11956 \end_inset
11957
11958 kW
11959 \begin_inset Formula $\cdot$
11960 \end_inset
11961
11962 h
11963 \end_layout
11964
11965 \end_inset
11966 </cell>
11967 <cell alignment="center" valignment="top" usebox="none">
11968 \begin_inset Text
11969
11970 \begin_layout Plain Layout
11971 kleinster Leerraum zwischen Wert und Einheit
11972 \end_layout
11973
11974 \end_inset
11975 </cell>
11976 </row>
11977 </lyxtabular>
11978
11979 \end_inset
11980
11981
11982 \end_layout
11983
11984 \begin_layout Subsection
11985 Variabler Leerraum
11986 \begin_inset ERT
11987 status collapsed
11988
11989 \begin_layout Plain Layout
11990
11991
11992 \backslash
11993 texorpdfstring{
11994 \end_layout
11995
11996 \end_inset
11997
11998
11999 \begin_inset Foot
12000 status collapsed
12001
12002 \begin_layout Plain Layout
12003 für vertikalen Leerraum in Formeln siehe 
12004 \begin_inset CommandInset ref
12005 LatexCommand ref
12006 reference "sub:Zeilenabstand"
12007
12008 \end_inset
12009
12010
12011 \end_layout
12012
12013 \end_inset
12014
12015
12016 \begin_inset ERT
12017 status collapsed
12018
12019 \begin_layout Plain Layout
12020
12021 }{}
12022 \end_layout
12023
12024 \end_inset
12025
12026
12027 \begin_inset Note Note
12028 status collapsed
12029
12030 \begin_layout Plain Layout
12031
12032 \series bold
12033
12034 \backslash
12035 texorpdfstring
12036 \series default
12037  dient dazu, dass die Fußnote nicht mit im PDF-Lesezeichen erscheint.
12038 \end_layout
12039
12040 \begin_layout Plain Layout
12041 Näheres zu 
12042 \series bold
12043
12044 \backslash
12045 texorpdfstring
12046 \series default
12047  steht in Kapitel 
12048 \begin_inset CommandInset ref
12049 LatexCommand ref
12050 reference "sub:Formeln-in-Überschriften"
12051
12052 \end_inset
12053
12054 .
12055 \end_layout
12056
12057 \end_inset
12058
12059
12060 \begin_inset CommandInset label
12061 LatexCommand label
12062 name "sub:Variabler-Leerraum"
12063
12064 \end_inset
12065
12066
12067 \begin_inset Index idx
12068 status collapsed
12069
12070 \begin_layout Plain Layout
12071 Leerraum ! horizontaler ! variabel
12072 \end_layout
12073
12074 \end_inset
12075
12076
12077 \end_layout
12078
12079 \begin_layout Standard
12080 Leerraum mit vorgegebener Länge lässt sich mit dem Befehl 
12081 \series bold
12082
12083 \backslash
12084 hspace
12085 \series default
12086
12087 \begin_inset Index idx
12088 status collapsed
12089
12090 \begin_layout Plain Layout
12091 Befehle ! H ! 
12092 \backslash
12093 hspace
12094 \end_layout
12095
12096 \end_inset
12097
12098  einfügen.
12099  Es erscheint ein langes 
12100 \begin_inset Quotes gld
12101 \end_inset
12102
12103
12104 \color blue
12105
12106 \begin_inset ERT
12107 status collapsed
12108
12109 \begin_layout Plain Layout
12110
12111
12112 \backslash
12113 leer 
12114 \end_layout
12115
12116 \end_inset
12117
12118
12119 \color inherit
12120
12121 \begin_inset Quotes grd
12122 \end_inset
12123
12124 .
12125  Die Länge kann eingestellt werden, indem man mit der linken Maustaste auf
12126  das 
12127 \begin_inset Quotes gld
12128 \end_inset
12129
12130
12131 \color blue
12132
12133 \begin_inset ERT
12134 status collapsed
12135
12136 \begin_layout Plain Layout
12137
12138
12139 \backslash
12140 leer 
12141 \end_layout
12142
12143 \end_inset
12144
12145
12146 \color inherit
12147
12148 \begin_inset Quotes grd
12149 \end_inset
12150
12151  klickt.
12152  Die Länge darf auch negativ sein.
12153  Um so viel Leerraum einzufügen, dass die Formel allen verfügbaren Platz
12154  einnimmt, benutzt man den Befehl 
12155 \series bold
12156
12157 \backslash
12158 hfill
12159 \series default
12160
12161 \begin_inset Index idx
12162 status collapsed
12163
12164 \begin_layout Plain Layout
12165 Befehle ! H ! 
12166 \backslash
12167 hfill
12168 \end_layout
12169
12170 \end_inset
12171
12172 .
12173 \end_layout
12174
12175 \begin_layout Standard
12176 \begin_inset VSpace -1mm
12177 \end_inset
12178
12179
12180 \end_layout
12181
12182 \begin_layout Standard
12183 \align center
12184 \begin_inset Tabular
12185 <lyxtabular version="3" rows="4" columns="2">
12186 <features tabularvalignment="middle">
12187 <column alignment="center" valignment="top" width="0">
12188 <column alignment="center" valignment="top" width="0">
12189 <row>
12190 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
12191 \begin_inset Text
12192
12193 \begin_layout Plain Layout
12194 Befehl (
12195 \backslash
12196 hspace Länge)
12197 \end_layout
12198
12199 \end_inset
12200 </cell>
12201 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
12202 \begin_inset Text
12203
12204 \begin_layout Plain Layout
12205 Ergebnis
12206 \end_layout
12207
12208 \end_inset
12209 </cell>
12210 </row>
12211 <row>
12212 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12213 \begin_inset Text
12214
12215 \begin_layout Plain Layout
12216 A=B
12217 \backslash
12218 hspace{3cm
12219 \begin_inset Formula $\to$
12220 \end_inset
12221
12222 A
12223 \backslash
12224 not=C (3
12225 \begin_inset space \thinspace{}
12226 \end_inset
12227
12228 cm)
12229 \end_layout
12230
12231 \end_inset
12232 </cell>
12233 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12234 \begin_inset Text
12235
12236 \begin_layout Plain Layout
12237 \begin_inset Formula $A=B\hspace{3cm}A\not=C$
12238 \end_inset
12239
12240
12241 \end_layout
12242
12243 \end_inset
12244 </cell>
12245 </row>
12246 <row>
12247 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
12248 \begin_inset Text
12249
12250 \begin_layout Plain Layout
12251 A
12252 \backslash
12253 hspace{-1mm
12254 \begin_inset Formula $\to$
12255 \end_inset
12256
12257 A
12258 \backslash
12259 not=A (-1
12260 \begin_inset space \thinspace{}
12261 \end_inset
12262
12263 mm)
12264 \end_layout
12265
12266 \end_inset
12267 </cell>
12268 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
12269 \begin_inset Text
12270
12271 \begin_layout Plain Layout
12272 \begin_inset Formula $A\hspace{-1mm}A\not=A$
12273 \end_inset
12274
12275
12276 \end_layout
12277
12278 \end_inset
12279 </cell>
12280 </row>
12281 <row>
12282 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
12283 \begin_inset Text
12284
12285 \begin_layout Plain Layout
12286 A=A
12287 \backslash
12288 hfill
12289 \begin_inset ERT
12290 status collapsed
12291
12292 \begin_layout Plain Layout
12293
12294
12295 \backslash
12296 leer 
12297 \end_layout
12298
12299 \end_inset
12300
12301 B=B
12302 \end_layout
12303
12304 \end_inset
12305 </cell>
12306 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
12307 \begin_inset Text
12308
12309 \begin_layout Plain Layout
12310 \begin_inset Formula $A=A\hfill B=B$
12311 \end_inset
12312
12313
12314 \end_layout
12315
12316 \end_inset
12317 </cell>
12318 </row>
12319 </lyxtabular>
12320
12321 \end_inset
12322
12323
12324 \end_layout
12325
12326 \begin_layout Standard
12327 Im letzten Beispiel ist der verfügbare Platz durch die Länge des längsten
12328  Spalteneintrags der Tabelle vorgegeben.
12329  In einer eingebetteten Formel ist der Platz von der Länge der Zeile abhängig,
12330  in die 
12331 \series bold
12332
12333 \backslash
12334 hfill
12335 \series default
12336  eingegeben wird.
12337  Füllt eine Zeile die Breite komplett aus, wird demnach kein Leerraum erstellt.
12338  
12339 \series bold
12340
12341 \backslash
12342 hfill
12343 \series default
12344  wirkt in abgesetzten Formeln nur, wenn der Formelstil 
12345 \series bold
12346 Eingerückt
12347 \series default
12348  eingestellt ist.
12349  (Formelstile sind in 
12350 \begin_inset CommandInset ref
12351 LatexCommand ref
12352 reference "sec:Formelstile"
12353
12354 \end_inset
12355
12356  erklärt.)
12357 \end_layout
12358
12359 \begin_layout Standard
12360 Neben 
12361 \series bold
12362
12363 \backslash
12364 hfill
12365 \series default
12366  gibt es noch die Befehle 
12367 \series bold
12368
12369 \backslash
12370 dotfill
12371 \series default
12372  und 
12373 \series bold
12374
12375 \backslash
12376 hrulefill
12377 \series default
12378 , die den Leerraum mit einem Muster füllen, siehe 
12379 \begin_inset CommandInset ref
12380 LatexCommand ref
12381 reference "sub:Fortsetzungspunkte"
12382
12383 \end_inset
12384
12385  für ein Beispiel.
12386 \end_layout
12387
12388 \begin_layout Standard
12389 Variabler Leerraum kann für Text über das Menü 
12390 \family sans
12391 Einfügen\SpecialChar \menuseparator
12392 Formatierung\SpecialChar \menuseparator
12393 Horizontaler
12394 \begin_inset space ~
12395 \end_inset
12396
12397 Abstand
12398 \family default
12399  eingefügt werden:
12400 \end_layout
12401
12402 \begin_layout Standard
12403 Dies ist eine Zeile mit
12404 \begin_inset space \hspace{}
12405 \length 2cm
12406 \end_inset
12407
12408 2
12409 \begin_inset space \thinspace{}
12410 \end_inset
12411
12412 cm Leerraum.
12413 \end_layout
12414
12415 \begin_layout Standard
12416 Dies ist eine Zeile mit
12417 \begin_inset space \hfill{}
12418 \end_inset
12419
12420 maximalem Leerraum.
12421 \end_layout
12422
12423 \begin_layout Subsection
12424 Leerraum neben eingebetteten Formeln
12425 \begin_inset Index idx
12426 status collapsed
12427
12428 \begin_layout Plain Layout
12429 Leerraum ! neben eingebetteten Formeln
12430 \end_layout
12431
12432 \end_inset
12433
12434
12435 \end_layout
12436
12437 \begin_layout Standard
12438 Über die Länge 
12439 \series bold
12440
12441 \backslash
12442 mathsurround
12443 \series default
12444
12445 \begin_inset Index idx
12446 status collapsed
12447
12448 \begin_layout Plain Layout
12449 Befehle ! M ! 
12450 \backslash
12451 mathsurround
12452 \end_layout
12453
12454 \end_inset
12455
12456  lässt sich der Leerraum einstellen, der neben eingebettete Formeln gesetzt
12457  wird.
12458  Der Wert einer Länge wird mit dem Befehl 
12459 \series bold
12460
12461 \backslash
12462 setlength
12463 \series default
12464
12465 \begin_inset Index idx
12466 status collapsed
12467
12468 \begin_layout Plain Layout
12469 Befehle ! S ! 
12470 \backslash
12471 setlength
12472 \end_layout
12473
12474 \end_inset
12475
12476  gesetzt.
12477  Dieser besitzt folgendes Befehlsschema:
12478 \end_layout
12479
12480 \begin_layout Standard
12481
12482 \series bold
12483
12484 \backslash
12485 setlength{Längenname}{Wert}
12486 \end_layout
12487
12488 \begin_layout Standard
12489 Um 
12490 \series bold
12491
12492 \backslash
12493 mathsurround
12494 \series default
12495  den Wert 5
12496 \begin_inset space \thinspace{}
12497 \end_inset
12498
12499 mm zuzuweisen, gibt man im TeX-Modus den Befehl
12500 \end_layout
12501
12502 \begin_layout Standard
12503
12504 \series bold
12505
12506 \backslash
12507 setlength{
12508 \backslash
12509 mathsurround}{5mm}
12510 \end_layout
12511
12512 \begin_layout Standard
12513 ein.
12514  Neben alle eingebetteten Formeln, die auf den Befehl folgen, wird nun 5
12515 \begin_inset space \thinspace{}
12516 \end_inset
12517
12518 mm Leerraum gesetzt:
12519 \begin_inset ERT
12520 status collapsed
12521
12522 \begin_layout Plain Layout
12523
12524
12525 \backslash
12526 setlength{
12527 \backslash
12528 mathsurround}{5mm}
12529 \end_layout
12530
12531 \end_inset
12532
12533
12534 \end_layout
12535
12536 \begin_layout Standard
12537 Dies ist eine Zeile in der sich 
12538 \begin_inset Formula $A=B$
12539 \end_inset
12540
12541  eine Formel mit 5
12542 \begin_inset space \thinspace{}
12543 \end_inset
12544
12545 mm umgebendem Leerraum befindet.
12546 \begin_inset ERT
12547 status collapsed
12548
12549 \begin_layout Plain Layout
12550
12551
12552 \backslash
12553 setlength{
12554 \backslash
12555 mathsurround}{0pt}
12556 \end_layout
12557
12558 \end_inset
12559
12560
12561 \end_layout
12562
12563 \begin_layout Standard
12564 Um wieder zum voreingestellten Wert zurückzukehren, setzt man 
12565 \series bold
12566
12567 \backslash
12568 mathsurround
12569 \series default
12570  auf den Wert 0
12571 \begin_inset space \thinspace{}
12572 \end_inset
12573
12574 pt.
12575 \end_layout
12576
12577 \begin_layout Section
12578 Boxen und Rahmen
12579 \begin_inset Index idx
12580 status collapsed
12581
12582 \begin_layout Plain Layout
12583 Boxen
12584 \end_layout
12585
12586 \end_inset
12587
12588
12589 \begin_inset Index idx
12590 status collapsed
12591
12592 \begin_layout Plain Layout
12593 Rahmen | see
12594 \begin_inset ERT
12595 status collapsed
12596
12597 \begin_layout Plain Layout
12598
12599 {
12600 \end_layout
12601
12602 \end_inset
12603
12604 Boxen
12605 \begin_inset ERT
12606 status collapsed
12607
12608 \begin_layout Plain Layout
12609
12610 }
12611 \end_layout
12612
12613 \end_inset
12614
12615
12616 \end_layout
12617
12618 \end_inset
12619
12620
12621 \end_layout
12622
12623 \begin_layout Standard
12624 Boxen für Text sind im Kapitel 
12625 \family typewriter
12626 Boxen
12627 \family default
12628  im Handbuch 
12629 \family typewriter
12630 Eingebettete
12631 \begin_inset space ~
12632 \end_inset
12633
12634 Objekte
12635 \family default
12636  beschrieben.
12637 \end_layout
12638
12639 \begin_layout Subsection
12640 Boxen mit Rahmen
12641 \begin_inset CommandInset label
12642 LatexCommand label
12643 name "sub:Boxen-mit-Rahmen"
12644
12645 \end_inset
12646
12647
12648 \begin_inset Index idx
12649 status collapsed
12650
12651 \begin_layout Plain Layout
12652 Boxen ! mit Rahmen
12653 \end_layout
12654
12655 \end_inset
12656
12657
12658 \end_layout
12659
12660 \begin_layout Standard
12661 Es ist möglich Formeln oder Teile davon mit den Befehlen 
12662 \series bold
12663
12664 \backslash
12665 fbox
12666 \series default
12667
12668 \begin_inset Index idx
12669 status collapsed
12670
12671 \begin_layout Plain Layout
12672 Befehle ! F ! 
12673 \backslash
12674 fbox
12675 \end_layout
12676
12677 \end_inset
12678
12679  und 
12680 \series bold
12681
12682 \backslash
12683 boxed
12684 \series default
12685
12686 \begin_inset Index idx
12687 status collapsed
12688
12689 \begin_layout Plain Layout
12690 Befehle ! B ! 
12691 \backslash
12692 boxed
12693 \end_layout
12694
12695 \end_inset
12696
12697  zu umranden.
12698 \end_layout
12699
12700 \begin_layout Standard
12701 Gibt man einen dieser Befehle in eine Formel ein, erscheint ein Eingabefeld
12702  in einem Rahmen.
12703  Bei 
12704 \series bold
12705
12706 \backslash
12707 fbox
12708 \series default
12709  muss in diesem Eingabefeld mit 
12710 \family sans
12711 Strg+M
12712 \family default
12713  noch eine Formel erstellt werden, denn der Inhalt dieser Box wird sonst
12714  als mathematischer Text behandelt.
12715  Verwendet man 
12716 \series bold
12717
12718 \backslash
12719 boxed
12720 \series default
12721 , wird automatisch im Rahmen eine neue Formel erzeugt.
12722 \end_layout
12723
12724 \begin_layout Standard
12725 Der Befehl 
12726 \series bold
12727
12728 \backslash
12729 fbox
12730 \series default
12731  ist nicht zur Umrandung von abgesetzten Formeln geeignet, denn die Formel
12732  wird dann immer in Textzeilengröße gesetzt.
12733  Im Gegensatz dazu ist 
12734 \series bold
12735
12736 \backslash
12737 boxed
12738 \series default
12739  nicht zur Umrandung von Formeln in einer Textzeile geeignet, denn die Formel
12740  wird dann immer in der Größe einer abgesetzten Formel gesetzt.
12741 \end_layout
12742
12743 \begin_layout Standard
12744 Als Erweiterung zu 
12745 \series bold
12746
12747 \backslash
12748 fbox
12749 \series default
12750  gibt es den Befehl 
12751 \series bold
12752
12753 \backslash
12754 framebox
12755 \series default
12756
12757 \begin_inset Index idx
12758 status collapsed
12759
12760 \begin_layout Plain Layout
12761 Befehle ! F ! 
12762 \backslash
12763 framebox
12764 \end_layout
12765
12766 \end_inset
12767
12768 , bei dem man zusätzlich die Rahmenbreite und die Ausrichtung einstellen
12769  kann.
12770  
12771 \series bold
12772
12773 \backslash
12774 framebox
12775 \series default
12776  wird nach folgendem Schema verwendet:
12777 \end_layout
12778
12779 \begin_layout Standard
12780
12781 \series bold
12782
12783 \backslash
12784 framebox[Rahmenbreite][Position]{Boxinhalt}
12785 \end_layout
12786
12787 \begin_layout Standard
12788 Die Position kann entweder 
12789 \emph on
12790 l
12791 \emph default
12792  oder 
12793 \emph on
12794 r
12795 \emph default
12796  sein.
12797  
12798 \emph on
12799 l
12800 \emph default
12801  bewirkt linksbündige, 
12802 \emph on
12803 r
12804 \emph default
12805  rechtsbündige Ausrichtung der Formel in der Box.
12806  Gibt man keine Position an, wird die Formel zentriert.
12807 \begin_inset Newline newline
12808 \end_inset
12809
12810 Gibt man keine Breite an, darf auch keine Position angegeben werden.
12811  In diesem Falle wird die Rahmenbreite wie bei 
12812 \series bold
12813
12814 \backslash
12815 fbox
12816 \series default
12817  an den Boxinhalt angepasst.
12818 \end_layout
12819
12820 \begin_layout Standard
12821 Wenn man den Befehl 
12822 \series bold
12823
12824 \backslash
12825 framebox
12826 \series default
12827  eingibt, erscheint eine Box mit drei Eingabefeldern.
12828  Die ersten beiden sind von eckigen Klammern umgeben und stehen für die
12829  beiden optionalen Argumente.
12830  In das dritte Feld wird wie bei 
12831 \series bold
12832
12833 \backslash
12834 fbox
12835 \series default
12836  die Formel eingegeben.
12837 \end_layout
12838
12839 \begin_layout Standard
12840 \align center
12841 \begin_inset Tabular
12842 <lyxtabular version="3" rows="5" columns="2">
12843 <features tabularvalignment="middle">
12844 <column alignment="center" valignment="top" width="0">
12845 <column alignment="center" valignment="top" width="0">
12846 <row>
12847 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
12848 \begin_inset Text
12849
12850 \begin_layout Plain Layout
12851 Befehl
12852 \end_layout
12853
12854 \end_inset
12855 </cell>
12856 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
12857 \begin_inset Text
12858
12859 \begin_layout Plain Layout
12860 Ergebnis
12861 \begin_inset Note Note
12862 status collapsed
12863
12864 \begin_layout Plain Layout
12865
12866 \series bold
12867
12868 \backslash
12869 raisebox
12870 \series default
12871  dient nur als Abstandhalter.
12872 \end_layout
12873
12874 \end_inset
12875
12876
12877 \end_layout
12878
12879 \end_inset
12880 </cell>
12881 </row>
12882 <row>
12883 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12884 \begin_inset Text
12885
12886 \begin_layout Plain Layout
12887
12888 \backslash
12889 fbox
12890 \begin_inset ERT
12891 status collapsed
12892
12893 \begin_layout Plain Layout
12894
12895
12896 \backslash
12897 leer 
12898 \end_layout
12899
12900 \end_inset
12901
12902
12903 \family sans
12904 Strg+M
12905 \family default
12906  
12907 \backslash
12908 int
12909 \begin_inset ERT
12910 status collapsed
12911
12912 \begin_layout Plain Layout
12913
12914
12915 \backslash
12916 leer 
12917 \end_layout
12918
12919 \end_inset
12920
12921 A=B
12922 \end_layout
12923
12924 \end_inset
12925 </cell>
12926 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12927 \begin_inset Text
12928
12929 \begin_layout Plain Layout
12930 \begin_inset Formula $\raisebox{6mm}{}\fbox{\ensuremath{\int A=B}}\raisebox{-4mm}{}$
12931 \end_inset
12932
12933
12934 \end_layout
12935
12936 \end_inset
12937 </cell>
12938 </row>
12939 <row>
12940 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12941 \begin_inset Text
12942
12943 \begin_layout Plain Layout
12944
12945 \backslash
12946 boxed
12947 \begin_inset ERT
12948 status collapsed
12949
12950 \begin_layout Plain Layout
12951
12952
12953 \backslash
12954 leer 
12955 \end_layout
12956
12957 \end_inset
12958
12959
12960 \backslash
12961 int
12962 \begin_inset ERT
12963 status collapsed
12964
12965 \begin_layout Plain Layout
12966
12967
12968 \backslash
12969 leer 
12970 \end_layout
12971
12972 \end_inset
12973
12974 A=B
12975 \end_layout
12976
12977 \end_inset
12978 </cell>
12979 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12980 \begin_inset Text
12981
12982 \begin_layout Plain Layout
12983 \begin_inset Formula $\raisebox{8.5mm}{}\boxed{\int A=B}\raisebox{-6.5mm}{}$
12984 \end_inset
12985
12986
12987 \end_layout
12988
12989 \end_inset
12990 </cell>
12991 </row>
12992 <row>
12993 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12994 \begin_inset Text
12995
12996 \begin_layout Plain Layout
12997 A+
12998 \backslash
12999 fbox
13000 \begin_inset ERT
13001 status collapsed
13002
13003 \begin_layout Plain Layout
13004
13005
13006 \backslash
13007 leer 
13008 \end_layout
13009
13010 \end_inset
13011
13012 B
13013 \end_layout
13014
13015 \end_inset
13016 </cell>
13017 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13018 \begin_inset Text
13019
13020 \begin_layout Plain Layout
13021 \begin_inset Formula $\raisebox{6mm}{}A+\fbox{B}\raisebox{-3mm}{}$
13022 \end_inset
13023
13024
13025 \end_layout
13026
13027 \end_inset
13028 </cell>
13029 </row>
13030 <row>
13031 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
13032 \begin_inset Text
13033
13034 \begin_layout Plain Layout
13035
13036 \backslash
13037 framebox
13038 \begin_inset ERT
13039 status collapsed
13040
13041 \begin_layout Plain Layout
13042
13043
13044 \backslash
13045 leer 
13046 \end_layout
13047
13048 \end_inset
13049
13050 20mm
13051 \begin_inset Formula $\to$
13052 \end_inset
13053
13054
13055 \begin_inset Formula $\to$
13056 \end_inset
13057
13058
13059 \family sans
13060 Strg+M
13061 \family default
13062  
13063 \backslash
13064 frac
13065 \begin_inset ERT
13066 status collapsed
13067
13068 \begin_layout Plain Layout
13069
13070
13071 \backslash
13072 leer 
13073 \end_layout
13074
13075 \end_inset
13076
13077 A
13078 \begin_inset Formula $\downarrow$
13079 \end_inset
13080
13081 B
13082 \end_layout
13083
13084 \end_inset
13085 </cell>
13086 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
13087 \begin_inset Text
13088
13089 \begin_layout Plain Layout
13090 \begin_inset Formula $\raisebox{6mm}{}$
13091 \end_inset
13092
13093
13094 \begin_inset Formula $\framebox[20mm][]{\ensuremath{\frac{A}{B}}}$
13095 \end_inset
13096
13097
13098 \begin_inset Formula $\raisebox{-4mm}{}$
13099 \end_inset
13100
13101
13102 \end_layout
13103
13104 \end_inset
13105 </cell>
13106 </row>
13107 </lyxtabular>
13108
13109 \end_inset
13110
13111
13112 \end_layout
13113
13114 \begin_layout Standard
13115 Die Rahmendicke kann ebenfalls eingestellt werden.
13116  Dazu müssen vor der Formel im TeX-Modus die Befehle
13117 \end_layout
13118
13119 \begin_layout Standard
13120
13121 \series bold
13122
13123 \backslash
13124 fboxrule
13125 \series default
13126  
13127 \series bold
13128
13129 \begin_inset Quotes gld
13130 \end_inset
13131
13132 Dicke
13133 \begin_inset Quotes grd
13134 \end_inset
13135
13136
13137 \series default
13138  
13139 \series bold
13140
13141 \backslash
13142 fboxsep
13143 \series default
13144  
13145 \series bold
13146
13147 \begin_inset Quotes gld
13148 \end_inset
13149
13150 Abstand
13151 \begin_inset Quotes grd
13152 \end_inset
13153
13154
13155 \end_layout
13156
13157 \begin_layout Standard
13158 eingegeben werden.
13159  
13160 \begin_inset Quotes gld
13161 \end_inset
13162
13163 Abstand
13164 \begin_inset Quotes grd
13165 \end_inset
13166
13167  legt dabei den minimalen Abstand zwischen Rahmen und dem ersten Zeichen
13168  in der Box fest.
13169  Ein Beispiel dafür ist folgende umrandete Formel:
13170 \begin_inset ERT
13171 status collapsed
13172
13173 \begin_layout Plain Layout
13174
13175
13176 \backslash
13177 fboxrule 2mm 
13178 \backslash
13179 fboxsep 3mm
13180 \end_layout
13181
13182 \end_inset
13183
13184
13185 \begin_inset Formula 
13186 \[
13187 \boxed{A+B=C}
13188 \]
13189
13190 \end_inset
13191
13192 Vor dieser Formel wurde im TeX-Modus
13193 \end_layout
13194
13195 \begin_layout Standard
13196
13197 \series bold
13198
13199 \backslash
13200 fboxrule
13201 \series default
13202  
13203 \series bold
13204 2mm
13205 \series default
13206  
13207 \series bold
13208
13209 \backslash
13210 fboxsep
13211 \series default
13212  
13213 \series bold
13214 3mm
13215 \end_layout
13216
13217 \begin_layout Standard
13218 eingegeben.
13219  Diese angegeben Werte werden für alle folgenden Boxen verwendet.
13220 \end_layout
13221
13222 \begin_layout Standard
13223 Möchte man wieder zur Standardrahmengröße zurückkehren, gibt man vor der
13224  nächsten Formel im TeX-Modus folgende Befehle ein:
13225 \end_layout
13226
13227 \begin_layout Standard
13228
13229 \series bold
13230
13231 \backslash
13232 fboxrule
13233 \series default
13234  
13235 \series bold
13236 0.4pt
13237 \series default
13238  
13239 \series bold
13240
13241 \backslash
13242 fboxsep
13243 \series default
13244  
13245 \series bold
13246 3pt
13247 \series default
13248
13249 \begin_inset ERT
13250 status collapsed
13251
13252 \begin_layout Plain Layout
13253
13254
13255 \backslash
13256 fboxrule 0.4pt 
13257 \backslash
13258 fboxsep 3pt
13259 \end_layout
13260
13261 \end_inset
13262
13263
13264 \end_layout
13265
13266 \begin_layout Subsection
13267 Boxen ohne Rahmen
13268 \begin_inset CommandInset label
13269 LatexCommand label
13270 name "sub:Boxen-ohne-Rahmen"
13271
13272 \end_inset
13273
13274
13275 \begin_inset Index idx
13276 status collapsed
13277
13278 \begin_layout Plain Layout
13279 Boxen ! ohne Rahmen
13280 \end_layout
13281
13282 \end_inset
13283
13284
13285 \end_layout
13286
13287 \begin_layout Standard
13288 Für Boxen ohne Rahmen gibt es folgende Box-Befehle: 
13289 \series bold
13290
13291 \backslash
13292 mbox
13293 \series default
13294
13295 \begin_inset Index idx
13296 status collapsed
13297
13298 \begin_layout Plain Layout
13299 Befehle ! M ! 
13300 \backslash
13301 mbox
13302 \end_layout
13303
13304 \end_inset
13305
13306
13307 \series bold
13308
13309 \backslash
13310 makebox
13311 \series default
13312
13313 \begin_inset Index idx
13314 status collapsed
13315
13316 \begin_layout Plain Layout
13317 Befehle ! M ! 
13318 \backslash
13319 makebox
13320 \end_layout
13321
13322 \end_inset
13323
13324  und
13325 \begin_inset Newline linebreak
13326 \end_inset
13327
13328
13329 \series bold
13330
13331 \backslash
13332 raisebox
13333 \series default
13334
13335 \begin_inset Index idx
13336 status collapsed
13337
13338 \begin_layout Plain Layout
13339 Befehle ! R ! 
13340 \backslash
13341 raisebox
13342 \end_layout
13343
13344 \end_inset
13345
13346
13347 \end_layout
13348
13349 \begin_layout Standard
13350 Mit 
13351 \series bold
13352
13353 \backslash
13354 raisebox
13355 \series default
13356  kann man eine Box hoch- oder tiefstellen.
13357  Allerdings behalten die Zeichen in der Box im Gegensatz zum normalen Hochstelle
13358 n die Schriftgröße bei.
13359  
13360 \series bold
13361
13362 \backslash
13363 raisebox
13364 \series default
13365  wird dabei mit folgendem Schema benutzt:
13366 \end_layout
13367
13368 \begin_layout Standard
13369
13370 \series bold
13371
13372 \backslash
13373 raisebox{Höhe}{Boxinhalt}
13374 \end_layout
13375
13376 \begin_layout Standard
13377 Soll in der Box eine Formel stehen, muss man wie bei 
13378 \series bold
13379
13380 \backslash
13381 fbox
13382 \series default
13383  eine weitere Formel erstellen.
13384  
13385 \begin_inset Note Greyedout
13386 status open
13387
13388 \begin_layout Plain Layout
13389
13390 \series bold
13391 Achtung:
13392 \series default
13393  Für 
13394 \series bold
13395
13396 \backslash
13397 raisebox
13398 \series default
13399  wird diese weitere Formel durch zweimaliges statt einmaliges Drücken von
13400  
13401 \family sans
13402 Strg+M
13403 \family default
13404  erstellt, denn LyX unterstützt 
13405 \series bold
13406
13407 \backslash
13408 raisebox
13409 \series default
13410  noch nicht direkt.
13411 \end_layout
13412
13413 \end_inset
13414
13415
13416 \end_layout
13417
13418 \begin_layout Standard
13419 \align center
13420 \begin_inset Tabular
13421 <lyxtabular version="3" rows="4" columns="2">
13422 <features tabularvalignment="middle">
13423 <column alignment="center" valignment="top" width="0">
13424 <column alignment="center" valignment="top" width="0">
13425 <row>
13426 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
13427 \begin_inset Text
13428
13429 \begin_layout Plain Layout
13430 Befehl
13431 \end_layout
13432
13433 \end_inset
13434 </cell>
13435 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
13436 \begin_inset Text
13437
13438 \begin_layout Plain Layout
13439 Ergebnis
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 H
13451 \backslash
13452 raisebox{2mm
13453 \begin_inset Formula $\to$
13454 \end_inset
13455
13456
13457 \backslash
13458 {al
13459 \begin_inset Formula $\to$
13460 \end_inset
13461
13462  lo
13463 \end_layout
13464
13465 \end_inset
13466 </cell>
13467 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13468 \begin_inset Text
13469
13470 \begin_layout Plain Layout
13471 \begin_inset Formula $H\raisebox{2mm}{al}lo$
13472 \end_inset
13473
13474
13475 \end_layout
13476
13477 \end_inset
13478 </cell>
13479 </row>
13480 <row>
13481 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
13482 \begin_inset Text
13483
13484 \begin_layout Plain Layout
13485 H
13486 \backslash
13487 raisebox{-2mm
13488 \begin_inset Formula $\to$
13489 \end_inset
13490
13491
13492 \backslash
13493 {al
13494 \begin_inset Formula $\to$
13495 \end_inset
13496
13497 lo
13498 \end_layout
13499
13500 \end_inset
13501 </cell>
13502 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
13503 \begin_inset Text
13504
13505 \begin_layout Plain Layout
13506 \begin_inset Formula $H\raisebox{-2mm}{al}lo$
13507 \end_inset
13508
13509
13510 \end_layout
13511
13512 \end_inset
13513 </cell>
13514 </row>
13515 <row>
13516 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
13517 \begin_inset Text
13518
13519 \begin_layout Plain Layout
13520 A=
13521 \backslash
13522 raisebox{-2mm
13523 \begin_inset Formula $\to$
13524 \end_inset
13525
13526
13527 \backslash
13528 {
13529 \family sans
13530 Strg+M Strg+M
13531 \family default
13532  
13533 \backslash
13534 sqrt
13535 \begin_inset ERT
13536 status collapsed
13537
13538 \begin_layout Plain Layout
13539
13540
13541 \backslash
13542 leer 
13543 \end_layout
13544
13545 \end_inset
13546
13547
13548 \end_layout
13549
13550 \end_inset
13551 </cell>
13552 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
13553 \begin_inset Text
13554
13555 \begin_layout Plain Layout
13556 \begin_inset Formula $A=\raisebox{-2mm}{\mbox{\ensuremath{\sqrt{B}}}}$
13557 \end_inset
13558
13559
13560 \end_layout
13561
13562 \end_inset
13563 </cell>
13564 </row>
13565 </lyxtabular>
13566
13567 \end_inset
13568
13569
13570 \end_layout
13571
13572 \begin_layout Standard
13573 Der Befehl 
13574 \series bold
13575
13576 \backslash
13577 mbox
13578 \series default
13579  ist äquivalent zu 
13580 \series bold
13581
13582 \backslash
13583 fbox
13584 \series default
13585  und 
13586 \series bold
13587
13588 \backslash
13589 makebox
13590 \series default
13591  ist äquivalent zu 
13592 \series bold
13593
13594 \backslash
13595 framebox
13596 \series default
13597 , nur dass es keinen Rahmen gibt.
13598 \end_layout
13599
13600 \begin_layout Subsection
13601 Farbige Boxen
13602 \begin_inset CommandInset label
13603 LatexCommand label
13604 name "sub:Farbige-Boxen"
13605
13606 \end_inset
13607
13608
13609 \begin_inset Index idx
13610 status collapsed
13611
13612 \begin_layout Plain Layout
13613 Boxen ! farbige
13614 \end_layout
13615
13616 \end_inset
13617
13618
13619 \end_layout
13620
13621 \begin_layout Standard
13622 Damit die in diesem Kapitel angegebenen Befehle benutzt werden können, muss
13623  im LaTeX-Vorspann das LaTeX-Paket 
13624 \series bold
13625 color
13626 \series default
13627
13628 \begin_inset Foot
13629 status collapsed
13630
13631 \begin_layout Plain Layout
13632 Das Paket 
13633 \series bold
13634 color
13635 \series default
13636  ist Teil jeder LaTeX-Standardinstallation.
13637 \end_layout
13638
13639 \end_inset
13640
13641
13642 \begin_inset Index idx
13643 status collapsed
13644
13645 \begin_layout Plain Layout
13646 Pakete ! color
13647 \end_layout
13648
13649 \end_inset
13650
13651  mit der Zeile
13652 \end_layout
13653
13654 \begin_layout Standard
13655
13656 \series bold
13657
13658 \backslash
13659 usepackage{color}
13660 \end_layout
13661
13662 \begin_layout Standard
13663 geladen werden
13664 \begin_inset Foot
13665 status collapsed
13666
13667 \begin_layout Plain Layout
13668 Wird irgendwo im Dokument Text mit einer vordefinierten Farbe gefärbt, lädt
13669  LyX das LaTeX-Paket 
13670 \series bold
13671 color
13672 \series default
13673  automatisch.
13674  Dadurch kann es vorkommen, dass das Paket doppelt geladen wird, was aber
13675  keine Probleme hervorruft.
13676 \end_layout
13677
13678 \end_inset
13679
13680
13681 \begin_inset Note Note
13682 status collapsed
13683
13684 \begin_layout Plain Layout
13685 Damit das Paket nicht doppelt geladen werden kann, wurde im LaTeX-Vorspann
13686  ein Makro eingefügt.
13687 \end_layout
13688
13689 \end_inset
13690
13691 .
13692 \end_layout
13693
13694 \begin_layout Standard
13695 \begin_inset VSpace medskip
13696 \end_inset
13697
13698 Um Boxen einzufärben, verwendet man den Befehl 
13699 \series bold
13700
13701 \backslash
13702 colorbox
13703 \series default
13704
13705 \begin_inset Index idx
13706 status collapsed
13707
13708 \begin_layout Plain Layout
13709 Befehle ! C ! 
13710 \backslash
13711 colorbox
13712 \end_layout
13713
13714 \end_inset
13715
13716  nach folgendem Schema:
13717 \end_layout
13718
13719 \begin_layout Standard
13720
13721 \series bold
13722
13723 \backslash
13724 colorbox{Farbe}{Boxinhalt}
13725 \end_layout
13726
13727 \begin_layout Standard
13728 Der Boxinhalt kann auch wieder eine Box sein und eine 
13729 \series bold
13730
13731 \backslash
13732 colorbox
13733 \series default
13734  kann auch ein Teil einer anderen Box sein (siehe 2.
13735  und 3.
13736  Beispiel).
13737  Soll in der Box eine Formel stehen, muss wie bei 
13738 \series bold
13739
13740 \backslash
13741 raisebox
13742 \series default
13743  eine weitere Formel erstellt werden.
13744 \begin_inset Foot
13745 status collapsed
13746
13747 \begin_layout Plain Layout
13748 Das gilt auch für den Befehl 
13749 \series bold
13750
13751 \backslash
13752 fcolorbox
13753 \series default
13754 .
13755 \end_layout
13756
13757 \end_inset
13758
13759
13760 \end_layout
13761
13762 \begin_layout Standard
13763 Aus folgenden vordefinierten Farben kann gewählt werden:
13764 \end_layout
13765
13766 \begin_layout Standard
13767
13768 \series bold
13769 black
13770 \series default
13771
13772 \series bold
13773 blue
13774 \series default
13775
13776 \series bold
13777 cyan
13778 \series default
13779
13780 \series bold
13781 green
13782 \series default
13783
13784 \series bold
13785 magenta
13786 \series default
13787
13788 \series bold
13789 red
13790 \series default
13791
13792 \series bold
13793 white
13794 \series default
13795  und 
13796 \series bold
13797 yellow
13798 \end_layout
13799
13800 \begin_layout Standard
13801 \align center
13802 \begin_inset Tabular
13803 <lyxtabular version="3" rows="4" columns="2">
13804 <features tabularvalignment="middle">
13805 <column alignment="center" valignment="top" width="0">
13806 <column alignment="center" valignment="top" width="0">
13807 <row>
13808 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
13809 \begin_inset Text
13810
13811 \begin_layout Plain Layout
13812 Befehl
13813 \end_layout
13814
13815 \end_inset
13816 </cell>
13817 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
13818 \begin_inset Text
13819
13820 \begin_layout Plain Layout
13821 Ergebnis
13822 \begin_inset Note Note
13823 status collapsed
13824
13825 \begin_layout Plain Layout
13826
13827 \series bold
13828
13829 \backslash
13830 raisebox
13831 \series default
13832  dient nur als Abstandhalter.
13833 \end_layout
13834
13835 \end_inset
13836
13837
13838 \end_layout
13839
13840 \end_inset
13841 </cell>
13842 </row>
13843 <row>
13844 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13845 \begin_inset Text
13846
13847 \begin_layout Plain Layout
13848
13849 \backslash
13850 colorbox{yellow
13851 \begin_inset Formula $\to$
13852 \end_inset
13853
13854
13855 \backslash
13856 {A=B
13857 \end_layout
13858
13859 \end_inset
13860 </cell>
13861 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13862 \begin_inset Text
13863
13864 \begin_layout Plain Layout
13865 \begin_inset Formula $\raisebox{6mm}{}\colorbox{yellow}{A=B}\raisebox{-3mm}{}$
13866 \end_inset
13867
13868
13869 \end_layout
13870
13871 \end_inset
13872 </cell>
13873 </row>
13874 <row>
13875 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13876 \begin_inset Text
13877
13878 \begin_layout Plain Layout
13879
13880 \backslash
13881 colorbox{green
13882 \begin_inset Formula $\to$
13883 \end_inset
13884
13885
13886 \backslash
13887 {
13888 \backslash
13889 fbox
13890 \begin_inset ERT
13891 status collapsed
13892
13893 \begin_layout Plain Layout
13894
13895
13896 \backslash
13897 leer 
13898 \end_layout
13899
13900 \end_inset
13901
13902 A=B
13903 \end_layout
13904
13905 \end_inset
13906 </cell>
13907 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13908 \begin_inset Text
13909
13910 \begin_layout Plain Layout
13911 \begin_inset Formula $\raisebox{6mm}{}\colorbox{green}{\fbox{A=B}}\raisebox{-3mm}{}$
13912 \end_inset
13913
13914
13915 \end_layout
13916
13917 \end_inset
13918 </cell>
13919 </row>
13920 <row>
13921 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
13922 \begin_inset Text
13923
13924 \begin_layout Plain Layout
13925
13926 \backslash
13927 fbox
13928 \begin_inset ERT
13929 status collapsed
13930
13931 \begin_layout Plain Layout
13932
13933
13934 \backslash
13935 leer 
13936 \end_layout
13937
13938 \end_inset
13939
13940
13941 \backslash
13942 colorbox{green
13943 \begin_inset Formula $\to$
13944 \end_inset
13945
13946
13947 \backslash
13948 {
13949 \family sans
13950 Strg+M Strg+M
13951 \family default
13952  
13953 \backslash
13954 int
13955 \begin_inset ERT
13956 status collapsed
13957
13958 \begin_layout Plain Layout
13959
13960
13961 \backslash
13962 leer 
13963 \end_layout
13964
13965 \end_inset
13966
13967 C=D
13968 \end_layout
13969
13970 \end_inset
13971 </cell>
13972 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
13973 \begin_inset Text
13974
13975 \begin_layout Plain Layout
13976 \begin_inset Formula $\raisebox{7mm}{}\fbox{\colorbox{green}{\mbox{\ensuremath{\int C=D}}}}\raisebox{-5mm}{}$
13977 \end_inset
13978
13979
13980 \end_layout
13981
13982 \end_inset
13983 </cell>
13984 </row>
13985 </lyxtabular>
13986
13987 \end_inset
13988
13989
13990 \end_layout
13991
13992 \begin_layout Standard
13993
13994 \series bold
13995
13996 \backslash
13997 colorbox
13998 \series default
13999  färbt nur die Box, nicht aber die Zeichen in der Box ein.
14000  Um alle Zeichen zu färben, markiert man die ganze Formel und wählt im Dialog
14001  
14002 \family sans
14003 Textstil
14004 \family default
14005  die gewünschte Farbe aus.
14006  Der Dialog kann mit dem Werkzeugleistenknopf 
14007 \begin_inset Graphics
14008         filename ../../images/dialog-show_character.png
14009         scale 85
14010
14011 \end_inset
14012
14013  oder dem Menü 
14014 \family sans
14015 Bearbeiten\SpecialChar \menuseparator
14016 Textstil\SpecialChar \menuseparator
14017 Benutzerdefiniert
14018 \family default
14019  aufgerufen werden.
14020  Die Formelnummer hat dann dieselbe Farbe wie die Formel.
14021  Soll die Formelnummer eine andere Farbe als die Formelzeichen haben, muss
14022  innerhalb der Formel die Farbe geändert werden.
14023 \end_layout
14024
14025 \begin_layout Standard
14026 Ein Beispiel:
14027 \end_layout
14028
14029 \begin_layout Standard
14030
14031 \color red
14032 \begin_inset Formula 
14033 \begin{equation}
14034 \int A=B\label{eq:rot}
14035 \end{equation}
14036
14037 \end_inset
14038
14039
14040 \color green
14041
14042 \begin_inset Formula 
14043 \begin{equation}
14044 \textcolor{red}{\int A=B}\label{eq:rotgruen}
14045 \end{equation}
14046
14047 \end_inset
14048
14049
14050 \end_layout
14051
14052 \begin_layout Standard
14053 Formel 
14054 \begin_inset CommandInset ref
14055 LatexCommand eqref
14056 reference "eq:rot"
14057
14058 \end_inset
14059
14060  ist komplett rot gefärbt.
14061 \begin_inset Newline newline
14062 \end_inset
14063
14064 Formel 
14065 \begin_inset CommandInset ref
14066 LatexCommand eqref
14067 reference "eq:rotgruen"
14068
14069 \end_inset
14070
14071  wurde zuerst komplett grün gefärbt, um die Farbe der Formelnummer festzulegen.
14072  Anschließend wurden die Formelzeichen rot gefärbt.
14073 \end_layout
14074
14075 \begin_layout Standard
14076 \begin_inset VSpace bigskip
14077 \end_inset
14078
14079 Möchte man den Rahmen anders als den Rest der Box färben, verwendet man
14080  den Befehl 
14081 \series bold
14082
14083 \backslash
14084 fcolorbox
14085 \series default
14086
14087 \begin_inset Index idx
14088 status collapsed
14089
14090 \begin_layout Plain Layout
14091 Befehle ! F ! 
14092 \backslash
14093 fcolorbox
14094 \end_layout
14095
14096 \end_inset
14097
14098  nach folgendem Schema:
14099 \end_layout
14100
14101 \begin_layout Standard
14102
14103 \series bold
14104
14105 \backslash
14106 fcolorbox{Rahmenfarbe}{Farbe}{Boxinhalt}
14107 \end_layout
14108
14109 \begin_layout Standard
14110
14111 \series bold
14112
14113 \backslash
14114 fcolorbox
14115 \series default
14116  stellt also eine Erweiterung des Befehls 
14117 \series bold
14118
14119 \backslash
14120 colorbox
14121 \series default
14122  dar.
14123  Die Rahmenbreite wird, wie bei 
14124 \series bold
14125
14126 \backslash
14127 framebox
14128 \series default
14129 , mit 
14130 \series bold
14131
14132 \backslash
14133 fboxrule
14134 \series default
14135  und 
14136 \series bold
14137
14138 \backslash
14139 fboxsep
14140 \series default
14141  festgelegt.
14142  Ein Beispiel:
14143 \begin_inset ERT
14144 status collapsed
14145
14146 \begin_layout Plain Layout
14147
14148
14149 \backslash
14150 fboxrule 1mm 
14151 \backslash
14152 fboxsep 1mm
14153 \end_layout
14154
14155 \end_inset
14156
14157
14158 \begin_inset Formula 
14159 \[
14160 \fcolorbox{cyan}{magenta}{A=B}
14161 \]
14162
14163 \end_inset
14164
14165
14166 \begin_inset ERT
14167 status collapsed
14168
14169 \begin_layout Plain Layout
14170
14171
14172 \backslash
14173 fboxrule 0.4pt 
14174 \backslash
14175 fboxsep 3pt
14176 \end_layout
14177
14178 \end_inset
14179
14180
14181 \end_layout
14182
14183 \begin_layout Standard
14184 Diese Formel wurde mit folgendem Befehl erstellt:
14185 \begin_inset Newline newline
14186 \end_inset
14187
14188
14189 \series bold
14190
14191 \backslash
14192 fcolorbox{cyan
14193 \begin_inset Formula $\to$
14194 \end_inset
14195
14196
14197 \backslash
14198 {magenta
14199 \begin_inset Formula $\to$
14200 \end_inset
14201
14202
14203 \backslash
14204 {A=B
14205 \end_layout
14206
14207 \begin_layout Standard
14208 \begin_inset VSpace bigskip
14209 \end_inset
14210
14211 Um andere als die vordefinierten Farben zu verwenden, muss man diese zuerst
14212  selbst definieren.
14213 \end_layout
14214
14215 \begin_layout Standard
14216 Man kann z.
14217 \begin_inset space \thinspace{}
14218 \end_inset
14219
14220 B.
14221  mit folgender LaTeX-Vorspannzeile die Farbe 
14222 \begin_inset Quotes gld
14223 \end_inset
14224
14225
14226 \series bold
14227 dunkelgruen
14228 \series default
14229
14230 \begin_inset Quotes grd
14231 \end_inset
14232
14233
14234 \begin_inset Foot
14235 status collapsed
14236
14237 \begin_layout Plain Layout
14238 In Befehlen darf kein Umlaut stehen, siehe 
14239 \begin_inset CommandInset ref
14240 LatexCommand ref
14241 reference "sec:Benutzerdefinierte-Befehle"
14242
14243 \end_inset
14244
14245 .
14246 \end_layout
14247
14248 \end_inset
14249
14250  definieren:
14251 \end_layout
14252
14253 \begin_layout Standard
14254
14255 \series bold
14256
14257 \backslash
14258 definecolor{dunkelgruen}{cmyk}{0.5,
14259 \series default
14260  
14261 \series bold
14262 0,
14263 \series default
14264  
14265 \series bold
14266 1,
14267 \series default
14268  
14269 \series bold
14270 0.5}
14271 \series default
14272
14273 \begin_inset Index idx
14274 status collapsed
14275
14276 \begin_layout Plain Layout
14277 Befehle ! D ! 
14278 \backslash
14279 definecolor
14280 \end_layout
14281
14282 \end_inset
14283
14284
14285 \end_layout
14286
14287 \begin_layout Standard
14288
14289 \series bold
14290 cmyk
14291 \series default
14292  ist der Farbraum und steht für die Farben 
14293 \series bold
14294 cyan
14295 \series default
14296
14297 \series bold
14298 magenta
14299 \series default
14300
14301 \series bold
14302 yellow
14303 \series default
14304  und 
14305 \series bold
14306 black
14307 \series default
14308 .
14309  Die vier Zahlen geben der Reihe nach den Anteil der vier Farben an.
14310  Für den Anteil kann man Werte im Bereich 0
14311 \begin_inset space \thinspace{}
14312 \end_inset
14313
14314 -
14315 \begin_inset space \thinspace{}
14316 \end_inset
14317
14318 1 angeben.
14319  Anstelle von 
14320 \series bold
14321 cmyk
14322 \series default
14323  kann man zur Definition auch den Farbraum 
14324 \series bold
14325 rgb
14326 \series default
14327  verwenden.
14328  
14329 \series bold
14330 rgb
14331 \series default
14332  steht für 
14333 \series bold
14334 red
14335 \series default
14336
14337 \series bold
14338 green
14339 \series default
14340  und 
14341 \series bold
14342 blue
14343 \series default
14344 , so dass man dann mit drei Zahlen die Anteile dieser Farben festlegen kann.
14345  Des Weiteren gibt es noch den Farbraum 
14346 \series bold
14347 gray
14348 \series default
14349 , bei dem man mit einer Zahl den Graustufenanteil festlegen kann.
14350 \end_layout
14351
14352 \begin_layout Standard
14353 Als Beispiel eine gerahmte Box mit der neu definierten Farbe 
14354 \series bold
14355 darkgreen
14356 \series default
14357 , bei der die Zeichenfarbe 
14358 \series bold
14359 yellow
14360 \series default
14361  gewählt wurde:
14362 \begin_inset Formula 
14363 \begin{equation}
14364 \colorbox{dunkelgruen}{\color{yellow}\boxed{\int A\,\mathrm{d}x=\frac{\sqrt[5]{B}}{\ln\left(\frac{1}{3}\right)}}}
14365 \end{equation}
14366
14367 \end_inset
14368
14369
14370 \end_layout
14371
14372 \begin_layout Standard
14373 Selbst definierte Farben können mit dem Befehl 
14374 \series bold
14375
14376 \backslash
14377 textcolor
14378 \series default
14379  auch für Text
14380 \begin_inset Index idx
14381 status collapsed
14382
14383 \begin_layout Plain Layout
14384 Text ! farbiger
14385 \end_layout
14386
14387 \end_inset
14388
14389  verwendet werden:
14390 \end_layout
14391
14392 \begin_layout Standard
14393 \begin_inset ERT
14394 status collapsed
14395
14396 \begin_layout Plain Layout
14397
14398
14399 \backslash
14400 textcolor{dunkelgruen}{
14401 \end_layout
14402
14403 \end_inset
14404
14405 Dieser Satz ist 
14406 \begin_inset Quotes gld
14407 \end_inset
14408
14409 dunkelgruen
14410 \begin_inset Quotes grd
14411 \end_inset
14412
14413 .
14414 \begin_inset ERT
14415 status collapsed
14416
14417 \begin_layout Plain Layout
14418
14419 }
14420 \end_layout
14421
14422 \end_inset
14423
14424
14425 \end_layout
14426
14427 \begin_layout Standard
14428
14429 \series bold
14430
14431 \backslash
14432 textcolor
14433 \series default
14434
14435 \begin_inset Index idx
14436 status collapsed
14437
14438 \begin_layout Plain Layout
14439 Befehle ! T ! 
14440 \backslash
14441 textcolor
14442 \end_layout
14443
14444 \end_inset
14445
14446  wird nach dem Schema 
14447 \series bold
14448
14449 \backslash
14450 textcolor{Farbe}{zu
14451 \series default
14452  
14453 \series bold
14454 färbende
14455 \series default
14456  
14457 \series bold
14458 Zeichen}
14459 \series default
14460  verwendet.
14461 \end_layout
14462
14463 \begin_layout Standard
14464 \begin_inset Newpage newpage
14465 \end_inset
14466
14467
14468 \end_layout
14469
14470 \begin_layout Subsection
14471 Absatzboxen
14472 \begin_inset CommandInset label
14473 LatexCommand label
14474 name "sub:Absatzboxen"
14475
14476 \end_inset
14477
14478
14479 \begin_inset Index idx
14480 status collapsed
14481
14482 \begin_layout Plain Layout
14483 Boxen ! Absatz-
14484 \end_layout
14485
14486 \end_inset
14487
14488
14489 \end_layout
14490
14491 \begin_layout Standard
14492 Mit dem Menü 
14493 \family sans
14494 Einfügen\SpecialChar \menuseparator
14495 Box
14496 \family default
14497  oder dem Werkzeugleistenknopf 
14498 \begin_inset Graphics
14499         filename ../../images/box-insert.png
14500         scale 85
14501
14502 \end_inset
14503
14504  kann man eine Box erstellen, die mehrere Zeilen und Absätze enthalten kann,
14505  eine so genannte 
14506 \emph on
14507 Parbox
14508 \emph default
14509  (Absatzbox).
14510 \end_layout
14511
14512 \begin_layout Standard
14513 Das folgende Beispiel zeigt eine umrahmte Absatzbox in einer Zeile:
14514 \end_layout
14515
14516 \begin_layout Standard
14517 \begin_inset VSpace medskip
14518 \end_inset
14519
14520 Dies ist eine Zeile 
14521 \begin_inset Box Boxed
14522 position "c"
14523 hor_pos "c"
14524 has_inner_box 1
14525 inner_pos "t"
14526 use_parbox 1
14527 use_makebox 0
14528 width "5cm"
14529 special "none"
14530 height "1in"
14531 height_special "totalheight"
14532 status open
14533
14534 \begin_layout Plain Layout
14535 Dies ist die Absatzbox.
14536  Sie ist genau 5
14537 \begin_inset space \thinspace{}
14538 \end_inset
14539
14540 cm lang und kann auch Formeln enthalten: 
14541 \begin_inset Formula $\int A\,\mathrm{d}s=C$
14542 \end_inset
14543
14544
14545 \end_layout
14546
14547 \end_inset
14548
14549  mit einer Absatzbox.
14550 \begin_inset VSpace medskip
14551 \end_inset
14552
14553
14554 \end_layout
14555
14556 \begin_layout Standard
14557 Solch eine Box wird erstellt, indem man mit der rechten Maustaste auf die
14558  graue Box mit dem Namen 
14559 \begin_inset Quotes gld
14560 \end_inset
14561
14562 Box(Gerahmt)
14563 \begin_inset Quotes grd
14564 \end_inset
14565
14566  klickt.
14567  Es erscheint dann ein Fenster in dem man die Boxeigenschaften festlegt.
14568  In diesem Fall: 
14569 \emph on
14570 Verzierung
14571 \emph default
14572 : Rechteckige Box, 
14573 \emph on
14574 Innere Box
14575 \emph default
14576 : Parbox, 
14577 \emph on
14578 Breite
14579 \emph default
14580 : 5
14581 \begin_inset space \thinspace{}
14582 \end_inset
14583
14584 cm, 
14585 \emph on
14586 Vertikale Box Ausrichtung
14587 \emph default
14588 : Mitte
14589 \end_layout
14590
14591 \begin_layout Standard
14592 \begin_inset VSpace medskip
14593 \end_inset
14594
14595 In LaTeX wird eine Absatzbox mit dem Befehl 
14596 \series bold
14597
14598 \backslash
14599 parbox
14600 \series default
14601
14602 \begin_inset Index idx
14603 status collapsed
14604
14605 \begin_layout Plain Layout
14606 Befehle ! P ! 
14607 \backslash
14608 parbox
14609 \end_layout
14610
14611 \end_inset
14612
14613  erstellt, welcher folgendes Schema besitzt:
14614 \end_layout
14615
14616 \begin_layout Standard
14617
14618 \series bold
14619
14620 \backslash
14621 parbox[Position]{Breite}{Boxinhalt}
14622 \end_layout
14623
14624 \begin_layout Standard
14625 Die Positionen 
14626 \emph on
14627 b
14628 \emph default
14629  und 
14630 \emph on
14631 t
14632 \emph default
14633  sind möglich.
14634  
14635 \emph on
14636 b
14637 \emph default
14638  steht für 
14639 \begin_inset Quotes gld
14640 \end_inset
14641
14642 bottom
14643 \begin_inset Quotes grd
14644 \end_inset
14645
14646  (unten) und bedeutet, dass die letzte Absatzzeile in den umstehenden Text
14647  eingepasst wird.
14648  Bei 
14649 \emph on
14650 t
14651 \emph default
14652  wie 
14653 \begin_inset Quotes gld
14654 \end_inset
14655
14656 top
14657 \begin_inset Quotes grd
14658 \end_inset
14659
14660  (oben) geschieht dies für die erste Zeile.
14661  Wird keine Position angegeben, wird der Absatz in mittlerer Höhe eingepasst,
14662  siehe das Kapitel 
14663 \emph on
14664 Boxen
14665 \emph default
14666  des Handbuchs
14667 \emph on
14668  Eingebettete
14669 \begin_inset space ~
14670 \end_inset
14671
14672 Objekte
14673 \emph default
14674  für Beispiele.
14675 \end_layout
14676
14677 \begin_layout Standard
14678 \begin_inset VSpace bigskip
14679 \end_inset
14680
14681 Möchte man Formeln komplett mit Formelnummer umranden, muss man die Formel
14682  in eine Absatzbox setzen.
14683  Dazu schreibt man im TeX-Modus vor die Formel den Befehl 
14684 \series bold
14685
14686 \backslash
14687 fbox{
14688 \backslash
14689 parbox{
14690 \backslash
14691 linewidth-2
14692 \backslash
14693 fboxsep-2
14694 \backslash
14695 fboxrule}{
14696 \series default
14697 .
14698  Hierbei steht 
14699 \series bold
14700
14701 \backslash
14702 linewidth
14703 \series default
14704
14705 \begin_inset Index idx
14706 status collapsed
14707
14708 \begin_layout Plain Layout
14709 Befehle ! L ! 
14710 \backslash
14711 linewidth
14712 \end_layout
14713
14714 \end_inset
14715
14716  für die im Dokument eingestellte Zeilenbreite.
14717  Da sich der Rahmen außerhalb der Absatzbox befindet, muss man von der Zeilenbre
14718 ite zweimal die Rahmendicke und den Rahmenabstand abziehen.
14719  Da dies LyX aufgrund eines Fehlers
14720 \begin_inset Foot
14721 status collapsed
14722
14723 \begin_layout Plain Layout
14724 \begin_inset CommandInset href
14725 LatexCommand href
14726 name "LyX-Fehler #4483"
14727 target "http://www.lyx.org/trac/ticket/4483"
14728
14729 \end_inset
14730
14731
14732 \end_layout
14733
14734 \end_inset
14735
14736  nicht automatisch macht, muss der TeX-Modus verwendet werden.
14737  Damit man in Argumenten multiplizieren und subtrahieren kann, muss im LaTeX-Vor
14738 spann das LaTeX-Paket 
14739 \series bold
14740 calc
14741 \series default
14742
14743 \begin_inset Foot
14744 status collapsed
14745
14746 \begin_layout Plain Layout
14747
14748 \series bold
14749 calc
14750 \series default
14751  ist Teil jeder LaTeX-Standardinstallation.
14752 \end_layout
14753
14754 \end_inset
14755
14756
14757 \begin_inset Index idx
14758 status collapsed
14759
14760 \begin_layout Plain Layout
14761 Pakete ! calc
14762 \end_layout
14763
14764 \end_inset
14765
14766  mit der Zeile
14767 \end_layout
14768
14769 \begin_layout Standard
14770
14771 \series bold
14772
14773 \backslash
14774 usepackage{calc}
14775 \end_layout
14776
14777 \begin_layout Standard
14778 geladen werden.
14779  Nach der Formel werden beide Boxen geschlossen, indem man 
14780 \series bold
14781 }}
14782 \series default
14783  im TeX-Modus eingibt.
14784  Dazu ein Beispiel:
14785 \begin_inset ERT
14786 status collapsed
14787
14788 \begin_layout Plain Layout
14789
14790
14791 \backslash
14792 fboxsep 5mm 
14793 \backslash
14794 fboxrule 5mm
14795 \end_layout
14796
14797 \end_inset
14798
14799
14800 \end_layout
14801
14802 \begin_layout Standard
14803 \begin_inset ERT
14804 status collapsed
14805
14806 \begin_layout Plain Layout
14807
14808
14809 \backslash
14810 fbox{
14811 \backslash
14812 parbox{
14813 \backslash
14814 linewidth-2
14815 \backslash
14816 fboxsep-2
14817 \backslash
14818 fboxrule}{
14819 \end_layout
14820
14821 \end_inset
14822
14823
14824 \begin_inset Formula 
14825 \begin{equation}
14826 \int A\,\mathrm{d}x=\frac{\sqrt[5]{B}}{\ln\left(\frac{1}{3}\right)}
14827 \end{equation}
14828
14829 \end_inset
14830
14831
14832 \begin_inset ERT
14833 status collapsed
14834
14835 \begin_layout Plain Layout
14836
14837 }}
14838 \end_layout
14839
14840 \end_inset
14841
14842
14843 \begin_inset ERT
14844 status collapsed
14845
14846 \begin_layout Plain Layout
14847
14848
14849 \backslash
14850 fboxrule 0.4pt 
14851 \backslash
14852 fboxsep 3pt
14853 \end_layout
14854
14855 \end_inset
14856
14857
14858 \end_layout
14859
14860 \begin_layout Standard
14861 \begin_inset VSpace medskip
14862 \end_inset
14863
14864 Da im Argument von 
14865 \series bold
14866
14867 \backslash
14868 fbox
14869 \series default
14870  eine Absatzbox verwendet wird, gibt es in diesem Fall bei der Formelgröße
14871  keinen Unterschied zwischen 
14872 \series bold
14873
14874 \backslash
14875 fbox
14876 \series default
14877  und 
14878 \series bold
14879
14880 \backslash
14881 boxed
14882 \series default
14883 .
14884 \end_layout
14885
14886 \begin_layout Standard
14887 \begin_inset VSpace bigskip
14888 \end_inset
14889
14890 Sehr nützlich sind Absatzboxen, wenn man Formeln direkt kommentieren möchte.
14891  Dazu verwendet man 
14892 \series bold
14893
14894 \backslash
14895 parbox
14896 \series default
14897  in Verbindung mit dem Befehl 
14898 \series bold
14899
14900 \backslash
14901 tag
14902 \series default
14903 .
14904  (mehr zu 
14905 \series bold
14906
14907 \backslash
14908 tag
14909 \series default
14910  siehe 
14911 \begin_inset CommandInset ref
14912 LatexCommand ref
14913 reference "sub:Benutzerdefinierte-Nummerierung"
14914
14915 \end_inset
14916
14917 )
14918 \end_layout
14919
14920 \begin_layout Standard
14921 Ein Beispiel einer mit Hilfe von 
14922 \series bold
14923
14924 \backslash
14925 parbox
14926 \series default
14927  kommentierten Formel:
14928 \end_layout
14929
14930 \begin_layout Standard
14931 \begin_inset ERT
14932 status collapsed
14933
14934 \begin_layout Plain Layout
14935
14936
14937 \backslash
14938 [5x-7b=3b
14939 \backslash
14940 tag*{
14941 \backslash
14942 parbox{5cm}{
14943 \end_layout
14944
14945 \end_inset
14946
14947 Dies ist eine Beschreibung.
14948  Sie ist deutlich von der Formel getrennt und mehrzeilig.
14949 \begin_inset ERT
14950 status collapsed
14951
14952 \begin_layout Plain Layout
14953
14954 }}
14955 \backslash
14956 ]
14957 \end_layout
14958
14959 \end_inset
14960
14961
14962 \end_layout
14963
14964 \begin_layout Standard
14965 So eine Formel muss komplett im TeX-Modus eingegeben werden, da LyX den
14966  Befehl 
14967 \series bold
14968
14969 \backslash
14970 parbox
14971 \series default
14972  in Formeln noch nicht unterstützt.
14973  Die Formel wird mit folgender Befehlssequenz erstellt:
14974 \end_layout
14975
14976 \begin_layout Standard
14977 Der Befehl 
14978 \series bold
14979
14980 \backslash
14981 [5x-7b=3b
14982 \backslash
14983 tag*
14984 \backslash
14985 {
14986 \backslash
14987 parbox{5cm}{
14988 \series default
14989  wird im TeX-Modus eingegeben.
14990 \begin_inset Foot
14991 status collapsed
14992
14993 \begin_layout Plain Layout
14994 Ist der Formelstil 
14995 \series bold
14996 Eingerückt
14997 \series default
14998  aktiviert, kann 
14999 \series bold
15000
15001 \backslash
15002 tag*
15003 \backslash
15004 {
15005 \series default
15006  auch durch 
15007 \series bold
15008
15009 \backslash
15010 hfill
15011 \series default
15012  ersetzt werden.
15013  (Formelstile siehe 
15014 \begin_inset CommandInset ref
15015 LatexCommand ref
15016 reference "sec:Formelstile"
15017
15018 \end_inset
15019
15020 )
15021 \end_layout
15022
15023 \end_inset
15024
15025  Dann folgt die Beschreibung als normaler Text und zuletzt gibt man 
15026 \series bold
15027 }}
15028 \backslash
15029 ]
15030 \series default
15031  im TeX-Modus ein.
15032  Die Befehle 
15033 \series bold
15034
15035 \backslash
15036 [
15037 \series default
15038  und 
15039 \series bold
15040
15041 \backslash
15042 ]
15043 \series default
15044  erstellen hierbei eine abgesetzte Formel.
15045 \end_layout
15046
15047 \begin_layout Standard
15048 Die Vorteile von 
15049 \series bold
15050
15051 \backslash
15052 parbox
15053 \series default
15054  erkennt man an folgendem Beispiel, in dem mit Hilfe des mathematischen
15055  Textmodus 
15056 \begin_inset Quotes gld
15057 \end_inset
15058
15059 kommentiert
15060 \begin_inset Quotes grd
15061 \end_inset
15062
15063  wurde:
15064 \begin_inset Formula 
15065 \[
15066 5x-7b=3b\textrm{Dies ist eine Beschreibung. Sie ist nicht von der Formel getrennt ...}
15067 \]
15068
15069 \end_inset
15070
15071
15072 \end_layout
15073
15074 \begin_layout Standard
15075 \begin_inset Newpage newpage
15076 \end_inset
15077
15078
15079 \end_layout
15080
15081 \begin_layout Section
15082 Operatoren
15083 \begin_inset Index idx
15084 status collapsed
15085
15086 \begin_layout Plain Layout
15087 Operatoren
15088 \end_layout
15089
15090 \end_inset
15091
15092
15093 \end_layout
15094
15095 \begin_layout Subsection
15096 Große Operatoren
15097 \begin_inset CommandInset label
15098 LatexCommand label
15099 name "sub:Große-Operatoren"
15100
15101 \end_inset
15102
15103
15104 \begin_inset Index idx
15105 status collapsed
15106
15107 \begin_layout Plain Layout
15108 Operatoren ! große
15109 \end_layout
15110
15111 \end_inset
15112
15113
15114 \begin_inset Index idx
15115 status collapsed
15116
15117 \begin_layout Plain Layout
15118 Summen
15119 \end_layout
15120
15121 \end_inset
15122
15123
15124 \begin_inset Index idx
15125 status collapsed
15126
15127 \begin_layout Plain Layout
15128 Integrale
15129 \end_layout
15130
15131 \end_inset
15132
15133
15134 \end_layout
15135
15136 \begin_layout Standard
15137 Um alle großen Integraloperatoren nutzen zu können, die im Folgenden aufgelistet
15138  sind, muss die Option 
15139 \family sans
15140 esint-Paket automatisch verwenden
15141 \family default
15142  in den Dokumenteinstellungen unter 
15143 \family sans
15144 Mathe-Optionen
15145 \family default
15146  gewählt sein.
15147 \end_layout
15148
15149 \begin_layout Standard
15150 \begin_inset space \hfill{}
15151 \end_inset
15152
15153
15154 \begin_inset Tabular
15155 <lyxtabular version="3" rows="11" columns="2">
15156 <features tabularvalignment="middle">
15157 <column alignment="center" valignment="top" width="0pt">
15158 <column alignment="center" valignment="top" width="0pt">
15159 <row>
15160 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
15161 \begin_inset Text
15162
15163 \begin_layout Plain Layout
15164 Befehl
15165 \end_layout
15166
15167 \end_inset
15168 </cell>
15169 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
15170 \begin_inset Text
15171
15172 \begin_layout Plain Layout
15173 Ergebnis
15174 \end_layout
15175
15176 \end_inset
15177 </cell>
15178 </row>
15179 <row>
15180 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15181 \begin_inset Text
15182
15183 \begin_layout Plain Layout
15184
15185 \backslash
15186 int
15187 \begin_inset Index idx
15188 status collapsed
15189
15190 \begin_layout Plain Layout
15191 Befehle ! I ! 
15192 \backslash
15193 int
15194 \end_layout
15195
15196 \end_inset
15197
15198
15199 \end_layout
15200
15201 \end_inset
15202 </cell>
15203 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15204 \begin_inset Text
15205
15206 \begin_layout Plain Layout
15207 \begin_inset Formula $\int$
15208 \end_inset
15209
15210
15211 \end_layout
15212
15213 \end_inset
15214 </cell>
15215 </row>
15216 <row>
15217 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15218 \begin_inset Text
15219
15220 \begin_layout Plain Layout
15221
15222 \backslash
15223 oint
15224 \end_layout
15225
15226 \end_inset
15227 </cell>
15228 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15229 \begin_inset Text
15230
15231 \begin_layout Plain Layout
15232 \begin_inset Formula $\oint$
15233 \end_inset
15234
15235
15236 \end_layout
15237
15238 \end_inset
15239 </cell>
15240 </row>
15241 <row>
15242 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15243 \begin_inset Text
15244
15245 \begin_layout Plain Layout
15246
15247 \backslash
15248 ointctrclockwise
15249 \end_layout
15250
15251 \end_inset
15252 </cell>
15253 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15254 \begin_inset Text
15255
15256 \begin_layout Plain Layout
15257 \begin_inset Formula $\ointctrclockwise$
15258 \end_inset
15259
15260
15261 \end_layout
15262
15263 \end_inset
15264 </cell>
15265 </row>
15266 <row>
15267 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15268 \begin_inset Text
15269
15270 \begin_layout Plain Layout
15271
15272 \backslash
15273 ointclockwise
15274 \end_layout
15275
15276 \end_inset
15277 </cell>
15278 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15279 \begin_inset Text
15280
15281 \begin_layout Plain Layout
15282 \begin_inset Formula $\ointclockwise$
15283 \end_inset
15284
15285
15286 \end_layout
15287
15288 \end_inset
15289 </cell>
15290 </row>
15291 <row>
15292 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15293 \begin_inset Text
15294
15295 \begin_layout Plain Layout
15296
15297 \backslash
15298 sqint
15299 \end_layout
15300
15301 \end_inset
15302 </cell>
15303 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15304 \begin_inset Text
15305
15306 \begin_layout Plain Layout
15307 \begin_inset Formula $\sqint$
15308 \end_inset
15309
15310
15311 \end_layout
15312
15313 \end_inset
15314 </cell>
15315 </row>
15316 <row>
15317 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15318 \begin_inset Text
15319
15320 \begin_layout Plain Layout
15321
15322 \backslash
15323 fint
15324 \end_layout
15325
15326 \end_inset
15327 </cell>
15328 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15329 \begin_inset Text
15330
15331 \begin_layout Plain Layout
15332  
15333 \begin_inset Formula $\fint$
15334 \end_inset
15335
15336
15337 \end_layout
15338
15339 \end_inset
15340 </cell>
15341 </row>
15342 <row>
15343 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15344 \begin_inset Text
15345
15346 \begin_layout Plain Layout
15347
15348 \backslash
15349 landupint
15350 \end_layout
15351
15352 \end_inset
15353 </cell>
15354 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15355 \begin_inset Text
15356
15357 \begin_layout Plain Layout
15358  
15359 \begin_inset Formula $\landupint$
15360 \end_inset
15361
15362
15363 \end_layout
15364
15365 \end_inset
15366 </cell>
15367 </row>
15368 <row>
15369 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15370 \begin_inset Text
15371
15372 \begin_layout Plain Layout
15373
15374 \backslash
15375 landdownint
15376 \end_layout
15377
15378 \end_inset
15379 </cell>
15380 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15381 \begin_inset Text
15382
15383 \begin_layout Plain Layout
15384  
15385 \begin_inset Formula $\landdownint$
15386 \end_inset
15387
15388
15389 \end_layout
15390
15391 \end_inset
15392 </cell>
15393 </row>
15394 <row>
15395 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15396 \begin_inset Text
15397
15398 \begin_layout Plain Layout
15399
15400 \backslash
15401 bigcap
15402 \end_layout
15403
15404 \end_inset
15405 </cell>
15406 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15407 \begin_inset Text
15408
15409 \begin_layout Plain Layout
15410 \begin_inset Formula $\bigcap$
15411 \end_inset
15412
15413
15414 \end_layout
15415
15416 \end_inset
15417 </cell>
15418 </row>
15419 <row>
15420 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
15421 \begin_inset Text
15422
15423 \begin_layout Plain Layout
15424
15425 \backslash
15426 bigcup
15427 \end_layout
15428
15429 \end_inset
15430 </cell>
15431 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
15432 \begin_inset Text
15433
15434 \begin_layout Plain Layout
15435 \begin_inset Formula $\bigcup$
15436 \end_inset
15437
15438
15439 \end_layout
15440
15441 \end_inset
15442 </cell>
15443 </row>
15444 </lyxtabular>
15445
15446 \end_inset
15447
15448
15449 \begin_inset space \hfill{}
15450 \end_inset
15451
15452
15453 \begin_inset Tabular
15454 <lyxtabular version="3" rows="11" columns="2">
15455 <features tabularvalignment="middle">
15456 <column alignment="center" valignment="top" width="0pt">
15457 <column alignment="center" valignment="top" width="0pt">
15458 <row>
15459 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
15460 \begin_inset Text
15461
15462 \begin_layout Plain Layout
15463 Befehl
15464 \end_layout
15465
15466 \end_inset
15467 </cell>
15468 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
15469 \begin_inset Text
15470
15471 \begin_layout Plain Layout
15472 Ergebnis
15473 \end_layout
15474
15475 \end_inset
15476 </cell>
15477 </row>
15478 <row>
15479 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15480 \begin_inset Text
15481
15482 \begin_layout Plain Layout
15483
15484 \backslash
15485 sum
15486 \begin_inset Index idx
15487 status collapsed
15488
15489 \begin_layout Plain Layout
15490 Befehle ! S ! 
15491 \backslash
15492 sum
15493 \end_layout
15494
15495 \end_inset
15496
15497
15498 \end_layout
15499
15500 \end_inset
15501 </cell>
15502 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
15503 \begin_inset Text
15504
15505 \begin_layout Plain Layout
15506 \begin_inset Formula $\sum$
15507 \end_inset
15508
15509
15510 \end_layout
15511
15512 \end_inset
15513 </cell>
15514 </row>
15515 <row>
15516 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15517 \begin_inset Text
15518
15519 \begin_layout Plain Layout
15520
15521 \backslash
15522 prod
15523 \begin_inset Index idx
15524 status collapsed
15525
15526 \begin_layout Plain Layout
15527 Befehle ! P ! 
15528 \backslash
15529 prod
15530 \end_layout
15531
15532 \end_inset
15533
15534
15535 \end_layout
15536
15537 \end_inset
15538 </cell>
15539 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15540 \begin_inset Text
15541
15542 \begin_layout Plain Layout
15543 \begin_inset Formula $\prod$
15544 \end_inset
15545
15546
15547 \end_layout
15548
15549 \end_inset
15550 </cell>
15551 </row>
15552 <row>
15553 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15554 \begin_inset Text
15555
15556 \begin_layout Plain Layout
15557
15558 \backslash
15559 coprod
15560 \end_layout
15561
15562 \end_inset
15563 </cell>
15564 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15565 \begin_inset Text
15566
15567 \begin_layout Plain Layout
15568 \begin_inset Formula $\coprod$
15569 \end_inset
15570
15571
15572 \end_layout
15573
15574 \end_inset
15575 </cell>
15576 </row>
15577 <row>
15578 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15579 \begin_inset Text
15580
15581 \begin_layout Plain Layout
15582
15583 \backslash
15584 bigodot
15585 \end_layout
15586
15587 \end_inset
15588 </cell>
15589 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15590 \begin_inset Text
15591
15592 \begin_layout Plain Layout
15593 \begin_inset Formula $\bigodot$
15594 \end_inset
15595
15596
15597 \end_layout
15598
15599 \end_inset
15600 </cell>
15601 </row>
15602 <row>
15603 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15604 \begin_inset Text
15605
15606 \begin_layout Plain Layout
15607
15608 \backslash
15609 bigotimes
15610 \end_layout
15611
15612 \end_inset
15613 </cell>
15614 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15615 \begin_inset Text
15616
15617 \begin_layout Plain Layout
15618 \begin_inset Formula $\bigotimes$
15619 \end_inset
15620
15621
15622 \end_layout
15623
15624 \end_inset
15625 </cell>
15626 </row>
15627 <row>
15628 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15629 \begin_inset Text
15630
15631 \begin_layout Plain Layout
15632
15633 \backslash
15634 bigoplus
15635 \end_layout
15636
15637 \end_inset
15638 </cell>
15639 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15640 \begin_inset Text
15641
15642 \begin_layout Plain Layout
15643 \begin_inset Formula $\bigoplus$
15644 \end_inset
15645
15646
15647 \end_layout
15648
15649 \end_inset
15650 </cell>
15651 </row>
15652 <row>
15653 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15654 \begin_inset Text
15655
15656 \begin_layout Plain Layout
15657
15658 \backslash
15659 bigwedge
15660 \end_layout
15661
15662 \end_inset
15663 </cell>
15664 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15665 \begin_inset Text
15666
15667 \begin_layout Plain Layout
15668 \begin_inset Formula $\bigwedge$
15669 \end_inset
15670
15671
15672 \end_layout
15673
15674 \end_inset
15675 </cell>
15676 </row>
15677 <row>
15678 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15679 \begin_inset Text
15680
15681 \begin_layout Plain Layout
15682
15683 \backslash
15684 bigvee
15685 \end_layout
15686
15687 \end_inset
15688 </cell>
15689 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15690 \begin_inset Text
15691
15692 \begin_layout Plain Layout
15693 \begin_inset Formula $\bigvee$
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" leftline="true" usebox="none">
15704 \begin_inset Text
15705
15706 \begin_layout Plain Layout
15707
15708 \backslash
15709 bigsqcup
15710 \end_layout
15711
15712 \end_inset
15713 </cell>
15714 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15715 \begin_inset Text
15716
15717 \begin_layout Plain Layout
15718 \begin_inset Formula $\bigsqcup$
15719 \end_inset
15720
15721
15722 \end_layout
15723
15724 \end_inset
15725 </cell>
15726 </row>
15727 <row>
15728 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
15729 \begin_inset Text
15730
15731 \begin_layout Plain Layout
15732
15733 \backslash
15734 biguplus
15735 \end_layout
15736
15737 \end_inset
15738 </cell>
15739 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
15740 \begin_inset Text
15741
15742 \begin_layout Plain Layout
15743 \begin_inset Formula $\biguplus$
15744 \end_inset
15745
15746
15747 \end_layout
15748
15749 \end_inset
15750 </cell>
15751 </row>
15752 </lyxtabular>
15753
15754 \end_inset
15755
15756
15757 \begin_inset space \hfill{}
15758 \end_inset
15759
15760
15761 \end_layout
15762
15763 \begin_layout Standard
15764 Alle großen Operatoren können auch über den Mathe-Werkzeugleistenknopf 
15765 \begin_inset Graphics
15766         filename ../../images/math/intop.png
15767         scale 85
15768
15769 \end_inset
15770
15771  eingefügt werden.
15772 \end_layout
15773
15774 \begin_layout Standard
15775 Die Operatoren werden als groß bezeichnet, da sie größer sind als die zum
15776  Teil gleich aussehenden binären Operatoren.
15777  Zu allen großen Operatoren kann man Grenzen angeben, wie im nächsten Abschnitt
15778  beschrieben.
15779 \end_layout
15780
15781 \begin_layout Standard
15782 Für alle Integrale gibt es Befehle, die auf 
15783 \series bold
15784 op
15785 \series default
15786  enden: 
15787 \series bold
15788
15789 \backslash
15790 intop
15791 \series default
15792
15793 \series bold
15794
15795 \backslash
15796 ointop
15797 \series default
15798  usw..
15799  Diese unterscheiden sich von 
15800 \series bold
15801
15802 \backslash
15803 int
15804 \series default
15805  usw.
15806 \begin_inset space \space{}
15807 \end_inset
15808
15809 in der Art wie die Operatorgrenzen dargestellt werden, siehe 
15810 \begin_inset CommandInset ref
15811 LatexCommand ref
15812 reference "sub:Operatorgrenzen"
15813
15814 \end_inset
15815
15816 .
15817  
15818 \end_layout
15819
15820 \begin_layout Subsubsection*
15821 Hinweise zu Integralen
15822 \end_layout
15823
15824 \begin_layout Standard
15825 Der Buchstabe 
15826 \emph on
15827 d
15828 \emph default
15829  in einer Integralen ist ein Operator, der deswegen aufrecht erscheinen
15830  muss.
15831  Dazu markiert man das 
15832 \emph on
15833 d
15834 \emph default
15835  und wandelt es mit der Tastenkombination 
15836 \family sans
15837 Alt+Z
15838 \begin_inset space ~
15839 \end_inset
15840
15841 R
15842 \family default
15843
15844 \begin_inset Foot
15845 status collapsed
15846
15847 \begin_layout Plain Layout
15848 Schriftstile siehe 
15849 \begin_inset CommandInset ref
15850 LatexCommand ref
15851 reference "sub:Schriftstile"
15852
15853 \end_inset
15854
15855
15856 \end_layout
15857
15858 \end_inset
15859
15860  um.
15861  Anschließend fügt man vor dem 
15862 \emph on
15863 d
15864 \emph default
15865 , wie bei Operatoren üblich, den kleinsten Leerraum ein.
15866  Dazu ein Beispiel:
15867 \end_layout
15868
15869 \begin_layout Standard
15870 inkorrekt: 
15871 \begin_inset Formula $\int A(x)dx$
15872 \end_inset
15873
15874
15875 \begin_inset Newline newline
15876 \end_inset
15877
15878
15879 \begin_inset Phantom HPhantom
15880 status open
15881
15882 \begin_layout Plain Layout
15883 in
15884 \end_layout
15885
15886 \end_inset
15887
15888 korrekt: 
15889 \begin_inset Formula $\int A(x)\,\mathrm{d}x$
15890 \end_inset
15891
15892
15893 \end_layout
15894
15895 \begin_layout Standard
15896 \begin_inset VSpace medskip
15897 \end_inset
15898
15899 Für Mehrfachintegrale gibt es folgende Befehle:
15900 \begin_inset VSpace medskip
15901 \end_inset
15902
15903
15904 \end_layout
15905
15906 \begin_layout Standard
15907 \begin_inset space \hfill{}
15908 \end_inset
15909
15910
15911 \begin_inset Tabular
15912 <lyxtabular version="3" rows="4" columns="2">
15913 <features tabularvalignment="middle">
15914 <column alignment="center" valignment="top" width="0">
15915 <column alignment="center" valignment="top" width="0">
15916 <row>
15917 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
15918 \begin_inset Text
15919
15920 \begin_layout Plain Layout
15921 Befehl
15922 \end_layout
15923
15924 \end_inset
15925 </cell>
15926 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
15927 \begin_inset Text
15928
15929 \begin_layout Plain Layout
15930 Ergebnis
15931 \begin_inset Note Note
15932 status collapsed
15933
15934 \begin_layout Plain Layout
15935
15936 \series bold
15937
15938 \backslash
15939 raisebox
15940 \series default
15941  dient nur als Abstandhalter.
15942 \end_layout
15943
15944 \end_inset
15945
15946
15947 \end_layout
15948
15949 \end_inset
15950 </cell>
15951 </row>
15952 <row>
15953 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15954 \begin_inset Text
15955
15956 \begin_layout Plain Layout
15957
15958 \backslash
15959 iint
15960 \end_layout
15961
15962 \end_inset
15963 </cell>
15964 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15965 \begin_inset Text
15966
15967 \begin_layout Plain Layout
15968 \begin_inset Formula $\raisebox{4.5mm}{}\iint\raisebox{-2.5mm}{}$
15969 \end_inset
15970
15971
15972 \end_layout
15973
15974 \end_inset
15975 </cell>
15976 </row>
15977 <row>
15978 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15979 \begin_inset Text
15980
15981 \begin_layout Plain Layout
15982
15983 \backslash
15984 oiint
15985 \end_layout
15986
15987 \end_inset
15988 </cell>
15989 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15990 \begin_inset Text
15991
15992 \begin_layout Plain Layout
15993 \begin_inset Formula $\raisebox{4.5mm}{}\oiint\raisebox{-2.5mm}{}$
15994 \end_inset
15995
15996
15997 \end_layout
15998
15999 \end_inset
16000 </cell>
16001 </row>
16002 <row>
16003 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
16004 \begin_inset Text
16005
16006 \begin_layout Plain Layout
16007
16008 \backslash
16009 sqiint
16010 \end_layout
16011
16012 \end_inset
16013 </cell>
16014 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
16015 \begin_inset Text
16016
16017 \begin_layout Plain Layout
16018 \begin_inset Formula $\raisebox{4.5mm}{}\sqiint\raisebox{-2.5mm}{}$
16019 \end_inset
16020
16021
16022 \end_layout
16023
16024 \end_inset
16025 </cell>
16026 </row>
16027 </lyxtabular>
16028
16029 \end_inset
16030
16031
16032 \begin_inset space \hfill{}
16033 \end_inset
16034
16035
16036 \begin_inset Tabular
16037 <lyxtabular version="3" rows="4" columns="2">
16038 <features tabularvalignment="middle">
16039 <column alignment="center" valignment="top" width="0">
16040 <column alignment="center" valignment="top" width="0">
16041 <row>
16042 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
16043 \begin_inset Text
16044
16045 \begin_layout Plain Layout
16046 Befehl
16047 \end_layout
16048
16049 \end_inset
16050 </cell>
16051 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
16052 \begin_inset Text
16053
16054 \begin_layout Plain Layout
16055 Ergebnis
16056 \end_layout
16057
16058 \end_inset
16059 </cell>
16060 </row>
16061 <row>
16062 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16063 \begin_inset Text
16064
16065 \begin_layout Plain Layout
16066
16067 \backslash
16068 iiint
16069 \end_layout
16070
16071 \end_inset
16072 </cell>
16073 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16074 \begin_inset Text
16075
16076 \begin_layout Plain Layout
16077 \begin_inset Formula $\raisebox{4.5mm}{}\iiint\raisebox{-2.5mm}{}$
16078 \end_inset
16079
16080
16081 \end_layout
16082
16083 \end_inset
16084 </cell>
16085 </row>
16086 <row>
16087 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16088 \begin_inset Text
16089
16090 \begin_layout Plain Layout
16091
16092 \backslash
16093 iiiint
16094 \end_layout
16095
16096 \end_inset
16097 </cell>
16098 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16099 \begin_inset Text
16100
16101 \begin_layout Plain Layout
16102 \begin_inset Formula $\raisebox{4.5mm}{}\iiiint\raisebox{-2.5mm}{}$
16103 \end_inset
16104
16105
16106 \end_layout
16107
16108 \end_inset
16109 </cell>
16110 </row>
16111 <row>
16112 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
16113 \begin_inset Text
16114
16115 \begin_layout Plain Layout
16116
16117 \backslash
16118 dotsint
16119 \end_layout
16120
16121 \end_inset
16122 </cell>
16123 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
16124 \begin_inset Text
16125
16126 \begin_layout Plain Layout
16127 \begin_inset Formula $\raisebox{4.5mm}{}\dotsint\raisebox{-2.5mm}{}$
16128 \end_inset
16129
16130
16131 \end_layout
16132
16133 \end_inset
16134 </cell>
16135 </row>
16136 </lyxtabular>
16137
16138 \end_inset
16139
16140
16141 \begin_inset space \hfill{}
16142 \end_inset
16143
16144
16145 \end_layout
16146
16147 \begin_layout Subsection
16148 Operatorgrenzen
16149 \begin_inset CommandInset label
16150 LatexCommand label
16151 name "sub:Operatorgrenzen"
16152
16153 \end_inset
16154
16155
16156 \begin_inset Index idx
16157 status collapsed
16158
16159 \begin_layout Plain Layout
16160 Operatoren ! Grenzen
16161 \end_layout
16162
16163 \end_inset
16164
16165
16166 \end_layout
16167
16168 \begin_layout Standard
16169 Grenzen werden durch Hoch- bzw.
16170  Tiefstellen erzeugt:
16171 \end_layout
16172
16173 \begin_layout Standard
16174 \align center
16175 \begin_inset Tabular
16176 <lyxtabular version="3" rows="2" columns="2">
16177 <features tabularvalignment="middle">
16178 <column alignment="center" valignment="top" width="0pt">
16179 <column alignment="center" valignment="top" width="0pt">
16180 <row>
16181 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
16182 \begin_inset Text
16183
16184 \begin_layout Plain Layout
16185 Befehl
16186 \end_layout
16187
16188 \end_inset
16189 </cell>
16190 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
16191 \begin_inset Text
16192
16193 \begin_layout Plain Layout
16194 Ergebnis
16195 \begin_inset Note Note
16196 status collapsed
16197
16198 \begin_layout Plain Layout
16199
16200 \series bold
16201
16202 \backslash
16203 raisebox
16204 \series default
16205  dient nur als Abstandhalter.
16206 \end_layout
16207
16208 \end_inset
16209
16210
16211 \end_layout
16212
16213 \end_inset
16214 </cell>
16215 </row>
16216 <row>
16217 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
16218 \begin_inset Text
16219
16220 \begin_layout Plain Layout
16221
16222 \backslash
16223 prod^
16224 \backslash
16225 infty
16226 \begin_inset ERT
16227 status collapsed
16228
16229 \begin_layout Plain Layout
16230
16231
16232 \backslash
16233 leer 
16234 \end_layout
16235
16236 \end_inset
16237
16238
16239 \begin_inset Formula $\to$
16240 \end_inset
16241
16242 _0
16243 \begin_inset Formula $\to$
16244 \end_inset
16245
16246 A(x)
16247 \end_layout
16248
16249 \end_inset
16250 </cell>
16251 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
16252 \begin_inset Text
16253
16254 \begin_layout Plain Layout
16255 \begin_inset Formula $\raisebox{5mm}{}\prod_{0}^{\infty}A(x)\raisebox{-2.5mm}{}$
16256 \end_inset
16257
16258
16259 \end_layout
16260
16261 \end_inset
16262 </cell>
16263 </row>
16264 </lyxtabular>
16265
16266 \end_inset
16267
16268
16269 \end_layout
16270
16271 \begin_layout Standard
16272 Bei einer Formel in einer Textzeile werden die Grenzen rechts neben den
16273  Operator gesetzt.
16274  In einer abgesetzten Formel werden, außer bei Integralen, die Grenzen über
16275  bzw.
16276  unter den Operator gesetzt.
16277 \end_layout
16278
16279 \begin_layout Standard
16280 Um zu erzwingen, dass die Grenzen neben den Operator gesetzt werden, setzt
16281  man den Cursor direkt hinter den Operator und setzt über das Menü 
16282 \family sans
16283 Bearbeiten\SpecialChar \menuseparator
16284 Mathe\SpecialChar \menuseparator
16285 Art der Operatorgrenzen ändern
16286 \family default
16287  die Grenzen auf 
16288 \series bold
16289 Eingebettet
16290 \series default
16291  (Tastenkombination 
16292 \family sans
16293 Alt+M
16294 \begin_inset space ~
16295 \end_inset
16296
16297 L
16298 \family default
16299 ).
16300  Dazu folgendes Beispiel:
16301 \end_layout
16302
16303 \begin_layout Standard
16304 Die normalen Grenzen sehen so aus:
16305 \begin_inset Formula 
16306 \[
16307 \sum_{x=0}^{\infty}\frac{1}{x^{2}}
16308 \]
16309
16310 \end_inset
16311
16312 So sieht die Formel aus, wenn man die Grenzen neben das Summenzeichen setzt:
16313 \begin_inset Formula 
16314 \[
16315 \sum\nolimits _{x=0}^{\infty}\frac{1}{x^{2}}
16316 \]
16317
16318 \end_inset
16319
16320 Bei Integralen werden mit Ausnahme von denen, die auf 
16321 \series bold
16322 op
16323 \series default
16324  enden (
16325 \series bold
16326
16327 \backslash
16328 intop
16329 \series default
16330
16331 \series bold
16332
16333 \backslash
16334 ointop
16335 \series default
16336  usw.), die Grenzen standardmäßig neben den Operator gesetzt.
16337  Bei Mehrfachintegralen werden die Grenzen jedoch meistens unter den Operator
16338  gesetzt.
16339  Im folgenden Beispiel wurde die Grenze deswegen auf 
16340 \series bold
16341 Anzeige
16342 \series default
16343  gesetzt und damit unter die Integrale geschrieben:
16344 \begin_inset Formula 
16345 \begin{equation}
16346 \iiint\limits _{V}X\,\mathrm{d}V=U\label{eq:VolInt}
16347 \end{equation}
16348
16349 \end_inset
16350
16351
16352 \end_layout
16353
16354 \begin_layout Standard
16355 \begin_inset VSpace medskip
16356 \end_inset
16357
16358 Um Bedingungen für Grenzen anzugeben, gibt es die Befehle 
16359 \series bold
16360
16361 \backslash
16362 subarray
16363 \series default
16364
16365 \begin_inset Index idx
16366 status collapsed
16367
16368 \begin_layout Plain Layout
16369 Befehle ! S ! 
16370 \backslash
16371 subarray
16372 \end_layout
16373
16374 \end_inset
16375
16376  und 
16377 \series bold
16378
16379 \backslash
16380 substack
16381 \series default
16382
16383 \begin_inset Index idx
16384 status collapsed
16385
16386 \begin_layout Plain Layout
16387 Befehle ! S ! 
16388 \backslash
16389 substack
16390 \end_layout
16391
16392 \end_inset
16393
16394 .
16395  Um z.
16396 \begin_inset space \thinspace{}
16397 \end_inset
16398
16399 B.
16400  diesen Ausdruck 
16401 \begin_inset Formula 
16402 \begin{equation}
16403 \sum_{\begin{subarray}{c}
16404 0<k<1000\\
16405 \\
16406 k\,\in\,\mathbb{N}
16407 \end{subarray}}^{n}k^{-2}\label{eq:substack}
16408 \end{equation}
16409
16410 \end_inset
16411
16412 zu erstellen, muss man Folgendes tun:
16413 \begin_inset Newline newline
16414 \end_inset
16415
16416 Zuerst gibt man den Befehl 
16417 \series bold
16418
16419 \backslash
16420 sum
16421 \series default
16422 ^
16423 \series bold
16424 n
16425 \begin_inset ERT
16426 status collapsed
16427
16428 \begin_layout Plain Layout
16429
16430
16431 \backslash
16432 leer 
16433 \end_layout
16434
16435 \end_inset
16436
16437 _
16438 \series default
16439  ein.
16440  Man befindet sich nun in einem blauen Kästchen unter dem Summenzeichen.
16441  In dieses gibt man den Befehl 
16442 \series bold
16443
16444 \backslash
16445 subarray
16446 \begin_inset ERT
16447 status collapsed
16448
16449 \begin_layout Plain Layout
16450
16451
16452 \backslash
16453 leer 
16454 \end_layout
16455
16456 \end_inset
16457
16458
16459 \series default
16460  ein.
16461  Das blaue Kästchen hat nun eine lila Umrandung und man kann jetzt mehrere
16462  Zeilen untereinander schreiben.
16463  Mit Eingabe des Zeilenumbruchs (
16464 \family sans
16465 Strg+Enter
16466 \family default
16467 ) wird eine neue Zeile erstellt.
16468  Gibt man
16469 \begin_inset Newline newline
16470 \end_inset
16471
16472
16473 \series bold
16474 0<k<1000 Strg+Enter
16475 \begin_inset Newline newline
16476 \end_inset
16477
16478
16479 \series default
16480 ein, erscheint darunter ein Kästchen für die neue Zeile.
16481 \end_layout
16482
16483 \begin_layout Standard
16484 Die Ausrichtung der Zeilen kann mit der 
16485 \family sans
16486 Tabellen-Werkzeugleiste
16487 \family default
16488  oder dem Menü 
16489 \family sans
16490 Bearbeiten\SpecialChar \menuseparator
16491 Zeilen & Spalten
16492 \family default
16493  auf links geändert werden.
16494  Um rechts ausgerichtete Zeilen zu erhalten, wird am Anfang der Zeile 
16495 \series bold
16496
16497 \backslash
16498 hfill
16499 \begin_inset ERT
16500 status collapsed
16501
16502 \begin_layout Plain Layout
16503
16504
16505 \backslash
16506 leer 
16507 \end_layout
16508
16509 \end_inset
16510
16511
16512 \series default
16513  eingegeben.
16514 \end_layout
16515
16516 \begin_layout Standard
16517 Der Befehl 
16518 \series bold
16519
16520 \backslash
16521 substack
16522 \series default
16523  ist äquivalent zu 
16524 \series bold
16525
16526 \backslash
16527 subarray
16528 \series default
16529 , mit dem Unterschied dass die Zeilen immer zentriert ausgerichtet sind.
16530 \end_layout
16531
16532 \begin_layout Standard
16533 \begin_inset VSpace bigskip
16534 \end_inset
16535
16536 Wie bei Formel 
16537 \begin_inset CommandInset ref
16538 LatexCommand eqref
16539 reference "eq:substack"
16540
16541 \end_inset
16542
16543  kann es vorkommen, dass sich neben dem Operator zu viel Leerraum befindet,
16544  denn das dem Operator folgende Zeichen wird neben die Grenzen gesetzt.
16545 \end_layout
16546
16547 \begin_layout Standard
16548 Um das zu verhindern, kann man folgendes Makro in den LaTeX-Vorspann einfügen:
16549 \end_layout
16550
16551 \begin_layout Standard
16552
16553 \series bold
16554
16555 \backslash
16556 def
16557 \backslash
16558 clap#1{
16559 \backslash
16560 hbox to 0pt{
16561 \backslash
16562 hss #1
16563 \backslash
16564 hss}}
16565 \begin_inset Newline newline
16566 \end_inset
16567
16568
16569 \backslash
16570 def
16571 \backslash
16572 mathclap {
16573 \backslash
16574 mathpalette 
16575 \backslash
16576 mathclapinternal}
16577 \begin_inset Newline newline
16578 \end_inset
16579
16580
16581 \backslash
16582 def
16583 \backslash
16584 mathclapinternal #1#2{
16585 \backslash
16586 clap{$
16587 \backslash
16588 mathsurround =0pt #1{#2}$}}
16589 \end_layout
16590
16591 \begin_layout Standard
16592 Dadurch wird der Befehl 
16593 \series bold
16594
16595 \backslash
16596 mathclap
16597 \series default
16598
16599 \begin_inset Index idx
16600 status collapsed
16601
16602 \begin_layout Plain Layout
16603 Befehle ! M ! 
16604 \backslash
16605 mathclap
16606 \end_layout
16607
16608 \end_inset
16609
16610  definiert, der die Breite der Grenze auf 0
16611 \begin_inset space \thinspace{}
16612 \end_inset
16613
16614 pt setzt.
16615  Das Befehlsschema lautet
16616 \end_layout
16617
16618 \begin_layout Standard
16619
16620 \series bold
16621
16622 \backslash
16623 mathclap{Grenze}
16624 \end_layout
16625
16626 \begin_layout Standard
16627 wobei die Grenze auch aus mehreren Bedingungen bestehen kann.
16628 \end_layout
16629
16630 \begin_layout Standard
16631 Auf Formel 
16632 \begin_inset CommandInset ref
16633 LatexCommand eqref
16634 reference "eq:substack"
16635
16636 \end_inset
16637
16638  angewandt, gibt man also den Befehl
16639 \end_layout
16640
16641 \begin_layout Standard
16642
16643 \series bold
16644
16645 \backslash
16646 sum_
16647 \backslash
16648 mathclap{
16649 \backslash
16650 substack
16651 \begin_inset ERT
16652 status collapsed
16653
16654 \begin_layout Plain Layout
16655
16656
16657 \backslash
16658 leer 
16659 \end_layout
16660
16661 \end_inset
16662
16663 0<k<1000 Strg+Enter
16664 \end_layout
16665
16666 \begin_layout Standard
16667 ein, um die untere Grenze zu erstellen.
16668  Der Summand befindet sich nun direkt hinter dem Summenzeichen:
16669 \begin_inset Formula 
16670 \[
16671 \sum_{\mathclap{\substack{0<k<1000\\
16672 \\
16673 k\,\in\,\mathbb{N}
16674 }
16675 }}^{n}k^{-2}
16676 \]
16677
16678 \end_inset
16679
16680
16681 \end_layout
16682
16683 \begin_layout Standard
16684 \begin_inset VSpace bigskip
16685 \end_inset
16686
16687 In 
16688 \begin_inset CommandInset ref
16689 LatexCommand ref
16690 reference "sub:Selbstdefinierte-Operatoren"
16691
16692 \end_inset
16693
16694  ist beschrieben, wie man eine Grenze für mehrere Operatoren verwenden kann.
16695 \end_layout
16696
16697 \begin_layout Subsection
16698 Binäre Operatoren
16699 \begin_inset CommandInset label
16700 LatexCommand label
16701 name "sub:Binäre-Operatoren"
16702
16703 \end_inset
16704
16705
16706 \begin_inset Index idx
16707 status collapsed
16708
16709 \begin_layout Plain Layout
16710 Operatoren ! binäre
16711 \end_layout
16712
16713 \end_inset
16714
16715
16716 \end_layout
16717
16718 \begin_layout Standard
16719 Binäre Operatoren sind von Leerraum umgeben, wenn sich vor und hinter ihnen
16720  ein Zeichen befindet.
16721 \begin_inset VSpace medskip
16722 \end_inset
16723
16724
16725 \end_layout
16726
16727 \begin_layout Standard
16728 \begin_inset space \hfill{}
16729 \end_inset
16730
16731
16732 \begin_inset Tabular
16733 <lyxtabular version="3" rows="13" columns="2">
16734 <features tabularvalignment="middle">
16735 <column alignment="center" valignment="top" width="0pt">
16736 <column alignment="center" valignment="top" width="0pt">
16737 <row>
16738 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
16739 \begin_inset Text
16740
16741 \begin_layout Plain Layout
16742 Befehl
16743 \begin_inset Note Note
16744 status collapsed
16745
16746 \begin_layout Plain Layout
16747
16748 \series bold
16749
16750 \backslash
16751 raisebox
16752 \series default
16753  dient nur als Abstandhalter.
16754 \end_layout
16755
16756 \end_inset
16757
16758
16759 \end_layout
16760
16761 \end_inset
16762 </cell>
16763 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
16764 \begin_inset Text
16765
16766 \begin_layout Plain Layout
16767 Ergebnis
16768 \end_layout
16769
16770 \end_inset
16771 </cell>
16772 </row>
16773 <row>
16774 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16775 \begin_inset Text
16776
16777 \begin_layout Plain Layout
16778 +
16779 \end_layout
16780
16781 \end_inset
16782 </cell>
16783 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16784 \begin_inset Text
16785
16786 \begin_layout Plain Layout
16787 \begin_inset Formula $+$
16788 \end_inset
16789
16790
16791 \end_layout
16792
16793 \end_inset
16794 </cell>
16795 </row>
16796 <row>
16797 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16798 \begin_inset Text
16799
16800 \begin_layout Plain Layout
16801 -
16802 \end_layout
16803
16804 \end_inset
16805 </cell>
16806 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16807 \begin_inset Text
16808
16809 \begin_layout Plain Layout
16810 \begin_inset Formula $-$
16811 \end_inset
16812
16813
16814 \end_layout
16815
16816 \end_inset
16817 </cell>
16818 </row>
16819 <row>
16820 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16821 \begin_inset Text
16822
16823 \begin_layout Plain Layout
16824
16825 \backslash
16826 pm
16827 \end_layout
16828
16829 \end_inset
16830 </cell>
16831 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16832 \begin_inset Text
16833
16834 \begin_layout Plain Layout
16835 \begin_inset Formula $\pm$
16836 \end_inset
16837
16838
16839 \end_layout
16840
16841 \end_inset
16842 </cell>
16843 </row>
16844 <row>
16845 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16846 \begin_inset Text
16847
16848 \begin_layout Plain Layout
16849
16850 \backslash
16851 mp
16852 \end_layout
16853
16854 \end_inset
16855 </cell>
16856 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16857 \begin_inset Text
16858
16859 \begin_layout Plain Layout
16860 \begin_inset Formula $\mp$
16861 \end_inset
16862
16863
16864 \end_layout
16865
16866 \end_inset
16867 </cell>
16868 </row>
16869 <row>
16870 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16871 \begin_inset Text
16872
16873 \begin_layout Plain Layout
16874
16875 \backslash
16876 cdot
16877 \end_layout
16878
16879 \end_inset
16880 </cell>
16881 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16882 \begin_inset Text
16883
16884 \begin_layout Plain Layout
16885 \begin_inset Formula $\cdot$
16886 \end_inset
16887
16888
16889 \end_layout
16890
16891 \end_inset
16892 </cell>
16893 </row>
16894 <row>
16895 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16896 \begin_inset Text
16897
16898 \begin_layout Plain Layout
16899
16900 \backslash
16901 times
16902 \end_layout
16903
16904 \end_inset
16905 </cell>
16906 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16907 \begin_inset Text
16908
16909 \begin_layout Plain Layout
16910 \begin_inset Formula $\times$
16911 \end_inset
16912
16913
16914 \end_layout
16915
16916 \end_inset
16917 </cell>
16918 </row>
16919 <row>
16920 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16921 \begin_inset Text
16922
16923 \begin_layout Plain Layout
16924
16925 \backslash
16926 div
16927 \end_layout
16928
16929 \end_inset
16930 </cell>
16931 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16932 \begin_inset Text
16933
16934 \begin_layout Plain Layout
16935 \begin_inset Formula $\div$
16936 \end_inset
16937
16938
16939 \end_layout
16940
16941 \end_inset
16942 </cell>
16943 </row>
16944 <row>
16945 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16946 \begin_inset Text
16947
16948 \begin_layout Plain Layout
16949 \begin_inset ERT
16950 status collapsed
16951
16952 \begin_layout Plain Layout
16953
16954
16955 \backslash
16956 raisebox{-1.2mm}{
16957 \end_layout
16958
16959 \end_inset
16960
16961 *
16962 \begin_inset ERT
16963 status collapsed
16964
16965 \begin_layout Plain Layout
16966
16967 }
16968 \end_layout
16969
16970 \end_inset
16971
16972
16973 \end_layout
16974
16975 \end_inset
16976 </cell>
16977 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16978 \begin_inset Text
16979
16980 \begin_layout Plain Layout
16981 \begin_inset Formula $*$
16982 \end_inset
16983
16984
16985 \end_layout
16986
16987 \end_inset
16988 </cell>
16989 </row>
16990 <row>
16991 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16992 \begin_inset Text
16993
16994 \begin_layout Plain Layout
16995
16996 \backslash
16997 star
16998 \end_layout
16999
17000 \end_inset
17001 </cell>
17002 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17003 \begin_inset Text
17004
17005 \begin_layout Plain Layout
17006 \begin_inset Formula $\star$
17007 \end_inset
17008
17009
17010 \end_layout
17011
17012 \end_inset
17013 </cell>
17014 </row>
17015 <row>
17016 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17017 \begin_inset Text
17018
17019 \begin_layout Plain Layout
17020
17021 \backslash
17022 circ
17023 \end_layout
17024
17025 \end_inset
17026 </cell>
17027 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17028 \begin_inset Text
17029
17030 \begin_layout Plain Layout
17031 \begin_inset Formula $\circ$
17032 \end_inset
17033
17034
17035 \end_layout
17036
17037 \end_inset
17038 </cell>
17039 </row>
17040 <row>
17041 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17042 \begin_inset Text
17043
17044 \begin_layout Plain Layout
17045
17046 \backslash
17047 diamond
17048 \end_layout
17049
17050 \end_inset
17051 </cell>
17052 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17053 \begin_inset Text
17054
17055 \begin_layout Plain Layout
17056 \begin_inset Formula $\diamond$
17057 \end_inset
17058
17059
17060 \end_layout
17061
17062 \end_inset
17063 </cell>
17064 </row>
17065 <row>
17066 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
17067 \begin_inset Text
17068
17069 \begin_layout Plain Layout
17070
17071 \backslash
17072 bullet
17073 \end_layout
17074
17075 \end_inset
17076 </cell>
17077 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
17078 \begin_inset Text
17079
17080 \begin_layout Plain Layout
17081 \begin_inset Formula $\bullet$
17082 \end_inset
17083
17084
17085 \end_layout
17086
17087 \end_inset
17088 </cell>
17089 </row>
17090 </lyxtabular>
17091
17092 \end_inset
17093
17094
17095 \begin_inset space \hfill{}
17096 \end_inset
17097
17098
17099 \begin_inset Tabular
17100 <lyxtabular version="3" rows="13" columns="2">
17101 <features tabularvalignment="middle">
17102 <column alignment="center" valignment="top" width="0pt">
17103 <column alignment="center" valignment="top" width="0pt">
17104 <row>
17105 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
17106 \begin_inset Text
17107
17108 \begin_layout Plain Layout
17109 Befehl
17110 \end_layout
17111
17112 \end_inset
17113 </cell>
17114 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
17115 \begin_inset Text
17116
17117 \begin_layout Plain Layout
17118 Ergebnis
17119 \end_layout
17120
17121 \end_inset
17122 </cell>
17123 </row>
17124 <row>
17125 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17126 \begin_inset Text
17127
17128 \begin_layout Plain Layout
17129
17130 \backslash
17131 nabla
17132 \end_layout
17133
17134 \end_inset
17135 </cell>
17136 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17137 \begin_inset Text
17138
17139 \begin_layout Plain Layout
17140 \begin_inset Formula $\nabla$
17141 \end_inset
17142
17143
17144 \end_layout
17145
17146 \end_inset
17147 </cell>
17148 </row>
17149 <row>
17150 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17151 \begin_inset Text
17152
17153 \begin_layout Plain Layout
17154
17155 \backslash
17156 bigtriangledown
17157 \end_layout
17158
17159 \end_inset
17160 </cell>
17161 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17162 \begin_inset Text
17163
17164 \begin_layout Plain Layout
17165 \begin_inset Formula $\bigtriangledown$
17166 \end_inset
17167
17168
17169 \end_layout
17170
17171 \end_inset
17172 </cell>
17173 </row>
17174 <row>
17175 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17176 \begin_inset Text
17177
17178 \begin_layout Plain Layout
17179
17180 \backslash
17181 bigtriangleup
17182 \end_layout
17183
17184 \end_inset
17185 </cell>
17186 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17187 \begin_inset Text
17188
17189 \begin_layout Plain Layout
17190 \begin_inset Formula $\bigtriangleup$
17191 \end_inset
17192
17193
17194 \end_layout
17195
17196 \end_inset
17197 </cell>
17198 </row>
17199 <row>
17200 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17201 \begin_inset Text
17202
17203 \begin_layout Plain Layout
17204
17205 \backslash
17206 Box
17207 \end_layout
17208
17209 \end_inset
17210 </cell>
17211 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17212 \begin_inset Text
17213
17214 \begin_layout Plain Layout
17215 \begin_inset Formula $\Box$
17216 \end_inset
17217
17218
17219 \end_layout
17220
17221 \end_inset
17222 </cell>
17223 </row>
17224 <row>
17225 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17226 \begin_inset Text
17227
17228 \begin_layout Plain Layout
17229
17230 \backslash
17231 cap 
17232 \end_layout
17233
17234 \end_inset
17235 </cell>
17236 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17237 \begin_inset Text
17238
17239 \begin_layout Plain Layout
17240 \begin_inset Formula $\cap$
17241 \end_inset
17242
17243
17244 \end_layout
17245
17246 \end_inset
17247 </cell>
17248 </row>
17249 <row>
17250 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17251 \begin_inset Text
17252
17253 \begin_layout Plain Layout
17254
17255 \backslash
17256 cup
17257 \end_layout
17258
17259 \end_inset
17260 </cell>
17261 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17262 \begin_inset Text
17263
17264 \begin_layout Plain Layout
17265 \begin_inset Formula $\cup$
17266 \end_inset
17267
17268
17269 \end_layout
17270
17271 \end_inset
17272 </cell>
17273 </row>
17274 <row>
17275 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17276 \begin_inset Text
17277
17278 \begin_layout Plain Layout
17279
17280 \backslash
17281 dagger
17282 \end_layout
17283
17284 \end_inset
17285 </cell>
17286 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17287 \begin_inset Text
17288
17289 \begin_layout Plain Layout
17290 \begin_inset Formula $\dagger$
17291 \end_inset
17292
17293
17294 \end_layout
17295
17296 \end_inset
17297 </cell>
17298 </row>
17299 <row>
17300 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17301 \begin_inset Text
17302
17303 \begin_layout Plain Layout
17304
17305 \backslash
17306 ddagger
17307 \end_layout
17308
17309 \end_inset
17310 </cell>
17311 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17312 \begin_inset Text
17313
17314 \begin_layout Plain Layout
17315 \begin_inset Formula $\ddagger$
17316 \end_inset
17317
17318
17319 \end_layout
17320
17321 \end_inset
17322 </cell>
17323 </row>
17324 <row>
17325 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17326 \begin_inset Text
17327
17328 \begin_layout Plain Layout
17329
17330 \backslash
17331 wr
17332 \end_layout
17333
17334 \end_inset
17335 </cell>
17336 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17337 \begin_inset Text
17338
17339 \begin_layout Plain Layout
17340 \begin_inset Formula $\wr$
17341 \end_inset
17342
17343
17344 \end_layout
17345
17346 \end_inset
17347 </cell>
17348 </row>
17349 <row>
17350 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17351 \begin_inset Text
17352
17353 \begin_layout Plain Layout
17354
17355 \backslash
17356 bigcirc
17357 \end_layout
17358
17359 \end_inset
17360 </cell>
17361 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17362 \begin_inset Text
17363
17364 \begin_layout Plain Layout
17365 \begin_inset Formula $\bigcirc$
17366 \end_inset
17367
17368
17369 \end_layout
17370
17371 \end_inset
17372 </cell>
17373 </row>
17374 <row>
17375 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17376 \begin_inset Text
17377
17378 \begin_layout Plain Layout
17379
17380 \backslash
17381 wedge
17382 \end_layout
17383
17384 \end_inset
17385 </cell>
17386 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17387 \begin_inset Text
17388
17389 \begin_layout Plain Layout
17390 \begin_inset Formula $\wedge$
17391 \end_inset
17392
17393
17394 \end_layout
17395
17396 \end_inset
17397 </cell>
17398 </row>
17399 <row>
17400 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
17401 \begin_inset Text
17402
17403 \begin_layout Plain Layout
17404
17405 \backslash
17406 vee
17407 \end_layout
17408
17409 \end_inset
17410 </cell>
17411 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
17412 \begin_inset Text
17413
17414 \begin_layout Plain Layout
17415 \begin_inset Formula $\vee$
17416 \end_inset
17417
17418
17419 \end_layout
17420
17421 \end_inset
17422 </cell>
17423 </row>
17424 </lyxtabular>
17425
17426 \end_inset
17427
17428
17429 \begin_inset space \hfill{}
17430 \end_inset
17431
17432
17433 \begin_inset Tabular
17434 <lyxtabular version="3" rows="13" columns="2">
17435 <features tabularvalignment="middle">
17436 <column alignment="center" valignment="top" width="0pt">
17437 <column alignment="center" valignment="top" width="0pt">
17438 <row>
17439 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
17440 \begin_inset Text
17441
17442 \begin_layout Plain Layout
17443 Befehl
17444 \end_layout
17445
17446 \end_inset
17447 </cell>
17448 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
17449 \begin_inset Text
17450
17451 \begin_layout Plain Layout
17452 Ergebnis
17453 \end_layout
17454
17455 \end_inset
17456 </cell>
17457 </row>
17458 <row>
17459 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17460 \begin_inset Text
17461
17462 \begin_layout Plain Layout
17463
17464 \backslash
17465 oplus
17466 \end_layout
17467
17468 \end_inset
17469 </cell>
17470 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17471 \begin_inset Text
17472
17473 \begin_layout Plain Layout
17474 \begin_inset Formula $\oplus$
17475 \end_inset
17476
17477
17478 \end_layout
17479
17480 \end_inset
17481 </cell>
17482 </row>
17483 <row>
17484 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17485 \begin_inset Text
17486
17487 \begin_layout Plain Layout
17488
17489 \backslash
17490 ominus
17491 \end_layout
17492
17493 \end_inset
17494 </cell>
17495 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17496 \begin_inset Text
17497
17498 \begin_layout Plain Layout
17499 \begin_inset Formula $\ominus$
17500 \end_inset
17501
17502
17503 \end_layout
17504
17505 \end_inset
17506 </cell>
17507 </row>
17508 <row>
17509 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17510 \begin_inset Text
17511
17512 \begin_layout Plain Layout
17513
17514 \backslash
17515 otimes
17516 \end_layout
17517
17518 \end_inset
17519 </cell>
17520 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17521 \begin_inset Text
17522
17523 \begin_layout Plain Layout
17524 \begin_inset Formula $\otimes$
17525 \end_inset
17526
17527
17528 \end_layout
17529
17530 \end_inset
17531 </cell>
17532 </row>
17533 <row>
17534 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17535 \begin_inset Text
17536
17537 \begin_layout Plain Layout
17538
17539 \backslash
17540 oslash
17541 \end_layout
17542
17543 \end_inset
17544 </cell>
17545 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17546 \begin_inset Text
17547
17548 \begin_layout Plain Layout
17549 \begin_inset Formula $\oslash$
17550 \end_inset
17551
17552
17553 \end_layout
17554
17555 \end_inset
17556 </cell>
17557 </row>
17558 <row>
17559 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17560 \begin_inset Text
17561
17562 \begin_layout Plain Layout
17563
17564 \backslash
17565 odot
17566 \end_layout
17567
17568 \end_inset
17569 </cell>
17570 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17571 \begin_inset Text
17572
17573 \begin_layout Plain Layout
17574 \begin_inset Formula $\odot$
17575 \end_inset
17576
17577
17578 \end_layout
17579
17580 \end_inset
17581 </cell>
17582 </row>
17583 <row>
17584 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17585 \begin_inset Text
17586
17587 \begin_layout Plain Layout
17588
17589 \backslash
17590 amalg
17591 \end_layout
17592
17593 \end_inset
17594 </cell>
17595 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17596 \begin_inset Text
17597
17598 \begin_layout Plain Layout
17599 \begin_inset Formula $\amalg$
17600 \end_inset
17601
17602
17603 \end_layout
17604
17605 \end_inset
17606 </cell>
17607 </row>
17608 <row>
17609 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17610 \begin_inset Text
17611
17612 \begin_layout Plain Layout
17613
17614 \backslash
17615 uplus
17616 \end_layout
17617
17618 \end_inset
17619 </cell>
17620 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17621 \begin_inset Text
17622
17623 \begin_layout Plain Layout
17624 \begin_inset Formula $\uplus$
17625 \end_inset
17626
17627
17628 \end_layout
17629
17630 \end_inset
17631 </cell>
17632 </row>
17633 <row>
17634 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17635 \begin_inset Text
17636
17637 \begin_layout Plain Layout
17638
17639 \backslash
17640 setminus
17641 \end_layout
17642
17643 \end_inset
17644 </cell>
17645 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17646 \begin_inset Text
17647
17648 \begin_layout Plain Layout
17649 \begin_inset Formula $\setminus$
17650 \end_inset
17651
17652
17653 \end_layout
17654
17655 \end_inset
17656 </cell>
17657 </row>
17658 <row>
17659 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17660 \begin_inset Text
17661
17662 \begin_layout Plain Layout
17663
17664 \backslash
17665 sqcap
17666 \end_layout
17667
17668 \end_inset
17669 </cell>
17670 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17671 \begin_inset Text
17672
17673 \begin_layout Plain Layout
17674 \begin_inset Formula $\sqcap$
17675 \end_inset
17676
17677
17678 \end_layout
17679
17680 \end_inset
17681 </cell>
17682 </row>
17683 <row>
17684 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17685 \begin_inset Text
17686
17687 \begin_layout Plain Layout
17688
17689 \backslash
17690 sqcup
17691 \end_layout
17692
17693 \end_inset
17694 </cell>
17695 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17696 \begin_inset Text
17697
17698 \begin_layout Plain Layout
17699 \begin_inset Formula $\sqcup$
17700 \end_inset
17701
17702
17703 \end_layout
17704
17705 \end_inset
17706 </cell>
17707 </row>
17708 <row>
17709 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17710 \begin_inset Text
17711
17712 \begin_layout Plain Layout
17713
17714 \backslash
17715 triangleleft
17716 \end_layout
17717
17718 \end_inset
17719 </cell>
17720 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17721 \begin_inset Text
17722
17723 \begin_layout Plain Layout
17724 \begin_inset Formula $\triangleleft$
17725 \end_inset
17726
17727
17728 \end_layout
17729
17730 \end_inset
17731 </cell>
17732 </row>
17733 <row>
17734 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
17735 \begin_inset Text
17736
17737 \begin_layout Plain Layout
17738
17739 \backslash
17740 triangleright
17741 \end_layout
17742
17743 \end_inset
17744 </cell>
17745 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
17746 \begin_inset Text
17747
17748 \begin_layout Plain Layout
17749 \begin_inset Formula $\triangleright$
17750 \end_inset
17751
17752
17753 \end_layout
17754
17755 \end_inset
17756 </cell>
17757 </row>
17758 </lyxtabular>
17759
17760 \end_inset
17761
17762
17763 \begin_inset space \hfill{}
17764 \end_inset
17765
17766
17767 \end_layout
17768
17769 \begin_layout Standard
17770 Alle binären Operatoren können auch über den Mathe-Werkzeugleistenknopf
17771  
17772 \begin_inset Graphics
17773         filename ../../images/math/pm.png
17774         scale 85
17775
17776 \end_inset
17777
17778  eingefügt werden.
17779 \end_layout
17780
17781 \begin_layout Standard
17782 Um den Laplace-Operator darzustellen, kann man statt 
17783 \series bold
17784
17785 \backslash
17786 bigtriangleup
17787 \series default
17788  auch 
17789 \series bold
17790
17791 \backslash
17792 Delta
17793 \series default
17794  verwenden oder man benutzt 
17795 \series bold
17796
17797 \backslash
17798 nabla
17799 \series default
17800 ^
17801 \series bold
17802 2
17803 \series default
17804  (
17805 \begin_inset Formula $\nabla^{2}$
17806 \end_inset
17807
17808 ).
17809 \end_layout
17810
17811 \begin_layout Standard
17812 Das Zeichen 
17813 \family sans
17814 Menütrenner
17815 \family default
17816  im Menü 
17817 \family sans
17818 Einfügen\SpecialChar \menuseparator
17819 Sonderzeichen
17820 \family default
17821  ist der Operator 
17822 \series bold
17823
17824 \backslash
17825 triangleright
17826 \series default
17827 .
17828 \end_layout
17829
17830 \begin_layout Subsection
17831 Selbst definierte Operatoren
17832 \begin_inset CommandInset label
17833 LatexCommand label
17834 name "sub:Selbstdefinierte-Operatoren"
17835
17836 \end_inset
17837
17838
17839 \begin_inset Index idx
17840 status collapsed
17841
17842 \begin_layout Plain Layout
17843 Operatoren ! selbstdefinierte
17844 \end_layout
17845
17846 \end_inset
17847
17848
17849 \end_layout
17850
17851 \begin_layout Standard
17852 Mit Hilfe des Befehls 
17853 \series bold
17854
17855 \backslash
17856 DeclareMathOperator
17857 \series default
17858
17859 \begin_inset Index idx
17860 status collapsed
17861
17862 \begin_layout Plain Layout
17863 Befehle ! D ! 
17864 \backslash
17865 dbinom@
17866 \backslash
17867 DeclareMathOperator
17868 \end_layout
17869
17870 \end_inset
17871
17872  kann man im LaTeX-Vorspann eigene Operatoren definieren.
17873  Das Befehlsschema dazu lautet:
17874 \end_layout
17875
17876 \begin_layout Standard
17877
17878 \series bold
17879
17880 \backslash
17881 DeclareMathOperator{neuer Befehl}{Anzeige}
17882 \end_layout
17883
17884 \begin_layout Standard
17885 Anzeige können Zeichen und Symbole sein, die festlegen, wie der Operator
17886  im Ausdruck aussieht.
17887  Will man einen großen Operator definieren, setzt man hinter den Befehl
17888  ein 
17889 \series bold
17890 *
17891 \series default
17892 .
17893  Zu allen selbst definierten großen Operatoren kann man Grenzen angeben,
17894  wie in 
17895 \begin_inset CommandInset ref
17896 LatexCommand ref
17897 reference "sub:Operatorgrenzen"
17898
17899 \end_inset
17900
17901  beschrieben.
17902 \end_layout
17903
17904 \begin_layout Standard
17905 Beispielsweise definiert die LaTeX-Vorspannzeile
17906 \end_layout
17907
17908 \begin_layout Standard
17909
17910 \series bold
17911
17912 \backslash
17913 DeclareMathOperator*{
17914 \backslash
17915 Raute}{
17916 \backslash
17917 blacklozenge}
17918 \end_layout
17919
17920 \begin_layout Standard
17921 den Befehl 
17922 \series bold
17923
17924 \backslash
17925 Raute
17926 \series default
17927 , mit dem man einen großen Operator aufrufen kann, der aus dem Raute Symbol
17928  aus 
17929 \begin_inset CommandInset ref
17930 LatexCommand ref
17931 reference "sub:Sonstige-Symbole"
17932
17933 \end_inset
17934
17935  besteht:
17936 \begin_inset Formula 
17937 \[
17938 \Raute_{n=1}^{\infty}
17939 \]
17940
17941 \end_inset
17942
17943 Der Befehl für diese Formel lautet: 
17944 \series bold
17945
17946 \backslash
17947 Raute
17948 \series default
17949 ^
17950 \series bold
17951
17952 \backslash
17953 infty
17954 \begin_inset Formula $\to$
17955 \end_inset
17956
17957 _n=1
17958 \end_layout
17959
17960 \begin_layout Standard
17961 \begin_inset VSpace bigskip
17962 \end_inset
17963
17964 Benötigt man eigene Operatoren nicht mehrfach im Dokument, kann man diese
17965  auch mit den Befehlen 
17966 \series bold
17967
17968 \backslash
17969 mathop
17970 \series default
17971
17972 \begin_inset Index idx
17973 status collapsed
17974
17975 \begin_layout Plain Layout
17976 Befehle ! M ! 
17977 \backslash
17978 mathop
17979 \end_layout
17980
17981 \end_inset
17982
17983  und 
17984 \series bold
17985
17986 \backslash
17987 mathbin
17988 \series default
17989
17990 \begin_inset Index idx
17991 status collapsed
17992
17993 \begin_layout Plain Layout
17994 Befehle ! M ! 
17995 \backslash
17996 mathbin
17997 \end_layout
17998
17999 \end_inset
18000
18001  definieren, die folgendes Schema besitzen:
18002 \end_layout
18003
18004 \begin_layout Standard
18005
18006 \series bold
18007
18008 \backslash
18009 mathop{Anzeige}
18010 \series default
18011  bzw.
18012  
18013 \series bold
18014
18015 \backslash
18016 mathbin{Anzeige}
18017 \end_layout
18018
18019 \begin_layout Standard
18020
18021 \series bold
18022
18023 \backslash
18024 mathop
18025 \series default
18026  definiert große, 
18027 \series bold
18028
18029 \backslash
18030 mathbin
18031 \series default
18032  binäre Operatoren.
18033 \end_layout
18034
18035 \begin_layout Standard
18036
18037 \series bold
18038
18039 \backslash
18040 mathop
18041 \series default
18042  lässt sich z.
18043 \begin_inset space \thinspace{}
18044 \end_inset
18045
18046 B.
18047  nutzen, um eine Grenze für mehrere Operatoren zu verwenden:
18048 \begin_inset Formula 
18049 \[
18050 \mathop{\sum\negmedspace\sum}_{i,j=1}^{N}
18051 \]
18052
18053 \end_inset
18054
18055
18056 \end_layout
18057
18058 \begin_layout Standard
18059 Der Befehl für obige Formel lautet:
18060 \begin_inset Newline newline
18061 \end_inset
18062
18063  
18064 \series bold
18065
18066 \backslash
18067 mathop{
18068 \backslash
18069 sum
18070 \backslash
18071 negmedspace
18072 \backslash
18073 sum
18074 \series default
18075
18076 \begin_inset ERT
18077 status collapsed
18078
18079 \begin_layout Plain Layout
18080
18081
18082 \backslash
18083 leer 
18084 \end_layout
18085
18086 \end_inset
18087
18088
18089 \series bold
18090
18091 \begin_inset Formula $\to$
18092 \end_inset
18093
18094 ^N
18095 \series default
18096
18097 \begin_inset ERT
18098 status collapsed
18099
18100 \begin_layout Plain Layout
18101
18102
18103 \backslash
18104 leer 
18105 \end_layout
18106
18107 \end_inset
18108
18109
18110 \series bold
18111 _i,j=1
18112 \end_layout
18113
18114 \begin_layout Section
18115 Schriften
18116 \begin_inset Index idx
18117 status collapsed
18118
18119 \begin_layout Plain Layout
18120 Schriften
18121 \end_layout
18122
18123 \end_inset
18124
18125
18126 \end_layout
18127
18128 \begin_layout Subsection
18129 Schriftstile
18130 \begin_inset CommandInset label
18131 LatexCommand label
18132 name "sub:Schriftstile"
18133
18134 \end_inset
18135
18136
18137 \begin_inset Index idx
18138 status collapsed
18139
18140 \begin_layout Plain Layout
18141 Schriften ! Schriftstile
18142 \end_layout
18143
18144 \end_inset
18145
18146
18147 \end_layout
18148
18149 \begin_layout Standard
18150 Lateinische Buchstaben in einer Formel können in folgenden Schriftstilen
18151  gesetzt werden:
18152 \begin_inset VSpace -2mm
18153 \end_inset
18154
18155
18156 \end_layout
18157
18158 \begin_layout Standard
18159 \align center
18160 \begin_inset Tabular
18161 <lyxtabular version="3" rows="7" columns="3">
18162 <features tabularvalignment="middle">
18163 <column alignment="center" valignment="top" width="0">
18164 <column alignment="center" valignment="top" width="0">
18165 <column alignment="center" valignment="top" width="0">
18166 <row>
18167 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
18168 \begin_inset Text
18169
18170 \begin_layout Plain Layout
18171 Befehl
18172 \end_layout
18173
18174 \end_inset
18175 </cell>
18176 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
18177 \begin_inset Text
18178
18179 \begin_layout Plain Layout
18180 Ergebnis
18181 \end_layout
18182
18183 \end_inset
18184 </cell>
18185 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
18186 \begin_inset Text
18187
18188 \begin_layout Plain Layout
18189 Tastenkürzel
18190 \end_layout
18191
18192 \end_inset
18193 </cell>
18194 </row>
18195 <row>
18196 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18197 \begin_inset Text
18198
18199 \begin_layout Plain Layout
18200
18201 \backslash
18202 mathbb
18203 \series bold
18204
18205 \begin_inset ERT
18206 status collapsed
18207
18208 \begin_layout Plain Layout
18209
18210
18211 \backslash
18212 leer 
18213 \end_layout
18214
18215 \end_inset
18216
18217
18218 \series default
18219 ABC
18220 \end_layout
18221
18222 \end_inset
18223 </cell>
18224 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18225 \begin_inset Text
18226
18227 \begin_layout Plain Layout
18228 \begin_inset Formula $\mathbb{ABC}$
18229 \end_inset
18230
18231
18232 \end_layout
18233
18234 \end_inset
18235 </cell>
18236 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
18237 \begin_inset Text
18238
18239 \begin_layout Plain Layout
18240 Alt+Z K
18241 \end_layout
18242
18243 \end_inset
18244 </cell>
18245 </row>
18246 <row>
18247 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18248 \begin_inset Text
18249
18250 \begin_layout Plain Layout
18251
18252 \backslash
18253 mathbf
18254 \series bold
18255
18256 \begin_inset ERT
18257 status collapsed
18258
18259 \begin_layout Plain Layout
18260
18261
18262 \backslash
18263 leer 
18264 \end_layout
18265
18266 \end_inset
18267
18268
18269 \series default
18270 AbC
18271 \end_layout
18272
18273 \end_inset
18274 </cell>
18275 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18276 \begin_inset Text
18277
18278 \begin_layout Plain Layout
18279 \begin_inset Formula $\mathbf{AbC}$
18280 \end_inset
18281
18282
18283 \end_layout
18284
18285 \end_inset
18286 </cell>
18287 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
18288 \begin_inset Text
18289
18290 \begin_layout Plain Layout
18291 Strg+B
18292 \end_layout
18293
18294 \end_inset
18295 </cell>
18296 </row>
18297 <row>
18298 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18299 \begin_inset Text
18300
18301 \begin_layout Plain Layout
18302
18303 \backslash
18304 boldsymbol
18305 \series bold
18306
18307 \begin_inset ERT
18308 status collapsed
18309
18310 \begin_layout Plain Layout
18311
18312
18313 \backslash
18314 leer 
18315 \end_layout
18316
18317 \end_inset
18318
18319
18320 \series default
18321 AbC
18322 \end_layout
18323
18324 \end_inset
18325 </cell>
18326 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18327 \begin_inset Text
18328
18329 \begin_layout Plain Layout
18330 \begin_inset Formula $\boldsymbol{AbC}$
18331 \end_inset
18332
18333
18334 \end_layout
18335
18336 \end_inset
18337 </cell>
18338 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
18339 \begin_inset Text
18340
18341 \begin_layout Plain Layout
18342 Alt+Z F oder Strg+Alt+B
18343 \end_layout
18344
18345 \end_inset
18346 </cell>
18347 </row>
18348 <row>
18349 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18350 \begin_inset Text
18351
18352 \begin_layout Plain Layout
18353
18354 \backslash
18355 mathcal
18356 \series bold
18357
18358 \begin_inset ERT
18359 status collapsed
18360
18361 \begin_layout Plain Layout
18362
18363
18364 \backslash
18365 leer 
18366 \end_layout
18367
18368 \end_inset
18369
18370
18371 \series default
18372 ABC
18373 \end_layout
18374
18375 \end_inset
18376 </cell>
18377 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18378 \begin_inset Text
18379
18380 \begin_layout Plain Layout
18381 \begin_inset Formula $\mathcal{ABC}$
18382 \end_inset
18383
18384
18385 \end_layout
18386
18387 \end_inset
18388 </cell>
18389 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
18390 \begin_inset Text
18391
18392 \begin_layout Plain Layout
18393 Alt+Z H
18394 \end_layout
18395
18396 \end_inset
18397 </cell>
18398 </row>
18399 <row>
18400 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18401 \begin_inset Text
18402
18403 \begin_layout Plain Layout
18404
18405 \backslash
18406 mathfrak
18407 \series bold
18408
18409 \begin_inset ERT
18410 status collapsed
18411
18412 \begin_layout Plain Layout
18413
18414
18415 \backslash
18416 leer 
18417 \end_layout
18418
18419 \end_inset
18420
18421
18422 \series default
18423 AbC
18424 \end_layout
18425
18426 \end_inset
18427 </cell>
18428 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18429 \begin_inset Text
18430
18431 \begin_layout Plain Layout
18432 \begin_inset Formula $\mathfrak{AbC}$
18433 \end_inset
18434
18435
18436 \end_layout
18437
18438 \end_inset
18439 </cell>
18440 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
18441 \begin_inset Text
18442
18443 \begin_layout Plain Layout
18444 -
18445 \end_layout
18446
18447 \end_inset
18448 </cell>
18449 </row>
18450 <row>
18451 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
18452 \begin_inset Text
18453
18454 \begin_layout Plain Layout
18455
18456 \backslash
18457 mathscr
18458 \series bold
18459
18460 \begin_inset ERT
18461 status collapsed
18462
18463 \begin_layout Plain Layout
18464
18465
18466 \backslash
18467 leer 
18468 \end_layout
18469
18470 \end_inset
18471
18472
18473 \series default
18474 AbC
18475 \end_layout
18476
18477 \end_inset
18478 </cell>
18479 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
18480 \begin_inset Text
18481
18482 \begin_layout Plain Layout
18483 \begin_inset Formula $\mathscr{AbC}$
18484 \end_inset
18485
18486
18487 \end_layout
18488
18489 \end_inset
18490 </cell>
18491 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
18492 \begin_inset Text
18493
18494 \begin_layout Plain Layout
18495 -
18496 \end_layout
18497
18498 \end_inset
18499 </cell>
18500 </row>
18501 </lyxtabular>
18502
18503 \end_inset
18504
18505
18506 \end_layout
18507
18508 \begin_layout Standard
18509 \align center
18510 \begin_inset Tabular
18511 <lyxtabular version="3" rows="5" columns="3">
18512 <features tabularvalignment="middle">
18513 <column alignment="center" valignment="top" width="0">
18514 <column alignment="center" valignment="top" width="0">
18515 <column alignment="center" valignment="top" width="0">
18516 <row>
18517 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
18518 \begin_inset Text
18519
18520 \begin_layout Plain Layout
18521 Befehl
18522 \end_layout
18523
18524 \end_inset
18525 </cell>
18526 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
18527 \begin_inset Text
18528
18529 \begin_layout Plain Layout
18530 Ergebnis
18531 \end_layout
18532
18533 \end_inset
18534 </cell>
18535 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
18536 \begin_inset Text
18537
18538 \begin_layout Plain Layout
18539 Tastenkürzel
18540 \end_layout
18541
18542 \end_inset
18543 </cell>
18544 </row>
18545 <row>
18546 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18547 \begin_inset Text
18548
18549 \begin_layout Plain Layout
18550
18551 \backslash
18552 mathit
18553 \series bold
18554
18555 \begin_inset ERT
18556 status collapsed
18557
18558 \begin_layout Plain Layout
18559
18560
18561 \backslash
18562 leer 
18563 \end_layout
18564
18565 \end_inset
18566
18567
18568 \series default
18569 AbC
18570 \end_layout
18571
18572 \end_inset
18573 </cell>
18574 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18575 \begin_inset Text
18576
18577 \begin_layout Plain Layout
18578 \begin_inset Formula $\mathit{AbC}$
18579 \end_inset
18580
18581
18582 \end_layout
18583
18584 \end_inset
18585 </cell>
18586 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
18587 \begin_inset Text
18588
18589 \begin_layout Plain Layout
18590 -
18591 \end_layout
18592
18593 \end_inset
18594 </cell>
18595 </row>
18596 <row>
18597 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18598 \begin_inset Text
18599
18600 \begin_layout Plain Layout
18601
18602 \backslash
18603 mathrm
18604 \series bold
18605
18606 \begin_inset ERT
18607 status collapsed
18608
18609 \begin_layout Plain Layout
18610
18611
18612 \backslash
18613 leer 
18614 \end_layout
18615
18616 \end_inset
18617
18618
18619 \series default
18620 AbC
18621 \end_layout
18622
18623 \end_inset
18624 </cell>
18625 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18626 \begin_inset Text
18627
18628 \begin_layout Plain Layout
18629 \begin_inset Formula $\mathrm{AbC}$
18630 \end_inset
18631
18632
18633 \end_layout
18634
18635 \end_inset
18636 </cell>
18637 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
18638 \begin_inset Text
18639
18640 \begin_layout Plain Layout
18641 Alt+Z R
18642 \end_layout
18643
18644 \end_inset
18645 </cell>
18646 </row>
18647 <row>
18648 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18649 \begin_inset Text
18650
18651 \begin_layout Plain Layout
18652
18653 \backslash
18654 mathsf
18655 \series bold
18656
18657 \begin_inset ERT
18658 status collapsed
18659
18660 \begin_layout Plain Layout
18661
18662
18663 \backslash
18664 leer 
18665 \end_layout
18666
18667 \end_inset
18668
18669
18670 \series default
18671 AbC
18672 \end_layout
18673
18674 \end_inset
18675 </cell>
18676 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18677 \begin_inset Text
18678
18679 \begin_layout Plain Layout
18680 \begin_inset Formula $\mathsf{AbC}$
18681 \end_inset
18682
18683
18684 \end_layout
18685
18686 \end_inset
18687 </cell>
18688 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
18689 \begin_inset Text
18690
18691 \begin_layout Plain Layout
18692 Alt+Z S
18693 \end_layout
18694
18695 \end_inset
18696 </cell>
18697 </row>
18698 <row>
18699 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
18700 \begin_inset Text
18701
18702 \begin_layout Plain Layout
18703
18704 \backslash
18705 mathtt
18706 \series bold
18707
18708 \begin_inset ERT
18709 status collapsed
18710
18711 \begin_layout Plain Layout
18712
18713
18714 \backslash
18715 leer 
18716 \end_layout
18717
18718 \end_inset
18719
18720
18721 \series default
18722 AbC
18723 \end_layout
18724
18725 \end_inset
18726 </cell>
18727 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
18728 \begin_inset Text
18729
18730 \begin_layout Plain Layout
18731 \begin_inset Formula $\mathtt{AbC}$
18732 \end_inset
18733
18734
18735 \end_layout
18736
18737 \end_inset
18738 </cell>
18739 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
18740 \begin_inset Text
18741
18742 \begin_layout Plain Layout
18743 Alt+Z C
18744 \end_layout
18745
18746 \end_inset
18747 </cell>
18748 </row>
18749 </lyxtabular>
18750
18751 \end_inset
18752
18753
18754 \end_layout
18755
18756 \begin_layout Standard
18757 \begin_inset Note Greyedout
18758 status open
18759
18760 \begin_layout Plain Layout
18761
18762 \series bold
18763 Achtung:
18764 \series default
18765  Die Stile 
18766 \series bold
18767
18768 \backslash
18769 mathbb
18770 \series default
18771  und 
18772 \series bold
18773
18774 \backslash
18775 mathcal
18776 \series default
18777  können nur für Großbuchstaben verwendet werden.
18778 \end_layout
18779
18780 \end_inset
18781
18782
18783 \end_layout
18784
18785 \begin_layout Standard
18786 Voreingestellt ist der Stil 
18787 \series bold
18788
18789 \backslash
18790 mathnormal
18791 \series default
18792 .
18793 \end_layout
18794
18795 \begin_layout Standard
18796 Die Stilbefehle wirken auch auf Buchstaben in mathematischen Konstruktionen:
18797 \begin_inset Formula 
18798 \[
18799 \mathfrak{A=\frac{b}{C}}
18800 \]
18801
18802 \end_inset
18803
18804
18805 \end_layout
18806
18807 \begin_layout Standard
18808 Zeichen im mathematischen Textmodus erscheinen nicht in einem der Matheschriftst
18809 ile, sondern in dem Textschriftstil 
18810 \series bold
18811
18812 \backslash
18813 textrm
18814 \series default
18815 .
18816  Dass deren Stil nicht über den Textstil Dialog geändert werden kann ist
18817  ein Fehler in LyX.
18818 \begin_inset Foot
18819 status collapsed
18820
18821 \begin_layout Plain Layout
18822 \begin_inset CommandInset href
18823 LatexCommand href
18824 name "LyX-Fehler #4629"
18825 target "http://www.lyx.org/trac/ticket/4629"
18826
18827 \end_inset
18828
18829
18830 \end_layout
18831
18832 \end_inset
18833
18834
18835 \end_layout
18836
18837 \begin_layout Standard
18838 Anstelle der Stilbefehle kann man auch den Dialog 
18839 \family sans
18840 Bearbeiten\SpecialChar \menuseparator
18841 Mathe\SpecialChar \menuseparator
18842 Text-Stil
18843 \family default
18844  oder den Mathe-Werkzeugleistenknopf 
18845 \begin_inset Graphics
18846         filename ../../images/math/font.png
18847         scale 85
18848
18849 \end_inset
18850
18851  verwenden.
18852 \end_layout
18853
18854 \begin_layout Subsection
18855 Fett gedruckte Formeln
18856 \begin_inset CommandInset label
18857 LatexCommand label
18858 name "sub:Fett-gedruckte-Formeln"
18859
18860 \end_inset
18861
18862
18863 \begin_inset Index idx
18864 status collapsed
18865
18866 \begin_layout Plain Layout
18867 Formel ! fett gedruckte
18868 \end_layout
18869
18870 \end_inset
18871
18872
18873 \end_layout
18874
18875 \begin_layout Standard
18876 Möchte man komplette Formeln fett setzen, kann man nicht den im vorigen
18877  Kapitel angegebenen Befehl 
18878 \series bold
18879
18880 \backslash
18881 mathbf
18882 \series default
18883  verwenden, denn dieser wirkt nicht auf kleine griechische Buchstaben.
18884  Außerdem setzt er lateinische Buchstaben immer aufrecht, was man an folgender
18885  Formel gut erkennt:
18886 \end_layout
18887
18888 \begin_layout Standard
18889 \begin_inset Formula 
18890 \[
18891 \mathbf{\int_{n}^{2}f(\theta)=\Gamma}\qquad\textrm{Formel mit \textbackslash mathbf}
18892 \]
18893
18894 \end_inset
18895
18896
18897 \end_layout
18898
18899 \begin_layout Standard
18900 Um die Formel korrekt darzustellen, verwendet man den Befehl 
18901 \series bold
18902
18903 \backslash
18904 boldsymbol
18905 \series default
18906 :
18907 \begin_inset Formula 
18908 \[
18909 \boldsymbol{\int_{n}^{2}f(\theta)=\Gamma\qquad\textrm{Formel mit \textbackslash boldsymbol}}
18910 \]
18911
18912 \end_inset
18913
18914 Es gibt auch die Möglichkeit die Formel in eine 
18915 \series bold
18916 boldmath-Umgebung
18917 \series default
18918  zu setzen.
18919  Diese Umgebung wird erzeugt, indem man im TeX-Modus den Befehl 
18920 \series bold
18921
18922 \backslash
18923 boldmath
18924 \series default
18925
18926 \begin_inset Index idx
18927 status collapsed
18928
18929 \begin_layout Plain Layout
18930 Befehle ! B ! 
18931 \backslash
18932 boldmath
18933 \end_layout
18934
18935 \end_inset
18936
18937  eingibt.
18938  Um die Umgebung wieder zu beenden, gibt man im TeX-Modus den Befehl 
18939 \series bold
18940
18941 \backslash
18942 unboldmath
18943 \series default
18944
18945 \begin_inset Index idx
18946 status collapsed
18947
18948 \begin_layout Plain Layout
18949 Befehle ! U ! 
18950 \backslash
18951 unboldmath
18952 \end_layout
18953
18954 \end_inset
18955
18956  ein.
18957 \begin_inset ERT
18958 status collapsed
18959
18960 \begin_layout Plain Layout
18961
18962
18963 \backslash
18964 boldmath 
18965 \end_layout
18966
18967 \end_inset
18968
18969
18970 \begin_inset Formula 
18971 \[
18972 \int_{n}^{2}f(\theta)=\Gamma\qquad\textrm{Formel in boldmath-Umgebung}
18973 \]
18974
18975 \end_inset
18976
18977
18978 \begin_inset ERT
18979 status collapsed
18980
18981 \begin_layout Plain Layout
18982
18983
18984 \backslash
18985 unboldmath 
18986 \end_layout
18987
18988 \end_inset
18989
18990
18991 \end_layout
18992
18993 \begin_layout Subsection
18994 Farbige Formeln
18995 \begin_inset Index idx
18996 status collapsed
18997
18998 \begin_layout Plain Layout
18999 Formel ! farbige
19000 \end_layout
19001
19002 \end_inset
19003
19004
19005 \end_layout
19006
19007 \begin_layout Standard
19008 Formeln können wie normaler Text gefärbt werden: Markieren Sie eine Formel
19009  oder Formelteile und verwenden dann den 
19010 \family sans
19011 Textstil
19012 \family default
19013  Dialog.
19014  Hier ist eine Formel in Magenta:
19015 \begin_inset Formula 
19016 \[
19017 {\color{magenta}\int A\,\mathrm{d}x=\frac{\sqrt[5]{B}}{\ln\left(\frac{1}{3}\right)}}
19018 \]
19019
19020 \end_inset
19021
19022
19023 \end_layout
19024
19025 \begin_layout Standard
19026 Man kann auch eigene Farben definieren, wie in 
19027 \begin_inset CommandInset ref
19028 LatexCommand ref
19029 reference "sub:Farbige-Boxen"
19030
19031 \end_inset
19032
19033  erklärt ist.
19034  Diese können dann mit dem TeX-Code Befehl 
19035 \series bold
19036
19037 \backslash
19038 textcolor
19039 \series default
19040
19041 \begin_inset Index idx
19042 status collapsed
19043
19044 \begin_layout Plain Layout
19045 Befehle! T ! 
19046 \backslash
19047 textcolor
19048 \end_layout
19049
19050 \end_inset
19051
19052  verwendet werden, dass folgendes Schema besitzt:
19053 \end_layout
19054
19055 \begin_layout Standard
19056
19057 \series bold
19058
19059 \backslash
19060 textcolor{Farbe}{Zeichen oder Formel}
19061 \end_layout
19062
19063 \begin_layout Standard
19064 Das folgende Beispiel wurde komplett dunkelgrün und teilweise rot eingefärbt:
19065 \end_layout
19066
19067 \begin_layout Standard
19068 \begin_inset ERT
19069 status collapsed
19070
19071 \begin_layout Plain Layout
19072
19073
19074 \backslash
19075 textcolor{dunkelgruen}{
19076 \end_layout
19077
19078 \end_inset
19079
19080
19081 \begin_inset Formula 
19082 \[
19083 \int A\,\mathrm{d}x=\frac{{\color{red}\sqrt[5]{B}}}{\ln\left(\frac{1}{3}\right)}
19084 \]
19085
19086 \end_inset
19087
19088
19089 \begin_inset ERT
19090 status collapsed
19091
19092 \begin_layout Plain Layout
19093
19094 }
19095 \end_layout
19096
19097 \end_inset
19098
19099
19100 \end_layout
19101
19102 \begin_layout Standard
19103 Aufgrund eines Fehlers in LyX können nur komplette Formeln mit selbst definierte
19104 n Farben gefärbt werden.
19105 \begin_inset Foot
19106 status collapsed
19107
19108 \begin_layout Plain Layout
19109 \begin_inset CommandInset href
19110 LatexCommand href
19111 name "LyX-bug #5269"
19112 target "http://www.lyx.org/trac/ticket/5269"
19113
19114 \end_inset
19115
19116
19117 \end_layout
19118
19119 \end_inset
19120
19121
19122 \end_layout
19123
19124 \begin_layout Subsection
19125 Schriftgrößen
19126 \begin_inset CommandInset label
19127 LatexCommand label
19128 name "sub:Schriftgrößen"
19129
19130 \end_inset
19131
19132
19133 \begin_inset Index idx
19134 status collapsed
19135
19136 \begin_layout Plain Layout
19137 Schriften ! Schriftgrößen
19138 \end_layout
19139
19140 \end_inset
19141
19142
19143 \end_layout
19144
19145 \begin_layout Standard
19146 Für Zeichen in einer Formel gibt es, analog zu Textzeichen, folgende Größenbefeh
19147 le:
19148 \end_layout
19149
19150 \begin_layout Standard
19151
19152 \series bold
19153
19154 \backslash
19155 Huge
19156 \series default
19157
19158 \series bold
19159
19160 \backslash
19161 huge
19162 \series default
19163
19164 \series bold
19165
19166 \backslash
19167 LARGE
19168 \series default
19169
19170 \series bold
19171
19172 \backslash
19173 Large
19174 \series default
19175
19176 \series bold
19177
19178 \backslash
19179 large
19180 \series default
19181
19182 \series bold
19183
19184 \backslash
19185 normalsize
19186 \series default
19187
19188 \series bold
19189
19190 \backslash
19191 small
19192 \series default
19193
19194 \series bold
19195
19196 \backslash
19197 footnotesize
19198 \series default
19199 ,
19200 \begin_inset Newline linebreak
19201 \end_inset
19202
19203
19204 \series bold
19205
19206 \backslash
19207 scriptsize
19208 \series default
19209  und 
19210 \series bold
19211
19212 \backslash
19213 tiny
19214 \end_layout
19215
19216 \begin_layout Standard
19217 Welche Größe die Befehle produzieren, hängt von der Dokumentschriftgröße
19218  ab, die dem Befehl 
19219 \series bold
19220
19221 \backslash
19222 normalsize
19223 \series default
19224  entspricht.
19225  Die anderen Befehle produzieren kleinere oder größere Schriften als 
19226 \series bold
19227
19228 \backslash
19229 normalsize
19230 \series default
19231 .
19232  Die Schriftgröße kann jedoch einen bestimmten Wert nicht übertreffen.
19233  Beträgt z.
19234 \begin_inset space \thinspace{}
19235 \end_inset
19236
19237 B.
19238  die Dokumentschriftgröße 12
19239 \begin_inset space \thinspace{}
19240 \end_inset
19241
19242 pt, produziert der Befehl 
19243 \series bold
19244
19245 \backslash
19246 Huge
19247 \series default
19248  dasselbe wie 
19249 \series bold
19250
19251 \backslash
19252 huge
19253 \series default
19254 .
19255  
19256 \end_layout
19257
19258 \begin_layout Standard
19259 Ein Größenbefehl wird im TeX-Modus vor der Formel eingegeben und legt die
19260  Größe aller nachfolgenden Formel- und Textzeichen fest.
19261  Um wieder zur Ausgangsgröße zurückzukehren, gibt man nach der Formel im
19262  TeX-Modus den Befehl 
19263 \series bold
19264
19265 \backslash
19266 normalsize
19267 \series default
19268  ein.
19269 \end_layout
19270
19271 \begin_layout Standard
19272 Innerhalb einer Formel kann die Größe mit den folgenden Größenbefehlen geändert
19273  werden:
19274 \end_layout
19275
19276 \begin_layout Standard
19277 \noindent
19278 \align center
19279 \begin_inset Tabular
19280 <lyxtabular version="3" rows="5" columns="2">
19281 <features tabularvalignment="middle">
19282 <column alignment="center" valignment="top" width="0">
19283 <column alignment="center" valignment="top" width="0">
19284 <row>
19285 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
19286 \begin_inset Text
19287
19288 \begin_layout Plain Layout
19289 Befehl
19290 \end_layout
19291
19292 \end_inset
19293 </cell>
19294 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
19295 \begin_inset Text
19296
19297 \begin_layout Plain Layout
19298 Ergebnis
19299 \begin_inset Note Note
19300 status collapsed
19301
19302 \begin_layout Plain Layout
19303
19304 \series bold
19305
19306 \backslash
19307 raisebox
19308 \series default
19309  dient nur als Abstandhalter.
19310 \end_layout
19311
19312 \end_inset
19313
19314
19315 \end_layout
19316
19317 \end_inset
19318 </cell>
19319 </row>
19320 <row>
19321 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19322 \begin_inset Text
19323
19324 \begin_layout Plain Layout
19325
19326 \backslash
19327 displaystyle
19328 \begin_inset Index idx
19329 status collapsed
19330
19331 \begin_layout Plain Layout
19332 Befehle ! D ! 
19333 \backslash
19334 displaystyle
19335 \end_layout
19336
19337 \end_inset
19338
19339
19340 \end_layout
19341
19342 \end_inset
19343 </cell>
19344 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19345 \begin_inset Text
19346
19347 \begin_layout Plain Layout
19348 \begin_inset Formula $\raisebox{6.5mm}{}{\displaystyle E_{\mathrm{pot_{1}}}=\frac{K}{l+\frac{m}{n_{2}}}}\raisebox{-5.5mm}{}$
19349 \end_inset
19350
19351
19352 \end_layout
19353
19354 \end_inset
19355 </cell>
19356 </row>
19357 <row>
19358 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19359 \begin_inset Text
19360
19361 \begin_layout Plain Layout
19362
19363 \backslash
19364 textstyle
19365 \end_layout
19366
19367 \end_inset
19368 </cell>
19369 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19370 \begin_inset Text
19371
19372 \begin_layout Plain Layout
19373 \begin_inset Formula $\raisebox{4.5mm}{}{\textstyle E_{\mathrm{pot_{1}}}=\frac{K}{l+\frac{m}{n_{2}}}}\raisebox{-4mm}{}$
19374 \end_inset
19375
19376
19377 \end_layout
19378
19379 \end_inset
19380 </cell>
19381 </row>
19382 <row>
19383 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19384 \begin_inset Text
19385
19386 \begin_layout Plain Layout
19387
19388 \backslash
19389 scriptstyle
19390 \end_layout
19391
19392 \end_inset
19393 </cell>
19394 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19395 \begin_inset Text
19396
19397 \begin_layout Plain Layout
19398 \begin_inset Formula $\raisebox{4.5mm}{}{\scriptstyle E_{\mathrm{pot_{1}}}=\frac{K}{l+\frac{m}{n_{2}}}}\raisebox{-3.5mm}{}$
19399 \end_inset
19400
19401
19402 \end_layout
19403
19404 \end_inset
19405 </cell>
19406 </row>
19407 <row>
19408 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
19409 \begin_inset Text
19410
19411 \begin_layout Plain Layout
19412
19413 \backslash
19414 scriptscriptstyle
19415 \end_layout
19416
19417 \end_inset
19418 </cell>
19419 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
19420 \begin_inset Text
19421
19422 \begin_layout Plain Layout
19423 \begin_inset Formula $\raisebox{4.5mm}{}{\scriptscriptstyle E_{\mathrm{pot_{1}}}=\frac{K}{l+\frac{m}{n_{2}}}}\raisebox{-3.5mm}{}$
19424 \end_inset
19425
19426
19427 \end_layout
19428
19429 \end_inset
19430 </cell>
19431 </row>
19432 </lyxtabular>
19433
19434 \end_inset
19435
19436
19437 \end_layout
19438
19439 \begin_layout Standard
19440 Nachdem diese Befehle eingegeben wurden, erscheint eine blaues Kästchen
19441  in das die Formelteile eingegeben werden.
19442 \end_layout
19443
19444 \begin_layout Standard
19445 Es gibt eine weitere Möglichkeit die Schriftgröße zu ändern, die allerdings
19446  nur für Symbole oder Buchstaben im mathematischen Text funktioniert.
19447  Dazu wird einer der obigen Textgrößenbefehle im mathematischen Textmodus
19448  eingegeben.
19449  Alle diesem Befehl folgenden Zeichen bis zum Ende des mathematischen Textes
19450  oder bis zu einem anderen Größenbefehl haben dann die angegebene Größe.
19451  Dazu zwei Beispiele:
19452 \begin_inset VSpace -2mm
19453 \end_inset
19454
19455
19456 \end_layout
19457
19458 \begin_layout Standard
19459 \begin_inset ERT
19460 status collapsed
19461
19462 \begin_layout Plain Layout
19463
19464
19465 \backslash
19466 huge 
19467 \end_layout
19468
19469 \end_inset
19470
19471
19472 \begin_inset Formula 
19473 \[
19474 A=\frac{B}{c}\cdot\maltese
19475 \]
19476
19477 \end_inset
19478
19479
19480 \begin_inset Formula 
19481 \[
19482 \maltese A\textrm{\Large\maltese\textit{A}}\textrm{\tiny\maltese\textit{A}}
19483 \]
19484
19485 \end_inset
19486
19487
19488 \begin_inset ERT
19489 status collapsed
19490
19491 \begin_layout Plain Layout
19492
19493
19494 \backslash
19495 normalsize 
19496 \end_layout
19497
19498 \end_inset
19499
19500
19501 \end_layout
19502
19503 \begin_layout Standard
19504 \begin_inset VSpace medskip
19505 \end_inset
19506
19507 Vor beiden Formeln wurde der Befehl 
19508 \series bold
19509
19510 \backslash
19511 huge
19512 \series default
19513  eingegeben.
19514  Der Befehl für die zweite Formel lautet:
19515 \begin_inset Newline newline
19516 \end_inset
19517
19518
19519 \series bold
19520
19521 \backslash
19522 maltese
19523 \begin_inset ERT
19524 status collapsed
19525
19526 \begin_layout Plain Layout
19527
19528
19529 \backslash
19530 leer 
19531 \end_layout
19532
19533 \end_inset
19534
19535 A M-m m 
19536 \backslash
19537 Large
19538 \begin_inset ERT
19539 status collapsed
19540
19541 \begin_layout Plain Layout
19542
19543
19544 \backslash
19545 leer 
19546 \end_layout
19547
19548 \end_inset
19549
19550
19551 \backslash
19552 maltese
19553 \begin_inset ERT
19554 status collapsed
19555
19556 \begin_layout Plain Layout
19557
19558
19559 \backslash
19560 leer 
19561 \end_layout
19562
19563 \end_inset
19564
19565
19566 \backslash
19567 textit
19568 \begin_inset ERT
19569 status collapsed
19570
19571 \begin_layout Plain Layout
19572
19573
19574 \backslash
19575 leer 
19576 \end_layout
19577
19578 \end_inset
19579
19580 A
19581 \begin_inset Formula $\to$
19582 \end_inset
19583
19584
19585 \begin_inset Formula $\to$
19586 \end_inset
19587
19588
19589 \begin_inset Newline newline
19590 \end_inset
19591
19592
19593 \begin_inset space \hspace*{}
19594 \length 1cm
19595 \end_inset
19596
19597 M-m
19598 \series default
19599  
19600 \series bold
19601
19602 \backslash
19603 tiny
19604 \begin_inset ERT
19605 status collapsed
19606
19607 \begin_layout Plain Layout
19608
19609
19610 \backslash
19611 leer 
19612 \end_layout
19613
19614 \end_inset
19615
19616
19617 \backslash
19618 maltese
19619 \begin_inset ERT
19620 status collapsed
19621
19622 \begin_layout Plain Layout
19623
19624
19625 \backslash
19626 leer 
19627 \end_layout
19628
19629 \end_inset
19630
19631
19632 \backslash
19633 textit
19634 \begin_inset ERT
19635 status collapsed
19636
19637 \begin_layout Plain Layout
19638
19639
19640 \backslash
19641 leer 
19642 \end_layout
19643
19644 \end_inset
19645
19646 A
19647 \end_layout
19648
19649 \begin_layout Standard
19650 Kann ein Symbol nicht in verschiedenen Größen dargestellt werden, wird es
19651  immer in der Standardgröße dargestellt.
19652 \end_layout
19653
19654 \begin_layout Section
19655 Griechische Buchstaben
19656 \begin_inset Index idx
19657 status collapsed
19658
19659 \begin_layout Plain Layout
19660 griechische Buchstaben
19661 \end_layout
19662
19663 \end_inset
19664
19665
19666 \end_layout
19667
19668 \begin_layout Standard
19669 Griechischen Buchstaben können auch über den Mathe-Werkzeugleistenknopf
19670  
19671 \begin_inset Graphics
19672         filename ../../images/math/alpha.png
19673         scale 85
19674
19675 \end_inset
19676
19677  eingefügt werden.
19678  Alle internationalen Schriftsatz-Normen geben vor, dass griechische Buchstaben
19679  in Formeln aufrecht gesetzt werden.
19680  In einigen Sprachen, wie z.
19681 \begin_inset space \thinspace{}
19682 \end_inset
19683
19684 B: Französisch oder Russisch, werden sie dennoch manchmal aufrecht gesetzt.
19685 \end_layout
19686
19687 \begin_layout Subsection
19688 Kleine Buchstaben
19689 \begin_inset Index idx
19690 status collapsed
19691
19692 \begin_layout Plain Layout
19693 griechische Buchstaben ! kleine
19694 \end_layout
19695
19696 \end_inset
19697
19698
19699 \end_layout
19700
19701 \begin_layout Standard
19702 \begin_inset space \hfill{}
19703 \end_inset
19704
19705
19706 \begin_inset Tabular
19707 <lyxtabular version="3" rows="11" columns="2">
19708 <features tabularvalignment="middle">
19709 <column alignment="center" valignment="top" width="0pt">
19710 <column alignment="center" valignment="top" width="0pt">
19711 <row>
19712 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
19713 \begin_inset Text
19714
19715 \begin_layout Plain Layout
19716 Befehl
19717 \end_layout
19718
19719 \end_inset
19720 </cell>
19721 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
19722 \begin_inset Text
19723
19724 \begin_layout Plain Layout
19725 Ergebnis
19726 \end_layout
19727
19728 \end_inset
19729 </cell>
19730 </row>
19731 <row>
19732 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19733 \begin_inset Text
19734
19735 \begin_layout Plain Layout
19736
19737 \backslash
19738 alpha
19739 \end_layout
19740
19741 \end_inset
19742 </cell>
19743 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19744 \begin_inset Text
19745
19746 \begin_layout Plain Layout
19747 \begin_inset Formula $\alpha$
19748 \end_inset
19749
19750
19751 \end_layout
19752
19753 \end_inset
19754 </cell>
19755 </row>
19756 <row>
19757 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19758 \begin_inset Text
19759
19760 \begin_layout Plain Layout
19761
19762 \backslash
19763 beta
19764 \end_layout
19765
19766 \end_inset
19767 </cell>
19768 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19769 \begin_inset Text
19770
19771 \begin_layout Plain Layout
19772 \begin_inset Formula $\beta$
19773 \end_inset
19774
19775
19776 \end_layout
19777
19778 \end_inset
19779 </cell>
19780 </row>
19781 <row>
19782 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19783 \begin_inset Text
19784
19785 \begin_layout Plain Layout
19786
19787 \backslash
19788 gamma
19789 \end_layout
19790
19791 \end_inset
19792 </cell>
19793 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19794 \begin_inset Text
19795
19796 \begin_layout Plain Layout
19797 \begin_inset Formula $\gamma$
19798 \end_inset
19799
19800
19801 \end_layout
19802
19803 \end_inset
19804 </cell>
19805 </row>
19806 <row>
19807 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19808 \begin_inset Text
19809
19810 \begin_layout Plain Layout
19811
19812 \backslash
19813 delta
19814 \end_layout
19815
19816 \end_inset
19817 </cell>
19818 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19819 \begin_inset Text
19820
19821 \begin_layout Plain Layout
19822 \begin_inset Formula $\delta$
19823 \end_inset
19824
19825
19826 \end_layout
19827
19828 \end_inset
19829 </cell>
19830 </row>
19831 <row>
19832 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19833 \begin_inset Text
19834
19835 \begin_layout Plain Layout
19836
19837 \backslash
19838 epsilon
19839 \end_layout
19840
19841 \end_inset
19842 </cell>
19843 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19844 \begin_inset Text
19845
19846 \begin_layout Plain Layout
19847 \begin_inset Formula $\epsilon$
19848 \end_inset
19849
19850
19851 \end_layout
19852
19853 \end_inset
19854 </cell>
19855 </row>
19856 <row>
19857 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19858 \begin_inset Text
19859
19860 \begin_layout Plain Layout
19861
19862 \backslash
19863 varepsilon
19864 \end_layout
19865
19866 \end_inset
19867 </cell>
19868 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19869 \begin_inset Text
19870
19871 \begin_layout Plain Layout
19872 \begin_inset Formula $\varepsilon$
19873 \end_inset
19874
19875
19876 \end_layout
19877
19878 \end_inset
19879 </cell>
19880 </row>
19881 <row>
19882 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19883 \begin_inset Text
19884
19885 \begin_layout Plain Layout
19886
19887 \backslash
19888 zeta
19889 \end_layout
19890
19891 \end_inset
19892 </cell>
19893 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19894 \begin_inset Text
19895
19896 \begin_layout Plain Layout
19897 \begin_inset Formula $\zeta$
19898 \end_inset
19899
19900
19901 \end_layout
19902
19903 \end_inset
19904 </cell>
19905 </row>
19906 <row>
19907 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19908 \begin_inset Text
19909
19910 \begin_layout Plain Layout
19911
19912 \backslash
19913 eta
19914 \end_layout
19915
19916 \end_inset
19917 </cell>
19918 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19919 \begin_inset Text
19920
19921 \begin_layout Plain Layout
19922 \begin_inset Formula $\eta$
19923 \end_inset
19924
19925
19926 \end_layout
19927
19928 \end_inset
19929 </cell>
19930 </row>
19931 <row>
19932 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19933 \begin_inset Text
19934
19935 \begin_layout Plain Layout
19936
19937 \backslash
19938 theta
19939 \end_layout
19940
19941 \end_inset
19942 </cell>
19943 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19944 \begin_inset Text
19945
19946 \begin_layout Plain Layout
19947 \begin_inset Formula $\theta$
19948 \end_inset
19949
19950
19951 \end_layout
19952
19953 \end_inset
19954 </cell>
19955 </row>
19956 <row>
19957 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
19958 \begin_inset Text
19959
19960 \begin_layout Plain Layout
19961
19962 \backslash
19963 vartheta
19964 \end_layout
19965
19966 \end_inset
19967 </cell>
19968 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
19969 \begin_inset Text
19970
19971 \begin_layout Plain Layout
19972 \begin_inset Formula $\vartheta$
19973 \end_inset
19974
19975
19976 \end_layout
19977
19978 \end_inset
19979 </cell>
19980 </row>
19981 </lyxtabular>
19982
19983 \end_inset
19984
19985
19986 \begin_inset space \hfill{}
19987 \end_inset
19988
19989
19990 \begin_inset Tabular
19991 <lyxtabular version="3" rows="12" columns="2">
19992 <features tabularvalignment="middle">
19993 <column alignment="center" valignment="top" width="0pt">
19994 <column alignment="center" valignment="top" width="0pt">
19995 <row>
19996 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
19997 \begin_inset Text
19998
19999 \begin_layout Plain Layout
20000 Befehl
20001 \end_layout
20002
20003 \end_inset
20004 </cell>
20005 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
20006 \begin_inset Text
20007
20008 \begin_layout Plain Layout
20009 Ergebnis
20010 \end_layout
20011
20012 \end_inset
20013 </cell>
20014 </row>
20015 <row>
20016 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20017 \begin_inset Text
20018
20019 \begin_layout Plain Layout
20020
20021 \backslash
20022 iota
20023 \end_layout
20024
20025 \end_inset
20026 </cell>
20027 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20028 \begin_inset Text
20029
20030 \begin_layout Plain Layout
20031 \begin_inset Formula $\iota$
20032 \end_inset
20033
20034
20035 \end_layout
20036
20037 \end_inset
20038 </cell>
20039 </row>
20040 <row>
20041 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20042 \begin_inset Text
20043
20044 \begin_layout Plain Layout
20045
20046 \backslash
20047 kappa
20048 \end_layout
20049
20050 \end_inset
20051 </cell>
20052 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20053 \begin_inset Text
20054
20055 \begin_layout Plain Layout
20056 \begin_inset Formula $\kappa$
20057 \end_inset
20058
20059
20060 \end_layout
20061
20062 \end_inset
20063 </cell>
20064 </row>
20065 <row>
20066 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20067 \begin_inset Text
20068
20069 \begin_layout Plain Layout
20070
20071 \backslash
20072 varkappa
20073 \end_layout
20074
20075 \end_inset
20076 </cell>
20077 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20078 \begin_inset Text
20079
20080 \begin_layout Plain Layout
20081 \begin_inset Formula $\varkappa$
20082 \end_inset
20083
20084
20085 \end_layout
20086
20087 \end_inset
20088 </cell>
20089 </row>
20090 <row>
20091 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20092 \begin_inset Text
20093
20094 \begin_layout Plain Layout
20095
20096 \backslash
20097 lambda
20098 \end_layout
20099
20100 \end_inset
20101 </cell>
20102 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20103 \begin_inset Text
20104
20105 \begin_layout Plain Layout
20106 \begin_inset Formula $\lambda$
20107 \end_inset
20108
20109
20110 \end_layout
20111
20112 \end_inset
20113 </cell>
20114 </row>
20115 <row>
20116 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20117 \begin_inset Text
20118
20119 \begin_layout Plain Layout
20120
20121 \backslash
20122 mu
20123 \end_layout
20124
20125 \end_inset
20126 </cell>
20127 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20128 \begin_inset Text
20129
20130 \begin_layout Plain Layout
20131 \begin_inset Formula $\mu$
20132 \end_inset
20133
20134
20135 \end_layout
20136
20137 \end_inset
20138 </cell>
20139 </row>
20140 <row>
20141 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20142 \begin_inset Text
20143
20144 \begin_layout Plain Layout
20145
20146 \backslash
20147 nu
20148 \end_layout
20149
20150 \end_inset
20151 </cell>
20152 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20153 \begin_inset Text
20154
20155 \begin_layout Plain Layout
20156 \begin_inset Formula $\nu$
20157 \end_inset
20158
20159
20160 \end_layout
20161
20162 \end_inset
20163 </cell>
20164 </row>
20165 <row>
20166 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20167 \begin_inset Text
20168
20169 \begin_layout Plain Layout
20170
20171 \backslash
20172 xi
20173 \end_layout
20174
20175 \end_inset
20176 </cell>
20177 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20178 \begin_inset Text
20179
20180 \begin_layout Plain Layout
20181 \begin_inset Formula $\xi$
20182 \end_inset
20183
20184
20185 \end_layout
20186
20187 \end_inset
20188 </cell>
20189 </row>
20190 <row>
20191 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20192 \begin_inset Text
20193
20194 \begin_layout Plain Layout
20195 o
20196 \end_layout
20197
20198 \end_inset
20199 </cell>
20200 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20201 \begin_inset Text
20202
20203 \begin_layout Plain Layout
20204 \begin_inset Formula $o$
20205 \end_inset
20206
20207
20208 \end_layout
20209
20210 \end_inset
20211 </cell>
20212 </row>
20213 <row>
20214 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20215 \begin_inset Text
20216
20217 \begin_layout Plain Layout
20218
20219 \backslash
20220 pi
20221 \end_layout
20222
20223 \end_inset
20224 </cell>
20225 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20226 \begin_inset Text
20227
20228 \begin_layout Plain Layout
20229 \begin_inset Formula $\pi$
20230 \end_inset
20231
20232
20233 \end_layout
20234
20235 \end_inset
20236 </cell>
20237 </row>
20238 <row>
20239 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20240 \begin_inset Text
20241
20242 \begin_layout Plain Layout
20243
20244 \backslash
20245 varpi
20246 \end_layout
20247
20248 \end_inset
20249 </cell>
20250 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20251 \begin_inset Text
20252
20253 \begin_layout Plain Layout
20254 \begin_inset Formula $\varpi$
20255 \end_inset
20256
20257
20258 \end_layout
20259
20260 \end_inset
20261 </cell>
20262 </row>
20263 <row>
20264 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
20265 \begin_inset Text
20266
20267 \begin_layout Plain Layout
20268
20269 \backslash
20270 rho
20271 \end_layout
20272
20273 \end_inset
20274 </cell>
20275 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
20276 \begin_inset Text
20277
20278 \begin_layout Plain Layout
20279 \begin_inset Formula $\rho$
20280 \end_inset
20281
20282
20283 \end_layout
20284
20285 \end_inset
20286 </cell>
20287 </row>
20288 </lyxtabular>
20289
20290 \end_inset
20291
20292
20293 \begin_inset space \hfill{}
20294 \end_inset
20295
20296
20297 \begin_inset Tabular
20298 <lyxtabular version="3" rows="11" columns="2">
20299 <features tabularvalignment="middle">
20300 <column alignment="center" valignment="top" width="0pt">
20301 <column alignment="center" valignment="top" width="0pt">
20302 <row>
20303 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
20304 \begin_inset Text
20305
20306 \begin_layout Plain Layout
20307 Befehl
20308 \end_layout
20309
20310 \end_inset
20311 </cell>
20312 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
20313 \begin_inset Text
20314
20315 \begin_layout Plain Layout
20316 Ergebnis
20317 \end_layout
20318
20319 \end_inset
20320 </cell>
20321 </row>
20322 <row>
20323 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20324 \begin_inset Text
20325
20326 \begin_layout Plain Layout
20327
20328 \backslash
20329 varrho
20330 \end_layout
20331
20332 \end_inset
20333 </cell>
20334 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20335 \begin_inset Text
20336
20337 \begin_layout Plain Layout
20338 \begin_inset Formula $\varrho$
20339 \end_inset
20340
20341
20342 \end_layout
20343
20344 \end_inset
20345 </cell>
20346 </row>
20347 <row>
20348 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20349 \begin_inset Text
20350
20351 \begin_layout Plain Layout
20352
20353 \backslash
20354 sigma
20355 \end_layout
20356
20357 \end_inset
20358 </cell>
20359 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20360 \begin_inset Text
20361
20362 \begin_layout Plain Layout
20363 \begin_inset Formula $\sigma$
20364 \end_inset
20365
20366
20367 \end_layout
20368
20369 \end_inset
20370 </cell>
20371 </row>
20372 <row>
20373 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20374 \begin_inset Text
20375
20376 \begin_layout Plain Layout
20377
20378 \backslash
20379 varsigma
20380 \end_layout
20381
20382 \end_inset
20383 </cell>
20384 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20385 \begin_inset Text
20386
20387 \begin_layout Plain Layout
20388 \begin_inset Formula $\varsigma$
20389 \end_inset
20390
20391
20392 \end_layout
20393
20394 \end_inset
20395 </cell>
20396 </row>
20397 <row>
20398 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20399 \begin_inset Text
20400
20401 \begin_layout Plain Layout
20402
20403 \backslash
20404 tau
20405 \end_layout
20406
20407 \end_inset
20408 </cell>
20409 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20410 \begin_inset Text
20411
20412 \begin_layout Plain Layout
20413 \begin_inset Formula $\tau$
20414 \end_inset
20415
20416
20417 \end_layout
20418
20419 \end_inset
20420 </cell>
20421 </row>
20422 <row>
20423 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20424 \begin_inset Text
20425
20426 \begin_layout Plain Layout
20427
20428 \backslash
20429 upsilon
20430 \end_layout
20431
20432 \end_inset
20433 </cell>
20434 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20435 \begin_inset Text
20436
20437 \begin_layout Plain Layout
20438 \begin_inset Formula $\upsilon$
20439 \end_inset
20440
20441
20442 \end_layout
20443
20444 \end_inset
20445 </cell>
20446 </row>
20447 <row>
20448 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20449 \begin_inset Text
20450
20451 \begin_layout Plain Layout
20452
20453 \backslash
20454 phi
20455 \end_layout
20456
20457 \end_inset
20458 </cell>
20459 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20460 \begin_inset Text
20461
20462 \begin_layout Plain Layout
20463 \begin_inset Formula $\phi$
20464 \end_inset
20465
20466
20467 \end_layout
20468
20469 \end_inset
20470 </cell>
20471 </row>
20472 <row>
20473 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20474 \begin_inset Text
20475
20476 \begin_layout Plain Layout
20477
20478 \backslash
20479 varphi
20480 \end_layout
20481
20482 \end_inset
20483 </cell>
20484 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20485 \begin_inset Text
20486
20487 \begin_layout Plain Layout
20488 \begin_inset Formula $\varphi$
20489 \end_inset
20490
20491
20492 \end_layout
20493
20494 \end_inset
20495 </cell>
20496 </row>
20497 <row>
20498 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20499 \begin_inset Text
20500
20501 \begin_layout Plain Layout
20502
20503 \backslash
20504 chi
20505 \end_layout
20506
20507 \end_inset
20508 </cell>
20509 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20510 \begin_inset Text
20511
20512 \begin_layout Plain Layout
20513 \begin_inset Formula $\chi$
20514 \end_inset
20515
20516
20517 \end_layout
20518
20519 \end_inset
20520 </cell>
20521 </row>
20522 <row>
20523 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20524 \begin_inset Text
20525
20526 \begin_layout Plain Layout
20527
20528 \backslash
20529 psi
20530 \end_layout
20531
20532 \end_inset
20533 </cell>
20534 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20535 \begin_inset Text
20536
20537 \begin_layout Plain Layout
20538 \begin_inset Formula $\psi$
20539 \end_inset
20540
20541
20542 \end_layout
20543
20544 \end_inset
20545 </cell>
20546 </row>
20547 <row>
20548 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
20549 \begin_inset Text
20550
20551 \begin_layout Plain Layout
20552
20553 \backslash
20554 omega
20555 \end_layout
20556
20557 \end_inset
20558 </cell>
20559 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
20560 \begin_inset Text
20561
20562 \begin_layout Plain Layout
20563 \begin_inset Formula $\omega$
20564 \end_inset
20565
20566
20567 \end_layout
20568
20569 \end_inset
20570 </cell>
20571 </row>
20572 </lyxtabular>
20573
20574 \end_inset
20575
20576
20577 \begin_inset space \hfill{}
20578 \end_inset
20579
20580
20581 \end_layout
20582
20583 \begin_layout Standard
20584 \begin_inset VSpace medskip
20585 \end_inset
20586
20587 Wie man spezielle, aufrechte griechische Buchstaben erstellt, ist in 
20588 \begin_inset CommandInset ref
20589 LatexCommand ref
20590 reference "sub:Aufrechte-kleine-griechische"
20591
20592 \end_inset
20593
20594  beschrieben.
20595 \end_layout
20596
20597 \begin_layout Subsection
20598 Große Buchstaben
20599 \begin_inset Index idx
20600 status collapsed
20601
20602 \begin_layout Plain Layout
20603 griechische Buchstaben ! große
20604 \end_layout
20605
20606 \end_inset
20607
20608
20609 \end_layout
20610
20611 \begin_layout Standard
20612 \begin_inset space \hfill{}
20613 \end_inset
20614
20615
20616 \begin_inset Tabular
20617 <lyxtabular version="3" rows="7" columns="2">
20618 <features tabularvalignment="middle">
20619 <column alignment="center" valignment="top" width="0pt">
20620 <column alignment="center" valignment="top" width="0pt">
20621 <row>
20622 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
20623 \begin_inset Text
20624
20625 \begin_layout Plain Layout
20626 Befehl
20627 \end_layout
20628
20629 \end_inset
20630 </cell>
20631 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
20632 \begin_inset Text
20633
20634 \begin_layout Plain Layout
20635 Ergebnis
20636 \end_layout
20637
20638 \end_inset
20639 </cell>
20640 </row>
20641 <row>
20642 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20643 \begin_inset Text
20644
20645 \begin_layout Plain Layout
20646
20647 \backslash
20648 Gamma
20649 \end_layout
20650
20651 \end_inset
20652 </cell>
20653 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20654 \begin_inset Text
20655
20656 \begin_layout Plain Layout
20657 \begin_inset Formula $\Gamma$
20658 \end_inset
20659
20660
20661 \end_layout
20662
20663 \end_inset
20664 </cell>
20665 </row>
20666 <row>
20667 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20668 \begin_inset Text
20669
20670 \begin_layout Plain Layout
20671
20672 \backslash
20673 Delta
20674 \end_layout
20675
20676 \end_inset
20677 </cell>
20678 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20679 \begin_inset Text
20680
20681 \begin_layout Plain Layout
20682 \begin_inset Formula $\Delta$
20683 \end_inset
20684
20685
20686 \end_layout
20687
20688 \end_inset
20689 </cell>
20690 </row>
20691 <row>
20692 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20693 \begin_inset Text
20694
20695 \begin_layout Plain Layout
20696
20697 \backslash
20698 Theta
20699 \end_layout
20700
20701 \end_inset
20702 </cell>
20703 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20704 \begin_inset Text
20705
20706 \begin_layout Plain Layout
20707 \begin_inset Formula $\Theta$
20708 \end_inset
20709
20710
20711 \end_layout
20712
20713 \end_inset
20714 </cell>
20715 </row>
20716 <row>
20717 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20718 \begin_inset Text
20719
20720 \begin_layout Plain Layout
20721
20722 \backslash
20723 Lambda
20724 \end_layout
20725
20726 \end_inset
20727 </cell>
20728 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20729 \begin_inset Text
20730
20731 \begin_layout Plain Layout
20732 \begin_inset Formula $\Lambda$
20733 \end_inset
20734
20735
20736 \end_layout
20737
20738 \end_inset
20739 </cell>
20740 </row>
20741 <row>
20742 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20743 \begin_inset Text
20744
20745 \begin_layout Plain Layout
20746
20747 \backslash
20748 Xi
20749 \end_layout
20750
20751 \end_inset
20752 </cell>
20753 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20754 \begin_inset Text
20755
20756 \begin_layout Plain Layout
20757 \begin_inset Formula $\Xi$
20758 \end_inset
20759
20760
20761 \end_layout
20762
20763 \end_inset
20764 </cell>
20765 </row>
20766 <row>
20767 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
20768 \begin_inset Text
20769
20770 \begin_layout Plain Layout
20771
20772 \backslash
20773 Pi
20774 \end_layout
20775
20776 \end_inset
20777 </cell>
20778 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
20779 \begin_inset Text
20780
20781 \begin_layout Plain Layout
20782 \begin_inset Formula $\Pi$
20783 \end_inset
20784
20785
20786 \end_layout
20787
20788 \end_inset
20789 </cell>
20790 </row>
20791 </lyxtabular>
20792
20793 \end_inset
20794
20795
20796 \begin_inset space \hfill{}
20797 \end_inset
20798
20799
20800 \begin_inset Tabular
20801 <lyxtabular version="3" rows="6" columns="2">
20802 <features tabularvalignment="middle">
20803 <column alignment="center" valignment="top" width="0pt">
20804 <column alignment="center" valignment="top" width="0pt">
20805 <row>
20806 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
20807 \begin_inset Text
20808
20809 \begin_layout Plain Layout
20810 Befehl
20811 \end_layout
20812
20813 \end_inset
20814 </cell>
20815 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
20816 \begin_inset Text
20817
20818 \begin_layout Plain Layout
20819 Ergebnis
20820 \end_layout
20821
20822 \end_inset
20823 </cell>
20824 </row>
20825 <row>
20826 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20827 \begin_inset Text
20828
20829 \begin_layout Plain Layout
20830
20831 \backslash
20832 Sigma
20833 \end_layout
20834
20835 \end_inset
20836 </cell>
20837 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20838 \begin_inset Text
20839
20840 \begin_layout Plain Layout
20841 \begin_inset Formula $\Sigma$
20842 \end_inset
20843
20844
20845 \end_layout
20846
20847 \end_inset
20848 </cell>
20849 </row>
20850 <row>
20851 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20852 \begin_inset Text
20853
20854 \begin_layout Plain Layout
20855
20856 \backslash
20857 Upsilon
20858 \end_layout
20859
20860 \end_inset
20861 </cell>
20862 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20863 \begin_inset Text
20864
20865 \begin_layout Plain Layout
20866 \begin_inset Formula $\Upsilon$
20867 \end_inset
20868
20869
20870 \end_layout
20871
20872 \end_inset
20873 </cell>
20874 </row>
20875 <row>
20876 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20877 \begin_inset Text
20878
20879 \begin_layout Plain Layout
20880
20881 \backslash
20882 Phi
20883 \end_layout
20884
20885 \end_inset
20886 </cell>
20887 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20888 \begin_inset Text
20889
20890 \begin_layout Plain Layout
20891 \begin_inset Formula $\Phi$
20892 \end_inset
20893
20894
20895 \end_layout
20896
20897 \end_inset
20898 </cell>
20899 </row>
20900 <row>
20901 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20902 \begin_inset Text
20903
20904 \begin_layout Plain Layout
20905
20906 \backslash
20907 Psi
20908 \end_layout
20909
20910 \end_inset
20911 </cell>
20912 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20913 \begin_inset Text
20914
20915 \begin_layout Plain Layout
20916 \begin_inset Formula $\Psi$
20917 \end_inset
20918
20919
20920 \end_layout
20921
20922 \end_inset
20923 </cell>
20924 </row>
20925 <row>
20926 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
20927 \begin_inset Text
20928
20929 \begin_layout Plain Layout
20930
20931 \backslash
20932 Omega
20933 \end_layout
20934
20935 \end_inset
20936 </cell>
20937 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
20938 \begin_inset Text
20939
20940 \begin_layout Plain Layout
20941 \begin_inset Formula $\Omega$
20942 \end_inset
20943
20944
20945 \end_layout
20946
20947 \end_inset
20948 </cell>
20949 </row>
20950 </lyxtabular>
20951
20952 \end_inset
20953
20954
20955 \begin_inset space \hfill{}
20956 \end_inset
20957
20958
20959 \end_layout
20960
20961 \begin_layout Standard
20962 \begin_inset VSpace medskip
20963 \end_inset
20964
20965 Dass die großen griechischen Buchstaben aufrecht erscheinen, ist einem Fehler
20966  geschuldet, der während der Entwicklung von TeX gemacht wurde.
20967  Um korrekte kursive Großbuchstaben zu erhalten, beginnt man einen Befehl
20968  mit 
20969 \series bold
20970 var
20971 \series default
20972 .
20973  So ergibt z.
20974 \begin_inset space \thinspace{}
20975 \end_inset
20976
20977 B.
20978  der Befehl 
20979 \series bold
20980
20981 \backslash
20982 varGamma
20983 \series default
20984  
20985 \begin_inset Formula $\varGamma$
20986 \end_inset
20987
20988 .
20989  Eine andere Methode ist das Laden des Pakets 
20990 \series bold
20991 fixmath
20992 \series default
20993
20994 \begin_inset Foot
20995 status collapsed
20996
20997 \begin_layout Plain Layout
20998
20999 \series bold
21000 fixmath
21001 \series default
21002  ist Teil des LaTeX-Paketes 
21003 \series bold
21004 was
21005 \series default
21006
21007 \begin_inset Index idx
21008 status collapsed
21009
21010 \begin_layout Plain Layout
21011 Pakete ! was
21012 \begin_inset ERT
21013 status collapsed
21014
21015 \begin_layout Plain Layout
21016
21017
21018 \backslash
21019 vspace{4mm}
21020 \end_layout
21021
21022 \end_inset
21023
21024
21025 \end_layout
21026
21027 \end_inset
21028
21029 .
21030 \end_layout
21031
21032 \end_inset
21033
21034
21035 \begin_inset Index idx
21036 status collapsed
21037
21038 \begin_layout Plain Layout
21039 Pakete ! fixmath
21040 \end_layout
21041
21042 \end_inset
21043
21044  mit der LaTeX-Vorspannzeile
21045 \end_layout
21046
21047 \begin_layout Standard
21048
21049 \series bold
21050
21051 \backslash
21052 usepackage{fixmath}
21053 \end_layout
21054
21055 \begin_layout Standard
21056 Dann werden alle großen griechischen Buchstaben im Dokument automatisch
21057  kursiv ausgegeben.
21058 \end_layout
21059
21060 \begin_layout Subsection
21061 Fett gedruckte Buchstaben
21062 \begin_inset Index idx
21063 status collapsed
21064
21065 \begin_layout Plain Layout
21066 griechische Buchstaben ! fett gedruckte
21067 \end_layout
21068
21069 \end_inset
21070
21071
21072 \end_layout
21073
21074 \begin_layout Standard
21075 Griechische lassen sich nicht wie lateinische Buchstaben in verschiedenen
21076  Schriftstilen darstellen.
21077  Es besteht nur die Möglichkeit, sie mit dem Befehl 
21078 \series bold
21079
21080 \backslash
21081 boldsymbol
21082 \series default
21083
21084 \begin_inset Index idx
21085 status collapsed
21086
21087 \begin_layout Plain Layout
21088 Befehle ! B ! 
21089 \backslash
21090 boldsymbol
21091 \end_layout
21092
21093 \end_inset
21094
21095  fett gedruckt auszugeben.
21096 \end_layout
21097
21098 \begin_layout Standard
21099 \align center
21100 \begin_inset Tabular
21101 <lyxtabular version="3" rows="3" columns="2">
21102 <features tabularvalignment="middle">
21103 <column alignment="center" valignment="top" width="0">
21104 <column alignment="center" valignment="top" width="0">
21105 <row>
21106 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
21107 \begin_inset Text
21108
21109 \begin_layout Plain Layout
21110 Befehl
21111 \end_layout
21112
21113 \end_inset
21114 </cell>
21115 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
21116 \begin_inset Text
21117
21118 \begin_layout Plain Layout
21119 Ergebnis
21120 \end_layout
21121
21122 \end_inset
21123 </cell>
21124 </row>
21125 <row>
21126 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21127 \begin_inset Text
21128
21129 \begin_layout Plain Layout
21130
21131 \backslash
21132 Upsilon
21133 \backslash
21134 boldsymbol
21135 \backslash
21136 Upsilon
21137 \end_layout
21138
21139 \end_inset
21140 </cell>
21141 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21142 \begin_inset Text
21143
21144 \begin_layout Plain Layout
21145 \begin_inset Formula $\Upsilon\boldsymbol{\Upsilon}$
21146 \end_inset
21147
21148
21149 \end_layout
21150
21151 \end_inset
21152 </cell>
21153 </row>
21154 <row>
21155 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
21156 \begin_inset Text
21157
21158 \begin_layout Plain Layout
21159
21160 \backslash
21161 theta
21162 \backslash
21163 boldsymbol
21164 \backslash
21165 theta
21166 \end_layout
21167
21168 \end_inset
21169 </cell>
21170 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
21171 \begin_inset Text
21172
21173 \begin_layout Plain Layout
21174 \begin_inset Formula $\theta\boldsymbol{\theta}$
21175 \end_inset
21176
21177
21178 \end_layout
21179
21180 \end_inset
21181 </cell>
21182 </row>
21183 </lyxtabular>
21184
21185 \end_inset
21186
21187
21188 \end_layout
21189
21190 \begin_layout Standard
21191 \begin_inset Newpage newpage
21192 \end_inset
21193
21194
21195 \end_layout
21196
21197 \begin_layout Section
21198 Symbole
21199 \begin_inset ERT
21200 status collapsed
21201
21202 \begin_layout Plain Layout
21203
21204
21205 \backslash
21206 texorpdfstring{
21207 \end_layout
21208
21209 \end_inset
21210
21211
21212 \begin_inset Foot
21213 status collapsed
21214
21215 \begin_layout Plain Layout
21216 Eine Liste mit sämtlichen Symbolen der meisten LaTeX-Pakete findet man in
21217  
21218 \begin_inset CommandInset citation
21219 LatexCommand cite
21220 key "Symbole"
21221
21222 \end_inset
21223
21224 .
21225 \end_layout
21226
21227 \end_inset
21228
21229
21230 \begin_inset ERT
21231 status collapsed
21232
21233 \begin_layout Plain Layout
21234
21235 }{}
21236 \end_layout
21237
21238 \end_inset
21239
21240
21241 \begin_inset Note Note
21242 status collapsed
21243
21244 \begin_layout Plain Layout
21245
21246 \series bold
21247
21248 \backslash
21249 texorpdfstring
21250 \series default
21251  dient dazu, dass die Fußnote nicht mit im pdf-Lesezeichen erscheint.
21252 \end_layout
21253
21254 \begin_layout Plain Layout
21255 Näheres zu 
21256 \series bold
21257
21258 \backslash
21259 texorpdfstring
21260 \series default
21261  steht in Kapitel 
21262 \begin_inset CommandInset ref
21263 LatexCommand ref
21264 reference "sub:Formeln-in-Überschriften"
21265
21266 \end_inset
21267
21268 .
21269 \end_layout
21270
21271 \end_inset
21272
21273
21274 \begin_inset Index idx
21275 status collapsed
21276
21277 \begin_layout Plain Layout
21278 Symbole
21279 \end_layout
21280
21281 \end_inset
21282
21283
21284 \end_layout
21285
21286 \begin_layout Standard
21287 Viele der im Folgenden aufgelisteten Symbole können auch über die Mathe-Werkzeug\SpecialChar \-
21288
21289 leistenknöpfe 
21290 \begin_inset Graphics
21291         filename ../../images/math/nabla.png
21292         scale 85
21293
21294 \end_inset
21295
21296  und 
21297 \begin_inset Graphics
21298         filename ../../images/math/digamma.png
21299         scale 85
21300
21301 \end_inset
21302
21303  eingefügt werden.
21304 \end_layout
21305
21306 \begin_layout Subsection
21307 Mathematische Symbole
21308 \begin_inset CommandInset label
21309 LatexCommand label
21310 name "sub:Mathematische-Symbole"
21311
21312 \end_inset
21313
21314
21315 \begin_inset Index idx
21316 status collapsed
21317
21318 \begin_layout Plain Layout
21319 Symbole ! mathematische
21320 \end_layout
21321
21322 \end_inset
21323
21324
21325 \end_layout
21326
21327 \begin_layout Standard
21328 \begin_inset space \hfill{}
21329 \end_inset
21330
21331
21332 \begin_inset Tabular
21333 <lyxtabular version="3" rows="10" columns="2">
21334 <features tabularvalignment="middle">
21335 <column alignment="center" valignment="top" width="0pt">
21336 <column alignment="center" valignment="top" width="0pt">
21337 <row>
21338 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
21339 \begin_inset Text
21340
21341 \begin_layout Plain Layout
21342 Befehl
21343 \end_layout
21344
21345 \end_inset
21346 </cell>
21347 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
21348 \begin_inset Text
21349
21350 \begin_layout Plain Layout
21351 Ergebnis
21352 \end_layout
21353
21354 \end_inset
21355 </cell>
21356 </row>
21357 <row>
21358 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21359 \begin_inset Text
21360
21361 \begin_layout Plain Layout
21362
21363 \backslash
21364 neg
21365 \end_layout
21366
21367 \end_inset
21368 </cell>
21369 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21370 \begin_inset Text
21371
21372 \begin_layout Plain Layout
21373 \begin_inset Formula $\neg$
21374 \end_inset
21375
21376
21377 \end_layout
21378
21379 \end_inset
21380 </cell>
21381 </row>
21382 <row>
21383 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21384 \begin_inset Text
21385
21386 \begin_layout Plain Layout
21387
21388 \backslash
21389 Im
21390 \end_layout
21391
21392 \end_inset
21393 </cell>
21394 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21395 \begin_inset Text
21396
21397 \begin_layout Plain Layout
21398 \begin_inset Formula $\Im$
21399 \end_inset
21400
21401
21402 \end_layout
21403
21404 \end_inset
21405 </cell>
21406 </row>
21407 <row>
21408 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21409 \begin_inset Text
21410
21411 \begin_layout Plain Layout
21412
21413 \backslash
21414 Re
21415 \end_layout
21416
21417 \end_inset
21418 </cell>
21419 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21420 \begin_inset Text
21421
21422 \begin_layout Plain Layout
21423 \begin_inset Formula $\Re$
21424 \end_inset
21425
21426
21427 \end_layout
21428
21429 \end_inset
21430 </cell>
21431 </row>
21432 <row>
21433 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21434 \begin_inset Text
21435
21436 \begin_layout Plain Layout
21437
21438 \backslash
21439 aleph
21440 \end_layout
21441
21442 \end_inset
21443 </cell>
21444 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21445 \begin_inset Text
21446
21447 \begin_layout Plain Layout
21448 \begin_inset Formula $\aleph$
21449 \end_inset
21450
21451
21452 \end_layout
21453
21454 \end_inset
21455 </cell>
21456 </row>
21457 <row>
21458 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21459 \begin_inset Text
21460
21461 \begin_layout Plain Layout
21462
21463 \backslash
21464 partial
21465 \end_layout
21466
21467 \end_inset
21468 </cell>
21469 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21470 \begin_inset Text
21471
21472 \begin_layout Plain Layout
21473 \begin_inset Formula $\partial$
21474 \end_inset
21475
21476
21477 \end_layout
21478
21479 \end_inset
21480 </cell>
21481 </row>
21482 <row>
21483 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21484 \begin_inset Text
21485
21486 \begin_layout Plain Layout
21487
21488 \backslash
21489 infty
21490 \end_layout
21491
21492 \end_inset
21493 </cell>
21494 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21495 \begin_inset Text
21496
21497 \begin_layout Plain Layout
21498 \begin_inset Formula $\infty$
21499 \end_inset
21500
21501
21502 \end_layout
21503
21504 \end_inset
21505 </cell>
21506 </row>
21507 <row>
21508 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
21509 \begin_inset Text
21510
21511 \begin_layout Plain Layout
21512
21513 \backslash
21514 wp
21515 \end_layout
21516
21517 \end_inset
21518 </cell>
21519 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
21520 \begin_inset Text
21521
21522 \begin_layout Plain Layout
21523 \begin_inset Formula $\wp$
21524 \end_inset
21525
21526
21527 \end_layout
21528
21529 \end_inset
21530 </cell>
21531 </row>
21532 <row>
21533 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
21534 \begin_inset Text
21535
21536 \begin_layout Plain Layout
21537
21538 \backslash
21539 imath
21540 \end_layout
21541
21542 \end_inset
21543 </cell>
21544 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
21545 \begin_inset Text
21546
21547 \begin_layout Plain Layout
21548 \begin_inset Formula $\imath$
21549 \end_inset
21550
21551
21552 \end_layout
21553
21554 \end_inset
21555 </cell>
21556 </row>
21557 <row>
21558 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
21559 \begin_inset Text
21560
21561 \begin_layout Plain Layout
21562
21563 \backslash
21564 jmath
21565 \end_layout
21566
21567 \end_inset
21568 </cell>
21569 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
21570 \begin_inset Text
21571
21572 \begin_layout Plain Layout
21573 \begin_inset Formula $\jmath$
21574 \end_inset
21575
21576
21577 \end_layout
21578
21579 \end_inset
21580 </cell>
21581 </row>
21582 </lyxtabular>
21583
21584 \end_inset
21585
21586
21587 \begin_inset space \hfill{}
21588 \end_inset
21589
21590
21591 \begin_inset Tabular
21592 <lyxtabular version="3" rows="10" columns="2">
21593 <features tabularvalignment="middle">
21594 <column alignment="center" valignment="top" width="0pt">
21595 <column alignment="center" valignment="top" width="0pt">
21596 <row>
21597 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
21598 \begin_inset Text
21599
21600 \begin_layout Plain Layout
21601 Befehl
21602 \end_layout
21603
21604 \end_inset
21605 </cell>
21606 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
21607 \begin_inset Text
21608
21609 \begin_layout Plain Layout
21610 Ergebnis
21611 \begin_inset Note Note
21612 status collapsed
21613
21614 \begin_layout Plain Layout
21615
21616 \series bold
21617
21618 \backslash
21619 raisebox
21620 \series default
21621  dient nur als Abstandhalter.
21622 \end_layout
21623
21624 \end_inset
21625
21626
21627 \end_layout
21628
21629 \end_inset
21630 </cell>
21631 </row>
21632 <row>
21633 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21634 \begin_inset Text
21635
21636 \begin_layout Plain Layout
21637
21638 \backslash
21639 forall
21640 \end_layout
21641
21642 \end_inset
21643 </cell>
21644 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21645 \begin_inset Text
21646
21647 \begin_layout Plain Layout
21648 \begin_inset Formula $\forall$
21649 \end_inset
21650
21651
21652 \end_layout
21653
21654 \end_inset
21655 </cell>
21656 </row>
21657 <row>
21658 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21659 \begin_inset Text
21660
21661 \begin_layout Plain Layout
21662
21663 \backslash
21664 exists
21665 \end_layout
21666
21667 \end_inset
21668 </cell>
21669 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21670 \begin_inset Text
21671
21672 \begin_layout Plain Layout
21673 \begin_inset Formula $\exists$
21674 \end_inset
21675
21676
21677 \end_layout
21678
21679 \end_inset
21680 </cell>
21681 </row>
21682 <row>
21683 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21684 \begin_inset Text
21685
21686 \begin_layout Plain Layout
21687
21688 \backslash
21689 nexists
21690 \end_layout
21691
21692 \end_inset
21693 </cell>
21694 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21695 \begin_inset Text
21696
21697 \begin_layout Plain Layout
21698 \begin_inset Formula $\nexists$
21699 \end_inset
21700
21701
21702 \end_layout
21703
21704 \end_inset
21705 </cell>
21706 </row>
21707 <row>
21708 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21709 \begin_inset Text
21710
21711 \begin_layout Plain Layout
21712
21713 \backslash
21714 emptyset
21715 \end_layout
21716
21717 \end_inset
21718 </cell>
21719 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21720 \begin_inset Text
21721
21722 \begin_layout Plain Layout
21723 \begin_inset Formula $\emptyset$
21724 \end_inset
21725
21726
21727 \end_layout
21728
21729 \end_inset
21730 </cell>
21731 </row>
21732 <row>
21733 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21734 \begin_inset Text
21735
21736 \begin_layout Plain Layout
21737
21738 \backslash
21739 varnothing
21740 \end_layout
21741
21742 \end_inset
21743 </cell>
21744 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21745 \begin_inset Text
21746
21747 \begin_layout Plain Layout
21748 \begin_inset Formula $\varnothing$
21749 \end_inset
21750
21751
21752 \end_layout
21753
21754 \end_inset
21755 </cell>
21756 </row>
21757 <row>
21758 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21759 \begin_inset Text
21760
21761 \begin_layout Plain Layout
21762
21763 \backslash
21764 dag
21765 \end_layout
21766
21767 \end_inset
21768 </cell>
21769 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21770 \begin_inset Text
21771
21772 \begin_layout Plain Layout
21773 \begin_inset Formula $\dag$
21774 \end_inset
21775
21776
21777 \end_layout
21778
21779 \end_inset
21780 </cell>
21781 </row>
21782 <row>
21783 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
21784 \begin_inset Text
21785
21786 \begin_layout Plain Layout
21787
21788 \backslash
21789 ddag
21790 \end_layout
21791
21792 \end_inset
21793 </cell>
21794 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
21795 \begin_inset Text
21796
21797 \begin_layout Plain Layout
21798 \begin_inset Formula $\ddag$
21799 \end_inset
21800
21801
21802 \end_layout
21803
21804 \end_inset
21805 </cell>
21806 </row>
21807 <row>
21808 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
21809 \begin_inset Text
21810
21811 \begin_layout Plain Layout
21812
21813 \backslash
21814 complement
21815 \end_layout
21816
21817 \end_inset
21818 </cell>
21819 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
21820 \begin_inset Text
21821
21822 \begin_layout Plain Layout
21823 \begin_inset ERT
21824 status collapsed
21825
21826 \begin_layout Plain Layout
21827
21828
21829 \backslash
21830 raisebox{-0.8mm}{
21831 \end_layout
21832
21833 \end_inset
21834
21835
21836 \begin_inset Formula $\complement$
21837 \end_inset
21838
21839
21840 \begin_inset ERT
21841 status collapsed
21842
21843 \begin_layout Plain Layout
21844
21845 }
21846 \end_layout
21847
21848 \end_inset
21849
21850
21851 \end_layout
21852
21853 \end_inset
21854 </cell>
21855 </row>
21856 <row>
21857 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
21858 \begin_inset Text
21859
21860 \begin_layout Plain Layout
21861
21862 \backslash
21863 Bbbk
21864 \end_layout
21865
21866 \end_inset
21867 </cell>
21868 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
21869 \begin_inset Text
21870
21871 \begin_layout Plain Layout
21872 \begin_inset Formula $\Bbbk$
21873 \end_inset
21874
21875
21876 \end_layout
21877
21878 \end_inset
21879 </cell>
21880 </row>
21881 </lyxtabular>
21882
21883 \end_inset
21884
21885
21886 \begin_inset space \hfill{}
21887 \end_inset
21888
21889
21890 \begin_inset Tabular
21891 <lyxtabular version="3" rows="10" columns="2">
21892 <features tabularvalignment="middle">
21893 <column alignment="center" valignment="top" width="0pt">
21894 <column alignment="center" valignment="top" width="0pt">
21895 <row>
21896 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
21897 \begin_inset Text
21898
21899 \begin_layout Plain Layout
21900 Befehl
21901 \end_layout
21902
21903 \end_inset
21904 </cell>
21905 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
21906 \begin_inset Text
21907
21908 \begin_layout Plain Layout
21909 Ergebnis
21910 \end_layout
21911
21912 \end_inset
21913 </cell>
21914 </row>
21915 <row>
21916 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21917 \begin_inset Text
21918
21919 \begin_layout Plain Layout
21920
21921 \backslash
21922 prime
21923 \end_layout
21924
21925 \end_inset
21926 </cell>
21927 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21928 \begin_inset Text
21929
21930 \begin_layout Plain Layout
21931 \begin_inset Formula $\prime$
21932 \end_inset
21933
21934
21935 \end_layout
21936
21937 \end_inset
21938 </cell>
21939 </row>
21940 <row>
21941 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21942 \begin_inset Text
21943
21944 \begin_layout Plain Layout
21945
21946 \backslash
21947 backprime
21948 \end_layout
21949
21950 \end_inset
21951 </cell>
21952 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21953 \begin_inset Text
21954
21955 \begin_layout Plain Layout
21956 \begin_inset Formula $\backprime$
21957 \end_inset
21958
21959
21960 \end_layout
21961
21962 \end_inset
21963 </cell>
21964 </row>
21965 <row>
21966 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21967 \begin_inset Text
21968
21969 \begin_layout Plain Layout
21970
21971 \backslash
21972 mho
21973 \end_layout
21974
21975 \end_inset
21976 </cell>
21977 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21978 \begin_inset Text
21979
21980 \begin_layout Plain Layout
21981 \begin_inset Formula $\mho$
21982 \end_inset
21983
21984
21985 \end_layout
21986
21987 \end_inset
21988 </cell>
21989 </row>
21990 <row>
21991 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21992 \begin_inset Text
21993
21994 \begin_layout Plain Layout
21995
21996 \backslash
21997 triangle
21998 \end_layout
21999
22000 \end_inset
22001 </cell>
22002 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22003 \begin_inset Text
22004
22005 \begin_layout Plain Layout
22006 \begin_inset Formula $\triangle$
22007 \end_inset
22008
22009
22010 \end_layout
22011
22012 \end_inset
22013 </cell>
22014 </row>
22015 <row>
22016 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22017 \begin_inset Text
22018
22019 \begin_layout Plain Layout
22020
22021 \backslash
22022 angle
22023 \end_layout
22024
22025 \end_inset
22026 </cell>
22027 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22028 \begin_inset Text
22029
22030 \begin_layout Plain Layout
22031 \begin_inset Formula $\angle$
22032 \end_inset
22033
22034
22035 \end_layout
22036
22037 \end_inset
22038 </cell>
22039 </row>
22040 <row>
22041 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22042 \begin_inset Text
22043
22044 \begin_layout Plain Layout
22045
22046 \backslash
22047 measuredangle
22048 \end_layout
22049
22050 \end_inset
22051 </cell>
22052 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22053 \begin_inset Text
22054
22055 \begin_layout Plain Layout
22056 \begin_inset Formula $\measuredangle$
22057 \end_inset
22058
22059
22060 \end_layout
22061
22062 \end_inset
22063 </cell>
22064 </row>
22065 <row>
22066 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
22067 \begin_inset Text
22068
22069 \begin_layout Plain Layout
22070
22071 \backslash
22072 sphericalangle
22073 \end_layout
22074
22075 \end_inset
22076 </cell>
22077 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
22078 \begin_inset Text
22079
22080 \begin_layout Plain Layout
22081 \begin_inset Formula $\sphericalangle$
22082 \end_inset
22083
22084
22085 \end_layout
22086
22087 \end_inset
22088 </cell>
22089 </row>
22090 <row>
22091 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
22092 \begin_inset Text
22093
22094 \begin_layout Plain Layout
22095
22096 \backslash
22097 top
22098 \end_layout
22099
22100 \end_inset
22101 </cell>
22102 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
22103 \begin_inset Text
22104
22105 \begin_layout Plain Layout
22106 \begin_inset Formula $\top$
22107 \end_inset
22108
22109
22110 \end_layout
22111
22112 \end_inset
22113 </cell>
22114 </row>
22115 <row>
22116 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
22117 \begin_inset Text
22118
22119 \begin_layout Plain Layout
22120
22121 \backslash
22122 bot
22123 \end_layout
22124
22125 \end_inset
22126 </cell>
22127 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
22128 \begin_inset Text
22129
22130 \begin_layout Plain Layout
22131 \begin_inset Formula $\bot$
22132 \end_inset
22133
22134
22135 \end_layout
22136
22137 \end_inset
22138 </cell>
22139 </row>
22140 </lyxtabular>
22141
22142 \end_inset
22143
22144
22145 \begin_inset space \hfill{}
22146 \end_inset
22147
22148
22149 \end_layout
22150
22151 \begin_layout Subsection
22152 Sonstige Symbole
22153 \begin_inset CommandInset label
22154 LatexCommand label
22155 name "sub:Sonstige-Symbole"
22156
22157 \end_inset
22158
22159
22160 \begin_inset Index idx
22161 status collapsed
22162
22163 \begin_layout Plain Layout
22164 Symbole ! sonstige
22165 \end_layout
22166
22167 \end_inset
22168
22169
22170 \end_layout
22171
22172 \begin_layout Standard
22173 \begin_inset VSpace -7mm
22174 \end_inset
22175
22176
22177 \end_layout
22178
22179 \begin_layout Standard
22180 \noindent
22181 \align center
22182 \begin_inset Tabular
22183 <lyxtabular version="3" rows="10" columns="2">
22184 <features tabularvalignment="middle">
22185 <column alignment="center" valignment="top" width="0pt">
22186 <column alignment="center" valignment="top" width="0pt">
22187 <row>
22188 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
22189 \begin_inset Text
22190
22191 \begin_layout Plain Layout
22192 Befehl
22193 \end_layout
22194
22195 \end_inset
22196 </cell>
22197 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
22198 \begin_inset Text
22199
22200 \begin_layout Plain Layout
22201 Ergebnis
22202 \end_layout
22203
22204 \end_inset
22205 </cell>
22206 </row>
22207 <row>
22208 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22209 \begin_inset Text
22210
22211 \begin_layout Plain Layout
22212
22213 \backslash
22214 flat
22215 \end_layout
22216
22217 \end_inset
22218 </cell>
22219 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22220 \begin_inset Text
22221
22222 \begin_layout Plain Layout
22223 \begin_inset Formula $\flat$
22224 \end_inset
22225
22226
22227 \end_layout
22228
22229 \end_inset
22230 </cell>
22231 </row>
22232 <row>
22233 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22234 \begin_inset Text
22235
22236 \begin_layout Plain Layout
22237
22238 \backslash
22239 natural
22240 \end_layout
22241
22242 \end_inset
22243 </cell>
22244 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22245 \begin_inset Text
22246
22247 \begin_layout Plain Layout
22248 \begin_inset Formula $\natural$
22249 \end_inset
22250
22251
22252 \end_layout
22253
22254 \end_inset
22255 </cell>
22256 </row>
22257 <row>
22258 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22259 \begin_inset Text
22260
22261 \begin_layout Plain Layout
22262
22263 \backslash
22264 sharp
22265 \end_layout
22266
22267 \end_inset
22268 </cell>
22269 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22270 \begin_inset Text
22271
22272 \begin_layout Plain Layout
22273 \begin_inset Formula $\sharp$
22274 \end_inset
22275
22276
22277 \end_layout
22278
22279 \end_inset
22280 </cell>
22281 </row>
22282 <row>
22283 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
22284 \begin_inset Text
22285
22286 \begin_layout Plain Layout
22287
22288 \backslash
22289 surd
22290 \end_layout
22291
22292 \end_inset
22293 </cell>
22294 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
22295 \begin_inset Text
22296
22297 \begin_layout Plain Layout
22298 \begin_inset Formula $\surd$
22299 \end_inset
22300
22301
22302 \end_layout
22303
22304 \end_inset
22305 </cell>
22306 </row>
22307 <row>
22308 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
22309 \begin_inset Text
22310
22311 \begin_layout Plain Layout
22312
22313 \backslash
22314 checkmark
22315 \end_layout
22316
22317 \end_inset
22318 </cell>
22319 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
22320 \begin_inset Text
22321
22322 \begin_layout Plain Layout
22323 \begin_inset Formula $\checkmark$
22324 \end_inset
22325
22326
22327 \end_layout
22328
22329 \end_inset
22330 </cell>
22331 </row>
22332 <row>
22333 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
22334 \begin_inset Text
22335
22336 \begin_layout Plain Layout
22337
22338 \backslash
22339 yen
22340 \end_layout
22341
22342 \end_inset
22343 </cell>
22344 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
22345 \begin_inset Text
22346
22347 \begin_layout Plain Layout
22348 \begin_inset Formula $\yen$
22349 \end_inset
22350
22351
22352 \end_layout
22353
22354 \end_inset
22355 </cell>
22356 </row>
22357 <row>
22358 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
22359 \begin_inset Text
22360
22361 \begin_layout Plain Layout
22362
22363 \backslash
22364 pounds
22365 \end_layout
22366
22367 \end_inset
22368 </cell>
22369 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
22370 \begin_inset Text
22371
22372 \begin_layout Plain Layout
22373 \begin_inset Formula $\pounds$
22374 \end_inset
22375
22376
22377 \end_layout
22378
22379 \end_inset
22380 </cell>
22381 </row>
22382 <row>
22383 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
22384 \begin_inset Text
22385
22386 \begin_layout Plain Layout
22387 $
22388 \end_layout
22389
22390 \end_inset
22391 </cell>
22392 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
22393 \begin_inset Text
22394
22395 \begin_layout Plain Layout
22396 \begin_inset Formula $\$$
22397 \end_inset
22398
22399
22400 \end_layout
22401
22402 \end_inset
22403 </cell>
22404 </row>
22405 <row>
22406 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
22407 \begin_inset Text
22408
22409 \begin_layout Plain Layout
22410 §
22411 \end_layout
22412
22413 \end_inset
22414 </cell>
22415 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
22416 \begin_inset Text
22417
22418 \begin_layout Plain Layout
22419 \begin_inset Formula $§$
22420 \end_inset
22421
22422
22423 \end_layout
22424
22425 \end_inset
22426 </cell>
22427 </row>
22428 </lyxtabular>
22429
22430 \end_inset
22431
22432
22433 \begin_inset Tabular
22434 <lyxtabular version="3" rows="10" columns="2">
22435 <features tabularvalignment="middle">
22436 <column alignment="center" valignment="top" width="0">
22437 <column alignment="center" valignment="top" width="0">
22438 <row>
22439 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
22440 \begin_inset Text
22441
22442 \begin_layout Plain Layout
22443 Befehl
22444 \end_layout
22445
22446 \end_inset
22447 </cell>
22448 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
22449 \begin_inset Text
22450
22451 \begin_layout Plain Layout
22452 Ergebnis
22453 \end_layout
22454
22455 \end_inset
22456 </cell>
22457 </row>
22458 <row>
22459 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22460 \begin_inset Text
22461
22462 \begin_layout Plain Layout
22463
22464 \backslash
22465 hbar
22466 \end_layout
22467
22468 \end_inset
22469 </cell>
22470 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22471 \begin_inset Text
22472
22473 \begin_layout Plain Layout
22474 \begin_inset Formula $\hbar$
22475 \end_inset
22476
22477
22478 \end_layout
22479
22480 \end_inset
22481 </cell>
22482 </row>
22483 <row>
22484 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22485 \begin_inset Text
22486
22487 \begin_layout Plain Layout
22488
22489 \backslash
22490 hslash
22491 \end_layout
22492
22493 \end_inset
22494 </cell>
22495 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22496 \begin_inset Text
22497
22498 \begin_layout Plain Layout
22499 \begin_inset Formula $\hslash$
22500 \end_inset
22501
22502
22503 \end_layout
22504
22505 \end_inset
22506 </cell>
22507 </row>
22508 <row>
22509 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22510 \begin_inset Text
22511
22512 \begin_layout Plain Layout
22513
22514 \backslash
22515 clubsuit
22516 \end_layout
22517
22518 \end_inset
22519 </cell>
22520 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22521 \begin_inset Text
22522
22523 \begin_layout Plain Layout
22524 \begin_inset Formula $\clubsuit$
22525 \end_inset
22526
22527
22528 \end_layout
22529
22530 \end_inset
22531 </cell>
22532 </row>
22533 <row>
22534 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22535 \begin_inset Text
22536
22537 \begin_layout Plain Layout
22538
22539 \backslash
22540 spadesuit
22541 \end_layout
22542
22543 \end_inset
22544 </cell>
22545 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22546 \begin_inset Text
22547
22548 \begin_layout Plain Layout
22549 \begin_inset Formula $\spadesuit$
22550 \end_inset
22551
22552
22553 \end_layout
22554
22555 \end_inset
22556 </cell>
22557 </row>
22558 <row>
22559 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22560 \begin_inset Text
22561
22562 \begin_layout Plain Layout
22563
22564 \backslash
22565 bigstar
22566 \end_layout
22567
22568 \end_inset
22569 </cell>
22570 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22571 \begin_inset Text
22572
22573 \begin_layout Plain Layout
22574 \begin_inset Formula $\bigstar$
22575 \end_inset
22576
22577
22578 \end_layout
22579
22580 \end_inset
22581 </cell>
22582 </row>
22583 <row>
22584 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22585 \begin_inset Text
22586
22587 \begin_layout Plain Layout
22588
22589 \backslash
22590 blacklozenge
22591 \end_layout
22592
22593 \end_inset
22594 </cell>
22595 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22596 \begin_inset Text
22597
22598 \begin_layout Plain Layout
22599 \begin_inset Formula $\blacklozenge$
22600 \end_inset
22601
22602
22603 \end_layout
22604
22605 \end_inset
22606 </cell>
22607 </row>
22608 <row>
22609 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22610 \begin_inset Text
22611
22612 \begin_layout Plain Layout
22613
22614 \backslash
22615 blacktriangle
22616 \end_layout
22617
22618 \end_inset
22619 </cell>
22620 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22621 \begin_inset Text
22622
22623 \begin_layout Plain Layout
22624 \begin_inset Formula $\blacktriangle$
22625 \end_inset
22626
22627
22628 \end_layout
22629
22630 \end_inset
22631 </cell>
22632 </row>
22633 <row>
22634 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22635 \begin_inset Text
22636
22637 \begin_layout Plain Layout
22638
22639 \backslash
22640 blacktiangledown
22641 \end_layout
22642
22643 \end_inset
22644 </cell>
22645 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22646 \begin_inset Text
22647
22648 \begin_layout Plain Layout
22649 \begin_inset Formula $\blacktriangledown$
22650 \end_inset
22651
22652
22653 \end_layout
22654
22655 \end_inset
22656 </cell>
22657 </row>
22658 <row>
22659 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
22660 \begin_inset Text
22661
22662 \begin_layout Plain Layout
22663
22664 \backslash
22665 bullet
22666 \end_layout
22667
22668 \end_inset
22669 </cell>
22670 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
22671 \begin_inset Text
22672
22673 \begin_layout Plain Layout
22674 \begin_inset Formula $\bullet$
22675 \end_inset
22676
22677
22678 \end_layout
22679
22680 \end_inset
22681 </cell>
22682 </row>
22683 </lyxtabular>
22684
22685 \end_inset
22686
22687
22688 \begin_inset Tabular
22689 <lyxtabular version="3" rows="10" columns="2">
22690 <features tabularvalignment="middle">
22691 <column alignment="center" valignment="top" width="0pt">
22692 <column alignment="center" valignment="top" width="0pt">
22693 <row>
22694 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
22695 \begin_inset Text
22696
22697 \begin_layout Plain Layout
22698 Befehl
22699 \end_layout
22700
22701 \end_inset
22702 </cell>
22703 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
22704 \begin_inset Text
22705
22706 \begin_layout Plain Layout
22707 Ergebnis
22708 \end_layout
22709
22710 \end_inset
22711 </cell>
22712 </row>
22713 <row>
22714 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22715 \begin_inset Text
22716
22717 \begin_layout Plain Layout
22718
22719 \backslash
22720 diamondsuit
22721 \end_layout
22722
22723 \end_inset
22724 </cell>
22725 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22726 \begin_inset Text
22727
22728 \begin_layout Plain Layout
22729 \begin_inset Formula $\diamondsuit$
22730 \end_inset
22731
22732
22733 \end_layout
22734
22735 \end_inset
22736 </cell>
22737 </row>
22738 <row>
22739 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22740 \begin_inset Text
22741
22742 \begin_layout Plain Layout
22743
22744 \backslash
22745 Diamond
22746 \end_layout
22747
22748 \end_inset
22749 </cell>
22750 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22751 \begin_inset Text
22752
22753 \begin_layout Plain Layout
22754 \begin_inset Formula $\Diamond$
22755 \end_inset
22756
22757
22758 \end_layout
22759
22760 \end_inset
22761 </cell>
22762 </row>
22763 <row>
22764 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22765 \begin_inset Text
22766
22767 \begin_layout Plain Layout
22768
22769 \backslash
22770 heartsuit
22771 \end_layout
22772
22773 \end_inset
22774 </cell>
22775 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22776 \begin_inset Text
22777
22778 \begin_layout Plain Layout
22779 \begin_inset Formula $\heartsuit$
22780 \end_inset
22781
22782
22783 \end_layout
22784
22785 \end_inset
22786 </cell>
22787 </row>
22788 <row>
22789 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
22790 \begin_inset Text
22791
22792 \begin_layout Plain Layout
22793
22794 \backslash
22795 P
22796 \end_layout
22797
22798 \end_inset
22799 </cell>
22800 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
22801 \begin_inset Text
22802
22803 \begin_layout Plain Layout
22804 \begin_inset Formula $\P$
22805 \end_inset
22806
22807
22808 \end_layout
22809
22810 \end_inset
22811 </cell>
22812 </row>
22813 <row>
22814 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
22815 \begin_inset Text
22816
22817 \begin_layout Plain Layout
22818
22819 \backslash
22820 copyright
22821 \end_layout
22822
22823 \end_inset
22824 </cell>
22825 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
22826 \begin_inset Text
22827
22828 \begin_layout Plain Layout
22829 \begin_inset Formula $\copyright$
22830 \end_inset
22831
22832
22833 \end_layout
22834
22835 \end_inset
22836 </cell>
22837 </row>
22838 <row>
22839 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
22840 \begin_inset Text
22841
22842 \begin_layout Plain Layout
22843
22844 \backslash
22845 circledR
22846 \end_layout
22847
22848 \end_inset
22849 </cell>
22850 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
22851 \begin_inset Text
22852
22853 \begin_layout Plain Layout
22854 \begin_inset Formula $\circledR$
22855 \end_inset
22856
22857
22858 \end_layout
22859
22860 \end_inset
22861 </cell>
22862 </row>
22863 <row>
22864 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
22865 \begin_inset Text
22866
22867 \begin_layout Plain Layout
22868
22869 \backslash
22870 maltese
22871 \end_layout
22872
22873 \end_inset
22874 </cell>
22875 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
22876 \begin_inset Text
22877
22878 \begin_layout Plain Layout
22879 \begin_inset Formula $\maltese$
22880 \end_inset
22881
22882
22883 \end_layout
22884
22885 \end_inset
22886 </cell>
22887 </row>
22888 <row>
22889 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
22890 \begin_inset Text
22891
22892 \begin_layout Plain Layout
22893
22894 \backslash
22895 diagup
22896 \end_layout
22897
22898 \end_inset
22899 </cell>
22900 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
22901 \begin_inset Text
22902
22903 \begin_layout Plain Layout
22904 \begin_inset Formula $\diagup$
22905 \end_inset
22906
22907
22908 \end_layout
22909
22910 \end_inset
22911 </cell>
22912 </row>
22913 <row>
22914 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
22915 \begin_inset Text
22916
22917 \begin_layout Plain Layout
22918
22919 \backslash
22920 diagdown
22921 \end_layout
22922
22923 \end_inset
22924 </cell>
22925 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
22926 \begin_inset Text
22927
22928 \begin_layout Plain Layout
22929 \begin_inset Formula $\diagdown$
22930 \end_inset
22931
22932
22933 \end_layout
22934
22935 \end_inset
22936 </cell>
22937 </row>
22938 </lyxtabular>
22939
22940 \end_inset
22941
22942
22943 \end_layout
22944
22945 \begin_layout Standard
22946 \begin_inset VSpace medskip
22947 \end_inset
22948
22949 Weitere Symbole sind in 
22950 \begin_inset CommandInset ref
22951 LatexCommand ref
22952 reference "sub:Sonstige-Sonderzeichen"
22953
22954 \end_inset
22955
22956  aufgelistet.
22957 \end_layout
22958
22959 \begin_layout Standard
22960 Einige Symbole können in unterschiedlicher Größe dargestellt werden, siehe
22961  
22962 \begin_inset CommandInset ref
22963 LatexCommand ref
22964 reference "sub:Schriftgrößen"
22965
22966 \end_inset
22967
22968 .
22969 \end_layout
22970
22971 \begin_layout Subsection
22972 Das Euro-Symbol €
22973 \begin_inset Index idx
22974 status collapsed
22975
22976 \begin_layout Plain Layout
22977 Symbole ! Euro-Symbol
22978 \end_layout
22979
22980 \end_inset
22981
22982
22983 \begin_inset Index idx
22984 status collapsed
22985
22986 \begin_layout Plain Layout
22987
22988 \backslash
22989 @
22990 \begin_inset ERT
22991 status collapsed
22992
22993 \begin_layout Plain Layout
22994
22995
22996 \backslash
22997 officialeuro
22998 \end_layout
22999
23000 \end_inset
23001
23002
23003 \end_layout
23004
23005 \end_inset
23006
23007
23008 \end_layout
23009
23010 \begin_layout Standard
23011 Wenn man in einer Formel das Euro-Symbol verwenden will, muss man das LaTeX-Pake
23012
23013 \series bold
23014 eurosym
23015 \series default
23016
23017 \begin_inset Index idx
23018 status collapsed
23019
23020 \begin_layout Plain Layout
23021 Pakete ! eurosym
23022 \end_layout
23023
23024 \end_inset
23025
23026  installieren und dieses mit der LaTeX-Vorspannzeile
23027 \end_layout
23028
23029 \begin_layout Standard
23030
23031 \series bold
23032
23033 \backslash
23034 usepackage[gennarrow]{eurosym}
23035 \end_layout
23036
23037 \begin_layout Standard
23038 aktivieren.
23039  Das Euro-Symbol kann man nun mit dem Befehl 
23040 \series bold
23041
23042 \backslash
23043 euro
23044 \series default
23045
23046 \begin_inset Index idx
23047 status collapsed
23048
23049 \begin_layout Plain Layout
23050 Befehle ! E ! 
23051 \backslash
23052 euro
23053 \end_layout
23054
23055 \end_inset
23056
23057  aufrufen.
23058 \end_layout
23059
23060 \begin_layout Standard
23061 Das Euro-Symbol kann man direkt über die Tastatur in mathematischen Text
23062  eingeben, ohne 
23063 \series bold
23064 eurosym
23065 \series default
23066  installiert zu haben.
23067  Ist 
23068 \series bold
23069 eurosym
23070 \series default
23071  installiert, kann man 
23072 \series bold
23073
23074 \backslash
23075 euro
23076 \series default
23077  auch im TeX-Modus eingeben.
23078  Das offizielle Währungssymbol erhält man dann über den Befehl 
23079 \series bold
23080
23081 \backslash
23082 officialeuro
23083 \series default
23084
23085 \begin_inset Index idx
23086 status collapsed
23087
23088 \begin_layout Plain Layout
23089 Befehle ! O ! 
23090 \backslash
23091 officialeuro
23092 \end_layout
23093
23094 \end_inset
23095
23096 , der nur im TeX-Modus verfügbar ist.
23097 \end_layout
23098
23099 \begin_layout Standard
23100 \begin_inset ERT
23101 status collapsed
23102
23103 \begin_layout Plain Layout
23104
23105
23106 \backslash
23107 ifeurosym 
23108 \end_layout
23109
23110 \end_inset
23111
23112
23113 \begin_inset Note Note
23114 status open
23115
23116 \begin_layout Plain Layout
23117 Die folgende Tabelle erscheint nur im Ausdruck wenn das LaTeX-Paket 
23118 \series bold
23119 eurosym
23120 \series default
23121  installiert ist:
23122 \end_layout
23123
23124 \end_inset
23125
23126
23127 \end_layout
23128
23129 \begin_layout Standard
23130 Eine Übersicht der verschiedenen Euro-Symbole:
23131 \end_layout
23132
23133 \begin_layout Standard
23134 \align center
23135 \begin_inset Tabular
23136 <lyxtabular version="3" rows="4" columns="3">
23137 <features tabularvalignment="middle">
23138 <column alignment="center" valignment="top" width="0pt">
23139 <column alignment="center" valignment="top" width="0pt">
23140 <column alignment="center" valignment="top" width="0pt">
23141 <row>
23142 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" usebox="none">
23143 \begin_inset Text
23144
23145 \begin_layout Plain Layout
23146
23147 \end_layout
23148
23149 \end_inset
23150 </cell>
23151 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
23152 \begin_inset Text
23153
23154 \begin_layout Plain Layout
23155 Befehl 
23156 \end_layout
23157
23158 \end_inset
23159 </cell>
23160 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
23161 \begin_inset Text
23162
23163 \begin_layout Plain Layout
23164 Ergebnis
23165 \end_layout
23166
23167 \end_inset
23168 </cell>
23169 </row>
23170 <row>
23171 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23172 \begin_inset Text
23173
23174 \begin_layout Plain Layout
23175 Formel
23176 \end_layout
23177
23178 \end_inset
23179 </cell>
23180 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23181 \begin_inset Text
23182
23183 \begin_layout Plain Layout
23184
23185 \backslash
23186 euro
23187 \end_layout
23188
23189 \end_inset
23190 </cell>
23191 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23192 \begin_inset Text
23193
23194 \begin_layout Plain Layout
23195 \begin_inset Formula $\euro$
23196 \end_inset
23197
23198
23199 \end_layout
23200
23201 \end_inset
23202 </cell>
23203 </row>
23204 <row>
23205 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23206 \begin_inset Text
23207
23208 \begin_layout Plain Layout
23209 mathematischer Text
23210 \end_layout
23211
23212 \end_inset
23213 </cell>
23214 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23215 \begin_inset Text
23216
23217 \begin_layout Plain Layout
23218
23219 \end_layout
23220
23221 \end_inset
23222 </cell>
23223 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23224 \begin_inset Text
23225
23226 \begin_layout Plain Layout
23227 \begin_inset Formula $\mbox{€}$
23228 \end_inset
23229
23230
23231 \end_layout
23232
23233 \end_inset
23234 </cell>
23235 </row>
23236 <row>
23237 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
23238 \begin_inset Text
23239
23240 \begin_layout Plain Layout
23241 TeX-Modus
23242 \end_layout
23243
23244 \end_inset
23245 </cell>
23246 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
23247 \begin_inset Text
23248
23249 \begin_layout Plain Layout
23250
23251 \backslash
23252 officialeuro
23253 \end_layout
23254
23255 \end_inset
23256 </cell>
23257 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
23258 \begin_inset Text
23259
23260 \begin_layout Plain Layout
23261 \begin_inset ERT
23262 status collapsed
23263
23264 \begin_layout Plain Layout
23265
23266
23267 \backslash
23268 officialeuro
23269 \end_layout
23270
23271 \end_inset
23272
23273
23274 \end_layout
23275
23276 \end_inset
23277 </cell>
23278 </row>
23279 </lyxtabular>
23280
23281 \end_inset
23282
23283
23284 \end_layout
23285
23286 \begin_layout Standard
23287 \begin_inset ERT
23288 status collapsed
23289
23290 \begin_layout Plain Layout
23291
23292
23293 \backslash
23294 else 
23295 \end_layout
23296
23297 \end_inset
23298
23299
23300 \begin_inset Note Note
23301 status open
23302
23303 \begin_layout Plain Layout
23304 Folgendes erscheint im Ausdruck wenn das LaTeX-Paket 
23305 \series bold
23306 eurosym
23307 \series default
23308  nicht installiert ist:
23309 \end_layout
23310
23311 \end_inset
23312
23313
23314 \end_layout
23315
23316 \begin_layout Standard
23317 Das LaTeX-Paket 
23318 \series bold
23319 eurosym 
23320 \series default
23321 muss installiert sein, um den Rest dieses Abschnitts im Ausdruck zu sehen.
23322 \end_layout
23323
23324 \begin_layout Standard
23325 \begin_inset ERT
23326 status collapsed
23327
23328 \begin_layout Plain Layout
23329
23330
23331 \backslash
23332 fi 
23333 \end_layout
23334
23335 \end_inset
23336
23337
23338 \end_layout
23339
23340 \begin_layout Section
23341 Relationen
23342 \begin_inset CommandInset label
23343 LatexCommand label
23344 name "sec:Relationen"
23345
23346 \end_inset
23347
23348
23349 \begin_inset Index idx
23350 status collapsed
23351
23352 \begin_layout Plain Layout
23353 Relationen
23354 \end_layout
23355
23356 \end_inset
23357
23358
23359 \begin_inset Index idx
23360 status collapsed
23361
23362 \begin_layout Plain Layout
23363 Vergleiche|see
23364 \begin_inset ERT
23365 status collapsed
23366
23367 \begin_layout Plain Layout
23368
23369 {
23370 \end_layout
23371
23372 \end_inset
23373
23374 Relationen
23375 \begin_inset ERT
23376 status collapsed
23377
23378 \begin_layout Plain Layout
23379
23380 }
23381 \end_layout
23382
23383 \end_inset
23384
23385
23386 \end_layout
23387
23388 \end_inset
23389
23390
23391 \end_layout
23392
23393 \begin_layout Standard
23394 Alle griechischen Buchstaben können auch über den Mathe-Werkzeugleistenknopf
23395  
23396 \begin_inset Graphics
23397         filename ../../images/math/leq.png
23398         scale 85
23399
23400 \end_inset
23401
23402  eingefügt werden.
23403 \end_layout
23404
23405 \begin_layout Standard
23406 \begin_inset space \hfill{}
23407 \end_inset
23408
23409
23410 \begin_inset Tabular
23411 <lyxtabular version="3" rows="17" columns="2">
23412 <features tabularvalignment="middle">
23413 <column alignment="center" valignment="top" width="0pt">
23414 <column alignment="center" valignment="top" width="0pt">
23415 <row>
23416 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
23417 \begin_inset Text
23418
23419 \begin_layout Plain Layout
23420 Befehl
23421 \end_layout
23422
23423 \end_inset
23424 </cell>
23425 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
23426 \begin_inset Text
23427
23428 \begin_layout Plain Layout
23429 Ergebnis
23430 \end_layout
23431
23432 \end_inset
23433 </cell>
23434 </row>
23435 <row>
23436 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23437 \begin_inset Text
23438
23439 \begin_layout Plain Layout
23440 <
23441 \end_layout
23442
23443 \end_inset
23444 </cell>
23445 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23446 \begin_inset Text
23447
23448 \begin_layout Plain Layout
23449 \begin_inset Formula $<$
23450 \end_inset
23451
23452
23453 \end_layout
23454
23455 \end_inset
23456 </cell>
23457 </row>
23458 <row>
23459 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23460 \begin_inset Text
23461
23462 \begin_layout Plain Layout
23463
23464 \backslash
23465 le
23466 \end_layout
23467
23468 \end_inset
23469 </cell>
23470 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23471 \begin_inset Text
23472
23473 \begin_layout Plain Layout
23474 \begin_inset Formula $\le$
23475 \end_inset
23476
23477
23478 \end_layout
23479
23480 \end_inset
23481 </cell>
23482 </row>
23483 <row>
23484 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23485 \begin_inset Text
23486
23487 \begin_layout Plain Layout
23488
23489 \backslash
23490 ll
23491 \end_layout
23492
23493 \end_inset
23494 </cell>
23495 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23496 \begin_inset Text
23497
23498 \begin_layout Plain Layout
23499 \begin_inset Formula $\ll$
23500 \end_inset
23501
23502
23503 \end_layout
23504
23505 \end_inset
23506 </cell>
23507 </row>
23508 <row>
23509 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23510 \begin_inset Text
23511
23512 \begin_layout Plain Layout
23513
23514 \backslash
23515 prec
23516 \end_layout
23517
23518 \end_inset
23519 </cell>
23520 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23521 \begin_inset Text
23522
23523 \begin_layout Plain Layout
23524 \begin_inset Formula $\prec$
23525 \end_inset
23526
23527
23528 \end_layout
23529
23530 \end_inset
23531 </cell>
23532 </row>
23533 <row>
23534 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23535 \begin_inset Text
23536
23537 \begin_layout Plain Layout
23538
23539 \backslash
23540 preceq
23541 \end_layout
23542
23543 \end_inset
23544 </cell>
23545 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23546 \begin_inset Text
23547
23548 \begin_layout Plain Layout
23549 \begin_inset Formula $\preceq$
23550 \end_inset
23551
23552
23553 \end_layout
23554
23555 \end_inset
23556 </cell>
23557 </row>
23558 <row>
23559 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23560 \begin_inset Text
23561
23562 \begin_layout Plain Layout
23563
23564 \backslash
23565 subset
23566 \end_layout
23567
23568 \end_inset
23569 </cell>
23570 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23571 \begin_inset Text
23572
23573 \begin_layout Plain Layout
23574 \begin_inset Formula $\subset$
23575 \end_inset
23576
23577
23578 \end_layout
23579
23580 \end_inset
23581 </cell>
23582 </row>
23583 <row>
23584 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23585 \begin_inset Text
23586
23587 \begin_layout Plain Layout
23588
23589 \backslash
23590 subseteq
23591 \end_layout
23592
23593 \end_inset
23594 </cell>
23595 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23596 \begin_inset Text
23597
23598 \begin_layout Plain Layout
23599 \begin_inset Formula $\subseteq$
23600 \end_inset
23601
23602
23603 \end_layout
23604
23605 \end_inset
23606 </cell>
23607 </row>
23608 <row>
23609 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23610 \begin_inset Text
23611
23612 \begin_layout Plain Layout
23613
23614 \backslash
23615 sqsubseteq
23616 \end_layout
23617
23618 \end_inset
23619 </cell>
23620 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23621 \begin_inset Text
23622
23623 \begin_layout Plain Layout
23624 \begin_inset Formula $\sqsubseteq$
23625 \end_inset
23626
23627
23628 \end_layout
23629
23630 \end_inset
23631 </cell>
23632 </row>
23633 <row>
23634 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23635 \begin_inset Text
23636
23637 \begin_layout Plain Layout
23638
23639 \backslash
23640 in
23641 \end_layout
23642
23643 \end_inset
23644 </cell>
23645 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23646 \begin_inset Text
23647
23648 \begin_layout Plain Layout
23649 \begin_inset Formula $\in$
23650 \end_inset
23651
23652
23653 \end_layout
23654
23655 \end_inset
23656 </cell>
23657 </row>
23658 <row>
23659 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23660 \begin_inset Text
23661
23662 \begin_layout Plain Layout
23663
23664 \backslash
23665 vdash
23666 \end_layout
23667
23668 \end_inset
23669 </cell>
23670 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23671 \begin_inset Text
23672
23673 \begin_layout Plain Layout
23674 \begin_inset Formula $\vdash$
23675 \end_inset
23676
23677
23678 \end_layout
23679
23680 \end_inset
23681 </cell>
23682 </row>
23683 <row>
23684 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23685 \begin_inset Text
23686
23687 \begin_layout Plain Layout
23688
23689 \backslash
23690 smile
23691 \end_layout
23692
23693 \end_inset
23694 </cell>
23695 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23696 \begin_inset Text
23697
23698 \begin_layout Plain Layout
23699 \begin_inset Formula $\smile$
23700 \end_inset
23701
23702
23703 \end_layout
23704
23705 \end_inset
23706 </cell>
23707 </row>
23708 <row>
23709 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23710 \begin_inset Text
23711
23712 \begin_layout Plain Layout
23713
23714 \backslash
23715 lhd
23716 \end_layout
23717
23718 \end_inset
23719 </cell>
23720 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23721 \begin_inset Text
23722
23723 \begin_layout Plain Layout
23724 \begin_inset Formula $\lhd$
23725 \end_inset
23726
23727
23728 \end_layout
23729
23730 \end_inset
23731 </cell>
23732 </row>
23733 <row>
23734 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23735 \begin_inset Text
23736
23737 \begin_layout Plain Layout
23738
23739 \backslash
23740 unlhd
23741 \end_layout
23742
23743 \end_inset
23744 </cell>
23745 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23746 \begin_inset Text
23747
23748 \begin_layout Plain Layout
23749 \begin_inset Formula $\unlhd$
23750 \end_inset
23751
23752
23753 \end_layout
23754
23755 \end_inset
23756 </cell>
23757 </row>
23758 <row>
23759 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23760 \begin_inset Text
23761
23762 \begin_layout Plain Layout
23763
23764 \backslash
23765 gtrless
23766 \end_layout
23767
23768 \end_inset
23769 </cell>
23770 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23771 \begin_inset Text
23772
23773 \begin_layout Plain Layout
23774 \begin_inset Formula $\gtrless$
23775 \end_inset
23776
23777
23778 \end_layout
23779
23780 \end_inset
23781 </cell>
23782 </row>
23783 <row>
23784 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23785 \begin_inset Text
23786
23787 \begin_layout Plain Layout
23788
23789 \backslash
23790 mid
23791 \end_layout
23792
23793 \end_inset
23794 </cell>
23795 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23796 \begin_inset Text
23797
23798 \begin_layout Plain Layout
23799 \begin_inset Formula $\mid$
23800 \end_inset
23801
23802
23803 \end_layout
23804
23805 \end_inset
23806 </cell>
23807 </row>
23808 <row>
23809 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
23810 \begin_inset Text
23811
23812 \begin_layout Plain Layout
23813
23814 \backslash
23815 nmid
23816 \end_layout
23817
23818 \end_inset
23819 </cell>
23820 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
23821 \begin_inset Text
23822
23823 \begin_layout Plain Layout
23824 \begin_inset Formula $\nmid$
23825 \end_inset
23826
23827
23828 \end_layout
23829
23830 \end_inset
23831 </cell>
23832 </row>
23833 </lyxtabular>
23834
23835 \end_inset
23836
23837
23838 \begin_inset space \hfill{}
23839 \end_inset
23840
23841
23842 \begin_inset Tabular
23843 <lyxtabular version="3" rows="17" columns="2">
23844 <features tabularvalignment="middle">
23845 <column alignment="center" valignment="top" width="0pt">
23846 <column alignment="center" valignment="top" width="0pt">
23847 <row>
23848 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
23849 \begin_inset Text
23850
23851 \begin_layout Plain Layout
23852 Befehl
23853 \end_layout
23854
23855 \end_inset
23856 </cell>
23857 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
23858 \begin_inset Text
23859
23860 \begin_layout Plain Layout
23861 Ergebnis
23862 \end_layout
23863
23864 \end_inset
23865 </cell>
23866 </row>
23867 <row>
23868 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23869 \begin_inset Text
23870
23871 \begin_layout Plain Layout
23872 =
23873 \end_layout
23874
23875 \end_inset
23876 </cell>
23877 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23878 \begin_inset Text
23879
23880 \begin_layout Plain Layout
23881 \begin_inset Formula $=$
23882 \end_inset
23883
23884
23885 \end_layout
23886
23887 \end_inset
23888 </cell>
23889 </row>
23890 <row>
23891 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23892 \begin_inset Text
23893
23894 \begin_layout Plain Layout
23895
23896 \backslash
23897 not=
23898 \end_layout
23899
23900 \end_inset
23901 </cell>
23902 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23903 \begin_inset Text
23904
23905 \begin_layout Plain Layout
23906 \begin_inset Formula $\not=$
23907 \end_inset
23908
23909
23910 \end_layout
23911
23912 \end_inset
23913 </cell>
23914 </row>
23915 <row>
23916 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23917 \begin_inset Text
23918
23919 \begin_layout Plain Layout
23920
23921 \backslash
23922 equiv
23923 \end_layout
23924
23925 \end_inset
23926 </cell>
23927 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23928 \begin_inset Text
23929
23930 \begin_layout Plain Layout
23931 \begin_inset Formula $\equiv$
23932 \end_inset
23933
23934
23935 \end_layout
23936
23937 \end_inset
23938 </cell>
23939 </row>
23940 <row>
23941 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23942 \begin_inset Text
23943
23944 \begin_layout Plain Layout
23945
23946 \backslash
23947 sim
23948 \end_layout
23949
23950 \end_inset
23951 </cell>
23952 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23953 \begin_inset Text
23954
23955 \begin_layout Plain Layout
23956 \begin_inset Formula $\sim$
23957 \end_inset
23958
23959
23960 \end_layout
23961
23962 \end_inset
23963 </cell>
23964 </row>
23965 <row>
23966 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23967 \begin_inset Text
23968
23969 \begin_layout Plain Layout
23970
23971 \backslash
23972 simeq
23973 \end_layout
23974
23975 \end_inset
23976 </cell>
23977 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23978 \begin_inset Text
23979
23980 \begin_layout Plain Layout
23981 \begin_inset Formula $\simeq$
23982 \end_inset
23983
23984
23985 \end_layout
23986
23987 \end_inset
23988 </cell>
23989 </row>
23990 <row>
23991 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23992 \begin_inset Text
23993
23994 \begin_layout Plain Layout
23995
23996 \backslash
23997 approx
23998 \end_layout
23999
24000 \end_inset
24001 </cell>
24002 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24003 \begin_inset Text
24004
24005 \begin_layout Plain Layout
24006 \begin_inset Formula $\approx$
24007 \end_inset
24008
24009
24010 \end_layout
24011
24012 \end_inset
24013 </cell>
24014 </row>
24015 <row>
24016 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24017 \begin_inset Text
24018
24019 \begin_layout Plain Layout
24020
24021 \backslash
24022 cong
24023 \end_layout
24024
24025 \end_inset
24026 </cell>
24027 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24028 \begin_inset Text
24029
24030 \begin_layout Plain Layout
24031 \begin_inset Formula $\cong$
24032 \end_inset
24033
24034
24035 \end_layout
24036
24037 \end_inset
24038 </cell>
24039 </row>
24040 <row>
24041 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24042 \begin_inset Text
24043
24044 \begin_layout Plain Layout
24045
24046 \backslash
24047 bowtie
24048 \end_layout
24049
24050 \end_inset
24051 </cell>
24052 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24053 \begin_inset Text
24054
24055 \begin_layout Plain Layout
24056 \begin_inset Formula $\bowtie$
24057 \end_inset
24058
24059
24060 \end_layout
24061
24062 \end_inset
24063 </cell>
24064 </row>
24065 <row>
24066 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24067 \begin_inset Text
24068
24069 \begin_layout Plain Layout
24070
24071 \backslash
24072 notin
24073 \end_layout
24074
24075 \end_inset
24076 </cell>
24077 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24078 \begin_inset Text
24079
24080 \begin_layout Plain Layout
24081 \begin_inset Formula $\notin$
24082 \end_inset
24083
24084
24085 \end_layout
24086
24087 \end_inset
24088 </cell>
24089 </row>
24090 <row>
24091 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24092 \begin_inset Text
24093
24094 \begin_layout Plain Layout
24095
24096 \backslash
24097 perp
24098 \end_layout
24099
24100 \end_inset
24101 </cell>
24102 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24103 \begin_inset Text
24104
24105 \begin_layout Plain Layout
24106 \begin_inset Formula $\perp$
24107 \end_inset
24108
24109
24110 \end_layout
24111
24112 \end_inset
24113 </cell>
24114 </row>
24115 <row>
24116 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24117 \begin_inset Text
24118
24119 \begin_layout Plain Layout
24120
24121 \backslash
24122 propto
24123 \end_layout
24124
24125 \end_inset
24126 </cell>
24127 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24128 \begin_inset Text
24129
24130 \begin_layout Plain Layout
24131 \begin_inset Formula $\propto$
24132 \end_inset
24133
24134
24135 \end_layout
24136
24137 \end_inset
24138 </cell>
24139 </row>
24140 <row>
24141 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24142 \begin_inset Text
24143
24144 \begin_layout Plain Layout
24145
24146 \backslash
24147 asymp
24148 \end_layout
24149
24150 \end_inset
24151 </cell>
24152 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24153 \begin_inset Text
24154
24155 \begin_layout Plain Layout
24156 \begin_inset Formula $\asymp$
24157 \end_inset
24158
24159
24160 \end_layout
24161
24162 \end_inset
24163 </cell>
24164 </row>
24165 <row>
24166 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24167 \begin_inset Text
24168
24169 \begin_layout Plain Layout
24170
24171 \backslash
24172 doteq
24173 \end_layout
24174
24175 \end_inset
24176 </cell>
24177 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24178 \begin_inset Text
24179
24180 \begin_layout Plain Layout
24181 \begin_inset Formula $\doteq$
24182 \end_inset
24183
24184
24185 \end_layout
24186
24187 \end_inset
24188 </cell>
24189 </row>
24190 <row>
24191 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24192 \begin_inset Text
24193
24194 \begin_layout Plain Layout
24195
24196 \backslash
24197 circeq
24198 \end_layout
24199
24200 \end_inset
24201 </cell>
24202 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24203 \begin_inset Text
24204
24205 \begin_layout Plain Layout
24206 \begin_inset Formula $\circeq$
24207 \end_inset
24208
24209
24210 \end_layout
24211
24212 \end_inset
24213 </cell>
24214 </row>
24215 <row>
24216 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24217 \begin_inset Text
24218
24219 \begin_layout Plain Layout
24220
24221 \backslash
24222 models
24223 \end_layout
24224
24225 \end_inset
24226 </cell>
24227 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24228 \begin_inset Text
24229
24230 \begin_layout Plain Layout
24231 \begin_inset Formula $\models$
24232 \end_inset
24233
24234
24235 \end_layout
24236
24237 \end_inset
24238 </cell>
24239 </row>
24240 <row>
24241 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24242 \begin_inset Text
24243
24244 \begin_layout Plain Layout
24245
24246 \backslash
24247 widehat=
24248 \end_layout
24249
24250 \end_inset
24251 </cell>
24252 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
24253 \begin_inset Text
24254
24255 \begin_layout Plain Layout
24256 \begin_inset Formula $\widehat{=}$
24257 \end_inset
24258
24259
24260 \end_layout
24261
24262 \end_inset
24263 </cell>
24264 </row>
24265 </lyxtabular>
24266
24267 \end_inset
24268
24269
24270 \begin_inset space \hfill{}
24271 \end_inset
24272
24273
24274 \begin_inset Tabular
24275 <lyxtabular version="3" rows="17" columns="2">
24276 <features tabularvalignment="middle">
24277 <column alignment="center" valignment="top" width="0pt">
24278 <column alignment="center" valignment="top" width="0pt">
24279 <row>
24280 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24281 \begin_inset Text
24282
24283 \begin_layout Plain Layout
24284 Befehl
24285 \end_layout
24286
24287 \end_inset
24288 </cell>
24289 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
24290 \begin_inset Text
24291
24292 \begin_layout Plain Layout
24293 Ergebnis
24294 \end_layout
24295
24296 \end_inset
24297 </cell>
24298 </row>
24299 <row>
24300 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24301 \begin_inset Text
24302
24303 \begin_layout Plain Layout
24304 >
24305 \end_layout
24306
24307 \end_inset
24308 </cell>
24309 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24310 \begin_inset Text
24311
24312 \begin_layout Plain Layout
24313 \begin_inset Formula $>$
24314 \end_inset
24315
24316
24317 \end_layout
24318
24319 \end_inset
24320 </cell>
24321 </row>
24322 <row>
24323 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24324 \begin_inset Text
24325
24326 \begin_layout Plain Layout
24327
24328 \backslash
24329 ge
24330 \end_layout
24331
24332 \end_inset
24333 </cell>
24334 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24335 \begin_inset Text
24336
24337 \begin_layout Plain Layout
24338 \begin_inset Formula $\ge$
24339 \end_inset
24340
24341
24342 \end_layout
24343
24344 \end_inset
24345 </cell>
24346 </row>
24347 <row>
24348 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24349 \begin_inset Text
24350
24351 \begin_layout Plain Layout
24352
24353 \backslash
24354 gg
24355 \end_layout
24356
24357 \end_inset
24358 </cell>
24359 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24360 \begin_inset Text
24361
24362 \begin_layout Plain Layout
24363 \begin_inset Formula $\gg$
24364 \end_inset
24365
24366
24367 \end_layout
24368
24369 \end_inset
24370 </cell>
24371 </row>
24372 <row>
24373 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24374 \begin_inset Text
24375
24376 \begin_layout Plain Layout
24377
24378 \backslash
24379 succ
24380 \end_layout
24381
24382 \end_inset
24383 </cell>
24384 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24385 \begin_inset Text
24386
24387 \begin_layout Plain Layout
24388 \begin_inset Formula $\succ$
24389 \end_inset
24390
24391
24392 \end_layout
24393
24394 \end_inset
24395 </cell>
24396 </row>
24397 <row>
24398 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24399 \begin_inset Text
24400
24401 \begin_layout Plain Layout
24402
24403 \backslash
24404 succeq
24405 \end_layout
24406
24407 \end_inset
24408 </cell>
24409 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24410 \begin_inset Text
24411
24412 \begin_layout Plain Layout
24413 \begin_inset Formula $\succeq$
24414 \end_inset
24415
24416
24417 \end_layout
24418
24419 \end_inset
24420 </cell>
24421 </row>
24422 <row>
24423 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24424 \begin_inset Text
24425
24426 \begin_layout Plain Layout
24427
24428 \backslash
24429 supset
24430 \end_layout
24431
24432 \end_inset
24433 </cell>
24434 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24435 \begin_inset Text
24436
24437 \begin_layout Plain Layout
24438 \begin_inset Formula $\supset$
24439 \end_inset
24440
24441
24442 \end_layout
24443
24444 \end_inset
24445 </cell>
24446 </row>
24447 <row>
24448 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24449 \begin_inset Text
24450
24451 \begin_layout Plain Layout
24452
24453 \backslash
24454 supseteq
24455 \end_layout
24456
24457 \end_inset
24458 </cell>
24459 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24460 \begin_inset Text
24461
24462 \begin_layout Plain Layout
24463 \begin_inset Formula $\supseteq$
24464 \end_inset
24465
24466
24467 \end_layout
24468
24469 \end_inset
24470 </cell>
24471 </row>
24472 <row>
24473 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24474 \begin_inset Text
24475
24476 \begin_layout Plain Layout
24477
24478 \backslash
24479 sqsupseteq
24480 \end_layout
24481
24482 \end_inset
24483 </cell>
24484 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24485 \begin_inset Text
24486
24487 \begin_layout Plain Layout
24488 \begin_inset Formula $\sqsupseteq$
24489 \end_inset
24490
24491
24492 \end_layout
24493
24494 \end_inset
24495 </cell>
24496 </row>
24497 <row>
24498 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24499 \begin_inset Text
24500
24501 \begin_layout Plain Layout
24502
24503 \backslash
24504 ni
24505 \end_layout
24506
24507 \end_inset
24508 </cell>
24509 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24510 \begin_inset Text
24511
24512 \begin_layout Plain Layout
24513 \begin_inset Formula $\ni$
24514 \end_inset
24515
24516
24517 \end_layout
24518
24519 \end_inset
24520 </cell>
24521 </row>
24522 <row>
24523 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24524 \begin_inset Text
24525
24526 \begin_layout Plain Layout
24527
24528 \backslash
24529 dashv
24530 \end_layout
24531
24532 \end_inset
24533 </cell>
24534 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24535 \begin_inset Text
24536
24537 \begin_layout Plain Layout
24538 \begin_inset Formula $\dashv$
24539 \end_inset
24540
24541
24542 \end_layout
24543
24544 \end_inset
24545 </cell>
24546 </row>
24547 <row>
24548 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24549 \begin_inset Text
24550
24551 \begin_layout Plain Layout
24552
24553 \backslash
24554 frown
24555 \end_layout
24556
24557 \end_inset
24558 </cell>
24559 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24560 \begin_inset Text
24561
24562 \begin_layout Plain Layout
24563 \begin_inset Formula $\frown$
24564 \end_inset
24565
24566
24567 \end_layout
24568
24569 \end_inset
24570 </cell>
24571 </row>
24572 <row>
24573 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24574 \begin_inset Text
24575
24576 \begin_layout Plain Layout
24577
24578 \backslash
24579 rhd
24580 \end_layout
24581
24582 \end_inset
24583 </cell>
24584 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24585 \begin_inset Text
24586
24587 \begin_layout Plain Layout
24588 \begin_inset Formula $\rhd$
24589 \end_inset
24590
24591
24592 \end_layout
24593
24594 \end_inset
24595 </cell>
24596 </row>
24597 <row>
24598 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24599 \begin_inset Text
24600
24601 \begin_layout Plain Layout
24602
24603 \backslash
24604 unrhd
24605 \end_layout
24606
24607 \end_inset
24608 </cell>
24609 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24610 \begin_inset Text
24611
24612 \begin_layout Plain Layout
24613 \begin_inset Formula $\unrhd$
24614 \end_inset
24615
24616
24617 \end_layout
24618
24619 \end_inset
24620 </cell>
24621 </row>
24622 <row>
24623 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24624 \begin_inset Text
24625
24626 \begin_layout Plain Layout
24627
24628 \backslash
24629 lessgtr
24630 \end_layout
24631
24632 \end_inset
24633 </cell>
24634 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24635 \begin_inset Text
24636
24637 \begin_layout Plain Layout
24638 \begin_inset Formula $\lessgtr$
24639 \end_inset
24640
24641
24642 \end_layout
24643
24644 \end_inset
24645 </cell>
24646 </row>
24647 <row>
24648 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24649 \begin_inset Text
24650
24651 \begin_layout Plain Layout
24652
24653 \backslash
24654 parallel
24655 \end_layout
24656
24657 \end_inset
24658 </cell>
24659 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24660 \begin_inset Text
24661
24662 \begin_layout Plain Layout
24663 \begin_inset Formula $\parallel$
24664 \end_inset
24665
24666
24667 \end_layout
24668
24669 \end_inset
24670 </cell>
24671 </row>
24672 <row>
24673 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24674 \begin_inset Text
24675
24676 \begin_layout Plain Layout
24677
24678 \backslash
24679 nparallel
24680 \end_layout
24681
24682 \end_inset
24683 </cell>
24684 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
24685 \begin_inset Text
24686
24687 \begin_layout Plain Layout
24688 \begin_inset Formula $\nparallel$
24689 \end_inset
24690
24691
24692 \end_layout
24693
24694 \end_inset
24695 </cell>
24696 </row>
24697 </lyxtabular>
24698
24699 \end_inset
24700
24701
24702 \begin_inset space \hfill{}
24703 \end_inset
24704
24705
24706 \end_layout
24707
24708 \begin_layout Standard
24709 \begin_inset VSpace medskip
24710 \end_inset
24711
24712 Die Zeichen 
24713 \series bold
24714
24715 \backslash
24716 lhd
24717 \series default
24718  bzw.
24719  
24720 \series bold
24721
24722 \backslash
24723 rhd
24724 \series default
24725  sind größer als die gleich aussehenden Operatoren
24726 \begin_inset Newline linebreak
24727 \end_inset
24728
24729
24730 \series bold
24731
24732 \backslash
24733 triangleleft
24734 \series default
24735  bzw.
24736  
24737 \series bold
24738
24739 \backslash
24740 triangleright
24741 \series default
24742 .
24743 \end_layout
24744
24745 \begin_layout Standard
24746 Relationen sind im Gegensatz zu Symbolen immer von Leerraum umgeben.
24747 \end_layout
24748
24749 \begin_layout Standard
24750 Relationen mit Beschriftungen können mit Hilfe des Befehls 
24751 \series bold
24752
24753 \backslash
24754 stackrel
24755 \series default
24756
24757 \begin_inset Index idx
24758 status collapsed
24759
24760 \begin_layout Plain Layout
24761 Befehle ! S ! 
24762 \backslash
24763 stackrel
24764 \end_layout
24765
24766 \end_inset
24767
24768  erstellt werden:
24769 \end_layout
24770
24771 \begin_layout Standard
24772 \align center
24773 \begin_inset Tabular
24774 <lyxtabular version="3" rows="2" columns="2">
24775 <features tabularvalignment="middle">
24776 <column alignment="center" valignment="top" width="0">
24777 <column alignment="center" valignment="top" width="0">
24778 <row>
24779 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24780 \begin_inset Text
24781
24782 \begin_layout Plain Layout
24783 Befehl
24784 \end_layout
24785
24786 \end_inset
24787 </cell>
24788 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
24789 \begin_inset Text
24790
24791 \begin_layout Plain Layout
24792 Ergebnis
24793 \begin_inset Note Note
24794 status collapsed
24795
24796 \begin_layout Plain Layout
24797
24798 \series bold
24799
24800 \backslash
24801 raisebox
24802 \series default
24803  dient nur als Abstandhalter.
24804 \end_layout
24805
24806 \end_inset
24807
24808
24809 \end_layout
24810
24811 \end_inset
24812 </cell>
24813 </row>
24814 <row>
24815 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24816 \begin_inset Text
24817
24818 \begin_layout Plain Layout
24819 A(r)
24820 \backslash
24821 stackrel
24822 \begin_inset ERT
24823 status collapsed
24824
24825 \begin_layout Plain Layout
24826
24827
24828 \backslash
24829 leer 
24830 \end_layout
24831
24832 \end_inset
24833
24834 r
24835 \backslash
24836 to
24837 \backslash
24838 infty
24839 \begin_inset ERT
24840 status collapsed
24841
24842 \begin_layout Plain Layout
24843
24844
24845 \backslash
24846 leer 
24847 \end_layout
24848
24849 \end_inset
24850
24851
24852 \begin_inset Formula $\downarrow$
24853 \end_inset
24854
24855
24856 \backslash
24857 approx
24858 \begin_inset ERT
24859 status collapsed
24860
24861 \begin_layout Plain Layout
24862
24863
24864 \backslash
24865 leer 
24866 \end_layout
24867
24868 \end_inset
24869
24870
24871 \begin_inset ERT
24872 status collapsed
24873
24874 \begin_layout Plain Layout
24875
24876
24877 \backslash
24878 leer 
24879 \end_layout
24880
24881 \end_inset
24882
24883 B
24884 \end_layout
24885
24886 \end_inset
24887 </cell>
24888 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
24889 \begin_inset Text
24890
24891 \begin_layout Plain Layout
24892 \begin_inset Formula $\raisebox{5mm}{}A(r)\stackrel{r\to\infty}{\approx}B$
24893 \end_inset
24894
24895
24896 \end_layout
24897
24898 \end_inset
24899 </cell>
24900 </row>
24901 </lyxtabular>
24902
24903 \end_inset
24904
24905
24906 \end_layout
24907
24908 \begin_layout Section
24909 Funktionen
24910 \end_layout
24911
24912 \begin_layout Subsection
24913 Vordefinierte Funktionen
24914 \begin_inset CommandInset label
24915 LatexCommand label
24916 name "sub:Vordefinierte-Funktionen"
24917
24918 \end_inset
24919
24920
24921 \begin_inset Index idx
24922 status collapsed
24923
24924 \begin_layout Plain Layout
24925 Funktionen ! vordefinierte
24926 \end_layout
24927
24928 \end_inset
24929
24930
24931 \end_layout
24932
24933 \begin_layout Standard
24934 Allgemein werden in mathematischen Ausdrücken Variablen 
24935 \shape italic
24936 kursiv
24937 \shape default
24938  gesetzt, Funktionsnamen hingegen nicht, denn 
24939 \begin_inset Formula $sin$
24940 \end_inset
24941
24942  könnte als 
24943 \begin_inset Formula $s\cdot i\cdot n$
24944 \end_inset
24945
24946  missverstanden werden.
24947  Aus diesem Grund gibt es vordefinierte Funktionen, die zusätzlich von Vorfaktor
24948 en etwas abgesetzt sind.
24949  Sie werden als Befehle mit einem Backslash vor dem Funktionsnamen eingefügt.
24950 \end_layout
24951
24952 \begin_layout Standard
24953 \align center
24954 \begin_inset Tabular
24955 <lyxtabular version="3" rows="2" columns="4">
24956 <features tabularvalignment="middle">
24957 <column alignment="center" valignment="top" width="0pt">
24958 <column alignment="center" valignment="top" width="0pt">
24959 <column alignment="center" valignment="top" width="0pt">
24960 <column alignment="center" valignment="top" width="0pt">
24961 <row>
24962 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24963 \begin_inset Text
24964
24965 \begin_layout Plain Layout
24966 Befehl
24967 \end_layout
24968
24969 \end_inset
24970 </cell>
24971 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
24972 \begin_inset Text
24973
24974 \begin_layout Plain Layout
24975 Ergebnis
24976 \end_layout
24977
24978 \end_inset
24979 </cell>
24980 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24981 \begin_inset Text
24982
24983 \begin_layout Plain Layout
24984 Befehl
24985 \end_layout
24986
24987 \end_inset
24988 </cell>
24989 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
24990 \begin_inset Text
24991
24992 \begin_layout Plain Layout
24993 Ergebnis
24994 \end_layout
24995
24996 \end_inset
24997 </cell>
24998 </row>
24999 <row>
25000 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25001 \begin_inset Text
25002
25003 \begin_layout Plain Layout
25004 Asin(x)+B
25005 \end_layout
25006
25007 \end_inset
25008 </cell>
25009 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
25010 \begin_inset Text
25011
25012 \begin_layout Plain Layout
25013 \begin_inset Formula $Asin(x)+B$
25014 \end_inset
25015
25016
25017 \end_layout
25018
25019 \end_inset
25020 </cell>
25021 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25022 \begin_inset Text
25023
25024 \begin_layout Plain Layout
25025 A
25026 \backslash
25027 sin(x)+B
25028 \end_layout
25029
25030 \end_inset
25031 </cell>
25032 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
25033 \begin_inset Text
25034
25035 \begin_layout Plain Layout
25036 \begin_inset Formula $A\sin(x)+B$
25037 \end_inset
25038
25039
25040 \end_layout
25041
25042 \end_inset
25043 </cell>
25044 </row>
25045 </lyxtabular>
25046
25047 \end_inset
25048
25049
25050 \end_layout
25051
25052 \begin_layout Standard
25053 Folgende Funktionen sind vordefiniert:
25054 \end_layout
25055
25056 \begin_layout Standard
25057 \begin_inset VSpace -2mm
25058 \end_inset
25059
25060
25061 \end_layout
25062
25063 \begin_layout Standard
25064 \align center
25065 \begin_inset Tabular
25066 <lyxtabular version="3" rows="9" columns="4">
25067 <features tabularvalignment="middle">
25068 <column alignment="center" valignment="top" width="0pt">
25069 <column alignment="center" valignment="top" width="0pt">
25070 <column alignment="center" valignment="top" width="0pt">
25071 <column alignment="center" valignment="top" width="0pt">
25072 <row>
25073 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25074 \begin_inset Text
25075
25076 \begin_layout Plain Layout
25077 Befehl
25078 \end_layout
25079
25080 \end_inset
25081 </cell>
25082 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25083 \begin_inset Text
25084
25085 \begin_layout Plain Layout
25086 Befehl
25087 \end_layout
25088
25089 \end_inset
25090 </cell>
25091 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25092 \begin_inset Text
25093
25094 \begin_layout Plain Layout
25095 Befehl
25096 \end_layout
25097
25098 \end_inset
25099 </cell>
25100 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
25101 \begin_inset Text
25102
25103 \begin_layout Plain Layout
25104 Befehl
25105 \end_layout
25106
25107 \end_inset
25108 </cell>
25109 </row>
25110 <row>
25111 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25112 \begin_inset Text
25113
25114 \begin_layout Plain Layout
25115
25116 \backslash
25117 sin
25118 \end_layout
25119
25120 \end_inset
25121 </cell>
25122 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25123 \begin_inset Text
25124
25125 \begin_layout Plain Layout
25126
25127 \backslash
25128 sinh
25129 \end_layout
25130
25131 \end_inset
25132 </cell>
25133 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25134 \begin_inset Text
25135
25136 \begin_layout Plain Layout
25137
25138 \backslash
25139 arcsin
25140 \end_layout
25141
25142 \end_inset
25143 </cell>
25144 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25145 \begin_inset Text
25146
25147 \begin_layout Plain Layout
25148
25149 \backslash
25150 sup
25151 \end_layout
25152
25153 \end_inset
25154 </cell>
25155 </row>
25156 <row>
25157 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25158 \begin_inset Text
25159
25160 \begin_layout Plain Layout
25161
25162 \backslash
25163 cos
25164 \end_layout
25165
25166 \end_inset
25167 </cell>
25168 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25169 \begin_inset Text
25170
25171 \begin_layout Plain Layout
25172
25173 \backslash
25174 cosh
25175 \end_layout
25176
25177 \end_inset
25178 </cell>
25179 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25180 \begin_inset Text
25181
25182 \begin_layout Plain Layout
25183
25184 \backslash
25185 arccos
25186 \end_layout
25187
25188 \end_inset
25189 </cell>
25190 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25191 \begin_inset Text
25192
25193 \begin_layout Plain Layout
25194
25195 \backslash
25196 inf
25197 \end_layout
25198
25199 \end_inset
25200 </cell>
25201 </row>
25202 <row>
25203 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25204 \begin_inset Text
25205
25206 \begin_layout Plain Layout
25207
25208 \backslash
25209 tan
25210 \end_layout
25211
25212 \end_inset
25213 </cell>
25214 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25215 \begin_inset Text
25216
25217 \begin_layout Plain Layout
25218
25219 \backslash
25220 tanh
25221 \end_layout
25222
25223 \end_inset
25224 </cell>
25225 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25226 \begin_inset Text
25227
25228 \begin_layout Plain Layout
25229
25230 \backslash
25231 arctan
25232 \end_layout
25233
25234 \end_inset
25235 </cell>
25236 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25237 \begin_inset Text
25238
25239 \begin_layout Plain Layout
25240
25241 \backslash
25242 lim
25243 \end_layout
25244
25245 \end_inset
25246 </cell>
25247 </row>
25248 <row>
25249 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25250 \begin_inset Text
25251
25252 \begin_layout Plain Layout
25253
25254 \backslash
25255 cot
25256 \end_layout
25257
25258 \end_inset
25259 </cell>
25260 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25261 \begin_inset Text
25262
25263 \begin_layout Plain Layout
25264
25265 \backslash
25266 coth
25267 \end_layout
25268
25269 \end_inset
25270 </cell>
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 arg
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
25287 \backslash
25288 liminf
25289 \end_layout
25290
25291 \end_inset
25292 </cell>
25293 </row>
25294 <row>
25295 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25296 \begin_inset Text
25297
25298 \begin_layout Plain Layout
25299
25300 \backslash
25301 sec
25302 \end_layout
25303
25304 \end_inset
25305 </cell>
25306 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25307 \begin_inset Text
25308
25309 \begin_layout Plain Layout
25310
25311 \backslash
25312 min
25313 \end_layout
25314
25315 \end_inset
25316 </cell>
25317 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25318 \begin_inset Text
25319
25320 \begin_layout Plain Layout
25321
25322 \backslash
25323 deg
25324 \end_layout
25325
25326 \end_inset
25327 </cell>
25328 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25329 \begin_inset Text
25330
25331 \begin_layout Plain Layout
25332
25333 \backslash
25334 limsup
25335 \end_layout
25336
25337 \end_inset
25338 </cell>
25339 </row>
25340 <row>
25341 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25342 \begin_inset Text
25343
25344 \begin_layout Plain Layout
25345
25346 \backslash
25347 csc
25348 \end_layout
25349
25350 \end_inset
25351 </cell>
25352 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25353 \begin_inset Text
25354
25355 \begin_layout Plain Layout
25356
25357 \backslash
25358 max
25359 \end_layout
25360
25361 \end_inset
25362 </cell>
25363 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25364 \begin_inset Text
25365
25366 \begin_layout Plain Layout
25367
25368 \backslash
25369 det
25370 \end_layout
25371
25372 \end_inset
25373 </cell>
25374 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25375 \begin_inset Text
25376
25377 \begin_layout Plain Layout
25378
25379 \backslash
25380 Pr
25381 \end_layout
25382
25383 \end_inset
25384 </cell>
25385 </row>
25386 <row>
25387 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25388 \begin_inset Text
25389
25390 \begin_layout Plain Layout
25391
25392 \backslash
25393 ln
25394 \end_layout
25395
25396 \end_inset
25397 </cell>
25398 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25399 \begin_inset Text
25400
25401 \begin_layout Plain Layout
25402
25403 \backslash
25404 exp
25405 \end_layout
25406
25407 \end_inset
25408 </cell>
25409 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25410 \begin_inset Text
25411
25412 \begin_layout Plain Layout
25413
25414 \backslash
25415 dim
25416 \end_layout
25417
25418 \end_inset
25419 </cell>
25420 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25421 \begin_inset Text
25422
25423 \begin_layout Plain Layout
25424
25425 \backslash
25426 hom
25427 \end_layout
25428
25429 \end_inset
25430 </cell>
25431 </row>
25432 <row>
25433 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25434 \begin_inset Text
25435
25436 \begin_layout Plain Layout
25437
25438 \backslash
25439 lg
25440 \end_layout
25441
25442 \end_inset
25443 </cell>
25444 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25445 \begin_inset Text
25446
25447 \begin_layout Plain Layout
25448
25449 \backslash
25450 log
25451 \end_layout
25452
25453 \end_inset
25454 </cell>
25455 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25456 \begin_inset Text
25457
25458 \begin_layout Plain Layout
25459
25460 \backslash
25461 ker
25462 \end_layout
25463
25464 \end_inset
25465 </cell>
25466 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
25467 \begin_inset Text
25468
25469 \begin_layout Plain Layout
25470
25471 \backslash
25472 gcd
25473 \end_layout
25474
25475 \end_inset
25476 </cell>
25477 </row>
25478 </lyxtabular>
25479
25480 \end_inset
25481
25482
25483 \end_layout
25484
25485 \begin_layout Standard
25486 Sie können auch über den Mathe-Werkzeugleistenknopf 
25487 \begin_inset Graphics
25488         filename ../../images/math/functions.png
25489         scale 85
25490
25491 \end_inset
25492
25493  eingefügt werden.
25494 \end_layout
25495
25496 \begin_layout Subsection
25497 Selbst definierte Funktionen
25498 \begin_inset Index idx
25499 status collapsed
25500
25501 \begin_layout Plain Layout
25502 Funktionen ! selbstdefinierte
25503 \end_layout
25504
25505 \end_inset
25506
25507
25508 \end_layout
25509
25510 \begin_layout Standard
25511 Will man eine Funktion verwenden, die nicht vordefiniert ist, wie z.
25512 \begin_inset space \thinspace{}
25513 \end_inset
25514
25515 B.
25516  die Signumfunktion sgn(x), hat man zwei Möglichkeiten:
25517 \end_layout
25518
25519 \begin_layout Itemize
25520 Man definiert die Funktion selbst.
25521  Dazu gibt man im LaTeX-Vorspann die Zeile
25522 \begin_inset Newline newline
25523 \end_inset
25524
25525
25526 \begin_inset VSpace -3mm
25527 \end_inset
25528
25529
25530 \begin_inset Newline newline
25531 \end_inset
25532
25533
25534 \series bold
25535
25536 \backslash
25537 DeclareMathOperator{
25538 \backslash
25539 sgn}{sgn}
25540 \series default
25541
25542 \begin_inset Index idx
25543 status collapsed
25544
25545 \begin_layout Plain Layout
25546 Befehle ! D ! 
25547 \backslash
25548 dbinom@
25549 \backslash
25550 DeclareMathOperator
25551 \end_layout
25552
25553 \end_inset
25554
25555
25556 \begin_inset Newline newline
25557 \end_inset
25558
25559
25560 \begin_inset VSpace -2mm
25561 \end_inset
25562
25563
25564 \begin_inset Newline newline
25565 \end_inset
25566
25567 ein
25568 \begin_inset Foot
25569 status collapsed
25570
25571 \begin_layout Plain Layout
25572 Näheres zu 
25573 \series bold
25574
25575 \backslash
25576 DeclareMathOperator
25577 \series default
25578  siehe 
25579 \begin_inset CommandInset ref
25580 LatexCommand ref
25581 reference "sub:Selbstdefinierte-Operatoren"
25582
25583 \end_inset
25584
25585 .
25586 \end_layout
25587
25588 \end_inset
25589
25590 .
25591  Nun kann man mit dem Befehl 
25592 \series bold
25593
25594 \backslash
25595 sgn
25596 \series default
25597  die neu definierte Funktion aufrufen.
25598 \end_layout
25599
25600 \begin_layout Itemize
25601 Man schreibt die Formel wie gewohnt, markiert den Formelnamen, also in unserem
25602  Beispiel die Buchstaben 
25603 \emph on
25604 sgn
25605 \emph default
25606 , und wandelt ihn in in mathematischen Text um.
25607  Zwischen Vorfaktor und Funktion fügt man einen kleinen Leerraum ein.
25608 \end_layout
25609
25610 \begin_layout Standard
25611 Das Ergebnis ist bei beiden Methoden dasselbe wie bei einer vordefinierten
25612  Funktion
25613 \begin_inset Foot
25614 status collapsed
25615
25616 \begin_layout Plain Layout
25617 Selbst definierte Funktionen werden in LyX rot, vordefinierte schwarz angezeigt.
25618 \end_layout
25619
25620 \end_inset
25621
25622 :
25623 \end_layout
25624
25625 \begin_layout Standard
25626 \align center
25627 \begin_inset Tabular
25628 <lyxtabular version="3" rows="3" columns="2">
25629 <features tabularvalignment="middle">
25630 <column alignment="center" valignment="top" width="0pt">
25631 <column alignment="center" valignment="top" width="0pt">
25632 <row>
25633 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25634 \begin_inset Text
25635
25636 \begin_layout Plain Layout
25637 Befehl
25638 \end_layout
25639
25640 \end_inset
25641 </cell>
25642 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
25643 \begin_inset Text
25644
25645 \begin_layout Plain Layout
25646 Ergebnis
25647 \end_layout
25648
25649 \end_inset
25650 </cell>
25651 </row>
25652 <row>
25653 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25654 \begin_inset Text
25655
25656 \begin_layout Plain Layout
25657 A
25658 \backslash
25659 sgn(x)+B
25660 \end_layout
25661
25662 \end_inset
25663 </cell>
25664 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
25665 \begin_inset Text
25666
25667 \begin_layout Plain Layout
25668 \begin_inset Formula $A\sgn(x)+B$
25669 \end_inset
25670
25671
25672 \end_layout
25673
25674 \end_inset
25675 </cell>
25676 </row>
25677 <row>
25678 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25679 \begin_inset Text
25680
25681 \begin_layout Plain Layout
25682 A
25683 \backslash
25684 ,
25685 \begin_inset Formula $\underbrace{\textrm{sgn}}_{\textrm{Alt-m}\,\textrm{m}}$
25686 \end_inset
25687
25688 (x)+B
25689 \end_layout
25690
25691 \end_inset
25692 </cell>
25693 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
25694 \begin_inset Text
25695
25696 \begin_layout Plain Layout
25697 \begin_inset Formula $A\,\textrm{sgn}(x)+B$
25698 \end_inset
25699
25700
25701 \end_layout
25702
25703 \end_inset
25704 </cell>
25705 </row>
25706 </lyxtabular>
25707
25708 \end_inset
25709
25710
25711 \end_layout
25712
25713 \begin_layout Standard
25714 Die erste Methode ist besser geeignet, wenn die selbst definierte Funktion
25715  mehrfach verwendet werden soll.
25716 \end_layout
25717
25718 \begin_layout Subsection
25719 Grenzwerte
25720 \begin_inset Index idx
25721 status collapsed
25722
25723 \begin_layout Plain Layout
25724 Grenzwerte
25725 \end_layout
25726
25727 \end_inset
25728
25729
25730 \end_layout
25731
25732 \begin_layout Standard
25733 Für Grenzwerte sind außer 
25734 \series bold
25735
25736 \backslash
25737 lim
25738 \series default
25739
25740 \begin_inset Index idx
25741 status collapsed
25742
25743 \begin_layout Plain Layout
25744 Befehle ! L ! 
25745 \backslash
25746 lim
25747 \end_layout
25748
25749 \end_inset
25750
25751
25752 \series bold
25753
25754 \backslash
25755 liminf
25756 \series default
25757  und 
25758 \series bold
25759
25760 \backslash
25761 limsup
25762 \series default
25763  noch folgende Funktionen definiert:
25764 \end_layout
25765
25766 \begin_layout Standard
25767 \align center
25768 \begin_inset Tabular
25769 <lyxtabular version="3" rows="5" columns="2">
25770 <features tabularvalignment="middle">
25771 <column alignment="center" valignment="top" width="0">
25772 <column alignment="center" valignment="top" width="0">
25773 <row>
25774 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25775 \begin_inset Text
25776
25777 \begin_layout Plain Layout
25778 Befehl
25779 \end_layout
25780
25781 \end_inset
25782 </cell>
25783 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
25784 \begin_inset Text
25785
25786 \begin_layout Plain Layout
25787 Ergebnis
25788 \begin_inset Note Note
25789 status collapsed
25790
25791 \begin_layout Plain Layout
25792
25793 \series bold
25794
25795 \backslash
25796 raisebox
25797 \series default
25798  dient nur als Abstandhalter.
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 varliminf
25817 \end_layout
25818
25819 \end_inset
25820 </cell>
25821 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25822 \begin_inset Text
25823
25824 \begin_layout Plain Layout
25825 \begin_inset Formula $\varliminf$
25826 \end_inset
25827
25828
25829 \end_layout
25830
25831 \end_inset
25832 </cell>
25833 </row>
25834 <row>
25835 <cell alignment="center" valignment="top" leftline="true" usebox="none">
25836 \begin_inset Text
25837
25838 \begin_layout Plain Layout
25839
25840 \backslash
25841 varlimsup
25842 \end_layout
25843
25844 \end_inset
25845 </cell>
25846 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
25847 \begin_inset Text
25848
25849 \begin_layout Plain Layout
25850 \begin_inset Formula $\varlimsup$
25851 \end_inset
25852
25853
25854 \end_layout
25855
25856 \end_inset
25857 </cell>
25858 </row>
25859 <row>
25860 <cell alignment="center" valignment="top" leftline="true" usebox="none">
25861 \begin_inset Text
25862
25863 \begin_layout Plain Layout
25864
25865 \backslash
25866 varprojlim
25867 \end_layout
25868
25869 \end_inset
25870 </cell>
25871 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
25872 \begin_inset Text
25873
25874 \begin_layout Plain Layout
25875 \begin_inset Formula $\varprojlim$
25876 \end_inset
25877
25878
25879 \end_layout
25880
25881 \end_inset
25882 </cell>
25883 </row>
25884 <row>
25885 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
25886 \begin_inset Text
25887
25888 \begin_layout Plain Layout
25889
25890 \backslash
25891 varinjlim
25892 \end_layout
25893
25894 \end_inset
25895 </cell>
25896 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
25897 \begin_inset Text
25898
25899 \begin_layout Plain Layout
25900 \begin_inset Formula $\varinjlim$
25901 \end_inset
25902
25903
25904 \begin_inset Formula $\raisebox{-2.5mm}{}$
25905 \end_inset
25906
25907
25908 \end_layout
25909
25910 \end_inset
25911 </cell>
25912 </row>
25913 </lyxtabular>
25914
25915 \end_inset
25916
25917
25918 \end_layout
25919
25920 \begin_layout Standard
25921 \begin_inset VSpace medskip
25922 \end_inset
25923
25924 Der Grenzwert wird durch Tiefstellen erzeugt.
25925  Bei einer eingebetteten Formel wird er rechts neben die Funktion gesetzt:
25926 \end_layout
25927
25928 \begin_layout Standard
25929 \align center
25930 \begin_inset Tabular
25931 <lyxtabular version="3" rows="2" columns="2">
25932 <features tabularvalignment="middle">
25933 <column alignment="center" valignment="top" width="0pt">
25934 <column alignment="center" valignment="top" width="0pt">
25935 <row>
25936 <cell alignment="center" valignment="top" usebox="none">
25937 \begin_inset Text
25938
25939 \begin_layout Plain Layout
25940 Befehl
25941 \end_layout
25942
25943 \end_inset
25944 </cell>
25945 <cell alignment="center" valignment="top" usebox="none">
25946 \begin_inset Text
25947
25948 \begin_layout Plain Layout
25949 \begin_inset space \hspace{}
25950 \length 1cm
25951 \end_inset
25952
25953 Ergebnis
25954 \begin_inset Note Note
25955 status collapsed
25956
25957 \begin_layout Plain Layout
25958 Der Leerraum und 
25959 \series bold
25960
25961 \backslash
25962 raisebox
25963 \series default
25964  dienen nur als Abstandhalter.
25965 \end_layout
25966
25967 \end_inset
25968
25969
25970 \end_layout
25971
25972 \end_inset
25973 </cell>
25974 </row>
25975 <row>
25976 <cell alignment="center" valignment="top" usebox="none">
25977 \begin_inset Text
25978
25979 \begin_layout Plain Layout
25980
25981 \backslash
25982 lim_x
25983 \backslash
25984 to
25985 \begin_inset ERT
25986 status collapsed
25987
25988 \begin_layout Plain Layout
25989
25990
25991 \backslash
25992 leer 
25993 \end_layout
25994
25995 \end_inset
25996
25997 A
25998 \begin_inset ERT
25999 status collapsed
26000
26001 \begin_layout Plain Layout
26002
26003
26004 \backslash
26005 leer 
26006 \end_layout
26007
26008 \end_inset
26009
26010 x=B
26011 \end_layout
26012
26013 \end_inset
26014 </cell>
26015 <cell alignment="center" valignment="top" usebox="none">
26016 \begin_inset Text
26017
26018 \begin_layout Plain Layout
26019 \begin_inset Formula $\hspace{1cm}\raisebox{5mm}{}\lim_{x\to A}x=B$
26020 \end_inset
26021
26022
26023 \end_layout
26024
26025 \end_inset
26026 </cell>
26027 </row>
26028 </lyxtabular>
26029
26030 \end_inset
26031
26032
26033 \end_layout
26034
26035 \begin_layout Standard
26036 In einer abgesetzten Formel steht der Grenzwert wie gewohnt darunter:
26037 \begin_inset Formula 
26038 \[
26039 \lim_{x\to A}x=B
26040 \]
26041
26042 \end_inset
26043
26044
26045 \end_layout
26046
26047 \begin_layout Standard
26048 \begin_inset Newpage newpage
26049 \end_inset
26050
26051
26052 \end_layout
26053
26054 \begin_layout Subsection
26055 Modulo-Funktionen
26056 \begin_inset Index idx
26057 status collapsed
26058
26059 \begin_layout Plain Layout
26060 Funktionen ! Modulo-
26061 \end_layout
26062
26063 \end_inset
26064
26065
26066 \end_layout
26067
26068 \begin_layout Standard
26069 Eine Besonderheit stellt die Modulo-Funktion dar, denn es gibt sie in vier
26070  Varianten.
26071 \end_layout
26072
26073 \begin_layout Standard
26074 Die Varianten in einer abgesetzten Formel:
26075 \begin_inset Formula 
26076 \begin{align*}
26077 \underline{\textrm{Befehl}\raisebox{-0.9mm}{}} &  & \underline{\textrm{Ergebnis}}\\
26078 \mathrm{a\backslash mod\textrm{\leer}b} &  & a\mod b\\
26079 \mathrm{a\backslash pmod\textrm{\leer}b} &  & a\pmod b\\
26080 \mathrm{a\backslash bmod\textrm{\leer}b} &  & a\bmod b\\
26081 \mathrm{a\backslash pod\textrm{\leer}b} &  & a\pod b
26082 \end{align*}
26083
26084 \end_inset
26085
26086
26087 \end_layout
26088
26089 \begin_layout Standard
26090 In einer eingebetteten Formel wird bei allen Varianten vor den Funktionsnamen
26091  weniger Leerraum gesetzt.
26092  Standardmäßig beachten die Modulo-Funktionen nur das erste, folgende Zeichen.
26093  Um mehrere Zeichen zu verwenden, muss man sie in TeX-Klammern setzen:
26094 \begin_inset Formula 
26095 \begin{align*}
26096 \underline{\textrm{Befehl}\raisebox{-0.9mm}{}} &  & \underline{\textrm{Ergebnis}}\\
26097 \mathrm{a\backslash pod\textrm{\leer}bcd} &  & a\pod bcd\\
26098 \mathrm{a\backslash pod\backslash\{bc\to d} &  & a\pod{bc}d
26099 \end{align*}
26100
26101 \end_inset
26102
26103
26104 \end_layout
26105
26106 \begin_layout Section
26107 Sonderzeichen
26108 \begin_inset Index idx
26109 status collapsed
26110
26111 \begin_layout Plain Layout
26112 Sonderzeichen
26113 \end_layout
26114
26115 \end_inset
26116
26117
26118 \end_layout
26119
26120 \begin_layout Subsection
26121 Sonderzeichen im mathematischen Text
26122 \end_layout
26123
26124 \begin_layout Standard
26125 Die folgenden Befehle können nur im mathematischen Textmodus oder im TeX-Modus
26126  verwendet werden:
26127 \end_layout
26128
26129 \begin_layout Standard
26130 \begin_inset space \hfill{}
26131 \end_inset
26132
26133
26134 \begin_inset Tabular
26135 <lyxtabular version="3" rows="8" columns="2">
26136 <features tabularvalignment="middle">
26137 <column alignment="block" valignment="top" width="0">
26138 <column alignment="block" valignment="top" width="0">
26139 <row>
26140 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
26141 \begin_inset Text
26142
26143 \begin_layout Plain Layout
26144 Befehl
26145 \end_layout
26146
26147 \end_inset
26148 </cell>
26149 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
26150 \begin_inset Text
26151
26152 \begin_layout Plain Layout
26153 Ergebnis
26154 \end_layout
26155
26156 \end_inset
26157 </cell>
26158 </row>
26159 <row>
26160 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26161 \begin_inset Text
26162
26163 \begin_layout Plain Layout
26164
26165 \backslash
26166 oe
26167 \end_layout
26168
26169 \end_inset
26170 </cell>
26171 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26172 \begin_inset Text
26173
26174 \begin_layout Plain Layout
26175 \begin_inset Formula $\textrm{œ}$
26176 \end_inset
26177
26178
26179 \end_layout
26180
26181 \end_inset
26182 </cell>
26183 </row>
26184 <row>
26185 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26186 \begin_inset Text
26187
26188 \begin_layout Plain Layout
26189
26190 \backslash
26191 OE
26192 \end_layout
26193
26194 \end_inset
26195 </cell>
26196 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26197 \begin_inset Text
26198
26199 \begin_layout Plain Layout
26200 \begin_inset Formula $\textrm{Œ}$
26201 \end_inset
26202
26203
26204 \end_layout
26205
26206 \end_inset
26207 </cell>
26208 </row>
26209 <row>
26210 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26211 \begin_inset Text
26212
26213 \begin_layout Plain Layout
26214
26215 \backslash
26216 ae
26217 \end_layout
26218
26219 \end_inset
26220 </cell>
26221 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26222 \begin_inset Text
26223
26224 \begin_layout Plain Layout
26225 \begin_inset Formula $\textrm{æ}$
26226 \end_inset
26227
26228
26229 \end_layout
26230
26231 \end_inset
26232 </cell>
26233 </row>
26234 <row>
26235 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26236 \begin_inset Text
26237
26238 \begin_layout Plain Layout
26239
26240 \backslash
26241 AE
26242 \end_layout
26243
26244 \end_inset
26245 </cell>
26246 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26247 \begin_inset Text
26248
26249 \begin_layout Plain Layout
26250 \begin_inset Formula $\textrm{Æ}$
26251 \end_inset
26252
26253
26254 \end_layout
26255
26256 \end_inset
26257 </cell>
26258 </row>
26259 <row>
26260 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26261 \begin_inset Text
26262
26263 \begin_layout Plain Layout
26264
26265 \backslash
26266 aa
26267 \end_layout
26268
26269 \end_inset
26270 </cell>
26271 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26272 \begin_inset Text
26273
26274 \begin_layout Plain Layout
26275 \begin_inset Formula $\textrm{\aa}$
26276 \end_inset
26277
26278
26279 \end_layout
26280
26281 \end_inset
26282 </cell>
26283 </row>
26284 <row>
26285 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
26286 \begin_inset Text
26287
26288 \begin_layout Plain Layout
26289
26290 \backslash
26291 AA
26292 \begin_inset Index idx
26293 status collapsed
26294
26295 \begin_layout Plain Layout
26296
26297 \backslash
26298 @
26299 \begin_inset ERT
26300 status collapsed
26301
26302 \begin_layout Plain Layout
26303
26304
26305 \backslash
26306 textrm{
26307 \backslash
26308 AA}
26309 \end_layout
26310
26311 \end_inset
26312
26313
26314 \end_layout
26315
26316 \end_inset
26317
26318
26319 \end_layout
26320
26321 \end_inset
26322 </cell>
26323 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
26324 \begin_inset Text
26325
26326 \begin_layout Plain Layout
26327 \begin_inset Formula $\textrm{Å}$
26328 \end_inset
26329
26330
26331 \end_layout
26332
26333 \end_inset
26334 </cell>
26335 </row>
26336 <row>
26337 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
26338 \begin_inset Text
26339
26340 \begin_layout Plain Layout
26341
26342 \backslash
26343 i
26344 \end_layout
26345
26346 \end_inset
26347 </cell>
26348 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
26349 \begin_inset Text
26350
26351 \begin_layout Plain Layout
26352 \begin_inset Formula $\textrm{ı}$
26353 \end_inset
26354
26355
26356 \end_layout
26357
26358 \end_inset
26359 </cell>
26360 </row>
26361 </lyxtabular>
26362
26363 \end_inset
26364
26365
26366 \begin_inset space \hfill{}
26367 \end_inset
26368
26369
26370 \begin_inset Tabular
26371 <lyxtabular version="3" rows="8" columns="2">
26372 <features tabularvalignment="middle">
26373 <column alignment="block" valignment="top" width="0">
26374 <column alignment="center" valignment="top" width="0">
26375 <row>
26376 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
26377 \begin_inset Text
26378
26379 \begin_layout Plain Layout
26380 Befehl
26381 \begin_inset Note Note
26382 status collapsed
26383
26384 \begin_layout Plain Layout
26385 Der Leerraum von 0
26386 \begin_inset space \thinspace{}
26387 \end_inset
26388
26389 mm dient nur zur Trennung,da sonst im Ausdruck ¡ bzw.
26390  ¿ erscheinen würde.
26391 \end_layout
26392
26393 \end_inset
26394
26395
26396 \end_layout
26397
26398 \end_inset
26399 </cell>
26400 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
26401 \begin_inset Text
26402
26403 \begin_layout Plain Layout
26404 Ergebnis
26405 \end_layout
26406
26407 \end_inset
26408 </cell>
26409 </row>
26410 <row>
26411 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26412 \begin_inset Text
26413
26414 \begin_layout Plain Layout
26415
26416 \backslash
26417 o
26418 \end_layout
26419
26420 \end_inset
26421 </cell>
26422 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26423 \begin_inset Text
26424
26425 \begin_layout Plain Layout
26426 \begin_inset Formula $\textrm{ø}$
26427 \end_inset
26428
26429
26430 \end_layout
26431
26432 \end_inset
26433 </cell>
26434 </row>
26435 <row>
26436 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26437 \begin_inset Text
26438
26439 \begin_layout Plain Layout
26440
26441 \backslash
26442 O
26443 \end_layout
26444
26445 \end_inset
26446 </cell>
26447 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26448 \begin_inset Text
26449
26450 \begin_layout Plain Layout
26451 \begin_inset Formula $\textrm{Ø}$
26452 \end_inset
26453
26454
26455 \end_layout
26456
26457 \end_inset
26458 </cell>
26459 </row>
26460 <row>
26461 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26462 \begin_inset Text
26463
26464 \begin_layout Plain Layout
26465
26466 \backslash
26467 l
26468 \end_layout
26469
26470 \end_inset
26471 </cell>
26472 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26473 \begin_inset Text
26474
26475 \begin_layout Plain Layout
26476 \begin_inset Formula $\textrm{ł}$
26477 \end_inset
26478
26479
26480 \end_layout
26481
26482 \end_inset
26483 </cell>
26484 </row>
26485 <row>
26486 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26487 \begin_inset Text
26488
26489 \begin_layout Plain Layout
26490
26491 \backslash
26492 L
26493 \end_layout
26494
26495 \end_inset
26496 </cell>
26497 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26498 \begin_inset Text
26499
26500 \begin_layout Plain Layout
26501 \begin_inset Formula $\textrm{Ł}$
26502 \end_inset
26503
26504
26505 \end_layout
26506
26507 \end_inset
26508 </cell>
26509 </row>
26510 <row>
26511 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
26512 \begin_inset Text
26513
26514 \begin_layout Plain Layout
26515 !
26516 \begin_inset space \hspace{}
26517 \length 0mm
26518 \end_inset
26519
26520 `
26521 \begin_inset ERT
26522 status collapsed
26523
26524 \begin_layout Plain Layout
26525
26526
26527 \backslash
26528 leer 
26529 \end_layout
26530
26531 \end_inset
26532
26533
26534 \end_layout
26535
26536 \end_inset
26537 </cell>
26538 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
26539 \begin_inset Text
26540
26541 \begin_layout Plain Layout
26542 \begin_inset Formula $\textrm{!`}$
26543 \end_inset
26544
26545
26546 \end_layout
26547
26548 \end_inset
26549 </cell>
26550 </row>
26551 <row>
26552 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
26553 \begin_inset Text
26554
26555 \begin_layout Plain Layout
26556 ?
26557 \begin_inset space \hspace{}
26558 \length 0mm
26559 \end_inset
26560
26561 `
26562 \begin_inset ERT
26563 status collapsed
26564
26565 \begin_layout Plain Layout
26566
26567
26568 \backslash
26569 leer 
26570 \end_layout
26571
26572 \end_inset
26573
26574
26575 \end_layout
26576
26577 \end_inset
26578 </cell>
26579 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
26580 \begin_inset Text
26581
26582 \begin_layout Plain Layout
26583 \begin_inset Formula $\textrm{?`}$
26584 \end_inset
26585
26586
26587 \end_layout
26588
26589 \end_inset
26590 </cell>
26591 </row>
26592 <row>
26593 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
26594 \begin_inset Text
26595
26596 \begin_layout Plain Layout
26597
26598 \backslash
26599 j
26600 \end_layout
26601
26602 \end_inset
26603 </cell>
26604 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
26605 \begin_inset Text
26606
26607 \begin_layout Plain Layout
26608 \begin_inset Formula $\textrm{ȷ}$
26609 \end_inset
26610
26611
26612 \end_layout
26613
26614 \end_inset
26615 </cell>
26616 </row>
26617 </lyxtabular>
26618
26619 \end_inset
26620
26621
26622 \begin_inset space \hfill{}
26623 \end_inset
26624
26625
26626 \end_layout
26627
26628 \begin_layout Standard
26629 Die Zeichen 
26630 \begin_inset Formula $\textrm{\textrm{Å}}$
26631 \end_inset
26632
26633  und 
26634 \begin_inset Formula $\textrm{\textrm{Ø}}$
26635 \end_inset
26636
26637  können auch über den Mathe-Werkzeugleistenknopf 
26638 \begin_inset Graphics
26639         filename ../../images/math/digamma.png
26640         scale 85
26641
26642 \end_inset
26643
26644  eingefügt werden.
26645 \end_layout
26646
26647 \begin_layout Standard
26648 Eine Ausnahme bilden die Befehle 
26649 \series bold
26650 !
26651 \begin_inset space \hspace{}
26652 \length 0mm
26653 \end_inset
26654
26655 `
26656 \series default
26657  und 
26658 \series bold
26659 ?
26660 \begin_inset space \hspace{}
26661 \length 0mm
26662 \end_inset
26663
26664 `
26665 \series default
26666 , denn man kann sie in LyX direkt in den Text eingeben.
26667 \end_layout
26668
26669 \begin_layout Subsection
26670 Akzente im Text
26671 \begin_inset CommandInset label
26672 LatexCommand label
26673 name "sub:Sonderzeichen-Akzente"
26674
26675 \end_inset
26676
26677
26678 \begin_inset Index idx
26679 status collapsed
26680
26681 \begin_layout Plain Layout
26682 Akzente ! im Text
26683 \end_layout
26684
26685 \end_inset
26686
26687
26688 \end_layout
26689
26690 \begin_layout Standard
26691 Man kann mit den folgenden Befehlen sämtliche Buchstaben akzentuieren.
26692  Die Befehle müssen dazu im TeX-Modus eingegeben werden.
26693 \end_layout
26694
26695 \begin_layout Standard
26696 \begin_inset space \hfill{}
26697 \end_inset
26698
26699
26700 \begin_inset Tabular
26701 <lyxtabular version="3" rows="8" columns="2">
26702 <features tabularvalignment="middle">
26703 <column alignment="block" valignment="top" width="0">
26704 <column alignment="block" valignment="top" width="0">
26705 <row>
26706 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
26707 \begin_inset Text
26708
26709 \begin_layout Plain Layout
26710 Befehl
26711 \end_layout
26712
26713 \end_inset
26714 </cell>
26715 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
26716 \begin_inset Text
26717
26718 \begin_layout Plain Layout
26719 Ergebnis
26720 \end_layout
26721
26722 \end_inset
26723 </cell>
26724 </row>
26725 <row>
26726 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26727 \begin_inset Text
26728
26729 \begin_layout Plain Layout
26730
26731 \backslash
26732
26733 \begin_inset Quotes grd
26734 \end_inset
26735
26736 e
26737 \end_layout
26738
26739 \end_inset
26740 </cell>
26741 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26742 \begin_inset Text
26743
26744 \begin_layout Plain Layout
26745 \begin_inset ERT
26746 status collapsed
26747
26748 \begin_layout Plain Layout
26749
26750
26751 \backslash
26752 "e
26753 \end_layout
26754
26755 \end_inset
26756
26757
26758 \end_layout
26759
26760 \end_inset
26761 </cell>
26762 </row>
26763 <row>
26764 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26765 \begin_inset Text
26766
26767 \begin_layout Plain Layout
26768
26769 \backslash
26770 `e
26771 \end_layout
26772
26773 \end_inset
26774 </cell>
26775 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26776 \begin_inset Text
26777
26778 \begin_layout Plain Layout
26779 \begin_inset ERT
26780 status collapsed
26781
26782 \begin_layout Plain Layout
26783
26784
26785 \backslash
26786 `e
26787 \end_layout
26788
26789 \end_inset
26790
26791
26792 \end_layout
26793
26794 \end_inset
26795 </cell>
26796 </row>
26797 <row>
26798 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26799 \begin_inset Text
26800
26801 \begin_layout Plain Layout
26802
26803 \backslash
26804 ^
26805 \begin_inset ERT
26806 status collapsed
26807
26808 \begin_layout Plain Layout
26809
26810
26811 \backslash
26812 leer 
26813 \end_layout
26814
26815 \end_inset
26816
26817 e
26818 \end_layout
26819
26820 \end_inset
26821 </cell>
26822 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26823 \begin_inset Text
26824
26825 \begin_layout Plain Layout
26826 \begin_inset ERT
26827 status collapsed
26828
26829 \begin_layout Plain Layout
26830
26831
26832 \backslash
26833 ^e
26834 \end_layout
26835
26836 \end_inset
26837
26838
26839 \end_layout
26840
26841 \end_inset
26842 </cell>
26843 </row>
26844 <row>
26845 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26846 \begin_inset Text
26847
26848 \begin_layout Plain Layout
26849
26850 \backslash
26851 =e
26852 \end_layout
26853
26854 \end_inset
26855 </cell>
26856 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26857 \begin_inset Text
26858
26859 \begin_layout Plain Layout
26860 \begin_inset ERT
26861 status collapsed
26862
26863 \begin_layout Plain Layout
26864
26865
26866 \backslash
26867 =e
26868 \end_layout
26869
26870 \end_inset
26871
26872
26873 \end_layout
26874
26875 \end_inset
26876 </cell>
26877 </row>
26878 <row>
26879 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26880 \begin_inset Text
26881
26882 \begin_layout Plain Layout
26883
26884 \backslash
26885 u
26886 \begin_inset ERT
26887 status collapsed
26888
26889 \begin_layout Plain Layout
26890
26891
26892 \backslash
26893 leer 
26894 \end_layout
26895
26896 \end_inset
26897
26898 e
26899 \end_layout
26900
26901 \end_inset
26902 </cell>
26903 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26904 \begin_inset Text
26905
26906 \begin_layout Plain Layout
26907 \begin_inset ERT
26908 status collapsed
26909
26910 \begin_layout Plain Layout
26911
26912
26913 \backslash
26914 u e
26915 \end_layout
26916
26917 \end_inset
26918
26919
26920 \end_layout
26921
26922 \end_inset
26923 </cell>
26924 </row>
26925 <row>
26926 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
26927 \begin_inset Text
26928
26929 \begin_layout Plain Layout
26930
26931 \backslash
26932 b
26933 \begin_inset ERT
26934 status collapsed
26935
26936 \begin_layout Plain Layout
26937
26938
26939 \backslash
26940 leer 
26941 \end_layout
26942
26943 \end_inset
26944
26945 e
26946 \end_layout
26947
26948 \end_inset
26949 </cell>
26950 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
26951 \begin_inset Text
26952
26953 \begin_layout Plain Layout
26954 \begin_inset ERT
26955 status collapsed
26956
26957 \begin_layout Plain Layout
26958
26959
26960 \backslash
26961 b e
26962 \end_layout
26963
26964 \end_inset
26965
26966
26967 \end_layout
26968
26969 \end_inset
26970 </cell>
26971 </row>
26972 <row>
26973 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
26974 \begin_inset Text
26975
26976 \begin_layout Plain Layout
26977
26978 \backslash
26979 t
26980 \begin_inset ERT
26981 status collapsed
26982
26983 \begin_layout Plain Layout
26984
26985
26986 \backslash
26987 leer 
26988 \end_layout
26989
26990 \end_inset
26991
26992 ee
26993 \end_layout
26994
26995 \end_inset
26996 </cell>
26997 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
26998 \begin_inset Text
26999
27000 \begin_layout Plain Layout
27001 \begin_inset ERT
27002 status collapsed
27003
27004 \begin_layout Plain Layout
27005
27006
27007 \backslash
27008 t ee
27009 \end_layout
27010
27011 \end_inset
27012
27013
27014 \end_layout
27015
27016 \end_inset
27017 </cell>
27018 </row>
27019 </lyxtabular>
27020
27021 \end_inset
27022
27023
27024 \begin_inset space \hfill{}
27025 \end_inset
27026
27027
27028 \begin_inset Tabular
27029 <lyxtabular version="3" rows="8" columns="2">
27030 <features tabularvalignment="middle">
27031 <column alignment="block" valignment="top" width="0">
27032 <column alignment="center" valignment="top" width="0">
27033 <row>
27034 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
27035 \begin_inset Text
27036
27037 \begin_layout Plain Layout
27038 Befehl
27039 \end_layout
27040
27041 \end_inset
27042 </cell>
27043 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
27044 \begin_inset Text
27045
27046 \begin_layout Plain Layout
27047 Ergebnis
27048 \end_layout
27049
27050 \end_inset
27051 </cell>
27052 </row>
27053 <row>
27054 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27055 \begin_inset Text
27056
27057 \begin_layout Plain Layout
27058
27059 \backslash
27060 H
27061 \begin_inset ERT
27062 status collapsed
27063
27064 \begin_layout Plain Layout
27065
27066
27067 \backslash
27068 leer 
27069 \end_layout
27070
27071 \end_inset
27072
27073 e
27074 \end_layout
27075
27076 \end_inset
27077 </cell>
27078 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
27079 \begin_inset Text
27080
27081 \begin_layout Plain Layout
27082 \begin_inset ERT
27083 status collapsed
27084
27085 \begin_layout Plain Layout
27086
27087
27088 \backslash
27089 H e
27090 \end_layout
27091
27092 \end_inset
27093
27094
27095 \end_layout
27096
27097 \end_inset
27098 </cell>
27099 </row>
27100 <row>
27101 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27102 \begin_inset Text
27103
27104 \begin_layout Plain Layout
27105
27106 \backslash
27107 'e
27108 \end_layout
27109
27110 \end_inset
27111 </cell>
27112 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
27113 \begin_inset Text
27114
27115 \begin_layout Plain Layout
27116 \begin_inset ERT
27117 status collapsed
27118
27119 \begin_layout Plain Layout
27120
27121
27122 \backslash
27123 'e
27124 \end_layout
27125
27126 \end_inset
27127
27128
27129 \end_layout
27130
27131 \end_inset
27132 </cell>
27133 </row>
27134 <row>
27135 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27136 \begin_inset Text
27137
27138 \begin_layout Plain Layout
27139
27140 \backslash
27141 ~e
27142 \begin_inset Index idx
27143 status collapsed
27144
27145 \begin_layout Plain Layout
27146 Tilde
27147 \end_layout
27148
27149 \end_inset
27150
27151
27152 \end_layout
27153
27154 \end_inset
27155 </cell>
27156 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
27157 \begin_inset Text
27158
27159 \begin_layout Plain Layout
27160 \begin_inset ERT
27161 status collapsed
27162
27163 \begin_layout Plain Layout
27164
27165
27166 \backslash
27167 ~e
27168 \end_layout
27169
27170 \end_inset
27171
27172
27173 \end_layout
27174
27175 \end_inset
27176 </cell>
27177 </row>
27178 <row>
27179 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27180 \begin_inset Text
27181
27182 \begin_layout Plain Layout
27183
27184 \backslash
27185 .e
27186 \end_layout
27187
27188 \end_inset
27189 </cell>
27190 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
27191 \begin_inset Text
27192
27193 \begin_layout Plain Layout
27194 \begin_inset ERT
27195 status collapsed
27196
27197 \begin_layout Plain Layout
27198
27199
27200 \backslash
27201 .e
27202 \end_layout
27203
27204 \end_inset
27205
27206
27207 \end_layout
27208
27209 \end_inset
27210 </cell>
27211 </row>
27212 <row>
27213 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
27214 \begin_inset Text
27215
27216 \begin_layout Plain Layout
27217
27218 \backslash
27219 v
27220 \begin_inset ERT
27221 status collapsed
27222
27223 \begin_layout Plain Layout
27224
27225
27226 \backslash
27227 leer 
27228 \end_layout
27229
27230 \end_inset
27231
27232 e
27233 \end_layout
27234
27235 \end_inset
27236 </cell>
27237 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
27238 \begin_inset Text
27239
27240 \begin_layout Plain Layout
27241 \begin_inset ERT
27242 status collapsed
27243
27244 \begin_layout Plain Layout
27245
27246
27247 \backslash
27248 v e
27249 \end_layout
27250
27251 \end_inset
27252
27253
27254 \end_layout
27255
27256 \end_inset
27257 </cell>
27258 </row>
27259 <row>
27260 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
27261 \begin_inset Text
27262
27263 \begin_layout Plain Layout
27264
27265 \backslash
27266 d
27267 \begin_inset ERT
27268 status collapsed
27269
27270 \begin_layout Plain Layout
27271
27272
27273 \backslash
27274 leer 
27275 \end_layout
27276
27277 \end_inset
27278
27279 e
27280 \end_layout
27281
27282 \end_inset
27283 </cell>
27284 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
27285 \begin_inset Text
27286
27287 \begin_layout Plain Layout
27288 \begin_inset ERT
27289 status collapsed
27290
27291 \begin_layout Plain Layout
27292
27293
27294 \backslash
27295 d e
27296 \end_layout
27297
27298 \end_inset
27299
27300
27301 \end_layout
27302
27303 \end_inset
27304 </cell>
27305 </row>
27306 <row>
27307 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
27308 \begin_inset Text
27309
27310 \begin_layout Plain Layout
27311
27312 \backslash
27313 c
27314 \begin_inset ERT
27315 status collapsed
27316
27317 \begin_layout Plain Layout
27318
27319
27320 \backslash
27321 leer 
27322 \end_layout
27323
27324 \end_inset
27325
27326 e
27327 \end_layout
27328
27329 \end_inset
27330 </cell>
27331 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
27332 \begin_inset Text
27333
27334 \begin_layout Plain Layout
27335 \begin_inset ERT
27336 status collapsed
27337
27338 \begin_layout Plain Layout
27339
27340
27341 \backslash
27342 c e
27343 \end_layout
27344
27345 \end_inset
27346
27347
27348 \end_layout
27349
27350 \end_inset
27351 </cell>
27352 </row>
27353 </lyxtabular>
27354
27355 \end_inset
27356
27357
27358 \begin_inset space \hfill{}
27359 \end_inset
27360
27361
27362 \end_layout
27363
27364 \begin_layout Standard
27365 \begin_inset VSpace medskip
27366 \end_inset
27367
27368 Mit dem Befehl 
27369 \series bold
27370
27371 \backslash
27372 t
27373 \series default
27374  können auch zwei verschiedene Zeichen akzentuiert werden.
27375  Der Befehl 
27376 \series bold
27377
27378 \backslash
27379 t
27380 \begin_inset ERT
27381 status collapsed
27382
27383 \begin_layout Plain Layout
27384
27385
27386 \backslash
27387 leer 
27388 \end_layout
27389
27390 \end_inset
27391
27392 sz
27393 \series default
27394  ergibt: 
27395 \begin_inset ERT
27396 status collapsed
27397
27398 \begin_layout Plain Layout
27399
27400
27401 \backslash
27402 t sz
27403 \end_layout
27404
27405 \end_inset
27406
27407
27408 \end_layout
27409
27410 \begin_layout Standard
27411 Die Akzente 
27412 \series bold
27413 `
27414 \series default
27415  , 
27416 \series bold
27417 '
27418 \series default
27419  und 
27420 \series bold
27421 ^
27422 \series default
27423  können in Verbindung mit Selbstlauten auch direkt über die Tastatur eingegeben
27424  werden ohne den TeX-Modus zu benutzen.
27425  Dasselbe gilt für die Tilde
27426 \begin_inset Foot
27427 status collapsed
27428
27429 \begin_layout Plain Layout
27430 Gilt nur für Tastaturen, bei denen die Tilde als Akzent definiert ist.
27431 \end_layout
27432
27433 \end_inset
27434
27435  
27436 \series bold
27437 ~
27438 \series default
27439  in Verbindung mit 
27440 \emph on
27441 a
27442 \emph default
27443  , 
27444 \emph on
27445 n
27446 \emph default
27447  oder 
27448 \emph on
27449 o
27450 \emph default
27451 .
27452 \end_layout
27453
27454 \begin_layout Standard
27455 Die Befehle 
27456 \series bold
27457
27458 \backslash
27459 b
27460 \series default
27461  , 
27462 \series bold
27463
27464 \backslash
27465 c
27466 \series default
27467  , 
27468 \series bold
27469
27470 \backslash
27471 d
27472 \series default
27473  , 
27474 \series bold
27475
27476 \backslash
27477 H
27478 \series default
27479  , 
27480 \series bold
27481
27482 \backslash
27483 t
27484 \series default
27485  , 
27486 \series bold
27487
27488 \backslash
27489 u
27490 \series default
27491  , 
27492 \series bold
27493
27494 \backslash
27495 v
27496 \series default
27497  und direkt über die Tastatur eingegebene Akzente sind auch im mathematischen
27498  Textmodus verfügbar.
27499  Für die restlichen Akzente gibt es in Formeln spezielle Mathebefehle, siehe
27500  
27501 \begin_inset CommandInset ref
27502 LatexCommand ref
27503 reference "sub:Akzente-für-ein"
27504
27505 \end_inset
27506
27507 .
27508 \end_layout
27509
27510 \begin_layout Standard
27511 \begin_inset VSpace bigskip
27512 \end_inset
27513
27514 Des Weiteren kann man mit dem Befehl 
27515 \series bold
27516
27517 \backslash
27518 textcircled
27519 \series default
27520
27521 \begin_inset Index idx
27522 status collapsed
27523
27524 \begin_layout Plain Layout
27525 Befehle ! T ! 
27526 \backslash
27527 textcircled
27528 \end_layout
27529
27530 \end_inset
27531
27532 , ähnlich dem Copyrightsymbol, sämtliche Zahlen und Buchstaben in einen
27533  Kreis setzen, quasi mit einem Kreis akzentuieren.
27534 \end_layout
27535
27536 \begin_layout Standard
27537 \align center
27538 \begin_inset Tabular
27539 <lyxtabular version="3" rows="3" columns="2">
27540 <features tabularvalignment="middle">
27541 <column alignment="center" valignment="top" width="0">
27542 <column alignment="center" valignment="top" width="0">
27543 <row>
27544 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
27545 \begin_inset Text
27546
27547 \begin_layout Plain Layout
27548 Befehl
27549 \end_layout
27550
27551 \end_inset
27552 </cell>
27553 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
27554 \begin_inset Text
27555
27556 \begin_layout Plain Layout
27557 Ergebnis
27558 \begin_inset Note Note
27559 status collapsed
27560
27561 \begin_layout Plain Layout
27562
27563 \series bold
27564
27565 \backslash
27566 raisebox
27567 \series default
27568  in der Formel dient nur als Abstandhalter.
27569 \end_layout
27570
27571 \end_inset
27572
27573
27574 \end_layout
27575
27576 \end_inset
27577 </cell>
27578 </row>
27579 <row>
27580 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27581 \begin_inset Text
27582
27583 \begin_layout Plain Layout
27584
27585 \backslash
27586 textcircled{w}
27587 \end_layout
27588
27589 \end_inset
27590 </cell>
27591 <cell multicolumn="1" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
27592 \begin_inset Text
27593
27594 \begin_layout Plain Layout
27595 \begin_inset ERT
27596 status collapsed
27597
27598 \begin_layout Plain Layout
27599
27600
27601 \backslash
27602 textcircled{w}
27603 \end_layout
27604
27605 \end_inset
27606
27607
27608 \end_layout
27609
27610 \end_inset
27611 </cell>
27612 </row>
27613 <row>
27614 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
27615 \begin_inset Text
27616
27617 \begin_layout Plain Layout
27618
27619 \backslash
27620 Large 
27621 \backslash
27622 textcircled{
27623 \backslash
27624 normalsize
27625 \backslash
27626 protect
27627 \backslash
27628 raisebox{-1.5pt}{W}}
27629 \end_layout
27630
27631 \end_inset
27632 </cell>
27633 <cell multicolumn="1" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
27634 \begin_inset Text
27635
27636 \begin_layout Plain Layout
27637 \begin_inset Formula $\raisebox{4.5mm}{}$
27638 \end_inset
27639
27640
27641 \begin_inset ERT
27642 status collapsed
27643
27644 \begin_layout Plain Layout
27645
27646
27647 \backslash
27648 Large 
27649 \backslash
27650 textcircled{
27651 \backslash
27652 normalsize
27653 \backslash
27654 protect
27655 \backslash
27656 raisebox{-1.5pt}W}
27657 \end_layout
27658
27659 \end_inset
27660
27661
27662 \begin_inset Formula $\raisebox{-2mm}{}$
27663 \end_inset
27664
27665
27666 \end_layout
27667
27668 \end_inset
27669 </cell>
27670 </row>
27671 </lyxtabular>
27672
27673 \end_inset
27674
27675
27676 \end_layout
27677
27678 \begin_layout Standard
27679 Man muss darauf achten, dass das Zeichen in einen Kreis passt.
27680  
27681 \series bold
27682
27683 \backslash
27684 Large
27685 \series default
27686
27687 \begin_inset Foot
27688 status collapsed
27689
27690 \begin_layout Plain Layout
27691 siehe 
27692 \begin_inset CommandInset ref
27693 LatexCommand ref
27694 reference "sub:Schriftgrößen"
27695
27696 \end_inset
27697
27698
27699 \end_layout
27700
27701 \end_inset
27702
27703  bestimmt dabei die Größe des Kreises.
27704  Mit Hilfe von 
27705 \series bold
27706
27707 \backslash
27708 raisebox
27709 \series default
27710
27711 \begin_inset Foot
27712 status collapsed
27713
27714 \begin_layout Plain Layout
27715 siehe 
27716 \begin_inset CommandInset ref
27717 LatexCommand ref
27718 reference "sub:Boxen-ohne-Rahmen"
27719
27720 \end_inset
27721
27722
27723 \end_layout
27724
27725 \end_inset
27726
27727  kann man das Zeichen zentrieren.
27728 \end_layout
27729
27730 \begin_layout Subsection
27731 Minuskelziffern
27732 \begin_inset Index idx
27733 status collapsed
27734
27735 \begin_layout Plain Layout
27736 Minuskelziffern
27737 \end_layout
27738
27739 \end_inset
27740
27741
27742 \end_layout
27743
27744 \begin_layout Standard
27745 Minuskelziffern werden mit dem Befehl 
27746 \series bold
27747
27748 \backslash
27749 oldstylenums
27750 \series default
27751
27752 \begin_inset Index idx
27753 status collapsed
27754
27755 \begin_layout Plain Layout
27756 Befehle ! O ! 
27757 \backslash
27758 oldstylenums
27759 \end_layout
27760
27761 \end_inset
27762
27763  erzeugt.
27764  Der Befehl ist sowohl in einer Formel als auch im TeX-Modus verwendbar.
27765  Das Befehlsschema lautet:
27766 \end_layout
27767
27768 \begin_layout Standard
27769
27770 \series bold
27771
27772 \backslash
27773 oldstylenums{Ziffer}
27774 \end_layout
27775
27776 \begin_layout Standard
27777 Der Befehl 
27778 \series bold
27779
27780 \backslash
27781 oldstylenums{0123456789
27782 \series default
27783  ergibt: 
27784 \begin_inset Formula $\oldstylenums{0123456789}$
27785 \end_inset
27786
27787
27788 \end_layout
27789
27790 \begin_layout Subsection
27791 Sonstige Sonderzeichen
27792 \begin_inset CommandInset label
27793 LatexCommand label
27794 name "sub:Sonstige-Sonderzeichen"
27795
27796 \end_inset
27797
27798
27799 \begin_inset Index idx
27800 status collapsed
27801
27802 \begin_layout Plain Layout
27803 Sonderzeichen ! sonstige
27804 \end_layout
27805
27806 \end_inset
27807
27808
27809 \end_layout
27810
27811 \begin_layout Standard
27812 Folgende Zeichen können in eine Formel nur mit Befehlen eingegeben werden:
27813 \end_layout
27814
27815 \begin_layout Standard
27816 \align center
27817 \begin_inset Tabular
27818 <lyxtabular version="3" rows="4" columns="2">
27819 <features tabularvalignment="middle">
27820 <column alignment="center" valignment="top" width="0">
27821 <column alignment="center" valignment="top" width="0">
27822 <row>
27823 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
27824 \begin_inset Text
27825
27826 \begin_layout Plain Layout
27827 Befehl
27828 \end_layout
27829
27830 \end_inset
27831 </cell>
27832 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
27833 \begin_inset Text
27834
27835 \begin_layout Plain Layout
27836 Ergebnis
27837 \end_layout
27838
27839 \end_inset
27840 </cell>
27841 </row>
27842 <row>
27843 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27844 \begin_inset Text
27845
27846 \begin_layout Plain Layout
27847
27848 \backslash
27849 ^
27850 \begin_inset ERT
27851 status collapsed
27852
27853 \begin_layout Plain Layout
27854
27855
27856 \backslash
27857 leer 
27858 \end_layout
27859
27860 \end_inset
27861
27862
27863 \end_layout
27864
27865 \end_inset
27866 </cell>
27867 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
27868 \begin_inset Text
27869
27870 \begin_layout Plain Layout
27871 \begin_inset Formula $\mathcircumflex$
27872 \end_inset
27873
27874
27875 \end_layout
27876
27877 \end_inset
27878 </cell>
27879 </row>
27880 <row>
27881 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27882 \begin_inset Text
27883
27884 \begin_layout Plain Layout
27885
27886 \backslash
27887 _
27888 \end_layout
27889
27890 \end_inset
27891 </cell>
27892 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
27893 \begin_inset Text
27894
27895 \begin_layout Plain Layout
27896 \begin_inset Formula $\_$
27897 \end_inset
27898
27899
27900 \end_layout
27901
27902 \end_inset
27903 </cell>
27904 </row>
27905 <row>
27906 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
27907 \begin_inset Text
27908
27909 \begin_layout Plain Layout
27910 ^
27911 \begin_inset ERT
27912 status collapsed
27913
27914 \begin_layout Plain Layout
27915
27916
27917 \backslash
27918 leer 
27919 \end_layout
27920
27921 \end_inset
27922
27923
27924 \backslash
27925 circ
27926 \begin_inset Index idx
27927 status collapsed
27928
27929 \begin_layout Plain Layout
27930
27931 \backslash
27932
27933 \end_layout
27934
27935 \end_inset
27936
27937
27938 \end_layout
27939
27940 \end_inset
27941 </cell>
27942 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
27943 \begin_inset Text
27944
27945 \begin_layout Plain Layout
27946 \begin_inset Formula $^{\circ}$
27947 \end_inset
27948
27949
27950 \end_layout
27951
27952 \end_inset
27953 </cell>
27954 </row>
27955 </lyxtabular>
27956
27957 \end_inset
27958
27959
27960 \end_layout
27961
27962 \begin_layout Standard
27963 Das Gradzeichen ° kann dennoch direkt eingegeben werden, wenn der LaTeX-Vorspann
27964  folgende Zeile enthält
27965 \begin_inset Foot
27966 status collapsed
27967
27968 \begin_layout Plain Layout
27969 Mehr dazu ist in 
27970 \begin_inset CommandInset ref
27971 LatexCommand ref
27972 reference "sub:Textzeichen-in-Formeln"
27973
27974 \end_inset
27975
27976  beschrieben.
27977 \end_layout
27978
27979 \end_inset
27980
27981 :
27982 \end_layout
27983
27984 \begin_layout Standard
27985
27986 \series bold
27987
27988 \backslash
27989 DeclareInputText{176}{
27990 \backslash
27991 ifmmode^
27992 \backslash
27993 circ
27994 \backslash
27995 else
27996 \backslash
27997 textdegree
27998 \backslash
27999 fi}
28000 \end_layout
28001
28002 \begin_layout Section
28003 Formelstile
28004 \begin_inset CommandInset label
28005 LatexCommand label
28006 name "sec:Formelstile"
28007
28008 \end_inset
28009
28010
28011 \begin_inset Index idx
28012 status collapsed
28013
28014 \begin_layout Plain Layout
28015 Formel ! Stile
28016 \end_layout
28017
28018 \end_inset
28019
28020
28021 \end_layout
28022
28023 \begin_layout Itemize
28024 Für abgesetzte Formeln gibt es zwei verschiedene Anordnungsstile:
28025 \end_layout
28026
28027 \begin_deeper
28028 \begin_layout Description
28029 Zentriert ist der voreingestellte Standard
28030 \end_layout
28031
28032 \begin_layout Description
28033 Eingerückt dazu muss im Menü 
28034 \family sans
28035 Dokument\SpecialChar \menuseparator
28036 Einstellungen
28037 \family default
28038  unter 
28039 \family sans
28040 Dokumentklasse
28041 \family default
28042  die Option 
28043 \series bold
28044 fleqn
28045 \series default
28046  eingeben werden
28047 \end_layout
28048
28049 \begin_layout Standard
28050 Wird 
28051 \series bold
28052 Eingerückt
28053 \series default
28054  verwendet, kann mit der Länge 
28055 \series bold
28056
28057 \backslash
28058 mathindent
28059 \series default
28060
28061 \begin_inset Index idx
28062 status collapsed
28063
28064 \begin_layout Plain Layout
28065 Befehle ! M ! 
28066 \backslash
28067 mathindent
28068 \end_layout
28069
28070 \end_inset
28071
28072  die Einrückung eingestellt werden.
28073  Soll der Abstand 15
28074 \begin_inset space \thinspace{}
28075 \end_inset
28076
28077 mm betragen, gibt man im LaTeX-Vorspann die Zeile
28078 \end_layout
28079
28080 \begin_layout Standard
28081
28082 \series bold
28083
28084 \backslash
28085 setlength{
28086 \backslash
28087 mathindent}{15mm}
28088 \end_layout
28089
28090 \begin_layout Standard
28091 ein.
28092  Wenn keine Länge vorgegeben wird, wird der voreingestellte Wert von 30
28093 \begin_inset space \thinspace{}
28094 \end_inset
28095
28096 pt verwendet.
28097 \end_layout
28098
28099 \end_deeper
28100 \begin_layout Itemize
28101 Und zwei verschiedene Nummerierungsstile:
28102 \end_layout
28103
28104 \begin_deeper
28105 \begin_layout Description
28106 Rechts ist der voreingestellte Standard
28107 \end_layout
28108
28109 \begin_layout Description
28110 Links dazu muss im Menü 
28111 \family sans
28112 Dokument\SpecialChar \menuseparator
28113 Einstellungen
28114 \family default
28115  unter 
28116 \family sans
28117 Dokumentklasse
28118 \family default
28119  die Option 
28120 \series bold
28121 leqno
28122 \series default
28123  eingeben werden
28124 \end_layout
28125
28126 \end_deeper
28127 \begin_layout Standard
28128
28129 \series bold
28130 fleqn
28131 \series default
28132  und 
28133 \series bold
28134 leqno
28135 \series default
28136  können auch gemeinsam verwendet werden.
28137  Dazu werden beide Optionen, durch ein Komma getrennt, hintereinander geschriebe
28138 n.
28139 \end_layout
28140
28141 \begin_layout Standard
28142 Die eingestellten Stile gelten für alle abgesetzten Formeln eines Dokuments.
28143  Möchte man jedoch in einem Dokument sowohl zentrierte als auch eingerückte
28144  ausgerichtete Formeln setzen, verwendet man den Stil 
28145 \series bold
28146 Zentriert
28147 \series default
28148 .
28149  Die einzurückenden Formeln setzt man dann in eine flalign-Umgebung, siehe
28150  
28151 \begin_inset CommandInset ref
28152 LatexCommand ref
28153 reference "sub:Flalign-Umgebung"
28154
28155 \end_inset
28156
28157 .
28158 \end_layout
28159
28160 \begin_layout Section
28161 Mehrzeilige Formeln
28162 \begin_inset CommandInset label
28163 LatexCommand label
28164 name "sec:Mehrzeilige-Formeln"
28165
28166 \end_inset
28167
28168
28169 \begin_inset Index idx
28170 status collapsed
28171
28172 \begin_layout Plain Layout
28173 Formel ! mehrzeilige
28174 \end_layout
28175
28176 \end_inset
28177
28178
28179 \end_layout
28180
28181 \begin_layout Subsection
28182 Allgemeines
28183 \end_layout
28184
28185 \begin_layout Standard
28186 In LyX werden mehrzeilige Formeln erstellt, wenn man in einer Formel 
28187 \family sans
28188 \series bold
28189 Strg+Enter
28190 \family default
28191 \series default
28192  drückt.
28193  Dies erzeugt entweder eine 
28194 \series bold
28195 eqnarray-Umgebung
28196 \series default
28197 , die in 
28198 \begin_inset CommandInset ref
28199 LatexCommand ref
28200 reference "sub:Eqnarray-Umgebung"
28201
28202 \end_inset
28203
28204  beschrieben ist oder, wenn die Option 
28205 \family sans
28206 AMS-Mathe-Paket verwenden
28207 \family default
28208  in den Dokumenteinstellungen gewählt ist, eine 
28209 \series bold
28210 align-Umgebung
28211 \series default
28212 , die in 
28213 \begin_inset CommandInset ref
28214 LatexCommand ref
28215 reference "sub:Standard-align-Umgebung"
28216
28217 \end_inset
28218
28219  beschrieben ist.
28220  Es wird empfohlen die align-Umgebung zu verwenden, denn sie erscheint in
28221  jedem Fall typographisch korrekt in der Ausgabe.
28222 \end_layout
28223
28224 \begin_layout Standard
28225 Es gibt noch weitere mehrzeilige Formelumgebungen, die über das Menü 
28226 \family sans
28227 Einfügen\SpecialChar \menuseparator
28228 Mathe
28229 \family default
28230  erstellt werden können.
28231  Diese Umgebungen werden in den folgenden Kapiteln beschrieben.
28232 \end_layout
28233
28234 \begin_layout Standard
28235 In allen mehrzeiligen Formelumgebungen erstellt man eine neue Zeile, indem
28236  man 
28237 \family sans
28238 Strg+Enter
28239 \family default
28240  drückt.
28241  Um Spalten hinzuzufügen oder zu entfernen, können die Mathe-Werkzeugleistenknöp
28242 fe 
28243 \begin_inset Graphics
28244         filename ../../images/tabular-feature_append-row.png
28245         scale 85
28246
28247 \end_inset
28248
28249  bzw.
28250 \begin_inset space ~
28251 \end_inset
28252
28253
28254 \begin_inset Graphics
28255         filename ../../images/tabular-feature_delete-row.png
28256         scale 85
28257
28258 \end_inset
28259
28260  oder das Menü 
28261 \family sans
28262 Bearbeiten\SpecialChar \menuseparator
28263 Zeilen & Spalten
28264 \family default
28265  verwendet werden.
28266 \end_layout
28267
28268 \begin_layout Subsubsection
28269 Zeilenabstand
28270 \begin_inset CommandInset label
28271 LatexCommand label
28272 name "sub:Zeilenabstand"
28273
28274 \end_inset
28275
28276
28277 \begin_inset Index idx
28278 status collapsed
28279
28280 \begin_layout Plain Layout
28281 Formel ! mehrzeilige ! Zeilenabstand
28282 \end_layout
28283
28284 \end_inset
28285
28286
28287 \end_layout
28288
28289 \begin_layout Standard
28290 Bei mehrzeiligen Formeln fehlt manchmal etwas Platz zwischen den Zeilen:
28291 \begin_inset Formula 
28292 \begin{eqnarray*}
28293 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}\\
28294 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
28295 \end{eqnarray*}
28296
28297 \end_inset
28298
28299
28300 \end_layout
28301
28302 \begin_layout Standard
28303 In LaTeX wird zusätzlicher Zeilenabstand als optionales Argument des Zeilenumbru
28304 chbefehls angegeben.
28305  Dies ist in LyX aber nicht möglich
28306 \begin_inset Foot
28307 status collapsed
28308
28309 \begin_layout Plain Layout
28310 siehe 
28311 \begin_inset CommandInset href
28312 LatexCommand href
28313 name "LyX-Fehler #1505"
28314 target "http://www.lyx.org/trac/ticket/1505"
28315
28316 \end_inset
28317
28318
28319 \end_layout
28320
28321 \end_inset
28322
28323 , weshalb man die ganze Formel im TeX-Modus eingeben muss.
28324  Um für unser Beispiel Leerraum einzufügen, gibt man am Ende der ersten
28325  Zeile den Befehl 
28326 \series bold
28327
28328 \backslash
28329
28330 \backslash
28331 [3mm]
28332 \series default
28333  ein.
28334  Damit erhält man: 
28335 \begin_inset ERT
28336 status collapsed
28337
28338 \begin_layout Plain Layout
28339
28340
28341 \backslash
28342 begin{eqnarray*}
28343 \end_layout
28344
28345 \begin_layout Plain Layout
28346
28347 B^{2}(B^{2}-2r_{g}^{2}+2x_{0}^{2}-2r_{k}^{2})+4x_{0}^{2}x^{2}+4x_{0}xD &
28348  = & 
28349 \backslash
28350 textrm{-}4x^{2}B^{2}+4x_{0}xB^{2}
28351 \backslash
28352
28353 \backslash
28354 [3mm]
28355 \end_layout
28356
28357 \begin_layout Plain Layout
28358
28359 4x^{2}
28360 \backslash
28361 left(B^{2}+x_{0}^{2}
28362 \backslash
28363 right)+4x_{0}x
28364 \backslash
28365 left(D-B^{2}
28366 \backslash
28367 right)+B^{2}
28368 \backslash
28369 left(B^{2}-2r_{g}^{2}+2x_{0}^{2}-2r_{k}^{2}
28370 \backslash
28371 right) & = & 0
28372 \end_layout
28373
28374 \begin_layout Plain Layout
28375
28376
28377 \backslash
28378 end{eqnarray*}
28379 \end_layout
28380
28381 \end_inset
28382
28383
28384 \end_layout
28385
28386 \begin_layout Standard
28387 \begin_inset VSpace bigskip
28388 \end_inset
28389
28390 Möchte man den Zeilenabstand für alle Zeilen einer Formel festlegen, verändert
28391  man die Länge 
28392 \series bold
28393
28394 \backslash
28395 jot
28396 \series default
28397
28398 \begin_inset Index idx
28399 status collapsed
28400
28401 \begin_layout Plain Layout
28402 Befehle ! J ! 
28403 \backslash
28404 jot
28405 \end_layout
28406
28407 \end_inset
28408
28409 .
28410  Es gilt 
28411 \begin_inset Formula $\mbox{Zeilenabstand}=\mathrm{6\, pt+\backslash jot}$
28412 \end_inset
28413
28414 .
28415  Voreingestellt ist für 
28416 \series bold
28417
28418 \backslash
28419 jot
28420 \series default
28421  der Wert 3
28422 \begin_inset space \thinspace{}
28423 \end_inset
28424
28425 pt.
28426  Um wie im vorigen Beispiel 3
28427 \begin_inset space \thinspace{}
28428 \end_inset
28429
28430 mm zusätzlichen Zeilenabstand zu erzeugen, gibt man den Befehl
28431 \end_layout
28432
28433 \begin_layout Standard
28434
28435 \series bold
28436
28437 \backslash
28438 setlength{
28439 \backslash
28440 jot}{3mm+3pt}
28441 \end_layout
28442
28443 \begin_layout Standard
28444 im TeX-Modus vor der Formel ein.
28445  Das setzt voraus, dass das LaTeX-Paket 
28446 \series bold
28447 calc
28448 \series default
28449
28450 \begin_inset Foot
28451 status collapsed
28452
28453 \begin_layout Plain Layout
28454
28455 \series bold
28456 calc
28457 \series default
28458  ist Teil jeder LaTeX-Standardinstallation.
28459 \end_layout
28460
28461 \end_inset
28462
28463
28464 \begin_inset Index idx
28465 status collapsed
28466
28467 \begin_layout Plain Layout
28468 Pakete ! calc
28469 \end_layout
28470
28471 \end_inset
28472
28473  im LaTeX-Vorspann mit der Zeile
28474 \end_layout
28475
28476 \begin_layout Standard
28477
28478 \series bold
28479
28480 \backslash
28481 usepackage{calc}
28482 \end_layout
28483
28484 \begin_layout Standard
28485 geladen wurde.
28486 \end_layout
28487
28488 \begin_layout Standard
28489 Man erhält: 
28490 \begin_inset ERT
28491 status collapsed
28492
28493 \begin_layout Plain Layout
28494
28495
28496 \backslash
28497 setlength{
28498 \backslash
28499 jot}{3mm+3pt}
28500 \end_layout
28501
28502 \end_inset
28503
28504
28505 \begin_inset Formula 
28506 \begin{eqnarray*}
28507 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}\\
28508 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
28509 \end{eqnarray*}
28510
28511 \end_inset
28512
28513
28514 \end_layout
28515
28516 \begin_layout Standard
28517 \begin_inset ERT
28518 status collapsed
28519
28520 \begin_layout Plain Layout
28521
28522
28523 \backslash
28524 setlength{
28525 \backslash
28526 jot}{3pt}
28527 \end_layout
28528
28529 \end_inset
28530
28531  Um wieder zum voreingestellten Abstand zu wechseln, setzt man 
28532 \series bold
28533
28534 \backslash
28535 jot
28536 \series default
28537  auf den Wert 3
28538 \begin_inset space \thinspace{}
28539 \end_inset
28540
28541 pt.
28542 \end_layout
28543
28544 \begin_layout Subsubsection
28545 Spaltenabstand
28546 \begin_inset CommandInset label
28547 LatexCommand label
28548 name "sub:Spaltenabstand"
28549
28550 \end_inset
28551
28552
28553 \begin_inset Index idx
28554 status collapsed
28555
28556 \begin_layout Plain Layout
28557 Formel ! mehrzeilige ! Spaltenabstand
28558 \end_layout
28559
28560 \end_inset
28561
28562
28563 \end_layout
28564
28565 \begin_layout Standard
28566 Mehrzeilige Formeln bilden eine Matrix.
28567  Eine Formel in der Eqnarray-Umgebung ist z.
28568 \begin_inset space \thinspace{}
28569 \end_inset
28570
28571 B.
28572  eine dreispaltige Matrix.
28573  Durch Änderung des Spaltenabstands in dieser Umgebung, kann man den Leerraum
28574  neben den Relationszeichen ändern.
28575 \end_layout
28576
28577 \begin_layout Standard
28578 Der Spaltenabstand wird mit der Länge 
28579 \series bold
28580
28581 \backslash
28582 arraycolsep
28583 \series default
28584
28585 \begin_inset Index idx
28586 status collapsed
28587
28588 \begin_layout Plain Layout
28589 Befehle ! A ! 
28590 \backslash
28591 arraycolsep
28592 \end_layout
28593
28594 \end_inset
28595
28596  festgelegt, wobei gilt:
28597 \begin_inset Newline newline
28598 \end_inset
28599
28600 Spaltenabstand = 2
28601 \begin_inset space \thinspace{}
28602 \end_inset
28603
28604
28605 \series bold
28606
28607 \backslash
28608 arraycolsep
28609 \series default
28610 .
28611 \begin_inset Newline newline
28612 \end_inset
28613
28614 Der im TeX-Modus eingegebene Befehl
28615 \end_layout
28616
28617 \begin_layout Standard
28618
28619 \series bold
28620
28621 \backslash
28622 setlength{
28623 \backslash
28624 arraycolsep}{1cm}
28625 \end_layout
28626
28627 \begin_layout Standard
28628 bewirkt also für alle folgenden Formeln einen Spaltenabstand von 2
28629 \begin_inset space \thinspace{}
28630 \end_inset
28631
28632 cm.
28633  Um wieder zum voreingestellten Abstand zurückzukehren, setzt man 
28634 \series bold
28635
28636 \backslash
28637 arraycolsep
28638 \series default
28639  auf 5
28640 \begin_inset space \thinspace{}
28641 \end_inset
28642
28643 pt.
28644 \end_layout
28645
28646 \begin_layout Standard
28647 Eine Formel mit 2
28648 \begin_inset space \thinspace{}
28649 \end_inset
28650
28651 cm Spaltenabstand:
28652 \begin_inset ERT
28653 status collapsed
28654
28655 \begin_layout Plain Layout
28656
28657
28658 \backslash
28659 setlength{
28660 \backslash
28661 arraycolsep}{1cm}
28662 \end_layout
28663
28664 \end_inset
28665
28666
28667 \begin_inset Formula 
28668 \begin{eqnarray*}
28669 A & = & B\\
28670 C & \ne & A
28671 \end{eqnarray*}
28672
28673 \end_inset
28674
28675 Eine Formel mit dem für Matrizen voreingestellten Spaltenabstand von 10
28676 \begin_inset space \thinspace{}
28677 \end_inset
28678
28679 pt:
28680 \begin_inset ERT
28681 status collapsed
28682
28683 \begin_layout Plain Layout
28684
28685
28686 \backslash
28687 setlength{
28688 \backslash
28689 arraycolsep}{5pt}
28690 \end_layout
28691
28692 \end_inset
28693
28694
28695 \begin_inset Formula 
28696 \begin{eqnarray*}
28697 A & = & B\\
28698 C & \ne & A
28699 \end{eqnarray*}
28700
28701 \end_inset
28702
28703
28704 \end_layout
28705
28706 \begin_layout Subsubsection
28707 Lange Formeln
28708 \begin_inset Index idx
28709 status collapsed
28710
28711 \begin_layout Plain Layout
28712 Formel ! lange
28713 \end_layout
28714
28715 \end_inset
28716
28717
28718 \end_layout
28719
28720 \begin_layout Standard
28721 Lange Formeln kann man wie folgt setzen:
28722 \end_layout
28723
28724 \begin_layout Itemize
28725 Ist eine Seite der Gleichung deutlich kürzer als die Zeilenbreite, wählt
28726  man man diese als linke Seite und schreibt die rechte über zwei Zeilen:
28727 \begin_inset Formula 
28728 \begin{eqnarray}
28729 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 \\
28730  &  & -\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}
28731 \end{eqnarray}
28732
28733 \end_inset
28734
28735 Das Minuszeichen zu Beginn der zweiten Zeile erscheint eigentlich nicht
28736  als Operator, da es das erste Zeichen der Zeile ist.
28737  Deswegen wäre es nicht von Leerraum umgeben und ließe sich schlecht vom
28738  Bruchstrich unterscheiden.
28739  Um das zu verhindern, wurde mit dem Befehl 
28740 \series bold
28741
28742 \backslash
28743 hspace
28744 \series default
28745  3
28746 \begin_inset space \thinspace{}
28747 \end_inset
28748
28749 pt Leerraum hinter das Minuszeichen eingefügt.
28750 \begin_inset Foot
28751 status collapsed
28752
28753 \begin_layout Plain Layout
28754 mehr zu 
28755 \series bold
28756
28757 \backslash
28758 hspace
28759 \series default
28760  siehe 
28761 \begin_inset CommandInset ref
28762 LatexCommand ref
28763 reference "sub:Variabler-Leerraum"
28764
28765 \end_inset
28766
28767
28768 \end_layout
28769
28770 \end_inset
28771
28772
28773 \begin_inset Index idx
28774 status collapsed
28775
28776 \begin_layout Plain Layout
28777 Befehle ! H ! 
28778 \backslash
28779 hspace
28780 \end_layout
28781
28782 \end_inset
28783
28784
28785 \end_layout
28786
28787 \begin_layout Itemize
28788 Sind beide Seiten der Gleichung zu lang, verwendet man den Befehl 
28789 \series bold
28790
28791 \backslash
28792 lefteqn
28793 \series default
28794
28795 \begin_inset Index idx
28796 status collapsed
28797
28798 \begin_layout Plain Layout
28799 Befehle ! L ! 
28800 \backslash
28801 lefteqn
28802 \end_layout
28803
28804 \end_inset
28805
28806 .
28807  Dieser wird in die erste Spalte der ersten Zeile eingegeben und bewirkt,
28808  dass alle weiteren Eingaben die folgenden Spalten überschreiben:
28809 \begin_inset Formula 
28810 \begin{eqnarray}
28811 \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 \\
28812  &  & -\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 \\
28813  &  & =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}
28814 \end{eqnarray}
28815
28816 \end_inset
28817
28818 Nachdem man 
28819 \series bold
28820
28821 \backslash
28822 lefteqn
28823 \series default
28824  eingegeben hat, befindet sich der Cursor in einem pinkfarbenen Kästchen,
28825  das gegenüber dem blauen leicht verschoben ist.
28826  In dieses wird die Formel eingegeben.
28827 \begin_inset Newline newline
28828 \end_inset
28829
28830 Der Inhalt der weiteren Zeilen wird in die zweite oder eine andere Formelspalte
28831  eingegeben.
28832  Je größer die Spaltennummer in die eingegeben wurde, desto größer ist die
28833  Einrückung.
28834 \begin_inset VSpace medskip
28835 \end_inset
28836
28837
28838 \begin_inset Newline newline
28839 \end_inset
28840
28841
28842 \begin_inset Note Greyedout
28843 status open
28844
28845 \begin_layout Plain Layout
28846 Bei der Verwendung von 
28847 \series bold
28848
28849 \backslash
28850 lefteqn
28851 \series default
28852  ist Folgendes zu beachten:
28853 \end_layout
28854
28855 \begin_layout Itemize
28856 Die Formel nutzt nicht die gesamte Seitenbreite aus.
28857  Würde man in obigem Beispiel der ersten Zeile den Term 
28858 \begin_inset Formula $-B^{2}$
28859 \end_inset
28860
28861  anfügen, befände sich dieser außerhalb des Seitenrands.
28862  Um die Breite besser auszunutzen, kann man zu Beginn der ersten Zeile negativen
28863  Leerraum einfügen.
28864 \end_layout
28865
28866 \begin_layout Itemize
28867 Aufgrund eines Fehlers in LyX kann der Cursor nicht mit der Maus in die
28868  erste Zeile gesetzt werden.
28869 \begin_inset Foot
28870 status collapsed
28871
28872 \begin_layout Plain Layout
28873 \begin_inset CommandInset href
28874 LatexCommand href
28875 name "LyX-Fehler #1429"
28876 target "http://www.lyx.org/trac/ticket/1429"
28877
28878 \end_inset
28879
28880
28881 \end_layout
28882
28883 \end_inset
28884
28885  Man kann den Cursor nur an den Anfang der Zeile setzen und ihn mit den
28886  Pfeiltasten bewegen.
28887 \end_layout
28888
28889 \end_inset
28890
28891
28892 \end_layout
28893
28894 \begin_layout Itemize
28895 Weitere Möglichkeiten lange Formeln zu setzen, bieten die in 
28896 \begin_inset CommandInset ref
28897 LatexCommand ref
28898 reference "sub:Multline-Umgebung"
28899
28900 \end_inset
28901
28902  und 
28903 \begin_inset CommandInset ref
28904 LatexCommand ref
28905 reference "sub:Mehrzeilige-Formelteile"
28906
28907 \end_inset
28908
28909  beschriebenen Umgebungen.
28910 \end_layout
28911
28912 \begin_layout Subsubsection
28913 Mehrzeilige Klammern
28914 \begin_inset CommandInset label
28915 LatexCommand label
28916 name "sub:Mehrzeilige-Klammern"
28917
28918 \end_inset
28919
28920
28921 \begin_inset Index idx
28922 status collapsed
28923
28924 \begin_layout Plain Layout
28925 Klammern ! mehrzeilige
28926 \end_layout
28927
28928 \end_inset
28929
28930
28931 \end_layout
28932
28933 \begin_layout Standard
28934 Bei Klammern, die über mehrere Zeilen gehen, tritt folgendes Problem auf:
28935 \begin_inset Formula 
28936 \begin{eqnarray*}
28937 A & = & \sin(x)\left[\prod_{R=1}^{\infty}\frac{1}{R}+\cdots\right.\\
28938  &  & \left.\cdots+B-D\right]
28939 \end{eqnarray*}
28940
28941 \end_inset
28942
28943
28944 \end_layout
28945
28946 \begin_layout Standard
28947 Die schließende Klammer ist kleiner als die öffnende, denn Klammern variabler
28948  Größe dürfen nicht über mehrere Zeilen gehen.
28949 \end_layout
28950
28951 \begin_layout Standard
28952 Um die Größe für die Klammer der zweiten Zeile anzupassen, beendet man die
28953  erste Zeile mit 
28954 \series bold
28955
28956 \backslash
28957 right.
28958 \series default
28959
28960 \begin_inset Index idx
28961 status collapsed
28962
28963 \begin_layout Plain Layout
28964 Befehle ! R ! 
28965 \backslash
28966 right
28967 \end_layout
28968
28969 \end_inset
28970
28971  und beginnt die zweite Zeile mit 
28972 \series bold
28973
28974 \backslash
28975 left.
28976 \begin_inset Foot
28977 status collapsed
28978
28979 \begin_layout Plain Layout
28980 mehr zu 
28981 \series bold
28982
28983 \backslash
28984 left
28985 \series default
28986  und 
28987 \series bold
28988
28989 \backslash
28990 right
28991 \series default
28992  siehe 
28993 \begin_inset CommandInset ref
28994 LatexCommand ref
28995 reference "sub:Automatische-Klammergrößen"
28996
28997 \end_inset
28998
28999
29000 \end_layout
29001
29002 \end_inset
29003
29004
29005 \series default
29006
29007 \begin_inset Index idx
29008 status collapsed
29009
29010 \begin_layout Plain Layout
29011 Befehle ! L ! 
29012 \backslash
29013 left
29014 \end_layout
29015
29016 \end_inset
29017
29018 .
29019  Nach 
29020 \series bold
29021
29022 \backslash
29023 left.
29024
29025 \series default
29026  gibt man den Befehl 
29027 \series bold
29028
29029 \backslash
29030 vphantom
29031 \series default
29032
29033 \begin_inset ERT
29034 status collapsed
29035
29036 \begin_layout Plain Layout
29037
29038
29039 \backslash
29040 leer 
29041 \end_layout
29042
29043 \end_inset
29044
29045
29046 \series bold
29047
29048 \backslash
29049 prod
29050 \series default
29051 ^
29052 \begin_inset ERT
29053 status collapsed
29054
29055 \begin_layout Plain Layout
29056
29057
29058 \backslash
29059 leer 
29060 \end_layout
29061
29062 \end_inset
29063
29064
29065 \series bold
29066
29067 \backslash
29068 infty
29069 \series default
29070
29071 \begin_inset ERT
29072 status collapsed
29073
29074 \begin_layout Plain Layout
29075
29076
29077 \backslash
29078 leer 
29079 \end_layout
29080
29081 \end_inset
29082
29083
29084 \series bold
29085
29086 \begin_inset Formula $\downarrow$
29087 \end_inset
29088
29089 _R=1}
29090 \series default
29091
29092 \begin_inset Index idx
29093 status collapsed
29094
29095 \begin_layout Plain Layout
29096 Befehle ! V ! 
29097 \backslash
29098 vphantom
29099 \end_layout
29100
29101 \end_inset
29102
29103  ein, denn der Multiplikationsoperator mit seinen Grenzen ist das größte
29104  Symbol der ersten Zeile, und daran soll die zweite Klammer angepasst werden.
29105 \end_layout
29106
29107 \begin_layout Standard
29108 Das Ergebnis sieht so aus:
29109 \begin_inset Formula 
29110 \begin{eqnarray*}
29111 A & = & \sin(x)\left[\prod_{R=1}^{\infty}\frac{1}{R}+\cdots\right.\\
29112  &  & \left.\vphantom{\prod_{R=1}^{\infty}}\cdots+B-D\right]
29113 \end{eqnarray*}
29114
29115 \end_inset
29116
29117
29118 \end_layout
29119
29120 \begin_layout Subsection
29121 Align-Umgebungen
29122 \end_layout
29123
29124 \begin_layout Standard
29125 Align-Umgebungen können für jede Art von mehrzeiligen Formeln verwendet
29126  werden.
29127  Sie sind besonders geeignet um mehrere Formeln nebeneinander zu setzen.
29128 \end_layout
29129
29130 \begin_layout Standard
29131 Align-Umgebungen bestehen aus Spalten.
29132  Die ungeradzahligen Spalten sind rechts-, die geradzahligen linksbündig
29133  ausgerichtet.
29134  Jede Zeile einer Align-Umgebung kann nummeriert werden.
29135 \end_layout
29136
29137 \begin_layout Standard
29138 Align-Umgebung werden über das Menü 
29139 \family sans
29140 Einfügen\SpecialChar \menuseparator
29141 Mathe
29142 \family default
29143  erstellt.
29144  Über das Menü 
29145 \family sans
29146 Bearbeiten\SpecialChar \menuseparator
29147 Mathe\SpecialChar \menuseparator
29148 Formelart
29149 \begin_inset space ~
29150 \end_inset
29151
29152 ändern
29153 \family default
29154  können bereits existierende Formeln in Align-Umgebungen umgewandelt werden.
29155 \end_layout
29156
29157 \begin_layout Standard
29158 Um Spalten hinzuzufügen oder zu entfernen, können die Mathe-Werkzeugleistenknöpf
29159
29160 \begin_inset Graphics
29161         filename ../../images/tabular-feature_append-column.png
29162         scale 85
29163
29164 \end_inset
29165
29166  bzw.
29167 \begin_inset space ~
29168 \end_inset
29169
29170
29171 \begin_inset Graphics
29172         filename ../../images/tabular-feature_delete-column.png
29173         scale 85
29174
29175 \end_inset
29176
29177  oder das Menü 
29178 \family sans
29179 Bearbeiten\SpecialChar \menuseparator
29180 Zeilen & Spalten
29181 \family default
29182  verwendet werden.
29183 \end_layout
29184
29185 \begin_layout Subsubsection
29186 Standard align-Umgebung
29187 \begin_inset CommandInset label
29188 LatexCommand label
29189 name "sub:Standard-align-Umgebung"
29190
29191 \end_inset
29192
29193
29194 \begin_inset Index idx
29195 status collapsed
29196
29197 \begin_layout Plain Layout
29198 Formel ! mehrzeilige ! align-Umgebung
29199 \end_layout
29200
29201 \end_inset
29202
29203
29204 \end_layout
29205
29206 \begin_layout Standard
29207 Diese Align-Umgebung wird erstellt, indem man in einer Formel 
29208 \family sans
29209 Strg+Enter
29210 \family default
29211  drückt oder das Menü 
29212 \family sans
29213 Einfügen\SpecialChar \menuseparator
29214 Mathe\SpecialChar \menuseparator
29215 AMS align-Umge\SpecialChar \-
29216 bung
29217 \family default
29218  aufruft.
29219 \end_layout
29220
29221 \begin_layout Standard
29222 Ein Beispiel für zwei nebeneinander stehende Formeln, die mit einer vierspaltige
29223 n align-Umgebung erzeugt wurden:
29224 \begin_inset Formula 
29225 \begin{align*}
29226 A & =\sin(B) & C & =D\\
29227 C & \ne A & B & \ne D
29228 \end{align*}
29229
29230 \end_inset
29231
29232 Wie man sieht, werden die Formeln in dieser Umgebung so angeordnet, als
29233  würde sich vor der ersten und hinter jeder geraden Spalte ein 
29234 \series bold
29235
29236 \backslash
29237 hfill
29238 \begin_inset Foot
29239 status collapsed
29240
29241 \begin_layout Plain Layout
29242 mehr zu 
29243 \series bold
29244
29245 \backslash
29246 hfill
29247 \series default
29248  siehe 
29249 \begin_inset CommandInset ref
29250 LatexCommand ref
29251 reference "sub:Variabler-Leerraum"
29252
29253 \end_inset
29254
29255
29256 \end_layout
29257
29258 \end_inset
29259
29260
29261 \series default
29262  befinden.
29263  Ist der Formelstil 
29264 \series bold
29265 Eingerückt
29266 \begin_inset Foot
29267 status collapsed
29268
29269 \begin_layout Plain Layout
29270 Formelstile siehe 
29271 \begin_inset CommandInset ref
29272 LatexCommand ref
29273 reference "sec:Formelstile"
29274
29275 \end_inset
29276
29277
29278 \end_layout
29279
29280 \end_inset
29281
29282
29283 \series default
29284  gewählt, wird die Formel ohne den 
29285 \series bold
29286
29287 \backslash
29288 hfill
29289 \series default
29290  vor der ersten Spalte gesetzt.
29291 \end_layout
29292
29293 \begin_layout Subsubsection
29294 Alignat-Umgebung
29295 \begin_inset Index idx
29296 status collapsed
29297
29298 \begin_layout Plain Layout
29299 Formel ! mehrzeilige ! alignat-Umgebung
29300 \end_layout
29301
29302 \end_inset
29303
29304
29305 \end_layout
29306
29307 \begin_layout Standard
29308 In der alignat-Umgebung gibt es keinen vordefinierten Spaltenabstand.
29309  Man kann ihn manuell durch die in 
29310 \begin_inset CommandInset ref
29311 LatexCommand ref
29312 reference "sub:Leerraum"
29313
29314 \end_inset
29315
29316  beschriebenen Leerräume einfügen.
29317 \end_layout
29318
29319 \begin_layout Standard
29320 Das vorige Beispiel in der alignat-Umgebung, bei dem zu Beginn der zweiten
29321  Formel 1
29322 \begin_inset space \thinspace{}
29323 \end_inset
29324
29325 cm Leerraum eingefügt wurde:
29326 \begin_inset Formula 
29327 \begin{alignat*}{2}
29328 A & =\sin(B) & \hspace{1cm}C & =D\\
29329 C & \ne A & B & \ne D
29330 \end{alignat*}
29331
29332 \end_inset
29333
29334 Weil man den Spaltenabstand für jede Spalte einzeln einstellen kann, eignet
29335  sich diese Umgebung besonders für drei und mehr nebeneinander gesetzte
29336  Formeln.
29337 \end_layout
29338
29339 \begin_layout Subsubsection
29340 Flalign-Umgebung
29341 \begin_inset CommandInset label
29342 LatexCommand label
29343 name "sub:Flalign-Umgebung"
29344
29345 \end_inset
29346
29347
29348 \begin_inset Index idx
29349 status collapsed
29350
29351 \begin_layout Plain Layout
29352 Formel ! mehrzeilige ! flalign-Umgebung
29353 \end_layout
29354
29355 \end_inset
29356
29357
29358 \end_layout
29359
29360 \begin_layout Standard
29361 Bei dieser Umgebung werden die ersten beiden Spalten immer so weit links
29362  und die letzten beiden Spalten so weit rechts wie möglich gesetzt.
29363  Dazu ein Beispiel:
29364 \begin_inset Formula 
29365 \begin{flalign*}
29366 A & =1 & B & =2 & C & =3\\
29367 X & =\textrm{-}1 & Y & =\textrm{-}2 & Z & =4
29368 \end{flalign*}
29369
29370 \end_inset
29371
29372
29373 \end_layout
29374
29375 \begin_layout Standard
29376 Erzeugt man eine flalign-Umgebung mit ungerader Spaltenanzahl und gibt in
29377  die letzte Spalte eine leere TeX-Klammer ein, kann man einzelne Formeln
29378  im Dokument links setzen obwohl der Formelstil 
29379 \series bold
29380 Zentriert
29381 \series default
29382  eingestellt ist.
29383  Als Beispiel die eingerückte ausgerichtete Formel 
29384 \begin_inset CommandInset ref
29385 LatexCommand eqref
29386 reference "eq:VolInt"
29387
29388 \end_inset
29389
29390 :
29391 \begin_inset Formula 
29392 \begin{flalign}
29393 \hspace{30pt}\iiint\limits _{V}X\,\mathrm{d}V & =U & {}
29394 \end{flalign}
29395
29396 \end_inset
29397
29398 In den ersten beiden Spalten befindet sich die Formel.
29399  Damit sie wie beim Formelstil 
29400 \series bold
29401 Eingerückt
29402 \series default
29403  vom Rand etwas abgesetzt ist, wurde zu Beginn der ersten Spalte 30
29404 \begin_inset space \thinspace{}
29405 \end_inset
29406
29407 pt Leerraum eingefügt.
29408 \end_layout
29409
29410 \begin_layout Subsection
29411 Eqnarray-Umgebung
29412 \begin_inset CommandInset label
29413 LatexCommand label
29414 name "sub:Eqnarray-Umgebung"
29415
29416 \end_inset
29417
29418
29419 \begin_inset Index idx
29420 status collapsed
29421
29422 \begin_layout Plain Layout
29423 Formel ! mehrzeilige ! Eqnarray-Umgebung
29424 \end_layout
29425
29426 \end_inset
29427
29428
29429 \end_layout
29430
29431 \begin_layout Standard
29432 Hat man diese Umgebung erzeugt, erscheinen drei blaue Kästchen.
29433  Der Inhalt des ersten Kästchens wird rechtsbündig, der des letzten linksbündig
29434  ausgerichtet.
29435  Der Inhalt des mittleren Kästchens erscheint zentriert und etwas kleiner,
29436  da dieses Kästchen nur für Relationzeichen gedacht ist.
29437 \begin_inset Formula 
29438 \begin{eqnarray*}
29439 \frac{ABC}{D} & \frac{ABC}{D} & \frac{ABC}{D}\\
29440 AB & AB & AB\\
29441 A & = & A
29442 \end{eqnarray*}
29443
29444 \end_inset
29445
29446
29447 \end_layout
29448
29449 \begin_layout Subsection
29450 Gather-Umgebung
29451 \begin_inset Index idx
29452 status collapsed
29453
29454 \begin_layout Plain Layout
29455 Formel ! mehrzeilige ! Gather-Umgebung
29456 \end_layout
29457
29458 \end_inset
29459
29460
29461 \end_layout
29462
29463 \begin_layout Standard
29464 Diese Umgebung besteht nur aus einer Spalte, deren Inhalt zentriert ist.
29465  Jede Zeile kann nummeriert werden.
29466 \begin_inset Formula 
29467 \begin{gather}
29468 A=1\\
29469 X=\textrm{-}1
29470 \end{gather}
29471
29472 \end_inset
29473
29474
29475 \end_layout
29476
29477 \begin_layout Subsection
29478 Multline-Umgebung
29479 \begin_inset CommandInset label
29480 LatexCommand label
29481 name "sub:Multline-Umgebung"
29482
29483 \end_inset
29484
29485
29486 \begin_inset Index idx
29487 status collapsed
29488
29489 \begin_layout Plain Layout
29490 Formel ! mehrzeilige ! Multline-Umgebung
29491 \end_layout
29492
29493 \end_inset
29494
29495
29496 \end_layout
29497
29498 \begin_layout Standard
29499 Die multline-Umgebung besteht wie die Gather-Umgebung nur aus einer Spalte.
29500  Jedoch ist die erste Zeile links, die letzte rechts ausgerichtet.
29501  Alle anderen Zeilen sind zentriert.
29502  Dadurch eignet sich diese Umgebung besonders für lange Formeln.
29503  Als Beispiel Formel 
29504 \begin_inset CommandInset ref
29505 LatexCommand eqref
29506 reference "eq:lefteqn"
29507
29508 \end_inset
29509
29510  in der multline-Umgebung:
29511 \begin_inset Formula 
29512 \begin{multline}
29513 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}\\
29514 -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}\\
29515 =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}}
29516 \end{multline}
29517
29518 \end_inset
29519
29520
29521 \end_layout
29522
29523 \begin_layout Standard
29524 In der Ausgabe erscheint nur die letzte (erste) Zeile einer multline-Umgebung
29525  nummeriert, wenn rechts (links) nummeriert wird.
29526 \begin_inset Foot
29527 status collapsed
29528
29529 \begin_layout Plain Layout
29530 Nummerierungsstile siehe 
29531 \begin_inset CommandInset ref
29532 LatexCommand ref
29533 reference "sec:Formelstile"
29534
29535 \end_inset
29536
29537
29538 \end_layout
29539
29540 \end_inset
29541
29542
29543 \end_layout
29544
29545 \begin_layout Standard
29546 Mit den Befehlen 
29547 \series bold
29548
29549 \backslash
29550 shoveright
29551 \series default
29552
29553 \begin_inset Index idx
29554 status collapsed
29555
29556 \begin_layout Plain Layout
29557 Befehle ! S ! 
29558 \backslash
29559 shoveright
29560 \end_layout
29561
29562 \end_inset
29563
29564  und 
29565 \series bold
29566
29567 \backslash
29568 shoveleft
29569 \series default
29570
29571 \begin_inset Index idx
29572 status collapsed
29573
29574 \begin_layout Plain Layout
29575 Befehle ! S ! 
29576 \backslash
29577 shoveleft
29578 \end_layout
29579
29580 \end_inset
29581
29582  kann eine zentrierte Zeile rechts bzw.
29583  links ausgerichtet werden.
29584  Die Befehle werden folgendermaßen verwendet:
29585 \end_layout
29586
29587 \begin_layout Standard
29588
29589 \series bold
29590
29591 \backslash
29592 shoveright{Zeileninhalt}
29593 \series default
29594  bzw.
29595  
29596 \series bold
29597
29598 \backslash
29599 shoveleft{Zeileninhalt}
29600 \end_layout
29601
29602 \begin_layout Standard
29603 \begin_inset VSpace medskip
29604 \end_inset
29605
29606 Die Länge 
29607 \series bold
29608
29609 \backslash
29610 multlinegap
29611 \series default
29612
29613 \begin_inset Index idx
29614 status collapsed
29615
29616 \begin_layout Plain Layout
29617 Befehle ! M ! 
29618 \backslash
29619 multlinegap
29620 \end_layout
29621
29622 \end_inset
29623
29624  legt den Abstand der ersten Zeile vom linken Seitenrand fest.
29625  Voreingestellt ist die Länge 0
29626 \begin_inset space \thinspace{}
29627 \end_inset
29628
29629 pt.
29630 \end_layout
29631
29632 \begin_layout Standard
29633 Als Beispiel obige Formel, vor der im TeX-Modus der Befehl
29634 \end_layout
29635
29636 \begin_layout Standard
29637
29638 \series bold
29639
29640 \backslash
29641 setlength{
29642 \backslash
29643 multlinegap}{2cm}
29644 \end_layout
29645
29646 \begin_layout Standard
29647 eingegeben wurde:
29648 \begin_inset ERT
29649 status collapsed
29650
29651 \begin_layout Plain Layout
29652
29653
29654 \backslash
29655 setlength{
29656 \backslash
29657 multlinegap}{2cm}
29658 \end_layout
29659
29660 \end_inset
29661
29662
29663 \begin_inset Formula 
29664 \begin{multline}
29665 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}\\
29666 \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}}\\
29667 =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}}
29668 \end{multline}
29669
29670 \end_inset
29671
29672
29673 \begin_inset ERT
29674 status collapsed
29675
29676 \begin_layout Plain Layout
29677
29678
29679 \backslash
29680 setlength{
29681 \backslash
29682 multlinegap}{0pt}
29683 \end_layout
29684
29685 \end_inset
29686
29687
29688 \end_layout
29689
29690 \begin_layout Standard
29691 Die zweite Zeile wurde mit 
29692 \series bold
29693
29694 \backslash
29695 shoveleft
29696 \series default
29697  linksbündig ausgerichtet.
29698 \end_layout
29699
29700 \begin_layout Subsection
29701 Mehrzeilige Formelteile
29702 \begin_inset CommandInset label
29703 LatexCommand label
29704 name "sub:Mehrzeilige-Formelteile"
29705
29706 \end_inset
29707
29708
29709 \begin_inset Index idx
29710 status collapsed
29711
29712 \begin_layout Plain Layout
29713 Formel ! mehrzeilige ! Formelteile
29714 \end_layout
29715
29716 \end_inset
29717
29718
29719 \end_layout
29720
29721 \begin_layout Standard
29722 Möchte man nur Teile einer Formel mehrzeilig darstellen, verwendet man eine
29723  der folgenden Umgebungen: 
29724 \series bold
29725 aligned
29726 \series default
29727
29728 \series bold
29729 alignedat
29730 \series default
29731
29732 \series bold
29733 gathered
29734 \series default
29735  oder 
29736 \series bold
29737 split
29738 \series default
29739 .
29740  Sie können über das Menü 
29741 \family sans
29742 Einfügen\SpecialChar \menuseparator
29743 Mathe
29744 \family default
29745  oder mit Befehlen eingefügt werden, wie in diesem Abschnitt beschrieben.
29746 \end_layout
29747
29748 \begin_layout Standard
29749 Die ersten drei haben dieselben Eigenschaften wie die entsprechenden mehrzeilige
29750 n Formel\SpecialChar \-
29751 umgebungen.
29752  Man kann jedoch zusätzlich weitere Formelteile daneben setzen.
29753  Dazu ein Beispiel:
29754 \begin_inset Formula 
29755 \[
29756 \left.\begin{aligned}\Delta x\Delta p & \ge\frac{\hbar}{2}\\
29757 \Delta E\Delta t & \ge\frac{\hbar}{2}
29758 \end{aligned}
29759 \right\} \textrm{Unbestimmtheitsrelationen}
29760 \]
29761
29762 \end_inset
29763
29764
29765 \end_layout
29766
29767 \begin_layout Standard
29768 Um diese Formel zu erhalten, wird eine abgesetzte Formel erstellt, in die
29769  der Befehl 
29770 \series bold
29771
29772 \backslash
29773 aligned
29774 \series default
29775
29776 \begin_inset Index idx
29777 status collapsed
29778
29779 \begin_layout Plain Layout
29780 Befehle ! A ! 
29781 \backslash
29782 aligned
29783 \end_layout
29784
29785 \end_inset
29786
29787  eingegeben wird.
29788  Es erscheint eine lila Box um das blaue Formelkästchen in der man nun Spalten
29789  und Zeilen hinzufügen kann.
29790  Außerhalb der mehrzeiligen Umgebung können Formelteile, wie die Klammer,
29791  gesetzt werden.
29792 \end_layout
29793
29794 \begin_layout Standard
29795 Die aligned-Umgebung eignet sich auch für lange Formeln, deren Zeilen horizontal
29796  ausgerichtet sind.
29797  Verwendet man aligned in einer abgesetzten Formel, hat das den Vorteil,
29798  dass die Formelnummer vertikal mittig hinter den Zeilen steht.
29799  Als Beispiel Formel 
29800 \begin_inset CommandInset ref
29801 LatexCommand eqref
29802 reference "eq:kurzlang"
29803
29804 \end_inset
29805
29806  in der aligned-Umgebung:
29807 \begin_inset Formula 
29808 \begin{equation}
29809 \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}|}\\
29810  & -\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}|}
29811 \end{aligned}
29812 \end{equation}
29813
29814 \end_inset
29815
29816
29817 \end_layout
29818
29819 \begin_layout Standard
29820 Möchte man die Umgebung 
29821 \series bold
29822 alignedat
29823 \series default
29824
29825 \series bold
29826 gathered
29827 \series default
29828  oder 
29829 \series bold
29830 split
29831 \series default
29832  verwenden, gibt man den Befehl 
29833 \series bold
29834
29835 \backslash
29836 alignedat
29837 \series default
29838 ,
29839 \begin_inset Index idx
29840 status collapsed
29841
29842 \begin_layout Plain Layout
29843 Befehle ! A ! 
29844 \backslash
29845 alignedat
29846 \end_layout
29847
29848 \end_inset
29849
29850  
29851 \series bold
29852
29853 \backslash
29854 gathered
29855 \series default
29856
29857 \begin_inset Index idx
29858 status collapsed
29859
29860 \begin_layout Plain Layout
29861 Befehle ! G ! 
29862 \backslash
29863 gathered
29864 \end_layout
29865
29866 \end_inset
29867
29868  bzw.
29869  
29870 \series bold
29871
29872 \backslash
29873 split
29874 \series default
29875
29876 \begin_inset Index idx
29877 status collapsed
29878
29879 \begin_layout Plain Layout
29880 Befehle ! S ! 
29881 \backslash
29882 split
29883 \end_layout
29884
29885 \end_inset
29886
29887  ein.
29888  Die split-Umgebung hat dieselben Eigenschaften wie die aligned-Umgebung,
29889  jedoch darf sie nur zwei Spalten enthalten.
29890 \end_layout
29891
29892 \begin_layout Subsection
29893 Text in mehrzeiligen Formeln
29894 \begin_inset CommandInset label
29895 LatexCommand label
29896 name "sub:Text-in-mehrzeiligen"
29897
29898 \end_inset
29899
29900
29901 \begin_inset Index idx
29902 status collapsed
29903
29904 \begin_layout Plain Layout
29905 Text ! in Formeln
29906 \end_layout
29907
29908 \end_inset
29909
29910
29911 \begin_inset Index idx
29912 status collapsed
29913
29914 \begin_layout Plain Layout
29915 Formel ! mehrzeilige ! Text
29916 \end_layout
29917
29918 \end_inset
29919
29920
29921 \end_layout
29922
29923 \begin_layout Standard
29924 Bei den Align-Umgebungen sowie der multline- und gather-Umgebung besteht
29925  die Möglichkeit Text einzufügen, der in einer eigenen Zeile erscheint und
29926  die Ausrichtung der Spalten nicht beeinflusst.
29927  Dazu wird der Befehl 
29928 \series bold
29929
29930 \backslash
29931 intertext
29932 \begin_inset Index idx
29933 status collapsed
29934
29935 \begin_layout Plain Layout
29936 Befehle ! I ! 
29937 \backslash
29938 intertext
29939 \end_layout
29940
29941 \end_inset
29942
29943
29944 \series default
29945  nach folgendem Schema benutzt:
29946 \end_layout
29947
29948 \begin_layout Standard
29949
29950 \series bold
29951
29952 \backslash
29953 intertext{Text}
29954 \end_layout
29955
29956 \begin_layout Standard
29957 Der Text sollte nicht länger als eine Zeile sein, da er nicht umgebrochen
29958  werden kann.
29959  Weil LyX 
29960 \series bold
29961
29962 \backslash
29963 intertext
29964 \series default
29965  noch nicht direkt unterstützt, schreibt man den Text als mathematischen
29966  Text.
29967  
29968 \series bold
29969
29970 \backslash
29971 intertext
29972 \series default
29973  muss dabei zu Beginn einer Zeile stehen und erscheint in der Ausgabe über
29974  dieser Zeile.
29975  Ein Beispiel bei dem der Text zu Beginn der zweiten Zeile eingegeben wurde:
29976 \begin_inset Formula 
29977 \begin{align}
29978 I & =a\sqrt{2}\int_{0}^{2\pi}\sqrt{1+\cos(\phi)}\;\mathrm{d}\phi\\
29979 \intertext{\text{Integrand ist symmetrisch zu \ensuremath{\phi=\pi}, daher}} & =2a\sqrt{2}\int_{0}^{\pi}\sqrt{1+\cos(\phi)}\;\mathrm{d}\phi
29980 \end{align}
29981
29982 \end_inset
29983
29984
29985 \end_layout
29986
29987 \begin_layout Section
29988 Formelnummerierung
29989 \begin_inset Index idx
29990 status collapsed
29991
29992 \begin_layout Plain Layout
29993 Formelnummerierung
29994 \end_layout
29995
29996 \end_inset
29997
29998
29999 \begin_inset Index idx
30000 status collapsed
30001
30002 \begin_layout Plain Layout
30003 Formel ! Nummerierung|see
30004 \begin_inset ERT
30005 status collapsed
30006
30007 \begin_layout Plain Layout
30008
30009 {
30010 \end_layout
30011
30012 \end_inset
30013
30014 Formelnummerierung
30015 \begin_inset ERT
30016 status collapsed
30017
30018 \begin_layout Plain Layout
30019
30020 }
30021 \end_layout
30022
30023 \end_inset
30024
30025
30026 \end_layout
30027
30028 \end_inset
30029
30030
30031 \end_layout
30032
30033 \begin_layout Subsection
30034 Allgemeines
30035 \end_layout
30036
30037 \begin_layout Standard
30038 Nummerierte Formeln können mit dem Menü 
30039 \family sans
30040 Einfügen\SpecialChar \menuseparator
30041 Mathe\SpecialChar \menuseparator
30042 Nummerierte
30043 \begin_inset space ~
30044 \end_inset
30045
30046 Formel
30047 \family default
30048  (Tastenkürzel 
30049 \family sans
30050 Strg+Alt
30051 \begin_inset space ~
30052 \end_inset
30053
30054 N
30055 \family default
30056 ) erstellt, bestehende Formeln über das Menü 
30057 \family sans
30058 Bearbeiten\SpecialChar \menuseparator
30059 Mathe\SpecialChar \menuseparator
30060 Nummerierung
30061 \begin_inset space ~
30062 \end_inset
30063
30064 an/aus
30065 \family default
30066  (Tastenkürzel 
30067 \family sans
30068 Alt+M
30069 \begin_inset space ~
30070 \end_inset
30071
30072 N
30073 \family default
30074 ) nummeriert werden.
30075  Die Formelnummer erscheint in LyX hinter der Formel als Raute in runden
30076  Klammern.
30077  Im Ausdruck erscheint anstelle der Raute die Formelnummer.
30078 \end_layout
30079
30080 \begin_layout Standard
30081 Wird in mehrzeiligen Formeln die Nummerierung angeschaltet, werden alle
30082  Zeilen nummeriert.
30083  Man kann jedoch über das Menü 
30084 \family sans
30085 Bearbeiten\SpecialChar \menuseparator
30086 Mathe\SpecialChar \menuseparator
30087 Zeilennummerierung an/aus
30088 \family default
30089  (Tastenkürzel 
30090 \family sans
30091 Alt+M
30092 \begin_inset space ~
30093 \end_inset
30094
30095 Shift+N
30096 \family default
30097 ) für jede Zeile die Nummerierung festlegen.
30098 \end_layout
30099
30100 \begin_layout Standard
30101 Außer eingebetteten können alle Formeln in zwei verschiedenen Stilen nummeriert
30102  werden, siehe 
30103 \begin_inset CommandInset ref
30104 LatexCommand ref
30105 reference "sec:Formelstile"
30106
30107 \end_inset
30108
30109 .
30110 \end_layout
30111
30112 \begin_layout Subsection
30113 Querverweise
30114 \begin_inset Index idx
30115 status collapsed
30116
30117 \begin_layout Plain Layout
30118 Querverweise ! auf Formeln
30119 \end_layout
30120
30121 \end_inset
30122
30123
30124 \end_layout
30125
30126 \begin_layout Standard
30127 Es kann auf alle Formeln verwiesen werden, die eine Marke besitzen.
30128  Eine Marke wird mit dem Menü 
30129 \family sans
30130 Einfügen\SpecialChar \menuseparator
30131 Marke
30132 \family default
30133  oder dem Werkzeugleistenknopf 
30134 \begin_inset Graphics
30135         filename ../../images/label-insert.png
30136         scale 85
30137
30138 \end_inset
30139
30140  gesetzt.
30141  Dabei muss sich der Cursor in einer abgesetzten Formel befinden.
30142  Alternativ klickt man mit rechts auf die Formel und wählt 
30143 \family sans
30144 Formelmarke
30145 \family default
30146 .
30147  Es erscheint ein Eingabefeld mit dem voreingestellten Eintrag 
30148 \series bold
30149 eq:
30150 \series default
30151 , nachdem der eigentliche Markenname eingegeben wird.
30152  Der voreingestellte Eintrag steht für 
30153 \begin_inset Quotes gld
30154 \end_inset
30155
30156 equation
30157 \begin_inset Quotes grd
30158 \end_inset
30159
30160  und erleichtert bei größeren Dokumenten die Zuordnung, dass die Marke zu
30161  einer Formel und nicht zu einem Kapitel gehört.
30162  Um eine Marke zu ändern, wählt man wieder das Menü 
30163 \family sans
30164 Einfügen\SpecialChar \menuseparator
30165 Marke
30166 \family default
30167  oder man klickt mit rechts auf eine Formel und dann auf 
30168 \family sans
30169 Formelmarke
30170 \family default
30171 .
30172 \end_layout
30173
30174 \begin_layout Standard
30175 Der Name der Marke erscheint in LyX in zwei runden Klammern hinter der Formel.
30176  Eine Formel mit Marke wird immer nummeriert.
30177 \end_layout
30178
30179 \begin_layout Standard
30180 Querverweise werden mit dem Menü 
30181 \family sans
30182 Einfügen\SpecialChar \menuseparator
30183 Querverweis
30184 \family default
30185  oder dem Werkzeugleistenknopf 
30186 \begin_inset Graphics
30187         filename ../../images/dialog-show-new-inset_ref.png
30188         scale 85
30189
30190 \end_inset
30191
30192  eingefügt.
30193  Ein Querverweis auf Formeln erscheint im Ausdruck als Formelnummer.
30194  Wenn man im Querverweis Dialogfenster das Format 
30195 \series bold
30196 (<Querverweis>)
30197 \series default
30198  wählt, erscheint der Querverweis als Formelnummer in Klammern.
30199 \begin_inset Newline newline
30200 \end_inset
30201
30202 Drückt man in LyX mit der rechten Maustaste auf einen Querverweis, gelangt
30203  man zur Formel auf die verwiesen wird.
30204 \end_layout
30205
30206 \begin_layout Standard
30207 Als Beispiel folgen Querverweise zu Formeln aus diesem Kapitel:
30208 \begin_inset Note Note
30209 status open
30210
30211 \begin_layout Plain Layout
30212 Man beachte die unterschiedlichen Querverweistypen.
30213 \end_layout
30214
30215 \end_inset
30216
30217
30218 \end_layout
30219
30220 \begin_layout Standard
30221 Die Gleichungen 
30222 \begin_inset CommandInset ref
30223 LatexCommand eqref
30224 reference "eq:tag"
30225
30226 \end_inset
30227
30228  und 
30229 \begin_inset CommandInset ref
30230 LatexCommand eqref
30231 reference "eq:c"
30232
30233 \end_inset
30234
30235  sind äquivalent.
30236  In (
30237 \begin_inset CommandInset ref
30238 LatexCommand ref
30239 reference "eq:Lat"
30240
30241 \end_inset
30242
30243 ) werden im Gegensatz zu (
30244 \begin_inset CommandInset ref
30245 LatexCommand ref
30246 reference "eq:Roem"
30247
30248 \end_inset
30249
30250 ) große lateinische Buchstaben zur Nummerierung verwendet.
30251 \end_layout
30252
30253 \begin_layout Standard
30254 \begin_inset VSpace medskip
30255 \end_inset
30256
30257 Ist im Argument von 
30258 \series bold
30259
30260 \backslash
30261 tag
30262 \begin_inset Foot
30263 status collapsed
30264
30265 \begin_layout Plain Layout
30266
30267 \series bold
30268
30269 \backslash
30270 tag
30271 \series default
30272  ist in 
30273 \begin_inset CommandInset ref
30274 LatexCommand ref
30275 reference "sub:Benutzerdefinierte-Nummerierung"
30276
30277 \end_inset
30278
30279  beschrieben.
30280 \end_layout
30281
30282 \end_inset
30283
30284
30285 \series default
30286  wie in 
30287 \begin_inset CommandInset ref
30288 LatexCommand ref
30289 reference "sub:Absatzboxen"
30290
30291 \end_inset
30292
30293  eine Box angegeben, kann nicht auf die Formel verwiesen werden.
30294 \end_layout
30295
30296 \begin_layout Subsection
30297 Unternummerierung
30298 \begin_inset Index idx
30299 status collapsed
30300
30301 \begin_layout Plain Layout
30302 Formelnummerierung ! Unternummerierung
30303 \end_layout
30304
30305 \end_inset
30306
30307
30308 \end_layout
30309
30310 \begin_layout Standard
30311 Möchte man Formeln weiter untergliedern, kann man das mit Hilfe der Befehle
30312  
30313 \begin_inset Newline newline
30314 \end_inset
30315
30316
30317 \series bold
30318
30319 \backslash
30320 begin{subequations}
30321 \series default
30322  und 
30323 \series bold
30324
30325 \backslash
30326 end{subequations}
30327 \series default
30328  erreichen.
30329  Beide Befehle werden im TeX-Modus eingegeben.
30330 \end_layout
30331
30332 \begin_layout Standard
30333 Dazu ein Beispiel:
30334 \begin_inset Formula 
30335 \begin{equation}
30336 A=C-B\label{eq:a}
30337 \end{equation}
30338
30339 \end_inset
30340
30341
30342 \begin_inset ERT
30343 status collapsed
30344
30345 \begin_layout Plain Layout
30346
30347
30348 \backslash
30349 addtocounter{equation}{-1}
30350 \end_layout
30351
30352 \end_inset
30353
30354
30355 \begin_inset ERT
30356 status collapsed
30357
30358 \begin_layout Plain Layout
30359
30360
30361 \backslash
30362 begin{subequations}
30363 \end_layout
30364
30365 \end_inset
30366
30367
30368 \begin_inset VSpace -5mm
30369 \end_inset
30370
30371
30372 \begin_inset Formula 
30373 \begin{equation}
30374 B=C-A\label{eq:b}
30375 \end{equation}
30376
30377 \end_inset
30378
30379
30380 \begin_inset Formula 
30381 \begin{equation}
30382 C=A+B\label{eq:c}
30383 \end{equation}
30384
30385 \end_inset
30386
30387
30388 \end_layout
30389
30390 \begin_layout Standard
30391 \begin_inset ERT
30392 status collapsed
30393
30394 \begin_layout Plain Layout
30395
30396
30397 \backslash
30398 end{subequations}
30399 \end_layout
30400
30401 \end_inset
30402
30403
30404 \end_layout
30405
30406 \begin_layout Standard
30407 Um das Beispiel zu erstellen, geht man folgendermaßen vor:
30408 \end_layout
30409
30410 \begin_layout Enumerate
30411 erste Formel eingeben
30412 \end_layout
30413
30414 \begin_layout Enumerate
30415
30416 \series bold
30417
30418 \backslash
30419 addtocounter{equation}{-1} 
30420 \backslash
30421 begin{subequations}
30422 \begin_inset Index idx
30423 status collapsed
30424
30425 \begin_layout Plain Layout
30426 Befehle ! A ! 
30427 \backslash
30428 addtocounter
30429 \end_layout
30430
30431 \end_inset
30432
30433
30434 \begin_inset Newline newline
30435 \end_inset
30436
30437
30438 \series default
30439 nach der ersten Formel einfügen
30440 \end_layout
30441
30442 \begin_layout Enumerate
30443 zweite Formel eingeben
30444 \end_layout
30445
30446 \begin_layout Enumerate
30447 dritte Formel eingeben
30448 \end_layout
30449
30450 \begin_layout Enumerate
30451
30452 \series bold
30453
30454 \backslash
30455 end{subequations}
30456 \series default
30457  nach der dritten Formel einfügen
30458 \end_layout
30459
30460 \begin_layout Standard
30461 Jede Formel, die zwischen den Befehlen 
30462 \series bold
30463
30464 \backslash
30465 begin
30466 \series default
30467  und 
30468 \series bold
30469
30470 \backslash
30471 end
30472 \series default
30473  steht, wird mit a, b, c, \SpecialChar \ldots{}
30474  untergliedert.
30475  Bei mehrzeiligen Formeln wird jede Zeile untergliedert.
30476  Alle untergliederten Formeln gelten als 
30477 \emph on
30478 eine
30479 \emph default
30480  nummerierte Formel.
30481  Da jede nummerierte Formel den Formelzähler 
30482 \series bold
30483 equation
30484 \series default
30485  um Eins erhöht, ist der Befehl 
30486 \series bold
30487
30488 \backslash
30489 addtocounter
30490 \series default
30491  notwendig um den Zähler wieder zu erniedrigen.
30492  Ansonsten würden die Formeln 
30493 \begin_inset CommandInset ref
30494 LatexCommand eqref
30495 reference "eq:a"
30496
30497 \end_inset
30498
30499
30500 \begin_inset CommandInset ref
30501 LatexCommand eqref
30502 reference "eq:b"
30503
30504 \end_inset
30505
30506
30507 \begin_inset CommandInset ref
30508 LatexCommand eqref
30509 reference "eq:c"
30510
30511 \end_inset
30512
30513  als 
30514 \begin_inset CommandInset ref
30515 LatexCommand eqref
30516 reference "eq:a"
30517
30518 \end_inset
30519
30520
30521 \begin_inset CommandInset ref
30522 LatexCommand eqref
30523 reference "eq:d"
30524
30525 \end_inset
30526
30527
30528 \begin_inset CommandInset ref
30529 LatexCommand eqref
30530 reference "eq:f"
30531
30532 \end_inset
30533
30534  nummeriert werden.
30535 \end_layout
30536
30537 \begin_layout Standard
30538 Durch die Eingabe der Befehle im TeX-Modus wird zwischen den ersten beiden
30539  Formeln automatisch etwas Leerraum erstellt.
30540  Um dies rückgängig zu machen, fügt man nach dem Befehl 
30541 \series bold
30542
30543 \backslash
30544 begin{subequations}
30545 \series default
30546  -5
30547 \begin_inset space \thinspace{}
30548 \end_inset
30549
30550 mm vertikalen Leerraum ein.
30551  Ist der Formelstil 
30552 \series bold
30553 Eingerückt
30554 \begin_inset Foot
30555 status collapsed
30556
30557 \begin_layout Plain Layout
30558 Formelstile siehe 
30559 \begin_inset CommandInset ref
30560 LatexCommand ref
30561 reference "sec:Formelstile"
30562
30563 \end_inset
30564
30565
30566 \end_layout
30567
30568 \end_inset
30569
30570
30571 \series default
30572  gewählt, fügt man -7
30573 \begin_inset space \thinspace{}
30574 \end_inset
30575
30576 mm Leerraum ein.
30577 \end_layout
30578
30579 \begin_layout Standard
30580 Hier ist ein Beispiel für mehrzeilige Formeln, bei dem die Nummerierung
30581  der zweiten Zeile abgeschaltet wurde:
30582 \begin_inset ERT
30583 status collapsed
30584
30585 \begin_layout Plain Layout
30586
30587
30588 \backslash
30589 begin{subequations}
30590 \end_layout
30591
30592 \end_inset
30593
30594
30595 \begin_inset Formula 
30596 \begin{eqnarray}
30597 A & = & (B-Z)^{2}=(B-Z)(B-Z)\label{eq:d}\\
30598  & = & B^{2}-ZB-BZ+Z^{²}\nonumber \\
30599  & = & B^{2}-2BZ+Z^{2}\label{eq:f}
30600 \end{eqnarray}
30601
30602 \end_inset
30603
30604
30605 \begin_inset ERT
30606 status collapsed
30607
30608 \begin_layout Plain Layout
30609
30610
30611 \backslash
30612 end{subequations}
30613 \end_layout
30614
30615 \end_inset
30616
30617
30618 \end_layout
30619
30620 \begin_layout Subsection
30621 Benutzerdefinierte Nummerierung
30622 \begin_inset CommandInset label
30623 LatexCommand label
30624 name "sub:Benutzerdefinierte-Nummerierung"
30625
30626 \end_inset
30627
30628
30629 \begin_inset Index idx
30630 status collapsed
30631
30632 \begin_layout Plain Layout
30633 Formelnummerierung ! benutzerdefinierte
30634 \end_layout
30635
30636 \end_inset
30637
30638
30639 \end_layout
30640
30641 \begin_layout Standard
30642 \begin_inset Index idx
30643 status collapsed
30644
30645 \begin_layout Plain Layout
30646 Formelnummerierung ! eigene Klammern
30647 \end_layout
30648
30649 \end_inset
30650
30651 Bei der Standardnummerierung werden um die Formelnummern runde Klammern
30652  gesetzt.
30653  Will man diese Klammern z.
30654 \begin_inset space \thinspace{}
30655 \end_inset
30656
30657 B.
30658  durch senkrechte Striche ersetzen, gibt man im LaTeX-Vorspann Folgendes
30659  an:
30660 \end_layout
30661
30662 \begin_layout Standard
30663
30664 \series bold
30665
30666 \backslash
30667 def
30668 \backslash
30669 tagform@#1{
30670 \backslash
30671 maketag@@@{|#1|}}
30672 \series default
30673
30674 \begin_inset Note Note
30675 status collapsed
30676
30677 \begin_layout Plain Layout
30678 Dieses Makro ist zum Testen bereits im LaTeX-Vorspann angegeben.
30679  Damit es wirksam wird, muss das Prozentzeichen am Zeilenbeginn entfernt
30680  werden.
30681 \end_layout
30682
30683 \end_inset
30684
30685
30686 \end_layout
30687
30688 \begin_layout Standard
30689 Möchte man andere Zeichen haben, ersetzt man die Striche neben 
30690 \series bold
30691 #1
30692 \series default
30693  durch ein oder mehrere gewünschte Zeichen.
30694  Möchte man nur die Formelnummer haben, lässt man die Striche weg.
30695 \end_layout
30696
30697 \begin_layout Standard
30698 \begin_inset VSpace bigskip
30699 \end_inset
30700
30701 Soll statt einer fortlaufenden Nummer ein beliebiger Ausdruck in den Klammern
30702  hinter der Formel stehen, benutzt man den Befehl 
30703 \series bold
30704
30705 \backslash
30706 tag
30707 \series default
30708
30709 \begin_inset Index idx
30710 status collapsed
30711
30712 \begin_layout Plain Layout
30713 Befehle ! T ! 
30714 \backslash
30715 tag
30716 \end_layout
30717
30718 \end_inset
30719
30720 :
30721 \begin_inset Formula 
30722 \begin{equation}
30723 A+B=C\tag{etwas}\label{eq:tag}
30724 \end{equation}
30725
30726 \end_inset
30727
30728  In diesem Beispiel wurde in der Formel der Befehl 
30729 \series bold
30730
30731 \backslash
30732 tag
30733 \series default
30734
30735 \begin_inset ERT
30736 status collapsed
30737
30738 \begin_layout Plain Layout
30739
30740
30741 \backslash
30742 leer 
30743 \end_layout
30744
30745 \end_inset
30746
30747
30748 \series bold
30749 etwas
30750 \series default
30751  eingegeben.
30752 \end_layout
30753
30754 \begin_layout Standard
30755 Gibt man stattdessen 
30756 \series bold
30757
30758 \backslash
30759 tag*
30760 \series default
30761
30762 \begin_inset ERT
30763 status collapsed
30764
30765 \begin_layout Plain Layout
30766
30767
30768 \backslash
30769 leer 
30770 \end_layout
30771
30772 \end_inset
30773
30774
30775 \series bold
30776 etwas
30777 \series default
30778  ein, verhindert der Stern die Klammern um den Ausdruck:
30779 \begin_inset Formula 
30780 \[
30781 A+B=C\tag*{etwas}
30782 \]
30783
30784 \end_inset
30785
30786
30787 \end_layout
30788
30789 \begin_layout Standard
30790 \begin_inset VSpace bigskip
30791 \end_inset
30792
30793 Möchte man die Formelnummerierung neu starten wenn ein neuer Dokumentteil
30794  oder 
30795 \begin_inset ERT
30796 status collapsed
30797
30798 \begin_layout Plain Layout
30799
30800
30801 \backslash
30802 mbox{
30803 \end_layout
30804
30805 \end_inset
30806
30807 -abschnitt
30808 \begin_inset ERT
30809 status collapsed
30810
30811 \begin_layout Plain Layout
30812
30813 }
30814 \end_layout
30815
30816 \end_inset
30817
30818
30819 \begin_inset Note Note
30820 status collapsed
30821
30822 \begin_layout Plain Layout
30823 Der Befehl 
30824 \series bold
30825
30826 \backslash
30827 mbox
30828 \series default
30829  verhindert, dass am Bindestrich umgebrochen wird.
30830 \end_layout
30831
30832 \end_inset
30833
30834  beginnt, verwendet man folgende LaTeX-Vorspannzeile:
30835 \end_layout
30836
30837 \begin_layout Standard
30838
30839 \series bold
30840
30841 \backslash
30842 @addtoreset{equation}{part}
30843 \series default
30844
30845 \begin_inset Index idx
30846 status collapsed
30847
30848 \begin_layout Plain Layout
30849 Befehle ! 
30850 \begin_inset ERT
30851 status collapsed
30852
30853 \begin_layout Plain Layout
30854
30855 "
30856 \end_layout
30857
30858 \end_inset
30859
30860 @
30861 \begin_inset ERT
30862 status collapsed
30863
30864 \begin_layout Plain Layout
30865
30866 "
30867 \end_layout
30868
30869 \end_inset
30870
30871  ! 
30872 \backslash
30873
30874 \begin_inset ERT
30875 status collapsed
30876
30877 \begin_layout Plain Layout
30878
30879 "
30880 \end_layout
30881
30882 \end_inset
30883
30884 @
30885 \begin_inset ERT
30886 status collapsed
30887
30888 \begin_layout Plain Layout
30889
30890 "
30891 \end_layout
30892
30893 \end_inset
30894
30895 addtoreset
30896 \end_layout
30897
30898 \end_inset
30899
30900
30901 \begin_inset Newline newline
30902 \end_inset
30903
30904 bzw.
30905 \begin_inset Newline newline
30906 \end_inset
30907
30908
30909 \series bold
30910
30911 \backslash
30912 @addtoreset{equation}{section}
30913 \end_layout
30914
30915 \begin_layout Standard
30916 Um diese Befehle im TeX-Modus benutzen zu können, muss das 
30917 \begin_inset Quotes gld
30918 \end_inset
30919
30920 @
30921 \begin_inset Quotes grd
30922 \end_inset
30923
30924  Zeichen für LaTeX mit dem Befehl 
30925 \series bold
30926
30927 \backslash
30928 makeatletter
30929 \series default
30930  
30931 \begin_inset Quotes gld
30932 \end_inset
30933
30934 aktiv
30935 \begin_inset Quotes grd
30936 \end_inset
30937
30938  gemacht werden.
30939  Der Befehl 
30940 \series bold
30941
30942 \backslash
30943 makeatother
30944 \series default
30945  macht dies wieder rückgängig.
30946  Daher ist die Befehlssequenz im TeX-Modus:
30947 \end_layout
30948
30949 \begin_layout Standard
30950
30951 \series bold
30952
30953 \backslash
30954 makeatletter
30955 \begin_inset Newline newline
30956 \end_inset
30957
30958
30959 \backslash
30960 @addtoreset{equation}{section}
30961 \begin_inset Newline newline
30962 \end_inset
30963
30964
30965 \backslash
30966 makeatother
30967 \end_layout
30968
30969 \begin_layout Standard
30970 Im LaTeX-Vorspann können 
30971 \series bold
30972
30973 \backslash
30974 makeatletter
30975 \series default
30976  und 
30977 \series bold
30978
30979 \backslash
30980 makeatother
30981 \series default
30982  weggelassen werden, da LyX sie automatisch intern einfügt.
30983 \end_layout
30984
30985 \begin_layout Standard
30986 Um 
30987 \series bold
30988
30989 \backslash
30990 @addtoreset
30991 \series default
30992  rückgängig zu machen, muss die Datei 
30993 \series bold
30994 remreset.sty
30995 \series default
30996
30997 \begin_inset Foot
30998 status collapsed
30999
31000 \begin_layout Plain Layout
31001
31002 \series bold
31003 remreset
31004 \series default
31005  ist Teil des LaTeX-Paketes 
31006 \series bold
31007 carlisle
31008 \series default
31009
31010 \begin_inset Index idx
31011 status collapsed
31012
31013 \begin_layout Plain Layout
31014 Pakete ! carlisle
31015 \end_layout
31016
31017 \end_inset
31018
31019 , das Teil jeder LaTeX-Standardinstallation ist.
31020 \end_layout
31021
31022 \end_inset
31023
31024
31025 \begin_inset Index idx
31026 status collapsed
31027
31028 \begin_layout Plain Layout
31029 Pakete ! remreset
31030 \end_layout
31031
31032 \end_inset
31033
31034  im LaTeX-Vorspann mit der Zeile
31035 \end_layout
31036
31037 \begin_layout Standard
31038
31039 \series bold
31040
31041 \backslash
31042 usepackage{remreset}
31043 \end_layout
31044
31045 \begin_layout Standard
31046 geladen werden.
31047  Dann kann der Befehl 
31048 \series bold
31049
31050 \backslash
31051 @removefromreset
31052 \series default
31053
31054 \begin_inset Index idx
31055 status collapsed
31056
31057 \begin_layout Plain Layout
31058 Befehle ! 
31059 \begin_inset ERT
31060 status collapsed
31061
31062 \begin_layout Plain Layout
31063
31064 "
31065 \end_layout
31066
31067 \end_inset
31068
31069 @
31070 \begin_inset ERT
31071 status collapsed
31072
31073 \begin_layout Plain Layout
31074
31075 "
31076 \end_layout
31077
31078 \end_inset
31079
31080  ! 
31081 \backslash
31082
31083 \begin_inset ERT
31084 status collapsed
31085
31086 \begin_layout Plain Layout
31087
31088 "
31089 \end_layout
31090
31091 \end_inset
31092
31093 @
31094 \begin_inset ERT
31095 status collapsed
31096
31097 \begin_layout Plain Layout
31098
31099 "
31100 \end_layout
31101
31102 \end_inset
31103
31104 removefromreset
31105 \end_layout
31106
31107 \end_inset
31108
31109  mit dem selben Schema wie 
31110 \series bold
31111
31112 \backslash
31113 @addtoreset
31114 \series default
31115  benutzt werden.
31116 \end_layout
31117
31118 \begin_layout Standard
31119 \begin_inset VSpace bigskip
31120 \end_inset
31121
31122 Oftmals möchte man Formeln in folgender Art nummerieren:
31123 \end_layout
31124
31125 \begin_layout Standard
31126
31127 \family typewriter
31128 (Kapitelnummer.Formelnummer)
31129 \end_layout
31130
31131 \begin_layout Standard
31132 Dabei soll die Formelnummer bei jedem Kapitel wieder mit Eins beginnen.
31133 \end_layout
31134
31135 \begin_layout Standard
31136 Für diesen Fall gibt es den Befehl 
31137 \series bold
31138
31139 \backslash
31140 numberwithin
31141 \series default
31142
31143 \begin_inset Index idx
31144 status collapsed
31145
31146 \begin_layout Plain Layout
31147 Befehle ! N ! 
31148 \backslash
31149 numberwithin
31150 \end_layout
31151
31152 \end_inset
31153
31154 , der nach folgendem Schema benutzt wird:
31155 \end_layout
31156
31157 \begin_layout Standard
31158
31159 \series bold
31160
31161 \backslash
31162 numberwithin{Zähler}{Gliederung}
31163 \end_layout
31164
31165 \begin_layout Standard
31166 Zähler gibt an, welche Nummerierung betroffen ist.
31167  Gliederung gibt an, welche Nummer vor dem Punkt steht.
31168 \end_layout
31169
31170 \begin_layout Standard
31171 In unserem Fall gibt man demnach folgende LaTeX-Vorspann- oder TeX-Code-Zeile
31172  ein:
31173 \end_layout
31174
31175 \begin_layout Standard
31176
31177 \series bold
31178
31179 \backslash
31180 numberwithin{equation}{section}
31181 \end_layout
31182
31183 \begin_layout Standard
31184 Das ist das Ergebnis:
31185 \begin_inset ERT
31186 status collapsed
31187
31188 \begin_layout Plain Layout
31189
31190
31191 \backslash
31192 numberwithin{equation}{section}
31193 \end_layout
31194
31195 \end_inset
31196
31197
31198 \begin_inset Formula 
31199 \begin{equation}
31200 A+B=C
31201 \end{equation}
31202
31203 \end_inset
31204
31205
31206 \end_layout
31207
31208 \begin_layout Standard
31209 Möchte man z.
31210 \begin_inset space \thinspace{}
31211 \end_inset
31212
31213 B.
31214  Tabellen nummerieren, so dass die Nummer des Teils vor dem Punkt steht,
31215  gibt man 
31216 \series bold
31217
31218 \backslash
31219 numberwithin{table}{part}
31220 \series default
31221  ein.
31222 \end_layout
31223
31224 \begin_layout Standard
31225 Um wieder auf Standardnummerierung umzuschalten oder um diese Art der Nummerieru
31226 ng zu vermeiden wenn sie von der Dokumentklasse vorgegeben ist, gibt man
31227  folgenden Befehl als TeX-Code oder als LaTeX-Vorspannzeile ein:
31228 \end_layout
31229
31230 \begin_layout Standard
31231
31232 \series bold
31233
31234 \backslash
31235 renewcommand{
31236 \backslash
31237 theequation}{
31238 \backslash
31239 arabic{equation}}
31240 \begin_inset Index idx
31241 status collapsed
31242
31243 \begin_layout Plain Layout
31244 Befehle ! A ! 
31245 \backslash
31246 arabic
31247 \end_layout
31248
31249 \end_inset
31250
31251
31252 \series default
31253
31254 \begin_inset ERT
31255 status collapsed
31256
31257 \begin_layout Plain Layout
31258
31259
31260 \backslash
31261 renewcommand{
31262 \backslash
31263 theequation}{
31264 \backslash
31265 arabic{equation}}
31266 \end_layout
31267
31268 \end_inset
31269
31270
31271 \series bold
31272
31273 \begin_inset Newline newline
31274 \end_inset
31275
31276
31277 \series default
31278 bzw.
31279 \series bold
31280
31281 \begin_inset Newline newline
31282 \end_inset
31283
31284
31285 \backslash
31286 renewcommand{
31287 \backslash
31288 thetable}{
31289 \backslash
31290 arabic{table}}
31291 \end_layout
31292
31293 \begin_layout Standard
31294
31295 \series bold
31296
31297 \backslash
31298 numberwithin
31299 \series default
31300  benutzt intern den oben beschriebenen Befehl 
31301 \series bold
31302
31303 \backslash
31304 @addtoreset
31305 \series default
31306 , der ebenfalls rückgängig gemacht werden muss.
31307 \begin_inset ERT
31308 status collapsed
31309
31310 \begin_layout Plain Layout
31311
31312
31313 \backslash
31314 makeatletter
31315 \end_layout
31316
31317 \begin_layout Plain Layout
31318
31319
31320 \backslash
31321 @removefromreset{equation}{section}
31322 \end_layout
31323
31324 \begin_layout Plain Layout
31325
31326
31327 \backslash
31328 makeatother
31329 \end_layout
31330
31331 \end_inset
31332
31333
31334 \end_layout
31335
31336 \begin_layout Subsection
31337 Nummerierung mit römischen Zahlen und Buchstaben
31338 \begin_inset Index idx
31339 status collapsed
31340
31341 \begin_layout Plain Layout
31342 Formelnummerierung ! mit Buchstaben
31343 \end_layout
31344
31345 \end_inset
31346
31347
31348 \begin_inset Index idx
31349 status collapsed
31350
31351 \begin_layout Plain Layout
31352 Formelnummerierung ! mit römischen Zahlen
31353 \end_layout
31354
31355 \end_inset
31356
31357
31358 \end_layout
31359
31360 \begin_layout Standard
31361 Formeln können auch mit römischen Zahlen und lateinischen Buchstaben nummeriert
31362  werden.
31363  Um z.
31364 \begin_inset space \thinspace{}
31365 \end_inset
31366
31367 B.
31368  mit kleinen römischen Zahlen zu nummerieren, gibt man vor der Formel im
31369  TeX-Modus den Befehl
31370 \end_layout
31371
31372 \begin_layout Standard
31373
31374 \series bold
31375
31376 \backslash
31377 renewcommand{
31378 \backslash
31379 theequation}{
31380 \backslash
31381 roman{equation}}
31382 \end_layout
31383
31384 \begin_layout Standard
31385 ein.
31386  
31387 \series bold
31388
31389 \backslash
31390 renewcommand
31391 \series default
31392
31393 \begin_inset Index idx
31394 status collapsed
31395
31396 \begin_layout Plain Layout
31397 Befehle ! R ! 
31398 \backslash
31399 renewcommand
31400 \end_layout
31401
31402 \end_inset
31403
31404  weist dem vordefinierten Befehl 
31405 \series bold
31406
31407 \backslash
31408 theequation
31409 \series default
31410  den Befehl
31411 \begin_inset Newline linebreak
31412 \end_inset
31413
31414
31415 \series bold
31416
31417 \backslash
31418 roman{equation}
31419 \series default
31420  zu.
31421 \begin_inset Foot
31422 status collapsed
31423
31424 \begin_layout Plain Layout
31425 Der Befehl 
31426 \series bold
31427
31428 \backslash
31429 renewcommand
31430 \series default
31431  besitzt dasselbe Schema wie der in 
31432 \begin_inset CommandInset ref
31433 LatexCommand ref
31434 reference "sub:Der-Befehl-newcommand"
31435
31436 \end_inset
31437
31438  beschriebene Befehl
31439 \begin_inset Newline newline
31440 \end_inset
31441
31442
31443 \series bold
31444
31445 \backslash
31446 newcommand
31447 \series default
31448 .
31449 \end_layout
31450
31451 \end_inset
31452
31453  
31454 \series bold
31455 equation
31456 \series default
31457  ist der Formelzähler.
31458  Stellt man einem Zähler den Befehl 
31459 \series bold
31460
31461 \backslash
31462 the
31463 \series default
31464  voran, bewirkt dies, dass der Wert des Zählers als arabische Zahl ausgegeben
31465  wird.
31466  Gibt man an, dass eine Formel nummeriert wird, setzt LaTeX intern den Befehl
31467  
31468 \series bold
31469
31470 \backslash
31471 theequation
31472 \series default
31473  hinter die Formel.
31474  
31475 \series bold
31476
31477 \backslash
31478 roman{equation}
31479 \begin_inset Index idx
31480 status collapsed
31481
31482 \begin_layout Plain Layout
31483 Befehle ! R ! 
31484 \backslash
31485 roman
31486 \end_layout
31487
31488 \end_inset
31489
31490
31491 \series default
31492  bewirkt, dass der Formelzähler als kleine römische Zahl erscheint.
31493 \end_layout
31494
31495 \begin_layout Standard
31496 Alle Formeln nach dem 
31497 \series bold
31498
31499 \backslash
31500 renewcommand
31501 \series default
31502 -Befehl werden nun römisch nummeriert.
31503  Um auf Nummerierung mit großen römischen Zahlen umzuschalten, gibt man
31504  den Befehl erneut ein, ersetzt aber 
31505 \series bold
31506
31507 \backslash
31508 roman
31509 \series default
31510  durch 
31511 \series bold
31512
31513 \backslash
31514 Roman
31515 \series default
31516
31517 \begin_inset Index idx
31518 status collapsed
31519
31520 \begin_layout Plain Layout
31521 Befehle ! R ! 
31522 \backslash
31523 roman@
31524 \backslash
31525 Roman
31526 \end_layout
31527
31528 \end_inset
31529
31530 .
31531  Für die 
31532 \begin_inset Quotes gld
31533 \end_inset
31534
31535 Nummerierung
31536 \begin_inset Quotes grd
31537 \end_inset
31538
31539  mit lateinischen Buchstaben gibt es den Befehl 
31540 \series bold
31541
31542 \backslash
31543 alph
31544 \series default
31545
31546 \begin_inset Index idx
31547 status collapsed
31548
31549 \begin_layout Plain Layout
31550 Befehle ! A ! 
31551 \backslash
31552 alph
31553 \end_layout
31554
31555 \end_inset
31556
31557  für kleine und 
31558 \series bold
31559
31560 \backslash
31561 Alph
31562 \series default
31563
31564 \begin_inset Index idx
31565 status collapsed
31566
31567 \begin_layout Plain Layout
31568 Befehle ! A ! 
31569 \backslash
31570 alph@
31571 \backslash
31572 Alph
31573 \end_layout
31574
31575 \end_inset
31576
31577  für große Buchstaben.
31578 \end_layout
31579
31580 \begin_layout Standard
31581 \begin_inset Note Greyedout
31582 status open
31583
31584 \begin_layout Plain Layout
31585
31586 \series bold
31587 Achtung:
31588 \series default
31589  Es können nur maximal 26 Formeln in einem Dokument mit lateinischen Buchstaben
31590  nummeriert werden.
31591 \end_layout
31592
31593 \end_inset
31594
31595
31596 \end_layout
31597
31598 \begin_layout Standard
31599 \begin_inset ERT
31600 status collapsed
31601
31602 \begin_layout Plain Layout
31603
31604
31605 \backslash
31606 renewcommand{
31607 \backslash
31608 theequation}{
31609 \backslash
31610 roman{equation}}
31611 \end_layout
31612
31613 \end_inset
31614
31615
31616 \end_layout
31617
31618 \begin_layout Standard
31619 \begin_inset Formula 
31620 \begin{equation}
31621 A=\textrm{römisch}
31622 \end{equation}
31623
31624 \end_inset
31625
31626
31627 \begin_inset ERT
31628 status collapsed
31629
31630 \begin_layout Plain Layout
31631
31632
31633 \backslash
31634 renewcommand{
31635 \backslash
31636 theequation}{
31637 \backslash
31638 Roman{equation}}
31639 \end_layout
31640
31641 \end_inset
31642
31643
31644 \begin_inset Formula 
31645 \begin{equation}
31646 B=\textrm{Römisch}\label{eq:Roem}
31647 \end{equation}
31648
31649 \end_inset
31650
31651
31652 \begin_inset ERT
31653 status collapsed
31654
31655 \begin_layout Plain Layout
31656
31657
31658 \backslash
31659 renewcommand{
31660 \backslash
31661 theequation}{
31662 \backslash
31663 alph{equation}}
31664 \end_layout
31665
31666 \end_inset
31667
31668
31669 \begin_inset Formula 
31670 \begin{equation}
31671 C=\textrm{lateinisch}
31672 \end{equation}
31673
31674 \end_inset
31675
31676
31677 \begin_inset ERT
31678 status collapsed
31679
31680 \begin_layout Plain Layout
31681
31682
31683 \backslash
31684 renewcommand{
31685 \backslash
31686 theequation}{
31687 \backslash
31688 Alph{equation}}
31689 \end_layout
31690
31691 \end_inset
31692
31693
31694 \begin_inset Formula 
31695 \begin{equation}
31696 D=\textrm{Lateinisch}\label{eq:Lat}
31697 \end{equation}
31698
31699 \end_inset
31700
31701
31702 \end_layout
31703
31704 \begin_layout Standard
31705 Um wieder auf Standardnummerierung umzuschalten, gibt man folgenden Befehl
31706  ein:
31707 \end_layout
31708
31709 \begin_layout Standard
31710
31711 \series bold
31712
31713 \backslash
31714 renewcommand{
31715 \backslash
31716 theequation}{
31717 \backslash
31718 arabic{equation}}
31719 \begin_inset Index idx
31720 status collapsed
31721
31722 \begin_layout Plain Layout
31723 Befehle ! A ! 
31724 \backslash
31725 arabic
31726 \end_layout
31727
31728 \end_inset
31729
31730
31731 \end_layout
31732
31733 \begin_layout Standard
31734 \begin_inset ERT
31735 status collapsed
31736
31737 \begin_layout Plain Layout
31738
31739
31740 \backslash
31741 renewcommand{
31742 \backslash
31743 theequation}{
31744 \backslash
31745 arabic{equation}}
31746 \end_layout
31747
31748 \end_inset
31749
31750
31751 \begin_inset Formula 
31752 \begin{equation}
31753 E=\textrm{arabisch}
31754 \end{equation}
31755
31756 \end_inset
31757
31758
31759 \end_layout
31760
31761 \begin_layout Standard
31762 \begin_inset VSpace medskip
31763 \end_inset
31764
31765 Wie man sieht, werden die Formeln unabhängig von der Nummerierungsart durchnumme
31766 riert.
31767  Soll beim Wechsel der Nummerierungsart die Nummerierung wieder mit Eins
31768  beginnen, müssen neue Formelzähler angelegt werden.
31769  Eine Beschreibung dazu findet man in der Datei 
31770 \begin_inset CommandInset href
31771 LatexCommand href
31772 name "Formelnummerierung.lyx"
31773 target "run:Formelnummerierung.lyx"
31774
31775 \end_inset
31776
31777 .
31778 \end_layout
31779
31780 \begin_layout Section
31781 Chemische Symbole und Reaktionsgleichungen
31782 \begin_inset CommandInset label
31783 LatexCommand label
31784 name "sub:Chemische-Symbole-und"
31785
31786 \end_inset
31787
31788
31789 \begin_inset Index idx
31790 status collapsed
31791
31792 \begin_layout Plain Layout
31793 chemische Zeichen ! Symbole
31794 \end_layout
31795
31796 \end_inset
31797
31798
31799 \begin_inset Index idx
31800 status collapsed
31801
31802 \begin_layout Plain Layout
31803 Reaktionsgleichungen
31804 \end_layout
31805
31806 \end_inset
31807
31808
31809 \begin_inset Index idx
31810 status collapsed
31811
31812 \begin_layout Plain Layout
31813 Symbole ! chemische
31814 \end_layout
31815
31816 \end_inset
31817
31818
31819 \end_layout
31820
31821 \begin_layout Standard
31822 Ein Beispieltext aus der Chemie:
31823 \end_layout
31824
31825 \begin_layout Quote
31826 Das 
31827 \begin_inset Formula $\mathrm{SO_{4}^{2-}}$
31828 \end_inset
31829
31830 -Ion verbindet sich mit zwei 
31831 \begin_inset Formula $\mathrm{Na^{+}}$
31832 \end_inset
31833
31834 -Ionen zu Natriumsulfat 
31835 \begin_inset Formula $\left(\mathrm{Na_{2}SO_{4}}\right)$
31836 \end_inset
31837
31838 .
31839  Die Reaktionsgleichung dazu lautet:
31840 \begin_inset Formula 
31841 \begin{equation}
31842 \mathrm{2\, Na^{+}+SO_{4}^{2-}\longrightarrow Na_{2}SO_{4}}\label{eq:chemische-Reaktion}
31843 \end{equation}
31844
31845 \end_inset
31846
31847
31848 \end_layout
31849
31850 \begin_layout Standard
31851 Diese Reaktionsgleichung kann direkt als Formel erstellt werden.
31852  Damit die Symbole nicht kursiv erscheinen, markiert man sämtliche Zeichen
31853  in der Formel und wandelt diese mit der Tastenkombination 
31854 \family sans
31855 Alt+Z
31856 \begin_inset space ~
31857 \end_inset
31858
31859 R
31860 \family default
31861  in den aufrechten Schriftstil um.
31862 \begin_inset Foot
31863 status collapsed
31864
31865 \begin_layout Plain Layout
31866 Schriftstile siehe 
31867 \begin_inset CommandInset ref
31868 LatexCommand ref
31869 reference "sub:Schriftstile"
31870
31871 \end_inset
31872
31873
31874 \end_layout
31875
31876 \end_inset
31877
31878
31879 \end_layout
31880
31881 \begin_layout Standard
31882 Eine komfortablerer Weg chemische Formeln zu setzen, ist es den Befehl
31883 \series bold
31884  
31885 \backslash
31886 ce
31887 \series default
31888
31889 \begin_inset Index idx
31890 status collapsed
31891
31892 \begin_layout Plain Layout
31893 Befehle ! C ! 
31894 \backslash
31895 ce
31896 \end_layout
31897
31898 \end_inset
31899
31900  zu benutzen.
31901  Dieser ist verfügbar, wenn das LaTeX-Paket 
31902 \series bold
31903 mhchem
31904 \series default
31905
31906 \begin_inset Index idx
31907 status collapsed
31908
31909 \begin_layout Plain Layout
31910 Pakete ! mhchem
31911 \end_layout
31912
31913 \end_inset
31914
31915  installiert ist.
31916  Nachdem 
31917 \series bold
31918
31919 \backslash
31920 ce
31921 \series default
31922  in eine Formel eingefügt wurde, erscheint eine neue blaue Box in die chemische
31923  Formeln in intuitiver Weise eingegeben werden können.
31924 \end_layout
31925
31926 \begin_layout Standard
31927 \align center
31928 \begin_inset Tabular
31929 <lyxtabular version="3" rows="9" columns="2">
31930 <features tabularvalignment="middle">
31931 <column alignment="center" valignment="top" width="0">
31932 <column alignment="center" valignment="top" width="0">
31933 <row>
31934 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
31935 \begin_inset Text
31936
31937 \begin_layout Plain Layout
31938 Befehl
31939 \end_layout
31940
31941 \end_inset
31942 </cell>
31943 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
31944 \begin_inset Text
31945
31946 \begin_layout Plain Layout
31947 Ergebnis
31948 \begin_inset Note Note
31949 status collapsed
31950
31951 \begin_layout Plain Layout
31952
31953 \series bold
31954
31955 \backslash
31956 raisebox
31957 \series default
31958  dient nur als Abstandhalter.
31959 \end_layout
31960
31961 \end_inset
31962
31963
31964 \end_layout
31965
31966 \end_inset
31967 </cell>
31968 </row>
31969 <row>
31970 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
31971 \begin_inset Text
31972
31973 \begin_layout Plain Layout
31974
31975 \backslash
31976 ce
31977 \begin_inset ERT
31978 status collapsed
31979
31980 \begin_layout Plain Layout
31981
31982
31983 \backslash
31984 leer 
31985 \end_layout
31986
31987 \end_inset
31988
31989 H2CO3
31990 \end_layout
31991
31992 \end_inset
31993 </cell>
31994 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
31995 \begin_inset Text
31996
31997 \begin_layout Plain Layout
31998 \begin_inset Formula $\raisebox{4.5mm}{}\ce{H2CO3}\raisebox{-2mm}{}$
31999 \end_inset
32000
32001
32002 \end_layout
32003
32004 \end_inset
32005 </cell>
32006 </row>
32007 <row>
32008 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
32009 \begin_inset Text
32010
32011 \begin_layout Plain Layout
32012
32013 \backslash
32014 ce
32015 \begin_inset ERT
32016 status collapsed
32017
32018 \begin_layout Plain Layout
32019
32020
32021 \backslash
32022 leer 
32023 \end_layout
32024
32025 \end_inset
32026
32027 SO4^2-
32028 \end_layout
32029
32030 \end_inset
32031 </cell>
32032 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
32033 \begin_inset Text
32034
32035 \begin_layout Plain Layout
32036 \begin_inset Formula $\raisebox{5mm}{}\ce{SO4^{2-}}\raisebox{-2mm}{}$
32037 \end_inset
32038
32039
32040 \end_layout
32041
32042 \end_inset
32043 </cell>
32044 </row>
32045 <row>
32046 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
32047 \begin_inset Text
32048
32049 \begin_layout Plain Layout
32050
32051 \backslash
32052 ce
32053 \begin_inset ERT
32054 status collapsed
32055
32056 \begin_layout Plain Layout
32057
32058
32059 \backslash
32060 leer 
32061 \end_layout
32062
32063 \end_inset
32064
32065 (NH4)2S
32066 \end_layout
32067
32068 \end_inset
32069 </cell>
32070 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
32071 \begin_inset Text
32072
32073 \begin_layout Plain Layout
32074 \begin_inset Formula $\raisebox{4.5mm}{}\ce{(NH4)2S}\raisebox{-2mm}{}$
32075 \end_inset
32076
32077
32078 \end_layout
32079
32080 \end_inset
32081 </cell>
32082 </row>
32083 <row>
32084 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
32085 \begin_inset Text
32086
32087 \begin_layout Plain Layout
32088
32089 \backslash
32090 ce
32091 \begin_inset ERT
32092 status collapsed
32093
32094 \begin_layout Plain Layout
32095
32096
32097 \backslash
32098 leer 
32099 \end_layout
32100
32101 \end_inset
32102
32103 KCr(SO4)2.12H2O
32104 \end_layout
32105
32106 \end_inset
32107 </cell>
32108 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
32109 \begin_inset Text
32110
32111 \begin_layout Plain Layout
32112 \begin_inset Formula $\raisebox{4.5mm}{}\ce{KCr(SO4)2.12H2O}\raisebox{-2mm}{}$
32113 \end_inset
32114
32115
32116 \end_layout
32117
32118 \end_inset
32119 </cell>
32120 </row>
32121 <row>
32122 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
32123 \begin_inset Text
32124
32125 \begin_layout Plain Layout
32126
32127 \backslash
32128 ce
32129 \begin_inset ERT
32130 status collapsed
32131
32132 \begin_layout Plain Layout
32133
32134
32135 \backslash
32136 leer 
32137 \end_layout
32138
32139 \end_inset
32140
32141 A-B
32142 \backslash
32143 dbond
32144 \begin_inset ERT
32145 status collapsed
32146
32147 \begin_layout Plain Layout
32148
32149
32150 \backslash
32151 leer 
32152 \end_layout
32153
32154 \end_inset
32155
32156 C
32157 \backslash
32158 tbond
32159 \begin_inset ERT
32160 status collapsed
32161
32162 \begin_layout Plain Layout
32163
32164
32165 \backslash
32166 leer 
32167 \end_layout
32168
32169 \end_inset
32170
32171 D
32172 \end_layout
32173
32174 \end_inset
32175 </cell>
32176 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
32177 \begin_inset Text
32178
32179 \begin_layout Plain Layout
32180 \begin_inset Formula $\raisebox{4.5mm}{}\ce{A-B\dbond C\tbond D}\raisebox{-2mm}{}$
32181 \end_inset
32182
32183
32184 \end_layout
32185
32186 \end_inset
32187 </cell>
32188 </row>
32189 <row>
32190 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
32191 \begin_inset Text
32192
32193 \begin_layout Plain Layout
32194
32195 \backslash
32196 ce
32197 \begin_inset ERT
32198 status collapsed
32199
32200 \begin_layout Plain Layout
32201
32202
32203 \backslash
32204 leer 
32205 \end_layout
32206
32207 \end_inset
32208
32209 ^227
32210 \begin_inset Formula $\downarrow$
32211 \end_inset
32212
32213 _90
32214 \begin_inset Formula $\to$
32215 \end_inset
32216
32217 Th+
32218 \end_layout
32219
32220 \end_inset
32221 </cell>
32222 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
32223 \begin_inset Text
32224
32225 \begin_layout Plain Layout
32226 \begin_inset Formula $\raisebox{5mm}{}\ce{_{90}^{227}Th+}\raisebox{-2mm}{}$
32227 \end_inset
32228
32229
32230 \end_layout
32231
32232 \end_inset
32233 </cell>
32234 </row>
32235 <row>
32236 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
32237 \begin_inset Text
32238
32239 \begin_layout Plain Layout
32240
32241 \backslash
32242 ce
32243 \begin_inset ERT
32244 status collapsed
32245
32246 \begin_layout Plain Layout
32247
32248
32249 \backslash
32250 leer 
32251 \end_layout
32252
32253 \end_inset
32254
32255 CO2
32256 \begin_inset ERT
32257 status collapsed
32258
32259 \begin_layout Plain Layout
32260
32261
32262 \backslash
32263 leer 
32264 \end_layout
32265
32266 \end_inset
32267
32268 +
32269 \begin_inset ERT
32270 status collapsed
32271
32272 \begin_layout Plain Layout
32273
32274
32275 \backslash
32276 leer 
32277 \end_layout
32278
32279 \end_inset
32280
32281 C
32282 \begin_inset ERT
32283 status collapsed
32284
32285 \begin_layout Plain Layout
32286
32287
32288 \backslash
32289 leer 
32290 \end_layout
32291
32292 \end_inset
32293
32294 <=>
32295 \begin_inset ERT
32296 status collapsed
32297
32298 \begin_layout Plain Layout
32299
32300
32301 \backslash
32302 leer 
32303 \end_layout
32304
32305 \end_inset
32306
32307 2CO
32308 \end_layout
32309
32310 \end_inset
32311 </cell>
32312 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
32313 \begin_inset Text
32314
32315 \begin_layout Plain Layout
32316 \begin_inset Formula $\raisebox{4.5mm}{}\ce{CO2 + C <=> 2CO}\raisebox{-2mm}{}$
32317 \end_inset
32318
32319
32320 \end_layout
32321
32322 \end_inset
32323 </cell>
32324 </row>
32325 <row>
32326 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
32327 \begin_inset Text
32328
32329 \begin_layout Plain Layout
32330
32331 \backslash
32332 ce
32333 \begin_inset ERT
32334 status collapsed
32335
32336 \begin_layout Plain Layout
32337
32338
32339 \backslash
32340 leer 
32341 \end_layout
32342
32343 \end_inset
32344
32345 CO2
32346 \begin_inset ERT
32347 status collapsed
32348
32349 \begin_layout Plain Layout
32350
32351
32352 \backslash
32353 leer 
32354 \end_layout
32355
32356 \end_inset
32357
32358 +
32359 \begin_inset ERT
32360 status collapsed
32361
32362 \begin_layout Plain Layout
32363
32364
32365 \backslash
32366 leer 
32367 \end_layout
32368
32369 \end_inset
32370
32371 C
32372 \begin_inset ERT
32373 status collapsed
32374
32375 \begin_layout Plain Layout
32376
32377
32378 \backslash
32379 leer 
32380 \end_layout
32381
32382 \end_inset
32383
32384 ->[
32385 \backslash
32386 alpha][
32387 \backslash
32388 beta]
32389 \begin_inset ERT
32390 status collapsed
32391
32392 \begin_layout Plain Layout
32393
32394
32395 \backslash
32396 leer 
32397 \end_layout
32398
32399 \end_inset
32400
32401 2CO}
32402 \end_layout
32403
32404 \end_inset
32405 </cell>
32406 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
32407 \begin_inset Text
32408
32409 \begin_layout Plain Layout
32410 \begin_inset Formula $\raisebox{5mm}{}\ce{CO2 + C ->[\alpha][\beta] 2CO}\raisebox{-4mm}{}$
32411 \end_inset
32412
32413
32414 \end_layout
32415
32416 \end_inset
32417 </cell>
32418 </row>
32419 </lyxtabular>
32420
32421 \end_inset
32422
32423
32424 \end_layout
32425
32426 \begin_layout Standard
32427 \begin_inset Note Greyedout
32428 status open
32429
32430 \begin_layout Plain Layout
32431
32432 \series bold
32433 Achtung:
32434 \series default
32435  Wenn eine Formel in eine 
32436 \series bold
32437
32438 \backslash
32439 ce
32440 \series default
32441 -Box eingefügt wird, führt dies zu LaTeX-Fehlern.
32442  In diesem Fall muss daher TeX-Code verwendet werden, wie z.
32443 \begin_inset space \thinspace{}
32444 \end_inset
32445
32446 B.
32447  für 
32448 \series bold
32449
32450 \backslash
32451 ce{$
32452 \backslash
32453 mu
32454 \backslash
32455 hyphen$Cl}
32456 \series default
32457
32458 \begin_inset ERT
32459 status collapsed
32460
32461 \begin_layout Plain Layout
32462
32463
32464 \backslash
32465 ce{$
32466 \backslash
32467 mu
32468 \backslash
32469 hyphen$Cl}
32470 \end_layout
32471
32472 \end_inset
32473
32474  
32475 \end_layout
32476
32477 \end_inset
32478
32479
32480 \end_layout
32481
32482 \begin_layout Standard
32483 Wird 
32484 \series bold
32485
32486 \backslash
32487 ce
32488 \series default
32489  benutzt, lautet der Befehl für Gleichung
32490 \begin_inset space ~
32491 \end_inset
32492
32493
32494 \begin_inset CommandInset ref
32495 LatexCommand eqref
32496 reference "eq:chemische-Reaktion"
32497
32498 \end_inset
32499
32500 :
32501 \begin_inset Newline newline
32502 \end_inset
32503
32504
32505 \series bold
32506  
32507 \backslash
32508 ce
32509 \series default
32510
32511 \begin_inset ERT
32512 status collapsed
32513
32514 \begin_layout Plain Layout
32515
32516
32517 \backslash
32518 leer 
32519 \end_layout
32520
32521 \end_inset
32522
32523
32524 \series bold
32525 2Na+
32526 \series default
32527
32528 \begin_inset ERT
32529 status collapsed
32530
32531 \begin_layout Plain Layout
32532
32533
32534 \backslash
32535 leer 
32536 \end_layout
32537
32538 \end_inset
32539
32540
32541 \series bold
32542 +
32543 \series default
32544
32545 \begin_inset ERT
32546 status collapsed
32547
32548 \begin_layout Plain Layout
32549
32550
32551 \backslash
32552 leer 
32553 \end_layout
32554
32555 \end_inset
32556
32557
32558 \series bold
32559 SO4^2-
32560 \series default
32561
32562 \begin_inset ERT
32563 status collapsed
32564
32565 \begin_layout Plain Layout
32566
32567
32568 \backslash
32569 leer 
32570 \end_layout
32571
32572 \end_inset
32573
32574
32575 \begin_inset ERT
32576 status collapsed
32577
32578 \begin_layout Plain Layout
32579
32580
32581 \backslash
32582 leer 
32583 \end_layout
32584
32585 \end_inset
32586
32587
32588 \series bold
32589 ->
32590 \series default
32591
32592 \begin_inset ERT
32593 status collapsed
32594
32595 \begin_layout Plain Layout
32596
32597
32598 \backslash
32599 leer 
32600 \end_layout
32601
32602 \end_inset
32603
32604
32605 \series bold
32606 Na2SO4
32607 \end_layout
32608
32609 \begin_layout Standard
32610 Um mehrzeilige chemische Gleichungen zu erzeugen, wird zuerst eine mehrzeilige
32611  Formel erstellt, wie in 
32612 \begin_inset CommandInset ref
32613 LatexCommand ref
32614 reference "sec:Mehrzeilige-Formeln"
32615
32616 \end_inset
32617
32618  beschrieben.
32619  Anschließend wird in jeder kleinen blauen Box der Formel der Befehl 
32620 \series bold
32621
32622 \backslash
32623 ce
32624 \series default
32625  verwendet.
32626  
32627 \begin_inset CommandInset ref
32628 LatexCommand eqref
32629 reference "eq:TEOS-Reaktion-1"
32630
32631 \end_inset
32632
32633  und 
32634 \begin_inset CommandInset ref
32635 LatexCommand eqref
32636 reference "eq:TEOS-Reaktion-2"
32637
32638 \end_inset
32639
32640  sind ein Beispiel für eine mehrstufige chemische Reaktion, bei der jede
32641  Gleichung eine eigene Nummer hat.
32642 \begin_inset Formula 
32643 \begin{eqnarray}
32644 \ce{TEOS + 4O} & \ce{->} & \ce{Si(OH)4 + 4C2H4O}\label{eq:TEOS-Reaktion-1}\\
32645 \ce{Si(OH)4} & \ce{->} & \ce{SiO2 + 2H2O}\label{eq:TEOS-Reaktion-2}
32646 \end{eqnarray}
32647
32648 \end_inset
32649
32650
32651 \end_layout
32652
32653 \begin_layout Standard
32654 Außer 
32655 \series bold
32656
32657 \backslash
32658 ce
32659 \series default
32660  bietet das Paket 
32661 \series bold
32662 mhchem
32663 \series default
32664  noch den Befehl 
32665 \series bold
32666
32667 \backslash
32668 cf
32669 \series default
32670
32671 \begin_inset Index idx
32672 status collapsed
32673
32674 \begin_layout Plain Layout
32675 Befehle ! C ! 
32676 \backslash
32677 cf
32678 \end_layout
32679
32680 \end_inset
32681
32682  für spezielle Fälle.
32683  Mehr über 
32684 \series bold
32685
32686 \backslash
32687 cf
32688 \series default
32689  und weitere Beispiele sind in der Dokumentation von 
32690 \series bold
32691 mhchem
32692 \series default
32693  zu finden, 
32694 \begin_inset CommandInset citation
32695 LatexCommand cite
32696 key "mhchem"
32697
32698 \end_inset
32699
32700 .
32701 \end_layout
32702
32703 \begin_layout Section
32704 Diagramme
32705 \end_layout
32706
32707 \begin_layout Standard
32708 LyX unterstützt zwei Typen kommutativer Diagramme: 
32709 \series bold
32710 amscd
32711 \series default
32712  und 
32713 \series bold
32714 xymatrix
32715 \series default
32716 , die im Folgenden erläutert sind.
32717 \end_layout
32718
32719 \begin_layout Subsection
32720 amscd Diagramme
32721 \begin_inset Index idx
32722 status collapsed
32723
32724 \begin_layout Plain Layout
32725 Diagramme ! amscd
32726 \end_layout
32727
32728 \end_inset
32729
32730
32731 \end_layout
32732
32733 \begin_layout Standard
32734 Diagramme dieses Typs stellen Beziehungen mittels horizontaler und vertikaler
32735  Linien oder Pfeilen dar:
32736 \begin_inset Formula 
32737 \[
32738 \begin{CD}A@>>>B@>>>C\\
32739 @AAA@.@VVV\\
32740 F@<<<E@<<<D
32741 \end{CD}
32742 \]
32743
32744 \end_inset
32745
32746
32747 \end_layout
32748
32749 \begin_layout Standard
32750 Um sie zu erstellen, gibt man in einer Formel den Befehl 
32751 \series bold
32752
32753 \backslash
32754 CD
32755 \begin_inset Index idx
32756 status collapsed
32757
32758 \begin_layout Plain Layout
32759 Befehle ! C ! 
32760 \backslash
32761 CD
32762 \end_layout
32763
32764 \end_inset
32765
32766
32767 \series default
32768  ein.
32769  Es erscheint ein blaues Kästchen mit zwei gestrichelten Linien, in das
32770  man die weiteren Befehle eingibt.
32771  Mit 
32772 \series bold
32773
32774 \begin_inset ERT
32775 status collapsed
32776
32777 \begin_layout Plain Layout
32778
32779
32780 \backslash
32781 mbox{
32782 \end_layout
32783
32784 \end_inset
32785
32786
32787 \family sans
32788 \series default
32789 Strg+Enter
32790 \family default
32791 \series bold
32792
32793 \begin_inset ERT
32794 status collapsed
32795
32796 \begin_layout Plain Layout
32797
32798 }
32799 \end_layout
32800
32801 \end_inset
32802
32803
32804 \series default
32805  wird eine neue Zeile erstellt.
32806  Horizontale Beziehungen werden in ungerade Zeilen, vertikale in gerade
32807  Zeilen der Formel eingegeben.
32808 \end_layout
32809
32810 \begin_layout Standard
32811 Zum Erstellen der Beziehungen gibt es folgende Befehle:
32812 \end_layout
32813
32814 \begin_layout Itemize
32815
32816 \series bold
32817 @<<<
32818 \series default
32819  erstellt einen Linkspfeil, 
32820 \series bold
32821 @>>>
32822 \series default
32823  einen Rechtspfeil und 
32824 \series bold
32825 @=
32826 \series default
32827  ein langes Gleichheitszeichen
32828 \end_layout
32829
32830 \begin_layout Itemize
32831
32832 \series bold
32833 @AAA
32834 \series default
32835  erstellt einen Pfeil nach oben, 
32836 \series bold
32837 @VVV
32838 \series default
32839  einen Pfeil nach unten und 
32840 \series bold
32841 @|
32842 \series default
32843  ein senkrechtes Gleichheitszeichen
32844 \end_layout
32845
32846 \begin_layout Itemize
32847
32848 \series bold
32849 @.
32850
32851 \series default
32852  dient als Platzhalter für nicht vorhandene Beziehungen
32853 \end_layout
32854
32855 \begin_layout Standard
32856 Alle Pfeile sind wie folgt beschriftbar:
32857 \end_layout
32858
32859 \begin_layout Itemize
32860 Wird bei horizontalen Pfeilen zwischen dem ersten und zweiten < bzw.
32861  > Text eingegeben, erscheint er über dem Pfeil.
32862  Wird der Text zwischen dem zweiten und dritten < bzw.
32863  > eingegeben, erscheint er unter dem Pfeil.
32864 \end_layout
32865
32866 \begin_layout Itemize
32867 Wird bei vertikalen Pfeilen Text zwischen erstem und zweitem A bzw.
32868  V eingegeben, erscheint er links neben dem Pfeil.
32869  Bei Eingabe zwischen zweitem und drittem A bzw.
32870  V erscheint er rechts daneben.
32871  Enthält der Text ein A oder V, müssen diese Buchstaben in eine TeX-Klammer
32872  gesetzt werden.
32873 \end_layout
32874
32875 \begin_layout Standard
32876 Als Beispiel ein Diagramm mit allen möglichen Beziehungen:
32877 \end_layout
32878
32879 \begin_layout Standard
32880 \begin_inset Formula 
32881 \[
32882 \begin{CD}A@>j>>B@>>k>C@=F\\
32883 @AmAA@.@VV{V}V@|\\
32884 D@<<j<E@>k>>F@=C
32885 \end{CD}
32886 \]
32887
32888 \end_inset
32889
32890
32891 \end_layout
32892
32893 \begin_layout Standard
32894 Der Befehl dazu lautet:
32895 \begin_inset Newline newline
32896 \end_inset
32897
32898
32899 \series bold
32900
32901 \backslash
32902 CD
32903 \begin_inset ERT
32904 status collapsed
32905
32906 \begin_layout Plain Layout
32907
32908
32909 \backslash
32910 leer 
32911 \end_layout
32912
32913 \end_inset
32914
32915 A@>j>>B@>>k>C@=F Strg+Enter
32916 \begin_inset Newline newline
32917 \end_inset
32918
32919
32920 \begin_inset Phantom HPhantom
32921 status open
32922
32923 \begin_layout Plain Layout
32924
32925 \series bold
32926
32927 \backslash
32928 CD
32929 \begin_inset ERT
32930 status collapsed
32931
32932 \begin_layout Plain Layout
32933
32934
32935 \backslash
32936 leer 
32937 \end_layout
32938
32939 \end_inset
32940
32941
32942 \end_layout
32943
32944 \end_inset
32945
32946 @AmAA@.@VV
32947 \backslash
32948 {V
32949 \series default
32950
32951 \begin_inset Formula $\to$
32952 \end_inset
32953
32954
32955 \series bold
32956 V@| Strg+Enter
32957 \begin_inset Newline newline
32958 \end_inset
32959
32960
32961 \begin_inset Phantom HPhantom
32962 status open
32963
32964 \begin_layout Plain Layout
32965
32966 \series bold
32967
32968 \backslash
32969 CD
32970 \begin_inset ERT
32971 status collapsed
32972
32973 \begin_layout Plain Layout
32974
32975
32976 \backslash
32977 leer 
32978 \end_layout
32979
32980 \end_inset
32981
32982
32983 \end_layout
32984
32985 \end_inset
32986
32987 D@<<j<E@>k>>F@=C
32988 \end_layout
32989
32990 \begin_layout Subsection
32991 xymatrix Diagramme
32992 \begin_inset Index idx
32993 status collapsed
32994
32995 \begin_layout Plain Layout
32996 Diagramme ! xymatrix
32997 \end_layout
32998
32999 \end_inset
33000
33001
33002 \end_layout
33003
33004 \begin_layout Standard
33005 Um Xymatrizen nutzen zu können, muss das LaTeX-Paket 
33006 \series bold
33007 xypic
33008 \series default
33009  installiert sein.
33010  Eine Xymatrix wird erstellt, indem der Befehl 
33011 \series bold
33012
33013 \backslash
33014 xymatrix
33015 \series default
33016  in eine Formel eingegeben wird.
33017  Dann können Sie neue Matrixspalten und -zeilen wie bei normalen Matrizen
33018  hinzufügen, siehe 
33019 \begin_inset CommandInset ref
33020 LatexCommand ref
33021 reference "sec:Matrizen"
33022
33023 \end_inset
33024
33025 .
33026 \end_layout
33027
33028 \begin_layout Standard
33029 Im Gegensatz zu amscd Diagrammen, unterstützen Xymatrixen diagonale und
33030  gekrümmte Pfeile und vieles mehr.
33031  Alle Möglichkeiten kommutative Diagramme und Dekorationen zu erzeugen,
33032  sind im Detail im 
33033 \emph on
33034 XY-pic-Handbuch
33035 \emph default
33036  erklärt, dass im Menü 
33037 \family sans
33038 Hilfe\SpecialChar \menuseparator
33039 Spezielle
33040 \begin_inset space ~
33041 \end_inset
33042
33043 Handbücher
33044 \family default
33045  zu finden ist.
33046 \end_layout
33047
33048 \begin_layout Subsection
33049
33050 \noun on
33051 Feynman
33052 \noun default
33053  Diagramme
33054 \begin_inset Index idx
33055 status collapsed
33056
33057 \begin_layout Plain Layout
33058 Diagramme ! Feynman
33059 \end_layout
33060
33061 \end_inset
33062
33063
33064 \end_layout
33065
33066 \begin_layout Standard
33067 Um 
33068 \noun on
33069 Feynman-
33070 \noun default
33071 Diagrammen nutzen zu können, muss das LaTeX-Paket 
33072 \series bold
33073 feyn
33074 \series default
33075  installiert sein.
33076  Ein 
33077 \noun on
33078 Feynman-
33079 \noun default
33080 Diagramm wird erstellt, indem der Befehl 
33081 \series bold
33082
33083 \backslash
33084 Diagram
33085 \series default
33086  in eine Formel eingegeben wird.
33087  Dann können Sie neue Matrixspalten und -zeilen wie bei normalen Matrizen
33088  hinzufügen, siehe 
33089 \begin_inset CommandInset ref
33090 LatexCommand ref
33091 reference "sec:Matrizen"
33092
33093 \end_inset
33094
33095 .
33096 \end_layout
33097
33098 \begin_layout Standard
33099 Beispiele wie man in LyX 
33100 \noun on
33101 Feynman-
33102 \noun default
33103 Diagramme erstellt sind im 
33104 \emph on
33105 Feynman-Diagramm Handbuch
33106 \emph default
33107  gegeben, dass im Menü 
33108 \family sans
33109 Hilfe\SpecialChar \menuseparator
33110 Spezielle
33111 \begin_inset space ~
33112 \end_inset
33113
33114 Handbücher
33115 \family default
33116  zu finden ist.
33117 \end_layout
33118
33119 \begin_layout Section
33120 Benutzerdefinierte Befehle
33121 \begin_inset CommandInset label
33122 LatexCommand label
33123 name "sec:Benutzerdefinierte-Befehle"
33124
33125 \end_inset
33126
33127
33128 \begin_inset Index idx
33129 status collapsed
33130
33131 \begin_layout Plain Layout
33132 benutzerdefinierte Befehle
33133 \end_layout
33134
33135 \end_inset
33136
33137
33138 \end_layout
33139
33140 \begin_layout Standard
33141 \begin_inset Note Greyedout
33142 status open
33143
33144 \begin_layout Plain Layout
33145
33146 \series bold
33147 Achtung: 
33148 \series default
33149 Die Namen von benutzerdefinierten Befehlen und Makros dürfen nur aus lateinische
33150 n Buchstaben bestehen.
33151 \end_layout
33152
33153 \end_inset
33154
33155
33156 \end_layout
33157
33158 \begin_layout Subsection
33159 Der Befehl 
33160 \backslash
33161 newcommand
33162 \begin_inset CommandInset label
33163 LatexCommand label
33164 name "sub:Der-Befehl-newcommand"
33165
33166 \end_inset
33167
33168
33169 \begin_inset Index idx
33170 status collapsed
33171
33172 \begin_layout Plain Layout
33173 benutzerdefinierte Befehle ! 
33174 \backslash
33175 newcommand
33176 \end_layout
33177
33178 \end_inset
33179
33180
33181 \begin_inset Index idx
33182 status collapsed
33183
33184 \begin_layout Plain Layout
33185 Befehle ! N ! 
33186 \backslash
33187 newcommand
33188 \end_layout
33189
33190 \end_inset
33191
33192
33193 \end_layout
33194
33195 \begin_layout Standard
33196 Viele der LaTeX-Befehle sind für den ständigen Gebrauch viel zu lang.
33197  Man kann sich aber mit dem Befehl 
33198 \series bold
33199
33200 \backslash
33201 newcommand
33202 \series default
33203  neue kürzere Befehle definieren.
33204 \end_layout
33205
33206 \begin_layout Standard
33207 Das Befehlsschema von 
33208 \series bold
33209
33210 \backslash
33211 newcommand
33212 \series default
33213  lautet:
33214 \end_layout
33215
33216 \begin_layout Standard
33217
33218 \series bold
33219
33220 \backslash
33221 newcommand{neuer Befehlsname}[Argumentanzahl][optionaler
33222 \series default
33223  
33224 \series bold
33225 Wert]
33226 \begin_inset Newline newline
33227 \end_inset
33228
33229
33230 \begin_inset Phantom HPhantom
33231 status open
33232
33233 \begin_layout Plain Layout
33234
33235 \series bold
33236
33237 \backslash
33238 newcommand
33239 \end_layout
33240
33241 \end_inset
33242
33243 {Befehlsdefinition}
33244 \end_layout
33245
33246 \begin_layout Standard
33247 \begin_inset Note Greyedout
33248 status open
33249
33250 \begin_layout Plain Layout
33251
33252 \series bold
33253 Achtung:
33254 \series default
33255  Es muss darauf geachtet werden, dass der Befehlsname nicht schon im Dokument
33256  oder von benutzten LaTeX-Paketen verwendet wird.
33257  Definiert man beispielsweise für 
33258 \series bold
33259
33260 \backslash
33261 Leftarrow
33262 \series default
33263  den Befehl 
33264 \series bold
33265
33266 \backslash
33267 le
33268 \series default
33269 , erhält man eine Fehlermeldung, denn 
33270 \series bold
33271
33272 \backslash
33273 le
33274 \series default
33275  ist schon für 
33276 \begin_inset Quotes gld
33277 \end_inset
33278
33279
33280 \begin_inset Formula $\le$
33281 \end_inset
33282
33283
33284 \begin_inset Quotes grd
33285 \end_inset
33286
33287  definiert.
33288 \end_layout
33289
33290 \end_inset
33291
33292
33293 \end_layout
33294
33295 \begin_layout Standard
33296 Die Argumentanzahl ist eine ganze Zahl im Bereich 0
33297 \begin_inset space \thinspace{}
33298 \end_inset
33299
33300 -
33301 \begin_inset space \thinspace{}
33302 \end_inset
33303
33304 9 und gibt an, wie viele Argumente der neue Befehl haben soll.
33305  Als optionalen Wert kann man den Wert für ein optionales Argument voreinstellen.
33306  Wenn man dies macht, bedeutet das gleichzeitig, dass das 
33307 \emph on
33308 erste
33309 \emph default
33310  Argument des neuen Befehls ein optionales ist.
33311 \end_layout
33312
33313 \begin_layout Standard
33314 Es folgen einige Beispiele:
33315 \end_layout
33316
33317 \begin_layout Itemize
33318 Will man für 
33319 \series bold
33320
33321 \backslash
33322 Longrightarrow
33323 \series default
33324  den Befehl 
33325 \series bold
33326
33327 \backslash
33328 gr
33329 \series default
33330  definieren, lautet die LaTeX-Vor\SpecialChar \-
33331 spannzeile:
33332 \begin_inset VSpace medskip
33333 \end_inset
33334
33335
33336 \begin_inset Newline newline
33337 \end_inset
33338
33339
33340 \series bold
33341
33342 \backslash
33343 newcommand{
33344 \backslash
33345 gr}{
33346 \backslash
33347 Longrightarrow}
33348 \end_layout
33349
33350 \begin_layout Itemize
33351 Um für den Befehl 
33352 \series bold
33353
33354 \backslash
33355 underline
33356 \series default
33357  den Befehl 
33358 \series bold
33359
33360 \backslash
33361 us
33362 \series default
33363  zu definieren, muss das Argument (was unterstrichen werden soll) berücksichtigt
33364  werden.
33365  Dazu sieht die Vorspannzeile wie folgt aus:
33366 \begin_inset VSpace medskip
33367 \end_inset
33368
33369
33370 \begin_inset Newline newline
33371 \end_inset
33372
33373
33374 \series bold
33375
33376 \backslash
33377 newcommand{
33378 \backslash
33379 us}[1]{
33380 \backslash
33381 underline{#1}}
33382 \series default
33383
33384 \begin_inset VSpace medskip
33385 \end_inset
33386
33387
33388 \begin_inset Newline newline
33389 \end_inset
33390
33391 Das Zeichen 
33392 \series bold
33393 #
33394 \series default
33395  fungiert als Argumentplatzhalter, die 
33396 \series bold
33397 1
33398 \series default
33399  dahinter gibt an, dass es der Platzhalter für das erste Argument ist.
33400 \end_layout
33401
33402 \begin_layout Itemize
33403 Für 
33404 \series bold
33405
33406 \backslash
33407 framebox
33408 \series default
33409  kann man z.
33410 \begin_inset space \thinspace{}
33411 \end_inset
33412
33413 B.
33414  den Befehl 
33415 \series bold
33416
33417 \backslash
33418 fb
33419 \series default
33420  definieren:
33421 \begin_inset VSpace medskip
33422 \end_inset
33423
33424
33425 \begin_inset Newline newline
33426 \end_inset
33427
33428
33429 \series bold
33430
33431 \backslash
33432 newcommand{
33433 \backslash
33434 fb}[3]{
33435 \backslash
33436 framebox#1#2{$#3$}}
33437 \series default
33438
33439 \begin_inset VSpace medskip
33440 \end_inset
33441
33442
33443 \begin_inset Newline newline
33444 \end_inset
33445
33446 Die beiden Dollarzeichen erstellen hierbei die für 
33447 \series bold
33448
33449 \backslash
33450 framebox
33451 \series default
33452  geforderte weitere Formel, siehe 
33453 \begin_inset CommandInset ref
33454 LatexCommand ref
33455 reference "sub:Boxen-mit-Rahmen"
33456
33457 \end_inset
33458
33459 .
33460 \end_layout
33461
33462 \begin_layout Itemize
33463 Um einen neuen Befehl für 
33464 \series bold
33465
33466 \backslash
33467 fcolorbox
33468 \series default
33469  zu erstellen, bei dem die Farbe der Box nicht mehr angegeben werden muss,
33470  definiert man das Argument für die Farbe als optional:
33471 \begin_inset VSpace medskip
33472 \end_inset
33473
33474
33475 \begin_inset Newline newline
33476 \end_inset
33477
33478
33479 \series bold
33480
33481 \backslash
33482 newcommand{
33483 \backslash
33484 cb}[3][white]{
33485 \backslash
33486 fcolorbox{#2}{#1}{$#3$}}
33487 \series default
33488
33489 \begin_inset VSpace medskip
33490 \end_inset
33491
33492
33493 \begin_inset Newline newline
33494 \end_inset
33495
33496 Gibt man bei der Verwendung von 
33497 \series bold
33498
33499 \backslash
33500 cb
33501 \series default
33502  die Farbe nicht an, wird die voreingestellte Farbe 
33503 \series bold
33504 white
33505 \series default
33506  verwendet.
33507 \end_layout
33508
33509 \begin_layout Standard
33510 Ein Test der neu definierten Befehle:
33511 \end_layout
33512
33513 \begin_layout Standard
33514 \align center
33515 \begin_inset Tabular
33516 <lyxtabular version="3" rows="6" columns="2">
33517 <features tabularvalignment="middle">
33518 <column alignment="center" valignment="top" width="0">
33519 <column alignment="center" valignment="top" width="0">
33520 <row>
33521 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
33522 \begin_inset Text
33523
33524 \begin_layout Plain Layout
33525 Befehl
33526 \end_layout
33527
33528 \end_inset
33529 </cell>
33530 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
33531 \begin_inset Text
33532
33533 \begin_layout Plain Layout
33534 Ergebnis
33535 \begin_inset Note Note
33536 status collapsed
33537
33538 \begin_layout Plain Layout
33539
33540 \series bold
33541
33542 \backslash
33543 raisebox
33544 \series default
33545  dient nur als Abstandhalter.
33546 \end_layout
33547
33548 \end_inset
33549
33550
33551 \end_layout
33552
33553 \end_inset
33554 </cell>
33555 </row>
33556 <row>
33557 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
33558 \begin_inset Text
33559
33560 \begin_layout Plain Layout
33561 A
33562 \backslash
33563 gr
33564 \begin_inset ERT
33565 status collapsed
33566
33567 \begin_layout Plain Layout
33568
33569
33570 \backslash
33571 leer 
33572 \end_layout
33573
33574 \end_inset
33575
33576 B
33577 \end_layout
33578
33579 \end_inset
33580 </cell>
33581 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
33582 \begin_inset Text
33583
33584 \begin_layout Plain Layout
33585 \begin_inset Formula $A\gr B$
33586 \end_inset
33587
33588
33589 \end_layout
33590
33591 \end_inset
33592 </cell>
33593 </row>
33594 <row>
33595 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
33596 \begin_inset Text
33597
33598 \begin_layout Plain Layout
33599
33600 \backslash
33601 us{ABcd
33602 \end_layout
33603
33604 \end_inset
33605 </cell>
33606 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
33607 \begin_inset Text
33608
33609 \begin_layout Plain Layout
33610 \begin_inset Formula $\raisebox{4.5mm}{}\us{ABcd}\raisebox{-2mm}{}$
33611 \end_inset
33612
33613
33614 \end_layout
33615
33616 \end_inset
33617 </cell>
33618 </row>
33619 <row>
33620 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
33621 \begin_inset Text
33622
33623 \begin_layout Plain Layout
33624
33625 \backslash
33626 fb{[2cm]
33627 \begin_inset Formula $\to$
33628 \end_inset
33629
33630
33631 \backslash
33632 {
33633 \begin_inset Formula $\to$
33634 \end_inset
33635
33636
33637 \backslash
33638 {
33639 \backslash
33640 int
33641 \begin_inset ERT
33642 status collapsed
33643
33644 \begin_layout Plain Layout
33645
33646
33647 \backslash
33648 leer 
33649 \end_layout
33650
33651 \end_inset
33652
33653 A=B
33654 \end_layout
33655
33656 \end_inset
33657 </cell>
33658 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
33659 \begin_inset Text
33660
33661 \begin_layout Plain Layout
33662 \begin_inset Formula $\raisebox{6mm}{}\fb{[2cm]}{}{\int A=B}\raisebox{-4mm}{}$
33663 \end_inset
33664
33665
33666 \end_layout
33667
33668 \end_inset
33669 </cell>
33670 </row>
33671 <row>
33672 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
33673 \begin_inset Text
33674
33675 \begin_layout Plain Layout
33676
33677 \backslash
33678 cb{red
33679 \begin_inset Formula $\to$
33680 \end_inset
33681
33682
33683 \backslash
33684 {
33685 \backslash
33686 int
33687 \begin_inset ERT
33688 status collapsed
33689
33690 \begin_layout Plain Layout
33691
33692
33693 \backslash
33694 leer 
33695 \end_layout
33696
33697 \end_inset
33698
33699 A=B
33700 \end_layout
33701
33702 \end_inset
33703 </cell>
33704 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
33705 \begin_inset Text
33706
33707 \begin_layout Plain Layout
33708 \begin_inset Formula $\raisebox{6mm}{}\cb{red}{\int A=B}\raisebox{-4mm}{}$
33709 \end_inset
33710
33711
33712 \end_layout
33713
33714 \end_inset
33715 </cell>
33716 </row>
33717 <row>
33718 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
33719 \begin_inset Text
33720
33721 \begin_layout Plain Layout
33722
33723 \backslash
33724 cb[green]
33725 \backslash
33726 {red
33727 \begin_inset Formula $\to$
33728 \end_inset
33729
33730
33731 \backslash
33732 {
33733 \backslash
33734 int
33735 \begin_inset ERT
33736 status collapsed
33737
33738 \begin_layout Plain Layout
33739
33740
33741 \backslash
33742 leer 
33743 \end_layout
33744
33745 \end_inset
33746
33747 A=B
33748 \end_layout
33749
33750 \end_inset
33751 </cell>
33752 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
33753 \begin_inset Text
33754
33755 \begin_layout Plain Layout
33756 \begin_inset Formula $\raisebox{6mm}{}\cb[green]{red}{\int A=B}\raisebox{-4mm}{}$
33757 \end_inset
33758
33759
33760 \end_layout
33761
33762 \end_inset
33763 </cell>
33764 </row>
33765 </lyxtabular>
33766
33767 \end_inset
33768
33769
33770 \end_layout
33771
33772 \begin_layout Subsection
33773 Mathe-Makros
33774 \begin_inset Index idx
33775 status collapsed
33776
33777 \begin_layout Plain Layout
33778 benutzerdefinierte Befehle ! Mathe-Makros
33779 \end_layout
33780
33781 \end_inset
33782
33783
33784 \begin_inset Index idx
33785 status collapsed
33786
33787 \begin_layout Plain Layout
33788 Makros
33789 \end_layout
33790
33791 \end_inset
33792
33793
33794 \end_layout
33795
33796 \begin_layout Standard
33797 Besonders praktisch sind eigene Befehle für komplexe Ausdrücke.
33798  Hat man es in einem Dokument z.
33799 \begin_inset space \thinspace{}
33800 \end_inset
33801
33802 B.
33803  häufiger mit quadratischen Gleichungen zu tun, tritt immer derselbe Lösungstyp
33804  auf.
33805  Die allgemeine Form einer quadratischen Gleichung ist
33806 \begin_inset Formula 
33807 \[
33808 0=\lambda^{2}+p\lambda+q
33809 \]
33810
33811 \end_inset
33812
33813 Die allgemeine Form der Lösung lautet
33814 \begin_inset Formula 
33815 \[
33816 \lambda_{1,2}=-\frac{p}{2}\pm\sqrt{\frac{p²}{4}-q}
33817 \]
33818
33819 \end_inset
33820
33821
33822 \end_layout
33823
33824 \begin_layout Standard
33825 Um für die Lösungsformel einen Befehl zu definieren, bei dem nur noch die
33826  drei Parameter 
33827 \begin_inset Formula $\lambda$
33828 \end_inset
33829
33830
33831 \begin_inset Formula $p$
33832 \end_inset
33833
33834  und 
33835 \begin_inset Formula $q$
33836 \end_inset
33837
33838  angegeben werden müssen und der Index von 
33839 \begin_inset Formula $\lambda$
33840 \end_inset
33841
33842  optional angeben werden kann, lautet die LaTeX-Vorspannzeile
33843 \begin_inset Newline newline
33844 \end_inset
33845
33846
33847 \series bold
33848
33849 \backslash
33850 newcommand{
33851 \backslash
33852 qG}[4][1,
33853 \backslash
33854 ,2]{#2_{#1}=-
33855 \backslash
33856 frac{#3}{2}
33857 \backslash
33858 pm
33859 \begin_inset Newline newline
33860 \end_inset
33861
33862
33863 \begin_inset Phantom HPhantom
33864 status open
33865
33866 \begin_layout Plain Layout
33867
33868 \series bold
33869
33870 \backslash
33871 newcommand
33872 \end_layout
33873
33874 \end_inset
33875
33876
33877 \backslash
33878 sqrt{
33879 \backslash
33880 frac{#3^{2}}{4}-#4}}
33881 \end_layout
33882
33883 \begin_layout Standard
33884 Um damit die Lösungsformel zu erstellen, gibt man in einer Formel den Befehl
33885  
33886 \begin_inset Newline newline
33887 \end_inset
33888
33889
33890 \series bold
33891
33892 \backslash
33893 qG{
33894 \backslash
33895 lambda
33896 \begin_inset Formula $\to$
33897 \end_inset
33898
33899
33900 \backslash
33901 {p
33902 \begin_inset Formula $\to$
33903 \end_inset
33904
33905
33906 \backslash
33907 {q 
33908 \series default
33909 ein.
33910 \end_layout
33911
33912 \begin_layout Standard
33913 Die Definition des neuen Befehls ist unintuitiv, denn man muss die Schemata
33914  aller verwendeten LaTeX-Befehle kennen, z.
33915 \begin_inset space \thinspace{}
33916 \end_inset
33917
33918 B.
33919  dass ein Bruch in LaTeX mit 
33920 \series bold
33921
33922 \backslash
33923 frac{Zähler}
33924 \begin_inset Newline linebreak
33925 \end_inset
33926
33927 {Nenner}
33928 \series default
33929  eingegeben wird.
33930  Außerdem kann man leicht eine geschweifte Klammer vergessen und man kann
33931  in LyX nicht sehen, was der neue Befehl macht.
33932  Um diesen Problemen aus dem Weg zu gehen, gibt es in LyX die Möglichkeit
33933  Mathe-Makros statt den Befehl 
33934 \series bold
33935
33936 \backslash
33937 newcommand
33938 \series default
33939  zu verwenden.
33940 \end_layout
33941
33942 \begin_layout Standard
33943 Ein Mathe-Makro wird erstellt, indem man das Menü 
33944 \family sans
33945 Einfügen\SpecialChar \menuseparator
33946 Mathe\SpecialChar \menuseparator
33947 Makro
33948 \family default
33949  oder den Werkzeugleistenknopf 
33950 \begin_inset Graphics
33951         filename ../../images/math-macro_newmacroname_newcommand.png
33952         scale 85
33953
33954 \end_inset
33955
33956  verwendet.
33957  Es erscheint die Mathe-Makro-Werkzeugleiste und folgende Box, in der das
33958  Makro definiert wird:
33959 \begin_inset Newline newline
33960 \end_inset
33961
33962
33963 \begin_inset space \hspace*{\fill}
33964 \end_inset
33965
33966
33967 \begin_inset Graphics
33968         filename ../clipart/macrobox.png
33969
33970 \end_inset
33971
33972
33973 \begin_inset space \hspace*{\fill}
33974 \end_inset
33975
33976
33977 \begin_inset Newline newline
33978 \end_inset
33979
33980
33981 \begin_inset FormulaMacro
33982 \newcommand{\qG}[4][1,\,2]{#2_{#1}=-\frac{#3}{2}\pm\sqrt{\frac{#3^{2}}{4}-#4}}
33983 \end_inset
33984
33985
33986 \backslash
33987 newmacroname ist der voreingestellte Makroname, der auf etwas sinnvolles
33988  geändert werden sollte.
33989  In das erste blaue Kästchen gibt man die gewünschte Formel ein.
33990  Einen Argumentplatzhalter fügt man mit dem Befehl 
33991 \series bold
33992
33993 \backslash
33994 #Argumentnummer
33995 \series default
33996  ein, z.
33997 \begin_inset space \thinspace{}
33998 \end_inset
33999
34000 B.
34001  
34002 \series bold
34003
34004 \backslash
34005 #1
34006 \series default
34007  oder man verwendet den Makro-Werkzeugleistenknopf 
34008 \begin_inset Graphics
34009         filename ../../images/math-macro-add-param.png
34010         scale 85
34011
34012 \end_inset
34013
34014 .
34015  Argumentplatzhalter werden rot dargestellt.
34016  Es sind maximal 9
34017 \begin_inset space ~
34018 \end_inset
34019
34020 Argumente möglich.
34021  Optionale Argumente werden mit dem Werkzeugleistenknopf 
34022 \begin_inset Graphics
34023         filename ../../images/math-macro-add-optional-param.png
34024         scale 85
34025
34026 \end_inset
34027
34028  erstellt.
34029  Mit dem Werkzeugleistenknopf 
34030 \begin_inset Graphics
34031         filename ../../images/math-macro-make-optional.png
34032         scale 85
34033
34034 \end_inset
34035
34036  kann das erste nicht-optionale Argument in ein optionales verwandelt werden.
34037  Im zweiten Kästchen kann man definieren wie das Makro in LyX angezeigt
34038  werden soll.
34039  Normalerweise will man es so sehen, wie es definiert wurde, wozu man das
34040  Kästchen leer lässt.
34041  Hat man hingegen ein Makro erstellt, der auf dem Bildschirm viel Platz
34042  einnimmt, kann man in das Kästchen z.
34043 \begin_inset space \thinspace{}
34044 \end_inset
34045
34046 B.
34047 \begin_inset Newline newline
34048 \end_inset
34049
34050
34051 \series bold
34052 qG: 
34053 \backslash
34054 #1
34055 \series default
34056  
34057 \series bold
34058 ,
34059 \series default
34060  
34061 \series bold
34062
34063 \backslash
34064 #2
34065 \series default
34066  
34067 \series bold
34068 ,
34069 \series default
34070  
34071 \series bold
34072
34073 \backslash
34074 #3, 
34075 \backslash
34076 #4
34077 \begin_inset Newline newline
34078 \end_inset
34079
34080
34081 \series default
34082 eingeben.
34083  Für das Makro werden dann in LyX nur die Argumente mit dem davor stehenden
34084  Makronamen angezeigt, was für mehr Überblick im Dokument sorgt.
34085  Im Ausdruck erscheint die Formel so, wie sie im ersten Kästchen definiert
34086  wurde.
34087 \begin_inset Newline newline
34088 \end_inset
34089
34090 Das Erscheinungsbild von Makros in Formeln lässt sich außerdem für einzelne
34091  Makros ändern, indem man den Cursor in das Makro setzt und das Menü 
34092 \family sans
34093 Ansicht\SpecialChar \menuseparator
34094 Mathe-Makro
34095 \begin_inset space ~
34096 \end_inset
34097
34098 auf/zuklappen
34099 \family default
34100  verwendet.
34101 \end_layout
34102
34103 \begin_layout Standard
34104 Um ein Makro zu verwenden, gibt man in eine Formel den Makronamen als Befehl
34105  ein, in unserem Fall 
34106 \series bold
34107
34108 \backslash
34109 qG
34110 \series default
34111 .
34112  Unser Makro sieht in LyX folgendermaßen aus:
34113 \begin_inset Newline newline
34114 \end_inset
34115
34116
34117 \begin_inset space \hspace*{\fill}
34118 \end_inset
34119
34120
34121 \begin_inset Graphics
34122         filename ../clipart/macrouse.png
34123
34124 \end_inset
34125
34126
34127 \begin_inset space \hspace*{\fill}
34128 \end_inset
34129
34130
34131 \begin_inset Newline newline
34132 \end_inset
34133
34134 Hier ist unser Makro-Beispiel mit den Argumenten 
34135 \begin_inset Formula $x$
34136 \end_inset
34137
34138
34139 \begin_inset Formula $\ln(x)$
34140 \end_inset
34141
34142  und 
34143 \begin_inset Formula $B$
34144 \end_inset
34145
34146 :
34147 \end_layout
34148
34149 \begin_layout Standard
34150 \begin_inset Formula 
34151 \[
34152 \qG x{\ln(x)}B
34153 \]
34154
34155 \end_inset
34156
34157
34158 \end_layout
34159
34160 \begin_layout Standard
34161 LyX bietet im Menü 
34162 \family sans
34163 Werkzeuge\SpecialChar \menuseparator
34164 Einstellungen\SpecialChar \menuseparator
34165 Bearbeiten\SpecialChar \menuseparator
34166 Kontrolle
34167 \family default
34168  verschiedene Bearbeitungsstile für Makros an.
34169  Um den Stil zu finden, der für Sie am angenehmsten ist, wählen Sie einen
34170  Stil aus und setzen den Cursor in eine Makro-Formel um den Unterschied
34171  zu sehen.
34172 \end_layout
34173
34174 \begin_layout Standard
34175 Ein Mathe-Makro wird beim Exportieren des Dokuments intern in einen 
34176 \series bold
34177
34178 \backslash
34179 new\SpecialChar \-
34180 command
34181 \series default
34182 -Befehl umgewandelt.
34183  Der 
34184 \series bold
34185
34186 \backslash
34187 newcommand
34188 \series default
34189 -Befehl wird dabei nicht in den LaTeX-Vorspann gesetzt, so dass man daher
34190  Makros nur in Formeln verwenden kann, die sich im Dokument unterhalb der
34191  Makrodefinitionsbox befinden.
34192 \end_layout
34193
34194 \begin_layout Standard
34195 Mathe-Makros können auch direkt aus einem 
34196 \series bold
34197
34198 \backslash
34199 newcommand
34200 \series default
34201 -Befehl erstellt werden.
34202  Schreibt man z.
34203 \begin_inset space \thinspace{}
34204 \end_inset
34205
34206 B.
34207  den Befehl
34208 \series bold
34209
34210 \begin_inset Newline newline
34211 \end_inset
34212
34213
34214 \backslash
34215 newcommand{
34216 \backslash
34217 larrow}[2]{
34218 \backslash
34219 xleftarrow[#2]{#1}}
34220 \begin_inset Newline newline
34221 \end_inset
34222
34223
34224 \series default
34225 in LyX als normalen Text, markiert ihn komplett und verwendet dann das Tastenkür
34226 zel 
34227 \family sans
34228 Strg+M
34229 \family default
34230 , wird der Befehl in ein Mathe-Makro umgewandelt.
34231  Bei dieser Methode muss man jedoch aufpassen, dass der 
34232 \series bold
34233
34234 \backslash
34235 newcommand
34236 \series default
34237 -Befehl richtig geschrieben wurde, ansonsten wird ein fehlerhaftes Makro
34238  erstellt, dass später LaTeX-Fehler hervorruft.
34239 \end_layout
34240
34241 \begin_layout Standard
34242 Mathe-Makros haben im Moment noch das Problem, dass weitere Formeln in einer
34243  Makrodefinition fehlerhaft behandelt werden.
34244  Dadurch kann das Beispiel 
34245 \series bold
34246
34247 \backslash
34248 fb
34249 \series default
34250  aus 
34251 \begin_inset CommandInset ref
34252 LatexCommand ref
34253 reference "sub:Der-Befehl-newcommand"
34254
34255 \end_inset
34256
34257  nicht als Makro erzeugt werden.
34258 \end_layout
34259
34260 \begin_layout Standard
34261 Wenn der Cursor in einer Makrodefinitionsbox ist, wird die Makro-Werkzeugleiste
34262  in LyX angezeigt:
34263 \end_layout
34264
34265 \begin_layout Standard
34266 \begin_inset VSpace defskip
34267 \end_inset
34268
34269
34270 \end_layout
34271
34272 \begin_layout Standard
34273 \begin_inset Graphics
34274         filename ../clipart/MacroToolbar.png
34275
34276 \end_inset
34277
34278
34279 \begin_inset Index idx
34280 status collapsed
34281
34282 \begin_layout Plain Layout
34283 Makros ! Werkzeugleiste
34284 \end_layout
34285
34286 \end_inset
34287
34288
34289 \end_layout
34290
34291 \begin_layout Standard
34292 \begin_inset VSpace defskip
34293 \end_inset
34294
34295
34296 \end_layout
34297
34298 \begin_layout Standard
34299 Die Makro-Werkzeugleiste enthält von links nach rechts die folgenden Knöpfe:
34300 \end_layout
34301
34302 \begin_layout Standard
34303 \begin_inset VSpace defskip
34304 \end_inset
34305
34306
34307 \end_layout
34308
34309 \begin_layout Standard
34310 \begin_inset Tabular
34311 <lyxtabular version="3" rows="9" columns="2">
34312 <features islongtable="true" longtabularalignment="center">
34313 <column alignment="left" valignment="top" width="0">
34314 <column alignment="left" valignment="top" width="85col%">
34315 <row interlinespace="2.5mm">
34316 <cell alignment="center" valignment="top" usebox="none">
34317 \begin_inset Text
34318
34319 \begin_layout Plain Layout
34320 \begin_inset Graphics
34321         filename ../../images/math-macro-remove-param.png
34322         rotateOrigin center
34323
34324 \end_inset
34325
34326
34327 \end_layout
34328
34329 \end_inset
34330 </cell>
34331 <cell alignment="center" valignment="top" usebox="none">
34332 \begin_inset Text
34333
34334 \begin_layout Plain Layout
34335
34336 \family sans
34337 Bearbeiten\SpecialChar \menuseparator
34338 Mathe\SpecialChar \menuseparator
34339 Makro-Definition\SpecialChar \menuseparator
34340 Letztes Argument entfernen
34341 \end_layout
34342
34343 \end_inset
34344 </cell>
34345 </row>
34346 <row interlinespace="2.5mm">
34347 <cell alignment="center" valignment="top" usebox="none">
34348 \begin_inset Text
34349
34350 \begin_layout Plain Layout
34351 \begin_inset Graphics
34352         filename ../../images/math-macro-add-param.png
34353         rotateOrigin center
34354
34355 \end_inset
34356
34357
34358 \end_layout
34359
34360 \end_inset
34361 </cell>
34362 <cell alignment="center" valignment="top" usebox="none">
34363 \begin_inset Text
34364
34365 \begin_layout Plain Layout
34366
34367 \family sans
34368 Bearbeiten\SpecialChar \menuseparator
34369 Mathe\SpecialChar \menuseparator
34370 Makro-Definition\SpecialChar \menuseparator
34371 Argument hinzufügen
34372 \end_layout
34373
34374 \end_inset
34375 </cell>
34376 </row>
34377 <row interlinespace="2.5mm">
34378 <cell alignment="center" valignment="top" usebox="none">
34379 \begin_inset Text
34380
34381 \begin_layout Plain Layout
34382 \begin_inset Graphics
34383         filename ../../images/math-macro-make-optional.png
34384         rotateOrigin center
34385
34386 \end_inset
34387
34388
34389 \end_layout
34390
34391 \end_inset
34392 </cell>
34393 <cell alignment="center" valignment="top" usebox="none">
34394 \begin_inset Text
34395
34396 \begin_layout Plain Layout
34397
34398 \family sans
34399 Bearbeiten\SpecialChar \menuseparator
34400 Mathe\SpecialChar \menuseparator
34401 Makro-Definition\SpecialChar \menuseparator
34402 Das erste nicht-optionale
34403 \begin_inset Newline newline
34404 \end_inset
34405
34406
34407 \begin_inset Phantom HPhantom
34408 status open
34409
34410 \begin_layout Plain Layout
34411
34412 \family sans
34413 Bearbeiten\SpecialChar \menuseparator
34414 Mathe\SpecialChar \menuseparator
34415 Makro-Definition\SpecialChar \menuseparator
34416
34417 \end_layout
34418
34419 \end_inset
34420
34421 Argument in einen optionales
34422 \begin_inset Newline newline
34423 \end_inset
34424
34425
34426 \begin_inset Phantom HPhantom
34427 status open
34428
34429 \begin_layout Plain Layout
34430
34431 \family sans
34432 Bearbeiten\SpecialChar \menuseparator
34433 Mathe\SpecialChar \menuseparator
34434 Makro-Definition\SpecialChar \menuseparator
34435
34436 \end_layout
34437
34438 \end_inset
34439
34440 ändern
34441 \end_layout
34442
34443 \end_inset
34444 </cell>
34445 </row>
34446 <row interlinespace="2.5mm">
34447 <cell alignment="center" valignment="top" usebox="none">
34448 \begin_inset Text
34449
34450 \begin_layout Plain Layout
34451 \begin_inset Graphics
34452         filename ../../images/math-macro-make-nonoptional.png
34453         rotateOrigin center
34454
34455 \end_inset
34456
34457
34458 \end_layout
34459
34460 \end_inset
34461 </cell>
34462 <cell alignment="center" valignment="top" usebox="none">
34463 \begin_inset Text
34464
34465 \begin_layout Plain Layout
34466
34467 \family sans
34468 Bearbeiten\SpecialChar \menuseparator
34469 Mathe\SpecialChar \menuseparator
34470 Makro-Definition\SpecialChar \menuseparator
34471 Das letzte optionale Argument in
34472 \begin_inset Newline newline
34473 \end_inset
34474
34475
34476 \begin_inset Phantom HPhantom
34477 status open
34478
34479 \begin_layout Plain Layout
34480
34481 \family sans
34482 Bearbeiten\SpecialChar \menuseparator
34483 Mathe\SpecialChar \menuseparator
34484 Makro-Definition\SpecialChar \menuseparator
34485
34486 \end_layout
34487
34488 \end_inset
34489
34490 einen nicht-optionales ändern
34491 \end_layout
34492
34493 \end_inset
34494 </cell>
34495 </row>
34496 <row interlinespace="2.5mm">
34497 <cell alignment="center" valignment="top" usebox="none">
34498 \begin_inset Text
34499
34500 \begin_layout Plain Layout
34501 \begin_inset Graphics
34502         filename ../../images/math-macro-remove-optional-param.png
34503         rotateOrigin center
34504
34505 \end_inset
34506
34507
34508 \end_layout
34509
34510 \end_inset
34511 </cell>
34512 <cell alignment="center" valignment="top" usebox="none">
34513 \begin_inset Text
34514
34515 \begin_layout Plain Layout
34516
34517 \family sans
34518 Bearbeiten\SpecialChar \menuseparator
34519 Mathe\SpecialChar \menuseparator
34520 Makro-Definition\SpecialChar \menuseparator
34521 Optionales Argument entfernen
34522 \end_layout
34523
34524 \end_inset
34525 </cell>
34526 </row>
34527 <row interlinespace="2.5mm">
34528 <cell alignment="center" valignment="top" usebox="none">
34529 \begin_inset Text
34530
34531 \begin_layout Plain Layout
34532 \begin_inset Graphics
34533         filename ../../images/math-macro-add-optional-param.png
34534         rotateOrigin center
34535
34536 \end_inset
34537
34538
34539 \end_layout
34540
34541 \end_inset
34542 </cell>
34543 <cell alignment="center" valignment="top" usebox="none">
34544 \begin_inset Text
34545
34546 \begin_layout Plain Layout
34547
34548 \family sans
34549 Bearbeiten\SpecialChar \menuseparator
34550 Mathe\SpecialChar \menuseparator
34551 Makro-Definition\SpecialChar \menuseparator
34552 Optionales Argument einfügen
34553 \end_layout
34554
34555 \end_inset
34556 </cell>
34557 </row>
34558 <row interlinespace="2.5mm">
34559 <cell alignment="center" valignment="top" usebox="none">
34560 \begin_inset Text
34561
34562 \begin_layout Plain Layout
34563 \begin_inset Graphics
34564         filename ../../images/math-macro-remove-greedy-param.png
34565         rotateOrigin center
34566
34567 \end_inset
34568
34569
34570 \end_layout
34571
34572 \end_inset
34573 </cell>
34574 <cell alignment="center" valignment="top" usebox="none">
34575 \begin_inset Text
34576
34577 \begin_layout Plain Layout
34578
34579 \family sans
34580 Bearbeiten\SpecialChar \menuseparator
34581 Mathe\SpecialChar \menuseparator
34582 Makro-Definition\SpecialChar \menuseparator
34583 Letztes Argument rechts entfernen
34584 \end_layout
34585
34586 \end_inset
34587 </cell>
34588 </row>
34589 <row interlinespace="2.5mm">
34590 <cell alignment="center" valignment="top" usebox="none">
34591 \begin_inset Text
34592
34593 \begin_layout Plain Layout
34594 \begin_inset Graphics
34595         filename ../../images/math-macro-append-greedy-param.png
34596         rotateOrigin center
34597
34598 \end_inset
34599
34600
34601 \end_layout
34602
34603 \end_inset
34604 </cell>
34605 <cell alignment="center" valignment="top" usebox="none">
34606 \begin_inset Text
34607
34608 \begin_layout Plain Layout
34609
34610 \family sans
34611 Bearbeiten\SpecialChar \menuseparator
34612 Mathe\SpecialChar \menuseparator
34613 Makro-Definition\SpecialChar \menuseparator
34614 Argument von rechts hinzufügen
34615 \end_layout
34616
34617 \end_inset
34618 </cell>
34619 </row>
34620 <row interlinespace="2.5mm">
34621 <cell alignment="center" valignment="top" usebox="none">
34622 \begin_inset Text
34623
34624 \begin_layout Plain Layout
34625 \begin_inset Graphics
34626         filename ../../images/math-macro-add-greedy-optional-param.png
34627         rotateOrigin center
34628
34629 \end_inset
34630
34631
34632 \end_layout
34633
34634 \end_inset
34635 </cell>
34636 <cell alignment="center" valignment="top" usebox="none">
34637 \begin_inset Text
34638
34639 \begin_layout Plain Layout
34640
34641 \family sans
34642 Bearbeiten\SpecialChar \menuseparator
34643 Mathe\SpecialChar \menuseparator
34644 Makro-Definition\SpecialChar \menuseparator
34645 Optionales Argument von rechts
34646 \begin_inset Newline newline
34647 \end_inset
34648
34649
34650 \begin_inset Phantom HPhantom
34651 status open
34652
34653 \begin_layout Plain Layout
34654
34655 \family sans
34656 Bearbeiten\SpecialChar \menuseparator
34657 Mathe\SpecialChar \menuseparator
34658 Makro-Definition\SpecialChar \menuseparator
34659
34660 \end_layout
34661
34662 \end_inset
34663
34664 hinzufügen
34665 \end_layout
34666
34667 \end_inset
34668 </cell>
34669 </row>
34670 </lyxtabular>
34671
34672 \end_inset
34673
34674
34675 \end_layout
34676
34677 \begin_layout Section
34678 Computeralgebrasysteme
34679 \end_layout
34680
34681 \begin_layout Standard
34682 Mit LyX ist es möglich, mathematische Ausdrücke mit externen Anwendungen
34683  oder benutzerdefinierten Skripten auszutauschen.
34684  Momentan werden folgende Anwendungen unterstützt: 
34685 \family typewriter
34686 Maple
34687 \family default
34688
34689 \family typewriter
34690 Mathematica
34691 \family default
34692
34693 \family typewriter
34694 Maxima
34695 \family default
34696  und 
34697 \family typewriter
34698 Octave
34699 \family default
34700 .
34701  Beachten Sie aber, dass die unterstützten mathematischen Ausdrücke auf
34702  sehr einfache Fälle beschränkt sind.
34703 \end_layout
34704
34705 \begin_layout Subsection
34706 Verwendung
34707 \end_layout
34708
34709 \begin_layout Standard
34710 Schreiben Sie einen Ausdruck in eine Formel, öffnen Sie das Menü 
34711 \family sans
34712 Bearbeiten\SpecialChar \menuseparator
34713 Mathe\SpecialChar \menuseparator
34714 Computer-Algebra-System verwenden
34715 \family default
34716  und wählen Sie die Anwendung, die Sie auf ihrem Computer installiert haben.
34717  Danach sollte das Ergebnis der Berechnung auf der rechten Seite zusammen
34718  mit dem 
34719 \begin_inset Quotes gld
34720 \end_inset
34721
34722 =
34723 \begin_inset Quotes grd
34724 \end_inset
34725
34726  Operator erscheinen.
34727 \end_layout
34728
34729 \begin_layout Standard
34730 Hier sind ein paar einfache Beispiele (mit Resultaten von 
34731 \family typewriter
34732 Maxima
34733 \family default
34734 ) um zu zeigen, welche Berechnungen durchgeführt werden können:
34735 \end_layout
34736
34737 \begin_layout Itemize
34738 \begin_inset Formula $\frac{37}{3}*2-\sum_{i=1}^{3}i^{i}=-\frac{22}{3}$
34739 \end_inset
34740
34741
34742 \end_layout
34743
34744 \begin_layout Itemize
34745 \begin_inset Formula $\frac{37.0}{3}=12.33333333333333$
34746 \end_inset
34747
34748
34749 \end_layout
34750
34751 \begin_layout Itemize
34752 \begin_inset Formula $\int_{1}^{2}\sin(x)dx=\cos1-\cos2$
34753 \end_inset
34754
34755
34756 \end_layout
34757
34758 \begin_layout Itemize
34759 \begin_inset Formula $\det\left[\begin{array}{ccc}
34760 1 & 6 & 7\\
34761 2 & 5 & 8\\
34762 3 & 4 & 17
34763 \end{array}\right]=-56$
34764 \end_inset
34765
34766
34767 \end_layout
34768
34769 \begin_layout Itemize
34770 \begin_inset Formula $\lim_{x\rightarrow0}\left(\frac{\sin(x)}{x}\right)=1$
34771 \end_inset
34772
34773
34774 \end_layout
34775
34776 \begin_layout Subsection
34777 Tastenkürzel
34778 \end_layout
34779
34780 \begin_layout Standard
34781 Momentan gibt es kein Tastenkürzel um Computeralgebrasysteme aufzurufen.
34782  Sie können aber einfach ein Tastenkürzel mit der LyX-Funktion 
34783 \family sans
34784 math-extern
34785 \family default
34786  verknüpfen (siehe das 
34787 \emph on
34788 LyX-Funktionen
34789 \emph default
34790  Handbuch).
34791  Man kann z.
34792 \begin_inset space \thinspace{}
34793 \end_inset
34794
34795 B.
34796  die 
34797 \family sans
34798 Enter
34799 \family default
34800 -Taste in Formeln verknüpfen.
34801  Um sie mit 
34802 \family typewriter
34803 Maxima
34804 \family default
34805  zu verknüpfen, würde man diesen Tastenkürzel-Definitionsbefehl verwenden:
34806 \end_layout
34807
34808 \begin_layout Standard
34809
34810 \series bold
34811 command-alternatives paragraph-break;math-extern maxima
34812 \end_layout
34813
34814 \begin_layout Standard
34815 \begin_inset Newpage newpage
34816 \end_inset
34817
34818
34819 \end_layout
34820
34821 \begin_layout Section
34822 Tipps
34823 \begin_inset Index idx
34824 status collapsed
34825
34826 \begin_layout Plain Layout
34827 Tipps
34828 \end_layout
34829
34830 \end_inset
34831
34832
34833 \end_layout
34834
34835 \begin_layout Subsection
34836 Negative Zahlen
34837 \begin_inset Index idx
34838 status collapsed
34839
34840 \begin_layout Plain Layout
34841 Zahlen ! negative
34842 \end_layout
34843
34844 \end_inset
34845
34846
34847 \end_layout
34848
34849 \begin_layout Standard
34850 Negative Zahlen sehen im Formelmodus oft schlecht aus, denn das Minuszeichen
34851  vor der Ziffer wird mit der gleichen Länge wie das Zeichen der Minus-Operation
34852  dargestellt.
34853  Schreibt man dagegen eine negative Zahl im normalen Text, erscheint das
34854  Minuszeichen korrekt.
34855 \end_layout
34856
34857 \begin_layout Standard
34858 Wandelt man also das Minuszeichen in mathematischen Text um, tritt das Problem
34859  nicht mehr auf.
34860 \end_layout
34861
34862 \begin_layout Standard
34863 Ein Beispiel zur Veranschaulichung der Problematik:
34864 \end_layout
34865
34866 \begin_layout Standard
34867 \align center
34868 \begin_inset Tabular
34869 <lyxtabular version="3" rows="3" columns="2">
34870 <features tabularvalignment="middle">
34871 <column alignment="right" valignment="top" width="0">
34872 <column alignment="left" valignment="top" width="0">
34873 <row>
34874 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
34875 \begin_inset Text
34876
34877 \begin_layout Plain Layout
34878 normaler Text:
34879 \end_layout
34880
34881 \end_inset
34882 </cell>
34883 <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
34884 \begin_inset Text
34885
34886 \begin_layout Plain Layout
34887 x = -2
34888 \end_layout
34889
34890 \end_inset
34891 </cell>
34892 </row>
34893 <row>
34894 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
34895 \begin_inset Text
34896
34897 \begin_layout Plain Layout
34898 Formelmodus:
34899 \end_layout
34900
34901 \end_inset
34902 </cell>
34903 <cell alignment="center" valignment="top" topline="true" bottomline="true" rightline="true" usebox="none">
34904 \begin_inset Text
34905
34906 \begin_layout Plain Layout
34907 \begin_inset Formula $x=-2$
34908 \end_inset
34909
34910
34911 \end_layout
34912
34913 \end_inset
34914 </cell>
34915 </row>
34916 <row>
34917 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
34918 \begin_inset Text
34919
34920 \begin_layout Plain Layout
34921 Lösung:
34922 \end_layout
34923
34924 \end_inset
34925 </cell>
34926 <cell alignment="center" valignment="top" topline="true" bottomline="true" rightline="true" usebox="none">
34927 \begin_inset Text
34928
34929 \begin_layout Plain Layout
34930 \begin_inset Formula $x=\textrm{-}2$
34931 \end_inset
34932
34933
34934 \end_layout
34935
34936 \end_inset
34937 </cell>
34938 </row>
34939 </lyxtabular>
34940
34941 \end_inset
34942
34943
34944 \end_layout
34945
34946 \begin_layout Subsection
34947 Komma als Dezimaltrennzeichen
34948 \begin_inset Index idx
34949 status collapsed
34950
34951 \begin_layout Plain Layout
34952 Komma
34953 \end_layout
34954
34955 \end_inset
34956
34957
34958 \end_layout
34959
34960 \begin_layout Standard
34961 In LaTeX fungiert das Komma in einer Formel, gemäß englischer Konvention,
34962  als Gruppentrennzeichen.
34963  Es wird demnach automatisch hinter allen Kommas in Formeln ein Leerraum
34964  eingefügt.
34965 \end_layout
34966
34967 \begin_layout Standard
34968 Um dies zu verhindern, markiert man das Komma und wandelt es in mathematischen
34969  Text um (Tastenkürzel 
34970 \family sans
34971 Alt+M
34972 \begin_inset space ~
34973 \end_inset
34974
34975 M
34976 \family default
34977 ).
34978 \end_layout
34979
34980 \begin_layout Standard
34981 Um hingegen alle Formelkommas des Dokuments als Dezimaltrennzeichen zu setzen,
34982  lädt man die Datei 
34983 \series bold
34984 icomma.sty
34985 \series default
34986
34987 \begin_inset Foot
34988 status collapsed
34989
34990 \begin_layout Plain Layout
34991
34992 \series bold
34993 icomma
34994 \series default
34995  ist Teil des LaTeX-Paketes 
34996 \series bold
34997 was
34998 \series default
34999
35000 \begin_inset Index idx
35001 status collapsed
35002
35003 \begin_layout Plain Layout
35004 Pakete ! was
35005 \begin_inset ERT
35006 status collapsed
35007
35008 \begin_layout Plain Layout
35009
35010
35011 \backslash
35012 vspace{4mm}
35013 \end_layout
35014
35015 \end_inset
35016
35017
35018 \end_layout
35019
35020 \end_inset
35021
35022 .
35023 \end_layout
35024
35025 \end_inset
35026
35027
35028 \begin_inset Index idx
35029 status collapsed
35030
35031 \begin_layout Plain Layout
35032 Pakete ! icomma
35033 \end_layout
35034
35035 \end_inset
35036
35037  mit der LaTeX-Vorspannzeile
35038 \end_layout
35039
35040 \begin_layout Standard
35041
35042 \series bold
35043
35044 \backslash
35045 usepackage{icomma}
35046 \end_layout
35047
35048 \begin_layout Subsection
35049 Physikalische Vektoren
35050 \begin_inset CommandInset label
35051 LatexCommand label
35052 name "sub:Physikalische-Vektoren"
35053
35054 \end_inset
35055
35056
35057 \begin_inset Index idx
35058 status collapsed
35059
35060 \begin_layout Plain Layout
35061 Vektoren ! physikalische
35062 \end_layout
35063
35064 \end_inset
35065
35066
35067 \end_layout
35068
35069 \begin_layout Standard
35070 Vordefinierte Vektoren bietet das LaTeX-Paket 
35071 \series bold
35072 braket
35073 \series default
35074
35075 \begin_inset Index idx
35076 status collapsed
35077
35078 \begin_layout Plain Layout
35079 Pakete ! braket
35080 \end_layout
35081
35082 \end_inset
35083
35084 , das mit der LaTeX-Vorspannzeile
35085 \end_layout
35086
35087 \begin_layout Standard
35088
35089 \series bold
35090
35091 \backslash
35092 usepackage{braket}
35093 \end_layout
35094
35095 \begin_layout Standard
35096 geladen wird.
35097 \begin_inset ERT
35098 status collapsed
35099
35100 \begin_layout Plain Layout
35101
35102
35103 \backslash
35104 ifbraket 
35105 \end_layout
35106
35107 \end_inset
35108
35109
35110 \begin_inset Note Note
35111 status open
35112
35113 \begin_layout Plain Layout
35114 Die folgende Tabelle erscheint nur im Ausdruck wenn das LaTeX-Paket 
35115 \series bold
35116 braket
35117 \series default
35118  installiert ist:
35119 \end_layout
35120
35121 \end_inset
35122
35123
35124 \end_layout
35125
35126 \begin_layout Standard
35127 \begin_inset Newpage newpage
35128 \end_inset
35129
35130
35131 \end_layout
35132
35133 \begin_layout Standard
35134 Folgende Befehle sind definiert:
35135 \end_layout
35136
35137 \begin_layout Standard
35138 \align center
35139 \begin_inset Tabular
35140 <lyxtabular version="3" rows="4" columns="2">
35141 <features tabularvalignment="middle">
35142 <column alignment="center" valignment="top" width="0">
35143 <column alignment="center" valignment="top" width="0">
35144 <row>
35145 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
35146 \begin_inset Text
35147
35148 \begin_layout Plain Layout
35149 Befehl
35150 \end_layout
35151
35152 \end_inset
35153 </cell>
35154 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
35155 \begin_inset Text
35156
35157 \begin_layout Plain Layout
35158 Ergebnis
35159 \end_layout
35160
35161 \end_inset
35162 </cell>
35163 </row>
35164 <row>
35165 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
35166 \begin_inset Text
35167
35168 \begin_layout Plain Layout
35169
35170 \backslash
35171 Bra{
35172 \backslash
35173 psi
35174 \end_layout
35175
35176 \end_inset
35177 </cell>
35178 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
35179 \begin_inset Text
35180
35181 \begin_layout Plain Layout
35182 \begin_inset Formula $\Bra{\psi}$
35183 \end_inset
35184
35185
35186 \end_layout
35187
35188 \end_inset
35189 </cell>
35190 </row>
35191 <row>
35192 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
35193 \begin_inset Text
35194
35195 \begin_layout Plain Layout
35196
35197 \backslash
35198 Ket{
35199 \backslash
35200 psi
35201 \end_layout
35202
35203 \end_inset
35204 </cell>
35205 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
35206 \begin_inset Text
35207
35208 \begin_layout Plain Layout
35209 \begin_inset Formula $\Ket{\psi}$
35210 \end_inset
35211
35212
35213 \end_layout
35214
35215 \end_inset
35216 </cell>
35217 </row>
35218 <row>
35219 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
35220 \begin_inset Text
35221
35222 \begin_layout Plain Layout
35223
35224 \backslash
35225 Braket{
35226 \backslash
35227 psi|
35228 \backslash
35229 phi
35230 \end_layout
35231
35232 \end_inset
35233 </cell>
35234 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
35235 \begin_inset Text
35236
35237 \begin_layout Plain Layout
35238 \begin_inset Formula $\Braket{\psi|\phi}$
35239 \end_inset
35240
35241
35242 \end_layout
35243
35244 \end_inset
35245 </cell>
35246 </row>
35247 </lyxtabular>
35248
35249 \end_inset
35250
35251
35252 \end_layout
35253
35254 \begin_layout Standard
35255 Der Befehl 
35256 \series bold
35257
35258 \backslash
35259 Braket
35260 \series default
35261  stellt sicher, dass alle senkrechten Striche in der Größe der umgebenden
35262  Klammern gesetzt werden:
35263 \begin_inset Formula 
35264 \[
35265 \Braket{\phi|J=\frac{3}{2}\,,\, M_{J}}
35266 \]
35267
35268 \end_inset
35269
35270
35271 \begin_inset ERT
35272 status collapsed
35273
35274 \begin_layout Plain Layout
35275
35276
35277 \backslash
35278 else 
35279 \end_layout
35280
35281 \end_inset
35282
35283
35284 \begin_inset Note Note
35285 status open
35286
35287 \begin_layout Plain Layout
35288 Folgendes erscheint im Ausdruck wenn das LaTeX-Paket 
35289 \series bold
35290 braket
35291 \series default
35292  nicht installiert ist:
35293 \end_layout
35294
35295 \end_inset
35296
35297
35298 \end_layout
35299
35300 \begin_layout Standard
35301 Das LaTeX-Paket 
35302 \series bold
35303 braket 
35304 \series default
35305 muss installiert sein, um den Rest dieses Abschnitts im Ausdruck zu sehen.
35306 \end_layout
35307
35308 \begin_layout Standard
35309 \begin_inset ERT
35310 status collapsed
35311
35312 \begin_layout Plain Layout
35313
35314
35315 \backslash
35316 fi 
35317 \end_layout
35318
35319 \end_inset
35320
35321
35322 \end_layout
35323
35324 \begin_layout Standard
35325 Der Effekt von 
35326 \series bold
35327
35328 \backslash
35329 Braket
35330 \series default
35331  kann auch mit dem Befehl 
35332 \series bold
35333
35334 \backslash
35335 middle
35336 \series default
35337  erzielt werden, der in 
35338 \begin_inset CommandInset ref
35339 LatexCommand ref
35340 reference "sub:Automatische-Klammergrößen"
35341
35342 \end_inset
35343
35344  beschrieben ist.
35345 \end_layout
35346
35347 \begin_layout Subsection
35348 Selbst definierte Brüche
35349 \begin_inset CommandInset label
35350 LatexCommand label
35351 name "sub:Selbstdefinierte-Brüche"
35352
35353 \end_inset
35354
35355
35356 \begin_inset Index idx
35357 status collapsed
35358
35359 \begin_layout Plain Layout
35360 Brüche ! selbstdefinierte
35361 \end_layout
35362
35363 \end_inset
35364
35365
35366 \end_layout
35367
35368 \begin_layout Standard
35369 Um eigene Befehle für Brüche zu definieren, verwendet man den Befehl 
35370 \series bold
35371
35372 \backslash
35373 genfrac
35374 \series default
35375
35376 \begin_inset Index idx
35377 status collapsed
35378
35379 \begin_layout Plain Layout
35380 Befehle ! G ! 
35381 \backslash
35382 genfrac
35383 \end_layout
35384
35385 \end_inset
35386
35387  in folgendem Schema:
35388 \end_layout
35389
35390 \begin_layout Standard
35391
35392 \series bold
35393
35394 \backslash
35395 genfrac{linke
35396 \series default
35397  
35398 \series bold
35399 Klammer}{rechte
35400 \series default
35401  
35402 \series bold
35403 Klammer}{Bruchstrichdicke}{Ansichtsstil}
35404 \begin_inset Newline newline
35405 \end_inset
35406
35407
35408 \begin_inset Phantom HPhantom
35409 status open
35410
35411 \begin_layout Plain Layout
35412
35413 \series bold
35414
35415 \backslash
35416 genfrac
35417 \end_layout
35418
35419 \end_inset
35420
35421 {Zähler}{Nenner}
35422 \end_layout
35423
35424 \begin_layout Standard
35425 Der Ansichtsstil wird mit einer ganzen Zahl im Bereich 0
35426 \begin_inset space \thinspace{}
35427 \end_inset
35428
35429 -
35430 \begin_inset space \thinspace{}
35431 \end_inset
35432
35433 3 angegeben.
35434 \end_layout
35435
35436 \begin_layout Standard
35437 \align center
35438 \begin_inset Tabular
35439 <lyxtabular version="3" rows="5" columns="2">
35440 <features tabularvalignment="middle">
35441 <column alignment="center" valignment="top" width="0">
35442 <column alignment="center" valignment="top" width="0">
35443 <row>
35444 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
35445 \begin_inset Text
35446
35447 \begin_layout Plain Layout
35448 Nummer
35449 \end_layout
35450
35451 \end_inset
35452 </cell>
35453 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
35454 \begin_inset Text
35455
35456 \begin_layout Plain Layout
35457 Ansichtsstil
35458 \end_layout
35459
35460 \end_inset
35461 </cell>
35462 </row>
35463 <row>
35464 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
35465 \begin_inset Text
35466
35467 \begin_layout Plain Layout
35468 0
35469 \end_layout
35470
35471 \end_inset
35472 </cell>
35473 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
35474 \begin_inset Text
35475
35476 \begin_layout Plain Layout
35477 abgesetzte Formel
35478 \end_layout
35479
35480 \end_inset
35481 </cell>
35482 </row>
35483 <row>
35484 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
35485 \begin_inset Text
35486
35487 \begin_layout Plain Layout
35488 1
35489 \end_layout
35490
35491 \end_inset
35492 </cell>
35493 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
35494 \begin_inset Text
35495
35496 \begin_layout Plain Layout
35497 eingebettete Formel
35498 \end_layout
35499
35500 \end_inset
35501 </cell>
35502 </row>
35503 <row>
35504 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
35505 \begin_inset Text
35506
35507 \begin_layout Plain Layout
35508 2
35509 \end_layout
35510
35511 \end_inset
35512 </cell>
35513 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
35514 \begin_inset Text
35515
35516 \begin_layout Plain Layout
35517 klein
35518 \end_layout
35519
35520 \end_inset
35521 </cell>
35522 </row>
35523 <row>
35524 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
35525 \begin_inset Text
35526
35527 \begin_layout Plain Layout
35528 3
35529 \end_layout
35530
35531 \end_inset
35532 </cell>
35533 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
35534 \begin_inset Text
35535
35536 \begin_layout Plain Layout
35537 winzig
35538 \end_layout
35539
35540 \end_inset
35541 </cell>
35542 </row>
35543 </lyxtabular>
35544
35545 \end_inset
35546
35547
35548 \end_layout
35549
35550 \begin_layout Standard
35551 Wird nichts für den Ansichtsstil angegeben, passt sich die Größe wie bei
35552  
35553 \series bold
35554
35555 \backslash
35556 frac
35557 \series default
35558  der Umgebung an.
35559 \end_layout
35560
35561 \begin_layout Standard
35562 Wird keine Bruchstrichdicke angegeben, wird der voreingestellte Wert von
35563  0.4
35564 \begin_inset space \thinspace{}
35565 \end_inset
35566
35567 pt verwendet.
35568 \end_layout
35569
35570 \begin_layout Standard
35571 \begin_inset VSpace medskip
35572 \end_inset
35573
35574 Zum Beispiel sind die Befehle 
35575 \series bold
35576
35577 \backslash
35578 dfrac
35579 \series default
35580  und 
35581 \series bold
35582
35583 \backslash
35584 tbinom
35585 \series default
35586  aus 
35587 \begin_inset CommandInset ref
35588 LatexCommand ref
35589 reference "sub:Brüche"
35590
35591 \end_inset
35592
35593  folgendermaßen definiert:
35594 \end_layout
35595
35596 \begin_layout Standard
35597
35598 \series bold
35599
35600 \backslash
35601 newcommand{
35602 \backslash
35603 dfrac}[2]{
35604 \backslash
35605 genfrac{}{}{}{0}{#1}{#2}}
35606 \end_layout
35607
35608 \begin_layout Standard
35609 und
35610 \end_layout
35611
35612 \begin_layout Standard
35613
35614 \series bold
35615
35616 \backslash
35617 newcommand{
35618 \backslash
35619 tbinom}[2]{
35620 \backslash
35621 genfrac{(}{)}{0pt}{1}{#1}{#2}}
35622 \end_layout
35623
35624 \begin_layout Standard
35625 \begin_inset VSpace medskip
35626 \end_inset
35627
35628 Um einen Bruch zu definieren, bei dem man die Bruchstrichdicke als optionales
35629  Argument angeben kann, gibt man im LaTeX-Vorspann folgenden Befehl ein:
35630 \end_layout
35631
35632 \begin_layout Standard
35633
35634 \series bold
35635
35636 \backslash
35637 newcommand{
35638 \backslash
35639 fracS}[3][]{
35640 \backslash
35641 genfrac{}{}{#1}{}{#2}{#3}}
35642 \end_layout
35643
35644 \begin_layout Standard
35645 Dazu ein Test:
35646 \begin_inset Formula 
35647 \begin{align*}
35648 \text{Befehl} &  & \mathrm{\backslash fracS[1mm]\backslash\{A\to\backslash\{B} &  & \mathrm{\backslash fracS[5mm]\backslash\{A\to\backslash\{B}\\
35649 \text{Ergebnis} &  & \fracS[1mm]{A}{B} &  & \fracS[5mm]{A}{B}
35650 \end{align*}
35651
35652 \end_inset
35653
35654 Wie man sieht, entspricht der Abstand des Zählers und Nenners vom Strich
35655  in etwa der dreifachen Strichdicke.
35656 \end_layout
35657
35658 \begin_layout Subsection
35659 Durchgestrichene Formeln
35660 \begin_inset Index idx
35661 status collapsed
35662
35663 \begin_layout Plain Layout
35664 Formel ! durchgestrichene
35665 \end_layout
35666
35667 \end_inset
35668
35669
35670 \end_layout
35671
35672 \begin_layout Standard
35673 Um Formeln oder Formelteile durchzustreichen, muss das LaTeX-Paket 
35674 \series bold
35675 cancel
35676 \series default
35677
35678 \begin_inset Index idx
35679 status collapsed
35680
35681 \begin_layout Plain Layout
35682 Pakete ! cancel
35683 \end_layout
35684
35685 \end_inset
35686
35687  mit der LaTeX-Vorspannzeile
35688 \end_layout
35689
35690 \begin_layout Standard
35691
35692 \series bold
35693
35694 \backslash
35695 usepackage{cancel}
35696 \end_layout
35697
35698 \begin_layout Standard
35699 geladen werden.
35700 \end_layout
35701
35702 \begin_layout Standard
35703 \begin_inset ERT
35704 status collapsed
35705
35706 \begin_layout Plain Layout
35707
35708
35709 \backslash
35710 ifcancel 
35711 \end_layout
35712
35713 \end_inset
35714
35715
35716 \begin_inset Note Note
35717 status open
35718
35719 \begin_layout Plain Layout
35720 Die folgende Tabelle erscheint nur im Ausdruck wenn das LaTeX-Paket 
35721 \series bold
35722 cancel
35723 \series default
35724  installiert ist:
35725 \end_layout
35726
35727 \end_inset
35728
35729
35730 \end_layout
35731
35732 \begin_layout Standard
35733 Es gibt vier verschiedene Arten durchzustreichen:
35734 \end_layout
35735
35736 \begin_layout Standard
35737 \align center
35738 \begin_inset Tabular
35739 <lyxtabular version="3" rows="5" columns="2">
35740 <features tabularvalignment="middle">
35741 <column alignment="center" valignment="top" width="0">
35742 <column alignment="center" valignment="top" width="0">
35743 <row>
35744 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
35745 \begin_inset Text
35746
35747 \begin_layout Plain Layout
35748 Befehl
35749 \end_layout
35750
35751 \end_inset
35752 </cell>
35753 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
35754 \begin_inset Text
35755
35756 \begin_layout Plain Layout
35757 Ergebnis
35758 \begin_inset Note Note
35759 status collapsed
35760
35761 \begin_layout Plain Layout
35762 Der Leerraum und 
35763 \series bold
35764
35765 \backslash
35766 raisebox
35767 \series default
35768  dienen nur als Abstandhalter.
35769 \end_layout
35770
35771 \end_inset
35772
35773
35774 \end_layout
35775
35776 \end_inset
35777 </cell>
35778 </row>
35779 <row>
35780 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
35781 \begin_inset Text
35782
35783 \begin_layout Plain Layout
35784
35785 \backslash
35786 cancel{
35787 \backslash
35788 int
35789 \begin_inset ERT
35790 status collapsed
35791
35792 \begin_layout Plain Layout
35793
35794
35795 \backslash
35796 leer 
35797 \end_layout
35798
35799 \end_inset
35800
35801 A=B
35802 \end_layout
35803
35804 \end_inset
35805 </cell>
35806 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
35807 \begin_inset Text
35808
35809 \begin_layout Plain Layout
35810 \begin_inset Formula $\raisebox{4.5mm}{}\cancel{\int A=B}\raisebox{-2.5mm}{}$
35811 \end_inset
35812
35813
35814 \end_layout
35815
35816 \end_inset
35817 </cell>
35818 </row>
35819 <row>
35820 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
35821 \begin_inset Text
35822
35823 \begin_layout Plain Layout
35824
35825 \backslash
35826 bcancel{
35827 \backslash
35828 int
35829 \begin_inset ERT
35830 status collapsed
35831
35832 \begin_layout Plain Layout
35833
35834
35835 \backslash
35836 leer 
35837 \end_layout
35838
35839 \end_inset
35840
35841 A=B
35842 \end_layout
35843
35844 \end_inset
35845 </cell>
35846 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
35847 \begin_inset Text
35848
35849 \begin_layout Plain Layout
35850 \begin_inset Formula $\raisebox{4.5mm}{}\bcancel{\int A=B}\raisebox{-2.5mm}{}$
35851 \end_inset
35852
35853
35854 \end_layout
35855
35856 \end_inset
35857 </cell>
35858 </row>
35859 <row>
35860 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
35861 \begin_inset Text
35862
35863 \begin_layout Plain Layout
35864
35865 \backslash
35866 xcancel{
35867 \backslash
35868 int
35869 \begin_inset ERT
35870 status collapsed
35871
35872 \begin_layout Plain Layout
35873
35874
35875 \backslash
35876 leer 
35877 \end_layout
35878
35879 \end_inset
35880
35881 A=B
35882 \end_layout
35883
35884 \end_inset
35885 </cell>
35886 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
35887 \begin_inset Text
35888
35889 \begin_layout Plain Layout
35890 \begin_inset Formula $\raisebox{4.5mm}{}\xcancel{\int A=B}\raisebox{-2.5mm}{}$
35891 \end_inset
35892
35893
35894 \end_layout
35895
35896 \end_inset
35897 </cell>
35898 </row>
35899 <row>
35900 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
35901 \begin_inset Text
35902
35903 \begin_layout Plain Layout
35904
35905 \backslash
35906 cancelto{1
35907 \begin_inset Formula $\to$
35908 \end_inset
35909
35910
35911 \backslash
35912 {
35913 \backslash
35914 int
35915 \begin_inset ERT
35916 status collapsed
35917
35918 \begin_layout Plain Layout
35919
35920
35921 \backslash
35922 leer 
35923 \end_layout
35924
35925 \end_inset
35926
35927 A=B
35928 \end_layout
35929
35930 \end_inset
35931 </cell>
35932 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
35933 \begin_inset Text
35934
35935 \begin_layout Plain Layout
35936 \begin_inset Formula $\raisebox{7mm}{}\cancelto{1}{\int A=B}\raisebox{-2.5mm}{}\hspace{3mm}$
35937 \end_inset
35938
35939
35940 \end_layout
35941
35942 \end_inset
35943 </cell>
35944 </row>
35945 </lyxtabular>
35946
35947 \end_inset
35948
35949
35950 \end_layout
35951
35952 \begin_layout Standard
35953
35954 \series bold
35955
35956 \backslash
35957 cancelto
35958 \series default
35959  eignet sich besonders, wenn man das Kürzen innerhalb einer Formel darstellen
35960  will:
35961 \begin_inset Formula 
35962 \[
35963 \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}}}
35964 \]
35965
35966 \end_inset
35967
35968
35969 \end_layout
35970
35971 \begin_layout Standard
35972 Um die Größe des 
35973 \begin_inset Quotes gld
35974 \end_inset
35975
35976 hochgestellten
35977 \begin_inset Quotes grd
35978 \end_inset
35979
35980  Werts von 
35981 \series bold
35982
35983 \backslash
35984 cancelto
35985 \series default
35986  zu ändern, kann man das Paket 
35987 \series bold
35988 cancel
35989 \series default
35990  entweder mit der Option 
35991 \series bold
35992 samesize
35993 \series default
35994 , die zur selben Größe wie die der durchgestrichenen Zeichen führt, oder
35995  mit der Option 
35996 \series bold
35997 Smaller
35998 \series default
35999 , die zu einer etwas kleineren Größe führt als es ohne Option der Fall ist.
36000  In diesem Dokument wurde 
36001 \series bold
36002 cancel
36003 \series default
36004  mit der Zeile
36005 \end_layout
36006
36007 \begin_layout Standard
36008
36009 \series bold
36010
36011 \backslash
36012 usepackage[samesize]{cancel}
36013 \end_layout
36014
36015 \begin_layout Standard
36016 geladen.
36017  Um den Durchstrich zu färben, verwendet man den Befehl
36018 \end_layout
36019
36020 \begin_layout Standard
36021
36022 \series bold
36023
36024 \backslash
36025 renewcommand{
36026 \backslash
36027 CancelColor}{
36028 \backslash
36029 color{red}}
36030 \end_layout
36031
36032 \begin_layout Standard
36033 als TeX-Code.
36034  
36035 \series bold
36036 red
36037 \series default
36038  kann durch eine Farbe der Wahl ersetzt werden.
36039 \end_layout
36040
36041 \begin_layout Standard
36042 \begin_inset ERT
36043 status collapsed
36044
36045 \begin_layout Plain Layout
36046
36047
36048 \backslash
36049 renewcommand{
36050 \backslash
36051 CancelColor}{
36052 \backslash
36053 color{red}}
36054 \end_layout
36055
36056 \end_inset
36057
36058
36059 \end_layout
36060
36061 \begin_layout Standard
36062 \begin_inset Formula 
36063 \[
36064 \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}}}
36065 \]
36066
36067 \end_inset
36068
36069
36070 \end_layout
36071
36072 \begin_layout Standard
36073 \begin_inset ERT
36074 status collapsed
36075
36076 \begin_layout Plain Layout
36077
36078
36079 \backslash
36080 renewcommand{
36081 \backslash
36082 CancelColor}{
36083 \backslash
36084 color{black}}
36085 \end_layout
36086
36087 \end_inset
36088
36089
36090 \begin_inset Note Note
36091 status open
36092
36093 \begin_layout Plain Layout
36094 Farbe zurücksetzen
36095 \end_layout
36096
36097 \end_inset
36098
36099
36100 \end_layout
36101
36102 \begin_layout Standard
36103 Für weitere Anpassungen siehe die Dokumentation des Pakets 
36104 \series bold
36105 cancel
36106 \series default
36107
36108 \begin_inset CommandInset citation
36109 LatexCommand cite
36110 key "cancel"
36111
36112 \end_inset
36113
36114 .
36115 \end_layout
36116
36117 \begin_layout Standard
36118 \begin_inset ERT
36119 status collapsed
36120
36121 \begin_layout Plain Layout
36122
36123
36124 \backslash
36125 else 
36126 \end_layout
36127
36128 \end_inset
36129
36130
36131 \begin_inset Note Note
36132 status open
36133
36134 \begin_layout Plain Layout
36135 Folgendes erscheint im Ausdruck wenn das LaTeX-Paket 
36136 \series bold
36137 cancel
36138 \series default
36139  nicht installiert ist:
36140 \end_layout
36141
36142 \end_inset
36143
36144
36145 \end_layout
36146
36147 \begin_layout Standard
36148 Das LaTeX-Paket 
36149 \series bold
36150 cancel 
36151 \series default
36152 muss installiert sein, um den Rest dieses Abschnitts im Ausdruck zu sehen.
36153 \end_layout
36154
36155 \begin_layout Standard
36156 \begin_inset ERT
36157 status collapsed
36158
36159 \begin_layout Plain Layout
36160
36161
36162 \backslash
36163 fi 
36164 \end_layout
36165
36166 \end_inset
36167
36168
36169 \end_layout
36170
36171 \begin_layout Subsection
36172 Formeln in Überschriften
36173 \begin_inset CommandInset label
36174 LatexCommand label
36175 name "sub:Formeln-in-Überschriften"
36176
36177 \end_inset
36178
36179
36180 \begin_inset Index idx
36181 status collapsed
36182
36183 \begin_layout Plain Layout
36184 Formel ! in Überschriften
36185 \end_layout
36186
36187 \end_inset
36188
36189
36190 \end_layout
36191
36192 \begin_layout Standard
36193 Benutzt man Formeln in Überschriften, ist auf Folgendes zu achten:
36194 \end_layout
36195
36196 \begin_layout Standard
36197 \begin_inset Note Greyedout
36198 status open
36199
36200 \begin_layout Plain Layout
36201 Verwendet man 
36202 \series bold
36203 hyperref
36204 \series default
36205
36206 \begin_inset Index idx
36207 status collapsed
36208
36209 \begin_layout Plain Layout
36210 Pakete ! hyperref
36211 \end_layout
36212
36213 \end_inset
36214
36215  Unterstützung im den Dokumenteinstellungen unter 
36216 \family sans
36217 PDF-Eigenschaften
36218 \family default
36219 , werden PDF-Lesezeichen für jede Überschrift aus dem Inhaltsverzeichnis
36220  erzeugt.
36221  Enthält eine Überschrift Formeln, werden diese im Lesezeichentext falsch
36222  dargestellt.
36223  Denn Formeln in Lesezeichen verstoßen gegen die PDF-Konventionen.
36224 \end_layout
36225
36226 \end_inset
36227
36228
36229 \end_layout
36230
36231 \begin_layout Standard
36232 Beide Probleme lassen sich lösen, indem man am Ende der Überschrift einen
36233  Kurztitel über das Menü 
36234 \family sans
36235 Einfügen\SpecialChar \menuseparator
36236 Kurztitel
36237 \family default
36238  einfügt.
36239  Kurztitel werden als Alternative für mehrzeilige Überschriften verwendet,
36240  um das Inhaltsverzeichnis übersichtlich zu halten.
36241  Nur der Kurztitel erscheint im Inhaltsverzeichnis und damit auch im PDF-Lesezei
36242 chen.
36243 \end_layout
36244
36245 \begin_layout Standard
36246 Möchte man im Inhaltsverzeichnis eine Formel verwenden, benutzt aber 
36247 \series bold
36248 hyperref
36249 \series default
36250 , verwendet man im TeX-Modus den Befehl
36251 \end_layout
36252
36253 \begin_layout Standard
36254
36255 \series bold
36256
36257 \backslash
36258 texorpdfstring{Teil}{Alternative}
36259 \begin_inset Index idx
36260 status collapsed
36261
36262 \begin_layout Plain Layout
36263 Befehle ! T ! 
36264 \backslash
36265 texorpdfstring
36266 \end_layout
36267
36268 \end_inset
36269
36270
36271 \end_layout
36272
36273 \begin_layout Standard
36274 Teil ist der Überschriftsteil, der nicht im PDF-Lesezeichen erscheinen solle.
36275  Das können Zeichen, Formeln, Fußnoten aber auch Querverweise sein.
36276  Als Alternative kann man angeben, was stattdessen im Lesezeichen erscheinen
36277  soll.
36278 \end_layout
36279
36280 \begin_layout Standard
36281 Es folgen zwei Beispielüberschriften:
36282 \begin_inset VSpace -3mm
36283 \end_inset
36284
36285
36286 \begin_inset ERT
36287 status collapsed
36288
36289 \begin_layout Plain Layout
36290
36291
36292 \backslash
36293 boldmath 
36294 \end_layout
36295
36296 \end_inset
36297
36298
36299 \end_layout
36300
36301 \begin_layout Subsubsection
36302 Überschrift ohne Formel im Inhaltsverzeichnis 
36303 \begin_inset Formula $\sqrt{-1}=\mathrm{i}$
36304 \end_inset
36305
36306
36307 \begin_inset Argument
36308 status collapsed
36309
36310 \begin_layout Plain Layout
36311 Überschrift ohne Formel im Inhaltsverzeichnis
36312 \end_layout
36313
36314 \end_inset
36315
36316
36317 \end_layout
36318
36319 \begin_layout Subsubsection
36320 Überschrift mit Formel im Inhaltsverzeichnis
36321 \begin_inset ERT
36322 status collapsed
36323
36324 \begin_layout Plain Layout
36325
36326
36327 \backslash
36328 texorpdfstring{
36329 \end_layout
36330
36331 \end_inset
36332
36333  
36334 \begin_inset Formula $\sqrt{-1}=\mathrm{i}$
36335 \end_inset
36336
36337
36338 \begin_inset ERT
36339 status collapsed
36340
36341 \begin_layout Plain Layout
36342
36343 }{}
36344 \end_layout
36345
36346 \end_inset
36347
36348
36349 \end_layout
36350
36351 \begin_layout Standard
36352 \begin_inset ERT
36353 status collapsed
36354
36355 \begin_layout Plain Layout
36356
36357
36358 \backslash
36359 unboldmath 
36360 \end_layout
36361
36362 \end_inset
36363
36364 In der ersten Überschrift wurde ein Kurztitel verwendet.
36365  In der zweiten 
36366 \series bold
36367
36368 \backslash
36369 texorpdfstring
36370 \series default
36371 .
36372 \end_layout
36373
36374 \begin_layout Standard
36375 Damit die Formeln so wie der Rest der Überschrift formatiert werden, wurde
36376  die komplette Überschrift in eine 
36377 \series bold
36378 boldmath
36379 \series default
36380 -Umgebung
36381 \begin_inset Foot
36382 status collapsed
36383
36384 \begin_layout Plain Layout
36385 siehe 
36386 \begin_inset CommandInset ref
36387 LatexCommand ref
36388 reference "sub:Fett-gedruckte-Formeln"
36389
36390 \end_inset
36391
36392
36393 \end_layout
36394
36395 \end_inset
36396
36397  gesetzt.
36398 \end_layout
36399
36400 \begin_layout Subsection
36401 Formeln im mehrspaltigen Text
36402 \begin_inset Index idx
36403 status collapsed
36404
36405 \begin_layout Plain Layout
36406 Formel ! im mehrspaltigen Text
36407 \end_layout
36408
36409 \end_inset
36410
36411
36412 \end_layout
36413
36414 \begin_layout Standard
36415 Formeln im mehrspaltigen Text sind oftmals zu breit für eine Spalte und
36416  müssen daher über die gesamte Seitenbreite gesetzt werden.
36417  Dazu verwendet man das LaTeX-Paket 
36418 \series bold
36419 multicol
36420 \series default
36421
36422 \begin_inset Foot
36423 status collapsed
36424
36425 \begin_layout Plain Layout
36426
36427 \series bold
36428 multicol
36429 \series default
36430  ist Teil jeder LaTeX-Standardinstallation.
36431 \end_layout
36432
36433 \end_inset
36434
36435
36436 \begin_inset Index idx
36437 status collapsed
36438
36439 \begin_layout Plain Layout
36440 Pakete ! multicol
36441 \end_layout
36442
36443 \end_inset
36444
36445 , das mit der LaTeX-Vorspannzeile
36446 \end_layout
36447
36448 \begin_layout Standard
36449
36450 \series bold
36451
36452 \backslash
36453 usepackage{multicol}
36454 \end_layout
36455
36456 \begin_layout Standard
36457 geladen wird.
36458 \end_layout
36459
36460 \begin_layout Standard
36461 \begin_inset Note Greyedout
36462 status open
36463
36464 \begin_layout Plain Layout
36465 Dabei ist zu beachten, dass im Menü 
36466 \family sans
36467 Dokument\SpecialChar \menuseparator
36468 Einstellungen
36469 \family default
36470  unter 
36471 \family sans
36472 Textformat
36473 \family default
36474  
36475 \emph on
36476 nicht
36477 \emph default
36478  
36479 \family sans
36480 Zweispaltiges
36481 \begin_inset space ~
36482 \end_inset
36483
36484 Dokument
36485 \family default
36486  ausgewählt sein darf.
36487 \end_layout
36488
36489 \end_inset
36490
36491
36492 \end_layout
36493
36494 \begin_layout Standard
36495 Vor den mehrspaltigen Text schreibt man im TeX-Modus den Befehl
36496 \end_layout
36497
36498 \begin_layout Standard
36499
36500 \series bold
36501
36502 \backslash
36503 begin{multicols}{Spaltenanzahl}
36504 \end_layout
36505
36506 \begin_layout Standard
36507 wobei die Spaltenanzahl eine Zahl im Bereich 2
36508 \begin_inset space \thinspace{}
36509 \end_inset
36510
36511 -
36512 \begin_inset space \thinspace{}
36513 \end_inset
36514
36515 10 ist.
36516  Vor der Formel beendet man den mehrspaltigen Text mit dem Befehl
36517 \end_layout
36518
36519 \begin_layout Standard
36520
36521 \series bold
36522
36523 \backslash
36524 end{multicols}
36525 \end_layout
36526
36527 \begin_layout Standard
36528 der im TeX-Modus eingegeben wird.
36529 \end_layout
36530
36531 \begin_layout Standard
36532 Durch den Befehl wird vor der Formel automatisch etwas Leerraum erstellt.
36533  Um dies rückgängig zu machen, fügt man vor der Formel -6
36534 \begin_inset space \thinspace{}
36535 \end_inset
36536
36537 mm vertikalen Leerraum ein.
36538  Ist der Formelstil 
36539 \series bold
36540 Eingerückt
36541 \begin_inset Foot
36542 status collapsed
36543
36544 \begin_layout Plain Layout
36545 Formelstile siehe 
36546 \begin_inset CommandInset ref
36547 LatexCommand ref
36548 reference "sec:Formelstile"
36549
36550 \end_inset
36551
36552
36553 \end_layout
36554
36555 \end_inset
36556
36557
36558 \series default
36559  gewählt, fügt man stattdessen -9
36560 \begin_inset space \thinspace{}
36561 \end_inset
36562
36563 mm Leerraum ein.
36564 \end_layout
36565
36566 \begin_layout Standard
36567 Als Beispiel ein mehrspaltiger Text mit einer abgesetzten Formel:
36568 \end_layout
36569
36570 \begin_layout Standard
36571 \begin_inset ERT
36572 status collapsed
36573
36574 \begin_layout Plain Layout
36575
36576
36577 \backslash
36578 begin{multicols}{2}
36579 \end_layout
36580
36581 \end_inset
36582
36583 Das Spektrum wird fouriertransformiert.
36584  Die Fouriertransformation wird verwendet, um die überlagerten Signale (Netzwerk
36585 , Lösungsmittel) zu trennen.
36586  Nachdem wir die Phasenverschiebung bestimmen konnten, interessiert uns
36587  nun das Aussehen des Ausgangssignals.
36588  Im Experiment haben wir es mit sehr vielen Teilchen zu tun, so dass man
36589  über alle Phasen integrieren muss.
36590  Sei nun 
36591 \begin_inset Formula $S$
36592 \end_inset
36593
36594  unser normiertes Ausgangssignal und 
36595 \begin_inset Formula $P$
36596 \end_inset
36597
36598  die Phasenverteilungsfunktion, so ergibt sich die Beziehung
36599 \begin_inset ERT
36600 status collapsed
36601
36602 \begin_layout Plain Layout
36603
36604
36605 \backslash
36606 end{multicols}
36607 \end_layout
36608
36609 \end_inset
36610
36611
36612 \begin_inset VSpace -6mm
36613 \end_inset
36614
36615
36616 \begin_inset Formula 
36617 \begin{equation}
36618 S(t)=S_{0}(t)\int_{-\infty}^{\infty}P(\phi,t)\mathrm{e}^{\mathrm{i}\phi}\,\mathrm{d}\phi
36619 \end{equation}
36620
36621 \end_inset
36622
36623
36624 \begin_inset ERT
36625 status collapsed
36626
36627 \begin_layout Plain Layout
36628
36629
36630 \backslash
36631 begin{multicols}{2}
36632 \end_layout
36633
36634 \end_inset
36635
36636 wobei 
36637 \begin_inset Formula $S_{0}$
36638 \end_inset
36639
36640  das Signal ohne Gradient ist und die Normierungsbedingung 
36641 \begin_inset Formula $\int_{-\infty}^{\infty}P(\phi,t)\,\mathrm{d}\phi=1$
36642 \end_inset
36643
36644  gilt.
36645  Nun dürfen wir aber nicht den Relaxationsprozess außer Acht lassen.
36646  Direkt nach dem 
36647 \begin_inset Formula $\nicefrac{\pi}{2}$
36648 \end_inset
36649
36650
36651 \begin_inset space \thinspace{}
36652 \end_inset
36653
36654 -rf-Puls beginnt sich die Magnetisierung zu entfokussieren, wodurch sich
36655  das Signal zusätzlich abschwächt.
36656  Diese Abschwächung verläuft exponentiell in Abhängigkeit der so genannten
36657  
36658 \begin_inset Formula $T_{2}$
36659 \end_inset
36660
36661 -Zeit.
36662 \end_layout
36663
36664 \begin_layout Standard
36665 \begin_inset ERT
36666 status collapsed
36667
36668 \begin_layout Plain Layout
36669
36670
36671 \backslash
36672 end{multicols}
36673 \end_layout
36674
36675 \end_inset
36676
36677  
36678 \end_layout
36679
36680 \begin_layout Subsection
36681 Formeln mit Beschreibung der Variablen
36682 \begin_inset Index idx
36683 status collapsed
36684
36685 \begin_layout Plain Layout
36686 Formel ! mit Variablenbeschreibung
36687 \end_layout
36688
36689 \end_inset
36690
36691
36692 \end_layout
36693
36694 \begin_layout Standard
36695 Möchte man wie in Formel 
36696 \begin_inset CommandInset ref
36697 LatexCommand eqref
36698 reference "eq:innerhalb"
36699
36700 \end_inset
36701
36702 , Variablen innerhalb einer Formel beschreiben, verwendet man eine 2
36703 \series bold
36704 ×
36705 \series default
36706
36707 \begin_inset Formula $n$
36708 \end_inset
36709
36710
36711 \begin_inset space ~
36712 \end_inset
36713
36714 Matrix mit links ausgerichteten Spalten für die verwendeten 
36715 \begin_inset Formula $n$
36716 \end_inset
36717
36718  Variablen.
36719 \begin_inset Foot
36720 status collapsed
36721
36722 \begin_layout Plain Layout
36723 Matrizen siehe 
36724 \begin_inset CommandInset ref
36725 LatexCommand ref
36726 reference "sec:Matrizen"
36727
36728 \end_inset
36729
36730
36731 \end_layout
36732
36733 \end_inset
36734
36735  Um die Beschreibung kleiner zu setzen, gibt man vor der Matrix z.
36736 \begin_inset space \thinspace{}
36737 \end_inset
36738
36739 B.
36740  den Befehl 
36741 \series bold
36742
36743 \backslash
36744 footnotesize
36745 \series default
36746  ein.
36747 \begin_inset Foot
36748 status collapsed
36749
36750 \begin_layout Plain Layout
36751 Schriftgrößen siehe 
36752 \begin_inset CommandInset ref
36753 LatexCommand ref
36754 reference "sub:Schriftgrößen"
36755
36756 \end_inset
36757
36758
36759 \end_layout
36760
36761 \end_inset
36762
36763
36764 \end_layout
36765
36766 \begin_layout Standard
36767 Wird der Formelstil 
36768 \series bold
36769 Eingerückt
36770 \begin_inset Foot
36771 status collapsed
36772
36773 \begin_layout Plain Layout
36774 Formelstile siehe 
36775 \begin_inset CommandInset ref
36776 LatexCommand ref
36777 reference "sec:Formelstile"
36778
36779 \end_inset
36780
36781
36782 \end_layout
36783
36784 \end_inset
36785
36786
36787 \series default
36788  verwendet, fügt man vor und nach der Matrix ein 
36789 \series bold
36790
36791 \backslash
36792 hfill
36793 \series default
36794
36795 \begin_inset Foot
36796 status collapsed
36797
36798 \begin_layout Plain Layout
36799
36800 \series bold
36801
36802 \backslash
36803 hfill
36804 \series default
36805  wirkt nur in Formeln mit dem Stil 
36806 \series bold
36807 Eingerückt
36808 \series default
36809 , siehe 
36810 \begin_inset CommandInset ref
36811 LatexCommand ref
36812 reference "sub:Variabler-Leerraum"
36813
36814 \end_inset
36815
36816 .
36817 \end_layout
36818
36819 \end_inset
36820
36821  ein, damit der Abstand der Matrix von der Gleichung und vom Seitenrand
36822  gleich ist.
36823 \end_layout
36824
36825 \begin_layout Standard
36826 Ist der Formelstil 
36827 \series bold
36828 Zentriert
36829 \series default
36830  gewählt, nutzt man die in 
36831 \begin_inset CommandInset ref
36832 LatexCommand ref
36833 reference "sub:Flalign-Umgebung"
36834
36835 \end_inset
36836
36837  beschriebene Möglichkeit, Formeln einzurücken.
36838  Formel 
36839 \begin_inset CommandInset ref
36840 LatexCommand eqref
36841 reference "eq:innerhalb"
36842
36843 \end_inset
36844
36845  besteht aus fünf Spalten, wobei in den ersten beiden die Gleichung, in
36846  der dritten die Matrix und in der letzten die leere TeX-Klammer steht.
36847 \begin_inset Formula 
36848 \begin{flalign}
36849 \hspace{30pt}F_{A} & =\rho·V·g & \footnotesize\begin{array}{ll}
36850 \rho & \textrm{Dichte}\\
36851 V & \textrm{Volumen}\\
36852 g & \textrm{Fallbeschleunigung}
36853 \end{array} &  & {}\label{eq:innerhalb}
36854 \end{flalign}
36855
36856 \end_inset
36857
36858
36859 \end_layout
36860
36861 \begin_layout Subsection
36862 Aufrechte kleine griechische Buchstaben
36863 \begin_inset CommandInset label
36864 LatexCommand label
36865 name "sub:Aufrechte-kleine-griechische"
36866
36867 \end_inset
36868
36869
36870 \begin_inset Index idx
36871 status collapsed
36872
36873 \begin_layout Plain Layout
36874 griechische Buchstaben ! aufrechte
36875 \end_layout
36876
36877 \end_inset
36878
36879
36880 \end_layout
36881
36882 \begin_layout Standard
36883 Die meisten Mathe-Schriften stellen nur kursive kleine griechische Buchstaben
36884  zur Verfügung.
36885  Für Symbole der Elementarteilchen, wie Pionen und Neutrinos werden jedoch
36886  aufrechte griechische Buchstaben benötigt.
36887  Die Datei 
36888 \series bold
36889 upgreek.sty
36890 \series default
36891
36892 \begin_inset Foot
36893 status collapsed
36894
36895 \begin_layout Plain Layout
36896
36897 \series bold
36898 upgreek
36899 \series default
36900  ist Teil des LaTeX-Paketes 
36901 \series bold
36902 was
36903 \series default
36904
36905 \begin_inset Index idx
36906 status collapsed
36907
36908 \begin_layout Plain Layout
36909 Pakete ! was
36910 \begin_inset ERT
36911 status collapsed
36912
36913 \begin_layout Plain Layout
36914
36915
36916 \backslash
36917 vspace{4mm}
36918 \end_layout
36919
36920 \end_inset
36921
36922
36923 \end_layout
36924
36925 \end_inset
36926
36927 .
36928 \end_layout
36929
36930 \end_inset
36931
36932
36933 \begin_inset Index idx
36934 status collapsed
36935
36936 \begin_layout Plain Layout
36937 Pakete ! upgreek
36938 \end_layout
36939
36940 \end_inset
36941
36942 , die mit der LaTeX-Vorspannzeile
36943 \end_layout
36944
36945 \begin_layout Standard
36946
36947 \series bold
36948
36949 \backslash
36950 usepackage{upgreek}
36951 \end_layout
36952
36953 \begin_layout Standard
36954 geladen wird, stellt diese Buchstaben zur Verfügung.
36955  
36956 \begin_inset ERT
36957 status collapsed
36958
36959 \begin_layout Plain Layout
36960
36961
36962 \backslash
36963 ifupgreek 
36964 \end_layout
36965
36966 \end_inset
36967
36968
36969 \begin_inset Note Note
36970 status open
36971
36972 \begin_layout Plain Layout
36973 Das Folgende erscheint nur im Ausdruck wenn das LaTeX-Paket 
36974 \series bold
36975 upgreek
36976 \series default
36977  installiert ist:
36978 \end_layout
36979
36980 \end_inset
36981
36982  Sie werden erzeugt, wenn der Befehl für einen griechischen Buchstaben mit
36983  
36984 \series bold
36985 up
36986 \series default
36987  begonnen wird.
36988  So erzeugt z.
36989 \begin_inset space \thinspace{}
36990 \end_inset
36991
36992 B.
36993  der Befehl 
36994 \series bold
36995
36996 \backslash
36997 uptau
36998 \series default
36999  dies: 
37000 \begin_inset Formula $\uptau$
37001 \end_inset
37002
37003
37004 \end_layout
37005
37006 \begin_layout Standard
37007 Damit kann man Elementarteilchenreaktionen erstellen:
37008 \begin_inset Formula 
37009 \[
37010 \uppi^{+}\to\upmu^{+}+\upnu_{\upmu}
37011 \]
37012
37013 \end_inset
37014
37015
37016 \end_layout
37017
37018 \begin_layout Standard
37019 Die aufrechten Buchstaben sind fetter und breiter als die kursiven.
37020  Sie sollten daher nicht für Einheiten wie 
37021 \begin_inset Quotes gld
37022 \end_inset
37023
37024 µm
37025 \begin_inset Quotes grd
37026 \end_inset
37027
37028  verwendet werden.
37029 \end_layout
37030
37031 \begin_layout Standard
37032 \begin_inset ERT
37033 status collapsed
37034
37035 \begin_layout Plain Layout
37036
37037
37038 \backslash
37039 else 
37040 \end_layout
37041
37042 \end_inset
37043
37044
37045 \begin_inset Note Note
37046 status open
37047
37048 \begin_layout Plain Layout
37049 Folgendes erscheint im Ausdruck wenn das LaTeX-Paket 
37050 \series bold
37051 upgreek
37052 \series default
37053  nicht installiert ist:
37054 \end_layout
37055
37056 \end_inset
37057
37058
37059 \end_layout
37060
37061 \begin_layout Standard
37062 Das LaTeX-Paket 
37063 \series bold
37064 upgreek 
37065 \series default
37066 muss installiert sein, um den Rest dieses Abschnitts im Ausdruck zu sehen.
37067 \end_layout
37068
37069 \begin_layout Standard
37070 \begin_inset ERT
37071 status collapsed
37072
37073 \begin_layout Plain Layout
37074
37075
37076 \backslash
37077 fi 
37078 \end_layout
37079
37080 \end_inset
37081
37082
37083 \end_layout
37084
37085 \begin_layout Subsection
37086 Textzeichen in Formeln
37087 \begin_inset CommandInset label
37088 LatexCommand label
37089 name "sub:Textzeichen-in-Formeln"
37090
37091 \end_inset
37092
37093
37094 \begin_inset Index idx
37095 status collapsed
37096
37097 \begin_layout Plain Layout
37098 Text ! in Formeln
37099 \end_layout
37100
37101 \end_inset
37102
37103
37104 \end_layout
37105
37106 \begin_layout Standard
37107 In einigen Fällen möchte man Textzeichen direkt in Formeln eingeben.
37108  Benötigt man z.
37109 \begin_inset space \thinspace{}
37110 \end_inset
37111
37112 B.
37113  den mittigen Punkt · in Formeln wie 
37114 \begin_inset Formula $\nu=5·10^{5}\,\mathrm{Hz}$
37115 \end_inset
37116
37117 , müsste man dafür jedes Mal den Befehl 
37118 \series bold
37119
37120 \backslash
37121 cdot
37122 \series default
37123  eingeben
37124 \begin_inset Foot
37125 status collapsed
37126
37127 \begin_layout Plain Layout
37128 siehe 
37129 \begin_inset CommandInset ref
37130 LatexCommand ref
37131 reference "sub:Binäre-Operatoren"
37132
37133 \end_inset
37134
37135
37136 \end_layout
37137
37138 \end_inset
37139
37140 , da dieses Zeichen in allen Kodierungen als Textzeichen definiert ist.
37141  Man kann jedoch die Kodierung mit folgender LaTeX-Vorspannzeile ändern:
37142 \end_layout
37143
37144 \begin_layout Standard
37145
37146 \series bold
37147
37148 \backslash
37149 DeclareInputText{183}{
37150 \backslash
37151 ifmmode
37152 \backslash
37153 cdot
37154 \backslash
37155 else
37156 \backslash
37157 textperiodcentered
37158 \backslash
37159 f\SpecialChar \textcompwordmark{}
37160 i}
37161 \end_layout
37162
37163 \begin_layout Standard
37164 Die Zeichenkodierung (Menü 
37165 \family sans
37166 Dokument\SpecialChar \menuseparator
37167 Einstellungen\SpecialChar \menuseparator
37168 Sprache
37169 \family default
37170 ) legt fest, welches Zeichen beim Druck einer bestimmten Taste erscheint.
37171  Wenn man die Taste für das Zeichen '·' drückt, wird intern der Befehl 
37172 \series bold
37173
37174 \backslash
37175 textperiodcentered
37176 \series default
37177  verwendet.
37178  Dieser Befehl ist in einer Formel jedoch nicht verfügbar, so dass es zu
37179  LaTeX-Fehlern kommen würde.
37180  Durch die geänderte Kodierung wird hingegen automatisch der richtige Befehl
37181  gewählt, je nachdem ob das Zeichen in eine Formel eingegeben wurde oder
37182  nicht.
37183 \end_layout
37184
37185 \begin_layout Standard
37186 Die Kodierung der einzelnen Zeichen ist in Definitionsdateien abgespeichert.
37187  Z.
37188 \begin_inset space \thinspace{}
37189 \end_inset
37190
37191 B.
37192  ist die Kodierung 
37193 \series bold
37194 latin9
37195 \series default
37196  in der Datei 
37197 \series bold
37198 latin9.def
37199 \series default
37200  definiert, die sich im Installationsverzeichnis von LaTeX befindet.
37201  Kodierungen sollten nur über den LaTeX-Vorspann und nicht in den Definitionsdat
37202 eien geändert werden.
37203  Ansonsten können eigene Dokumente von anderen LyX-Nutzern auf anderen Computern
37204  nicht ohne Weiteres bearbeitet werden.
37205 \end_layout
37206
37207 \begin_layout Standard
37208 \begin_inset VSpace medskip
37209 \end_inset
37210
37211 In diesem Dokument wurde außerdem mittigen Punkt noch das Gradzeichen °
37212  mit folgenden LaTeX-Vorspannzeilen so definiert, dass sie direkt in eine
37213  Formel eingegeben werden können:
37214 \end_layout
37215
37216 \begin_layout Standard
37217
37218 \series bold
37219
37220 \backslash
37221 DeclareInputText{176}{
37222 \backslash
37223 ifmmode^
37224 \backslash
37225 circ
37226 \backslash
37227 else
37228 \backslash
37229 textdegree
37230 \backslash
37231 f\SpecialChar \textcompwordmark{}
37232 i}
37233 \end_layout
37234
37235 \begin_layout Standard
37236 \begin_inset Newpage newpage
37237 \end_inset
37238
37239
37240 \end_layout
37241
37242 \begin_layout Section
37243 \start_of_appendix
37244 Typographische Hinweise
37245 \begin_inset Index idx
37246 status collapsed
37247
37248 \begin_layout Plain Layout
37249 Typographische Hinweise
37250 \end_layout
37251
37252 \end_inset
37253
37254
37255 \end_layout
37256
37257 \begin_layout Standard
37258 Dieses Kapitel ist eine Zusammenfassung der wichtigsten typographischen
37259  Regeln, die teilweise auch im Duden 
37260 \begin_inset CommandInset citation
37261 LatexCommand cite
37262 key "Duden"
37263
37264 \end_inset
37265
37266  unter 
37267 \family typewriter
37268 Textverarbeitung
37269 \family default
37270  aufgelistet sind.
37271  Weitere Regeln sind in 
37272 \begin_inset CommandInset citation
37273 LatexCommand cite
37274 key "Checklist"
37275
37276 \end_inset
37277
37278  zu finden.
37279 \end_layout
37280
37281 \begin_layout Itemize
37282 Physikalische Einheiten werden 
37283 \emph on
37284 immer
37285 \emph default
37286  aufrecht gesetzt
37287 \begin_inset Foot
37288 status collapsed
37289
37290 \begin_layout Plain Layout
37291 wird durch Schriftstile erreicht, siehe 
37292 \begin_inset CommandInset ref
37293 LatexCommand ref
37294 reference "sub:Schriftstile"
37295
37296 \end_inset
37297
37298
37299 \end_layout
37300
37301 \end_inset
37302
37303 , egal ob sie sich in einem kursiven Text befinden: 30
37304 \begin_inset space \thinspace{}
37305 \end_inset
37306
37307 km/h
37308 \begin_inset Newline newline
37309 \end_inset
37310
37311 Zwischen Wert und Einheit befindet sich der kleinste Leerraum, siehe 
37312 \begin_inset CommandInset ref
37313 LatexCommand ref
37314 reference "sub:Vordefinierter-Leerraum"
37315
37316 \end_inset
37317
37318 .
37319 \begin_inset Newline newline
37320 \end_inset
37321
37322 Diese Richtlinie wird automatisch eingehalten, wenn man den Befehl 
37323 \series bold
37324
37325 \backslash
37326 unittwo
37327 \series default
37328  verwendet.
37329  Gibt man ihn in eine Formel ein, erscheinen zwei Kästchen.
37330  In das Erste wird der Wert, in das Zweite die Einheit eingegeben und man
37331  erhält wie oben: 
37332 \begin_inset Formula $\unit[30]{km/h}$
37333 \end_inset
37334
37335
37336 \begin_inset space \thinspace{}
37337 \end_inset
37338
37339 .
37340  Zu beachten ist, dass 
37341 \series bold
37342
37343 \backslash
37344 unittwo
37345 \series default
37346  kein echter LaTeX-Befehl, sondern der Befehl 
37347 \series bold
37348
37349 \backslash
37350 unit[Wert]{Einheit}
37351 \series default
37352  ist, daher kann man ihn nicht im TeX-Code benutzen.
37353 \end_layout
37354
37355 \begin_layout Itemize
37356 Prozent- und Promillezeichen werden wie physikalische Einheiten gesetzt:
37357 \begin_inset Newline newline
37358 \end_inset
37359
37360 1,2
37361 \begin_inset space \thinspace{}
37362 \end_inset
37363
37364 ‰ Alkohol im Blut
37365 \begin_inset Newline newline
37366 \end_inset
37367
37368 Sie folgen jedoch direkt auf die Zahl, wenn sie in einer Zusammensetzung
37369  oder Ableitung stehen: 3%-ige Rendite, 20%-Grenze
37370 \end_layout
37371
37372 \begin_layout Itemize
37373 Das Grad-Symbol folgt immer unmittelbar auf die Zahl: 15°, es sei denn es
37374  wird in einer Einheit verwendet: 15
37375 \begin_inset space \thinspace{}
37376 \end_inset
37377
37378 °C
37379 \end_layout
37380
37381 \begin_layout Itemize
37382 In Zahlen mit mehr als vier Ziffern wird zur Gruppierung vor jeder dritten
37383  Ziffer der kleinste Leerraum eingefügt: 18
37384 \begin_inset space \thinspace{}
37385 \end_inset
37386
37387 473
37388 \begin_inset space \thinspace{}
37389 \end_inset
37390
37391 588
37392 \end_layout
37393
37394 \begin_layout Itemize
37395 Für Bemaßungen wie z.
37396 \begin_inset space \thinspace{}
37397 \end_inset
37398
37399 B.
37400  120×90×40
37401 \begin_inset space \thinspace{}
37402 \end_inset
37403
37404 cm, verwendet man das gelegte Kreuz 
37405 \begin_inset Quotes gld
37406 \end_inset
37407
37408 ×
37409 \begin_inset Quotes grd
37410 \end_inset
37411
37412 , dass entweder über den Befehl 
37413 \series bold
37414
37415 \backslash
37416 times
37417 \series default
37418  oder über das Menü 
37419 \family sans
37420 Einfügen\SpecialChar \menuseparator
37421 Sonderzeichen\SpecialChar \menuseparator
37422 Symbole
37423 \family default
37424  verfügbar ist.
37425 \end_layout
37426
37427 \begin_layout Itemize
37428 Bei Datumsangaben befindet sich zwischen Tag und Monat der kleinste Leerraum,
37429  zwischen Monat und Jahr ein geschütztes Leerzeichen: 23.
37430 \begin_inset space \thinspace{}
37431 \end_inset
37432
37433 6.
37434 \begin_inset space ~
37435 \end_inset
37436
37437 1979
37438 \end_layout
37439
37440 \begin_layout Itemize
37441 Funktionen, deren Name aus mehreren Buchstaben besteht, werden aufrecht
37442  gesetzt um Verwechslungen mit Variablen zu vermeiden, siehe 
37443 \begin_inset CommandInset ref
37444 LatexCommand ref
37445 reference "sub:Vordefinierte-Funktionen"
37446
37447 \end_inset
37448
37449 .
37450 \end_layout
37451
37452 \begin_layout Itemize
37453 Indizes, die aus mehreren Buchstaben bestehen, werden aufrecht gesetzt:
37454  
37455 \begin_inset Formula $E_{\mathrm{kin}}$
37456 \end_inset
37457
37458
37459 \begin_inset Newline newline
37460 \end_inset
37461
37462 Komponenten von Matrizen werden kursiv gesetzt: 
37463 \begin_inset Formula $\hat{H}_{kl}$
37464 \end_inset
37465
37466
37467 \end_layout
37468
37469 \begin_layout Itemize
37470 Der Ableitungs-/Integrationsoperator 'd', die Eulersche Zahl 'e' und die
37471  Imaginäre Zahl 'i' sollten aufrecht gesetzt werden, um sie nicht mit anderen
37472  Variablen zu verwechseln.
37473 \end_layout
37474
37475 \begin_layout Itemize
37476 Das Symbol für eine 
37477 \noun on
37478 Fourier
37479 \noun default
37480 -Transformation kann entweder mit dem Befehl 
37481 \series bold
37482
37483 \backslash
37484 mathscr
37485 \begin_inset ERT
37486 status collapsed
37487
37488 \begin_layout Plain Layout
37489
37490
37491 \backslash
37492 leer 
37493 \end_layout
37494
37495 \end_inset
37496
37497 F
37498 \series default
37499  oder über das Menü 
37500 \family sans
37501 Einfügen\SpecialChar \menuseparator
37502 Sonderzeichen\SpecialChar \menuseparator
37503 Symbole\SpecialChar \menuseparator
37504 Buchstabenähnliche
37505 \begin_inset space ~
37506 \end_inset
37507
37508 Symbole
37509 \family default
37510  eingefügt werden: 
37511 \begin_inset Formula $\mathscr{F}$
37512 \end_inset
37513
37514
37515 \end_layout
37516
37517 \begin_layout Standard
37518 \begin_inset Newpage newpage
37519 \end_inset
37520
37521
37522 \end_layout
37523
37524 \begin_layout Section
37525 Synonyme
37526 \begin_inset Index idx
37527 status collapsed
37528
37529 \begin_layout Plain Layout
37530 Synonyme
37531 \end_layout
37532
37533 \end_inset
37534
37535
37536 \end_layout
37537
37538 \begin_layout Standard
37539 Einige Zeichen und Symbole können mit mehreren Befehlen erstellt werden.
37540  Hier ist eine Übersicht der Synonymbefehle:
37541 \end_layout
37542
37543 \begin_layout Standard
37544 \begin_inset VSpace bigskip
37545 \end_inset
37546
37547
37548 \begin_inset space \hfill{}
37549 \end_inset
37550
37551
37552 \begin_inset Tabular
37553 <lyxtabular version="3" rows="12" columns="2">
37554 <features tabularvalignment="middle">
37555 <column alignment="center" valignment="top" width="0pt">
37556 <column alignment="center" valignment="top" width="0pt">
37557 <row>
37558 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
37559 \begin_inset Text
37560
37561 \begin_layout Plain Layout
37562 Befehl
37563 \end_layout
37564
37565 \end_inset
37566 </cell>
37567 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
37568 \begin_inset Text
37569
37570 \begin_layout Plain Layout
37571 äquivalent zu
37572 \begin_inset Note Note
37573 status collapsed
37574
37575 \begin_layout Plain Layout
37576
37577 \series bold
37578
37579 \backslash
37580 raisebox
37581 \series default
37582  dient nur als Abstandhalter.
37583 \end_layout
37584
37585 \end_inset
37586
37587
37588 \end_layout
37589
37590 \end_inset
37591 </cell>
37592 </row>
37593 <row>
37594 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37595 \begin_inset Text
37596
37597 \begin_layout Plain Layout
37598
37599 \backslash
37600 ast
37601 \end_layout
37602
37603 \end_inset
37604 </cell>
37605 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37606 \begin_inset Text
37607
37608 \begin_layout Plain Layout
37609 \begin_inset ERT
37610 status collapsed
37611
37612 \begin_layout Plain Layout
37613
37614
37615 \backslash
37616 raisebox{-1.2mm}{
37617 \end_layout
37618
37619 \end_inset
37620
37621 *
37622 \begin_inset ERT
37623 status collapsed
37624
37625 \begin_layout Plain Layout
37626
37627 }
37628 \end_layout
37629
37630 \end_inset
37631
37632
37633 \end_layout
37634
37635 \end_inset
37636 </cell>
37637 </row>
37638 <row>
37639 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37640 \begin_inset Text
37641
37642 \begin_layout Plain Layout
37643
37644 \backslash
37645 choose
37646 \end_layout
37647
37648 \end_inset
37649 </cell>
37650 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37651 \begin_inset Text
37652
37653 \begin_layout Plain Layout
37654
37655 \backslash
37656 binom
37657 \end_layout
37658
37659 \end_inset
37660 </cell>
37661 </row>
37662 <row>
37663 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37664 \begin_inset Text
37665
37666 \begin_layout Plain Layout
37667
37668 \backslash
37669 geq
37670 \end_layout
37671
37672 \end_inset
37673 </cell>
37674 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37675 \begin_inset Text
37676
37677 \begin_layout Plain Layout
37678
37679 \backslash
37680 ge
37681 \end_layout
37682
37683 \end_inset
37684 </cell>
37685 </row>
37686 <row>
37687 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37688 \begin_inset Text
37689
37690 \begin_layout Plain Layout
37691
37692 \backslash
37693 lbrace
37694 \end_layout
37695
37696 \end_inset
37697 </cell>
37698 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37699 \begin_inset Text
37700
37701 \begin_layout Plain Layout
37702 {
37703 \end_layout
37704
37705 \end_inset
37706 </cell>
37707 </row>
37708 <row>
37709 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37710 \begin_inset Text
37711
37712 \begin_layout Plain Layout
37713
37714 \backslash
37715 lbracket
37716 \end_layout
37717
37718 \end_inset
37719 </cell>
37720 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37721 \begin_inset Text
37722
37723 \begin_layout Plain Layout
37724 [
37725 \end_layout
37726
37727 \end_inset
37728 </cell>
37729 </row>
37730 <row>
37731 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37732 \begin_inset Text
37733
37734 \begin_layout Plain Layout
37735
37736 \backslash
37737 leftarrow
37738 \end_layout
37739
37740 \end_inset
37741 </cell>
37742 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37743 \begin_inset Text
37744
37745 \begin_layout Plain Layout
37746
37747 \backslash
37748 gets
37749 \end_layout
37750
37751 \end_inset
37752 </cell>
37753 </row>
37754 <row>
37755 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37756 \begin_inset Text
37757
37758 \begin_layout Plain Layout
37759
37760 \backslash
37761 leq
37762 \end_layout
37763
37764 \end_inset
37765 </cell>
37766 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37767 \begin_inset Text
37768
37769 \begin_layout Plain Layout
37770
37771 \backslash
37772 le
37773 \end_layout
37774
37775 \end_inset
37776 </cell>
37777 </row>
37778 <row>
37779 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37780 \begin_inset Text
37781
37782 \begin_layout Plain Layout
37783
37784 \backslash
37785 lor
37786 \end_layout
37787
37788 \end_inset
37789 </cell>
37790 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37791 \begin_inset Text
37792
37793 \begin_layout Plain Layout
37794
37795 \backslash
37796 vee
37797 \end_layout
37798
37799 \end_inset
37800 </cell>
37801 </row>
37802 <row>
37803 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37804 \begin_inset Text
37805
37806 \begin_layout Plain Layout
37807
37808 \backslash
37809 neq
37810 \end_layout
37811
37812 \end_inset
37813 </cell>
37814 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37815 \begin_inset Text
37816
37817 \begin_layout Plain Layout
37818
37819 \backslash
37820 not=
37821 \end_layout
37822
37823 \end_inset
37824 </cell>
37825 </row>
37826 <row>
37827 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37828 \begin_inset Text
37829
37830 \begin_layout Plain Layout
37831
37832 \backslash
37833 slash
37834 \end_layout
37835
37836 \end_inset
37837 </cell>
37838 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37839 \begin_inset Text
37840
37841 \begin_layout Plain Layout
37842 /
37843 \end_layout
37844
37845 \end_inset
37846 </cell>
37847 </row>
37848 <row>
37849 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
37850 \begin_inset Text
37851
37852 \begin_layout Plain Layout
37853
37854 \backslash
37855 vert
37856 \end_layout
37857
37858 \end_inset
37859 </cell>
37860 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
37861 \begin_inset Text
37862
37863 \begin_layout Plain Layout
37864 |
37865 \end_layout
37866
37867 \end_inset
37868 </cell>
37869 </row>
37870 </lyxtabular>
37871
37872 \end_inset
37873
37874
37875 \begin_inset space \hfill{}
37876 \end_inset
37877
37878
37879 \begin_inset Tabular
37880 <lyxtabular version="3" rows="12" columns="2">
37881 <features tabularvalignment="middle">
37882 <column alignment="center" valignment="top" width="0pt">
37883 <column alignment="center" valignment="top" width="0pt">
37884 <row>
37885 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
37886 \begin_inset Text
37887
37888 \begin_layout Plain Layout
37889 Befehl
37890 \end_layout
37891
37892 \end_inset
37893 </cell>
37894 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
37895 \begin_inset Text
37896
37897 \begin_layout Plain Layout
37898 äquivalent zu
37899 \end_layout
37900
37901 \end_inset
37902 </cell>
37903 </row>
37904 <row>
37905 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37906 \begin_inset Text
37907
37908 \begin_layout Plain Layout
37909
37910 \backslash
37911 backslash
37912 \end_layout
37913
37914 \end_inset
37915 </cell>
37916 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37917 \begin_inset Text
37918
37919 \begin_layout Plain Layout
37920
37921 \backslash
37922
37923 \backslash
37924
37925 \end_layout
37926
37927 \end_inset
37928 </cell>
37929 </row>
37930 <row>
37931 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37932 \begin_inset Text
37933
37934 \begin_layout Plain Layout
37935
37936 \backslash
37937 dasharrow
37938 \end_layout
37939
37940 \end_inset
37941 </cell>
37942 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37943 \begin_inset Text
37944
37945 \begin_layout Plain Layout
37946
37947 \backslash
37948 dashrightarrow
37949 \end_layout
37950
37951 \end_inset
37952 </cell>
37953 </row>
37954 <row>
37955 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37956 \begin_inset Text
37957
37958 \begin_layout Plain Layout
37959
37960 \backslash
37961 land
37962 \end_layout
37963
37964 \end_inset
37965 </cell>
37966 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37967 \begin_inset Text
37968
37969 \begin_layout Plain Layout
37970
37971 \backslash
37972 wedge
37973 \end_layout
37974
37975 \end_inset
37976 </cell>
37977 </row>
37978 <row>
37979 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37980 \begin_inset Text
37981
37982 \begin_layout Plain Layout
37983
37984 \backslash
37985 rbrace
37986 \end_layout
37987
37988 \end_inset
37989 </cell>
37990 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37991 \begin_inset Text
37992
37993 \begin_layout Plain Layout
37994 }
37995 \end_layout
37996
37997 \end_inset
37998 </cell>
37999 </row>
38000 <row>
38001 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
38002 \begin_inset Text
38003
38004 \begin_layout Plain Layout
38005
38006 \backslash
38007 rbracket
38008 \end_layout
38009
38010 \end_inset
38011 </cell>
38012 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
38013 \begin_inset Text
38014
38015 \begin_layout Plain Layout
38016 ]
38017 \end_layout
38018
38019 \end_inset
38020 </cell>
38021 </row>
38022 <row>
38023 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
38024 \begin_inset Text
38025
38026 \begin_layout Plain Layout
38027
38028 \backslash
38029 rightarrow
38030 \end_layout
38031
38032 \end_inset
38033 </cell>
38034 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
38035 \begin_inset Text
38036
38037 \begin_layout Plain Layout
38038
38039 \backslash
38040 to
38041 \end_layout
38042
38043 \end_inset
38044 </cell>
38045 </row>
38046 <row>
38047 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
38048 \begin_inset Text
38049
38050 \begin_layout Plain Layout
38051
38052 \backslash
38053 lnot
38054 \end_layout
38055
38056 \end_inset
38057 </cell>
38058 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
38059 \begin_inset Text
38060
38061 \begin_layout Plain Layout
38062
38063 \backslash
38064 neg
38065 \end_layout
38066
38067 \end_inset
38068 </cell>
38069 </row>
38070 <row>
38071 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
38072 \begin_inset Text
38073
38074 \begin_layout Plain Layout
38075
38076 \backslash
38077 ne
38078 \end_layout
38079
38080 \end_inset
38081 </cell>
38082 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
38083 \begin_inset Text
38084
38085 \begin_layout Plain Layout
38086
38087 \backslash
38088 not=
38089 \end_layout
38090
38091 \end_inset
38092 </cell>
38093 </row>
38094 <row>
38095 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
38096 \begin_inset Text
38097
38098 \begin_layout Plain Layout
38099
38100 \backslash
38101 owns
38102 \end_layout
38103
38104 \end_inset
38105 </cell>
38106 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
38107 \begin_inset Text
38108
38109 \begin_layout Plain Layout
38110
38111 \backslash
38112 ni
38113 \end_layout
38114
38115 \end_inset
38116 </cell>
38117 </row>
38118 <row>
38119 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
38120 \begin_inset Text
38121
38122 \begin_layout Plain Layout
38123
38124 \backslash
38125 square
38126 \end_layout
38127
38128 \end_inset
38129 </cell>
38130 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
38131 \begin_inset Text
38132
38133 \begin_layout Plain Layout
38134
38135 \backslash
38136 Box
38137 \end_layout
38138
38139 \end_inset
38140 </cell>
38141 </row>
38142 <row>
38143 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
38144 \begin_inset Text
38145
38146 \begin_layout Plain Layout
38147
38148 \backslash
38149 Vert
38150 \end_layout
38151
38152 \end_inset
38153 </cell>
38154 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
38155 \begin_inset Text
38156
38157 \begin_layout Plain Layout
38158
38159 \backslash
38160 |
38161 \end_layout
38162
38163 \end_inset
38164 </cell>
38165 </row>
38166 </lyxtabular>
38167
38168 \end_inset
38169
38170
38171 \begin_inset space \hfill{}
38172 \end_inset
38173
38174
38175 \end_layout
38176
38177 \begin_layout Standard
38178 \begin_inset Newpage newpage
38179 \end_inset
38180
38181
38182 \end_layout
38183
38184 \begin_layout Bibliography
38185 \labelwidthstring Referenzen
38186 \begin_inset CommandInset bibitem
38187 LatexCommand bibitem
38188 key "TLC2"
38189
38190 \end_inset
38191
38192
38193 \shape smallcaps
38194 Mittelbach, F.
38195  ; Goossens, M.
38196 \shape default
38197
38198 \shape italic
38199 The LaTeX Companion
38200 \shape default
38201 .
38202  Addison Wesley, 2004
38203 \end_layout
38204
38205 \begin_layout Bibliography
38206 \labelwidthstring Referenzen
38207 \begin_inset CommandInset bibitem
38208 LatexCommand bibitem
38209 key "Mathmode"
38210
38211 \end_inset
38212
38213
38214 \begin_inset CommandInset href
38215 LatexCommand href
38216 name "Beschreibung"
38217 target "ftp://ftp.dante.de/tex-archive/info/math/voss/mathmode/Mathmode.pdf"
38218
38219 \end_inset
38220
38221  der mathematischen Fähigkeiten von LaTeX
38222 \end_layout
38223
38224 \begin_layout Bibliography
38225 \labelwidthstring Referenzen
38226 \begin_inset CommandInset bibitem
38227 LatexCommand bibitem
38228 key "AMS"
38229
38230 \end_inset
38231
38232
38233 \begin_inset CommandInset href
38234 LatexCommand href
38235 name "Beschreibung"
38236 target "ftp://ftp.ams.org/pub/tex/doc/amsmath/amsldoc.pdf"
38237
38238 \end_inset
38239
38240  von 
38241 \begin_inset ERT
38242 status collapsed
38243
38244 \begin_layout Plain Layout
38245
38246
38247 \backslash
38248 AmS
38249 \end_layout
38250
38251 \end_inset
38252
38253 -LaTeX
38254 \end_layout
38255
38256 \begin_layout Bibliography
38257 \labelwidthstring Referenzen
38258 \begin_inset CommandInset bibitem
38259 LatexCommand bibitem
38260 key "Symbole"
38261
38262 \end_inset
38263
38264
38265 \begin_inset CommandInset href
38266 LatexCommand href
38267 name "Auflistung"
38268 target "ftp://ftp.dante.de/tex-archive/info/symbols/comprehensive/symbols-a4.pdf"
38269
38270 \end_inset
38271
38272  aller über LaTeX-Pakete verfügbare Symbole
38273 \end_layout
38274
38275 \begin_layout Bibliography
38276 \labelwidthstring Referenzen
38277 \begin_inset CommandInset bibitem
38278 LatexCommand bibitem
38279 key "cancel"
38280
38281 \end_inset
38282
38283
38284 \begin_inset CommandInset href
38285 LatexCommand href
38286 name "Dokumentation"
38287 target "http://mirrors.ctan.org/macros/latex/contrib/cancel/cancel.pdf"
38288
38289 \end_inset
38290
38291  des LaTeX-Pakets 
38292 \series bold
38293 cancel
38294 \series default
38295
38296 \begin_inset Index idx
38297 status collapsed
38298
38299 \begin_layout Plain Layout
38300 Pakete ! cancel
38301 \end_layout
38302
38303 \end_inset
38304
38305
38306 \end_layout
38307
38308 \begin_layout Bibliography
38309 \labelwidthstring Referenzen
38310 \begin_inset CommandInset bibitem
38311 LatexCommand bibitem
38312 key "hyperref"
38313
38314 \end_inset
38315
38316
38317 \begin_inset CommandInset href
38318 LatexCommand href
38319 name "Dokumentation"
38320 target "http://www.tug.org/applications/hyperref/ftp/doc/manual.pdf"
38321
38322 \end_inset
38323
38324  des LaTeX-Pakets 
38325 \series bold
38326 hyperref
38327 \series default
38328
38329 \begin_inset Index idx
38330 status collapsed
38331
38332 \begin_layout Plain Layout
38333 Pakete ! hyperref
38334 \end_layout
38335
38336 \end_inset
38337
38338
38339 \end_layout
38340
38341 \begin_layout Bibliography
38342 \labelwidthstring Referenzen
38343 \begin_inset CommandInset bibitem
38344 LatexCommand bibitem
38345 key "mhchem"
38346
38347 \end_inset
38348
38349
38350 \begin_inset CommandInset href
38351 LatexCommand href
38352 name "Dokumentation"
38353 target "http://www.ctan.org/tex-archive/macros/latex/contrib/mhchem/mhchem.pdf"
38354
38355 \end_inset
38356
38357  des LaTeX-Pakets 
38358 \series bold
38359 mhchem
38360 \series default
38361
38362 \begin_inset Index idx
38363 status collapsed
38364
38365 \begin_layout Plain Layout
38366 Pakete ! mhchem
38367 \end_layout
38368
38369 \end_inset
38370
38371
38372 \end_layout
38373
38374 \begin_layout Bibliography
38375 \labelwidthstring Referenzen
38376 \begin_inset CommandInset bibitem
38377 LatexCommand bibitem
38378 key "Mathclap"
38379
38380 \end_inset
38381
38382
38383 \begin_inset CommandInset href
38384 LatexCommand href
38385 name "Beschreibung"
38386 target "http://www.tug.org/TUGboat/Articles/tb22-4/tb72perlS.pdf"
38387
38388 \end_inset
38389
38390  des in 
38391 \begin_inset CommandInset ref
38392 LatexCommand ref
38393 reference "sub:Operatorgrenzen"
38394
38395 \end_inset
38396
38397  vorgestellten Befehls 
38398 \series bold
38399
38400 \backslash
38401 mathclap
38402 \series default
38403
38404 \begin_inset Index idx
38405 status collapsed
38406
38407 \begin_layout Plain Layout
38408 Befehle ! M ! 
38409 \backslash
38410 mathclap
38411 \end_layout
38412
38413 \end_inset
38414
38415
38416 \end_layout
38417
38418 \begin_layout Bibliography
38419 \labelwidthstring Referenzen
38420 \begin_inset CommandInset bibitem
38421 LatexCommand bibitem
38422 key "Duden"
38423
38424 \end_inset
38425
38426
38427 \emph on
38428 Duden Band 1
38429 \emph default
38430 .
38431  22.
38432  Auflage, Duden Verlag 2001
38433 \end_layout
38434
38435 \begin_layout Bibliography
38436 \labelwidthstring Referenzen
38437 \begin_inset CommandInset bibitem
38438 LatexCommand bibitem
38439 key "Checklist"
38440
38441 \end_inset
38442
38443
38444 \begin_inset CommandInset href
38445 LatexCommand href
38446 name "Prüfliste"
38447 target "http://physics.nist.gov/Document/checklist.pdf"
38448
38449 \end_inset
38450
38451  für das Rezensieren von Manuskripten
38452 \end_layout
38453
38454 \begin_layout Standard
38455 \begin_inset Note Note
38456 status collapsed
38457
38458 \begin_layout Plain Layout
38459 Damit der Index den Namen 
38460 \begin_inset Quotes gld
38461 \end_inset
38462
38463 Stichwortverzeichnis
38464 \begin_inset Quotes grd
38465 \end_inset
38466
38467  erhält, wurde im LaTeX-Vorspann
38468 \end_layout
38469
38470 \begin_layout Plain Layout
38471
38472 \series bold
38473
38474 \backslash
38475 addto
38476 \backslash
38477 captionsngerman{
38478 \backslash
38479 renewcommand{
38480 \backslash
38481 indexname}{Stichwortverzeichnis}}
38482 \end_layout
38483
38484 \begin_layout Plain Layout
38485 eingefügt.
38486 \end_layout
38487
38488 \begin_layout Plain Layout
38489 Das Paket 
38490 \series bold
38491 babel
38492 \series default
38493  sorgt dafür, dass die Beschriftungen in der ausgewählten Sprache erscheinen.
38494  Ehe man Beschriftungen ändern kann, muss es geladen werden.
38495  Außerdem wird 
38496 \series bold
38497 babel
38498 \series default
38499  von LyX automatisch nach dem LaTeX-Vorspann geladen.
38500  Das ruft aber keine Probleme hervor, solange im LaTeX-Vorspann die Dokumentspra
38501 che verwendet wurde.
38502 \end_layout
38503
38504 \begin_layout Plain Layout
38505 Möchte man andere Beschriftungen ändern, ersetzt man 
38506 \series bold
38507
38508 \backslash
38509 indexname
38510 \series default
38511  durch 
38512 \series bold
38513
38514 \backslash
38515 <Beschriftungs>name
38516 \series default
38517 .
38518  Eine Auflistung der möglichen Namen findet man unter
38519 \end_layout
38520
38521 \begin_layout Plain Layout
38522
38523 \family typewriter
38524 http://www.tex.ac.uk/cgi-bin/texfaq2html?label=fixnam
38525 \end_layout
38526
38527 \begin_layout Plain Layout
38528 Möchte man Beschriftungen für andere Sprachen ändern, ersetzt man 
38529 \series bold
38530 ngerman
38531 \series default
38532  durch die Dokumentsprache und
38533 \end_layout
38534
38535 \begin_layout Plain Layout
38536
38537 \series bold
38538
38539 \backslash
38540 captionsgerman
38541 \series default
38542  durch 
38543 \series bold
38544
38545 \backslash
38546 captions<Dokumentsprache>
38547 \series default
38548 .
38549 \end_layout
38550
38551 \end_inset
38552
38553
38554 \begin_inset CommandInset index_print
38555 LatexCommand printindex
38556 type "idx"
38557
38558 \end_inset
38559
38560
38561 \end_layout
38562
38563 \end_body
38564 \end_document