]> git.lyx.org Git - lyx.git/blob - lib/doc/de/Math.lyx
Additional.lyx: update description for multiple columns
[lyx.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 \begin_inset space \space{}
694 \end_inset
695
696 tief gestellten Großbuchstaben erscheinen: TeX, LaTeX und LyX
697 \end_layout
698
699 \begin_layout Plain Layout
700 Um zu verhindern, dass diese Wörter als Eigennamen erkannt werden, fügt
701  man ein TeX-Klammerpaar ein.
702 \end_layout
703
704 \end_inset
705
706
707 \end_layout
708
709 \begin_layout Standard
710 In den LaTeX-Vorspann
711 \begin_inset Index idx
712 status collapsed
713
714 \begin_layout Plain Layout
715 L@LaTeX-Vorspann
716 \end_layout
717
718 \end_inset
719
720  gelangt man über das Menü 
721 \family sans
722 Dokument\SpecialChar \menuseparator
723 Einstellungen\SpecialChar \menuseparator
724 LaT
725 \begin_inset ERT
726 status collapsed
727
728 \begin_layout Plain Layout
729
730 {}
731 \end_layout
732
733 \end_inset
734
735 eX-Vorspann
736 \family default
737 .
738 \end_layout
739
740 \begin_layout Standard
741 Zur nachträglichen Bearbeitung von Matrizen, Fallunterscheidungen und mehrzeilig
742 en Formeln kann man die Menüs 
743 \family sans
744 Bearbeiten\SpecialChar \menuseparator
745 Mathe
746 \family default
747  und 
748 \family sans
749 Bearbeiten\SpecialChar \menuseparator
750 Zeilen
751 \begin_inset space \thinspace{}
752 \end_inset
753
754 &
755 \begin_inset space \thinspace{}
756 \end_inset
757
758 Spalten
759 \family default
760  oder die 
761 \family sans
762 Tabellen-Werkzeugleiste
763 \family default
764  verwenden.
765  Beim Vertauschen von Zeilen und Spalten mit Hilfe dieses Menüs wird immer
766  die Spalte bzw.
767 \begin_inset space \space{}
768 \end_inset
769
770 Zeile, in der der Cursor steht, mit der rechts daneben stehenden Spalte
771  bzw.
772 \begin_inset space \space{}
773 \end_inset
774
775 darunter liegenden Zeile vertauscht.
776  Befindet sich der Cursor in der letzten Spalte bzw.
777 \begin_inset space \space{}
778 \end_inset
779
780 Zeile, wird mit der links daneben stehenden Spalte bzw.
781 \begin_inset space \space{}
782 \end_inset
783
784 darüber liegenden Zeile vertauscht.
785 \end_layout
786
787 \begin_layout Standard
788 Zum Schreiben von Text in einer Formel
789 \begin_inset Foot
790 status collapsed
791
792 \begin_layout Plain Layout
793 Bei mehrzeiligen Formeln wird der Befehl 
794 \series bold
795
796 \backslash
797 intertext
798 \series default
799  verwendet, siehe 
800 \begin_inset CommandInset ref
801 LatexCommand ref
802 reference "sub:Text-in-mehrzeiligen"
803
804 \end_inset
805
806 .
807 \end_layout
808
809 \end_inset
810
811  verwendet man den 
812 \emph on
813 mathematischen Textmodus
814 \emph default
815
816 \begin_inset Index idx
817 status collapsed
818
819 \begin_layout Plain Layout
820 Text ! in Formeln
821 \end_layout
822
823 \end_inset
824
825
826 \begin_inset Index idx
827 status collapsed
828
829 \begin_layout Plain Layout
830 Mathematischer Textmodus
831 \end_layout
832
833 \end_inset
834
835 , in den man mit dem Tastenkürzel 
836 \family sans
837 Alt+M
838 \begin_inset space ~
839 \end_inset
840
841 M
842 \family default
843  oder durch Eingabe des Befehls 
844 \series bold
845
846 \backslash
847 text
848 \begin_inset Index idx
849 status collapsed
850
851 \begin_layout Plain Layout
852 Befehle ! T ! 
853 \backslash
854 text
855 \end_layout
856
857 \end_inset
858
859
860 \series default
861  gelangt.
862  Der Text erscheint in LyX schwarz und lässt sich dadurch gut vom Rest der
863  Formel unterscheiden.
864  Im fertigen Dokument erscheint mathematischer Text im Gegensatz zu allen
865  anderen Zeichen einer Formel nicht kursiv.
866 \end_layout
867
868 \begin_layout Subsection*
869 Befehlsschema
870 \end_layout
871
872 \begin_layout Standard
873 Die meisten LaTeX-Befehle für mathematische Konstruktionen besitzen folgendes
874  Schema:
875 \end_layout
876
877 \begin_layout Standard
878
879 \series bold
880
881 \backslash
882 Befehlsname[optionales
883 \series default
884  
885 \series bold
886 Argument]{anzugebendes
887 \series default
888  
889 \series bold
890 Argument}
891 \end_layout
892
893 \begin_layout Standard
894 Ein Befehl muss immer mit einem Backslash 
895 \begin_inset Quotes gld
896 \end_inset
897
898
899 \series bold
900
901 \backslash
902
903 \series default
904
905 \begin_inset Quotes grd
906 \end_inset
907
908  beginnen.
909  Möchte man ein optionales Argument nicht angeben, müssen auch die zugehörigen
910  eckigen Klammern weggelassen werden.
911  Die geschweiften Klammern werden in diesem Dokument als TeX-Klammern
912 \begin_inset Index idx
913 status collapsed
914
915 \begin_layout Plain Layout
916 T@TeX-Klammern
917 \end_layout
918
919 \end_inset
920
921  bezeichnet.
922  Hängt man in einer Formel an Befehlsnamen eine linke geschweifte Klammer
923  an, erzeugt LyX automatisch eine TeX-Klammer.
924  Ansonsten werden sie in Formeln mit dem Befehl 
925 \series bold
926
927 \backslash
928 {
929 \series default
930  erzeugt.
931  TeX-Klammern erscheinen in LyX rot, im Gegensatz zu normalen geschweiften
932  Klammern, die blau erscheinen.
933  Im TeX-Modus sind für TeX-Klammern keine Befehle notwendig.
934  TeX-Klammern erscheinen nicht im Ausdruck.
935 \end_layout
936
937 \begin_layout Standard
938 Werden Befehle ohne Argumente, wie z.
939 \begin_inset space \thinspace{}
940 \end_inset
941
942 B.
943  Symbolbefehle, im TeX-Modus eingegeben, muss auf den Befehl 
944 \emph on
945 immer
946 \emph default
947  ein Leerzeichen folgen um ihn zu beenden.
948  Dieses Leerzeichen erscheint nicht im Ausdruck.
949  Soll das Leerzeichen auch im Ausdruck erscheinen, muss auf den Befehl im
950  normalen Text ein geschütztes Leerzeichen folgen.
951 \end_layout
952
953 \begin_layout Standard
954 Ein geschütztes Leerzeichen gibt man mit 
955 \family sans
956 Strg+Leertaste
957 \family default
958  ein.
959 \end_layout
960
961 \begin_layout Subsection*
962 Zeichenerklärung
963 \end_layout
964
965 \begin_layout Itemize
966 Das Symbol
967 \begin_inset Foot
968 status collapsed
969
970 \begin_layout Plain Layout
971 Dieses sichtbare Leerzeichen erhält man über den Befehl 
972 \series bold
973
974 \backslash
975 textvisiblespace
976 \series default
977
978 \begin_inset Index idx
979 status collapsed
980
981 \begin_layout Plain Layout
982 Befehle ! T ! 
983 \backslash
984 textvisiblespace
985 \end_layout
986
987 \end_inset
988
989 , der im TeX-Modus einzugeben ist.
990 \end_layout
991
992 \end_inset
993
994  
995 \begin_inset ERT
996 status collapsed
997
998 \begin_layout Plain Layout
999
1000
1001 \backslash
1002 leer 
1003 \end_layout
1004
1005 \end_inset
1006
1007
1008 \begin_inset space ~
1009 \end_inset
1010
1011 steht für ein einzugebendes Leerzeichen.
1012 \end_layout
1013
1014 \begin_layout Itemize
1015 Ein Pfeil wie z.
1016 \begin_inset space \thinspace{}
1017 \end_inset
1018
1019 B.
1020  
1021 \begin_inset Formula $\to$
1022 \end_inset
1023
1024  steht für den Druck der jeweiligen Pfeiltaste auf der Tastatur.
1025  Die 
1026 \family sans
1027 Tabulator
1028 \family default
1029 -Taste kann oft anstelle von 
1030 \begin_inset Formula $\to$
1031 \end_inset
1032
1033  und 
1034 \begin_inset Formula $\downarrow$
1035 \end_inset
1036
1037  benutzt werden und 
1038 \family sans
1039 Umschalt+Tabulator
1040 \family default
1041  anstelle von 
1042 \begin_inset Formula $\leftarrow$
1043 \end_inset
1044
1045  und 
1046 \begin_inset Formula $\uparrow$
1047 \end_inset
1048
1049 .
1050 \end_layout
1051
1052 \begin_layout Subsection*
1053 Verfügbare Einheiten
1054 \end_layout
1055
1056 \begin_layout Standard
1057 \align center
1058 \begin_inset Float table
1059 placement H
1060 wide false
1061 sideways false
1062 status open
1063
1064 \begin_layout Plain Layout
1065 \align center
1066 \begin_inset Caption
1067
1068 \begin_layout Plain Layout
1069 \begin_inset CommandInset label
1070 LatexCommand label
1071 name "tab:Verfügbare-Einheiten"
1072
1073 \end_inset
1074
1075 Verfügbare Einheiten
1076 \end_layout
1077
1078 \end_inset
1079
1080
1081 \end_layout
1082
1083 \begin_layout Plain Layout
1084 \align center
1085 \begin_inset Tabular
1086 <lyxtabular version="3" rows="13" columns="2">
1087 <features tabularvalignment="middle">
1088 <column alignment="center" valignment="top" width="0">
1089 <column alignment="center" valignment="top" width="0">
1090 <row>
1091 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1092 \begin_inset Text
1093
1094 \begin_layout Plain Layout
1095 Einheit
1096 \end_layout
1097
1098 \end_inset
1099 </cell>
1100 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
1101 \begin_inset Text
1102
1103 \begin_layout Plain Layout
1104 Name / Beschreibung
1105 \end_layout
1106
1107 \end_inset
1108 </cell>
1109 </row>
1110 <row>
1111 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1112 \begin_inset Text
1113
1114 \begin_layout Plain Layout
1115 mm
1116 \end_layout
1117
1118 \end_inset
1119 </cell>
1120 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1121 \begin_inset Text
1122
1123 \begin_layout Plain Layout
1124 Millimeter
1125 \end_layout
1126
1127 \end_inset
1128 </cell>
1129 </row>
1130 <row>
1131 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1132 \begin_inset Text
1133
1134 \begin_layout Plain Layout
1135 cm
1136 \end_layout
1137
1138 \end_inset
1139 </cell>
1140 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1141 \begin_inset Text
1142
1143 \begin_layout Plain Layout
1144 Zentimeter
1145 \end_layout
1146
1147 \end_inset
1148 </cell>
1149 </row>
1150 <row>
1151 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1152 \begin_inset Text
1153
1154 \begin_layout Plain Layout
1155 in
1156 \end_layout
1157
1158 \end_inset
1159 </cell>
1160 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1161 \begin_inset Text
1162
1163 \begin_layout Plain Layout
1164 Inch / Zoll (1
1165 \begin_inset space \thinspace{}
1166 \end_inset
1167
1168 in = 2,54
1169 \begin_inset space \thinspace{}
1170 \end_inset
1171
1172 cm)
1173 \end_layout
1174
1175 \end_inset
1176 </cell>
1177 </row>
1178 <row>
1179 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1180 \begin_inset Text
1181
1182 \begin_layout Plain Layout
1183 pt
1184 \end_layout
1185
1186 \end_inset
1187 </cell>
1188 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1189 \begin_inset Text
1190
1191 \begin_layout Plain Layout
1192 Punkt (72,27
1193 \begin_inset space \thinspace{}
1194 \end_inset
1195
1196 pt = 1
1197 \begin_inset space \thinspace{}
1198 \end_inset
1199
1200 in)
1201 \end_layout
1202
1203 \end_inset
1204 </cell>
1205 </row>
1206 <row>
1207 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1208 \begin_inset Text
1209
1210 \begin_layout Plain Layout
1211 pc
1212 \end_layout
1213
1214 \end_inset
1215 </cell>
1216 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1217 \begin_inset Text
1218
1219 \begin_layout Plain Layout
1220 Pica (1
1221 \begin_inset space \thinspace{}
1222 \end_inset
1223
1224 pc = 12
1225 \begin_inset space \thinspace{}
1226 \end_inset
1227
1228 pt)
1229 \end_layout
1230
1231 \end_inset
1232 </cell>
1233 </row>
1234 <row>
1235 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1236 \begin_inset Text
1237
1238 \begin_layout Plain Layout
1239 sp
1240 \end_layout
1241
1242 \end_inset
1243 </cell>
1244 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1245 \begin_inset Text
1246
1247 \begin_layout Plain Layout
1248 skalierter Punkt(65536
1249 \begin_inset space \thinspace{}
1250 \end_inset
1251
1252 sp = 1
1253 \begin_inset space \thinspace{}
1254 \end_inset
1255
1256 pt)
1257 \end_layout
1258
1259 \end_inset
1260 </cell>
1261 </row>
1262 <row>
1263 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1264 \begin_inset Text
1265
1266 \begin_layout Plain Layout
1267 bp
1268 \end_layout
1269
1270 \end_inset
1271 </cell>
1272 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1273 \begin_inset Text
1274
1275 \begin_layout Plain Layout
1276 großer Punkt (72
1277 \begin_inset space \thinspace{}
1278 \end_inset
1279
1280 bp = 1
1281 \begin_inset space \thinspace{}
1282 \end_inset
1283
1284 in)
1285 \end_layout
1286
1287 \end_inset
1288 </cell>
1289 </row>
1290 <row>
1291 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1292 \begin_inset Text
1293
1294 \begin_layout Plain Layout
1295 dd
1296 \end_layout
1297
1298 \end_inset
1299 </cell>
1300 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1301 \begin_inset Text
1302
1303 \begin_layout Plain Layout
1304 Didot (1
1305 \begin_inset space \thinspace{}
1306 \end_inset
1307
1308 dd 
1309 \begin_inset Formula $\approx$
1310 \end_inset
1311
1312  0,376
1313 \begin_inset space \thinspace{}
1314 \end_inset
1315
1316 mm)
1317 \end_layout
1318
1319 \end_inset
1320 </cell>
1321 </row>
1322 <row>
1323 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1324 \begin_inset Text
1325
1326 \begin_layout Plain Layout
1327 cc
1328 \end_layout
1329
1330 \end_inset
1331 </cell>
1332 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1333 \begin_inset Text
1334
1335 \begin_layout Plain Layout
1336 Cicero (1
1337 \begin_inset space \thinspace{}
1338 \end_inset
1339
1340 cc = 12
1341 \begin_inset space \thinspace{}
1342 \end_inset
1343
1344 dd)
1345 \end_layout
1346
1347 \end_inset
1348 </cell>
1349 </row>
1350 <row>
1351 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1352 \begin_inset Text
1353
1354 \begin_layout Plain Layout
1355 ex
1356 \end_layout
1357
1358 \end_inset
1359 </cell>
1360 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1361 \begin_inset Text
1362
1363 \begin_layout Plain Layout
1364 Höhe des Buchstabens 
1365 \emph on
1366 x
1367 \emph default
1368  in der aktuellen Schrift
1369 \end_layout
1370
1371 \end_inset
1372 </cell>
1373 </row>
1374 <row>
1375 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1376 \begin_inset Text
1377
1378 \begin_layout Plain Layout
1379 em
1380 \end_layout
1381
1382 \end_inset
1383 </cell>
1384 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1385 \begin_inset Text
1386
1387 \begin_layout Plain Layout
1388 Breite des Buchstabens 
1389 \emph on
1390 M
1391 \emph default
1392  in der aktuellen Schrift
1393 \end_layout
1394
1395 \end_inset
1396 </cell>
1397 </row>
1398 <row>
1399 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1400 \begin_inset Text
1401
1402 \begin_layout Plain Layout
1403 mu
1404 \end_layout
1405
1406 \end_inset
1407 </cell>
1408 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
1409 \begin_inset Text
1410
1411 \begin_layout Plain Layout
1412 Mathe-Einheit (1
1413 \begin_inset space \thinspace{}
1414 \end_inset
1415
1416 mu = 
1417 \begin_inset Formula $\nicefrac{1}{18}$
1418 \end_inset
1419
1420
1421 \begin_inset space \thinspace{}
1422 \end_inset
1423
1424 em)
1425 \end_layout
1426
1427 \end_inset
1428 </cell>
1429 </row>
1430 </lyxtabular>
1431
1432 \end_inset
1433
1434
1435 \end_layout
1436
1437 \end_inset
1438
1439
1440 \end_layout
1441
1442 \begin_layout Standard
1443 \begin_inset Newpage newpage
1444 \end_inset
1445
1446
1447 \end_layout
1448
1449 \begin_layout Section
1450 Grundlegende Funktionen
1451 \end_layout
1452
1453 \begin_layout Subsection
1454 Exponenten
1455 \begin_inset Index idx
1456 status collapsed
1457
1458 \begin_layout Plain Layout
1459 Exponenten
1460 \end_layout
1461
1462 \end_inset
1463
1464  und Indizes
1465 \begin_inset Index idx
1466 status collapsed
1467
1468 \begin_layout Plain Layout
1469 Indizes
1470 \end_layout
1471
1472 \end_inset
1473
1474
1475 \begin_inset Index idx
1476 status collapsed
1477
1478 \begin_layout Plain Layout
1479 Hochstellen|see
1480 \begin_inset ERT
1481 status collapsed
1482
1483 \begin_layout Plain Layout
1484
1485 {
1486 \end_layout
1487
1488 \end_inset
1489
1490 Exponenten
1491 \begin_inset ERT
1492 status collapsed
1493
1494 \begin_layout Plain Layout
1495
1496 }
1497 \end_layout
1498
1499 \end_inset
1500
1501
1502 \end_layout
1503
1504 \end_inset
1505
1506
1507 \begin_inset Index idx
1508 status collapsed
1509
1510 \begin_layout Plain Layout
1511 Tiefstellen|see
1512 \begin_inset ERT
1513 status collapsed
1514
1515 \begin_layout Plain Layout
1516
1517 {
1518 \end_layout
1519
1520 \end_inset
1521
1522 Indizes
1523 \begin_inset ERT
1524 status collapsed
1525
1526 \begin_layout Plain Layout
1527
1528 }
1529 \end_layout
1530
1531 \end_inset
1532
1533
1534 \end_layout
1535
1536 \end_inset
1537
1538
1539 \end_layout
1540
1541 \begin_layout Standard
1542 Indizes werden mit dem Unterstrich _ oder mit dem Mathe-Werkzeugleistenknopf
1543  
1544 \begin_inset Graphics
1545         filename ../../images/math-subscript.png
1546         scale 85
1547
1548 \end_inset
1549
1550 , Exponenten mit dem Zirkumflexzeichen ^ oder mit dem Mathe-Werkzeugleistenknopf
1551  
1552 \begin_inset Graphics
1553         filename ../../images/math-superscript.png
1554         scale 85
1555
1556 \end_inset
1557
1558  erzeugt.
1559 \end_layout
1560
1561 \begin_layout Standard
1562 \align center
1563 \begin_inset Tabular
1564 <lyxtabular version="3" rows="4" columns="2">
1565 <features tabularvalignment="middle">
1566 <column alignment="center" valignment="top" width="0pt">
1567 <column alignment="center" valignment="top" width="0pt">
1568 <row>
1569 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1570 \begin_inset Text
1571
1572 \begin_layout Plain Layout
1573 Befehl
1574 \end_layout
1575
1576 \end_inset
1577 </cell>
1578 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
1579 \begin_inset Text
1580
1581 \begin_layout Plain Layout
1582 Ergebnis
1583 \begin_inset Note Note
1584 status collapsed
1585
1586 \begin_layout Plain Layout
1587
1588 \series bold
1589
1590 \backslash
1591 raisebox
1592 \series default
1593  dient nur als Abstandhalter.
1594 \end_layout
1595
1596 \end_inset
1597
1598
1599 \end_layout
1600
1601 \end_inset
1602 </cell>
1603 </row>
1604 <row>
1605 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1606 \begin_inset Text
1607
1608 \begin_layout Plain Layout
1609 B_V
1610 \end_layout
1611
1612 \end_inset
1613 </cell>
1614 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1615 \begin_inset Text
1616
1617 \begin_layout Plain Layout
1618 \begin_inset Formula $B_{V}$
1619 \end_inset
1620
1621
1622 \end_layout
1623
1624 \end_inset
1625 </cell>
1626 </row>
1627 <row>
1628 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1629 \begin_inset Text
1630
1631 \begin_layout Plain Layout
1632 B^V
1633 \end_layout
1634
1635 \end_inset
1636 </cell>
1637 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
1638 \begin_inset Text
1639
1640 \begin_layout Plain Layout
1641 \begin_inset Formula $\raisebox{5mm}{}B^{V}$
1642 \end_inset
1643
1644
1645 \end_layout
1646
1647 \end_inset
1648 </cell>
1649 </row>
1650 <row>
1651 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1652 \begin_inset Text
1653
1654 \begin_layout Plain Layout
1655 B^
1656 \begin_inset ERT
1657 status collapsed
1658
1659 \begin_layout Plain Layout
1660
1661
1662 \backslash
1663 leer 
1664 \end_layout
1665
1666 \end_inset
1667
1668 A
1669 \end_layout
1670
1671 \end_inset
1672 </cell>
1673 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
1674 \begin_inset Text
1675
1676 \begin_layout Plain Layout
1677 \begin_inset Formula $\raisebox{5mm}{}B^{A}$
1678 \end_inset
1679
1680
1681 \end_layout
1682
1683 \end_inset
1684 </cell>
1685 </row>
1686 </lyxtabular>
1687
1688 \end_inset
1689
1690
1691 \end_layout
1692
1693 \begin_layout Standard
1694 Da der Zirkumflex ein Akzent ist, werden Selbstlaute akzentuiert statt hochgeste
1695 llt
1696 \begin_inset Foot
1697 status collapsed
1698
1699 \begin_layout Plain Layout
1700 Je nach Tastatureinstellung werden auch andere Buchstaben akzentuiert.
1701 \end_layout
1702
1703 \end_inset
1704
1705 .
1706  Um in diesem Fall Exponenten zu erzeugen, muss nach dem Zirkumflex ein
1707  Leerzeichen eingegeben werden, siehe letztes Beispiel.
1708 \end_layout
1709
1710 \begin_layout Subsection
1711 Brüche
1712 \begin_inset CommandInset label
1713 LatexCommand label
1714 name "sub:Brüche"
1715
1716 \end_inset
1717
1718
1719 \begin_inset Index idx
1720 status collapsed
1721
1722 \begin_layout Plain Layout
1723 Brüche
1724 \end_layout
1725
1726 \end_inset
1727
1728
1729 \end_layout
1730
1731 \begin_layout Standard
1732 Brüche werden mit dem Befehl 
1733 \series bold
1734
1735 \backslash
1736 frac
1737 \series default
1738
1739 \begin_inset Index idx
1740 status collapsed
1741
1742 \begin_layout Plain Layout
1743 Befehle ! F ! 
1744 \backslash
1745 frac
1746 \end_layout
1747
1748 \end_inset
1749
1750  oder mit dem Mathe-Werkzeugleistenknopf 
1751 \begin_inset Graphics
1752         filename ../../images/math/frac.png
1753         scale 50
1754
1755 \end_inset
1756
1757  erstellt.
1758  Die Zeichengröße wird automatisch angepasst, je nachdem, ob sich der Bruch
1759  in einer eingebetteten oder abgesetzten Formel befindet.
1760  Mit dem Mathe-Werkzeugleistenknopf 
1761 \begin_inset Graphics
1762         filename ../../images/math/frac-square.png
1763         scale 85
1764
1765 \end_inset
1766
1767  können verschieden Bruchtypen gewählt werden.
1768 \end_layout
1769
1770 \begin_layout Standard
1771 Mit dem Befehl 
1772 \series bold
1773
1774 \backslash
1775 dfrac
1776 \series default
1777
1778 \begin_inset Index idx
1779 status collapsed
1780
1781 \begin_layout Plain Layout
1782 Befehle ! D ! 
1783 \backslash
1784 dfrac
1785 \end_layout
1786
1787 \end_inset
1788
1789  kann man einen Bruch erzeugen, der immer in der Größe einer abgesetzten
1790  Formel erscheint.
1791  Mit 
1792 \series bold
1793
1794 \backslash
1795 tfrac
1796 \series default
1797
1798 \begin_inset Index idx
1799 status collapsed
1800
1801 \begin_layout Plain Layout
1802 Befehle ! T ! 
1803 \backslash
1804 tfrac
1805 \end_layout
1806
1807 \end_inset
1808
1809  erscheint der Bruch immer in der Größe einer eingebetteten Formel.
1810  Ein Beispiel:
1811 \end_layout
1812
1813 \begin_layout Standard
1814 Eine Zeile mit dem Bruch 
1815 \begin_inset Formula $\frac{1}{2}$
1816 \end_inset
1817
1818 , der mit dem Befehl 
1819 \series bold
1820
1821 \backslash
1822 frac
1823 \series default
1824  erstellt wurde.
1825 \end_layout
1826
1827 \begin_layout Standard
1828 Eine Zeile mit dem Bruch 
1829 \begin_inset Formula $\dfrac{1}{2}$
1830 \end_inset
1831
1832 , der mit dem Befehl 
1833 \series bold
1834
1835 \backslash
1836 dfrac
1837 \series default
1838  erstellt wurde.
1839 \end_layout
1840
1841 \begin_layout Standard
1842 \align center
1843 \begin_inset Tabular
1844 <lyxtabular version="3" rows="4" columns="2">
1845 <features tabularvalignment="middle">
1846 <column alignment="center" valignment="top" width="0pt">
1847 <column alignment="center" valignment="top" width="0pt">
1848 <row>
1849 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1850 \begin_inset Text
1851
1852 \begin_layout Plain Layout
1853 Befehl
1854 \end_layout
1855
1856 \end_inset
1857 </cell>
1858 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
1859 \begin_inset Text
1860
1861 \begin_layout Plain Layout
1862 Ergebnis
1863 \begin_inset Note Note
1864 status collapsed
1865
1866 \begin_layout Plain Layout
1867
1868 \series bold
1869
1870 \backslash
1871 raisebox
1872 \series default
1873  dient nur als Abstandhalter.
1874 \end_layout
1875
1876 \end_inset
1877
1878
1879 \end_layout
1880
1881 \end_inset
1882 </cell>
1883 </row>
1884 <row>
1885 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1886 \begin_inset Text
1887
1888 \begin_layout Plain Layout
1889
1890 \backslash
1891 frac
1892 \begin_inset ERT
1893 status collapsed
1894
1895 \begin_layout Plain Layout
1896
1897
1898 \backslash
1899 leer 
1900 \end_layout
1901
1902 \end_inset
1903
1904 A
1905 \begin_inset Formula $\downarrow$
1906 \end_inset
1907
1908 B
1909 \end_layout
1910
1911 \end_inset
1912 </cell>
1913 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1914 \begin_inset Text
1915
1916 \begin_layout Plain Layout
1917 \begin_inset Formula $\raisebox{4.5mm}{}\frac{A}{B}\raisebox{-2.5mm}{}$
1918 \end_inset
1919
1920
1921 \end_layout
1922
1923 \end_inset
1924 </cell>
1925 </row>
1926 <row>
1927 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1928 \begin_inset Text
1929
1930 \begin_layout Plain Layout
1931
1932 \backslash
1933 dfrac
1934 \begin_inset ERT
1935 status collapsed
1936
1937 \begin_layout Plain Layout
1938
1939
1940 \backslash
1941 leer 
1942 \end_layout
1943
1944 \end_inset
1945
1946 A
1947 \begin_inset Formula $\downarrow$
1948 \end_inset
1949
1950 B
1951 \end_layout
1952
1953 \end_inset
1954 </cell>
1955 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1956 \begin_inset Text
1957
1958 \begin_layout Plain Layout
1959 \begin_inset Formula $\raisebox{7mm}{}\dfrac{A}{B}\raisebox{-4mm}{}$
1960 \end_inset
1961
1962
1963 \end_layout
1964
1965 \end_inset
1966 </cell>
1967 </row>
1968 <row>
1969 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1970 \begin_inset Text
1971
1972 \begin_layout Plain Layout
1973
1974 \backslash
1975 dfrac
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 e^
1989 \backslash
1990 frac
1991 \begin_inset ERT
1992 status collapsed
1993
1994 \begin_layout Plain Layout
1995
1996
1997 \backslash
1998 leer 
1999 \end_layout
2000
2001 \end_inset
2002
2003 1
2004 \begin_inset Formula $\downarrow$
2005 \end_inset
2006
2007 2
2008 \begin_inset Formula $\downarrow\downarrow$
2009 \end_inset
2010
2011 3
2012 \end_layout
2013
2014 \end_inset
2015 </cell>
2016 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2017 \begin_inset Text
2018
2019 \begin_layout Plain Layout
2020 \begin_inset Formula $\raisebox{8mm}{}\dfrac{e^{\frac{1}{2}}}{3}\raisebox{-4mm}{}$
2021 \end_inset
2022
2023
2024 \end_layout
2025
2026 \end_inset
2027 </cell>
2028 </row>
2029 </lyxtabular>
2030
2031 \end_inset
2032
2033
2034 \end_layout
2035
2036 \begin_layout Standard
2037 \begin_inset VSpace bigskip
2038 \end_inset
2039
2040
2041 \begin_inset Newpage newpage
2042 \end_inset
2043
2044 Für Mehrfachbrüche gibt es den Befehl 
2045 \series bold
2046
2047 \backslash
2048 cfrac
2049 \series default
2050
2051 \begin_inset Index idx
2052 status collapsed
2053
2054 \begin_layout Plain Layout
2055 Befehle ! C ! 
2056 \backslash
2057 cfrac
2058 \end_layout
2059
2060 \end_inset
2061
2062 .
2063  Dazu ein Beispiel:
2064 \begin_inset VSpace -3mm
2065 \end_inset
2066
2067
2068 \end_layout
2069
2070 \begin_layout Standard
2071 \begin_inset Formula 
2072 \begin{align*}
2073 \textrm{mit \textbf{\textbackslash frac} erstellt} &  & \textrm{mit \textbf{\textbackslash cfrac} erstellt}\\
2074 \frac{A}{B+\frac{C+\frac{E}{F}}{D}} &  & \cfrac{A}{B+\cfrac{C+\cfrac{E}{F}}{D}}
2075 \end{align*}
2076
2077 \end_inset
2078
2079
2080 \end_layout
2081
2082 \begin_layout Standard
2083 Der Befehl für obiges Beispiel lautet:
2084 \end_layout
2085
2086 \begin_layout Standard
2087
2088 \series bold
2089
2090 \backslash
2091 cfrac
2092 \begin_inset ERT
2093 status collapsed
2094
2095 \begin_layout Plain Layout
2096
2097
2098 \backslash
2099 leer 
2100 \end_layout
2101
2102 \end_inset
2103
2104 A
2105 \begin_inset Formula $\downarrow$
2106 \end_inset
2107
2108 B+
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 C+
2124 \backslash
2125 cfrac
2126 \begin_inset ERT
2127 status collapsed
2128
2129 \begin_layout Plain Layout
2130
2131
2132 \backslash
2133 leer 
2134 \end_layout
2135
2136 \end_inset
2137
2138 E
2139 \begin_inset Formula $\downarrow$
2140 \end_inset
2141
2142 F
2143 \begin_inset Formula $\downarrow$
2144 \end_inset
2145
2146 D
2147 \end_layout
2148
2149 \begin_layout Standard
2150 \begin_inset VSpace medskip
2151 \end_inset
2152
2153
2154 \end_layout
2155
2156 \begin_layout Standard
2157
2158 \series bold
2159
2160 \backslash
2161 cfrac
2162 \series default
2163  bewirkt, dass der Bruch immer in der Größe einer abgesetzten Formel erscheint,
2164  auch wenn er selbst Teil eines Bruches ist.
2165 \end_layout
2166
2167 \begin_layout Standard
2168 Es ist möglich die Ausrichtung des Zählers einzustellen.
2169  Der Befehl 
2170 \series bold
2171
2172 \backslash
2173 cfracleft
2174 \series default
2175  richtet ihn links, der Befehl 
2176 \series bold
2177
2178 \backslash
2179 cfracright
2180 \series default
2181  rechts aus.
2182  
2183 \series bold
2184
2185 \backslash
2186 cfrac
2187 \series default
2188  zentriert den Zähler.
2189  Diese Brüche demonstrieren die verschiedenen Ausrichtungen:
2190 \end_layout
2191
2192 \begin_layout Standard
2193
2194 \series bold
2195 \begin_inset Formula 
2196 \[
2197 \cfrac[l]{A}{B+C}\,,\,\cfrac{A}{B+C}\,,\,\cfrac[r]{A}{B+C}
2198 \]
2199
2200 \end_inset
2201
2202
2203 \end_layout
2204
2205 \begin_layout Standard
2206 \begin_inset Note Greyedout
2207 status open
2208
2209 \begin_layout Plain Layout
2210
2211 \series bold
2212 Achtung:
2213 \series default
2214  
2215 \series bold
2216
2217 \backslash
2218 cfracleft
2219 \series default
2220  und
2221 \series bold
2222  
2223 \backslash
2224 cfracright
2225 \series default
2226  sind keine echten LaTeX-Befehle, sondern stellen den Befehl 
2227 \series bold
2228
2229 \backslash
2230 cfrac[Ausrichtung]{Zähler}{Nenner}
2231 \series default
2232  dar.
2233  Daher kann man sie nicht im TeX-Code benutzen.
2234 \end_layout
2235
2236 \end_inset
2237
2238
2239 \end_layout
2240
2241 \begin_layout Standard
2242 \begin_inset VSpace medskip
2243 \end_inset
2244
2245 Oftmals ist es am günstigsten 
2246 \series bold
2247
2248 \backslash
2249 cfrac
2250 \series default
2251  und 
2252 \series bold
2253
2254 \backslash
2255 frac
2256 \series default
2257  zu kombinieren:
2258 \begin_inset Formula 
2259 \[
2260 \cfrac{A}{B+\cfrac{C+\frac{E}{F}}{D}}
2261 \]
2262
2263 \end_inset
2264
2265
2266 \end_layout
2267
2268 \begin_layout Standard
2269 Um Brüche mit schrägem Bruchstrich zu erzeugen, kann der Befehl 
2270 \series bold
2271
2272 \backslash
2273 nicefrac
2274 \series default
2275
2276 \begin_inset Index idx
2277 status collapsed
2278
2279 \begin_layout Plain Layout
2280 Befehle ! N ! 
2281 \backslash
2282 nicefrac
2283 \end_layout
2284
2285 \end_inset
2286
2287
2288 \begin_inset Formula $\nicefrac{5}{31}$
2289 \end_inset
2290
2291  oder 
2292 \series bold
2293
2294 \backslash
2295 unitfrac
2296 \series default
2297
2298 \begin_inset Index idx
2299 status collapsed
2300
2301 \begin_layout Plain Layout
2302 Befehle! U ! 
2303 \backslash
2304 unitfrac
2305 \end_layout
2306
2307 \end_inset
2308
2309
2310 \begin_inset Formula $\unitfrac{5}{31}$
2311 \end_inset
2312
2313  benutzt werden.
2314  Des Weiteren gibt es den Befehl 
2315 \series bold
2316
2317 \backslash
2318 unitfracthree
2319 \series default
2320  mit dem man einen Bruch in Kombination mit einer Zahl setzen kann: 
2321 \begin_inset Formula $\unitfrac[2]{1}{3}$
2322 \end_inset
2323
2324
2325 \end_layout
2326
2327 \begin_layout Standard
2328 \begin_inset Note Greyedout
2329 status open
2330
2331 \begin_layout Plain Layout
2332
2333 \series bold
2334 Achtung:
2335 \series default
2336  
2337 \series bold
2338
2339 \backslash
2340 unitfracthree
2341 \series default
2342  ist kein echter LaTeX-Befehl, sondern der Befehl
2343 \begin_inset Newline newline
2344 \end_inset
2345
2346
2347 \series bold
2348
2349 \backslash
2350 unitfrac[Zahl]{Zähler}{Nenner}
2351 \series default
2352  .
2353  Daher kann man ihn nicht im TeX-Code benutzen.
2354 \end_layout
2355
2356 \end_inset
2357
2358
2359 \end_layout
2360
2361 \begin_layout Standard
2362 Wie man eigene Brüche definiert, um die Bruchstrichdicke zu ändern, ist
2363  in 
2364 \begin_inset CommandInset ref
2365 LatexCommand ref
2366 reference "sub:Selbstdefinierte-Brüche"
2367
2368 \end_inset
2369
2370  erklärt.
2371 \end_layout
2372
2373 \begin_layout Standard
2374 \begin_inset Newpage newpage
2375 \end_inset
2376
2377
2378 \end_layout
2379
2380 \begin_layout Subsection
2381 Wurzeln
2382 \begin_inset Index idx
2383 status collapsed
2384
2385 \begin_layout Plain Layout
2386 Wurzeln
2387 \end_layout
2388
2389 \end_inset
2390
2391
2392 \end_layout
2393
2394 \begin_layout Standard
2395 Quadratwurzeln werden mit 
2396 \series bold
2397
2398 \backslash
2399 sqrt
2400 \series default
2401
2402 \begin_inset Index idx
2403 status collapsed
2404
2405 \begin_layout Plain Layout
2406 Befehle ! S ! 
2407 \backslash
2408 sqrt
2409 \end_layout
2410
2411 \end_inset
2412
2413  oder dem Mathe-Werkzeugleistenknopf 
2414 \begin_inset Graphics
2415         filename ../../images/math/sqrt.png
2416         scale 85
2417
2418 \end_inset
2419
2420  gesetzt, alle anderen Wurzeln mit dem Befehl 
2421 \series bold
2422
2423 \backslash
2424 root
2425 \series default
2426
2427 \begin_inset Index idx
2428 status collapsed
2429
2430 \begin_layout Plain Layout
2431 Befehle ! R ! 
2432 \backslash
2433 root
2434 \end_layout
2435
2436 \end_inset
2437
2438  oder dem Mathe-Werkzeugleistenknopf 
2439 \begin_inset Graphics
2440         filename ../../images/math/root.png
2441         scale 85
2442
2443 \end_inset
2444
2445 .
2446 \end_layout
2447
2448 \begin_layout Standard
2449 \align center
2450 \begin_inset Tabular
2451 <lyxtabular version="3" rows="3" columns="2">
2452 <features tabularvalignment="middle">
2453 <column alignment="center" valignment="top" width="0pt">
2454 <column alignment="center" valignment="top" width="0pt">
2455 <row>
2456 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
2457 \begin_inset Text
2458
2459 \begin_layout Plain Layout
2460 Befehl
2461 \end_layout
2462
2463 \end_inset
2464 </cell>
2465 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2466 \begin_inset Text
2467
2468 \begin_layout Plain Layout
2469 Ergebnis
2470 \begin_inset Note Note
2471 status collapsed
2472
2473 \begin_layout Plain Layout
2474
2475 \series bold
2476
2477 \backslash
2478 raisebox
2479 \series default
2480  dient nur als Abstandhalter.
2481 \end_layout
2482
2483 \end_inset
2484
2485
2486 \end_layout
2487
2488 \end_inset
2489 </cell>
2490 </row>
2491 <row>
2492 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
2493 \begin_inset Text
2494
2495 \begin_layout Plain Layout
2496
2497 \backslash
2498 sqrt
2499 \begin_inset ERT
2500 status collapsed
2501
2502 \begin_layout Plain Layout
2503
2504
2505 \backslash
2506 leer 
2507 \end_layout
2508
2509 \end_inset
2510
2511 A-B
2512 \end_layout
2513
2514 \end_inset
2515 </cell>
2516 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2517 \begin_inset Text
2518
2519 \begin_layout Plain Layout
2520 \begin_inset Formula $\raisebox{4.5mm}{}\sqrt{A-B}$
2521 \end_inset
2522
2523
2524 \end_layout
2525
2526 \end_inset
2527 </cell>
2528 </row>
2529 <row>
2530 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
2531 \begin_inset Text
2532
2533 \begin_layout Plain Layout
2534
2535 \backslash
2536 root
2537 \begin_inset ERT
2538 status collapsed
2539
2540 \begin_layout Plain Layout
2541
2542
2543 \backslash
2544 leer 
2545 \end_layout
2546
2547 \end_inset
2548
2549 3
2550 \begin_inset Formula $\downarrow$
2551 \end_inset
2552
2553 A-B
2554 \end_layout
2555
2556 \end_inset
2557 </cell>
2558 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
2559 \begin_inset Text
2560
2561 \begin_layout Plain Layout
2562 \begin_inset Formula $\raisebox{4.5mm}{}\sqrt[3]{A-B}$
2563 \end_inset
2564
2565
2566 \end_layout
2567
2568 \end_inset
2569 </cell>
2570 </row>
2571 </lyxtabular>
2572
2573 \end_inset
2574
2575
2576 \end_layout
2577
2578 \begin_layout Standard
2579 Eine Quadratwurzel kann man auch mit 
2580 \series bold
2581
2582 \backslash
2583 root
2584 \series default
2585  erstellen, indem man das Feld über der Wurzel frei lässt.
2586 \end_layout
2587
2588 \begin_layout Standard
2589 Bei manchen Indizes ist der Abstand zur Wurzel zu gering, wie bei dieser
2590  Formel: 
2591 \begin_inset Formula $\sqrt[\beta]{B}$
2592 \end_inset
2593
2594
2595 \begin_inset Newline newline
2596 \end_inset
2597
2598 Das 
2599 \begin_inset Formula $\beta$
2600 \end_inset
2601
2602  berührt die Wurzel.
2603  Um dies zu verhindern, verwendet man die Befehle 
2604 \series bold
2605
2606 \backslash
2607 leftroot
2608 \series default
2609
2610 \begin_inset Index idx
2611 status collapsed
2612
2613 \begin_layout Plain Layout
2614 Befehle ! L ! 
2615 \backslash
2616 leftroot
2617 \end_layout
2618
2619 \end_inset
2620
2621  und 
2622 \series bold
2623
2624 \backslash
2625 uproot
2626 \series default
2627
2628 \begin_inset Index idx
2629 status collapsed
2630
2631 \begin_layout Plain Layout
2632 Befehle ! U ! 
2633 \backslash
2634 uproot
2635 \end_layout
2636
2637 \end_inset
2638
2639 , die folgendes Schema besitzen:
2640 \end_layout
2641
2642 \begin_layout Standard
2643
2644 \series bold
2645
2646 \backslash
2647 leftroot{Abstand}
2648 \series default
2649  bzw.
2650 \begin_inset space \space{}
2651 \end_inset
2652
2653
2654 \series bold
2655
2656 \backslash
2657 uproot{Abstand}
2658 \end_layout
2659
2660 \begin_layout Standard
2661 Abstand ist die Anzahl der Big Points (Einheit bp; 
2662 \begin_inset Formula $\mathrm{72\, bp=1\, inch}$
2663 \end_inset
2664
2665 ), um die der Index nach links bzw.
2666 \begin_inset space \space{}
2667 \end_inset
2668
2669 nach oben verschoben werden soll.
2670  Die Befehle werden in den Index geschrieben.
2671  So ergibt der Befehl
2672 \begin_inset Newline newline
2673 \end_inset
2674
2675
2676 \series bold
2677
2678 \backslash
2679 root
2680 \backslash
2681 leftroot{-1
2682 \begin_inset Formula $\to$
2683 \end_inset
2684
2685
2686 \backslash
2687 uproot{2
2688 \begin_inset Formula $\to$
2689 \end_inset
2690
2691
2692 \backslash
2693 beta
2694 \begin_inset ERT
2695 status collapsed
2696
2697 \begin_layout Plain Layout
2698
2699
2700 \backslash
2701 leer 
2702 \end_layout
2703
2704 \end_inset
2705
2706
2707 \begin_inset Formula $\to$
2708 \end_inset
2709
2710 B
2711 \begin_inset Newline newline
2712 \end_inset
2713
2714
2715 \series default
2716 eine korrekt gesetzte Formel: 
2717 \begin_inset Formula $\sqrt[\leftroot{-1}\uproot{2}\beta]{B}$
2718 \end_inset
2719
2720
2721 \end_layout
2722
2723 \begin_layout Subsection
2724 Binomialkoeffizienten
2725 \begin_inset Index idx
2726 status collapsed
2727
2728 \begin_layout Plain Layout
2729 Binomialkoeffizienten
2730 \end_layout
2731
2732 \end_inset
2733
2734
2735 \end_layout
2736
2737 \begin_layout Standard
2738 Binomialkoeffizienten können mit dem Befehl 
2739 \series bold
2740
2741 \backslash
2742 binom
2743 \series default
2744
2745 \begin_inset Index idx
2746 status collapsed
2747
2748 \begin_layout Plain Layout
2749 Befehle ! B ! 
2750 \backslash
2751 binom
2752 \end_layout
2753
2754 \end_inset
2755
2756  oder über das Untermenü des Mathe-Werkzeugleistenknopfs 
2757 \begin_inset Graphics
2758         filename ../../images/math/frac-square.png
2759         scale 85
2760
2761 \end_inset
2762
2763 eingefügt werden.
2764  Analog zu Brüchen (
2765 \series bold
2766
2767 \backslash
2768 frac
2769 \series default
2770 ) gibt es außer 
2771 \series bold
2772
2773 \backslash
2774 binom
2775 \series default
2776  noch die Befehle 
2777 \series bold
2778
2779 \backslash
2780 dbinom
2781 \series default
2782
2783 \begin_inset Index idx
2784 status collapsed
2785
2786 \begin_layout Plain Layout
2787 Befehle ! D ! 
2788 \backslash
2789 dbinom
2790 \end_layout
2791
2792 \end_inset
2793
2794  und 
2795 \series bold
2796
2797 \backslash
2798 tbinom
2799 \series default
2800
2801 \begin_inset Index idx
2802 status collapsed
2803
2804 \begin_layout Plain Layout
2805 Befehle ! T ! 
2806 \backslash
2807 tbinom
2808 \end_layout
2809
2810 \end_inset
2811
2812 .
2813  Für andere Klammern um Binomialkoeffizienten gibt es die Befehle 
2814 \series bold
2815
2816 \backslash
2817 brace
2818 \series default
2819
2820 \begin_inset Index idx
2821 status collapsed
2822
2823 \begin_layout Plain Layout
2824 Befehle ! B ! 
2825 \backslash
2826 brace
2827 \end_layout
2828
2829 \end_inset
2830
2831  und 
2832 \series bold
2833
2834 \backslash
2835 brack
2836 \series default
2837
2838 \begin_inset Index idx
2839 status collapsed
2840
2841 \begin_layout Plain Layout
2842 Befehle ! B ! 
2843 \backslash
2844 brack
2845 \end_layout
2846
2847 \end_inset
2848
2849 .
2850 \end_layout
2851
2852 \begin_layout Standard
2853 \align center
2854 \begin_inset Tabular
2855 <lyxtabular version="3" rows="6" columns="2">
2856 <features tabularvalignment="middle">
2857 <column alignment="center" valignment="top" width="0pt">
2858 <column alignment="center" valignment="top" width="0pt">
2859 <row>
2860 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2861 \begin_inset Text
2862
2863 \begin_layout Plain Layout
2864 Befehl
2865 \end_layout
2866
2867 \end_inset
2868 </cell>
2869 <cell alignment="center" valignment="top" topline="true" bottomline="true" rightline="true" usebox="none">
2870 \begin_inset Text
2871
2872 \begin_layout Plain Layout
2873 Ergebnis
2874 \begin_inset Note Note
2875 status collapsed
2876
2877 \begin_layout Plain Layout
2878
2879 \series bold
2880
2881 \backslash
2882 raisebox
2883 \series default
2884  dient nur als Abstandhalter.
2885 \end_layout
2886
2887 \end_inset
2888
2889
2890 \end_layout
2891
2892 \end_inset
2893 </cell>
2894 </row>
2895 <row>
2896 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
2897 \begin_inset Text
2898
2899 \begin_layout Plain Layout
2900
2901 \backslash
2902 binom
2903 \begin_inset ERT
2904 status collapsed
2905
2906 \begin_layout Plain Layout
2907
2908
2909 \backslash
2910 leer 
2911 \end_layout
2912
2913 \end_inset
2914
2915 A
2916 \begin_inset Formula $\downarrow$
2917 \end_inset
2918
2919 B
2920 \end_layout
2921
2922 \end_inset
2923 </cell>
2924 <cell alignment="center" valignment="top" bottomline="true" rightline="true" usebox="none">
2925 \begin_inset Text
2926
2927 \begin_layout Plain Layout
2928 \begin_inset Formula $\raisebox{5mm}{}\binom{A}{B}\raisebox{-2.5mm}{}$
2929 \end_inset
2930
2931
2932 \end_layout
2933
2934 \end_inset
2935 </cell>
2936 </row>
2937 <row>
2938 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
2939 \begin_inset Text
2940
2941 \begin_layout Plain Layout
2942
2943 \backslash
2944 dbinom
2945 \begin_inset ERT
2946 status collapsed
2947
2948 \begin_layout Plain Layout
2949
2950
2951 \backslash
2952 leer 
2953 \end_layout
2954
2955 \end_inset
2956
2957 A
2958 \begin_inset Formula $\downarrow$
2959 \end_inset
2960
2961 B
2962 \end_layout
2963
2964 \end_inset
2965 </cell>
2966 <cell alignment="center" valignment="top" bottomline="true" rightline="true" usebox="none">
2967 \begin_inset Text
2968
2969 \begin_layout Plain Layout
2970 \begin_inset Formula $\raisebox{5mm}{}\dbinom{A}{B}\raisebox{-2.5mm}{}$
2971 \end_inset
2972
2973
2974 \end_layout
2975
2976 \end_inset
2977 </cell>
2978 </row>
2979 <row>
2980 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
2981 \begin_inset Text
2982
2983 \begin_layout Plain Layout
2984
2985 \backslash
2986 tbinom
2987 \begin_inset ERT
2988 status collapsed
2989
2990 \begin_layout Plain Layout
2991
2992
2993 \backslash
2994 leer 
2995 \end_layout
2996
2997 \end_inset
2998
2999 A
3000 \begin_inset Formula $\downarrow$
3001 \end_inset
3002
3003 B
3004 \end_layout
3005
3006 \end_inset
3007 </cell>
3008 <cell alignment="center" valignment="top" bottomline="true" rightline="true" usebox="none">
3009 \begin_inset Text
3010
3011 \begin_layout Plain Layout
3012 \begin_inset Formula $\raisebox{5mm}{}\tbinom{A}{B}\raisebox{-2.5mm}{}$
3013 \end_inset
3014
3015
3016 \end_layout
3017
3018 \end_inset
3019 </cell>
3020 </row>
3021 <row>
3022 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
3023 \begin_inset Text
3024
3025 \begin_layout Plain Layout
3026
3027 \backslash
3028 brack
3029 \begin_inset ERT
3030 status collapsed
3031
3032 \begin_layout Plain Layout
3033
3034
3035 \backslash
3036 leer 
3037 \end_layout
3038
3039 \end_inset
3040
3041 A
3042 \begin_inset Formula $\downarrow$
3043 \end_inset
3044
3045 B
3046 \end_layout
3047
3048 \end_inset
3049 </cell>
3050 <cell alignment="center" valignment="top" topline="true" bottomline="true" rightline="true" usebox="none">
3051 \begin_inset Text
3052
3053 \begin_layout Plain Layout
3054 \begin_inset Formula $\raisebox{5mm}{}{A \brack B}\raisebox{-2.5mm}{}$
3055 \end_inset
3056
3057
3058 \end_layout
3059
3060 \end_inset
3061 </cell>
3062 </row>
3063 <row>
3064 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
3065 \begin_inset Text
3066
3067 \begin_layout Plain Layout
3068
3069 \backslash
3070 brace
3071 \begin_inset ERT
3072 status collapsed
3073
3074 \begin_layout Plain Layout
3075
3076
3077 \backslash
3078 leer 
3079 \end_layout
3080
3081 \end_inset
3082
3083 A
3084 \begin_inset Formula $\downarrow$
3085 \end_inset
3086
3087 B
3088 \end_layout
3089
3090 \end_inset
3091 </cell>
3092 <cell alignment="center" valignment="top" bottomline="true" rightline="true" usebox="none">
3093 \begin_inset Text
3094
3095 \begin_layout Plain Layout
3096 \begin_inset Formula $\raisebox{5mm}{}{A \brace B}\raisebox{-2.5mm}{}$
3097 \end_inset
3098
3099
3100 \end_layout
3101
3102 \end_inset
3103 </cell>
3104 </row>
3105 </lyxtabular>
3106
3107 \end_inset
3108
3109
3110 \end_layout
3111
3112 \begin_layout Subsection
3113 Fallunterscheidungen
3114 \begin_inset Index idx
3115 status collapsed
3116
3117 \begin_layout Plain Layout
3118 Fallunterscheidungen
3119 \end_layout
3120
3121 \end_inset
3122
3123
3124 \end_layout
3125
3126 \begin_layout Standard
3127 \align center
3128 \begin_inset Tabular
3129 <lyxtabular version="3" rows="3" columns="2">
3130 <features tabularvalignment="middle">
3131 <column alignment="center" valignment="top" width="0pt">
3132 <column alignment="center" valignment="top" width="0pt">
3133 <row>
3134 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
3135 \begin_inset Text
3136
3137 \begin_layout Plain Layout
3138 Befehl
3139 \end_layout
3140
3141 \end_inset
3142 </cell>
3143 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
3144 \begin_inset Text
3145
3146 \begin_layout Plain Layout
3147 Ergebnis
3148 \end_layout
3149
3150 \end_inset
3151 </cell>
3152 </row>
3153 <row>
3154 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3155 \begin_inset Text
3156
3157 \begin_layout Plain Layout
3158
3159 \backslash
3160 cases
3161 \begin_inset ERT
3162 status collapsed
3163
3164 \begin_layout Plain Layout
3165
3166
3167 \backslash
3168 leer 
3169 \end_layout
3170
3171 \end_inset
3172
3173 A
3174 \begin_inset Formula $\to$
3175 \end_inset
3176
3177 B>0
3178 \begin_inset Index idx
3179 status collapsed
3180
3181 \begin_layout Plain Layout
3182 Befehle ! C ! 
3183 \backslash
3184 cases
3185 \end_layout
3186
3187 \end_inset
3188
3189
3190 \end_layout
3191
3192 \end_inset
3193 </cell>
3194 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3195 \begin_inset Text
3196
3197 \begin_layout Plain Layout
3198 \begin_inset Formula $\begin{cases}
3199 A & B>0\end{cases}$
3200 \end_inset
3201
3202
3203 \end_layout
3204
3205 \end_inset
3206 </cell>
3207 </row>
3208 <row>
3209 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
3210 \begin_inset Text
3211
3212 \begin_layout Plain Layout
3213
3214 \backslash
3215 cases
3216 \begin_inset ERT
3217 status collapsed
3218
3219 \begin_layout Plain Layout
3220
3221
3222 \backslash
3223 leer 
3224 \end_layout
3225
3226 \end_inset
3227
3228 Strg+Enter
3229 \end_layout
3230
3231 \end_inset
3232 </cell>
3233 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
3234 \begin_inset Text
3235
3236 \begin_layout Plain Layout
3237 \begin_inset Formula $\begin{cases}
3238 A & \textrm{für }x>0\\
3239 B & \textrm{für }x=0
3240 \end{cases}$
3241 \end_inset
3242
3243
3244 \end_layout
3245
3246 \end_inset
3247 </cell>
3248 </row>
3249 </lyxtabular>
3250
3251 \end_inset
3252
3253
3254 \end_layout
3255
3256 \begin_layout Standard
3257 Nach der Eingabe von 
3258 \series bold
3259
3260 \backslash
3261 cases
3262 \series default
3263  oder der Benutzung des Mathe-Werkzeugleistenknopfs 
3264 \begin_inset Graphics
3265         filename ../../images/math/cases.png
3266         scale 85
3267
3268 \end_inset
3269
3270  können mit 
3271 \family sans
3272 Strg+Enter
3273 \family default
3274  oder dem Tabellen-Werkzeugleistenknopf 
3275 \begin_inset Graphics
3276         filename ../../images/tabular-feature_append-row.png
3277         scale 85
3278
3279 \end_inset
3280
3281  neue Zeilen erstellt werden.
3282 \begin_inset Foot
3283 status collapsed
3284
3285 \begin_layout Plain Layout
3286 Umlaute in Formeln, wie in obiger Tabelle, sind in 
3287 \begin_inset CommandInset ref
3288 LatexCommand ref
3289 reference "sub:Akzente-für-ein"
3290
3291 \end_inset
3292
3293  beschrieben.
3294 \end_layout
3295
3296 \end_inset
3297
3298
3299 \end_layout
3300
3301 \begin_layout Standard
3302 Der Befehl 
3303 \series bold
3304
3305 \backslash
3306 cases
3307 \series default
3308  ist auch über das Menü 
3309 \family sans
3310 Einfügen\SpecialChar \menuseparator
3311 Mathe\SpecialChar \menuseparator
3312 Cases-Umgebung
3313 \family default
3314  verfügbar.
3315 \end_layout
3316
3317 \begin_layout Subsection
3318 Verneinungen
3319 \begin_inset Index idx
3320 status collapsed
3321
3322 \begin_layout Plain Layout
3323 Verneinungen
3324 \end_layout
3325
3326 \end_inset
3327
3328
3329 \end_layout
3330
3331 \begin_layout Standard
3332 Durch die Eingabe von 
3333 \series bold
3334
3335 \backslash
3336 not
3337 \series default
3338
3339 \begin_inset Index idx
3340 status collapsed
3341
3342 \begin_layout Plain Layout
3343 Befehle ! N ! 
3344 \backslash
3345 not
3346 \end_layout
3347
3348 \end_inset
3349
3350  kann jedes beliebige Zeichen durchgestrichen dargestellt werden.
3351  Die Zeichen werden quasi mit einem Schrägstrich akzentuiert.
3352 \end_layout
3353
3354 \begin_layout Standard
3355 \align center
3356 \begin_inset Tabular
3357 <lyxtabular version="3" rows="4" columns="2">
3358 <features tabularvalignment="middle">
3359 <column alignment="center" valignment="top" width="0pt">
3360 <column alignment="center" valignment="top" width="0pt">
3361 <row>
3362 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
3363 \begin_inset Text
3364
3365 \begin_layout Plain Layout
3366 Befehl
3367 \end_layout
3368
3369 \end_inset
3370 </cell>
3371 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
3372 \begin_inset Text
3373
3374 \begin_layout Plain Layout
3375 Ergebnis
3376 \end_layout
3377
3378 \end_inset
3379 </cell>
3380 </row>
3381 <row>
3382 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3383 \begin_inset Text
3384
3385 \begin_layout Plain Layout
3386
3387 \backslash
3388 not=
3389 \end_layout
3390
3391 \end_inset
3392 </cell>
3393 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3394 \begin_inset Text
3395
3396 \begin_layout Plain Layout
3397 \begin_inset Formula $\not=$
3398 \end_inset
3399
3400
3401 \end_layout
3402
3403 \end_inset
3404 </cell>
3405 </row>
3406 <row>
3407 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
3408 \begin_inset Text
3409
3410 \begin_layout Plain Layout
3411
3412 \backslash
3413 not 
3414 \backslash
3415 le
3416 \end_layout
3417
3418 \end_inset
3419 </cell>
3420 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
3421 \begin_inset Text
3422
3423 \begin_layout Plain Layout
3424 \begin_inset Formula $\not\le$
3425 \end_inset
3426
3427
3428 \end_layout
3429
3430 \end_inset
3431 </cell>
3432 </row>
3433 <row>
3434 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
3435 \begin_inset Text
3436
3437 \begin_layout Plain Layout
3438
3439 \backslash
3440 not 
3441 \backslash
3442 parallel
3443 \end_layout
3444
3445 \end_inset
3446 </cell>
3447 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
3448 \begin_inset Text
3449
3450 \begin_layout Plain Layout
3451 \begin_inset Formula $\not\parallel$
3452 \end_inset
3453
3454
3455 \end_layout
3456
3457 \end_inset
3458 </cell>
3459 </row>
3460 </lyxtabular>
3461
3462 \end_inset
3463
3464
3465 \end_layout
3466
3467 \begin_layout Standard
3468 Das letzte Beispiel zeigt, dass nicht alle Verneinungen gut aussehen.
3469  Deswegen gibt es für Einige spezielle Befehle (siehe 
3470 \begin_inset CommandInset ref
3471 LatexCommand ref
3472 reference "sub:Mathematische-Symbole"
3473
3474 \end_inset
3475
3476  und 
3477 \begin_inset CommandInset ref
3478 LatexCommand ref
3479 reference "sec:Relationen"
3480
3481 \end_inset
3482
3483 ).
3484 \end_layout
3485
3486 \begin_layout Subsection
3487 Platzhalter
3488 \begin_inset CommandInset label
3489 LatexCommand label
3490 name "sub:Platzhalter"
3491
3492 \end_inset
3493
3494
3495 \begin_inset Index idx
3496 status collapsed
3497
3498 \begin_layout Plain Layout
3499 Platzhalter
3500 \end_layout
3501
3502 \end_inset
3503
3504
3505 \begin_inset Index idx
3506 status collapsed
3507
3508 \begin_layout Plain Layout
3509 chemische Zeichen ! Isotope
3510 \end_layout
3511
3512 \end_inset
3513
3514
3515 \begin_inset Index idx
3516 status collapsed
3517
3518 \begin_layout Plain Layout
3519 Isotope|see
3520 \begin_inset ERT
3521 status collapsed
3522
3523 \begin_layout Plain Layout
3524
3525 {
3526 \end_layout
3527
3528 \end_inset
3529
3530 chemische Zeichen
3531 \begin_inset ERT
3532 status collapsed
3533
3534 \begin_layout Plain Layout
3535
3536 }
3537 \end_layout
3538
3539 \end_inset
3540
3541
3542 \end_layout
3543
3544 \end_inset
3545
3546
3547 \end_layout
3548
3549 \begin_layout Standard
3550 Möchte man z.
3551 \begin_inset space \thinspace{}
3552 \end_inset
3553
3554 B.
3555  Isotope
3556 \begin_inset Foot
3557 status collapsed
3558
3559 \begin_layout Plain Layout
3560 Wie Isotope und chemische Reaktionen erstellt werden, ist in 
3561 \begin_inset CommandInset ref
3562 LatexCommand ref
3563 reference "sub:Chemische-Symbole-und"
3564
3565 \end_inset
3566
3567  beschrieben.
3568 \end_layout
3569
3570 \end_inset
3571
3572  darstellen, tritt folgendes Problem auf:
3573 \end_layout
3574
3575 \begin_layout Standard
3576 \align center
3577 \begin_inset Tabular
3578 <lyxtabular version="3" rows="2" columns="2">
3579 <features tabularvalignment="middle">
3580 <column alignment="center" valignment="top" width="0pt">
3581 <column alignment="center" valignment="top" width="0pt">
3582 <row>
3583 <cell alignment="center" valignment="top" usebox="none">
3584 \begin_inset Text
3585
3586 \begin_layout Plain Layout
3587 durch Hoch- und Tiefstellen erzeugte Indizes:
3588 \end_layout
3589
3590 \end_inset
3591 </cell>
3592 <cell alignment="center" valignment="top" usebox="none">
3593 \begin_inset Text
3594
3595 \begin_layout Plain Layout
3596 \begin_inset Formula $_{9}^{19}\mathrm{F}\raisebox{-3mm}{}$
3597 \end_inset
3598
3599
3600 \end_layout
3601
3602 \end_inset
3603 </cell>
3604 </row>
3605 <row>
3606 <cell alignment="center" valignment="top" usebox="none">
3607 \begin_inset Text
3608
3609 \begin_layout Plain Layout
3610 korrekte Indizes:
3611 \end_layout
3612
3613 \end_inset
3614 </cell>
3615 <cell alignment="center" valignment="top" usebox="none">
3616 \begin_inset Text
3617
3618 \begin_layout Plain Layout
3619 \begin_inset Formula $_{\phantom{1}9}^{19}\mathrm{F}$
3620 \end_inset
3621
3622
3623 \end_layout
3624
3625 \end_inset
3626 </cell>
3627 </row>
3628 </lyxtabular>
3629
3630 \end_inset
3631
3632
3633 \begin_inset Note Note
3634 status collapsed
3635
3636 \begin_layout Plain Layout
3637
3638 \series bold
3639
3640 \backslash
3641 raisebox
3642 \series default
3643  dient nur
3644 \end_layout
3645
3646 \begin_layout Plain Layout
3647 als Abstandhalter.
3648 \end_layout
3649
3650 \end_inset
3651
3652
3653 \end_layout
3654
3655 \begin_layout Standard
3656 Der kürzere Index wird standardmäßig unter oder über das erste Zeichen des
3657  längeren Index gesetzt.
3658  Um das zu verhindern gibt es den Befehl 
3659 \series bold
3660
3661 \backslash
3662 phantom
3663 \series default
3664
3665 \begin_inset Index idx
3666 status collapsed
3667
3668 \begin_layout Plain Layout
3669 Befehle ! P ! 
3670 \backslash
3671 phantom
3672 \end_layout
3673
3674 \end_inset
3675
3676  oder den Mathe-Werkzeugleistenknopf
3677 \begin_inset space \thinspace{}
3678 \end_inset
3679
3680
3681 \begin_inset Foot
3682 status collapsed
3683
3684 \begin_layout Plain Layout
3685 zu finden im Untermenü des Mathe-Werkzeugleistenknopfs 
3686 \begin_inset Graphics
3687         filename ../../images/math/space.png
3688         scale 85
3689
3690 \end_inset
3691
3692
3693 \end_layout
3694
3695 \end_inset
3696
3697  
3698 \begin_inset Graphics
3699         filename ../../images/math/phantom.png
3700         scale 85
3701
3702 \end_inset
3703
3704 , der ein oder mehrere Phantomzeichen erstellt.
3705  Wenn 
3706 \series bold
3707
3708 \backslash
3709 phantom
3710 \series default
3711  eingegeben wird, erscheint ein kleines blaues Kästchen, dass von zwei roten
3712  Pfeilen überlagert wird.
3713  Die Pfeile geben an, dass die komplette Breite und Höhe des Kästcheninhalts
3714  als Leerraum erstellt wird.
3715  Phantomzeichen sind dementsprechend Platzhalter mit der Größe der angegebenen
3716  Zeichen.
3717 \end_layout
3718
3719 \begin_layout Standard
3720 \align center
3721 \begin_inset Tabular
3722 <lyxtabular version="3" rows="4" columns="2">
3723 <features tabularvalignment="middle">
3724 <column alignment="center" valignment="top" width="0">
3725 <column alignment="center" valignment="top" width="0">
3726 <row>
3727 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
3728 \begin_inset Text
3729
3730 \begin_layout Plain Layout
3731 Befehl
3732 \end_layout
3733
3734 \end_inset
3735 </cell>
3736 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
3737 \begin_inset Text
3738
3739 \begin_layout Plain Layout
3740 Ergebnis
3741 \begin_inset Note Note
3742 status collapsed
3743
3744 \begin_layout Plain Layout
3745
3746 \series bold
3747
3748 \backslash
3749 raisebox
3750 \series default
3751  dient nur als Abstandhalter.
3752 \end_layout
3753
3754 \end_inset
3755
3756
3757 \end_layout
3758
3759 \end_inset
3760 </cell>
3761 </row>
3762 <row>
3763 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3764 \begin_inset Text
3765
3766 \begin_layout Plain Layout
3767 ^19
3768 \begin_inset ERT
3769 status collapsed
3770
3771 \begin_layout Plain Layout
3772
3773
3774 \backslash
3775 leer 
3776 \end_layout
3777
3778 \end_inset
3779
3780 _
3781 \backslash
3782 phantom
3783 \begin_inset ERT
3784 status collapsed
3785
3786 \begin_layout Plain Layout
3787
3788
3789 \backslash
3790 leer 
3791 \end_layout
3792
3793 \end_inset
3794
3795 1
3796 \begin_inset Formula $\to$
3797 \end_inset
3798
3799 9
3800 \begin_inset ERT
3801 status collapsed
3802
3803 \begin_layout Plain Layout
3804
3805
3806 \backslash
3807 leer 
3808 \end_layout
3809
3810 \end_inset
3811
3812 F
3813 \end_layout
3814
3815 \end_inset
3816 </cell>
3817 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3818 \begin_inset Text
3819
3820 \begin_layout Plain Layout
3821 \begin_inset Formula $\raisebox{4.5mm}{}{}_{\phantom{1}9}^{19}\mathrm{F}\raisebox{-2.5mm}{}$
3822 \end_inset
3823
3824
3825 \end_layout
3826
3827 \end_inset
3828 </cell>
3829 </row>
3830 <row>
3831 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
3832 \begin_inset Text
3833
3834 \begin_layout Plain Layout
3835 ^235
3836 \begin_inset ERT
3837 status collapsed
3838
3839 \begin_layout Plain Layout
3840
3841
3842 \backslash
3843 leer 
3844 \end_layout
3845
3846 \end_inset
3847
3848 _
3849 \backslash
3850 phantom
3851 \begin_inset ERT
3852 status collapsed
3853
3854 \begin_layout Plain Layout
3855
3856
3857 \backslash
3858 leer 
3859 \end_layout
3860
3861 \end_inset
3862
3863 23
3864 \begin_inset Formula $\to$
3865 \end_inset
3866
3867 9
3868 \begin_inset ERT
3869 status collapsed
3870
3871 \begin_layout Plain Layout
3872
3873
3874 \backslash
3875 leer 
3876 \end_layout
3877
3878 \end_inset
3879
3880 F
3881 \end_layout
3882
3883 \end_inset
3884 </cell>
3885 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
3886 \begin_inset Text
3887
3888 \begin_layout Plain Layout
3889 \begin_inset Formula $\raisebox{4.5mm}{}{}_{\phantom{23}9}^{235}\mathrm{F}\raisebox{-2.5mm}{}$
3890 \end_inset
3891
3892
3893 \end_layout
3894
3895 \end_inset
3896 </cell>
3897 </row>
3898 <row>
3899 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
3900 \begin_inset Text
3901
3902 \begin_layout Plain Layout
3903
3904 \backslash
3905 Lambda^
3906 \begin_inset ERT
3907 status collapsed
3908
3909 \begin_layout Plain Layout
3910
3911
3912 \backslash
3913 leer 
3914 \end_layout
3915
3916 \end_inset
3917
3918
3919 \backslash
3920 phantom
3921 \begin_inset ERT
3922 status collapsed
3923
3924 \begin_layout Plain Layout
3925
3926
3927 \backslash
3928 leer 
3929 \end_layout
3930
3931 \end_inset
3932
3933 ii
3934 \begin_inset Formula $\to$
3935 \end_inset
3936
3937 t
3938 \begin_inset ERT
3939 status collapsed
3940
3941 \begin_layout Plain Layout
3942
3943
3944 \backslash
3945 leer 
3946 \end_layout
3947
3948 \end_inset
3949
3950 _MMt
3951 \end_layout
3952
3953 \end_inset
3954 </cell>
3955 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
3956 \begin_inset Text
3957
3958 \begin_layout Plain Layout
3959 \begin_inset Formula $\raisebox{4.5mm}{}\Lambda_{MMt}^{\phantom{ii}t}\raisebox{-2.5mm}{}$
3960 \end_inset
3961
3962
3963 \end_layout
3964
3965 \end_inset
3966 </cell>
3967 </row>
3968 </lyxtabular>
3969
3970 \end_inset
3971
3972
3973 \end_layout
3974
3975 \begin_layout Standard
3976 Des Weiteren gibt es noch die Befehle 
3977 \series bold
3978
3979 \backslash
3980 vphantom
3981 \series default
3982
3983 \begin_inset Index idx
3984 status collapsed
3985
3986 \begin_layout Plain Layout
3987 Befehle ! V ! 
3988 \backslash
3989 vphantom
3990 \end_layout
3991
3992 \end_inset
3993
3994  (Werkzeugleistenknopf 
3995 \begin_inset space ~
3996 \end_inset
3997
3998
3999 \begin_inset Graphics
4000         filename ../../images/math/vphantom.png
4001         scale 85
4002
4003 \end_inset
4004
4005 ) und 
4006 \series bold
4007
4008 \backslash
4009 hphantom
4010 \series default
4011
4012 \begin_inset Index idx
4013 status collapsed
4014
4015 \begin_layout Plain Layout
4016 Befehle ! H ! 
4017 \backslash
4018 hphantom
4019 \end_layout
4020
4021 \end_inset
4022
4023  (Werkzeugleistenknopf 
4024 \begin_inset space ~
4025 \end_inset
4026
4027
4028 \begin_inset Graphics
4029         filename ../../images/math/hphantom.png
4030         scale 85
4031
4032 \end_inset
4033
4034 ).
4035  
4036 \series bold
4037
4038 \backslash
4039 hphantom
4040 \series default
4041  erzeugt nur Platz für die maximale Höhe der im Kästchen angegebenen Zeichen,
4042  nicht jedoch für deren Breite.
4043  Bei 
4044 \series bold
4045
4046 \backslash
4047 vphantom
4048 \series default
4049  wird nur Platz mit der Breite des Kästchens erstellt.
4050  Daher haben die Kästchen der beiden Befehle nur einen roten Pfeil.
4051 \end_layout
4052
4053 \begin_layout Standard
4054 Zum Beispiel erzeugt 
4055 \series bold
4056
4057 \backslash
4058 vphantom
4059 \series default
4060
4061 \begin_inset ERT
4062 status collapsed
4063
4064 \begin_layout Plain Layout
4065
4066
4067 \backslash
4068 leer 
4069 \end_layout
4070
4071 \end_inset
4072
4073
4074 \series bold
4075 a
4076 \backslash
4077 int
4078 \series default
4079  Platz der Höhe des Integralzeichens,
4080 \begin_inset Foot
4081 status collapsed
4082
4083 \begin_layout Plain Layout
4084 Der Befehl 
4085 \series bold
4086
4087 \backslash
4088 int
4089 \series default
4090  erzeugt ein Integralzeichen, siehe 
4091 \begin_inset CommandInset ref
4092 LatexCommand ref
4093 reference "sub:Große-Operatoren"
4094
4095 \end_inset
4096
4097 .
4098 \end_layout
4099
4100 \end_inset
4101
4102  da dieses das größere Zeichen ist.
4103  Eine Beispielanwendung ist in 
4104 \begin_inset CommandInset ref
4105 LatexCommand ref
4106 reference "sub:Mehrzeilige-Klammern"
4107
4108 \end_inset
4109
4110  zu finden.
4111 \end_layout
4112
4113 \begin_layout Standard
4114 Platzhalter können auch für Text verwendet werden, wenn sie über das Menü
4115  
4116 \family sans
4117 Einfügen\SpecialChar \menuseparator
4118 Formatierung\SpecialChar \menuseparator
4119 Phantom
4120 \family default
4121  eingefügt werden:
4122 \end_layout
4123
4124 \begin_layout Standard
4125 Dies ist ein Satz.
4126 \begin_inset Newline newline
4127 \end_inset
4128
4129
4130 \begin_inset Phantom Phantom
4131 status open
4132
4133 \begin_layout Plain Layout
4134 Dies
4135 \end_layout
4136
4137 \end_inset
4138
4139  ist ein Satz.
4140 \end_layout
4141
4142 \begin_layout Subsection
4143 Linien
4144 \begin_inset Index idx
4145 status collapsed
4146
4147 \begin_layout Plain Layout
4148 Linien
4149 \end_layout
4150
4151 \end_inset
4152
4153
4154 \begin_inset Index idx
4155 status collapsed
4156
4157 \begin_layout Plain Layout
4158 Formel ! unterstrichene
4159 \end_layout
4160
4161 \end_inset
4162
4163
4164 \end_layout
4165
4166 \begin_layout Standard
4167 \align center
4168 \begin_inset Tabular
4169 <lyxtabular version="3" rows="4" columns="2">
4170 <features tabularvalignment="middle">
4171 <column alignment="center" valignment="top" width="0pt">
4172 <column alignment="center" valignment="top" width="0pt">
4173 <row>
4174 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
4175 \begin_inset Text
4176
4177 \begin_layout Plain Layout
4178 Befehl
4179 \end_layout
4180
4181 \end_inset
4182 </cell>
4183 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
4184 \begin_inset Text
4185
4186 \begin_layout Plain Layout
4187 Ergebnis
4188 \begin_inset Note Note
4189 status collapsed
4190
4191 \begin_layout Plain Layout
4192
4193 \series bold
4194
4195 \backslash
4196 raisebox
4197 \series default
4198  dient nur als Abstandhalter.
4199 \end_layout
4200
4201 \end_inset
4202
4203
4204 \end_layout
4205
4206 \end_inset
4207 </cell>
4208 </row>
4209 <row>
4210 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
4211 \begin_inset Text
4212
4213 \begin_layout Plain Layout
4214
4215 \backslash
4216 overline
4217 \begin_inset ERT
4218 status collapsed
4219
4220 \begin_layout Plain Layout
4221
4222
4223 \backslash
4224 leer 
4225 \end_layout
4226
4227 \end_inset
4228
4229 A+B
4230 \begin_inset Index idx
4231 status collapsed
4232
4233 \begin_layout Plain Layout
4234 Befehle ! O ! 
4235 \backslash
4236 overline
4237 \end_layout
4238
4239 \end_inset
4240
4241
4242 \end_layout
4243
4244 \end_inset
4245 </cell>
4246 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
4247 \begin_inset Text
4248
4249 \begin_layout Plain Layout
4250 \begin_inset Formula $\raisebox{5mm}{}\overline{A+B}$
4251 \end_inset
4252
4253
4254 \end_layout
4255
4256 \end_inset
4257 </cell>
4258 </row>
4259 <row>
4260 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
4261 \begin_inset Text
4262
4263 \begin_layout Plain Layout
4264
4265 \backslash
4266 underline
4267 \begin_inset ERT
4268 status collapsed
4269
4270 \begin_layout Plain Layout
4271
4272
4273 \backslash
4274 leer 
4275 \end_layout
4276
4277 \end_inset
4278
4279 A+B
4280 \begin_inset Index idx
4281 status collapsed
4282
4283 \begin_layout Plain Layout
4284 Befehle ! U ! 
4285 \backslash
4286 underline
4287 \end_layout
4288
4289 \end_inset
4290
4291
4292 \end_layout
4293
4294 \end_inset
4295 </cell>
4296 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
4297 \begin_inset Text
4298
4299 \begin_layout Plain Layout
4300 \begin_inset Formula $\underline{A+B}\raisebox{-2.5mm}{}$
4301 \end_inset
4302
4303
4304 \end_layout
4305
4306 \end_inset
4307 </cell>
4308 </row>
4309 <row>
4310 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
4311 \begin_inset Text
4312
4313 \begin_layout Plain Layout
4314
4315 \backslash
4316 overline
4317 \begin_inset ERT
4318 status collapsed
4319
4320 \begin_layout Plain Layout
4321
4322
4323 \backslash
4324 leer 
4325 \end_layout
4326
4327 \end_inset
4328
4329
4330 \backslash
4331 underline
4332 \begin_inset ERT
4333 status collapsed
4334
4335 \begin_layout Plain Layout
4336
4337
4338 \backslash
4339 leer 
4340 \end_layout
4341
4342 \end_inset
4343
4344 A+B
4345 \end_layout
4346
4347 \end_inset
4348 </cell>
4349 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
4350 \begin_inset Text
4351
4352 \begin_layout Plain Layout
4353 \begin_inset Formula $\raisebox{5mm}{}\overline{\underline{A+B}}\raisebox{-2.5mm}{}$
4354 \end_inset
4355
4356
4357 \end_layout
4358
4359 \end_inset
4360 </cell>
4361 </row>
4362 </lyxtabular>
4363
4364 \end_inset
4365
4366
4367 \end_layout
4368
4369 \begin_layout Standard
4370 Beim letzten Beispiel spielt es keine Rolle, ob man zuerst 
4371 \series bold
4372
4373 \backslash
4374 overline
4375 \series default
4376  oder 
4377 \series bold
4378
4379 \backslash
4380 underline
4381 \series default
4382  eingibt.
4383 \end_layout
4384
4385 \begin_layout Standard
4386 Will man Ergebnisse doppelt unterstreichen, verwendet man zweimal hintereinander
4387 \begin_inset Newline linebreak
4388 \end_inset
4389
4390
4391 \series bold
4392
4393 \backslash
4394 underline
4395 \series default
4396 .
4397 \end_layout
4398
4399 \begin_layout Standard
4400 Man kann bis zu 6 Striche über oder unter Zeichen setzen.
4401 \end_layout
4402
4403 \begin_layout Standard
4404 \begin_inset VSpace bigskip
4405 \end_inset
4406
4407 Benutzerdefinierte Linien können mit dem Befehl 
4408 \series bold
4409
4410 \backslash
4411 rule
4412 \series default
4413
4414 \begin_inset Index idx
4415 status collapsed
4416
4417 \begin_layout Plain Layout
4418 Befehle! R ! 
4419 \backslash
4420 rule
4421 \end_layout
4422
4423 \end_inset
4424
4425  erstellt werden, der folgendes Schema besitzt:
4426 \end_layout
4427
4428 \begin_layout Standard
4429
4430 \series bold
4431
4432 \backslash
4433 rule[vertikaler Versatz]{Länge}{Dicke}
4434 \end_layout
4435
4436 \begin_layout Standard
4437 Der optionale vertikale Versatz verschiebt die Linie nach oben (oder nach
4438  unten, wenn der Wert negativ ist).
4439  Die Einheiten, die in 
4440 \begin_inset CommandInset ref
4441 LatexCommand ref
4442 reference "tab:Verfügbare-Einheiten"
4443
4444 \end_inset
4445
4446  aufgelistet sind, können für die Werte benutzt werden.
4447  Hier sind zwei Beispiele, die mit den Befehlen
4448 \begin_inset Newline newline
4449 \end_inset
4450
4451
4452 \series bold
4453
4454 \backslash
4455 rule[-2ex]{3cm}{2pt}
4456 \series default
4457  und 
4458 \series bold
4459
4460 \backslash
4461 rule{2cm}{1pt}
4462 \series default
4463  erzeugt wurden:
4464 \end_layout
4465
4466 \begin_layout Standard
4467 Dies ist ein Satz 
4468 \begin_inset Formula $\rule[-2ex]{3cm}{2pt}\rule{2cm}{1pt}$
4469 \end_inset
4470
4471  mit zwei Linien.
4472 \end_layout
4473
4474 \begin_layout Standard
4475
4476 \series bold
4477
4478 \backslash
4479 rule
4480 \series default
4481  kann auch für Text verwendet werden, wenn eine Linie über das Menü 
4482 \family sans
4483 Einfügen\SpecialChar \menuseparator
4484 Formatierung\SpecialChar \menuseparator
4485 Horizontale
4486 \begin_inset space ~
4487 \end_inset
4488
4489 Line
4490 \family default
4491  eingefügt wird:
4492 \end_layout
4493
4494 \begin_layout Standard
4495 Dies ist ein Satz 
4496 \begin_inset CommandInset line
4497 LatexCommand rule
4498 offset "0.5ex"
4499 width "3cm"
4500 height "1pt"
4501
4502 \end_inset
4503
4504  mit einer Linie.
4505 \end_layout
4506
4507 \begin_layout Subsection
4508 Fortsetzungspunkte
4509 \begin_inset CommandInset label
4510 LatexCommand label
4511 name "sub:Fortsetzungspunkte"
4512
4513 \end_inset
4514
4515
4516 \begin_inset Index idx
4517 status collapsed
4518
4519 \begin_layout Plain Layout
4520 Fortsetzungspunkte
4521 \end_layout
4522
4523 \end_inset
4524
4525
4526 \end_layout
4527
4528 \begin_layout Standard
4529 Es gibt unterschiedliche Arten von Fortsetzungspunkten.
4530 \begin_inset Foot
4531 status collapsed
4532
4533 \begin_layout Plain Layout
4534 In der Mathe-Werkzeugleiste zu finden im Untermenü des Knopfs 
4535 \begin_inset Graphics
4536         filename ../../images/math/ldots.png
4537         scale 85
4538
4539 \end_inset
4540
4541
4542 \end_layout
4543
4544 \end_inset
4545
4546  Für Aufzählungen verwendet man unten sitzende Punkte (
4547 \series bold
4548
4549 \backslash
4550 ldots
4551 \series default
4552
4553 \begin_inset Index idx
4554 status collapsed
4555
4556 \begin_layout Plain Layout
4557 Befehle ! L ! 
4558 \backslash
4559 ldots
4560 \end_layout
4561
4562 \end_inset
4563
4564 ), während man für Operationen Punkte braucht, die auf der selben Höhe wie
4565  die Operatoren sind (
4566 \series bold
4567
4568 \backslash
4569 cdots
4570 \series default
4571
4572 \begin_inset Index idx
4573 status collapsed
4574
4575 \begin_layout Plain Layout
4576 Befehle ! C ! 
4577 \backslash
4578 cdots
4579 \end_layout
4580
4581 \end_inset
4582
4583 ).
4584  Verwendet man den Befehl 
4585 \series bold
4586
4587 \backslash
4588 dots
4589 \series default
4590
4591 \begin_inset Index idx
4592 status collapsed
4593
4594 \begin_layout Plain Layout
4595 Befehle ! D ! 
4596 \backslash
4597 dots
4598 \end_layout
4599
4600 \end_inset
4601
4602 , entscheidet LaTeX anhand des nachfolgenden Zeichens, welche Punktart verwendet
4603  wird.
4604 \end_layout
4605
4606 \begin_layout Standard
4607 \align center
4608 \begin_inset Tabular
4609 <lyxtabular version="3" rows="9" columns="2">
4610 <features tabularvalignment="middle">
4611 <column alignment="center" valignment="top" width="0pt">
4612 <column alignment="center" valignment="top" width="0pt">
4613 <row>
4614 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
4615 \begin_inset Text
4616
4617 \begin_layout Plain Layout
4618 Befehl
4619 \end_layout
4620
4621 \end_inset
4622 </cell>
4623 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
4624 \begin_inset Text
4625
4626 \begin_layout Plain Layout
4627 Ergebnis
4628 \end_layout
4629
4630 \end_inset
4631 </cell>
4632 </row>
4633 <row>
4634 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4635 \begin_inset Text
4636
4637 \begin_layout Plain Layout
4638 A_1
4639 \begin_inset ERT
4640 status collapsed
4641
4642 \begin_layout Plain Layout
4643
4644
4645 \backslash
4646 leer 
4647 \end_layout
4648
4649 \end_inset
4650
4651 ,
4652 \backslash
4653 dots
4654 \begin_inset ERT
4655 status collapsed
4656
4657 \begin_layout Plain Layout
4658
4659
4660 \backslash
4661 leer 
4662 \end_layout
4663
4664 \end_inset
4665
4666 ,A_n
4667 \end_layout
4668
4669 \end_inset
4670 </cell>
4671 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4672 \begin_inset Text
4673
4674 \begin_layout Plain Layout
4675 \begin_inset Formula $A_{1},\dots,A_{n}$
4676 \end_inset
4677
4678
4679 \end_layout
4680
4681 \end_inset
4682 </cell>
4683 </row>
4684 <row>
4685 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4686 \begin_inset Text
4687
4688 \begin_layout Plain Layout
4689 A_1
4690 \begin_inset ERT
4691 status collapsed
4692
4693 \begin_layout Plain Layout
4694
4695
4696 \backslash
4697 leer 
4698 \end_layout
4699
4700 \end_inset
4701
4702 +
4703 \backslash
4704 dots
4705 \begin_inset ERT
4706 status collapsed
4707
4708 \begin_layout Plain Layout
4709
4710
4711 \backslash
4712 leer 
4713 \end_layout
4714
4715 \end_inset
4716
4717 +A_n
4718 \end_layout
4719
4720 \end_inset
4721 </cell>
4722 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4723 \begin_inset Text
4724
4725 \begin_layout Plain Layout
4726 \begin_inset Formula $A_{1}+\dots+A_{n}$
4727 \end_inset
4728
4729
4730 \end_layout
4731
4732 \end_inset
4733 </cell>
4734 </row>
4735 <row>
4736 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4737 \begin_inset Text
4738
4739 \begin_layout Plain Layout
4740 A_1
4741 \begin_inset ERT
4742 status collapsed
4743
4744 \begin_layout Plain Layout
4745
4746
4747 \backslash
4748 leer 
4749 \end_layout
4750
4751 \end_inset
4752
4753 ,
4754 \backslash
4755 ldots
4756 \begin_inset ERT
4757 status collapsed
4758
4759 \begin_layout Plain Layout
4760
4761
4762 \backslash
4763 leer 
4764 \end_layout
4765
4766 \end_inset
4767
4768 ,A_n
4769 \end_layout
4770
4771 \end_inset
4772 </cell>
4773 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4774 \begin_inset Text
4775
4776 \begin_layout Plain Layout
4777 \begin_inset Formula $A_{1},\ldots,A_{n}$
4778 \end_inset
4779
4780
4781 \end_layout
4782
4783 \end_inset
4784 </cell>
4785 </row>
4786 <row>
4787 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
4788 \begin_inset Text
4789
4790 \begin_layout Plain Layout
4791 A_1
4792 \begin_inset ERT
4793 status collapsed
4794
4795 \begin_layout Plain Layout
4796
4797
4798 \backslash
4799 leer 
4800 \end_layout
4801
4802 \end_inset
4803
4804 +
4805 \backslash
4806 cdots
4807 \begin_inset ERT
4808 status collapsed
4809
4810 \begin_layout Plain Layout
4811
4812
4813 \backslash
4814 leer 
4815 \end_layout
4816
4817 \end_inset
4818
4819 +A_n
4820 \end_layout
4821
4822 \end_inset
4823 </cell>
4824 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
4825 \begin_inset Text
4826
4827 \begin_layout Plain Layout
4828 \begin_inset Formula $A_{1}+\cdots+A_{n}$
4829 \end_inset
4830
4831
4832 \end_layout
4833
4834 \end_inset
4835 </cell>
4836 </row>
4837 <row>
4838 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4839 \begin_inset Text
4840
4841 \begin_layout Plain Layout
4842
4843 \backslash
4844 vdots
4845 \end_layout
4846
4847 \end_inset
4848 </cell>
4849 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4850 \begin_inset Text
4851
4852 \begin_layout Plain Layout
4853 \begin_inset Formula $\vdots$
4854 \end_inset
4855
4856
4857 \end_layout
4858
4859 \end_inset
4860 </cell>
4861 </row>
4862 <row>
4863 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4864 \begin_inset Text
4865
4866 \begin_layout Plain Layout
4867
4868 \backslash
4869 ddots
4870 \end_layout
4871
4872 \end_inset
4873 </cell>
4874 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4875 \begin_inset Text
4876
4877 \begin_layout Plain Layout
4878 \begin_inset Formula $\ddots$
4879 \end_inset
4880
4881
4882 \end_layout
4883
4884 \end_inset
4885 </cell>
4886 </row>
4887 <row>
4888 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
4889 \begin_inset Text
4890
4891 \begin_layout Plain Layout
4892
4893 \backslash
4894 iddots
4895 \end_layout
4896
4897 \end_inset
4898 </cell>
4899 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
4900 \begin_inset Text
4901
4902 \begin_layout Plain Layout
4903 \begin_inset Formula $\iddots$
4904 \end_inset
4905
4906
4907 \end_layout
4908
4909 \end_inset
4910 </cell>
4911 </row>
4912 <row>
4913 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
4914 \begin_inset Text
4915
4916 \begin_layout Plain Layout
4917 3
4918 \series bold
4919 ×
4920 \series default
4921 3
4922 \begin_inset space \thinspace{}
4923 \end_inset
4924
4925 Matrix mit obigen Befehlen
4926 \end_layout
4927
4928 \end_inset
4929 </cell>
4930 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
4931 \begin_inset Text
4932
4933 \begin_layout Plain Layout
4934 \begin_inset Formula $\begin{array}{ccc}
4935 A_{11} & \cdots & A_{1m}\\
4936 \vdots & \ddots & \vdots\\
4937 A_{n1} & \cdots & A_{nm}
4938 \end{array}$
4939 \end_inset
4940
4941
4942 \end_layout
4943
4944 \end_inset
4945 </cell>
4946 </row>
4947 </lyxtabular>
4948
4949 \end_inset
4950
4951
4952 \end_layout
4953
4954 \begin_layout Standard
4955 Die im Menü 
4956 \family sans
4957 Einfügen\SpecialChar \menuseparator
4958 Sonderzeichen
4959 \family default
4960  verfügbaren Fortsetzungspunkte sind 
4961 \series bold
4962
4963 \backslash
4964 ldots
4965 \series default
4966 .
4967 \end_layout
4968
4969 \begin_layout Standard
4970 \begin_inset VSpace medskip
4971 \end_inset
4972
4973 Um 
4974 \series bold
4975
4976 \backslash
4977 iddots
4978 \series default
4979  nutzen zu können, muss eine der Optionen 
4980 \family sans
4981 Mathdots Paket (automatisch) verwenden 
4982 \family default
4983 in den Dokumenteinstellungen unter 
4984 \family sans
4985 Mathe-Optionen
4986 \family default
4987  gewählt sein.
4988 \begin_inset Newline newline
4989 \end_inset
4990
4991 Die Option 
4992 \family sans
4993 Mathdots Paket verwenden
4994 \family default
4995  verbessert das Aussehen aller Fortsetzungspunkte des Dokuments wenn deren
4996  Schriftstil oder die Schriftgröße nicht Standard sind.
4997 \end_layout
4998
4999 \begin_layout Standard
5000 \begin_inset VSpace medskip
5001 \end_inset
5002
5003 Speziell für Matrizen gibt es Fortsetzungspunkte, die sich über mehrere
5004  Spalten erstrecken.
5005  Man erhält sie mit dem Befehl 
5006 \series bold
5007
5008 \backslash
5009 hdotsfor
5010 \series default
5011
5012 \begin_inset Index idx
5013 status collapsed
5014
5015 \begin_layout Plain Layout
5016 Befehle ! H ! 
5017 \backslash
5018 hdotsfor
5019 \end_layout
5020
5021 \end_inset
5022
5023 , der folgendes Schema besitzt:
5024 \end_layout
5025
5026 \begin_layout Standard
5027
5028 \series bold
5029
5030 \backslash
5031 hdotsfor[Abstand]{Anzahl der Spalten}
5032 \end_layout
5033
5034 \begin_layout Standard
5035 Anzahl der Spalten gibt an, über wie viele Spalten sich die Punkte erstrecken
5036  sollen.
5037  Abstand ist ein Faktor, der den Punktabstand festlegt.
5038 \end_layout
5039
5040 \begin_layout Standard
5041 In folgender Matrix wurde in das erste Kästchen der zweiten Zeile der Befehl
5042  
5043 \series bold
5044
5045 \backslash
5046 hdotsfor[2]{4}
5047 \series default
5048  eingegeben, um Fortsetzungspunkte mit doppelt so großem Punktabstand wie
5049  beim Befehl 
5050 \series bold
5051
5052 \backslash
5053 dots
5054 \series default
5055  zu erhalten:
5056 \begin_inset Formula 
5057 \[
5058 \left(\begin{array}{cccc}
5059 A & B & C & D\\
5060 \hdotsfor[2]{4}\\
5061 q & w & e & r
5062 \end{array}\right)
5063 \]
5064
5065 \end_inset
5066
5067 Es ist zu beachten, dass die Matrixfelder über die sich die Punkte erstrecken
5068  sollen leer sein müssen, ansonsten kommt es zu LaTeX-Fehlern.
5069 \end_layout
5070
5071 \begin_layout Standard
5072 \begin_inset VSpace bigskip
5073 \end_inset
5074
5075 Des Weiteren kann man mit dem Befehl 
5076 \series bold
5077
5078 \backslash
5079 dotfill
5080 \series default
5081
5082 \begin_inset Index idx
5083 status collapsed
5084
5085 \begin_layout Plain Layout
5086 Befehle ! D ! 
5087 \backslash
5088 dotfill
5089 \end_layout
5090
5091 \end_inset
5092
5093  den Rest einer Zeile mit Punkten füllen.
5094  Die Wirkungsweise des Befehls entspricht der von 
5095 \series bold
5096
5097 \backslash
5098 hfill
5099 \series default
5100 , siehe 
5101 \begin_inset CommandInset ref
5102 LatexCommand ref
5103 reference "sub:Variabler-Leerraum"
5104
5105 \end_inset
5106
5107 .
5108 \end_layout
5109
5110 \begin_layout Standard
5111 Z.
5112 \begin_inset space \thinspace{}
5113 \end_inset
5114
5115 B.
5116  ergibt der Befehl 
5117 \series bold
5118 A
5119 \backslash
5120 dotfill
5121 \begin_inset ERT
5122 status collapsed
5123
5124 \begin_layout Plain Layout
5125
5126
5127 \backslash
5128 leer 
5129 \end_layout
5130
5131 \end_inset
5132
5133 B
5134 \end_layout
5135
5136 \begin_layout Standard
5137 \begin_inset Formula $A\dotfill B$
5138 \end_inset
5139
5140
5141 \end_layout
5142
5143 \begin_layout Standard
5144 Analog dazu gibt es für eine Linie den Befehl 
5145 \series bold
5146
5147 \backslash
5148 hrulefill
5149 \series default
5150
5151 \begin_inset Index idx
5152 status collapsed
5153
5154 \begin_layout Plain Layout
5155 Befehle ! H ! 
5156 \backslash
5157 hrulefill
5158 \end_layout
5159
5160 \end_inset
5161
5162 :
5163 \end_layout
5164
5165 \begin_layout Standard
5166 \begin_inset Formula $A\hrulefill B$
5167 \end_inset
5168
5169
5170 \end_layout
5171
5172 \begin_layout Standard
5173 Um die Befehle für Text zu verwenden, müssen sie im TeX-Modus eingegeben
5174  werden.
5175 \end_layout
5176
5177 \begin_layout Section
5178 Matrizen
5179 \begin_inset CommandInset label
5180 LatexCommand label
5181 name "sec:Matrizen"
5182
5183 \end_inset
5184
5185
5186 \begin_inset Index idx
5187 status collapsed
5188
5189 \begin_layout Plain Layout
5190 Matrizen
5191 \end_layout
5192
5193 \end_inset
5194
5195
5196 \end_layout
5197
5198 \begin_layout Standard
5199 Matrizen können über den Mathe-Werkzeugleistenknopf
5200 \family sans
5201  
5202 \family default
5203
5204 \begin_inset Graphics
5205         filename ../../images/dialog-show_mathmatrix.png
5206         scale 85
5207
5208 \end_inset
5209
5210  oder das Menü 
5211 \family sans
5212 Einfügen\SpecialChar \menuseparator
5213 Mathe\SpecialChar \menuseparator
5214 Matrix
5215 \family default
5216  eingefügt werden.
5217  Sie werden nach der Spalten- und Zeilenanzahl, der Ausrichtung und der
5218  Verzierung gefragt.
5219  Die vertikale Ausrichtung ist dabei nur bei Matrizen in eingebetteten Formeln
5220  von Bedeutung:
5221 \end_layout
5222
5223 \begin_layout Standard
5224 Die erste Matrix ist oben 
5225 \begin_inset Formula $\begin{array}[t]{cccc}
5226 A & D & G & J\\
5227 B & E & H & K\\
5228 C & F & I & L
5229 \end{array}$
5230 \end_inset
5231
5232 , die zweite mittig 
5233 \begin_inset Formula $\begin{array}{cccc}
5234 A & D & G & J\\
5235 B & E & H & K\\
5236 C & F & I & L
5237 \end{array}$
5238 \end_inset
5239
5240  und die dritte unten 
5241 \begin_inset Formula $\begin{array}[b]{cccc}
5242 A & D & G & J\\
5243 B & E & H & K\\
5244 C & F & I & L
5245 \end{array}$
5246 \end_inset
5247
5248  ausgerichtet.
5249 \end_layout
5250
5251 \begin_layout Standard
5252 Die horizontale Ausrichtung gibt an, wie die Spalteneinträge ausgerichtet
5253  werden sollen.
5254  Dazu wird für jede Spalte ein Buchstabe eingegeben.
5255  
5256 \emph on
5257 l
5258 \emph default
5259  steht für linksbündig, 
5260 \emph on
5261 c
5262 \emph default
5263  für mittig und 
5264 \emph on
5265 r
5266 \emph default
5267  für rechtsbündig.
5268  Möchte man z.
5269 \begin_inset space \thinspace{}
5270 \end_inset
5271
5272 B.
5273  eine 4
5274 \series bold
5275 ×
5276 \series default
5277 4
5278 \begin_inset space ~
5279 \end_inset
5280
5281 Matrix erstellen, bei der der Inhalt der ersten Spalte linksbündig, der
5282  Inhalt der zweiten und dritten mittig und der Inhalt der letzten rechtsbündig
5283  ausgerichtet ist, gibt man für die horizontale Ausrichtung 
5284 \series bold
5285 lccr
5286 \series default
5287  an.
5288  Normalerweise sind in einer Matrix alle Spalteninhalte zentriert, weswegen
5289  die Voreinstellung für jede Spalte ein 
5290 \series bold
5291 c
5292 \series default
5293  ist.
5294 \end_layout
5295
5296 \begin_layout Standard
5297 Horizontale Ausrichtung:
5298 \end_layout
5299
5300 \begin_layout Standard
5301
5302 \series bold
5303 lll
5304 \series default
5305  : 
5306 \begin_inset Formula $\begin{array}{lll}
5307 10000 & D & G\\
5308 B & 10000 & H\\
5309 C & F & 10000
5310 \end{array}$
5311 \end_inset
5312
5313  , 
5314 \series bold
5315 ccc
5316 \series default
5317  : 
5318 \begin_inset Formula $\begin{array}{ccc}
5319 10000 & D & G\\
5320 B & 10000 & H\\
5321 C & F & 10000
5322 \end{array}$
5323 \end_inset
5324
5325  , 
5326 \series bold
5327 rrr
5328 \series default
5329  : 
5330 \begin_inset Formula $\begin{array}{rrr}
5331 10000 & D & G\\
5332 B & 10000 & H\\
5333 C & F & 10000
5334 \end{array}$
5335 \end_inset
5336
5337
5338 \end_layout
5339
5340 \begin_layout Standard
5341 Um nachträglich Zeilen und Spalten hinzuzufügen oder zu entfernen, kann
5342  man die Mathe-Werkzeugleistenknöpfe 
5343 \begin_inset Graphics
5344         filename ../../images/tabular-feature_append-row.png
5345         scale 85
5346
5347 \end_inset
5348
5349
5350 \begin_inset Graphics
5351         filename ../../images/tabular-feature_delete-row.png
5352         scale 85
5353
5354 \end_inset
5355
5356 , usw.
5357 \begin_inset space \space{}
5358 \end_inset
5359
5360 oder das Menü 
5361 \family sans
5362 Bearbeiten\SpecialChar \menuseparator
5363 Zeilen & Spalten
5364 \family default
5365  verwenden.
5366  Neue Zeilen können auch mit 
5367 \family sans
5368 Strg+Enter
5369 \family default
5370  erstellt werden.
5371 \end_layout
5372
5373 \begin_layout Standard
5374 \begin_inset VSpace bigskip
5375 \end_inset
5376
5377 Die 
5378 \family sans
5379 Verzierung
5380 \family default
5381  fügt Klammern um die Matrix in der ausgewählten Art hinzu.
5382  Alternativ können Klammern entweder mit den Befehlen 
5383 \series bold
5384
5385 \backslash
5386 left
5387 \series default
5388
5389 \begin_inset Index idx
5390 status collapsed
5391
5392 \begin_layout Plain Layout
5393 Befehle ! L ! 
5394 \backslash
5395 left
5396 \end_layout
5397
5398 \end_inset
5399
5400  und 
5401 \series bold
5402
5403 \backslash
5404 right
5405 \series default
5406
5407 \begin_inset Index idx
5408 status collapsed
5409
5410 \begin_layout Plain Layout
5411 Befehle ! R ! 
5412 \backslash
5413 right
5414 \end_layout
5415
5416 \end_inset
5417
5418  erstellt werden (Tastenkürzel 
5419 \family sans
5420 Alt+M
5421 \begin_inset space ~
5422 \end_inset
5423
5424 Klammer
5425 \family default
5426 ), siehe 
5427 \begin_inset CommandInset ref
5428 LatexCommand ref
5429 reference "sub:Automatische-Klammergrößen"
5430
5431 \end_inset
5432
5433 , oder man verwendet folgende Befehle:
5434 \begin_inset VSpace bigskip
5435 \end_inset
5436
5437
5438 \end_layout
5439
5440 \begin_layout Standard
5441 \begin_inset space \hfill{}
5442 \end_inset
5443
5444
5445 \begin_inset Tabular
5446 <lyxtabular version="3" rows="4" columns="2">
5447 <features tabularvalignment="middle">
5448 <column alignment="center" valignment="top" width="0">
5449 <column alignment="center" valignment="top" width="0">
5450 <row>
5451 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
5452 \begin_inset Text
5453
5454 \begin_layout Plain Layout
5455 Befehl
5456 \end_layout
5457
5458 \end_inset
5459 </cell>
5460 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
5461 \begin_inset Text
5462
5463 \begin_layout Plain Layout
5464 Ergebnis
5465 \end_layout
5466
5467 \end_inset
5468 </cell>
5469 </row>
5470 <row>
5471 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5472 \begin_inset Text
5473
5474 \begin_layout Plain Layout
5475
5476 \backslash
5477 bmatrix
5478 \begin_inset ERT
5479 status collapsed
5480
5481 \begin_layout Plain Layout
5482
5483
5484 \backslash
5485 leer 
5486 \end_layout
5487
5488 \end_inset
5489
5490 2
5491 \series bold
5492 ×
5493 \series default
5494 2
5495 \begin_inset space \thinspace{}
5496 \end_inset
5497
5498 Matrix
5499 \end_layout
5500
5501 \end_inset
5502 </cell>
5503 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5504 \begin_inset Text
5505
5506 \begin_layout Plain Layout
5507 \begin_inset Formula $\raisebox{7.5mm}{}\begin{bmatrix}\begin{array}{cc}
5508 0 & \textrm{-}\mathrm{i}\\
5509 \mathrm{i} & 0
5510 \end{array}\end{bmatrix}\raisebox{-5.3mm}{}$
5511 \end_inset
5512
5513
5514 \end_layout
5515
5516 \end_inset
5517 </cell>
5518 </row>
5519 <row>
5520 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5521 \begin_inset Text
5522
5523 \begin_layout Plain Layout
5524
5525 \backslash
5526 Bmatrix
5527 \begin_inset ERT
5528 status collapsed
5529
5530 \begin_layout Plain Layout
5531
5532
5533 \backslash
5534 leer 
5535 \end_layout
5536
5537 \end_inset
5538
5539 2
5540 \series bold
5541 ×
5542 \series default
5543 2
5544 \begin_inset space \thinspace{}
5545 \end_inset
5546
5547 Matrix
5548 \end_layout
5549
5550 \end_inset
5551 </cell>
5552 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5553 \begin_inset Text
5554
5555 \begin_layout Plain Layout
5556 \begin_inset Formula $\raisebox{7.5mm}{}\begin{Bmatrix}\begin{array}{cc}
5557 0 & \textrm{-}\mathrm{i}\\
5558 \mathrm{i} & 0
5559 \end{array}\end{Bmatrix}\raisebox{-5.3mm}{}$
5560 \end_inset
5561
5562
5563 \end_layout
5564
5565 \end_inset
5566 </cell>
5567 </row>
5568 <row>
5569 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
5570 \begin_inset Text
5571
5572 \begin_layout Plain Layout
5573
5574 \backslash
5575 pmatrix
5576 \begin_inset ERT
5577 status collapsed
5578
5579 \begin_layout Plain Layout
5580
5581
5582 \backslash
5583 leer 
5584 \end_layout
5585
5586 \end_inset
5587
5588 2
5589 \series bold
5590 ×
5591 \series default
5592 2
5593 \begin_inset space \thinspace{}
5594 \end_inset
5595
5596 Matrix
5597 \end_layout
5598
5599 \end_inset
5600 </cell>
5601 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
5602 \begin_inset Text
5603
5604 \begin_layout Plain Layout
5605 \begin_inset Formula $\raisebox{7.5mm}{}\begin{pmatrix}\begin{array}{cc}
5606 0 & \textrm{-}\mathrm{i}\\
5607 \mathrm{i} & 0
5608 \end{array}\end{pmatrix}\raisebox{-5.3mm}{}$
5609 \end_inset
5610
5611
5612 \end_layout
5613
5614 \end_inset
5615 </cell>
5616 </row>
5617 </lyxtabular>
5618
5619 \end_inset
5620
5621
5622 \begin_inset space \hfill{}
5623 \end_inset
5624
5625
5626 \begin_inset Tabular
5627 <lyxtabular version="3" rows="4" columns="2">
5628 <features tabularvalignment="middle">
5629 <column alignment="center" valignment="top" width="0">
5630 <column alignment="center" valignment="top" width="0">
5631 <row>
5632 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
5633 \begin_inset Text
5634
5635 \begin_layout Plain Layout
5636 Befehl
5637 \end_layout
5638
5639 \end_inset
5640 </cell>
5641 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
5642 \begin_inset Text
5643
5644 \begin_layout Plain Layout
5645 Ergebnis
5646 \end_layout
5647
5648 \end_inset
5649 </cell>
5650 </row>
5651 <row>
5652 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5653 \begin_inset Text
5654
5655 \begin_layout Plain Layout
5656
5657 \backslash
5658 vmatrix
5659 \begin_inset ERT
5660 status collapsed
5661
5662 \begin_layout Plain Layout
5663
5664
5665 \backslash
5666 leer 
5667 \end_layout
5668
5669 \end_inset
5670
5671 2
5672 \series bold
5673 ×
5674 \series default
5675 2
5676 \begin_inset space \thinspace{}
5677 \end_inset
5678
5679 Matrix
5680 \end_layout
5681
5682 \end_inset
5683 </cell>
5684 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5685 \begin_inset Text
5686
5687 \begin_layout Plain Layout
5688 \begin_inset Formula $\raisebox{7.5mm}{}\begin{vmatrix}\begin{array}{cc}
5689 0 & \textrm{-}\mathrm{i}\\
5690 \mathrm{i} & 0
5691 \end{array}\end{vmatrix}\raisebox{-5.3mm}{}$
5692 \end_inset
5693
5694
5695 \end_layout
5696
5697 \end_inset
5698 </cell>
5699 </row>
5700 <row>
5701 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
5702 \begin_inset Text
5703
5704 \begin_layout Plain Layout
5705
5706 \backslash
5707 Vmatrix
5708 \begin_inset ERT
5709 status collapsed
5710
5711 \begin_layout Plain Layout
5712
5713
5714 \backslash
5715 leer 
5716 \end_layout
5717
5718 \end_inset
5719
5720 2
5721 \series bold
5722 ×
5723 \series default
5724 2
5725 \begin_inset space \thinspace{}
5726 \end_inset
5727
5728 Matrix
5729 \end_layout
5730
5731 \end_inset
5732 </cell>
5733 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
5734 \begin_inset Text
5735
5736 \begin_layout Plain Layout
5737 \begin_inset Formula $\raisebox{7.5mm}{}\begin{Vmatrix}\begin{array}{cc}
5738 0 & \textrm{-}\mathrm{i}\\
5739 \mathrm{i} & 0
5740 \end{array}\end{Vmatrix}\raisebox{-5.3mm}{}$
5741 \end_inset
5742
5743
5744 \end_layout
5745
5746 \end_inset
5747 </cell>
5748 </row>
5749 <row>
5750 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
5751 \begin_inset Text
5752
5753 \begin_layout Plain Layout
5754
5755 \backslash
5756 matrix
5757 \begin_inset ERT
5758 status collapsed
5759
5760 \begin_layout Plain Layout
5761
5762
5763 \backslash
5764 leer 
5765 \end_layout
5766
5767 \end_inset
5768
5769 2
5770 \series bold
5771 ×
5772 \series default
5773 2
5774 \begin_inset space \thinspace{}
5775 \end_inset
5776
5777 Matrix
5778 \end_layout
5779
5780 \end_inset
5781 </cell>
5782 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
5783 \begin_inset Text
5784
5785 \begin_layout Plain Layout
5786 \begin_inset Formula $\raisebox{7.5mm}{}\begin{matrix}\begin{array}{cc}
5787 0 & \textrm{-}\mathrm{i}\\
5788 \mathrm{i} & 0
5789 \end{array}\end{matrix}\raisebox{-5.3mm}{}$
5790 \end_inset
5791
5792
5793 \end_layout
5794
5795 \end_inset
5796 </cell>
5797 </row>
5798 </lyxtabular>
5799
5800 \end_inset
5801
5802
5803 \begin_inset space \hfill{}
5804 \end_inset
5805
5806
5807 \end_layout
5808
5809 \begin_layout Standard
5810 \begin_inset VSpace medskip
5811 \end_inset
5812
5813 Wurde z.
5814 \begin_inset space \thinspace{}
5815 \end_inset
5816
5817 B.
5818  
5819 \series bold
5820
5821 \backslash
5822 vmatrix
5823 \series default
5824  eingegeben, erscheint ein blaues Kästchen zwischen zwei senkrechten Strichen,
5825  in das die Matrix eingefügt wird.
5826 \begin_inset Newline newline
5827 \end_inset
5828
5829 Man beachte, dass verzierte Matrizen die vertikale Ausrichtung ignorieren.
5830 \end_layout
5831
5832 \begin_layout Standard
5833 \begin_inset VSpace bigskip
5834 \end_inset
5835
5836 Da alle mehrzeiligen Formeln Matrizen sind, kann man die in 
5837 \begin_inset CommandInset ref
5838 LatexCommand ref
5839 reference "sub:Spaltenabstand"
5840
5841 \end_inset
5842
5843  beschriebene Länge 
5844 \series bold
5845
5846 \backslash
5847 arraycolsep
5848 \series default
5849
5850 \begin_inset Index idx
5851 status collapsed
5852
5853 \begin_layout Plain Layout
5854 Befehle ! A ! 
5855 \backslash
5856 arraycolsep
5857 \end_layout
5858
5859 \end_inset
5860
5861  auch zur Änderung des Spaltenabstands von Matrizen verwenden.
5862 \end_layout
5863
5864 \begin_layout Standard
5865 Möchte man den Zeilenabstand ändern, verwendet man den Befehl 
5866 \series bold
5867
5868 \backslash
5869 arraystretch
5870 \series default
5871
5872 \begin_inset Index idx
5873 status collapsed
5874
5875 \begin_layout Plain Layout
5876 Befehle ! A ! 
5877 \backslash
5878 arraystretch
5879 \end_layout
5880
5881 \end_inset
5882
5883 .
5884  Dieser wird folgendermaßen benutzt:
5885 \end_layout
5886
5887 \begin_layout Standard
5888
5889 \series bold
5890
5891 \backslash
5892 renewcommand{
5893 \backslash
5894 arraystretch}{Dehnungsfaktor}
5895 \begin_inset Index idx
5896 status collapsed
5897
5898 \begin_layout Plain Layout
5899 Befehle ! R ! 
5900 \backslash
5901 renewcommand
5902 \end_layout
5903
5904 \end_inset
5905
5906
5907 \end_layout
5908
5909 \begin_layout Standard
5910 Der Befehl 
5911 \series bold
5912
5913 \backslash
5914 renewcommand
5915 \series default
5916  weist dabei dem vordefinierten Befehl 
5917 \series bold
5918
5919 \backslash
5920 arraystretch
5921 \series default
5922  den Dehnungsfaktor zu.
5923  Möchte man z.
5924 \begin_inset space \thinspace{}
5925 \end_inset
5926
5927 B.
5928  den Zeilenabstand verdoppeln, gibt man für den Faktor eine 2 an.
5929  Dieser wird dann für alle folgenden Matrizen verwendet.
5930  Um wieder zum ursprünglichen Abstand zurückzukehren, weist man 
5931 \series bold
5932
5933 \backslash
5934 arraystretch
5935 \series default
5936  den Faktor 1 zu.
5937 \end_layout
5938
5939 \begin_layout Standard
5940 Um Matrizen in eine Textzeile zu setzen, benutzt man den Befehl 
5941 \series bold
5942
5943 \backslash
5944 smallmatrix
5945 \series default
5946
5947 \begin_inset Index idx
5948 status collapsed
5949
5950 \begin_layout Plain Layout
5951 Befehle ! S ! 
5952 \backslash
5953 smallmatrix
5954 \end_layout
5955
5956 \end_inset
5957
5958 .
5959  Gibt man ihn in eine Formel ein, erscheint ein blaues Kästchen mit zwei
5960  gestrichelten Linien.
5961  In dieses Kästchen wird die Matrix eingegeben.
5962  Man verwendet stattdessen das Menü 
5963 \family sans
5964 Bearbeiten\SpecialChar \menuseparator
5965 Zeilen
5966 \begin_inset space ~
5967 \end_inset
5968
5969 &
5970 \begin_inset space ~
5971 \end_inset
5972
5973 Spalten
5974 \family default
5975  oder die Mathe-Werkzeugleiste um neue Spalten zu erstellen.
5976  Neue Zeilen können auch mit 
5977 \family sans
5978 Strg+Enter
5979 \family default
5980  erstellt werden.
5981 \end_layout
5982
5983 \begin_layout Standard
5984 Dies ist eine Matrix 
5985 \begin_inset Formula $\left(\begin{smallmatrix}A & B\\
5986 C & D
5987 \end{smallmatrix}\right)$
5988 \end_inset
5989
5990  in einer Textzeile.
5991 \end_layout
5992
5993 \begin_layout Section
5994 Klammern und Begrenzungszeichen
5995 \begin_inset Index idx
5996 status collapsed
5997
5998 \begin_layout Plain Layout
5999 Klammern
6000 \end_layout
6001
6002 \end_inset
6003
6004
6005 \begin_inset Index idx
6006 status collapsed
6007
6008 \begin_layout Plain Layout
6009 Begrenzungszeichen
6010 \end_layout
6011
6012 \end_inset
6013
6014
6015 \end_layout
6016
6017 \begin_layout Subsection
6018 Vertikale Klammern und Begrenzungszeichen
6019 \begin_inset Index idx
6020 status collapsed
6021
6022 \begin_layout Plain Layout
6023 Klammern ! vertikale
6024 \end_layout
6025
6026 \end_inset
6027
6028
6029 \end_layout
6030
6031 \begin_layout Standard
6032 \begin_inset space \hfill{}
6033 \end_inset
6034
6035
6036 \begin_inset Tabular
6037 <lyxtabular version="3" rows="9" columns="2">
6038 <features tabularvalignment="middle">
6039 <column alignment="center" valignment="top" width="0pt">
6040 <column alignment="center" valignment="top" width="0pt">
6041 <row>
6042 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
6043 \begin_inset Text
6044
6045 \begin_layout Plain Layout
6046 Befehl
6047 \end_layout
6048
6049 \end_inset
6050 </cell>
6051 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6052 \begin_inset Text
6053
6054 \begin_layout Plain Layout
6055 Ergebnis
6056 \end_layout
6057
6058 \end_inset
6059 </cell>
6060 </row>
6061 <row>
6062 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6063 \begin_inset Text
6064
6065 \begin_layout Plain Layout
6066 (
6067 \end_layout
6068
6069 \end_inset
6070 </cell>
6071 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6072 \begin_inset Text
6073
6074 \begin_layout Plain Layout
6075 \begin_inset Formula $($
6076 \end_inset
6077
6078
6079 \end_layout
6080
6081 \end_inset
6082 </cell>
6083 </row>
6084 <row>
6085 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6086 \begin_inset Text
6087
6088 \begin_layout Plain Layout
6089 {
6090 \end_layout
6091
6092 \end_inset
6093 </cell>
6094 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6095 \begin_inset Text
6096
6097 \begin_layout Plain Layout
6098 \begin_inset Formula $\{$
6099 \end_inset
6100
6101
6102 \end_layout
6103
6104 \end_inset
6105 </cell>
6106 </row>
6107 <row>
6108 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6109 \begin_inset Text
6110
6111 \begin_layout Plain Layout
6112 [
6113 \end_layout
6114
6115 \end_inset
6116 </cell>
6117 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6118 \begin_inset Text
6119
6120 \begin_layout Plain Layout
6121 \begin_inset Formula $[$
6122 \end_inset
6123
6124
6125 \end_layout
6126
6127 \end_inset
6128 </cell>
6129 </row>
6130 <row>
6131 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6132 \begin_inset Text
6133
6134 \begin_layout Plain Layout
6135
6136 \backslash
6137 langle
6138 \end_layout
6139
6140 \end_inset
6141 </cell>
6142 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6143 \begin_inset Text
6144
6145 \begin_layout Plain Layout
6146 \begin_inset Formula $\langle$
6147 \end_inset
6148
6149
6150 \end_layout
6151
6152 \end_inset
6153 </cell>
6154 </row>
6155 <row>
6156 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6157 \begin_inset Text
6158
6159 \begin_layout Plain Layout
6160
6161 \backslash
6162 lceil
6163 \end_layout
6164
6165 \end_inset
6166 </cell>
6167 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6168 \begin_inset Text
6169
6170 \begin_layout Plain Layout
6171 \begin_inset Formula $\lceil$
6172 \end_inset
6173
6174
6175 \end_layout
6176
6177 \end_inset
6178 </cell>
6179 </row>
6180 <row>
6181 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6182 \begin_inset Text
6183
6184 \begin_layout Plain Layout
6185
6186 \backslash
6187 lfloor
6188 \end_layout
6189
6190 \end_inset
6191 </cell>
6192 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6193 \begin_inset Text
6194
6195 \begin_layout Plain Layout
6196 \begin_inset Formula $\lfloor$
6197 \end_inset
6198
6199
6200 \end_layout
6201
6202 \end_inset
6203 </cell>
6204 </row>
6205 <row>
6206 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6207 \begin_inset Text
6208
6209 \begin_layout Plain Layout
6210 /
6211 \end_layout
6212
6213 \end_inset
6214 </cell>
6215 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6216 \begin_inset Text
6217
6218 \begin_layout Plain Layout
6219 \begin_inset Formula $/$
6220 \end_inset
6221
6222
6223 \end_layout
6224
6225 \end_inset
6226 </cell>
6227 </row>
6228 <row>
6229 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
6230 \begin_inset Text
6231
6232 \begin_layout Plain Layout
6233 |
6234 \end_layout
6235
6236 \end_inset
6237 </cell>
6238 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6239 \begin_inset Text
6240
6241 \begin_layout Plain Layout
6242 \begin_inset Formula $|$
6243 \end_inset
6244
6245
6246 \end_layout
6247
6248 \end_inset
6249 </cell>
6250 </row>
6251 </lyxtabular>
6252
6253 \end_inset
6254
6255
6256 \begin_inset space \hfill{}
6257 \end_inset
6258
6259
6260 \begin_inset Tabular
6261 <lyxtabular version="3" rows="9" columns="2">
6262 <features tabularvalignment="middle">
6263 <column alignment="center" valignment="top" width="0pt">
6264 <column alignment="center" valignment="top" width="0pt">
6265 <row>
6266 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
6267 \begin_inset Text
6268
6269 \begin_layout Plain Layout
6270 Befehl
6271 \end_layout
6272
6273 \end_inset
6274 </cell>
6275 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6276 \begin_inset Text
6277
6278 \begin_layout Plain Layout
6279 Ergebnis
6280 \end_layout
6281
6282 \end_inset
6283 </cell>
6284 </row>
6285 <row>
6286 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6287 \begin_inset Text
6288
6289 \begin_layout Plain Layout
6290 )
6291 \end_layout
6292
6293 \end_inset
6294 </cell>
6295 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6296 \begin_inset Text
6297
6298 \begin_layout Plain Layout
6299 \begin_inset Formula $)$
6300 \end_inset
6301
6302
6303 \end_layout
6304
6305 \end_inset
6306 </cell>
6307 </row>
6308 <row>
6309 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6310 \begin_inset Text
6311
6312 \begin_layout Plain Layout
6313 }
6314 \end_layout
6315
6316 \end_inset
6317 </cell>
6318 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6319 \begin_inset Text
6320
6321 \begin_layout Plain Layout
6322 \begin_inset Formula $\}$
6323 \end_inset
6324
6325
6326 \end_layout
6327
6328 \end_inset
6329 </cell>
6330 </row>
6331 <row>
6332 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6333 \begin_inset Text
6334
6335 \begin_layout Plain Layout
6336 ]
6337 \end_layout
6338
6339 \end_inset
6340 </cell>
6341 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6342 \begin_inset Text
6343
6344 \begin_layout Plain Layout
6345 \begin_inset Formula $]$
6346 \end_inset
6347
6348
6349 \end_layout
6350
6351 \end_inset
6352 </cell>
6353 </row>
6354 <row>
6355 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6356 \begin_inset Text
6357
6358 \begin_layout Plain Layout
6359
6360 \backslash
6361 rangle
6362 \end_layout
6363
6364 \end_inset
6365 </cell>
6366 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6367 \begin_inset Text
6368
6369 \begin_layout Plain Layout
6370 \begin_inset Formula $\rangle$
6371 \end_inset
6372
6373
6374 \end_layout
6375
6376 \end_inset
6377 </cell>
6378 </row>
6379 <row>
6380 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6381 \begin_inset Text
6382
6383 \begin_layout Plain Layout
6384
6385 \backslash
6386 rceil
6387 \end_layout
6388
6389 \end_inset
6390 </cell>
6391 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6392 \begin_inset Text
6393
6394 \begin_layout Plain Layout
6395 \begin_inset Formula $\rceil$
6396 \end_inset
6397
6398
6399 \end_layout
6400
6401 \end_inset
6402 </cell>
6403 </row>
6404 <row>
6405 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6406 \begin_inset Text
6407
6408 \begin_layout Plain Layout
6409
6410 \backslash
6411 rfloor
6412 \end_layout
6413
6414 \end_inset
6415 </cell>
6416 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6417 \begin_inset Text
6418
6419 \begin_layout Plain Layout
6420 \begin_inset Formula $\rfloor$
6421 \end_inset
6422
6423
6424 \end_layout
6425
6426 \end_inset
6427 </cell>
6428 </row>
6429 <row>
6430 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6431 \begin_inset Text
6432
6433 \begin_layout Plain Layout
6434
6435 \backslash
6436
6437 \backslash
6438
6439 \end_layout
6440
6441 \end_inset
6442 </cell>
6443 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6444 \begin_inset Text
6445
6446 \begin_layout Plain Layout
6447 \begin_inset Formula $\backslash$
6448 \end_inset
6449
6450
6451 \end_layout
6452
6453 \end_inset
6454 </cell>
6455 </row>
6456 <row>
6457 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
6458 \begin_inset Text
6459
6460 \begin_layout Plain Layout
6461
6462 \backslash
6463 |
6464 \end_layout
6465
6466 \end_inset
6467 </cell>
6468 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6469 \begin_inset Text
6470
6471 \begin_layout Plain Layout
6472 \begin_inset Formula $\|$
6473 \end_inset
6474
6475
6476 \end_layout
6477
6478 \end_inset
6479 </cell>
6480 </row>
6481 </lyxtabular>
6482
6483 \end_inset
6484
6485
6486 \begin_inset space \hfill{}
6487 \end_inset
6488
6489
6490 \end_layout
6491
6492 \begin_layout Standard
6493
6494 \series medium
6495 \begin_inset Note Greyedout
6496 status open
6497
6498 \begin_layout Plain Layout
6499
6500 \series bold
6501 Achtung:
6502 \series default
6503  Im TeX-Modus muss für den Backslash der Befehl 
6504 \series bold
6505
6506 \backslash
6507 textbackslash
6508 \series default
6509
6510 \begin_inset Index idx
6511 status collapsed
6512
6513 \begin_layout Plain Layout
6514 Befehle ! T ! 
6515 \backslash
6516 textbackslash
6517 \end_layout
6518
6519 \end_inset
6520
6521  verwendet werden, denn der Befehl 
6522 \series bold
6523
6524 \backslash
6525
6526 \backslash
6527
6528 \series default
6529  steht dort für einen Zeilenumbruch.
6530 \end_layout
6531
6532 \end_inset
6533
6534
6535 \end_layout
6536
6537 \begin_layout Standard
6538 Für alle oben aufgelisteten Zeichen kann die Größe mit den in den folgenden
6539  zwei Unterkapiteln beschriebenen Befehlen eingestellt werden.
6540  Dabei können dann statt den Befehlen 
6541 \series bold
6542
6543 \backslash
6544 langle
6545 \series default
6546  und 
6547 \series bold
6548
6549 \backslash
6550 rangle
6551 \series default
6552  direkt die Zeichen < und > verwendet werden.
6553 \end_layout
6554
6555 \begin_layout Subsubsection
6556 Manuelle Klammergrößen
6557 \begin_inset CommandInset label
6558 LatexCommand label
6559 name "sub:Manuelle-Klammergrößen"
6560
6561 \end_inset
6562
6563
6564 \begin_inset Index idx
6565 status collapsed
6566
6567 \begin_layout Plain Layout
6568 Klammergrößen ! manuelle
6569 \end_layout
6570
6571 \end_inset
6572
6573
6574 \end_layout
6575
6576 \begin_layout Standard
6577 Möchte man die Klammergröße manuell festlegen, kann man dies mittels der
6578  LaTeX-Befehle 
6579 \series bold
6580
6581 \backslash
6582 big
6583 \series default
6584
6585 \begin_inset Index idx
6586 status collapsed
6587
6588 \begin_layout Plain Layout
6589 Befehle ! B ! 
6590 \backslash
6591 big
6592 \end_layout
6593
6594 \end_inset
6595
6596
6597 \series bold
6598
6599 \backslash
6600 Big
6601 \series default
6602
6603 \series bold
6604
6605 \backslash
6606 bigg
6607 \series default
6608  und 
6609 \series bold
6610
6611 \backslash
6612 Bigg
6613 \series default
6614  tun.
6615  
6616 \series bold
6617
6618 \backslash
6619 big
6620 \series default
6621  steht hierbei für die kleinste und 
6622 \series bold
6623
6624 \backslash
6625 Bigg
6626 \series default
6627  für die größte Klammergröße.
6628 \end_layout
6629
6630 \begin_layout Standard
6631 Diese Befehle werden benutzt um Klammerebenen optisch hervorzuheben:
6632 \end_layout
6633
6634 \begin_layout Standard
6635 \align center
6636 \begin_inset Tabular
6637 <lyxtabular version="3" rows="2" columns="2">
6638 <features tabularvalignment="middle">
6639 <column alignment="center" valignment="top" width="0pt">
6640 <column alignment="center" valignment="top" width="0pt">
6641 <row>
6642 <cell alignment="center" valignment="top" usebox="none">
6643 \begin_inset Text
6644
6645 \begin_layout Plain Layout
6646 einheitliche Klammergröße:
6647 \end_layout
6648
6649 \end_inset
6650 </cell>
6651 <cell alignment="center" valignment="top" usebox="none">
6652 \begin_inset Text
6653
6654 \begin_layout Plain Layout
6655 \begin_inset Formula $((A+B)(A-B))^{C}\raisebox{-4mm}{}$
6656 \end_inset
6657
6658
6659 \end_layout
6660
6661 \end_inset
6662 </cell>
6663 </row>
6664 <row>
6665 <cell alignment="center" valignment="top" usebox="none">
6666 \begin_inset Text
6667
6668 \begin_layout Plain Layout
6669 besser sieht das so aus:
6670 \end_layout
6671
6672 \end_inset
6673 </cell>
6674 <cell alignment="center" valignment="top" usebox="none">
6675 \begin_inset Text
6676
6677 \begin_layout Plain Layout
6678 \begin_inset Formula $\Big((A+B)(A-B)\Big)^{C}$
6679 \end_inset
6680
6681
6682 \end_layout
6683
6684 \end_inset
6685 </cell>
6686 </row>
6687 </lyxtabular>
6688
6689 \end_inset
6690
6691
6692 \begin_inset Note Note
6693 status collapsed
6694
6695 \begin_layout Plain Layout
6696
6697 \series bold
6698
6699 \backslash
6700 raisebox
6701 \series default
6702  dient nur
6703 \end_layout
6704
6705 \begin_layout Plain Layout
6706 als Abstandhalter.
6707 \end_layout
6708
6709 \end_inset
6710
6711
6712 \end_layout
6713
6714 \begin_layout Standard
6715 Für die zweite Formel wurde der Befehl 
6716 \series bold
6717
6718 \backslash
6719 Big((A+B)(A-B)
6720 \backslash
6721 Big)^
6722 \begin_inset ERT
6723 status collapsed
6724
6725 \begin_layout Plain Layout
6726
6727
6728 \backslash
6729 leer 
6730 \end_layout
6731
6732 \end_inset
6733
6734 C
6735 \series default
6736  verwendet.
6737 \end_layout
6738
6739 \begin_layout Standard
6740 Hier alle Klammergrößen in der Übersicht:
6741 \end_layout
6742
6743 \begin_layout Standard
6744 \align center
6745
6746 \backslash
6747 Bigg(
6748 \backslash
6749 exp
6750 \backslash
6751 bigg<
6752 \backslash
6753 Big[
6754 \backslash
6755 big{
6756 \backslash
6757 ln(3x)
6758 \backslash
6759 big}^2
6760 \begin_inset ERT
6761 status collapsed
6762
6763 \begin_layout Plain Layout
6764
6765
6766 \backslash
6767 leer 
6768 \end_layout
6769
6770 \end_inset
6771
6772
6773 \backslash
6774 sin(x)
6775 \backslash
6776 Big]^
6777 \begin_inset ERT
6778 status collapsed
6779
6780 \begin_layout Plain Layout
6781
6782
6783 \backslash
6784 leer 
6785 \end_layout
6786
6787 \end_inset
6788
6789 A
6790 \begin_inset ERT
6791 status collapsed
6792
6793 \begin_layout Plain Layout
6794
6795
6796 \backslash
6797 leer 
6798 \end_layout
6799
6800 \end_inset
6801
6802
6803 \backslash
6804 bigg>
6805 \backslash
6806 Bigg)^0,5
6807 \end_layout
6808
6809 \begin_layout Standard
6810 \align center
6811 \begin_inset Formula $\Bigg(\exp\bigg<\Big[\big\{\ln(3x)\big\}^{2}\sin(x)\Big]^{A}\bigg>\Bigg)^{0,5}$
6812 \end_inset
6813
6814
6815 \end_layout
6816
6817 \begin_layout Standard
6818 Es gibt außer den 
6819 \series bold
6820
6821 \backslash
6822 big
6823 \series default
6824 -Befehlen noch die Variante 
6825 \series bold
6826
6827 \backslash
6828 bigm
6829 \series default
6830
6831 \begin_inset Index idx
6832 status collapsed
6833
6834 \begin_layout Plain Layout
6835 Befehle ! B ! 
6836 \backslash
6837 bigm
6838 \end_layout
6839
6840 \end_inset
6841
6842 , die etwas mehr Leerraum zwischen Klammer und Klammerinhalt erzeugt und
6843  die Variante 
6844 \series bold
6845
6846 \backslash
6847 bigl
6848 \series default
6849 -
6850 \series bold
6851
6852 \backslash
6853 bigr
6854 \series default
6855
6856 \begin_inset Index idx
6857 status collapsed
6858
6859 \begin_layout Plain Layout
6860 Befehle ! B ! 
6861 \backslash
6862 bigl - 
6863 \backslash
6864 bigr
6865 \end_layout
6866
6867 \end_inset
6868
6869 , die keinen zusätzlichen Leerraum erzeugt.
6870  Das 
6871 \emph on
6872 l
6873 \emph default
6874  am Ende des Befehls 
6875 \series bold
6876
6877 \backslash
6878 bigl
6879 \series default
6880  steht für eine linke Klammer; für eine rechte Klammer wird dieses durch
6881  ein 
6882 \emph on
6883 r
6884 \emph default
6885  ersetzt.
6886  Eine linke oder rechte Klammer kann je eine öffnende oder schließende Klammer
6887  sein.
6888 \end_layout
6889
6890 \begin_layout Standard
6891 In der folgenden Tabelle sind die Varianten miteinander verglichen:
6892 \end_layout
6893
6894 \begin_layout Standard
6895 \align center
6896 \begin_inset Tabular
6897 <lyxtabular version="3" rows="5" columns="2">
6898 <features tabularvalignment="middle">
6899 <column alignment="center" valignment="middle" width="0">
6900 <column alignment="center" valignment="middle" width="0">
6901 <row>
6902 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
6903 \begin_inset Text
6904
6905 \begin_layout Plain Layout
6906 Befehl
6907 \end_layout
6908
6909 \end_inset
6910 </cell>
6911 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6912 \begin_inset Text
6913
6914 \begin_layout Plain Layout
6915 Ergebnis
6916 \begin_inset Note Note
6917 status collapsed
6918
6919 \begin_layout Plain Layout
6920
6921 \series bold
6922
6923 \backslash
6924 raisebox
6925 \series default
6926  dient nur als Abstandhalter.
6927 \end_layout
6928
6929 \end_inset
6930
6931
6932 \end_layout
6933
6934 \end_inset
6935 </cell>
6936 </row>
6937 <row>
6938 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6939 \begin_inset Text
6940
6941 \begin_layout Plain Layout
6942
6943 \backslash
6944 Bigm(
6945 \backslash
6946 bigm(
6947 \backslash
6948 ln(3x)
6949 \backslash
6950 bigm)^2
6951 \begin_inset ERT
6952 status collapsed
6953
6954 \begin_layout Plain Layout
6955
6956
6957 \backslash
6958 leer 
6959 \end_layout
6960
6961 \end_inset
6962
6963
6964 \backslash
6965 Bigm)
6966 \end_layout
6967
6968 \end_inset
6969 </cell>
6970 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6971 \begin_inset Text
6972
6973 \begin_layout Plain Layout
6974 \begin_inset Formula $\raisebox{5.5mm}{}\Bigm(\bigm(\ln(3x)\bigm)^{2}\Bigm)\raisebox{-3.25mm}{}$
6975 \end_inset
6976
6977
6978 \end_layout
6979
6980 \end_inset
6981 </cell>
6982 </row>
6983 <row>
6984 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6985 \begin_inset Text
6986
6987 \begin_layout Plain Layout
6988
6989 \backslash
6990 Big(
6991 \backslash
6992 big(
6993 \backslash
6994 ln(3x)
6995 \backslash
6996 big)^2
6997 \begin_inset ERT
6998 status collapsed
6999
7000 \begin_layout Plain Layout
7001
7002
7003 \backslash
7004 leer 
7005 \end_layout
7006
7007 \end_inset
7008
7009
7010 \backslash
7011 Big)
7012 \end_layout
7013
7014 \end_inset
7015 </cell>
7016 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7017 \begin_inset Text
7018
7019 \begin_layout Plain Layout
7020 \begin_inset Formula $\raisebox{5.5mm}{}\Big(\big(\ln(3x)\big)^{2}\Big)\raisebox{-3.25mm}{}$
7021 \end_inset
7022
7023
7024 \end_layout
7025
7026 \end_inset
7027 </cell>
7028 </row>
7029 <row>
7030 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
7031 \begin_inset Text
7032
7033 \begin_layout Plain Layout
7034
7035 \backslash
7036 Bigl(
7037 \backslash
7038 bigl(
7039 \backslash
7040 ln(3x)
7041 \backslash
7042 bigr)^2
7043 \begin_inset ERT
7044 status collapsed
7045
7046 \begin_layout Plain Layout
7047
7048
7049 \backslash
7050 leer 
7051 \end_layout
7052
7053 \end_inset
7054
7055
7056 \backslash
7057 Bigr)
7058 \end_layout
7059
7060 \end_inset
7061 </cell>
7062 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
7063 \begin_inset Text
7064
7065 \begin_layout Plain Layout
7066 \begin_inset Formula $\raisebox{5.5mm}{}\Bigl(\bigl(\ln(3x)\bigr)^{2}\Bigr)\raisebox{-3.25mm}{}$
7067 \end_inset
7068
7069
7070 \end_layout
7071
7072 \end_inset
7073 </cell>
7074 </row>
7075 <row>
7076 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
7077 \begin_inset Text
7078
7079 \begin_layout Plain Layout
7080
7081 \backslash
7082 bigl)
7083 \backslash
7084 ln(3x)
7085 \backslash
7086 bigr(
7087 \end_layout
7088
7089 \end_inset
7090 </cell>
7091 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
7092 \begin_inset Text
7093
7094 \begin_layout Plain Layout
7095 \begin_inset Formula $\raisebox{4.5mm}{}\bigl)\ln(3x)\bigr(\raisebox{-2mm}{}$
7096 \end_inset
7097
7098
7099 \end_layout
7100
7101 \end_inset
7102 </cell>
7103 </row>
7104 </lyxtabular>
7105
7106 \end_inset
7107
7108
7109 \end_layout
7110
7111 \begin_layout Subsubsection
7112 Automatische Klammergrößen
7113 \begin_inset CommandInset label
7114 LatexCommand label
7115 name "sub:Automatische-Klammergrößen"
7116
7117 \end_inset
7118
7119
7120 \begin_inset Index idx
7121 status collapsed
7122
7123 \begin_layout Plain Layout
7124 Klammergrößen ! automatische
7125 \end_layout
7126
7127 \end_inset
7128
7129
7130 \end_layout
7131
7132 \begin_layout Standard
7133 Klammern variabler Größe können mit den Befehlen 
7134 \series bold
7135
7136 \backslash
7137 left
7138 \series default
7139
7140 \begin_inset Index idx
7141 status collapsed
7142
7143 \begin_layout Plain Layout
7144 Befehle ! L ! 
7145 \backslash
7146 left
7147 \end_layout
7148
7149 \end_inset
7150
7151  und 
7152 \series bold
7153
7154 \backslash
7155 right
7156 \series default
7157
7158 \begin_inset Index idx
7159 status collapsed
7160
7161 \begin_layout Plain Layout
7162 Befehle ! R ! 
7163 \backslash
7164 right
7165 \end_layout
7166
7167 \end_inset
7168
7169  oder über den Mathe-Werkzeugleistenknopf
7170 \family sans
7171  
7172 \family default
7173
7174 \begin_inset Graphics
7175         filename ../../images/dialog-show_mathdelimiter.png
7176         scale 85
7177
7178 \end_inset
7179
7180  eingefügt werden.
7181  Auf 
7182 \series bold
7183
7184 \backslash
7185 left
7186 \series default
7187  und 
7188 \series bold
7189
7190 \backslash
7191 right
7192 \series default
7193  muss unmittelbar die gewünschte Klammer folgen.
7194  Die Klammergröße wird dann bei der Ausgabe automatisch berechnet.
7195 \end_layout
7196
7197 \begin_layout Standard
7198 \align center
7199 normale Klammer: Der Befehl 
7200 \series bold
7201
7202 \backslash
7203 ln(
7204 \backslash
7205 frac
7206 \begin_inset ERT
7207 status collapsed
7208
7209 \begin_layout Plain Layout
7210
7211
7212 \backslash
7213 leer 
7214 \end_layout
7215
7216 \end_inset
7217
7218 A
7219 \begin_inset Formula $\downarrow$
7220 \end_inset
7221
7222 C
7223 \begin_inset ERT
7224 status collapsed
7225
7226 \begin_layout Plain Layout
7227
7228
7229 \backslash
7230 leer 
7231 \end_layout
7232
7233 \end_inset
7234
7235 )
7236 \series default
7237  ergibt
7238 \begin_inset Formula 
7239 \[
7240 \ln(\frac{A}{C})
7241 \]
7242
7243 \end_inset
7244
7245
7246 \end_layout
7247
7248 \begin_layout Standard
7249 \align center
7250 mehrzeilige Klammer: Der Befehl 
7251 \series bold
7252
7253 \backslash
7254 ln
7255 \backslash
7256 left(
7257 \backslash
7258 frac
7259 \begin_inset ERT
7260 status collapsed
7261
7262 \begin_layout Plain Layout
7263
7264
7265 \backslash
7266 leer 
7267 \end_layout
7268
7269 \end_inset
7270
7271 A
7272 \begin_inset Formula $\downarrow$
7273 \end_inset
7274
7275 C
7276 \begin_inset ERT
7277 status collapsed
7278
7279 \begin_layout Plain Layout
7280
7281
7282 \backslash
7283 leer 
7284 \end_layout
7285
7286 \end_inset
7287
7288
7289 \backslash
7290 right)
7291 \series default
7292  ergibt
7293 \begin_inset Formula 
7294 \[
7295 \ln\left(\frac{A}{C}\right)
7296 \]
7297
7298 \end_inset
7299
7300
7301 \end_layout
7302
7303 \begin_layout Standard
7304 An Stelle von 
7305 \series bold
7306
7307 \backslash
7308 left
7309 \series default
7310  und 
7311 \series bold
7312
7313 \backslash
7314 right
7315 \series default
7316  kann man die Tastenkürzel 
7317 \family sans
7318 Alt+M
7319 \begin_inset space ~
7320 \end_inset
7321
7322 Klammer
7323 \family default
7324  verwenden.
7325  Das hat den Vorteil, dass man in LyX sofort die wahre Klammergröße sieht
7326  und dass die rechte Klammer gleich mit erstellt wird.
7327 \begin_inset Newline newline
7328 \end_inset
7329
7330 Der Befehl für das letzte Beispiel würde dann lauten: 
7331 \series bold
7332
7333 \backslash
7334 ln Alt+M
7335 \series default
7336  
7337 \series bold
7338 (
7339 \backslash
7340 frac
7341 \begin_inset ERT
7342 status collapsed
7343
7344 \begin_layout Plain Layout
7345
7346
7347 \backslash
7348 leer 
7349 \end_layout
7350
7351 \end_inset
7352
7353 A
7354 \begin_inset Formula $\downarrow$
7355 \end_inset
7356
7357 C
7358 \end_layout
7359
7360 \begin_layout Standard
7361 Will man nur eine Klammerhälfte erstellen, schreibt man für die weggelassene
7362  Klammer einen Punkt.
7363  So ergibt z.
7364 \begin_inset space \thinspace{}
7365 \end_inset
7366
7367 B.
7368  der Befehl 
7369 \series bold
7370
7371 \backslash
7372 left.
7373 \backslash
7374 frac
7375 \begin_inset ERT
7376 status collapsed
7377
7378 \begin_layout Plain Layout
7379
7380
7381 \backslash
7382 leer 
7383 \end_layout
7384
7385 \end_inset
7386
7387 A
7388 \begin_inset Formula $\downarrow$
7389 \end_inset
7390
7391 B
7392 \begin_inset ERT
7393 status collapsed
7394
7395 \begin_layout Plain Layout
7396
7397
7398 \backslash
7399 leer 
7400 \end_layout
7401
7402 \end_inset
7403
7404
7405 \backslash
7406 right}
7407 \series default
7408
7409 \begin_inset space \thinspace{}
7410 \end_inset
7411
7412 :
7413 \series bold
7414
7415 \begin_inset Formula 
7416 \[
7417 \left.\frac{A}{B}\right\} 
7418 \]
7419
7420 \end_inset
7421
7422
7423 \series default
7424 Die Befehle 
7425 \series bold
7426
7427 \backslash
7428 left
7429 \series default
7430  und 
7431 \series bold
7432
7433 \backslash
7434 right
7435 \series default
7436  werden beim Neu laden des Dokuments von LyX in Klammern der richtigen Größe
7437  umgewandelt.
7438  Für eine weggelassene Klammer erscheint in LyX eine gestrichelte Linie.
7439 \end_layout
7440
7441 \begin_layout Standard
7442 \begin_inset VSpace bigskip
7443 \end_inset
7444
7445 Da alle gängigen LaTeX-Distributionen eTeX, eine Erweiterung von LaTeX,
7446  verwenden, steht für alle Klammern und Begrenzungszeichen zusätzlich der
7447  Befehl 
7448 \series bold
7449
7450 \backslash
7451 middle
7452 \series default
7453
7454 \begin_inset Index idx
7455 status collapsed
7456
7457 \begin_layout Plain Layout
7458 Befehle ! M ! 
7459 \backslash
7460 middle
7461 \end_layout
7462
7463 \end_inset
7464
7465  zur Verfügung.
7466  Durch diesen wird das folgende Zeichen an die Höhe der umgebenden Klammern
7467  angepasst, was z.
7468 \begin_inset space \thinspace{}
7469 \end_inset
7470
7471 B.
7472  für physikalische Vektoren von Nutzen ist:
7473 \begin_inset Formula 
7474 \[
7475 \left\langle \phi\:\middle|\: J=\frac{3}{2}\,,\, M_{J}\right\rangle 
7476 \]
7477
7478 \end_inset
7479
7480 Für physikalische Vektoren gibt es ein spezielles LaTeX-Paket, das in 
7481 \begin_inset CommandInset ref
7482 LatexCommand ref
7483 reference "sub:Physikalische-Vektoren"
7484
7485 \end_inset
7486
7487  beschrieben ist.
7488 \end_layout
7489
7490 \begin_layout Subsection
7491 Horizontale Klammern
7492 \begin_inset Index idx
7493 status collapsed
7494
7495 \begin_layout Plain Layout
7496 Klammern ! horizontale
7497 \end_layout
7498
7499 \end_inset
7500
7501
7502 \end_layout
7503
7504 \begin_layout Standard
7505 \align center
7506 \begin_inset Tabular
7507 <lyxtabular version="3" rows="4" columns="2">
7508 <features tabularvalignment="middle">
7509 <column alignment="center" valignment="top" width="0pt">
7510 <column alignment="center" valignment="top" width="0pt">
7511 <row>
7512 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
7513 \begin_inset Text
7514
7515 \begin_layout Plain Layout
7516 Befehl
7517 \begin_inset Note Note
7518 status collapsed
7519
7520 \begin_layout Plain Layout
7521
7522 \series bold
7523
7524 \backslash
7525 raisebox
7526 \series default
7527  dient nur als Abstandhalter.
7528 \end_layout
7529
7530 \end_inset
7531
7532
7533 \end_layout
7534
7535 \end_inset
7536 </cell>
7537 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
7538 \begin_inset Text
7539
7540 \begin_layout Plain Layout
7541 Ergebnis
7542 \end_layout
7543
7544 \end_inset
7545 </cell>
7546 </row>
7547 <row>
7548 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7549 \begin_inset Text
7550
7551 \begin_layout Plain Layout
7552 \begin_inset ERT
7553 status collapsed
7554
7555 \begin_layout Plain Layout
7556
7557
7558 \backslash
7559 raisebox{2.3mm}{
7560 \end_layout
7561
7562 \end_inset
7563
7564
7565 \backslash
7566 overbrace
7567 \begin_inset ERT
7568 status collapsed
7569
7570 \begin_layout Plain Layout
7571
7572
7573 \backslash
7574 leer 
7575 \end_layout
7576
7577 \end_inset
7578
7579 A+B
7580 \begin_inset ERT
7581 status collapsed
7582
7583 \begin_layout Plain Layout
7584
7585
7586 \backslash
7587 leer 
7588 \end_layout
7589
7590 \end_inset
7591
7592 ^
7593 \begin_inset ERT
7594 status collapsed
7595
7596 \begin_layout Plain Layout
7597
7598
7599 \backslash
7600 leer 
7601 \end_layout
7602
7603 \end_inset
7604
7605 3
7606 \begin_inset ERT
7607 status collapsed
7608
7609 \begin_layout Plain Layout
7610
7611 }
7612 \end_layout
7613
7614 \end_inset
7615
7616
7617 \begin_inset Index idx
7618 status collapsed
7619
7620 \begin_layout Plain Layout
7621 Befehle ! O ! 
7622 \backslash
7623 overbrace
7624 \end_layout
7625
7626 \end_inset
7627
7628
7629 \end_layout
7630
7631 \end_inset
7632 </cell>
7633 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7634 \begin_inset Text
7635
7636 \begin_layout Plain Layout
7637 \begin_inset Formula $\overbrace{A+B}^{3}$
7638 \end_inset
7639
7640
7641 \end_layout
7642
7643 \end_inset
7644 </cell>
7645 </row>
7646 <row>
7647 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
7648 \begin_inset Text
7649
7650 \begin_layout Plain Layout
7651 \begin_inset ERT
7652 status collapsed
7653
7654 \begin_layout Plain Layout
7655
7656
7657 \backslash
7658 raisebox{-2.2mm}{
7659 \end_layout
7660
7661 \end_inset
7662
7663
7664 \backslash
7665 underbrace
7666 \begin_inset ERT
7667 status collapsed
7668
7669 \begin_layout Plain Layout
7670
7671
7672 \backslash
7673 leer 
7674 \end_layout
7675
7676 \end_inset
7677
7678 A+B
7679 \begin_inset ERT
7680 status collapsed
7681
7682 \begin_layout Plain Layout
7683
7684
7685 \backslash
7686 leer 
7687 \end_layout
7688
7689 \end_inset
7690
7691 _5
7692 \begin_inset ERT
7693 status collapsed
7694
7695 \begin_layout Plain Layout
7696
7697 }
7698 \end_layout
7699
7700 \end_inset
7701
7702
7703 \begin_inset Index idx
7704 status collapsed
7705
7706 \begin_layout Plain Layout
7707 Befehle ! U ! 
7708 \backslash
7709 underbrace
7710 \end_layout
7711
7712 \end_inset
7713
7714
7715 \end_layout
7716
7717 \end_inset
7718 </cell>
7719 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
7720 \begin_inset Text
7721
7722 \begin_layout Plain Layout
7723 \begin_inset Formula $\underbrace{A+B}_{5}$
7724 \end_inset
7725
7726
7727 \end_layout
7728
7729 \end_inset
7730 </cell>
7731 </row>
7732 <row>
7733 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
7734 \begin_inset Text
7735
7736 \begin_layout Plain Layout
7737
7738 \backslash
7739 overbrace
7740 \begin_inset ERT
7741 status collapsed
7742
7743 \begin_layout Plain Layout
7744
7745
7746 \backslash
7747 leer 
7748 \end_layout
7749
7750 \end_inset
7751
7752
7753 \backslash
7754 underbrace
7755 \begin_inset ERT
7756 status collapsed
7757
7758 \begin_layout Plain Layout
7759
7760
7761 \backslash
7762 leer 
7763 \end_layout
7764
7765 \end_inset
7766
7767 A+B_w
7768 \begin_inset ERT
7769 status collapsed
7770
7771 \begin_layout Plain Layout
7772
7773
7774 \backslash
7775 leer 
7776 \end_layout
7777
7778 \end_inset
7779
7780
7781 \begin_inset ERT
7782 status collapsed
7783
7784 \begin_layout Plain Layout
7785
7786
7787 \backslash
7788 leer 
7789 \end_layout
7790
7791 \end_inset
7792
7793 _7
7794 \begin_inset ERT
7795 status collapsed
7796
7797 \begin_layout Plain Layout
7798
7799
7800 \backslash
7801 leer 
7802 \end_layout
7803
7804 \end_inset
7805
7806
7807 \begin_inset ERT
7808 status collapsed
7809
7810 \begin_layout Plain Layout
7811
7812
7813 \backslash
7814 leer 
7815 \end_layout
7816
7817 \end_inset
7818
7819 ^
7820 \begin_inset ERT
7821 status collapsed
7822
7823 \begin_layout Plain Layout
7824
7825
7826 \backslash
7827 leer 
7828 \end_layout
7829
7830 \end_inset
7831
7832 C
7833 \end_layout
7834
7835 \end_inset
7836 </cell>
7837 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
7838 \begin_inset Text
7839
7840 \begin_layout Plain Layout
7841 \begin_inset Formula $\overbrace{\underbrace{A+B_{w}}_{7}}^{C}$
7842 \end_inset
7843
7844
7845 \end_layout
7846
7847 \end_inset
7848 </cell>
7849 </row>
7850 </lyxtabular>
7851
7852 \end_inset
7853
7854
7855 \end_layout
7856
7857 \begin_layout Standard
7858 Beim letzten Beispiel spielt es keine Rolle, ob man zuerst 
7859 \series bold
7860
7861 \backslash
7862 overbrace
7863 \series default
7864  oder 
7865 \series bold
7866
7867 \backslash
7868 underbrace
7869 \series default
7870  eingibt.
7871 \end_layout
7872
7873 \begin_layout Standard
7874 \begin_inset VSpace bigskip
7875 \end_inset
7876
7877 Benötigt man Klammern, die sich überschneiden, muss man die in 
7878 \begin_inset CommandInset ref
7879 LatexCommand ref
7880 reference "sec:Mehrzeilige-Formeln"
7881
7882 \end_inset
7883
7884  beschriebenen mehrzeiligen Formeln verwenden:
7885 \begin_inset Formula 
7886 \begin{eqnarray*}
7887 A & = & \underbrace{gggg+bbqq}_{r}+\: dddd\\
7888  &  & \hphantom{gggg+\:}\underbrace{\hphantom{bbqq+dddd}}_{s}
7889 \end{eqnarray*}
7890
7891 \end_inset
7892
7893 In die erste Zeile wird die Formel zusammen mit der ersten Klammer eingegeben.
7894  Dabei ist es wichtig, dass vor dem ersten 
7895 \begin_inset Formula $d$
7896 \end_inset
7897
7898  der Abstandsbefehl
7899 \begin_inset Foot
7900 status collapsed
7901
7902 \begin_layout Plain Layout
7903 Abstandsbefehle sind in 
7904 \begin_inset CommandInset ref
7905 LatexCommand ref
7906 reference "sub:Vordefinierter-Leerraum"
7907
7908 \end_inset
7909
7910  erklärt.
7911 \end_layout
7912
7913 \end_inset
7914
7915  
7916 \series bold
7917
7918 \backslash
7919 :
7920 \series default
7921  eingegeben wird, denn die nach dem 
7922 \begin_inset Formula $q$
7923 \end_inset
7924
7925  endende Klammer verhindert, dass das nachfolgende 
7926 \begin_inset Quotes gld
7927 \end_inset
7928
7929 +
7930 \begin_inset Quotes grd
7931 \end_inset
7932
7933  von Leerraum umgeben ist.
7934 \begin_inset Foot
7935 status collapsed
7936
7937 \begin_layout Plain Layout
7938 weil eine Klammer nicht als Zeichen gilt, siehe 
7939 \begin_inset CommandInset ref
7940 LatexCommand ref
7941 reference "sub:Binäre-Operatoren"
7942
7943 \end_inset
7944
7945
7946 \end_layout
7947
7948 \end_inset
7949
7950  In die zweite Zeile wird die zweite Klammer eingegeben.
7951  Da sie vor dem 
7952 \begin_inset Formula $b$
7953 \end_inset
7954
7955  beginnen soll, gibt man zuerst 
7956 \series bold
7957
7958 \backslash
7959 hphantom{gggg+
7960 \backslash
7961 :}
7962 \series default
7963  ein.
7964 \begin_inset Foot
7965 status collapsed
7966
7967 \begin_layout Plain Layout
7968 mehr zu 
7969 \series bold
7970
7971 \backslash
7972 hphantom
7973 \series default
7974  siehe 
7975 \begin_inset CommandInset ref
7976 LatexCommand ref
7977 reference "sub:Platzhalter"
7978
7979 \end_inset
7980
7981 .
7982 \end_layout
7983
7984 \end_inset
7985
7986  Dieser Leerraum wird benötigt, weil das 
7987 \begin_inset Quotes gld
7988 \end_inset
7989
7990 +
7991 \begin_inset Quotes grd
7992 \end_inset
7993
7994  in der Formel auch von Leerraum umgeben ist.
7995  Die Klammer wird unter den Befehl 
7996 \series bold
7997
7998 \backslash
7999 hphantom{bbqq+dddd}
8000 \series default
8001  gesetzt.
8002 \end_layout
8003
8004 \begin_layout Standard
8005 Komplizierter wird es, wenn sich Klammern über und unter der Formel überschneide
8006 n, wie in folgendem Beispiel:
8007 \begin_inset ERT
8008 status collapsed
8009
8010 \begin_layout Plain Layout
8011
8012
8013 \backslash
8014 setlength{
8015 \backslash
8016 jot}{-6pt}
8017 \end_layout
8018
8019 \end_inset
8020
8021
8022 \begin_inset Formula 
8023 \begin{eqnarray*}
8024  &  & \hphantom{gggg+\:}\overbrace{\hphantom{bbqq+dddd}}^{s}\\
8025 A & = & \underbrace{gggg+bbqq}_{r}+\: dddd
8026 \end{eqnarray*}
8027
8028 \end_inset
8029
8030
8031 \begin_inset ERT
8032 status collapsed
8033
8034 \begin_layout Plain Layout
8035
8036
8037 \backslash
8038 setlength{
8039 \backslash
8040 jot}{3pt}
8041 \end_layout
8042
8043 \end_inset
8044
8045 Die erste Formelzeile ist gleich der zweiten Zeile des vorigen Beispiels,
8046  mit dem Unterschied, dass sich die Klammer oben befindet.
8047  Die zweite Zeile enthält die Formel zusammen mit der zweiten Klammer.
8048  Damit sich zwischen oberer Klammer in der ersten Zeile und der Formel in
8049  der zweiten Zeile kein Leerraum befindet, muss der Zeilenabstand verändert
8050  werden.
8051  Aufgrund eines Fehlers in LyX ist dies nicht ohne Weiteres möglich
8052 \begin_inset Foot
8053 status collapsed
8054
8055 \begin_layout Plain Layout
8056 \begin_inset CommandInset href
8057 LatexCommand href
8058 name "LyX-Fehler #1505"
8059 target "http://www.lyx.org/trac/ticket/1505"
8060
8061 \end_inset
8062
8063
8064 \end_layout
8065
8066 \end_inset
8067
8068 .
8069  Es muss als Lösung des Problems der globale Formelzeilenabstand 
8070 \series bold
8071
8072 \backslash
8073 jot
8074 \series default
8075
8076 \begin_inset Index idx
8077 status collapsed
8078
8079 \begin_layout Plain Layout
8080 Befehle ! J ! 
8081 \backslash
8082 jot
8083 \end_layout
8084
8085 \end_inset
8086
8087  vor der Formel mit dem Befehl 
8088 \series bold
8089
8090 \backslash
8091 setlength{
8092 \backslash
8093 jot}{-6pt}
8094 \series default
8095  im TeX-Modus auf den Wert -6
8096 \begin_inset space \thinspace{}
8097 \end_inset
8098
8099 pt geändert.
8100  Nach der Formel wird 
8101 \series bold
8102
8103 \backslash
8104 jot
8105 \series default
8106  mit demselben Befehl wieder auf den Standardwert 3
8107 \begin_inset space \thinspace{}
8108 \end_inset
8109
8110 pt zurückgesetzt.
8111  Genaueres zum Zeilenabstand in Formeln ist in 
8112 \begin_inset CommandInset ref
8113 LatexCommand ref
8114 reference "sub:Zeilenabstand"
8115
8116 \end_inset
8117
8118  erklärt.
8119 \end_layout
8120
8121 \begin_layout Section
8122 Pfeile
8123 \begin_inset Index idx
8124 status collapsed
8125
8126 \begin_layout Plain Layout
8127 Pfeile
8128 \end_layout
8129
8130 \end_inset
8131
8132
8133 \end_layout
8134
8135 \begin_layout Standard
8136 Pfeile können über den Mathe-Werkzeugleistenknopf 
8137 \begin_inset Graphics
8138         filename ../../images/math/leftarrow.png
8139         scale 85
8140
8141 \end_inset
8142
8143  oder mit den Befehlen eingefügt werden, die in den folgenden Unterkapiteln
8144  aufgelistet sind.
8145 \end_layout
8146
8147 \begin_layout Subsection
8148 Horizontale Pfeile
8149 \begin_inset Index idx
8150 status collapsed
8151
8152 \begin_layout Plain Layout
8153 Pfeile ! horizontale
8154 \end_layout
8155
8156 \end_inset
8157
8158
8159 \end_layout
8160
8161 \begin_layout Standard
8162 \begin_inset space \hfill{}
8163 \end_inset
8164
8165
8166 \begin_inset Tabular
8167 <lyxtabular version="3" rows="8" columns="2">
8168 <features tabularvalignment="middle">
8169 <column alignment="center" valignment="top" width="0pt">
8170 <column alignment="center" valignment="top" width="0pt">
8171 <row>
8172 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
8173 \begin_inset Text
8174
8175 \begin_layout Plain Layout
8176 Befehl
8177 \end_layout
8178
8179 \end_inset
8180 </cell>
8181 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8182 \begin_inset Text
8183
8184 \begin_layout Plain Layout
8185 Ergebnis
8186 \end_layout
8187
8188 \end_inset
8189 </cell>
8190 </row>
8191 <row>
8192 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8193 \begin_inset Text
8194
8195 \begin_layout Plain Layout
8196
8197 \backslash
8198 gets
8199 \end_layout
8200
8201 \end_inset
8202 </cell>
8203 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8204 \begin_inset Text
8205
8206 \begin_layout Plain Layout
8207 \begin_inset Formula $\gets$
8208 \end_inset
8209
8210
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 Leftarrow
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 $\Leftarrow$
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" bottomline="true" leftline="true" usebox="none">
8243 \begin_inset Text
8244
8245 \begin_layout Plain Layout
8246
8247 \backslash
8248 longleftarrow
8249 \end_layout
8250
8251 \end_inset
8252 </cell>
8253 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8254 \begin_inset Text
8255
8256 \begin_layout Plain Layout
8257 \begin_inset Formula $\longleftarrow$
8258 \end_inset
8259
8260
8261 \end_layout
8262
8263 \end_inset
8264 </cell>
8265 </row>
8266 <row>
8267 <cell alignment="center" valignment="top" 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" 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 leftharpoonup
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 $\leftharpoonup$
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 leftharpoondown
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 $\leftharpoondown$
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 hookleftarrow
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 $\hookleftarrow$
8358 \end_inset
8359
8360
8361 \end_layout
8362
8363 \end_inset
8364 </cell>
8365 </row>
8366 </lyxtabular>
8367
8368 \end_inset
8369
8370
8371 \begin_inset space \hfill{}
8372 \end_inset
8373
8374
8375 \begin_inset Tabular
8376 <lyxtabular version="3" rows="8" columns="2">
8377 <features tabularvalignment="middle">
8378 <column alignment="center" valignment="top" width="0pt">
8379 <column alignment="center" valignment="top" width="0pt">
8380 <row>
8381 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
8382 \begin_inset Text
8383
8384 \begin_layout Plain Layout
8385 Befehl
8386 \end_layout
8387
8388 \end_inset
8389 </cell>
8390 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8391 \begin_inset Text
8392
8393 \begin_layout Plain Layout
8394 Ergebnis
8395 \end_layout
8396
8397 \end_inset
8398 </cell>
8399 </row>
8400 <row>
8401 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8402 \begin_inset Text
8403
8404 \begin_layout Plain Layout
8405
8406 \backslash
8407 to
8408 \end_layout
8409
8410 \end_inset
8411 </cell>
8412 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8413 \begin_inset Text
8414
8415 \begin_layout Plain Layout
8416 \begin_inset Formula $\to$
8417 \end_inset
8418
8419
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 Rightarrow
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 $\Rightarrow$
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 longrightarrow
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 $\longrightarrow$
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 rightharpoonup
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 $\rightharpoonup$
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" bottomline="true" leftline="true" usebox="none">
8527 \begin_inset Text
8528
8529 \begin_layout Plain Layout
8530
8531 \backslash
8532 rightharpoondown
8533 \end_layout
8534
8535 \end_inset
8536 </cell>
8537 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8538 \begin_inset Text
8539
8540 \begin_layout Plain Layout
8541 \begin_inset Formula $\rightharpoondown$
8542 \end_inset
8543
8544
8545 \end_layout
8546
8547 \end_inset
8548 </cell>
8549 </row>
8550 <row>
8551 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
8552 \begin_inset Text
8553
8554 \begin_layout Plain Layout
8555
8556 \backslash
8557 hookrightarrow
8558 \end_layout
8559
8560 \end_inset
8561 </cell>
8562 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
8563 \begin_inset Text
8564
8565 \begin_layout Plain Layout
8566 \begin_inset Formula $\hookrightarrow$
8567 \end_inset
8568
8569
8570 \end_layout
8571
8572 \end_inset
8573 </cell>
8574 </row>
8575 </lyxtabular>
8576
8577 \end_inset
8578
8579
8580 \begin_inset space \hfill{}
8581 \end_inset
8582
8583
8584 \end_layout
8585
8586 \begin_layout Standard
8587 \begin_inset space \hfill{}
8588 \end_inset
8589
8590
8591 \begin_inset Tabular
8592 <lyxtabular version="3" rows="6" columns="2">
8593 <features tabularvalignment="middle">
8594 <column alignment="center" valignment="top" width="0pt">
8595 <column alignment="center" valignment="top" width="0pt">
8596 <row>
8597 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
8598 \begin_inset Text
8599
8600 \begin_layout Plain Layout
8601 Befehl
8602 \end_layout
8603
8604 \end_inset
8605 </cell>
8606 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8607 \begin_inset Text
8608
8609 \begin_layout Plain Layout
8610 Ergebnis
8611 \end_layout
8612
8613 \end_inset
8614 </cell>
8615 </row>
8616 <row>
8617 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8618 \begin_inset Text
8619
8620 \begin_layout Plain Layout
8621
8622 \backslash
8623 leftrightarrow
8624 \end_layout
8625
8626 \end_inset
8627 </cell>
8628 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8629 \begin_inset Text
8630
8631 \begin_layout Plain Layout
8632 \begin_inset Formula $\leftrightarrow$
8633 \end_inset
8634
8635
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 longleftrightarrow
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 $\longleftrightarrow$
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" bottomline="true" leftline="true" usebox="none">
8718 \begin_inset Text
8719
8720 \begin_layout Plain Layout
8721
8722 \backslash
8723 rightleftharpoons
8724 \end_layout
8725
8726 \end_inset
8727 </cell>
8728 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8729 \begin_inset Text
8730
8731 \begin_layout Plain Layout
8732 \begin_inset Formula $\rightleftharpoons$
8733 \end_inset
8734
8735
8736 \end_layout
8737
8738 \end_inset
8739 </cell>
8740 </row>
8741 </lyxtabular>
8742
8743 \end_inset
8744
8745
8746 \begin_inset space \hspace{}
8747 \length 25pt
8748 \end_inset
8749
8750
8751 \begin_inset space \hfill{}
8752 \end_inset
8753
8754
8755 \begin_inset Tabular
8756 <lyxtabular version="3" rows="5" columns="2">
8757 <features tabularvalignment="middle">
8758 <column alignment="center" valignment="top" width="0pt">
8759 <column alignment="center" valignment="top" width="0pt">
8760 <row>
8761 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
8762 \begin_inset Text
8763
8764 \begin_layout Plain Layout
8765 Befehl
8766 \end_layout
8767
8768 \end_inset
8769 </cell>
8770 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8771 \begin_inset Text
8772
8773 \begin_layout Plain Layout
8774 Ergebnis
8775 \end_layout
8776
8777 \end_inset
8778 </cell>
8779 </row>
8780 <row>
8781 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8782 \begin_inset Text
8783
8784 \begin_layout Plain Layout
8785
8786 \backslash
8787 mapsto
8788 \end_layout
8789
8790 \end_inset
8791 </cell>
8792 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8793 \begin_inset Text
8794
8795 \begin_layout Plain Layout
8796 \begin_inset Formula $\mapsto$
8797 \end_inset
8798
8799
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 longmapsto
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 $\longmapsto$
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 leadsto
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 $\leadsto$
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" bottomline="true" leftline="true" usebox="none">
8857 \begin_inset Text
8858
8859 \begin_layout Plain Layout
8860
8861 \backslash
8862 dasharrow
8863 \end_layout
8864
8865 \end_inset
8866 </cell>
8867 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8868 \begin_inset Text
8869
8870 \begin_layout Plain Layout
8871 \begin_inset Formula $\dasharrow$
8872 \end_inset
8873
8874
8875 \end_layout
8876
8877 \end_inset
8878 </cell>
8879 </row>
8880 </lyxtabular>
8881
8882 \end_inset
8883
8884
8885 \begin_inset space \hfill{}
8886 \end_inset
8887
8888
8889 \end_layout
8890
8891 \begin_layout Standard
8892 \begin_inset VSpace medskip
8893 \end_inset
8894
8895 Als Akzente verwendete Pfeile, wie z.
8896 \begin_inset space \thinspace{}
8897 \end_inset
8898
8899 B.
8900  Vektorpfeile, sind in 
8901 \begin_inset CommandInset ref
8902 LatexCommand ref
8903 reference "sec:Akzente"
8904
8905 \end_inset
8906
8907  aufgelistet.
8908 \end_layout
8909
8910 \begin_layout Standard
8911 \begin_inset VSpace bigskip
8912 \end_inset
8913
8914 Des Weiteren gibt es die beschriftbaren Pfeile
8915 \begin_inset Index idx
8916 status collapsed
8917
8918 \begin_layout Plain Layout
8919 Pfeile ! beschriftbare
8920 \end_layout
8921
8922 \end_inset
8923
8924  
8925 \series bold
8926
8927 \backslash
8928 xleftarrow
8929 \series default
8930
8931 \begin_inset Index idx
8932 status collapsed
8933
8934 \begin_layout Plain Layout
8935 Befehle ! X ! 
8936 \backslash
8937 xleftarrow
8938 \end_layout
8939
8940 \end_inset
8941
8942  und 
8943 \series bold
8944
8945 \backslash
8946 xrightarrow
8947 \series default
8948
8949 \begin_inset Index idx
8950 status collapsed
8951
8952 \begin_layout Plain Layout
8953 Befehle ! X ! 
8954 \backslash
8955 xrightarrow
8956 \begin_inset ERT
8957 status collapsed
8958
8959 \begin_layout Plain Layout
8960
8961
8962 \backslash
8963 vspace{4mm}
8964 \end_layout
8965
8966 \end_inset
8967
8968
8969 \end_layout
8970
8971 \end_inset
8972
8973 .
8974  Gibt man einen dieser Befehle in eine Formel ein, erscheint ein Pfeil mit
8975  zwei blauen Kästchen, in die man die Beschriftung eingeben kann.
8976  Die Pfeillänge passt sich der Breite der Beschriftung an.
8977 \end_layout
8978
8979 \begin_layout Standard
8980 \align center
8981 \begin_inset Tabular
8982 <lyxtabular version="3" rows="3" columns="2">
8983 <features tabularvalignment="middle">
8984 <column alignment="center" valignment="top" width="0pt">
8985 <column alignment="center" valignment="top" width="0pt">
8986 <row>
8987 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
8988 \begin_inset Text
8989
8990 \begin_layout Plain Layout
8991 Befehl
8992 \end_layout
8993
8994 \end_inset
8995 </cell>
8996 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8997 \begin_inset Text
8998
8999 \begin_layout Plain Layout
9000 Ergebnis
9001 \begin_inset Note Note
9002 status collapsed
9003
9004 \begin_layout Plain Layout
9005
9006 \series bold
9007
9008 \backslash
9009 raisebox
9010 \series default
9011  dient nur als Abstandhalter.
9012 \end_layout
9013
9014 \end_inset
9015
9016
9017 \end_layout
9018
9019 \end_inset
9020 </cell>
9021 </row>
9022 <row>
9023 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9024 \begin_inset Text
9025
9026 \begin_layout Plain Layout
9027 F(a)
9028 \backslash
9029 xleftarrow
9030 \begin_inset ERT
9031 status collapsed
9032
9033 \begin_layout Plain Layout
9034
9035
9036 \backslash
9037 leer 
9038 \end_layout
9039
9040 \end_inset
9041
9042 x=a
9043 \begin_inset Formula $\downarrow$
9044 \end_inset
9045
9046 x>0
9047 \begin_inset Formula $\to$
9048 \end_inset
9049
9050 F(x)
9051 \end_layout
9052
9053 \end_inset
9054 </cell>
9055 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9056 \begin_inset Text
9057
9058 \begin_layout Plain Layout
9059 \begin_inset Formula $\raisebox{5mm}{}F(a)\xleftarrow[x>0]{x=a}F(x)\raisebox{-4mm}{}$
9060 \end_inset
9061
9062
9063 \end_layout
9064
9065 \end_inset
9066 </cell>
9067 </row>
9068 <row>
9069 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
9070 \begin_inset Text
9071
9072 \begin_layout Plain Layout
9073 F(x)
9074 \backslash
9075 xrightarrow
9076 \begin_inset ERT
9077 status collapsed
9078
9079 \begin_layout Plain Layout
9080
9081
9082 \backslash
9083 leer 
9084 \end_layout
9085
9086 \end_inset
9087
9088 x=a
9089 \begin_inset Formula $\downarrow$
9090 \end_inset
9091
9092 x>0
9093 \begin_inset Formula $\to$
9094 \end_inset
9095
9096 F(a)
9097 \end_layout
9098
9099 \end_inset
9100 </cell>
9101 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
9102 \begin_inset Text
9103
9104 \begin_layout Plain Layout
9105 \begin_inset Formula $\raisebox{5mm}{}F(x)\xrightarrow[x>0]{x=a}F(a)\raisebox{-4mm}{}$
9106 \end_inset
9107
9108
9109 \end_layout
9110
9111 \end_inset
9112 </cell>
9113 </row>
9114 </lyxtabular>
9115
9116 \end_inset
9117
9118
9119 \end_layout
9120
9121 \begin_layout Subsection
9122 Vertikale und diagonale Pfeile
9123 \begin_inset Index idx
9124 status collapsed
9125
9126 \begin_layout Plain Layout
9127 Pfeile ! diagonale
9128 \end_layout
9129
9130 \end_inset
9131
9132
9133 \begin_inset Index idx
9134 status collapsed
9135
9136 \begin_layout Plain Layout
9137 Pfeile ! vertikale
9138 \end_layout
9139
9140 \end_inset
9141
9142
9143 \end_layout
9144
9145 \begin_layout Standard
9146 \begin_inset space \hfill{}
9147 \end_inset
9148
9149
9150 \begin_inset Tabular
9151 <lyxtabular version="3" rows="7" columns="2">
9152 <features tabularvalignment="middle">
9153 <column alignment="center" valignment="top" width="0pt">
9154 <column alignment="center" valignment="top" width="0pt">
9155 <row>
9156 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
9157 \begin_inset Text
9158
9159 \begin_layout Plain Layout
9160 Befehl
9161 \end_layout
9162
9163 \end_inset
9164 </cell>
9165 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
9166 \begin_inset Text
9167
9168 \begin_layout Plain Layout
9169 Ergebnis
9170 \end_layout
9171
9172 \end_inset
9173 </cell>
9174 </row>
9175 <row>
9176 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9177 \begin_inset Text
9178
9179 \begin_layout Plain Layout
9180
9181 \backslash
9182 uparrow
9183 \end_layout
9184
9185 \end_inset
9186 </cell>
9187 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9188 \begin_inset Text
9189
9190 \begin_layout Plain Layout
9191 \begin_inset Formula $\uparrow$
9192 \end_inset
9193
9194
9195 \end_layout
9196
9197 \end_inset
9198 </cell>
9199 </row>
9200 <row>
9201 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9202 \begin_inset Text
9203
9204 \begin_layout Plain Layout
9205
9206 \backslash
9207 Uparrow
9208 \end_layout
9209
9210 \end_inset
9211 </cell>
9212 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9213 \begin_inset Text
9214
9215 \begin_layout Plain Layout
9216 \begin_inset Formula $\Uparrow$
9217 \end_inset
9218
9219
9220 \end_layout
9221
9222 \end_inset
9223 </cell>
9224 </row>
9225 <row>
9226 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9227 \begin_inset Text
9228
9229 \begin_layout Plain Layout
9230
9231 \backslash
9232 updownarrow
9233 \end_layout
9234
9235 \end_inset
9236 </cell>
9237 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9238 \begin_inset Text
9239
9240 \begin_layout Plain Layout
9241 \begin_inset Formula $\updownarrow$
9242 \end_inset
9243
9244
9245 \end_layout
9246
9247 \end_inset
9248 </cell>
9249 </row>
9250 <row>
9251 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9252 \begin_inset Text
9253
9254 \begin_layout Plain Layout
9255
9256 \backslash
9257 Updownarrow
9258 \end_layout
9259
9260 \end_inset
9261 </cell>
9262 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9263 \begin_inset Text
9264
9265 \begin_layout Plain Layout
9266 \begin_inset Formula $\Updownarrow$
9267 \end_inset
9268
9269
9270 \end_layout
9271
9272 \end_inset
9273 </cell>
9274 </row>
9275 <row>
9276 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
9277 \begin_inset Text
9278
9279 \begin_layout Plain Layout
9280
9281 \backslash
9282 Downarrow
9283 \end_layout
9284
9285 \end_inset
9286 </cell>
9287 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
9288 \begin_inset Text
9289
9290 \begin_layout Plain Layout
9291 \begin_inset Formula $\Downarrow$
9292 \end_inset
9293
9294
9295 \end_layout
9296
9297 \end_inset
9298 </cell>
9299 </row>
9300 <row>
9301 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9302 \begin_inset Text
9303
9304 \begin_layout Plain Layout
9305
9306 \backslash
9307 downarrow
9308 \end_layout
9309
9310 \end_inset
9311 </cell>
9312 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9313 \begin_inset Text
9314
9315 \begin_layout Plain Layout
9316 \begin_inset Formula $\downarrow$
9317 \end_inset
9318
9319
9320 \end_layout
9321
9322 \end_inset
9323 </cell>
9324 </row>
9325 </lyxtabular>
9326
9327 \end_inset
9328
9329
9330 \begin_inset space \hfill{}
9331 \end_inset
9332
9333
9334 \begin_inset Tabular
9335 <lyxtabular version="3" rows="5" columns="2">
9336 <features tabularvalignment="middle">
9337 <column alignment="center" valignment="top" width="0pt">
9338 <column alignment="center" valignment="top" width="0pt">
9339 <row>
9340 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
9341 \begin_inset Text
9342
9343 \begin_layout Plain Layout
9344 Befehl
9345 \end_layout
9346
9347 \end_inset
9348 </cell>
9349 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
9350 \begin_inset Text
9351
9352 \begin_layout Plain Layout
9353 Ergebnis
9354 \end_layout
9355
9356 \end_inset
9357 </cell>
9358 </row>
9359 <row>
9360 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9361 \begin_inset Text
9362
9363 \begin_layout Plain Layout
9364
9365 \backslash
9366 nearrow
9367 \end_layout
9368
9369 \end_inset
9370 </cell>
9371 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9372 \begin_inset Text
9373
9374 \begin_layout Plain Layout
9375 \begin_inset Formula $\nearrow$
9376 \end_inset
9377
9378
9379 \end_layout
9380
9381 \end_inset
9382 </cell>
9383 </row>
9384 <row>
9385 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9386 \begin_inset Text
9387
9388 \begin_layout Plain Layout
9389
9390 \backslash
9391 searrow
9392 \end_layout
9393
9394 \end_inset
9395 </cell>
9396 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9397 \begin_inset Text
9398
9399 \begin_layout Plain Layout
9400 \begin_inset Formula $\searrow$
9401 \end_inset
9402
9403
9404 \end_layout
9405
9406 \end_inset
9407 </cell>
9408 </row>
9409 <row>
9410 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
9411 \begin_inset Text
9412
9413 \begin_layout Plain Layout
9414
9415 \backslash
9416 swarrow
9417 \end_layout
9418
9419 \end_inset
9420 </cell>
9421 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
9422 \begin_inset Text
9423
9424 \begin_layout Plain Layout
9425 \begin_inset Formula $\swarrow$
9426 \end_inset
9427
9428
9429 \end_layout
9430
9431 \end_inset
9432 </cell>
9433 </row>
9434 <row>
9435 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9436 \begin_inset Text
9437
9438 \begin_layout Plain Layout
9439
9440 \backslash
9441 nwarrow
9442 \end_layout
9443
9444 \end_inset
9445 </cell>
9446 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9447 \begin_inset Text
9448
9449 \begin_layout Plain Layout
9450 \begin_inset Formula $\nwarrow$
9451 \end_inset
9452
9453
9454 \end_layout
9455
9456 \end_inset
9457 </cell>
9458 </row>
9459 </lyxtabular>
9460
9461 \end_inset
9462
9463
9464 \begin_inset space \hfill{}
9465 \end_inset
9466
9467
9468 \end_layout
9469
9470 \begin_layout Standard
9471 \begin_inset VSpace medskip
9472 \end_inset
9473
9474 Vertikale Pfeile können auch als Begrenzungszeichen zusammen mit den in
9475  
9476 \begin_inset CommandInset ref
9477 LatexCommand ref
9478 reference "sub:Manuelle-Klammergrößen"
9479
9480 \end_inset
9481
9482  und 
9483 \begin_inset CommandInset ref
9484 LatexCommand ref
9485 reference "sub:Automatische-Klammergrößen"
9486
9487 \end_inset
9488
9489  beschriebenen Befehlen verwendet werden.
9490 \end_layout
9491
9492 \begin_layout Section
9493 Akzente
9494 \begin_inset CommandInset label
9495 LatexCommand label
9496 name "sec:Akzente"
9497
9498 \end_inset
9499
9500
9501 \begin_inset Index idx
9502 status collapsed
9503
9504 \begin_layout Plain Layout
9505 Akzente
9506 \end_layout
9507
9508 \end_inset
9509
9510
9511 \end_layout
9512
9513 \begin_layout Standard
9514 Akzente können über den Mathe-Werkzeugleistenknopf 
9515 \begin_inset Graphics
9516         filename ../../images/math/hat.png
9517         scale 85
9518
9519 \end_inset
9520
9521  oder mit den Befehlen eingefügt werden, die in den folgenden Unterkapiteln
9522  aufgelistet sind.
9523 \end_layout
9524
9525 \begin_layout Subsection
9526 Akzente für ein Zeichen
9527 \begin_inset ERT
9528 status collapsed
9529
9530 \begin_layout Plain Layout
9531
9532
9533 \backslash
9534 texorpdfstring{
9535 \end_layout
9536
9537 \end_inset
9538
9539
9540 \begin_inset Foot
9541 status collapsed
9542
9543 \begin_layout Plain Layout
9544 Akzente im Text siehe 
9545 \begin_inset CommandInset ref
9546 LatexCommand ref
9547 reference "sub:Sonderzeichen-Akzente"
9548
9549 \end_inset
9550
9551
9552 \end_layout
9553
9554 \end_inset
9555
9556
9557 \begin_inset ERT
9558 status collapsed
9559
9560 \begin_layout Plain Layout
9561
9562 }{}
9563 \end_layout
9564
9565 \end_inset
9566
9567
9568 \begin_inset Note Note
9569 status collapsed
9570
9571 \begin_layout Plain Layout
9572
9573 \series bold
9574
9575 \backslash
9576 texorpdfstring
9577 \series default
9578  dient dazu, dass die Fußnote nicht im PDF-Lesezeichen erscheint.
9579 \end_layout
9580
9581 \begin_layout Plain Layout
9582 Näheres zu 
9583 \series bold
9584
9585 \backslash
9586 texorpdfstring
9587 \series default
9588  steht in Kapitel 
9589 \begin_inset CommandInset ref
9590 LatexCommand ref
9591 reference "sub:Formeln-in-Überschriften"
9592
9593 \end_inset
9594
9595 .
9596 \end_layout
9597
9598 \end_inset
9599
9600
9601 \begin_inset CommandInset label
9602 LatexCommand label
9603 name "sub:Akzente-für-ein"
9604
9605 \end_inset
9606
9607
9608 \begin_inset Index idx
9609 status collapsed
9610
9611 \begin_layout Plain Layout
9612 Akzente ! für ein Zeichen
9613 \end_layout
9614
9615 \end_inset
9616
9617
9618 \end_layout
9619
9620 \begin_layout Standard
9621 \begin_inset space \hfill{}
9622 \end_inset
9623
9624
9625 \begin_inset Tabular
9626 <lyxtabular version="3" rows="8" columns="2">
9627 <features tabularvalignment="middle">
9628 <column alignment="center" valignment="top" width="0pt">
9629 <column alignment="center" valignment="top" width="0pt">
9630 <row>
9631 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
9632 \begin_inset Text
9633
9634 \begin_layout Plain Layout
9635 Befehl
9636 \end_layout
9637
9638 \end_inset
9639 </cell>
9640 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
9641 \begin_inset Text
9642
9643 \begin_layout Plain Layout
9644 Ergebnis
9645 \begin_inset Note Note
9646 status collapsed
9647
9648 \begin_layout Plain Layout
9649
9650 \series bold
9651
9652 \backslash
9653 raisebox
9654 \series default
9655  dient nur als Abstandhalter.
9656 \end_layout
9657
9658 \end_inset
9659
9660
9661 \end_layout
9662
9663 \end_inset
9664 </cell>
9665 </row>
9666 <row>
9667 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
9668 \begin_inset Text
9669
9670 \begin_layout Plain Layout
9671
9672 \backslash
9673 dot
9674 \begin_inset ERT
9675 status collapsed
9676
9677 \begin_layout Plain Layout
9678
9679
9680 \backslash
9681 leer 
9682 \end_layout
9683
9684 \end_inset
9685
9686 A
9687 \end_layout
9688
9689 \end_inset
9690 </cell>
9691 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
9692 \begin_inset Text
9693
9694 \begin_layout Plain Layout
9695 \begin_inset Formula $\raisebox{5mm}{}\dot{A}$
9696 \end_inset
9697
9698
9699 \end_layout
9700
9701 \end_inset
9702 </cell>
9703 </row>
9704 <row>
9705 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9706 \begin_inset Text
9707
9708 \begin_layout Plain Layout
9709
9710 \backslash
9711 ddot
9712 \begin_inset ERT
9713 status collapsed
9714
9715 \begin_layout Plain Layout
9716
9717
9718 \backslash
9719 leer 
9720 \end_layout
9721
9722 \end_inset
9723
9724 A
9725 \end_layout
9726
9727 \end_inset
9728 </cell>
9729 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9730 \begin_inset Text
9731
9732 \begin_layout Plain Layout
9733 \begin_inset Formula $\raisebox{5mm}{}\ddot{A}$
9734 \end_inset
9735
9736
9737 \end_layout
9738
9739 \end_inset
9740 </cell>
9741 </row>
9742 <row>
9743 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9744 \begin_inset Text
9745
9746 \begin_layout Plain Layout
9747
9748 \backslash
9749 dddot
9750 \begin_inset ERT
9751 status collapsed
9752
9753 \begin_layout Plain Layout
9754
9755
9756 \backslash
9757 leer 
9758 \end_layout
9759
9760 \end_inset
9761
9762 A
9763 \end_layout
9764
9765 \end_inset
9766 </cell>
9767 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9768 \begin_inset Text
9769
9770 \begin_layout Plain Layout
9771 \begin_inset Formula $\raisebox{5mm}{}\dddot{A}$
9772 \end_inset
9773
9774
9775 \end_layout
9776
9777 \end_inset
9778 </cell>
9779 </row>
9780 <row>
9781 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9782 \begin_inset Text
9783
9784 \begin_layout Plain Layout
9785
9786 \backslash
9787 ddddot
9788 \begin_inset ERT
9789 status collapsed
9790
9791 \begin_layout Plain Layout
9792
9793
9794 \backslash
9795 leer 
9796 \end_layout
9797
9798 \end_inset
9799
9800 A
9801 \end_layout
9802
9803 \end_inset
9804 </cell>
9805 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9806 \begin_inset Text
9807
9808 \begin_layout Plain Layout
9809 \begin_inset Formula $\raisebox{5mm}{}\ddddot{A}$
9810 \end_inset
9811
9812
9813 \end_layout
9814
9815 \end_inset
9816 </cell>
9817 </row>
9818 <row>
9819 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9820 \begin_inset Text
9821
9822 \begin_layout Plain Layout
9823
9824 \backslash
9825 vec
9826 \begin_inset ERT
9827 status collapsed
9828
9829 \begin_layout Plain Layout
9830
9831
9832 \backslash
9833 leer 
9834 \end_layout
9835
9836 \end_inset
9837
9838 A
9839 \begin_inset Index idx
9840 status collapsed
9841
9842 \begin_layout Plain Layout
9843 Vektoren
9844 \end_layout
9845
9846 \end_inset
9847
9848
9849 \end_layout
9850
9851 \end_inset
9852 </cell>
9853 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9854 \begin_inset Text
9855
9856 \begin_layout Plain Layout
9857 \begin_inset Formula $\raisebox{5mm}{}\vec{A}$
9858 \end_inset
9859
9860
9861 \end_layout
9862
9863 \end_inset
9864 </cell>
9865 </row>
9866 <row>
9867 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9868 \begin_inset Text
9869
9870 \begin_layout Plain Layout
9871
9872 \backslash
9873 bar
9874 \begin_inset ERT
9875 status collapsed
9876
9877 \begin_layout Plain Layout
9878
9879
9880 \backslash
9881 leer 
9882 \end_layout
9883
9884 \end_inset
9885
9886 A
9887 \end_layout
9888
9889 \end_inset
9890 </cell>
9891 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9892 \begin_inset Text
9893
9894 \begin_layout Plain Layout
9895 \begin_inset Formula $\raisebox{5mm}{}\bar{A}$
9896 \end_inset
9897
9898
9899 \end_layout
9900
9901 \end_inset
9902 </cell>
9903 </row>
9904 <row>
9905 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9906 \begin_inset Text
9907
9908 \begin_layout Plain Layout
9909
9910 \backslash
9911 mathring
9912 \begin_inset ERT
9913 status collapsed
9914
9915 \begin_layout Plain Layout
9916
9917
9918 \backslash
9919 leer 
9920 \end_layout
9921
9922 \end_inset
9923
9924 A
9925 \end_layout
9926
9927 \end_inset
9928 </cell>
9929 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9930 \begin_inset Text
9931
9932 \begin_layout Plain Layout
9933 \begin_inset Formula $\raisebox{5mm}{}\mathring{A}$
9934 \end_inset
9935
9936
9937 \end_layout
9938
9939 \end_inset
9940 </cell>
9941 </row>
9942 </lyxtabular>
9943
9944 \end_inset
9945
9946
9947 \begin_inset space \hfill{}
9948 \end_inset
9949
9950
9951 \begin_inset Tabular
9952 <lyxtabular version="3" rows="7" columns="2">
9953 <features tabularvalignment="middle">
9954 <column alignment="center" valignment="top" width="0pt">
9955 <column alignment="center" valignment="top" width="0pt">
9956 <row>
9957 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
9958 \begin_inset Text
9959
9960 \begin_layout Plain Layout
9961 Befehl
9962 \end_layout
9963
9964 \end_inset
9965 </cell>
9966 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
9967 \begin_inset Text
9968
9969 \begin_layout Plain Layout
9970 Ergebnis
9971 \end_layout
9972
9973 \end_inset
9974 </cell>
9975 </row>
9976 <row>
9977 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
9978 \begin_inset Text
9979
9980 \begin_layout Plain Layout
9981
9982 \backslash
9983 tilde
9984 \begin_inset ERT
9985 status collapsed
9986
9987 \begin_layout Plain Layout
9988
9989
9990 \backslash
9991 leer 
9992 \end_layout
9993
9994 \end_inset
9995
9996 A
9997 \end_layout
9998
9999 \end_inset
10000 </cell>
10001 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
10002 \begin_inset Text
10003
10004 \begin_layout Plain Layout
10005 \begin_inset Formula $\raisebox{5mm}{}\tilde{A}$
10006 \end_inset
10007
10008
10009 \end_layout
10010
10011 \end_inset
10012 </cell>
10013 </row>
10014 <row>
10015 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10016 \begin_inset Text
10017
10018 \begin_layout Plain Layout
10019
10020 \backslash
10021 hat
10022 \begin_inset ERT
10023 status collapsed
10024
10025 \begin_layout Plain Layout
10026
10027
10028 \backslash
10029 leer 
10030 \end_layout
10031
10032 \end_inset
10033
10034 A
10035 \end_layout
10036
10037 \end_inset
10038 </cell>
10039 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
10040 \begin_inset Text
10041
10042 \begin_layout Plain Layout
10043 \begin_inset Formula $\raisebox{5mm}{}\hat{A}$
10044 \end_inset
10045
10046
10047 \end_layout
10048
10049 \end_inset
10050 </cell>
10051 </row>
10052 <row>
10053 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10054 \begin_inset Text
10055
10056 \begin_layout Plain Layout
10057
10058 \backslash
10059 check
10060 \begin_inset ERT
10061 status collapsed
10062
10063 \begin_layout Plain Layout
10064
10065
10066 \backslash
10067 leer 
10068 \end_layout
10069
10070 \end_inset
10071
10072 A
10073 \end_layout
10074
10075 \end_inset
10076 </cell>
10077 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
10078 \begin_inset Text
10079
10080 \begin_layout Plain Layout
10081 \begin_inset Formula $\raisebox{5mm}{}\check{A}$
10082 \end_inset
10083
10084
10085 \end_layout
10086
10087 \end_inset
10088 </cell>
10089 </row>
10090 <row>
10091 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10092 \begin_inset Text
10093
10094 \begin_layout Plain Layout
10095
10096 \backslash
10097 acute
10098 \begin_inset ERT
10099 status collapsed
10100
10101 \begin_layout Plain Layout
10102
10103
10104 \backslash
10105 leer 
10106 \end_layout
10107
10108 \end_inset
10109
10110 A
10111 \end_layout
10112
10113 \end_inset
10114 </cell>
10115 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
10116 \begin_inset Text
10117
10118 \begin_layout Plain Layout
10119 \begin_inset Formula $\raisebox{5mm}{}\acute{A}$
10120 \end_inset
10121
10122
10123 \end_layout
10124
10125 \end_inset
10126 </cell>
10127 </row>
10128 <row>
10129 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10130 \begin_inset Text
10131
10132 \begin_layout Plain Layout
10133
10134 \backslash
10135 grave
10136 \begin_inset ERT
10137 status collapsed
10138
10139 \begin_layout Plain Layout
10140
10141
10142 \backslash
10143 leer 
10144 \end_layout
10145
10146 \end_inset
10147
10148 A
10149 \end_layout
10150
10151 \end_inset
10152 </cell>
10153 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
10154 \begin_inset Text
10155
10156 \begin_layout Plain Layout
10157 \begin_inset Formula $\raisebox{5mm}{}\grave{A}$
10158 \end_inset
10159
10160
10161 \end_layout
10162
10163 \end_inset
10164 </cell>
10165 </row>
10166 <row>
10167 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10168 \begin_inset Text
10169
10170 \begin_layout Plain Layout
10171
10172 \backslash
10173 breve
10174 \begin_inset ERT
10175 status collapsed
10176
10177 \begin_layout Plain Layout
10178
10179
10180 \backslash
10181 leer 
10182 \end_layout
10183
10184 \end_inset
10185
10186 A
10187 \end_layout
10188
10189 \end_inset
10190 </cell>
10191 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
10192 \begin_inset Text
10193
10194 \begin_layout Plain Layout
10195 \begin_inset Formula $\raisebox{5mm}{}\breve{A}$
10196 \end_inset
10197
10198
10199 \end_layout
10200
10201 \end_inset
10202 </cell>
10203 </row>
10204 </lyxtabular>
10205
10206 \end_inset
10207
10208
10209 \begin_inset space \hfill{}
10210 \end_inset
10211
10212
10213 \end_layout
10214
10215 \begin_layout Standard
10216 \begin_inset VSpace bigskip
10217 \end_inset
10218
10219 Akzente wie z.B.
10220  é können direkt in Formeln eingegeben werden.
10221  LyX transformiert sie dann in den entsprechenden Akzentbefehl.
10222  Für Umlaute
10223 \begin_inset Index idx
10224 status collapsed
10225
10226 \begin_layout Plain Layout
10227 Umlaute
10228 \end_layout
10229
10230 \end_inset
10231
10232  ist es besser wenn man ein Anführungszeichen vor den Selbstlaut schreibt.
10233  Diese beiden Zeichen bilden dann für LaTeX 
10234 \emph on
10235 ein
10236 \emph default
10237  Zeichen.
10238  Im Gegensatz zu 
10239 \series bold
10240
10241 \backslash
10242 ddot
10243 \series default
10244  entstehen damit 
10245 \begin_inset Quotes gld
10246 \end_inset
10247
10248 echte
10249 \begin_inset Quotes grd
10250 \end_inset
10251
10252  Umlaute, was folgendes Beispiel zeigt:
10253 \end_layout
10254
10255 \begin_layout Standard
10256 \begin_inset VSpace -2mm
10257 \end_inset
10258
10259
10260 \end_layout
10261
10262 \begin_layout Standard
10263 \align center
10264 \begin_inset Tabular
10265 <lyxtabular version="3" rows="3" columns="2">
10266 <features tabularvalignment="middle">
10267 <column alignment="center" valignment="top" width="0">
10268 <column alignment="center" valignment="top" width="0">
10269 <row>
10270 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
10271 \begin_inset Text
10272
10273 \begin_layout Plain Layout
10274 Befehl
10275 \end_layout
10276
10277 \end_inset
10278 </cell>
10279 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
10280 \begin_inset Text
10281
10282 \begin_layout Plain Layout
10283 Ergebnis
10284 \begin_inset Note Note
10285 status collapsed
10286
10287 \begin_layout Plain Layout
10288
10289 \series bold
10290
10291 \backslash
10292 raisebox
10293 \series default
10294  dient nur als Abstandhalter.
10295 \end_layout
10296
10297 \end_inset
10298
10299
10300 \end_layout
10301
10302 \end_inset
10303 </cell>
10304 </row>
10305 <row>
10306 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10307 \begin_inset Text
10308
10309 \begin_layout Plain Layout
10310 \begin_inset Quotes grd
10311 \end_inset
10312
10313 i
10314 \end_layout
10315
10316 \end_inset
10317 </cell>
10318 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10319 \begin_inset Text
10320
10321 \begin_layout Plain Layout
10322 \begin_inset Formula $"i$
10323 \end_inset
10324
10325
10326 \end_layout
10327
10328 \end_inset
10329 </cell>
10330 </row>
10331 <row>
10332 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
10333 \begin_inset Text
10334
10335 \begin_layout Plain Layout
10336
10337 \backslash
10338 ddot
10339 \begin_inset ERT
10340 status collapsed
10341
10342 \begin_layout Plain Layout
10343
10344
10345 \backslash
10346 leer 
10347 \end_layout
10348
10349 \end_inset
10350
10351 i
10352 \end_layout
10353
10354 \end_inset
10355 </cell>
10356 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
10357 \begin_inset Text
10358
10359 \begin_layout Plain Layout
10360 \begin_inset Formula $\raisebox{5mm}{}\ddot{i}$
10361 \end_inset
10362
10363
10364 \end_layout
10365
10366 \end_inset
10367 </cell>
10368 </row>
10369 </lyxtabular>
10370
10371 \end_inset
10372
10373
10374 \end_layout
10375
10376 \begin_layout Standard
10377 Ein weiterer Vorteil gegenüber 
10378 \series bold
10379
10380 \backslash
10381 ddot
10382 \series default
10383  ist, dass man Umlaute direkt in mathematischen Text konvertieren kann,
10384  denn die obigen Akzentbefehle sind 
10385 \emph on
10386 im mathematischen Text\SpecialChar \-
10387 modus nicht erlaubt
10388 \emph default
10389 .
10390  Um ein akzentuiertes Zeichen in mathematischen Text zu überführen, darf
10391  nur das Zeichen unter dem Akzent umgewandelt werden.
10392  Das gilt auch für alle anderen Umwandlungen wie z.
10393 \begin_inset space \thinspace{}
10394 \end_inset
10395
10396 B.
10397  in kursiv oder fett.
10398 \end_layout
10399
10400 \begin_layout Standard
10401 Im mathematischen Textmodus können Umlaute und andere akzentuierten Zeichen
10402  direkt eingegeben werden.
10403 \end_layout
10404
10405 \begin_layout Subsection
10406 Akzente für mehrere Zeichen
10407 \begin_inset Index idx
10408 status collapsed
10409
10410 \begin_layout Plain Layout
10411 Akzente ! für mehrere Zeichen
10412 \end_layout
10413
10414 \end_inset
10415
10416
10417 \end_layout
10418
10419 \begin_layout Standard
10420 \begin_inset space \hfill{}
10421 \end_inset
10422
10423
10424 \begin_inset Tabular
10425 <lyxtabular version="3" rows="5" columns="2">
10426 <features tabularvalignment="middle">
10427 <column alignment="center" valignment="top" width="0pt">
10428 <column alignment="center" valignment="top" width="0pt">
10429 <row>
10430 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
10431 \begin_inset Text
10432
10433 \begin_layout Plain Layout
10434 Befehl
10435 \end_layout
10436
10437 \end_inset
10438 </cell>
10439 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
10440 \begin_inset Text
10441
10442 \begin_layout Plain Layout
10443 Ergebnis
10444 \begin_inset Note Note
10445 status collapsed
10446
10447 \begin_layout Plain Layout
10448
10449 \series bold
10450
10451 \backslash
10452 raisebox
10453 \series default
10454  dient nur als Abstandhalter.
10455 \end_layout
10456
10457 \end_inset
10458
10459
10460 \end_layout
10461
10462 \end_inset
10463 </cell>
10464 </row>
10465 <row>
10466 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
10467 \begin_inset Text
10468
10469 \begin_layout Plain Layout
10470
10471 \backslash
10472 overleftarrow
10473 \begin_inset ERT
10474 status collapsed
10475
10476 \begin_layout Plain Layout
10477
10478
10479 \backslash
10480 leer 
10481 \end_layout
10482
10483 \end_inset
10484
10485 A=B
10486 \end_layout
10487
10488 \end_inset
10489 </cell>
10490 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
10491 \begin_inset Text
10492
10493 \begin_layout Plain Layout
10494 \begin_inset Formula $\raisebox{6mm}{}\overleftarrow{A=B}\raisebox{-2mm}{}$
10495 \end_inset
10496
10497
10498 \end_layout
10499
10500 \end_inset
10501 </cell>
10502 </row>
10503 <row>
10504 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10505 \begin_inset Text
10506
10507 \begin_layout Plain Layout
10508
10509 \backslash
10510 underleftarrow
10511 \begin_inset ERT
10512 status collapsed
10513
10514 \begin_layout Plain Layout
10515
10516
10517 \backslash
10518 leer 
10519 \end_layout
10520
10521 \end_inset
10522
10523 A=B
10524 \end_layout
10525
10526 \end_inset
10527 </cell>
10528 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
10529 \begin_inset Text
10530
10531 \begin_layout Plain Layout
10532 \begin_inset Formula $\raisebox{5mm}{}\underleftarrow{A=B}\raisebox{-3mm}{}$
10533 \end_inset
10534
10535
10536 \end_layout
10537
10538 \end_inset
10539 </cell>
10540 </row>
10541 <row>
10542 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10543 \begin_inset Text
10544
10545 \begin_layout Plain Layout
10546
10547 \backslash
10548 overleftrightarrow
10549 \begin_inset ERT
10550 status collapsed
10551
10552 \begin_layout Plain Layout
10553
10554
10555 \backslash
10556 leer 
10557 \end_layout
10558
10559 \end_inset
10560
10561 A=B
10562 \end_layout
10563
10564 \end_inset
10565 </cell>
10566 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
10567 \begin_inset Text
10568
10569 \begin_layout Plain Layout
10570 \begin_inset Formula $\raisebox{6mm}{}\overleftrightarrow{A=B}\raisebox{-2mm}{}$
10571 \end_inset
10572
10573
10574 \end_layout
10575
10576 \end_inset
10577 </cell>
10578 </row>
10579 <row>
10580 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10581 \begin_inset Text
10582
10583 \begin_layout Plain Layout
10584
10585 \backslash
10586 underleftrightarrow
10587 \begin_inset ERT
10588 status collapsed
10589
10590 \begin_layout Plain Layout
10591
10592
10593 \backslash
10594 leer 
10595 \end_layout
10596
10597 \end_inset
10598
10599 A=B
10600 \end_layout
10601
10602 \end_inset
10603 </cell>
10604 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
10605 \begin_inset Text
10606
10607 \begin_layout Plain Layout
10608 \begin_inset Formula $\raisebox{5mm}{}\underleftrightarrow{A=B}\raisebox{-3mm}{}$
10609 \end_inset
10610
10611
10612 \end_layout
10613
10614 \end_inset
10615 </cell>
10616 </row>
10617 </lyxtabular>
10618
10619 \end_inset
10620
10621
10622 \begin_inset space \hfill{}
10623 \end_inset
10624
10625
10626 \begin_inset Tabular
10627 <lyxtabular version="3" rows="5" columns="2">
10628 <features tabularvalignment="middle">
10629 <column alignment="center" valignment="top" width="0pt">
10630 <column alignment="center" valignment="top" width="0pt">
10631 <row>
10632 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
10633 \begin_inset Text
10634
10635 \begin_layout Plain Layout
10636 Befehl
10637 \end_layout
10638
10639 \end_inset
10640 </cell>
10641 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
10642 \begin_inset Text
10643
10644 \begin_layout Plain Layout
10645 Ergebnis
10646 \end_layout
10647
10648 \end_inset
10649 </cell>
10650 </row>
10651 <row>
10652 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
10653 \begin_inset Text
10654
10655 \begin_layout Plain Layout
10656
10657 \backslash
10658 overrightarrow
10659 \begin_inset ERT
10660 status collapsed
10661
10662 \begin_layout Plain Layout
10663
10664
10665 \backslash
10666 leer 
10667 \end_layout
10668
10669 \end_inset
10670
10671 A=B
10672 \end_layout
10673
10674 \end_inset
10675 </cell>
10676 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
10677 \begin_inset Text
10678
10679 \begin_layout Plain Layout
10680 \begin_inset Formula $\raisebox{6mm}{}\overrightarrow{A=B}\raisebox{-2mm}{}$
10681 \end_inset
10682
10683
10684 \end_layout
10685
10686 \end_inset
10687 </cell>
10688 </row>
10689 <row>
10690 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10691 \begin_inset Text
10692
10693 \begin_layout Plain Layout
10694
10695 \backslash
10696 underrightarrow
10697 \begin_inset ERT
10698 status collapsed
10699
10700 \begin_layout Plain Layout
10701
10702
10703 \backslash
10704 leer 
10705 \end_layout
10706
10707 \end_inset
10708
10709 A=B
10710 \end_layout
10711
10712 \end_inset
10713 </cell>
10714 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
10715 \begin_inset Text
10716
10717 \begin_layout Plain Layout
10718 \begin_inset Formula $\raisebox{5mm}{}\underrightarrow{A=B}\raisebox{-3mm}{}$
10719 \end_inset
10720
10721
10722 \end_layout
10723
10724 \end_inset
10725 </cell>
10726 </row>
10727 <row>
10728 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10729 \begin_inset Text
10730
10731 \begin_layout Plain Layout
10732
10733 \backslash
10734 widetilde
10735 \begin_inset ERT
10736 status collapsed
10737
10738 \begin_layout Plain Layout
10739
10740
10741 \backslash
10742 leer 
10743 \end_layout
10744
10745 \end_inset
10746
10747 A=B
10748 \end_layout
10749
10750 \end_inset
10751 </cell>
10752 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
10753 \begin_inset Text
10754
10755 \begin_layout Plain Layout
10756 \begin_inset Formula $\raisebox{6mm}{}\widetilde{A=B}\raisebox{-2mm}{}$
10757 \end_inset
10758
10759
10760 \end_layout
10761
10762 \end_inset
10763 </cell>
10764 </row>
10765 <row>
10766 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10767 \begin_inset Text
10768
10769 \begin_layout Plain Layout
10770
10771 \backslash
10772 widehat
10773 \begin_inset ERT
10774 status collapsed
10775
10776 \begin_layout Plain Layout
10777
10778
10779 \backslash
10780 leer 
10781 \end_layout
10782
10783 \end_inset
10784
10785 A=B
10786 \end_layout
10787
10788 \end_inset
10789 </cell>
10790 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
10791 \begin_inset Text
10792
10793 \begin_layout Plain Layout
10794 \begin_inset Formula $\raisebox{6mm}{}\widehat{A=B}\raisebox{-2mm}{}$
10795 \end_inset
10796
10797
10798 \end_layout
10799
10800 \end_inset
10801 </cell>
10802 </row>
10803 </lyxtabular>
10804
10805 \end_inset
10806
10807
10808 \begin_inset space \hfill{}
10809 \end_inset
10810
10811
10812 \end_layout
10813
10814 \begin_layout Standard
10815 \begin_inset VSpace medskip
10816 \end_inset
10817
10818 Mit diesen Befehlen können beliebig viele Zeichen akzentuiert werden.
10819  Die Akzente
10820 \begin_inset Newline linebreak
10821 \end_inset
10822
10823
10824 \series bold
10825
10826 \backslash
10827 widetilde
10828 \series default
10829  und 
10830 \series bold
10831
10832 \backslash
10833 widehat
10834 \series default
10835  werden aber im Ausdruck nur mit einer Länge von etwa drei Zeichen gesetzt,
10836  was folgendes Beispiel verdeutlicht:
10837 \begin_inset Formula 
10838 \[
10839 \widetilde{A+B=C-D}
10840 \]
10841
10842 \end_inset
10843
10844
10845 \end_layout
10846
10847 \begin_layout Standard
10848 Mit den im vorigen Kapitel beschriebenen Befehlen 
10849 \series bold
10850
10851 \backslash
10852 overset
10853 \series default
10854
10855 \begin_inset Index idx
10856 status collapsed
10857
10858 \begin_layout Plain Layout
10859 Befehle ! O ! 
10860 \backslash
10861 overset
10862 \end_layout
10863
10864 \end_inset
10865
10866  und 
10867 \series bold
10868
10869 \backslash
10870 underset
10871 \series default
10872
10873 \begin_inset Index idx
10874 status collapsed
10875
10876 \begin_layout Plain Layout
10877 Befehle ! U ! 
10878 \backslash
10879 underset
10880 \end_layout
10881
10882 \end_inset
10883
10884  ist es auch möglich mehrere Zeichen zu akzentuieren.
10885  Der Befehl 
10886 \series bold
10887
10888 \backslash
10889 underset
10890 \begin_inset ERT
10891 status collapsed
10892
10893 \begin_layout Plain Layout
10894
10895
10896 \backslash
10897 leer 
10898 \end_layout
10899
10900 \end_inset
10901
10902 A=B
10903 \begin_inset Formula $\downarrow$
10904 \end_inset
10905
10906 ***
10907 \series default
10908  ergibt:
10909 \begin_inset Formula 
10910 \[
10911 \underset{***}{A=B}
10912 \]
10913
10914 \end_inset
10915
10916
10917 \end_layout
10918
10919 \begin_layout Section
10920 Leerraum
10921 \begin_inset CommandInset label
10922 LatexCommand label
10923 name "sub:Leerraum"
10924
10925 \end_inset
10926
10927
10928 \begin_inset Index idx
10929 status collapsed
10930
10931 \begin_layout Plain Layout
10932 Leerraum ! horizontaler
10933 \end_layout
10934
10935 \end_inset
10936
10937
10938 \end_layout
10939
10940 \begin_layout Subsection
10941 Vordefinierter Leerraum
10942 \begin_inset CommandInset label
10943 LatexCommand label
10944 name "sub:Vordefinierter-Leerraum"
10945
10946 \end_inset
10947
10948
10949 \begin_inset Index idx
10950 status collapsed
10951
10952 \begin_layout Plain Layout
10953 Leerraum ! horizontaler ! vordefiniert
10954 \end_layout
10955
10956 \end_inset
10957
10958
10959 \end_layout
10960
10961 \begin_layout Standard
10962 Ab und an ist es notwendig in einer Formel horizontalen Leerraum einzufügen.
10963  Dazu gibt man ein geschütztes Leerzeichen ein.
10964  Es erscheint ein 
10965 \begin_inset Quotes gld
10966 \end_inset
10967
10968
10969 \color blue
10970
10971 \begin_inset ERT
10972 status collapsed
10973
10974 \begin_layout Plain Layout
10975
10976
10977 \backslash
10978 leer 
10979 \end_layout
10980
10981 \end_inset
10982
10983
10984 \color inherit
10985
10986 \begin_inset Quotes grd
10987 \end_inset
10988
10989  und man kann durch mehrfaches Drücken der Leertaste aus acht verschiedenen
10990  Leerraum-Größen wählen.
10991  Man kann die Leerräume auch über den Mathe-Werkzeugleistenknopf 
10992 \begin_inset Graphics
10993         filename ../../images/math/space.png
10994         scale 85
10995
10996 \end_inset
10997
10998  oder mit einzelnen Befehlen aufrufen.
10999  Unabhängig vom eingegebenen Befehl kann man durch Drücken der Leertaste
11000  danach wieder aus allen Größen wählen.
11001 \end_layout
11002
11003 \begin_layout Standard
11004 \align center
11005 \begin_inset VSpace -5mm
11006 \end_inset
11007
11008
11009 \begin_inset Tabular
11010 <lyxtabular version="3" rows="3" columns="7">
11011 <features tabularvalignment="middle">
11012 <column alignment="center" valignment="middle" width="6.8cm">
11013 <column alignment="center" valignment="top" width="0pt">
11014 <column alignment="center" valignment="top" width="0pt">
11015 <column alignment="center" valignment="top" width="0pt">
11016 <column alignment="center" valignment="top" width="0pt">
11017 <column alignment="center" valignment="top" width="0pt">
11018 <column alignment="center" valignment="top" width="0pt">
11019 <row>
11020 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11021 \begin_inset Text
11022
11023 \begin_layout Plain Layout
11024 Befehl
11025 \end_layout
11026
11027 \end_inset
11028 </cell>
11029 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11030 \begin_inset Text
11031
11032 \begin_layout Plain Layout
11033
11034 \backslash
11035 ,
11036 \end_layout
11037
11038 \end_inset
11039 </cell>
11040 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11041 \begin_inset Text
11042
11043 \begin_layout Plain Layout
11044
11045 \backslash
11046 :
11047 \end_layout
11048
11049 \end_inset
11050 </cell>
11051 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11052 \begin_inset Text
11053
11054 \begin_layout Plain Layout
11055
11056 \backslash
11057 ;
11058 \end_layout
11059
11060 \end_inset
11061 </cell>
11062 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11063 \begin_inset Text
11064
11065 \begin_layout Plain Layout
11066
11067 \backslash
11068 quad
11069 \end_layout
11070
11071 \end_inset
11072 </cell>
11073 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11074 \begin_inset Text
11075
11076 \begin_layout Plain Layout
11077
11078 \backslash
11079 qquad
11080 \end_layout
11081
11082 \end_inset
11083 </cell>
11084 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
11085 \begin_inset Text
11086
11087 \begin_layout Plain Layout
11088
11089 \backslash
11090 !
11091 \end_layout
11092
11093 \end_inset
11094 </cell>
11095 </row>
11096 <row>
11097 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none" width="7cm">
11098 \begin_inset Text
11099
11100 \begin_layout Plain Layout
11101 Anzahl der Leertastendrücke nach Eingabe des geschützten Leerzeichens
11102 \end_layout
11103
11104 \end_inset
11105 </cell>
11106 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11107 \begin_inset Text
11108
11109 \begin_layout Plain Layout
11110 0
11111 \end_layout
11112
11113 \end_inset
11114 </cell>
11115 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11116 \begin_inset Text
11117
11118 \begin_layout Plain Layout
11119 1
11120 \end_layout
11121
11122 \end_inset
11123 </cell>
11124 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11125 \begin_inset Text
11126
11127 \begin_layout Plain Layout
11128 2
11129 \end_layout
11130
11131 \end_inset
11132 </cell>
11133 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11134 \begin_inset Text
11135
11136 \begin_layout Plain Layout
11137 3
11138 \end_layout
11139
11140 \end_inset
11141 </cell>
11142 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11143 \begin_inset Text
11144
11145 \begin_layout Plain Layout
11146 4
11147 \end_layout
11148
11149 \end_inset
11150 </cell>
11151 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
11152 \begin_inset Text
11153
11154 \begin_layout Plain Layout
11155 5
11156 \end_layout
11157
11158 \end_inset
11159 </cell>
11160 </row>
11161 <row>
11162 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11163 \begin_inset Text
11164
11165 \begin_layout Plain Layout
11166 Ergebnis
11167 \end_layout
11168
11169 \end_inset
11170 </cell>
11171 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11172 \begin_inset Text
11173
11174 \begin_layout Plain Layout
11175 \begin_inset Formula $A\, B$
11176 \end_inset
11177
11178
11179 \end_layout
11180
11181 \end_inset
11182 </cell>
11183 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11184 \begin_inset Text
11185
11186 \begin_layout Plain Layout
11187 \begin_inset Formula $A\: B$
11188 \end_inset
11189
11190
11191 \end_layout
11192
11193 \end_inset
11194 </cell>
11195 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11196 \begin_inset Text
11197
11198 \begin_layout Plain Layout
11199 \begin_inset Formula $A\; B$
11200 \end_inset
11201
11202
11203 \end_layout
11204
11205 \end_inset
11206 </cell>
11207 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11208 \begin_inset Text
11209
11210 \begin_layout Plain Layout
11211 \begin_inset Formula $A\quad B$
11212 \end_inset
11213
11214
11215 \end_layout
11216
11217 \end_inset
11218 </cell>
11219 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11220 \begin_inset Text
11221
11222 \begin_layout Plain Layout
11223 \begin_inset Formula $A\qquad B$
11224 \end_inset
11225
11226
11227 \end_layout
11228
11229 \end_inset
11230 </cell>
11231 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
11232 \begin_inset Text
11233
11234 \begin_layout Plain Layout
11235 \begin_inset Formula $A\! B$
11236 \end_inset
11237
11238
11239 \end_layout
11240
11241 \end_inset
11242 </cell>
11243 </row>
11244 </lyxtabular>
11245
11246 \end_inset
11247
11248
11249 \end_layout
11250
11251 \begin_layout Standard
11252 Die letzte Größe scheint überhaupt keinen Leerraum zu produzieren.
11253  In LyX ist diese allerdings auch im Gegensatz zu allen anderen rot eingefärbt,
11254  denn sie erstellt negativen Leerraum.
11255  Es gibt noch zwei weitere negative Leerräume:
11256 \end_layout
11257
11258 \begin_layout Standard
11259 \align center
11260 \begin_inset Tabular
11261 <lyxtabular version="3" rows="3" columns="3">
11262 <features tabularvalignment="middle">
11263 <column alignment="center" valignment="middle" width="6.8cm">
11264 <column alignment="center" valignment="top" width="0pt">
11265 <column alignment="center" valignment="top" width="0pt">
11266 <row>
11267 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11268 \begin_inset Text
11269
11270 \begin_layout Plain Layout
11271 Befehl
11272 \end_layout
11273
11274 \end_inset
11275 </cell>
11276 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11277 \begin_inset Text
11278
11279 \begin_layout Plain Layout
11280
11281 \backslash
11282 negmedspace
11283 \end_layout
11284
11285 \end_inset
11286 </cell>
11287 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
11288 \begin_inset Text
11289
11290 \begin_layout Plain Layout
11291
11292 \backslash
11293 negthickspace
11294 \end_layout
11295
11296 \end_inset
11297 </cell>
11298 </row>
11299 <row>
11300 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11301 \begin_inset Text
11302
11303 \begin_layout Plain Layout
11304 Anzahl der Leertastendrücke nach Eingabe des geschützten Leerzeichens
11305 \end_layout
11306
11307 \end_inset
11308 </cell>
11309 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11310 \begin_inset Text
11311
11312 \begin_layout Plain Layout
11313 6
11314 \end_layout
11315
11316 \end_inset
11317 </cell>
11318 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
11319 \begin_inset Text
11320
11321 \begin_layout Plain Layout
11322 7
11323 \end_layout
11324
11325 \end_inset
11326 </cell>
11327 </row>
11328 <row>
11329 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11330 \begin_inset Text
11331
11332 \begin_layout Plain Layout
11333 Ergebnis
11334 \end_layout
11335
11336 \end_inset
11337 </cell>
11338 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11339 \begin_inset Text
11340
11341 \begin_layout Plain Layout
11342 \begin_inset Formula $A\negmedspace B$
11343 \end_inset
11344
11345
11346 \end_layout
11347
11348 \end_inset
11349 </cell>
11350 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
11351 \begin_inset Text
11352
11353 \begin_layout Plain Layout
11354 \begin_inset Formula $A\negthickspace B$
11355 \end_inset
11356
11357
11358 \end_layout
11359
11360 \end_inset
11361 </cell>
11362 </row>
11363 </lyxtabular>
11364
11365 \end_inset
11366
11367
11368 \end_layout
11369
11370 \begin_layout Standard
11371 Negative Leerräume bewirken, dass sich benachbarte Zeichen überschneiden.
11372  Man kann auf diese Weise Ligaturen erzwingen, was z.
11373 \begin_inset space \thinspace{}
11374 \end_inset
11375
11376 B.
11377  für Summenzeichen von Nutzen ist: 
11378 \end_layout
11379
11380 \begin_layout Standard
11381 \align center
11382 \begin_inset Tabular
11383 <lyxtabular version="3" rows="3" columns="2">
11384 <features tabularvalignment="middle">
11385 <column alignment="center" valignment="top" width="0">
11386 <column alignment="center" valignment="top" width="0">
11387 <row>
11388 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11389 \begin_inset Text
11390
11391 \begin_layout Plain Layout
11392 Befehl
11393 \end_layout
11394
11395 \end_inset
11396 </cell>
11397 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
11398 \begin_inset Text
11399
11400 \begin_layout Plain Layout
11401 Ergebnis
11402 \begin_inset Note Note
11403 status collapsed
11404
11405 \begin_layout Plain Layout
11406
11407 \series bold
11408
11409 \backslash
11410 raisebox
11411 \series default
11412  dient nur als Abstandhalter.
11413 \end_layout
11414
11415 \end_inset
11416
11417
11418 \end_layout
11419
11420 \end_inset
11421 </cell>
11422 </row>
11423 <row>
11424 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11425 \begin_inset Text
11426
11427 \begin_layout Plain Layout
11428
11429 \backslash
11430 sum
11431 \backslash
11432 sum
11433 \begin_inset ERT
11434 status collapsed
11435
11436 \begin_layout Plain Layout
11437
11438
11439 \backslash
11440 leer 
11441 \end_layout
11442
11443 \end_inset
11444
11445 f_kl
11446 \end_layout
11447
11448 \end_inset
11449 </cell>
11450 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11451 \begin_inset Text
11452
11453 \begin_layout Plain Layout
11454 \begin_inset Formula $\raisebox{4.5mm}{}\sum\sum f_{kl}\raisebox{-2.5mm}{}$
11455 \end_inset
11456
11457
11458 \end_layout
11459
11460 \end_inset
11461 </cell>
11462 </row>
11463 <row>
11464 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11465 \begin_inset Text
11466
11467 \begin_layout Plain Layout
11468
11469 \backslash
11470 sum
11471 \backslash
11472 negmedspace
11473 \backslash
11474 sum
11475 \begin_inset ERT
11476 status collapsed
11477
11478 \begin_layout Plain Layout
11479
11480
11481 \backslash
11482 leer 
11483 \end_layout
11484
11485 \end_inset
11486
11487 f_kl
11488 \end_layout
11489
11490 \end_inset
11491 </cell>
11492 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
11493 \begin_inset Text
11494
11495 \begin_layout Plain Layout
11496 \begin_inset Formula $\raisebox{4.5mm}{}\sum\negmedspace\sum f_{kl}\raisebox{-2.5mm}{}$
11497 \end_inset
11498
11499
11500 \end_layout
11501
11502 \end_inset
11503 </cell>
11504 </row>
11505 </lyxtabular>
11506
11507 \end_inset
11508
11509
11510 \end_layout
11511
11512 \begin_layout Standard
11513 Relationen, wie z.
11514 \begin_inset space \thinspace{}
11515 \end_inset
11516
11517 B.
11518  Gleichheitszeichen, sind immer von Leerraum umgeben.
11519  Will man dies unterdrücken, schreibt man das Gleichheitszeichen in eine
11520  TeX-Klammer.
11521  Die Wirkung kann man an folgendem Beispiel gut erkennen:
11522 \end_layout
11523
11524 \begin_layout Standard
11525 \align center
11526 \begin_inset Tabular
11527 <lyxtabular version="3" rows="2" columns="2">
11528 <features tabularvalignment="middle">
11529 <column alignment="center" valignment="top" width="0pt">
11530 <column alignment="center" valignment="top" width="0pt">
11531 <row>
11532 <cell alignment="center" valignment="top" usebox="none">
11533 \begin_inset Text
11534
11535 \begin_layout Plain Layout
11536 normale Gleichung
11537 \end_layout
11538
11539 \end_inset
11540 </cell>
11541 <cell alignment="center" valignment="top" usebox="none">
11542 \begin_inset Text
11543
11544 \begin_layout Plain Layout
11545 \begin_inset Formula $A=B$
11546 \end_inset
11547
11548
11549 \end_layout
11550
11551 \end_inset
11552 </cell>
11553 </row>
11554 <row>
11555 <cell alignment="center" valignment="top" usebox="none">
11556 \begin_inset Text
11557
11558 \begin_layout Plain Layout
11559 \begin_inset Note Note
11560 status collapsed
11561
11562 \begin_layout Plain Layout
11563
11564 \series bold
11565
11566 \backslash
11567 raisebox
11568 \series default
11569  dient nur als Abstandhalter.
11570 \end_layout
11571
11572 \end_inset
11573
11574
11575 \begin_inset Formula $\raisebox{5mm}{}$
11576 \end_inset
11577
11578 Gleichung ohne Leerraum
11579 \end_layout
11580
11581 \end_inset
11582 </cell>
11583 <cell multicolumn="1" alignment="center" valignment="top" usebox="none">
11584 \begin_inset Text
11585
11586 \begin_layout Plain Layout
11587 \begin_inset Formula $A{=}B$
11588 \end_inset
11589
11590
11591 \end_layout
11592
11593 \end_inset
11594 </cell>
11595 </row>
11596 </lyxtabular>
11597
11598 \end_inset
11599
11600
11601 \end_layout
11602
11603 \begin_layout Standard
11604 Der Befehl für die letzte Formel lautet: 
11605 \series bold
11606 A
11607 \backslash
11608 {=
11609 \begin_inset Formula $\to$
11610 \end_inset
11611
11612 B
11613 \end_layout
11614
11615 \begin_layout Standard
11616 \begin_inset VSpace bigskip
11617 \end_inset
11618
11619 Leerräumen werden für physikalische Einheiten benötigt, denn zwischen Wert
11620  und Einheit ist der kleinste Leerraum und kein normales Leerzeichen.
11621  Bei Einheiten im Text fügt man den kleinsten Leerraum über das Menü 
11622 \family sans
11623 Einfügen\SpecialChar \menuseparator
11624 Formatierung\SpecialChar \menuseparator
11625 Kleiner
11626 \begin_inset space ~
11627 \end_inset
11628
11629 Abstand
11630 \family default
11631  (Tastenkürzel 
11632 \family sans
11633 Strg+Shift+Leertaste
11634 \family default
11635 ) ein.
11636 \end_layout
11637
11638 \begin_layout Standard
11639 Ein Beispiel zur Veranschaulichung:
11640 \end_layout
11641
11642 \begin_layout Standard
11643 \begin_inset Tabular
11644 <lyxtabular version="3" rows="2" columns="2">
11645 <features tabularvalignment="middle">
11646 <column alignment="left" valignment="top" width="0">
11647 <column alignment="left" valignment="top" width="0">
11648 <row>
11649 <cell alignment="center" valignment="top" usebox="none">
11650 \begin_inset Text
11651
11652 \begin_layout Plain Layout
11653 24 kW
11654 \begin_inset Formula $\cdot$
11655 \end_inset
11656
11657 h
11658 \end_layout
11659
11660 \end_inset
11661 </cell>
11662 <cell alignment="center" valignment="top" usebox="none">
11663 \begin_inset Text
11664
11665 \begin_layout Plain Layout
11666 Leerzeichen zwischen Wert und Einheit
11667 \end_layout
11668
11669 \end_inset
11670 </cell>
11671 </row>
11672 <row>
11673 <cell alignment="center" valignment="top" usebox="none">
11674 \begin_inset Text
11675
11676 \begin_layout Plain Layout
11677 24
11678 \begin_inset space \thinspace{}
11679 \end_inset
11680
11681 kW
11682 \begin_inset Formula $\cdot$
11683 \end_inset
11684
11685 h
11686 \end_layout
11687
11688 \end_inset
11689 </cell>
11690 <cell alignment="center" valignment="top" usebox="none">
11691 \begin_inset Text
11692
11693 \begin_layout Plain Layout
11694 kleinster Leerraum zwischen Wert und Einheit
11695 \end_layout
11696
11697 \end_inset
11698 </cell>
11699 </row>
11700 </lyxtabular>
11701
11702 \end_inset
11703
11704
11705 \end_layout
11706
11707 \begin_layout Subsection
11708 Variabler Leerraum
11709 \begin_inset ERT
11710 status collapsed
11711
11712 \begin_layout Plain Layout
11713
11714
11715 \backslash
11716 texorpdfstring{
11717 \end_layout
11718
11719 \end_inset
11720
11721
11722 \begin_inset Foot
11723 status collapsed
11724
11725 \begin_layout Plain Layout
11726 für vertikalen Leerraum in Formeln siehe 
11727 \begin_inset CommandInset ref
11728 LatexCommand ref
11729 reference "sub:Zeilenabstand"
11730
11731 \end_inset
11732
11733
11734 \end_layout
11735
11736 \end_inset
11737
11738
11739 \begin_inset ERT
11740 status collapsed
11741
11742 \begin_layout Plain Layout
11743
11744 }{}
11745 \end_layout
11746
11747 \end_inset
11748
11749
11750 \begin_inset Note Note
11751 status collapsed
11752
11753 \begin_layout Plain Layout
11754
11755 \series bold
11756
11757 \backslash
11758 texorpdfstring
11759 \series default
11760  dient dazu, dass die Fußnote nicht mit im PDF-Lesezeichen erscheint.
11761 \end_layout
11762
11763 \begin_layout Plain Layout
11764 Näheres zu 
11765 \series bold
11766
11767 \backslash
11768 texorpdfstring
11769 \series default
11770  steht in Kapitel 
11771 \begin_inset CommandInset ref
11772 LatexCommand ref
11773 reference "sub:Formeln-in-Überschriften"
11774
11775 \end_inset
11776
11777 .
11778 \end_layout
11779
11780 \end_inset
11781
11782
11783 \begin_inset CommandInset label
11784 LatexCommand label
11785 name "sub:Variabler-Leerraum"
11786
11787 \end_inset
11788
11789
11790 \begin_inset Index idx
11791 status collapsed
11792
11793 \begin_layout Plain Layout
11794 Leerraum ! horizontaler ! variabel
11795 \end_layout
11796
11797 \end_inset
11798
11799
11800 \end_layout
11801
11802 \begin_layout Standard
11803 Leerraum mit vorgegebener Länge lässt sich mit dem Befehl 
11804 \series bold
11805
11806 \backslash
11807 hspace
11808 \series default
11809
11810 \begin_inset Index idx
11811 status collapsed
11812
11813 \begin_layout Plain Layout
11814 Befehle ! H ! 
11815 \backslash
11816 hspace
11817 \end_layout
11818
11819 \end_inset
11820
11821  einfügen.
11822  Es erscheint ein langes 
11823 \begin_inset Quotes gld
11824 \end_inset
11825
11826
11827 \color blue
11828
11829 \begin_inset ERT
11830 status collapsed
11831
11832 \begin_layout Plain Layout
11833
11834
11835 \backslash
11836 leer 
11837 \end_layout
11838
11839 \end_inset
11840
11841
11842 \color inherit
11843
11844 \begin_inset Quotes grd
11845 \end_inset
11846
11847 .
11848  Die Länge kann eingestellt werden, indem man mit der linken Maustaste auf
11849  das 
11850 \begin_inset Quotes gld
11851 \end_inset
11852
11853
11854 \color blue
11855
11856 \begin_inset ERT
11857 status collapsed
11858
11859 \begin_layout Plain Layout
11860
11861
11862 \backslash
11863 leer 
11864 \end_layout
11865
11866 \end_inset
11867
11868
11869 \color inherit
11870
11871 \begin_inset Quotes grd
11872 \end_inset
11873
11874  klickt.
11875  Die Länge darf auch negativ sein.
11876  Um so viel Leerraum einzufügen, dass die Formel allen verfügbaren Platz
11877  einnimmt, benutzt man den Befehl 
11878 \series bold
11879
11880 \backslash
11881 hfill
11882 \series default
11883
11884 \begin_inset Index idx
11885 status collapsed
11886
11887 \begin_layout Plain Layout
11888 Befehle ! H ! 
11889 \backslash
11890 hfill
11891 \end_layout
11892
11893 \end_inset
11894
11895 .
11896 \end_layout
11897
11898 \begin_layout Standard
11899 \begin_inset VSpace -1mm
11900 \end_inset
11901
11902
11903 \end_layout
11904
11905 \begin_layout Standard
11906 \align center
11907 \begin_inset Tabular
11908 <lyxtabular version="3" rows="4" columns="2">
11909 <features tabularvalignment="middle">
11910 <column alignment="center" valignment="top" width="0">
11911 <column alignment="center" valignment="top" width="0">
11912 <row>
11913 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11914 \begin_inset Text
11915
11916 \begin_layout Plain Layout
11917 Befehl (
11918 \backslash
11919 hspace Länge)
11920 \end_layout
11921
11922 \end_inset
11923 </cell>
11924 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
11925 \begin_inset Text
11926
11927 \begin_layout Plain Layout
11928 Ergebnis
11929 \end_layout
11930
11931 \end_inset
11932 </cell>
11933 </row>
11934 <row>
11935 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11936 \begin_inset Text
11937
11938 \begin_layout Plain Layout
11939 A=B
11940 \backslash
11941 hspace{3cm
11942 \begin_inset Formula $\to$
11943 \end_inset
11944
11945 A
11946 \backslash
11947 not=C (3
11948 \begin_inset space \thinspace{}
11949 \end_inset
11950
11951 cm)
11952 \end_layout
11953
11954 \end_inset
11955 </cell>
11956 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11957 \begin_inset Text
11958
11959 \begin_layout Plain Layout
11960 \begin_inset Formula $A=B\hspace{3cm}A\not=C$
11961 \end_inset
11962
11963
11964 \end_layout
11965
11966 \end_inset
11967 </cell>
11968 </row>
11969 <row>
11970 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11971 \begin_inset Text
11972
11973 \begin_layout Plain Layout
11974 A
11975 \backslash
11976 hspace{-1mm
11977 \begin_inset Formula $\to$
11978 \end_inset
11979
11980 A
11981 \backslash
11982 not=A (-1
11983 \begin_inset space \thinspace{}
11984 \end_inset
11985
11986 mm)
11987 \end_layout
11988
11989 \end_inset
11990 </cell>
11991 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
11992 \begin_inset Text
11993
11994 \begin_layout Plain Layout
11995 \begin_inset Formula $A\hspace{-1mm}A\not=A$
11996 \end_inset
11997
11998
11999 \end_layout
12000
12001 \end_inset
12002 </cell>
12003 </row>
12004 <row>
12005 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
12006 \begin_inset Text
12007
12008 \begin_layout Plain Layout
12009 A=A
12010 \backslash
12011 hfill
12012 \begin_inset ERT
12013 status collapsed
12014
12015 \begin_layout Plain Layout
12016
12017
12018 \backslash
12019 leer 
12020 \end_layout
12021
12022 \end_inset
12023
12024 B=B
12025 \end_layout
12026
12027 \end_inset
12028 </cell>
12029 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
12030 \begin_inset Text
12031
12032 \begin_layout Plain Layout
12033 \begin_inset Formula $A=A\hfill B=B$
12034 \end_inset
12035
12036
12037 \end_layout
12038
12039 \end_inset
12040 </cell>
12041 </row>
12042 </lyxtabular>
12043
12044 \end_inset
12045
12046
12047 \end_layout
12048
12049 \begin_layout Standard
12050 Im letzten Beispiel ist der verfügbare Platz durch die Länge des längsten
12051  Spalteneintrags der Tabelle vorgegeben.
12052  In einer eingebetteten Formel ist der Platz von der Länge der Zeile abhängig,
12053  in die 
12054 \series bold
12055
12056 \backslash
12057 hfill
12058 \series default
12059  eingegeben wird.
12060  Füllt eine Zeile die Breite komplett aus, wird demnach kein Leerraum erstellt.
12061  
12062 \series bold
12063
12064 \backslash
12065 hfill
12066 \series default
12067  wirkt in abgesetzten Formeln nur, wenn der Formelstil 
12068 \series bold
12069 Eingerückt
12070 \series default
12071  eingestellt ist.
12072  (Formelstile sind in 
12073 \begin_inset CommandInset ref
12074 LatexCommand ref
12075 reference "sec:Formelstile"
12076
12077 \end_inset
12078
12079  erklärt.)
12080 \end_layout
12081
12082 \begin_layout Standard
12083 Neben 
12084 \series bold
12085
12086 \backslash
12087 hfill
12088 \series default
12089  gibt es noch die Befehle 
12090 \series bold
12091
12092 \backslash
12093 dotfill
12094 \series default
12095  und 
12096 \series bold
12097
12098 \backslash
12099 hrulefill
12100 \series default
12101 , die den Leerraum mit einem Muster füllen, siehe 
12102 \begin_inset CommandInset ref
12103 LatexCommand ref
12104 reference "sub:Fortsetzungspunkte"
12105
12106 \end_inset
12107
12108  für ein Beispiel.
12109 \end_layout
12110
12111 \begin_layout Standard
12112 Variabler Leerraum kann für Text über das Menü 
12113 \family sans
12114 Einfügen\SpecialChar \menuseparator
12115 Formatierung\SpecialChar \menuseparator
12116 Horizontaler
12117 \begin_inset space ~
12118 \end_inset
12119
12120 Abstand
12121 \family default
12122  eingefügt werden:
12123 \end_layout
12124
12125 \begin_layout Standard
12126 Dies ist eine Zeile mit
12127 \begin_inset space \hspace{}
12128 \length 2cm
12129 \end_inset
12130
12131 2
12132 \begin_inset space \thinspace{}
12133 \end_inset
12134
12135 cm Leerraum.
12136 \end_layout
12137
12138 \begin_layout Standard
12139 Dies ist eine Zeile mit
12140 \begin_inset space \hfill{}
12141 \end_inset
12142
12143 maximalem Leerraum.
12144 \end_layout
12145
12146 \begin_layout Subsection
12147 Leerraum neben eingebetteten Formeln
12148 \begin_inset Index idx
12149 status collapsed
12150
12151 \begin_layout Plain Layout
12152 Leerraum ! neben eingebetteten Formeln
12153 \end_layout
12154
12155 \end_inset
12156
12157
12158 \end_layout
12159
12160 \begin_layout Standard
12161 Über die Länge 
12162 \series bold
12163
12164 \backslash
12165 mathsurround
12166 \series default
12167
12168 \begin_inset Index idx
12169 status collapsed
12170
12171 \begin_layout Plain Layout
12172 Befehle ! M ! 
12173 \backslash
12174 mathsurround
12175 \end_layout
12176
12177 \end_inset
12178
12179  lässt sich der Leerraum einstellen, der neben eingebettete Formeln gesetzt
12180  wird.
12181  Der Wert einer Länge wird mit dem Befehl 
12182 \series bold
12183
12184 \backslash
12185 setlength
12186 \series default
12187
12188 \begin_inset Index idx
12189 status collapsed
12190
12191 \begin_layout Plain Layout
12192 Befehle ! S ! 
12193 \backslash
12194 setlength
12195 \end_layout
12196
12197 \end_inset
12198
12199  gesetzt.
12200  Dieser besitzt folgendes Befehlsschema:
12201 \end_layout
12202
12203 \begin_layout Standard
12204
12205 \series bold
12206
12207 \backslash
12208 setlength{Längenname}{Wert}
12209 \end_layout
12210
12211 \begin_layout Standard
12212 Um 
12213 \series bold
12214
12215 \backslash
12216 mathsurround
12217 \series default
12218  den Wert 5
12219 \begin_inset space \thinspace{}
12220 \end_inset
12221
12222 mm zuzuweisen, gibt man im TeX-Modus den Befehl
12223 \end_layout
12224
12225 \begin_layout Standard
12226
12227 \series bold
12228
12229 \backslash
12230 setlength{
12231 \backslash
12232 mathsurround}{5mm}
12233 \end_layout
12234
12235 \begin_layout Standard
12236 ein.
12237  Neben alle eingebetteten Formeln, die auf den Befehl folgen, wird nun 5
12238 \begin_inset space \thinspace{}
12239 \end_inset
12240
12241 mm Leerraum gesetzt:
12242 \begin_inset ERT
12243 status collapsed
12244
12245 \begin_layout Plain Layout
12246
12247
12248 \backslash
12249 setlength{
12250 \backslash
12251 mathsurround}{5mm}
12252 \end_layout
12253
12254 \end_inset
12255
12256
12257 \end_layout
12258
12259 \begin_layout Standard
12260 Dies ist eine Zeile in der sich 
12261 \begin_inset Formula $A=B$
12262 \end_inset
12263
12264  eine Formel mit 5
12265 \begin_inset space \thinspace{}
12266 \end_inset
12267
12268 mm umgebendem Leerraum befindet.
12269 \begin_inset ERT
12270 status collapsed
12271
12272 \begin_layout Plain Layout
12273
12274
12275 \backslash
12276 setlength{
12277 \backslash
12278 mathsurround}{0pt}
12279 \end_layout
12280
12281 \end_inset
12282
12283
12284 \end_layout
12285
12286 \begin_layout Standard
12287 Um wieder zum voreingestellten Wert zurückzukehren, setzt man 
12288 \series bold
12289
12290 \backslash
12291 mathsurround
12292 \series default
12293  auf den Wert 0
12294 \begin_inset space \thinspace{}
12295 \end_inset
12296
12297 pt.
12298 \end_layout
12299
12300 \begin_layout Section
12301 Boxen und Rahmen
12302 \begin_inset Index idx
12303 status collapsed
12304
12305 \begin_layout Plain Layout
12306 Boxen
12307 \end_layout
12308
12309 \end_inset
12310
12311
12312 \begin_inset Index idx
12313 status collapsed
12314
12315 \begin_layout Plain Layout
12316 Rahmen | see
12317 \begin_inset ERT
12318 status collapsed
12319
12320 \begin_layout Plain Layout
12321
12322 {
12323 \end_layout
12324
12325 \end_inset
12326
12327 Boxen
12328 \begin_inset ERT
12329 status collapsed
12330
12331 \begin_layout Plain Layout
12332
12333 }
12334 \end_layout
12335
12336 \end_inset
12337
12338
12339 \end_layout
12340
12341 \end_inset
12342
12343
12344 \end_layout
12345
12346 \begin_layout Standard
12347 Boxen für Text sind im Kapitel 
12348 \family typewriter
12349 Boxen
12350 \family default
12351  im Handbuch 
12352 \family typewriter
12353 Eingebettete
12354 \begin_inset space ~
12355 \end_inset
12356
12357 Objekte
12358 \family default
12359  beschrieben.
12360 \end_layout
12361
12362 \begin_layout Subsection
12363 Boxen mit Rahmen
12364 \begin_inset CommandInset label
12365 LatexCommand label
12366 name "sub:Boxen-mit-Rahmen"
12367
12368 \end_inset
12369
12370
12371 \begin_inset Index idx
12372 status collapsed
12373
12374 \begin_layout Plain Layout
12375 Boxen ! mit Rahmen
12376 \end_layout
12377
12378 \end_inset
12379
12380
12381 \end_layout
12382
12383 \begin_layout Standard
12384 Es ist möglich Formeln oder Teile davon mit den Befehlen 
12385 \series bold
12386
12387 \backslash
12388 fbox
12389 \series default
12390
12391 \begin_inset Index idx
12392 status collapsed
12393
12394 \begin_layout Plain Layout
12395 Befehle ! F ! 
12396 \backslash
12397 fbox
12398 \end_layout
12399
12400 \end_inset
12401
12402  und 
12403 \series bold
12404
12405 \backslash
12406 boxed
12407 \series default
12408
12409 \begin_inset Index idx
12410 status collapsed
12411
12412 \begin_layout Plain Layout
12413 Befehle ! B ! 
12414 \backslash
12415 boxed
12416 \end_layout
12417
12418 \end_inset
12419
12420  zu umranden.
12421 \end_layout
12422
12423 \begin_layout Standard
12424 Gibt man einen dieser Befehle in eine Formel ein, erscheint ein Eingabefeld
12425  in einem Rahmen.
12426  Bei 
12427 \series bold
12428
12429 \backslash
12430 fbox
12431 \series default
12432  muss in diesem Eingabefeld mit 
12433 \family sans
12434 Strg+M
12435 \family default
12436  noch eine Formel erstellt werden, denn der Inhalt dieser Box wird sonst
12437  als mathematischer Text behandelt.
12438  Verwendet man 
12439 \series bold
12440
12441 \backslash
12442 boxed
12443 \series default
12444 , wird automatisch im Rahmen eine neue Formel erzeugt.
12445 \end_layout
12446
12447 \begin_layout Standard
12448 Der Befehl 
12449 \series bold
12450
12451 \backslash
12452 fbox
12453 \series default
12454  ist nicht zur Umrandung von abgesetzten Formeln geeignet, denn die Formel
12455  wird dann immer in Textzeilengröße gesetzt.
12456  Im Gegensatz dazu ist 
12457 \series bold
12458
12459 \backslash
12460 boxed
12461 \series default
12462  nicht zur Umrandung von Formeln in einer Textzeile geeignet, denn die Formel
12463  wird dann immer in der Größe einer abgesetzten Formel gesetzt.
12464 \end_layout
12465
12466 \begin_layout Standard
12467 Als Erweiterung zu 
12468 \series bold
12469
12470 \backslash
12471 fbox
12472 \series default
12473  gibt es den Befehl 
12474 \series bold
12475
12476 \backslash
12477 framebox
12478 \series default
12479
12480 \begin_inset Index idx
12481 status collapsed
12482
12483 \begin_layout Plain Layout
12484 Befehle ! F ! 
12485 \backslash
12486 framebox
12487 \end_layout
12488
12489 \end_inset
12490
12491 , bei dem man zusätzlich die Rahmenbreite und die Ausrichtung einstellen
12492  kann.
12493  
12494 \series bold
12495
12496 \backslash
12497 framebox
12498 \series default
12499  wird nach folgendem Schema verwendet:
12500 \end_layout
12501
12502 \begin_layout Standard
12503
12504 \series bold
12505
12506 \backslash
12507 framebox[Rahmenbreite][Position]{Boxinhalt}
12508 \end_layout
12509
12510 \begin_layout Standard
12511 Die Position kann entweder 
12512 \emph on
12513 l
12514 \emph default
12515  oder 
12516 \emph on
12517 r
12518 \emph default
12519  sein.
12520  
12521 \emph on
12522 l
12523 \emph default
12524  bewirkt linksbündige, 
12525 \emph on
12526 r
12527 \emph default
12528  rechtsbündige Ausrichtung der Formel in der Box.
12529  Gibt man keine Position an, wird die Formel zentriert.
12530 \begin_inset Newline newline
12531 \end_inset
12532
12533 Gibt man keine Breite an, darf auch keine Position angegeben werden.
12534  In diesem Falle wird die Rahmenbreite wie bei 
12535 \series bold
12536
12537 \backslash
12538 fbox
12539 \series default
12540  an den Boxinhalt angepasst.
12541 \end_layout
12542
12543 \begin_layout Standard
12544 Wenn man den Befehl 
12545 \series bold
12546
12547 \backslash
12548 framebox
12549 \series default
12550  eingibt, erscheint eine Box mit drei Eingabefeldern.
12551  Die ersten beiden sind von eckigen Klammern umgeben und stehen für die
12552  beiden optionalen Argumente.
12553  In das dritte Feld wird wie bei 
12554 \series bold
12555
12556 \backslash
12557 fbox
12558 \series default
12559  die Formel eingegeben.
12560 \end_layout
12561
12562 \begin_layout Standard
12563 \align center
12564 \begin_inset Tabular
12565 <lyxtabular version="3" rows="5" columns="2">
12566 <features tabularvalignment="middle">
12567 <column alignment="center" valignment="top" width="0">
12568 <column alignment="center" valignment="top" width="0">
12569 <row>
12570 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
12571 \begin_inset Text
12572
12573 \begin_layout Plain Layout
12574 Befehl
12575 \end_layout
12576
12577 \end_inset
12578 </cell>
12579 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
12580 \begin_inset Text
12581
12582 \begin_layout Plain Layout
12583 Ergebnis
12584 \begin_inset Note Note
12585 status collapsed
12586
12587 \begin_layout Plain Layout
12588
12589 \series bold
12590
12591 \backslash
12592 raisebox
12593 \series default
12594  dient nur als Abstandhalter.
12595 \end_layout
12596
12597 \end_inset
12598
12599
12600 \end_layout
12601
12602 \end_inset
12603 </cell>
12604 </row>
12605 <row>
12606 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12607 \begin_inset Text
12608
12609 \begin_layout Plain Layout
12610
12611 \backslash
12612 fbox
12613 \begin_inset ERT
12614 status collapsed
12615
12616 \begin_layout Plain Layout
12617
12618
12619 \backslash
12620 leer 
12621 \end_layout
12622
12623 \end_inset
12624
12625
12626 \family sans
12627 Strg+M
12628 \family default
12629  
12630 \backslash
12631 int
12632 \begin_inset ERT
12633 status collapsed
12634
12635 \begin_layout Plain Layout
12636
12637
12638 \backslash
12639 leer 
12640 \end_layout
12641
12642 \end_inset
12643
12644 A=B
12645 \end_layout
12646
12647 \end_inset
12648 </cell>
12649 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12650 \begin_inset Text
12651
12652 \begin_layout Plain Layout
12653 \begin_inset Formula $\raisebox{6mm}{}\fbox{\ensuremath{\int A=B}}\raisebox{-4mm}{}$
12654 \end_inset
12655
12656
12657 \end_layout
12658
12659 \end_inset
12660 </cell>
12661 </row>
12662 <row>
12663 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12664 \begin_inset Text
12665
12666 \begin_layout Plain Layout
12667
12668 \backslash
12669 boxed
12670 \begin_inset ERT
12671 status collapsed
12672
12673 \begin_layout Plain Layout
12674
12675
12676 \backslash
12677 leer 
12678 \end_layout
12679
12680 \end_inset
12681
12682
12683 \backslash
12684 int
12685 \begin_inset ERT
12686 status collapsed
12687
12688 \begin_layout Plain Layout
12689
12690
12691 \backslash
12692 leer 
12693 \end_layout
12694
12695 \end_inset
12696
12697 A=B
12698 \end_layout
12699
12700 \end_inset
12701 </cell>
12702 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12703 \begin_inset Text
12704
12705 \begin_layout Plain Layout
12706 \begin_inset Formula $\raisebox{8.5mm}{}\boxed{\int A=B}\raisebox{-6.5mm}{}$
12707 \end_inset
12708
12709
12710 \end_layout
12711
12712 \end_inset
12713 </cell>
12714 </row>
12715 <row>
12716 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12717 \begin_inset Text
12718
12719 \begin_layout Plain Layout
12720 A+
12721 \backslash
12722 fbox
12723 \begin_inset ERT
12724 status collapsed
12725
12726 \begin_layout Plain Layout
12727
12728
12729 \backslash
12730 leer 
12731 \end_layout
12732
12733 \end_inset
12734
12735 B
12736 \end_layout
12737
12738 \end_inset
12739 </cell>
12740 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12741 \begin_inset Text
12742
12743 \begin_layout Plain Layout
12744 \begin_inset Formula $\raisebox{6mm}{}A+\fbox{B}\raisebox{-3mm}{}$
12745 \end_inset
12746
12747
12748 \end_layout
12749
12750 \end_inset
12751 </cell>
12752 </row>
12753 <row>
12754 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
12755 \begin_inset Text
12756
12757 \begin_layout Plain Layout
12758
12759 \backslash
12760 framebox
12761 \begin_inset ERT
12762 status collapsed
12763
12764 \begin_layout Plain Layout
12765
12766
12767 \backslash
12768 leer 
12769 \end_layout
12770
12771 \end_inset
12772
12773 20mm
12774 \begin_inset Formula $\to$
12775 \end_inset
12776
12777
12778 \begin_inset Formula $\to$
12779 \end_inset
12780
12781
12782 \family sans
12783 Strg+M
12784 \family default
12785  
12786 \backslash
12787 frac
12788 \begin_inset ERT
12789 status collapsed
12790
12791 \begin_layout Plain Layout
12792
12793
12794 \backslash
12795 leer 
12796 \end_layout
12797
12798 \end_inset
12799
12800 A
12801 \begin_inset Formula $\downarrow$
12802 \end_inset
12803
12804 B
12805 \end_layout
12806
12807 \end_inset
12808 </cell>
12809 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
12810 \begin_inset Text
12811
12812 \begin_layout Plain Layout
12813 \begin_inset Formula $\raisebox{6mm}{}$
12814 \end_inset
12815
12816
12817 \begin_inset Formula $\framebox[20mm][]{\ensuremath{\frac{A}{B}}}$
12818 \end_inset
12819
12820
12821 \begin_inset Formula $\raisebox{-4mm}{}$
12822 \end_inset
12823
12824
12825 \end_layout
12826
12827 \end_inset
12828 </cell>
12829 </row>
12830 </lyxtabular>
12831
12832 \end_inset
12833
12834
12835 \end_layout
12836
12837 \begin_layout Standard
12838 Die Rahmendicke kann ebenfalls eingestellt werden.
12839  Dazu müssen vor der Formel im TeX-Modus die Befehle
12840 \end_layout
12841
12842 \begin_layout Standard
12843
12844 \series bold
12845
12846 \backslash
12847 fboxrule
12848 \series default
12849  
12850 \series bold
12851
12852 \begin_inset Quotes gld
12853 \end_inset
12854
12855 Dicke
12856 \begin_inset Quotes grd
12857 \end_inset
12858
12859
12860 \series default
12861  
12862 \series bold
12863
12864 \backslash
12865 fboxsep
12866 \series default
12867  
12868 \series bold
12869
12870 \begin_inset Quotes gld
12871 \end_inset
12872
12873 Abstand
12874 \begin_inset Quotes grd
12875 \end_inset
12876
12877
12878 \end_layout
12879
12880 \begin_layout Standard
12881 eingegeben werden.
12882  
12883 \begin_inset Quotes gld
12884 \end_inset
12885
12886 Abstand
12887 \begin_inset Quotes grd
12888 \end_inset
12889
12890  legt dabei den minimalen Abstand zwischen Rahmen und dem ersten Zeichen
12891  in der Box fest.
12892  Ein Beispiel dafür ist folgende umrandete Formel:
12893 \begin_inset ERT
12894 status collapsed
12895
12896 \begin_layout Plain Layout
12897
12898
12899 \backslash
12900 fboxrule 2mm 
12901 \backslash
12902 fboxsep 3mm
12903 \end_layout
12904
12905 \end_inset
12906
12907
12908 \begin_inset Formula 
12909 \[
12910 \boxed{A+B=C}
12911 \]
12912
12913 \end_inset
12914
12915 Vor dieser Formel wurde im TeX-Modus
12916 \end_layout
12917
12918 \begin_layout Standard
12919
12920 \series bold
12921
12922 \backslash
12923 fboxrule
12924 \series default
12925  
12926 \series bold
12927 2mm
12928 \series default
12929  
12930 \series bold
12931
12932 \backslash
12933 fboxsep
12934 \series default
12935  
12936 \series bold
12937 3mm
12938 \end_layout
12939
12940 \begin_layout Standard
12941 eingegeben.
12942  Diese angegeben Werte werden für alle folgenden Boxen verwendet.
12943 \end_layout
12944
12945 \begin_layout Standard
12946 Möchte man wieder zur Standardrahmengröße zurückkehren, gibt man vor der
12947  nächsten Formel im TeX-Modus folgende Befehle ein:
12948 \end_layout
12949
12950 \begin_layout Standard
12951
12952 \series bold
12953
12954 \backslash
12955 fboxrule
12956 \series default
12957  
12958 \series bold
12959 0.4pt
12960 \series default
12961  
12962 \series bold
12963
12964 \backslash
12965 fboxsep
12966 \series default
12967  
12968 \series bold
12969 3pt
12970 \series default
12971
12972 \begin_inset ERT
12973 status collapsed
12974
12975 \begin_layout Plain Layout
12976
12977
12978 \backslash
12979 fboxrule 0.4pt 
12980 \backslash
12981 fboxsep 3pt
12982 \end_layout
12983
12984 \end_inset
12985
12986
12987 \end_layout
12988
12989 \begin_layout Subsection
12990 Boxen ohne Rahmen
12991 \begin_inset CommandInset label
12992 LatexCommand label
12993 name "sub:Boxen-ohne-Rahmen"
12994
12995 \end_inset
12996
12997
12998 \begin_inset Index idx
12999 status collapsed
13000
13001 \begin_layout Plain Layout
13002 Boxen ! ohne Rahmen
13003 \end_layout
13004
13005 \end_inset
13006
13007
13008 \end_layout
13009
13010 \begin_layout Standard
13011 Für Boxen ohne Rahmen gibt es folgende Box-Befehle: 
13012 \series bold
13013
13014 \backslash
13015 mbox
13016 \series default
13017
13018 \begin_inset Index idx
13019 status collapsed
13020
13021 \begin_layout Plain Layout
13022 Befehle ! M ! 
13023 \backslash
13024 mbox
13025 \end_layout
13026
13027 \end_inset
13028
13029
13030 \series bold
13031
13032 \backslash
13033 makebox
13034 \series default
13035
13036 \begin_inset Index idx
13037 status collapsed
13038
13039 \begin_layout Plain Layout
13040 Befehle ! M ! 
13041 \backslash
13042 makebox
13043 \end_layout
13044
13045 \end_inset
13046
13047  und
13048 \begin_inset Newline linebreak
13049 \end_inset
13050
13051
13052 \series bold
13053
13054 \backslash
13055 raisebox
13056 \series default
13057
13058 \begin_inset Index idx
13059 status collapsed
13060
13061 \begin_layout Plain Layout
13062 Befehle ! R ! 
13063 \backslash
13064 raisebox
13065 \end_layout
13066
13067 \end_inset
13068
13069
13070 \end_layout
13071
13072 \begin_layout Standard
13073 Mit 
13074 \series bold
13075
13076 \backslash
13077 raisebox
13078 \series default
13079  kann man eine Box hoch- oder tiefstellen.
13080  Allerdings behalten die Zeichen in der Box im Gegensatz zum normalen Hochstelle
13081 n die Schriftgröße bei.
13082  
13083 \series bold
13084
13085 \backslash
13086 raisebox
13087 \series default
13088  wird dabei mit folgendem Schema benutzt:
13089 \end_layout
13090
13091 \begin_layout Standard
13092
13093 \series bold
13094
13095 \backslash
13096 raisebox{Höhe}{Boxinhalt}
13097 \end_layout
13098
13099 \begin_layout Standard
13100 Soll in der Box eine Formel stehen, muss man wie bei 
13101 \series bold
13102
13103 \backslash
13104 fbox
13105 \series default
13106  eine weitere Formel erstellen.
13107  
13108 \begin_inset Note Greyedout
13109 status open
13110
13111 \begin_layout Plain Layout
13112
13113 \series bold
13114 Achtung:
13115 \series default
13116  Für 
13117 \series bold
13118
13119 \backslash
13120 raisebox
13121 \series default
13122  wird diese weitere Formel durch zweimaliges statt einmaliges Drücken von
13123  
13124 \family sans
13125 Strg+M
13126 \family default
13127  erstellt, denn LyX unterstützt 
13128 \series bold
13129
13130 \backslash
13131 raisebox
13132 \series default
13133  noch nicht direkt.
13134 \end_layout
13135
13136 \end_inset
13137
13138
13139 \end_layout
13140
13141 \begin_layout Standard
13142 \align center
13143 \begin_inset Tabular
13144 <lyxtabular version="3" rows="4" columns="2">
13145 <features tabularvalignment="middle">
13146 <column alignment="center" valignment="top" width="0">
13147 <column alignment="center" valignment="top" width="0">
13148 <row>
13149 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
13150 \begin_inset Text
13151
13152 \begin_layout Plain Layout
13153 Befehl
13154 \end_layout
13155
13156 \end_inset
13157 </cell>
13158 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
13159 \begin_inset Text
13160
13161 \begin_layout Plain Layout
13162 Ergebnis
13163 \end_layout
13164
13165 \end_inset
13166 </cell>
13167 </row>
13168 <row>
13169 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13170 \begin_inset Text
13171
13172 \begin_layout Plain Layout
13173 H
13174 \backslash
13175 raisebox{2mm
13176 \begin_inset Formula $\to$
13177 \end_inset
13178
13179
13180 \backslash
13181 {al
13182 \begin_inset Formula $\to$
13183 \end_inset
13184
13185  lo
13186 \end_layout
13187
13188 \end_inset
13189 </cell>
13190 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13191 \begin_inset Text
13192
13193 \begin_layout Plain Layout
13194 \begin_inset Formula $H\raisebox{2mm}{al}lo$
13195 \end_inset
13196
13197
13198 \end_layout
13199
13200 \end_inset
13201 </cell>
13202 </row>
13203 <row>
13204 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
13205 \begin_inset Text
13206
13207 \begin_layout Plain Layout
13208 H
13209 \backslash
13210 raisebox{-2mm
13211 \begin_inset Formula $\to$
13212 \end_inset
13213
13214
13215 \backslash
13216 {al
13217 \begin_inset Formula $\to$
13218 \end_inset
13219
13220 lo
13221 \end_layout
13222
13223 \end_inset
13224 </cell>
13225 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
13226 \begin_inset Text
13227
13228 \begin_layout Plain Layout
13229 \begin_inset Formula $H\raisebox{-2mm}{al}lo$
13230 \end_inset
13231
13232
13233 \end_layout
13234
13235 \end_inset
13236 </cell>
13237 </row>
13238 <row>
13239 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
13240 \begin_inset Text
13241
13242 \begin_layout Plain Layout
13243 A=
13244 \backslash
13245 raisebox{-2mm
13246 \begin_inset Formula $\to$
13247 \end_inset
13248
13249
13250 \backslash
13251 {
13252 \family sans
13253 Strg+M Strg+M
13254 \family default
13255  
13256 \backslash
13257 sqrt
13258 \begin_inset ERT
13259 status collapsed
13260
13261 \begin_layout Plain Layout
13262
13263
13264 \backslash
13265 leer 
13266 \end_layout
13267
13268 \end_inset
13269
13270
13271 \end_layout
13272
13273 \end_inset
13274 </cell>
13275 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
13276 \begin_inset Text
13277
13278 \begin_layout Plain Layout
13279 \begin_inset Formula $A=\raisebox{-2mm}{\mbox{\ensuremath{\sqrt{B}}}}$
13280 \end_inset
13281
13282
13283 \end_layout
13284
13285 \end_inset
13286 </cell>
13287 </row>
13288 </lyxtabular>
13289
13290 \end_inset
13291
13292
13293 \end_layout
13294
13295 \begin_layout Standard
13296 Der Befehl 
13297 \series bold
13298
13299 \backslash
13300 mbox
13301 \series default
13302  ist äquivalent zu 
13303 \series bold
13304
13305 \backslash
13306 fbox
13307 \series default
13308  und 
13309 \series bold
13310
13311 \backslash
13312 makebox
13313 \series default
13314  ist äquivalent zu 
13315 \series bold
13316
13317 \backslash
13318 framebox
13319 \series default
13320 , nur dass es keinen Rahmen gibt.
13321 \end_layout
13322
13323 \begin_layout Subsection
13324 Farbige Boxen
13325 \begin_inset CommandInset label
13326 LatexCommand label
13327 name "sub:Farbige-Boxen"
13328
13329 \end_inset
13330
13331
13332 \begin_inset Index idx
13333 status collapsed
13334
13335 \begin_layout Plain Layout
13336 Boxen ! farbige
13337 \end_layout
13338
13339 \end_inset
13340
13341
13342 \end_layout
13343
13344 \begin_layout Standard
13345 Damit die in diesem Kapitel angegebenen Befehle benutzt werden können, muss
13346  im LaTeX-Vorspann das LaTeX-Paket 
13347 \series bold
13348 color
13349 \series default
13350
13351 \begin_inset Foot
13352 status collapsed
13353
13354 \begin_layout Plain Layout
13355 Das Paket 
13356 \series bold
13357 color
13358 \series default
13359  ist Teil jeder LaTeX-Standardinstallation.
13360 \end_layout
13361
13362 \end_inset
13363
13364
13365 \begin_inset Index idx
13366 status collapsed
13367
13368 \begin_layout Plain Layout
13369 Pakete ! color
13370 \end_layout
13371
13372 \end_inset
13373
13374  mit der Zeile
13375 \end_layout
13376
13377 \begin_layout Standard
13378
13379 \series bold
13380
13381 \backslash
13382 usepackage{color}
13383 \end_layout
13384
13385 \begin_layout Standard
13386 geladen werden
13387 \begin_inset Foot
13388 status collapsed
13389
13390 \begin_layout Plain Layout
13391 Wird irgendwo im Dokument Text mit einer vordefinierten Farbe gefärbt, lädt
13392  LyX das LaTeX-Paket 
13393 \series bold
13394 color
13395 \series default
13396  automatisch.
13397  Dadurch kann es vorkommen, dass das Paket doppelt geladen wird, was aber
13398  keine Probleme hervorruft.
13399 \end_layout
13400
13401 \end_inset
13402
13403
13404 \begin_inset Note Note
13405 status collapsed
13406
13407 \begin_layout Plain Layout
13408 Damit das Paket nicht doppelt geladen werden kann, wurde im LaTeX-Vorspann
13409  ein Makro eingefügt.
13410 \end_layout
13411
13412 \end_inset
13413
13414 .
13415 \end_layout
13416
13417 \begin_layout Standard
13418 \begin_inset VSpace medskip
13419 \end_inset
13420
13421 Um Boxen einzufärben, verwendet man den Befehl 
13422 \series bold
13423
13424 \backslash
13425 colorbox
13426 \series default
13427
13428 \begin_inset Index idx
13429 status collapsed
13430
13431 \begin_layout Plain Layout
13432 Befehle ! C ! 
13433 \backslash
13434 colorbox
13435 \end_layout
13436
13437 \end_inset
13438
13439  nach folgendem Schema:
13440 \end_layout
13441
13442 \begin_layout Standard
13443
13444 \series bold
13445
13446 \backslash
13447 colorbox{Farbe}{Boxinhalt}
13448 \end_layout
13449
13450 \begin_layout Standard
13451 Der Boxinhalt kann auch wieder eine Box sein und eine 
13452 \series bold
13453
13454 \backslash
13455 colorbox
13456 \series default
13457  kann auch ein Teil einer anderen Box sein (siehe 2.
13458  und 3.
13459  Beispiel).
13460  Soll in der Box eine Formel stehen, muss wie bei 
13461 \series bold
13462
13463 \backslash
13464 raisebox
13465 \series default
13466  eine weitere Formel erstellt werden.
13467 \begin_inset Foot
13468 status collapsed
13469
13470 \begin_layout Plain Layout
13471 Das gilt auch für den Befehl 
13472 \series bold
13473
13474 \backslash
13475 fcolorbox
13476 \series default
13477 .
13478 \end_layout
13479
13480 \end_inset
13481
13482
13483 \end_layout
13484
13485 \begin_layout Standard
13486 Aus folgenden vordefinierten Farben kann gewählt werden:
13487 \end_layout
13488
13489 \begin_layout Standard
13490
13491 \series bold
13492 black
13493 \series default
13494
13495 \series bold
13496 blue
13497 \series default
13498
13499 \series bold
13500 cyan
13501 \series default
13502
13503 \series bold
13504 green
13505 \series default
13506
13507 \series bold
13508 magenta
13509 \series default
13510
13511 \series bold
13512 red
13513 \series default
13514
13515 \series bold
13516 white
13517 \series default
13518  und 
13519 \series bold
13520 yellow
13521 \end_layout
13522
13523 \begin_layout Standard
13524 \align center
13525 \begin_inset Tabular
13526 <lyxtabular version="3" rows="4" columns="2">
13527 <features tabularvalignment="middle">
13528 <column alignment="center" valignment="top" width="0">
13529 <column alignment="center" valignment="top" width="0">
13530 <row>
13531 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
13532 \begin_inset Text
13533
13534 \begin_layout Plain Layout
13535 Befehl
13536 \end_layout
13537
13538 \end_inset
13539 </cell>
13540 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
13541 \begin_inset Text
13542
13543 \begin_layout Plain Layout
13544 Ergebnis
13545 \begin_inset Note Note
13546 status collapsed
13547
13548 \begin_layout Plain Layout
13549
13550 \series bold
13551
13552 \backslash
13553 raisebox
13554 \series default
13555  dient nur als Abstandhalter.
13556 \end_layout
13557
13558 \end_inset
13559
13560
13561 \end_layout
13562
13563 \end_inset
13564 </cell>
13565 </row>
13566 <row>
13567 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13568 \begin_inset Text
13569
13570 \begin_layout Plain Layout
13571
13572 \backslash
13573 colorbox{yellow
13574 \begin_inset Formula $\to$
13575 \end_inset
13576
13577
13578 \backslash
13579 {A=B
13580 \end_layout
13581
13582 \end_inset
13583 </cell>
13584 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13585 \begin_inset Text
13586
13587 \begin_layout Plain Layout
13588 \begin_inset Formula $\raisebox{6mm}{}\colorbox{yellow}{A=B}\raisebox{-3mm}{}$
13589 \end_inset
13590
13591
13592 \end_layout
13593
13594 \end_inset
13595 </cell>
13596 </row>
13597 <row>
13598 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13599 \begin_inset Text
13600
13601 \begin_layout Plain Layout
13602
13603 \backslash
13604 colorbox{green
13605 \begin_inset Formula $\to$
13606 \end_inset
13607
13608
13609 \backslash
13610 {
13611 \backslash
13612 fbox
13613 \begin_inset ERT
13614 status collapsed
13615
13616 \begin_layout Plain Layout
13617
13618
13619 \backslash
13620 leer 
13621 \end_layout
13622
13623 \end_inset
13624
13625 A=B
13626 \end_layout
13627
13628 \end_inset
13629 </cell>
13630 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13631 \begin_inset Text
13632
13633 \begin_layout Plain Layout
13634 \begin_inset Formula $\raisebox{6mm}{}\colorbox{green}{\fbox{A=B}}\raisebox{-3mm}{}$
13635 \end_inset
13636
13637
13638 \end_layout
13639
13640 \end_inset
13641 </cell>
13642 </row>
13643 <row>
13644 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
13645 \begin_inset Text
13646
13647 \begin_layout Plain Layout
13648
13649 \backslash
13650 fbox
13651 \begin_inset ERT
13652 status collapsed
13653
13654 \begin_layout Plain Layout
13655
13656
13657 \backslash
13658 leer 
13659 \end_layout
13660
13661 \end_inset
13662
13663
13664 \backslash
13665 colorbox{green
13666 \begin_inset Formula $\to$
13667 \end_inset
13668
13669
13670 \backslash
13671 {
13672 \family sans
13673 Strg+M Strg+M
13674 \family default
13675  
13676 \backslash
13677 int
13678 \begin_inset ERT
13679 status collapsed
13680
13681 \begin_layout Plain Layout
13682
13683
13684 \backslash
13685 leer 
13686 \end_layout
13687
13688 \end_inset
13689
13690 C=D
13691 \end_layout
13692
13693 \end_inset
13694 </cell>
13695 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
13696 \begin_inset Text
13697
13698 \begin_layout Plain Layout
13699 \begin_inset Formula $\raisebox{7mm}{}\fbox{\colorbox{green}{\mbox{\ensuremath{\int C=D}}}}\raisebox{-5mm}{}$
13700 \end_inset
13701
13702
13703 \end_layout
13704
13705 \end_inset
13706 </cell>
13707 </row>
13708 </lyxtabular>
13709
13710 \end_inset
13711
13712
13713 \end_layout
13714
13715 \begin_layout Standard
13716
13717 \series bold
13718
13719 \backslash
13720 colorbox
13721 \series default
13722  färbt nur die Box, nicht aber die Zeichen in der Box ein.
13723  Um alle Zeichen zu färben, markiert man die ganze Formel und wählt im Dialog
13724  
13725 \family sans
13726 Textstil
13727 \family default
13728  die gewünschte Farbe aus.
13729  Der Dialog kann mit dem Werkzeugleistenknopf 
13730 \begin_inset Graphics
13731         filename ../../images/dialog-show_character.png
13732         scale 85
13733
13734 \end_inset
13735
13736  oder dem Menü 
13737 \family sans
13738 Bearbeiten\SpecialChar \menuseparator
13739 Textstil\SpecialChar \menuseparator
13740 Benutzerdefiniert
13741 \family default
13742  aufgerufen werden.
13743  Die Formelnummer hat dann dieselbe Farbe wie die Formel.
13744  Soll die Formelnummer eine andere Farbe als die Formelzeichen haben, muss
13745  innerhalb der Formel die Farbe geändert werden.
13746 \end_layout
13747
13748 \begin_layout Standard
13749 Ein Beispiel:
13750 \end_layout
13751
13752 \begin_layout Standard
13753
13754 \color red
13755 \begin_inset Formula 
13756 \begin{equation}
13757 \int A=B\label{eq:rot}
13758 \end{equation}
13759
13760 \end_inset
13761
13762
13763 \color green
13764
13765 \begin_inset Formula 
13766 \begin{equation}
13767 \textcolor{red}{\int A=B}\label{eq:rotgruen}
13768 \end{equation}
13769
13770 \end_inset
13771
13772
13773 \end_layout
13774
13775 \begin_layout Standard
13776 Formel 
13777 \begin_inset CommandInset ref
13778 LatexCommand eqref
13779 reference "eq:rot"
13780
13781 \end_inset
13782
13783  ist komplett rot gefärbt.
13784 \begin_inset Newline newline
13785 \end_inset
13786
13787 Formel 
13788 \begin_inset CommandInset ref
13789 LatexCommand eqref
13790 reference "eq:rotgruen"
13791
13792 \end_inset
13793
13794  wurde zuerst komplett grün gefärbt, um die Farbe der Formelnummer festzulegen.
13795  Anschließend wurden die Formelzeichen rot gefärbt.
13796 \end_layout
13797
13798 \begin_layout Standard
13799 \begin_inset VSpace bigskip
13800 \end_inset
13801
13802 Möchte man den Rahmen anders als den Rest der Box färben, verwendet man
13803  den Befehl 
13804 \series bold
13805
13806 \backslash
13807 fcolorbox
13808 \series default
13809
13810 \begin_inset Index idx
13811 status collapsed
13812
13813 \begin_layout Plain Layout
13814 Befehle ! F ! 
13815 \backslash
13816 fcolorbox
13817 \end_layout
13818
13819 \end_inset
13820
13821  nach folgendem Schema:
13822 \end_layout
13823
13824 \begin_layout Standard
13825
13826 \series bold
13827
13828 \backslash
13829 fcolorbox{Rahmenfarbe}{Farbe}{Boxinhalt}
13830 \end_layout
13831
13832 \begin_layout Standard
13833
13834 \series bold
13835
13836 \backslash
13837 fcolorbox
13838 \series default
13839  stellt also eine Erweiterung des Befehls 
13840 \series bold
13841
13842 \backslash
13843 colorbox
13844 \series default
13845  dar.
13846  Die Rahmenbreite wird, wie bei 
13847 \series bold
13848
13849 \backslash
13850 framebox
13851 \series default
13852 , mit 
13853 \series bold
13854
13855 \backslash
13856 fboxrule
13857 \series default
13858  und 
13859 \series bold
13860
13861 \backslash
13862 fboxsep
13863 \series default
13864  festgelegt.
13865  Ein Beispiel:
13866 \begin_inset ERT
13867 status collapsed
13868
13869 \begin_layout Plain Layout
13870
13871
13872 \backslash
13873 fboxrule 1mm 
13874 \backslash
13875 fboxsep 1mm
13876 \end_layout
13877
13878 \end_inset
13879
13880
13881 \begin_inset Formula 
13882 \[
13883 \fcolorbox{cyan}{magenta}{A=B}
13884 \]
13885
13886 \end_inset
13887
13888
13889 \begin_inset ERT
13890 status collapsed
13891
13892 \begin_layout Plain Layout
13893
13894
13895 \backslash
13896 fboxrule 0.4pt 
13897 \backslash
13898 fboxsep 3pt
13899 \end_layout
13900
13901 \end_inset
13902
13903
13904 \end_layout
13905
13906 \begin_layout Standard
13907 Diese Formel wurde mit folgendem Befehl erstellt:
13908 \begin_inset Newline newline
13909 \end_inset
13910
13911
13912 \series bold
13913
13914 \backslash
13915 fcolorbox{cyan
13916 \begin_inset Formula $\to$
13917 \end_inset
13918
13919
13920 \backslash
13921 {magenta
13922 \begin_inset Formula $\to$
13923 \end_inset
13924
13925
13926 \backslash
13927 {A=B
13928 \end_layout
13929
13930 \begin_layout Standard
13931 \begin_inset VSpace bigskip
13932 \end_inset
13933
13934 Um andere als die vordefinierten Farben zu verwenden, muss man diese zuerst
13935  selbst definieren.
13936 \end_layout
13937
13938 \begin_layout Standard
13939 Man kann z.
13940 \begin_inset space \thinspace{}
13941 \end_inset
13942
13943 B.
13944  mit folgender LaTeX-Vorspannzeile die Farbe 
13945 \begin_inset Quotes gld
13946 \end_inset
13947
13948
13949 \series bold
13950 dunkelgruen
13951 \series default
13952
13953 \begin_inset Quotes grd
13954 \end_inset
13955
13956
13957 \begin_inset Foot
13958 status collapsed
13959
13960 \begin_layout Plain Layout
13961 In Befehlen darf kein Umlaut stehen, siehe 
13962 \begin_inset CommandInset ref
13963 LatexCommand ref
13964 reference "sec:Benutzerdefinierte-Befehle"
13965
13966 \end_inset
13967
13968 .
13969 \end_layout
13970
13971 \end_inset
13972
13973  definieren:
13974 \end_layout
13975
13976 \begin_layout Standard
13977
13978 \series bold
13979
13980 \backslash
13981 definecolor{dunkelgruen}{cmyk}{0.5,
13982 \series default
13983  
13984 \series bold
13985 0,
13986 \series default
13987  
13988 \series bold
13989 1,
13990 \series default
13991  
13992 \series bold
13993 0.5}
13994 \series default
13995
13996 \begin_inset Index idx
13997 status collapsed
13998
13999 \begin_layout Plain Layout
14000 Befehle ! D ! 
14001 \backslash
14002 definecolor
14003 \end_layout
14004
14005 \end_inset
14006
14007
14008 \end_layout
14009
14010 \begin_layout Standard
14011
14012 \series bold
14013 cmyk
14014 \series default
14015  ist der Farbraum und steht für die Farben 
14016 \series bold
14017 cyan
14018 \series default
14019
14020 \series bold
14021 magenta
14022 \series default
14023
14024 \series bold
14025 yellow
14026 \series default
14027  und 
14028 \series bold
14029 black
14030 \series default
14031 .
14032  Die vier Zahlen geben der Reihe nach den Anteil der vier Farben an.
14033  Für den Anteil kann man Werte im Bereich 0
14034 \begin_inset space \thinspace{}
14035 \end_inset
14036
14037 -
14038 \begin_inset space \thinspace{}
14039 \end_inset
14040
14041 1 angeben.
14042  Anstelle von 
14043 \series bold
14044 cmyk
14045 \series default
14046  kann man zur Definition auch den Farbraum 
14047 \series bold
14048 rgb
14049 \series default
14050  verwenden.
14051  
14052 \series bold
14053 rgb
14054 \series default
14055  steht für 
14056 \series bold
14057 red
14058 \series default
14059
14060 \series bold
14061 green
14062 \series default
14063  und 
14064 \series bold
14065 blue
14066 \series default
14067 , so dass man dann mit drei Zahlen die Anteile dieser Farben festlegen kann.
14068  Des Weiteren gibt es noch den Farbraum 
14069 \series bold
14070 gray
14071 \series default
14072 , bei dem man mit einer Zahl den Graustufenanteil festlegen kann.
14073 \end_layout
14074
14075 \begin_layout Standard
14076 Als Beispiel eine gerahmte Box mit der neu definierten Farbe 
14077 \series bold
14078 darkgreen
14079 \series default
14080 , bei der die Zeichenfarbe 
14081 \series bold
14082 yellow
14083 \series default
14084  gewählt wurde:
14085 \begin_inset Formula 
14086 \begin{equation}
14087 \colorbox{dunkelgruen}{\color{yellow}\boxed{\int A\,\mathrm{d}x=\frac{\sqrt[5]{B}}{\ln\left(\frac{1}{3}\right)}}}
14088 \end{equation}
14089
14090 \end_inset
14091
14092
14093 \end_layout
14094
14095 \begin_layout Standard
14096 Selbst definierte Farben können mit dem Befehl 
14097 \series bold
14098
14099 \backslash
14100 textcolor
14101 \series default
14102  auch für Text
14103 \begin_inset Index idx
14104 status collapsed
14105
14106 \begin_layout Plain Layout
14107 Text ! farbiger
14108 \end_layout
14109
14110 \end_inset
14111
14112  verwendet werden:
14113 \end_layout
14114
14115 \begin_layout Standard
14116 \begin_inset ERT
14117 status collapsed
14118
14119 \begin_layout Plain Layout
14120
14121
14122 \backslash
14123 textcolor{dunkelgruen}{
14124 \end_layout
14125
14126 \end_inset
14127
14128 Dieser Satz ist 
14129 \begin_inset Quotes gld
14130 \end_inset
14131
14132 dunkelgruen
14133 \begin_inset Quotes grd
14134 \end_inset
14135
14136 .
14137 \begin_inset ERT
14138 status collapsed
14139
14140 \begin_layout Plain Layout
14141
14142 }
14143 \end_layout
14144
14145 \end_inset
14146
14147
14148 \end_layout
14149
14150 \begin_layout Standard
14151
14152 \series bold
14153
14154 \backslash
14155 textcolor
14156 \series default
14157
14158 \begin_inset Index idx
14159 status collapsed
14160
14161 \begin_layout Plain Layout
14162 Befehle ! T ! 
14163 \backslash
14164 textcolor
14165 \end_layout
14166
14167 \end_inset
14168
14169  wird nach dem Schema 
14170 \series bold
14171
14172 \backslash
14173 textcolor{Farbe}{zu
14174 \series default
14175  
14176 \series bold
14177 färbende
14178 \series default
14179  
14180 \series bold
14181 Zeichen}
14182 \series default
14183  verwendet.
14184 \end_layout
14185
14186 \begin_layout Subsection
14187 Absatzboxen
14188 \begin_inset CommandInset label
14189 LatexCommand label
14190 name "sub:Absatzboxen"
14191
14192 \end_inset
14193
14194
14195 \begin_inset Index idx
14196 status collapsed
14197
14198 \begin_layout Plain Layout
14199 Boxen ! Absatz-
14200 \end_layout
14201
14202 \end_inset
14203
14204
14205 \end_layout
14206
14207 \begin_layout Standard
14208 Mit dem Menü 
14209 \family sans
14210 Einfügen\SpecialChar \menuseparator
14211 Box
14212 \family default
14213  oder dem Werkzeugleistenknopf 
14214 \begin_inset Graphics
14215         filename ../../images/box-insert.png
14216         scale 85
14217
14218 \end_inset
14219
14220  kann man eine Box erstellen, die mehrere Zeilen und Absätze enthalten kann,
14221  eine so genannte 
14222 \emph on
14223 Parbox
14224 \emph default
14225  (Absatzbox).
14226 \end_layout
14227
14228 \begin_layout Standard
14229 Das folgende Beispiel zeigt eine umrahmte Absatzbox in einer Zeile:
14230 \end_layout
14231
14232 \begin_layout Standard
14233 \begin_inset VSpace medskip
14234 \end_inset
14235
14236 Dies ist eine Zeile 
14237 \begin_inset Box Boxed
14238 position "c"
14239 hor_pos "c"
14240 has_inner_box 1
14241 inner_pos "t"
14242 use_parbox 1
14243 use_makebox 0
14244 width "5cm"
14245 special "none"
14246 height "1in"
14247 height_special "totalheight"
14248 status open
14249
14250 \begin_layout Plain Layout
14251 Dies ist die Absatzbox.
14252  Sie ist genau 5
14253 \begin_inset space \thinspace{}
14254 \end_inset
14255
14256 cm lang und kann auch Formeln enthalten: 
14257 \begin_inset Formula $\int A\,\mathrm{d}s=C$
14258 \end_inset
14259
14260
14261 \end_layout
14262
14263 \end_inset
14264
14265  mit einer Absatzbox.
14266 \begin_inset VSpace medskip
14267 \end_inset
14268
14269
14270 \end_layout
14271
14272 \begin_layout Standard
14273 Solch eine Box wird erstellt, indem man mit der rechten Maustaste auf die
14274  graue Box mit dem Namen 
14275 \begin_inset Quotes gld
14276 \end_inset
14277
14278 Box(Gerahmt)
14279 \begin_inset Quotes grd
14280 \end_inset
14281
14282  klickt.
14283  Es erscheint dann ein Fenster in dem man die Boxeigenschaften festlegt.
14284  In diesem Fall: 
14285 \emph on
14286 Verzierung
14287 \emph default
14288 : Rechteckige Box, 
14289 \emph on
14290 Innere Box
14291 \emph default
14292 : Parbox, 
14293 \emph on
14294 Breite
14295 \emph default
14296 : 5
14297 \begin_inset space \thinspace{}
14298 \end_inset
14299
14300 cm, 
14301 \emph on
14302 Vertikale Box Ausrichtung
14303 \emph default
14304 : Mitte
14305 \end_layout
14306
14307 \begin_layout Standard
14308 \begin_inset VSpace medskip
14309 \end_inset
14310
14311 In LaTeX wird eine Absatzbox mit dem Befehl 
14312 \series bold
14313
14314 \backslash
14315 parbox
14316 \series default
14317
14318 \begin_inset Index idx
14319 status collapsed
14320
14321 \begin_layout Plain Layout
14322 Befehle ! P ! 
14323 \backslash
14324 parbox
14325 \end_layout
14326
14327 \end_inset
14328
14329  erstellt, welcher folgendes Schema besitzt:
14330 \end_layout
14331
14332 \begin_layout Standard
14333
14334 \series bold
14335
14336 \backslash
14337 parbox[Position]{Breite}{Boxinhalt}
14338 \end_layout
14339
14340 \begin_layout Standard
14341 Die Positionen 
14342 \emph on
14343 b
14344 \emph default
14345  und 
14346 \emph on
14347 t
14348 \emph default
14349  sind möglich.
14350  
14351 \emph on
14352 b
14353 \emph default
14354  steht für 
14355 \begin_inset Quotes gld
14356 \end_inset
14357
14358 bottom
14359 \begin_inset Quotes grd
14360 \end_inset
14361
14362  (unten) und bedeutet, dass die letzte Absatzzeile in den umstehenden Text
14363  eingepasst wird.
14364  Bei 
14365 \emph on
14366 t
14367 \emph default
14368  wie 
14369 \begin_inset Quotes gld
14370 \end_inset
14371
14372 top
14373 \begin_inset Quotes grd
14374 \end_inset
14375
14376  (oben) geschieht dies für die erste Zeile.
14377  Wird keine Position angegeben, wird der Absatz in mittlerer Höhe eingepasst,
14378  siehe das Kapitel 
14379 \emph on
14380 Boxen
14381 \emph default
14382  des Handbuchs
14383 \emph on
14384  Eingebettete
14385 \begin_inset space ~
14386 \end_inset
14387
14388 Objekte
14389 \emph default
14390  für Beispiele.
14391 \end_layout
14392
14393 \begin_layout Standard
14394 \begin_inset VSpace bigskip
14395 \end_inset
14396
14397 Möchte man Formeln komplett mit Formelnummer umranden, muss man die Formel
14398  in eine Absatzbox setzen.
14399  Dazu schreibt man im TeX-Modus vor die Formel den Befehl 
14400 \series bold
14401
14402 \backslash
14403 fbox{
14404 \backslash
14405 parbox{
14406 \backslash
14407 linewidth-2
14408 \backslash
14409 fboxsep-2
14410 \backslash
14411 fboxrule}{
14412 \series default
14413 .
14414  Hierbei steht 
14415 \series bold
14416
14417 \backslash
14418 linewidth
14419 \series default
14420
14421 \begin_inset Index idx
14422 status collapsed
14423
14424 \begin_layout Plain Layout
14425 Befehle ! L ! 
14426 \backslash
14427 linewidth
14428 \end_layout
14429
14430 \end_inset
14431
14432  für die im Dokument eingestellte Zeilenbreite.
14433  Da sich der Rahmen außerhalb der Absatzbox befindet, muss man von der Zeilenbre
14434 ite zweimal die Rahmendicke und den Rahmenabstand abziehen.
14435  Da dies LyX aufgrund eines Fehlers
14436 \begin_inset Foot
14437 status collapsed
14438
14439 \begin_layout Plain Layout
14440 \begin_inset CommandInset href
14441 LatexCommand href
14442 name "LyX-Fehler #4483"
14443 target "http://www.lyx.org/trac/ticket/4483"
14444
14445 \end_inset
14446
14447
14448 \end_layout
14449
14450 \end_inset
14451
14452  nicht automatisch macht, muss der TeX-Modus verwendet werden.
14453  Damit man in Argumenten multiplizieren und subtrahieren kann, muss im LaTeX-Vor
14454 spann das LaTeX-Paket 
14455 \series bold
14456 calc
14457 \series default
14458
14459 \begin_inset Foot
14460 status collapsed
14461
14462 \begin_layout Plain Layout
14463
14464 \series bold
14465 calc
14466 \series default
14467  ist Teil jeder LaTeX-Standardinstallation.
14468 \end_layout
14469
14470 \end_inset
14471
14472
14473 \begin_inset Index idx
14474 status collapsed
14475
14476 \begin_layout Plain Layout
14477 Pakete ! calc
14478 \end_layout
14479
14480 \end_inset
14481
14482  mit der Zeile
14483 \end_layout
14484
14485 \begin_layout Standard
14486
14487 \series bold
14488
14489 \backslash
14490 usepackage{calc}
14491 \end_layout
14492
14493 \begin_layout Standard
14494 geladen werden.
14495  Nach der Formel werden beide Boxen geschlossen, indem man 
14496 \series bold
14497 }}
14498 \series default
14499  im TeX-Modus eingibt.
14500  Dazu ein Beispiel:
14501 \begin_inset ERT
14502 status collapsed
14503
14504 \begin_layout Plain Layout
14505
14506
14507 \backslash
14508 fboxsep 5mm 
14509 \backslash
14510 fboxrule 5mm
14511 \end_layout
14512
14513 \end_inset
14514
14515
14516 \end_layout
14517
14518 \begin_layout Standard
14519 \begin_inset ERT
14520 status collapsed
14521
14522 \begin_layout Plain Layout
14523
14524
14525 \backslash
14526 fbox{
14527 \backslash
14528 parbox{
14529 \backslash
14530 linewidth-2
14531 \backslash
14532 fboxsep-2
14533 \backslash
14534 fboxrule}{
14535 \end_layout
14536
14537 \end_inset
14538
14539
14540 \begin_inset Formula 
14541 \begin{equation}
14542 \int A\,\mathrm{d}x=\frac{\sqrt[5]{B}}{\ln\left(\frac{1}{3}\right)}
14543 \end{equation}
14544
14545 \end_inset
14546
14547
14548 \begin_inset ERT
14549 status collapsed
14550
14551 \begin_layout Plain Layout
14552
14553 }}
14554 \end_layout
14555
14556 \end_inset
14557
14558
14559 \begin_inset ERT
14560 status collapsed
14561
14562 \begin_layout Plain Layout
14563
14564
14565 \backslash
14566 fboxrule 0.4pt 
14567 \backslash
14568 fboxsep 3pt
14569 \end_layout
14570
14571 \end_inset
14572
14573
14574 \end_layout
14575
14576 \begin_layout Standard
14577 \begin_inset VSpace medskip
14578 \end_inset
14579
14580 Da im Argument von 
14581 \series bold
14582
14583 \backslash
14584 fbox
14585 \series default
14586  eine Absatzbox verwendet wird, gibt es in diesem Fall bei der Formelgröße
14587  keinen Unterschied zwischen 
14588 \series bold
14589
14590 \backslash
14591 fbox
14592 \series default
14593  und 
14594 \series bold
14595
14596 \backslash
14597 boxed
14598 \series default
14599 .
14600 \end_layout
14601
14602 \begin_layout Standard
14603 \begin_inset VSpace bigskip
14604 \end_inset
14605
14606 Sehr nützlich sind Absatzboxen, wenn man Formeln direkt kommentieren möchte.
14607  Dazu verwendet man 
14608 \series bold
14609
14610 \backslash
14611 parbox
14612 \series default
14613  in Verbindung mit dem Befehl 
14614 \series bold
14615
14616 \backslash
14617 tag
14618 \series default
14619 .
14620  (mehr zu 
14621 \series bold
14622
14623 \backslash
14624 tag
14625 \series default
14626  siehe 
14627 \begin_inset CommandInset ref
14628 LatexCommand ref
14629 reference "sub:Benutzerdefinierte-Nummerierung"
14630
14631 \end_inset
14632
14633 )
14634 \end_layout
14635
14636 \begin_layout Standard
14637 Ein Beispiel einer mit Hilfe von 
14638 \series bold
14639
14640 \backslash
14641 parbox
14642 \series default
14643  kommentierten Formel:
14644 \end_layout
14645
14646 \begin_layout Standard
14647 \begin_inset ERT
14648 status collapsed
14649
14650 \begin_layout Plain Layout
14651
14652
14653 \backslash
14654 [5x-7b=3b
14655 \backslash
14656 tag*{
14657 \backslash
14658 parbox{5cm}{
14659 \end_layout
14660
14661 \end_inset
14662
14663 Dies ist eine Beschreibung.
14664  Sie ist deutlich von der Formel getrennt und mehrzeilig.
14665 \begin_inset ERT
14666 status collapsed
14667
14668 \begin_layout Plain Layout
14669
14670 }}
14671 \backslash
14672 ]
14673 \end_layout
14674
14675 \end_inset
14676
14677
14678 \end_layout
14679
14680 \begin_layout Standard
14681 So eine Formel muss komplett im TeX-Modus eingegeben werden, da LyX den
14682  Befehl 
14683 \series bold
14684
14685 \backslash
14686 parbox
14687 \series default
14688  in Formeln noch nicht unterstützt.
14689  Die Formel wird mit folgender Befehlssequenz erstellt:
14690 \end_layout
14691
14692 \begin_layout Standard
14693 Der Befehl 
14694 \series bold
14695
14696 \backslash
14697 [5x-7b=3b
14698 \backslash
14699 tag*
14700 \backslash
14701 {
14702 \backslash
14703 parbox{5cm}{
14704 \series default
14705  wird im TeX-Modus eingegeben.
14706 \begin_inset Foot
14707 status collapsed
14708
14709 \begin_layout Plain Layout
14710 Ist der Formelstil 
14711 \series bold
14712 Eingerückt
14713 \series default
14714  aktiviert, kann 
14715 \series bold
14716
14717 \backslash
14718 tag*
14719 \backslash
14720 {
14721 \series default
14722  auch durch 
14723 \series bold
14724
14725 \backslash
14726 hfill
14727 \series default
14728  ersetzt werden.
14729  (Formelstile siehe 
14730 \begin_inset CommandInset ref
14731 LatexCommand ref
14732 reference "sec:Formelstile"
14733
14734 \end_inset
14735
14736 )
14737 \end_layout
14738
14739 \end_inset
14740
14741  Dann folgt die Beschreibung als normaler Text und zuletzt gibt man 
14742 \series bold
14743 }}
14744 \backslash
14745 ]
14746 \series default
14747  im TeX-Modus ein.
14748  Die Befehle 
14749 \series bold
14750
14751 \backslash
14752 [
14753 \series default
14754  und 
14755 \series bold
14756
14757 \backslash
14758 ]
14759 \series default
14760  erstellen hierbei eine abgesetzte Formel.
14761 \end_layout
14762
14763 \begin_layout Standard
14764 Die Vorteile von 
14765 \series bold
14766
14767 \backslash
14768 parbox
14769 \series default
14770  erkennt man an folgendem Beispiel, in dem mit Hilfe des mathematischen
14771  Textmodus 
14772 \begin_inset Quotes gld
14773 \end_inset
14774
14775 kommentiert
14776 \begin_inset Quotes grd
14777 \end_inset
14778
14779  wurde:
14780 \begin_inset Formula 
14781 \[
14782 5x-7b=3b\textrm{Dies ist eine Beschreibung. Sie ist nicht von der Formel getrennt ...}
14783 \]
14784
14785 \end_inset
14786
14787
14788 \end_layout
14789
14790 \begin_layout Standard
14791 \begin_inset Newpage newpage
14792 \end_inset
14793
14794
14795 \end_layout
14796
14797 \begin_layout Section
14798 Operatoren
14799 \begin_inset Index idx
14800 status collapsed
14801
14802 \begin_layout Plain Layout
14803 Operatoren
14804 \end_layout
14805
14806 \end_inset
14807
14808
14809 \end_layout
14810
14811 \begin_layout Subsection
14812 Große Operatoren
14813 \begin_inset CommandInset label
14814 LatexCommand label
14815 name "sub:Große-Operatoren"
14816
14817 \end_inset
14818
14819
14820 \begin_inset Index idx
14821 status collapsed
14822
14823 \begin_layout Plain Layout
14824 Operatoren ! große
14825 \end_layout
14826
14827 \end_inset
14828
14829
14830 \begin_inset Index idx
14831 status collapsed
14832
14833 \begin_layout Plain Layout
14834 Summen
14835 \end_layout
14836
14837 \end_inset
14838
14839
14840 \begin_inset Index idx
14841 status collapsed
14842
14843 \begin_layout Plain Layout
14844 Integrale
14845 \end_layout
14846
14847 \end_inset
14848
14849
14850 \end_layout
14851
14852 \begin_layout Standard
14853 Um alle großen Integraloperatoren nutzen zu können, die im Folgenden aufgelistet
14854  sind, muss die Option 
14855 \family sans
14856 esint-Paket automatisch verwenden
14857 \family default
14858  in den Dokumenteinstellungen unter 
14859 \family sans
14860 Mathe-Optionen
14861 \family default
14862  gewählt sein.
14863 \end_layout
14864
14865 \begin_layout Standard
14866 \begin_inset space \hfill{}
14867 \end_inset
14868
14869
14870 \begin_inset Tabular
14871 <lyxtabular version="3" rows="11" columns="2">
14872 <features tabularvalignment="middle">
14873 <column alignment="center" valignment="top" width="0pt">
14874 <column alignment="center" valignment="top" width="0pt">
14875 <row>
14876 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
14877 \begin_inset Text
14878
14879 \begin_layout Plain Layout
14880 Befehl
14881 \end_layout
14882
14883 \end_inset
14884 </cell>
14885 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
14886 \begin_inset Text
14887
14888 \begin_layout Plain Layout
14889 Ergebnis
14890 \end_layout
14891
14892 \end_inset
14893 </cell>
14894 </row>
14895 <row>
14896 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14897 \begin_inset Text
14898
14899 \begin_layout Plain Layout
14900
14901 \backslash
14902 int
14903 \begin_inset Index idx
14904 status collapsed
14905
14906 \begin_layout Plain Layout
14907 Befehle ! I ! 
14908 \backslash
14909 int
14910 \end_layout
14911
14912 \end_inset
14913
14914
14915 \end_layout
14916
14917 \end_inset
14918 </cell>
14919 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14920 \begin_inset Text
14921
14922 \begin_layout Plain Layout
14923 \begin_inset Formula $\int$
14924 \end_inset
14925
14926
14927 \end_layout
14928
14929 \end_inset
14930 </cell>
14931 </row>
14932 <row>
14933 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14934 \begin_inset Text
14935
14936 \begin_layout Plain Layout
14937
14938 \backslash
14939 oint
14940 \end_layout
14941
14942 \end_inset
14943 </cell>
14944 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14945 \begin_inset Text
14946
14947 \begin_layout Plain Layout
14948 \begin_inset Formula $\oint$
14949 \end_inset
14950
14951
14952 \end_layout
14953
14954 \end_inset
14955 </cell>
14956 </row>
14957 <row>
14958 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14959 \begin_inset Text
14960
14961 \begin_layout Plain Layout
14962
14963 \backslash
14964 ointctrclockwise
14965 \end_layout
14966
14967 \end_inset
14968 </cell>
14969 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14970 \begin_inset Text
14971
14972 \begin_layout Plain Layout
14973 \begin_inset Formula $\ointctrclockwise$
14974 \end_inset
14975
14976
14977 \end_layout
14978
14979 \end_inset
14980 </cell>
14981 </row>
14982 <row>
14983 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14984 \begin_inset Text
14985
14986 \begin_layout Plain Layout
14987
14988 \backslash
14989 ointclockwise
14990 \end_layout
14991
14992 \end_inset
14993 </cell>
14994 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14995 \begin_inset Text
14996
14997 \begin_layout Plain Layout
14998 \begin_inset Formula $\ointclockwise$
14999 \end_inset
15000
15001
15002 \end_layout
15003
15004 \end_inset
15005 </cell>
15006 </row>
15007 <row>
15008 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15009 \begin_inset Text
15010
15011 \begin_layout Plain Layout
15012
15013 \backslash
15014 sqint
15015 \end_layout
15016
15017 \end_inset
15018 </cell>
15019 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15020 \begin_inset Text
15021
15022 \begin_layout Plain Layout
15023 \begin_inset Formula $\sqint$
15024 \end_inset
15025
15026
15027 \end_layout
15028
15029 \end_inset
15030 </cell>
15031 </row>
15032 <row>
15033 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15034 \begin_inset Text
15035
15036 \begin_layout Plain Layout
15037
15038 \backslash
15039 fint
15040 \end_layout
15041
15042 \end_inset
15043 </cell>
15044 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15045 \begin_inset Text
15046
15047 \begin_layout Plain Layout
15048  
15049 \begin_inset Formula $\fint$
15050 \end_inset
15051
15052
15053 \end_layout
15054
15055 \end_inset
15056 </cell>
15057 </row>
15058 <row>
15059 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15060 \begin_inset Text
15061
15062 \begin_layout Plain Layout
15063
15064 \backslash
15065 landupint
15066 \end_layout
15067
15068 \end_inset
15069 </cell>
15070 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15071 \begin_inset Text
15072
15073 \begin_layout Plain Layout
15074  
15075 \begin_inset Formula $\landupint$
15076 \end_inset
15077
15078
15079 \end_layout
15080
15081 \end_inset
15082 </cell>
15083 </row>
15084 <row>
15085 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15086 \begin_inset Text
15087
15088 \begin_layout Plain Layout
15089
15090 \backslash
15091 landdownint
15092 \end_layout
15093
15094 \end_inset
15095 </cell>
15096 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15097 \begin_inset Text
15098
15099 \begin_layout Plain Layout
15100  
15101 \begin_inset Formula $\landdownint$
15102 \end_inset
15103
15104
15105 \end_layout
15106
15107 \end_inset
15108 </cell>
15109 </row>
15110 <row>
15111 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15112 \begin_inset Text
15113
15114 \begin_layout Plain Layout
15115
15116 \backslash
15117 bigcap
15118 \end_layout
15119
15120 \end_inset
15121 </cell>
15122 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15123 \begin_inset Text
15124
15125 \begin_layout Plain Layout
15126 \begin_inset Formula $\bigcap$
15127 \end_inset
15128
15129
15130 \end_layout
15131
15132 \end_inset
15133 </cell>
15134 </row>
15135 <row>
15136 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
15137 \begin_inset Text
15138
15139 \begin_layout Plain Layout
15140
15141 \backslash
15142 bigcup
15143 \end_layout
15144
15145 \end_inset
15146 </cell>
15147 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
15148 \begin_inset Text
15149
15150 \begin_layout Plain Layout
15151 \begin_inset Formula $\bigcup$
15152 \end_inset
15153
15154
15155 \end_layout
15156
15157 \end_inset
15158 </cell>
15159 </row>
15160 </lyxtabular>
15161
15162 \end_inset
15163
15164
15165 \begin_inset space \hfill{}
15166 \end_inset
15167
15168
15169 \begin_inset Tabular
15170 <lyxtabular version="3" rows="11" columns="2">
15171 <features tabularvalignment="middle">
15172 <column alignment="center" valignment="top" width="0pt">
15173 <column alignment="center" valignment="top" width="0pt">
15174 <row>
15175 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
15176 \begin_inset Text
15177
15178 \begin_layout Plain Layout
15179 Befehl
15180 \end_layout
15181
15182 \end_inset
15183 </cell>
15184 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
15185 \begin_inset Text
15186
15187 \begin_layout Plain Layout
15188 Ergebnis
15189 \end_layout
15190
15191 \end_inset
15192 </cell>
15193 </row>
15194 <row>
15195 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15196 \begin_inset Text
15197
15198 \begin_layout Plain Layout
15199
15200 \backslash
15201 sum
15202 \begin_inset Index idx
15203 status collapsed
15204
15205 \begin_layout Plain Layout
15206 Befehle ! S ! 
15207 \backslash
15208 sum
15209 \end_layout
15210
15211 \end_inset
15212
15213
15214 \end_layout
15215
15216 \end_inset
15217 </cell>
15218 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
15219 \begin_inset Text
15220
15221 \begin_layout Plain Layout
15222 \begin_inset Formula $\sum$
15223 \end_inset
15224
15225
15226 \end_layout
15227
15228 \end_inset
15229 </cell>
15230 </row>
15231 <row>
15232 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15233 \begin_inset Text
15234
15235 \begin_layout Plain Layout
15236
15237 \backslash
15238 prod
15239 \begin_inset Index idx
15240 status collapsed
15241
15242 \begin_layout Plain Layout
15243 Befehle ! P ! 
15244 \backslash
15245 prod
15246 \end_layout
15247
15248 \end_inset
15249
15250
15251 \end_layout
15252
15253 \end_inset
15254 </cell>
15255 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15256 \begin_inset Text
15257
15258 \begin_layout Plain Layout
15259 \begin_inset Formula $\prod$
15260 \end_inset
15261
15262
15263 \end_layout
15264
15265 \end_inset
15266 </cell>
15267 </row>
15268 <row>
15269 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15270 \begin_inset Text
15271
15272 \begin_layout Plain Layout
15273
15274 \backslash
15275 coprod
15276 \end_layout
15277
15278 \end_inset
15279 </cell>
15280 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15281 \begin_inset Text
15282
15283 \begin_layout Plain Layout
15284 \begin_inset Formula $\coprod$
15285 \end_inset
15286
15287
15288 \end_layout
15289
15290 \end_inset
15291 </cell>
15292 </row>
15293 <row>
15294 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15295 \begin_inset Text
15296
15297 \begin_layout Plain Layout
15298
15299 \backslash
15300 bigodot
15301 \end_layout
15302
15303 \end_inset
15304 </cell>
15305 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15306 \begin_inset Text
15307
15308 \begin_layout Plain Layout
15309 \begin_inset Formula $\bigodot$
15310 \end_inset
15311
15312
15313 \end_layout
15314
15315 \end_inset
15316 </cell>
15317 </row>
15318 <row>
15319 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15320 \begin_inset Text
15321
15322 \begin_layout Plain Layout
15323
15324 \backslash
15325 bigotimes
15326 \end_layout
15327
15328 \end_inset
15329 </cell>
15330 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15331 \begin_inset Text
15332
15333 \begin_layout Plain Layout
15334 \begin_inset Formula $\bigotimes$
15335 \end_inset
15336
15337
15338 \end_layout
15339
15340 \end_inset
15341 </cell>
15342 </row>
15343 <row>
15344 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15345 \begin_inset Text
15346
15347 \begin_layout Plain Layout
15348
15349 \backslash
15350 bigoplus
15351 \end_layout
15352
15353 \end_inset
15354 </cell>
15355 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15356 \begin_inset Text
15357
15358 \begin_layout Plain Layout
15359 \begin_inset Formula $\bigoplus$
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 bigwedge
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 \begin_inset Formula $\bigwedge$
15385 \end_inset
15386
15387
15388 \end_layout
15389
15390 \end_inset
15391 </cell>
15392 </row>
15393 <row>
15394 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15395 \begin_inset Text
15396
15397 \begin_layout Plain Layout
15398
15399 \backslash
15400 bigvee
15401 \end_layout
15402
15403 \end_inset
15404 </cell>
15405 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15406 \begin_inset Text
15407
15408 \begin_layout Plain Layout
15409 \begin_inset Formula $\bigvee$
15410 \end_inset
15411
15412
15413 \end_layout
15414
15415 \end_inset
15416 </cell>
15417 </row>
15418 <row>
15419 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15420 \begin_inset Text
15421
15422 \begin_layout Plain Layout
15423
15424 \backslash
15425 bigsqcup
15426 \end_layout
15427
15428 \end_inset
15429 </cell>
15430 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15431 \begin_inset Text
15432
15433 \begin_layout Plain Layout
15434 \begin_inset Formula $\bigsqcup$
15435 \end_inset
15436
15437
15438 \end_layout
15439
15440 \end_inset
15441 </cell>
15442 </row>
15443 <row>
15444 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
15445 \begin_inset Text
15446
15447 \begin_layout Plain Layout
15448
15449 \backslash
15450 biguplus
15451 \end_layout
15452
15453 \end_inset
15454 </cell>
15455 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
15456 \begin_inset Text
15457
15458 \begin_layout Plain Layout
15459 \begin_inset Formula $\biguplus$
15460 \end_inset
15461
15462
15463 \end_layout
15464
15465 \end_inset
15466 </cell>
15467 </row>
15468 </lyxtabular>
15469
15470 \end_inset
15471
15472
15473 \begin_inset space \hfill{}
15474 \end_inset
15475
15476
15477 \end_layout
15478
15479 \begin_layout Standard
15480 Alle großen Operatoren können auch über den Mathe-Werkzeugleistenknopf 
15481 \begin_inset Graphics
15482         filename ../../images/math/intop.png
15483         scale 85
15484
15485 \end_inset
15486
15487  eingefügt werden.
15488 \end_layout
15489
15490 \begin_layout Standard
15491 Die Operatoren werden als groß bezeichnet, da sie größer sind als die zum
15492  Teil gleich aussehenden binären Operatoren.
15493  Zu allen großen Operatoren kann man Grenzen angeben, wie im nächsten Abschnitt
15494  beschrieben.
15495 \end_layout
15496
15497 \begin_layout Standard
15498 Für alle Integrale gibt es Befehle, die auf 
15499 \series bold
15500 op
15501 \series default
15502  enden: 
15503 \series bold
15504
15505 \backslash
15506 intop
15507 \series default
15508
15509 \series bold
15510
15511 \backslash
15512 ointop
15513 \series default
15514  usw..
15515  Diese unterscheiden sich von 
15516 \series bold
15517
15518 \backslash
15519 int
15520 \series default
15521  usw.
15522 \begin_inset space \space{}
15523 \end_inset
15524
15525 in der Art wie die Operatorgrenzen dargestellt werden, siehe 
15526 \begin_inset CommandInset ref
15527 LatexCommand ref
15528 reference "sub:Operatorgrenzen"
15529
15530 \end_inset
15531
15532 .
15533  
15534 \end_layout
15535
15536 \begin_layout Subsubsection*
15537 Hinweise zu Integralen
15538 \end_layout
15539
15540 \begin_layout Standard
15541 Der Buchstabe 
15542 \emph on
15543 d
15544 \emph default
15545  in einer Integralen ist ein Operator, der deswegen aufrecht erscheinen
15546  muss.
15547  Dazu markiert man das 
15548 \emph on
15549 d
15550 \emph default
15551  und wandelt es mit der Tastenkombination 
15552 \family sans
15553 Alt+Z
15554 \begin_inset space ~
15555 \end_inset
15556
15557 R
15558 \family default
15559
15560 \begin_inset Foot
15561 status collapsed
15562
15563 \begin_layout Plain Layout
15564 Schriftstile siehe 
15565 \begin_inset CommandInset ref
15566 LatexCommand ref
15567 reference "sub:Schriftstile"
15568
15569 \end_inset
15570
15571
15572 \end_layout
15573
15574 \end_inset
15575
15576  um.
15577  Anschließend fügt man vor dem 
15578 \emph on
15579 d
15580 \emph default
15581 , wie bei Operatoren üblich, den kleinsten Leerraum ein.
15582  Dazu ein Beispiel:
15583 \end_layout
15584
15585 \begin_layout Standard
15586 inkorrekt: 
15587 \begin_inset Formula $\int A(x)dx$
15588 \end_inset
15589
15590
15591 \begin_inset Newline newline
15592 \end_inset
15593
15594
15595 \begin_inset Phantom HPhantom
15596 status open
15597
15598 \begin_layout Plain Layout
15599 in
15600 \end_layout
15601
15602 \end_inset
15603
15604 korrekt: 
15605 \begin_inset Formula $\int A(x)\,\mathrm{d}x$
15606 \end_inset
15607
15608
15609 \end_layout
15610
15611 \begin_layout Standard
15612 \begin_inset VSpace medskip
15613 \end_inset
15614
15615 Für Mehrfachintegrale gibt es folgende Befehle:
15616 \begin_inset VSpace medskip
15617 \end_inset
15618
15619
15620 \end_layout
15621
15622 \begin_layout Standard
15623 \begin_inset space \hfill{}
15624 \end_inset
15625
15626
15627 \begin_inset Tabular
15628 <lyxtabular version="3" rows="4" columns="2">
15629 <features tabularvalignment="middle">
15630 <column alignment="center" valignment="top" width="0">
15631 <column alignment="center" valignment="top" width="0">
15632 <row>
15633 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
15634 \begin_inset Text
15635
15636 \begin_layout Plain Layout
15637 Befehl
15638 \end_layout
15639
15640 \end_inset
15641 </cell>
15642 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
15643 \begin_inset Text
15644
15645 \begin_layout Plain Layout
15646 Ergebnis
15647 \begin_inset Note Note
15648 status collapsed
15649
15650 \begin_layout Plain Layout
15651
15652 \series bold
15653
15654 \backslash
15655 raisebox
15656 \series default
15657  dient nur als Abstandhalter.
15658 \end_layout
15659
15660 \end_inset
15661
15662
15663 \end_layout
15664
15665 \end_inset
15666 </cell>
15667 </row>
15668 <row>
15669 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15670 \begin_inset Text
15671
15672 \begin_layout Plain Layout
15673
15674 \backslash
15675 iint
15676 \end_layout
15677
15678 \end_inset
15679 </cell>
15680 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15681 \begin_inset Text
15682
15683 \begin_layout Plain Layout
15684 \begin_inset Formula $\raisebox{4.5mm}{}\iint\raisebox{-2.5mm}{}$
15685 \end_inset
15686
15687
15688 \end_layout
15689
15690 \end_inset
15691 </cell>
15692 </row>
15693 <row>
15694 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15695 \begin_inset Text
15696
15697 \begin_layout Plain Layout
15698
15699 \backslash
15700 oiint
15701 \end_layout
15702
15703 \end_inset
15704 </cell>
15705 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15706 \begin_inset Text
15707
15708 \begin_layout Plain Layout
15709 \begin_inset Formula $\raisebox{4.5mm}{}\oiint\raisebox{-2.5mm}{}$
15710 \end_inset
15711
15712
15713 \end_layout
15714
15715 \end_inset
15716 </cell>
15717 </row>
15718 <row>
15719 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
15720 \begin_inset Text
15721
15722 \begin_layout Plain Layout
15723
15724 \backslash
15725 sqiint
15726 \end_layout
15727
15728 \end_inset
15729 </cell>
15730 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
15731 \begin_inset Text
15732
15733 \begin_layout Plain Layout
15734 \begin_inset Formula $\raisebox{4.5mm}{}\sqiint\raisebox{-2.5mm}{}$
15735 \end_inset
15736
15737
15738 \end_layout
15739
15740 \end_inset
15741 </cell>
15742 </row>
15743 </lyxtabular>
15744
15745 \end_inset
15746
15747
15748 \begin_inset space \hfill{}
15749 \end_inset
15750
15751
15752 \begin_inset Tabular
15753 <lyxtabular version="3" rows="4" columns="2">
15754 <features tabularvalignment="middle">
15755 <column alignment="center" valignment="top" width="0">
15756 <column alignment="center" valignment="top" width="0">
15757 <row>
15758 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
15759 \begin_inset Text
15760
15761 \begin_layout Plain Layout
15762 Befehl
15763 \end_layout
15764
15765 \end_inset
15766 </cell>
15767 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
15768 \begin_inset Text
15769
15770 \begin_layout Plain Layout
15771 Ergebnis
15772 \end_layout
15773
15774 \end_inset
15775 </cell>
15776 </row>
15777 <row>
15778 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15779 \begin_inset Text
15780
15781 \begin_layout Plain Layout
15782
15783 \backslash
15784 iiint
15785 \end_layout
15786
15787 \end_inset
15788 </cell>
15789 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15790 \begin_inset Text
15791
15792 \begin_layout Plain Layout
15793 \begin_inset Formula $\raisebox{4.5mm}{}\iiint\raisebox{-2.5mm}{}$
15794 \end_inset
15795
15796
15797 \end_layout
15798
15799 \end_inset
15800 </cell>
15801 </row>
15802 <row>
15803 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15804 \begin_inset Text
15805
15806 \begin_layout Plain Layout
15807
15808 \backslash
15809 iiiint
15810 \end_layout
15811
15812 \end_inset
15813 </cell>
15814 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15815 \begin_inset Text
15816
15817 \begin_layout Plain Layout
15818 \begin_inset Formula $\raisebox{4.5mm}{}\iiiint\raisebox{-2.5mm}{}$
15819 \end_inset
15820
15821
15822 \end_layout
15823
15824 \end_inset
15825 </cell>
15826 </row>
15827 <row>
15828 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
15829 \begin_inset Text
15830
15831 \begin_layout Plain Layout
15832
15833 \backslash
15834 dotsint
15835 \end_layout
15836
15837 \end_inset
15838 </cell>
15839 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
15840 \begin_inset Text
15841
15842 \begin_layout Plain Layout
15843 \begin_inset Formula $\raisebox{4.5mm}{}\dotsint\raisebox{-2.5mm}{}$
15844 \end_inset
15845
15846
15847 \end_layout
15848
15849 \end_inset
15850 </cell>
15851 </row>
15852 </lyxtabular>
15853
15854 \end_inset
15855
15856
15857 \begin_inset space \hfill{}
15858 \end_inset
15859
15860
15861 \end_layout
15862
15863 \begin_layout Subsection
15864 Operatorgrenzen
15865 \begin_inset CommandInset label
15866 LatexCommand label
15867 name "sub:Operatorgrenzen"
15868
15869 \end_inset
15870
15871
15872 \begin_inset Index idx
15873 status collapsed
15874
15875 \begin_layout Plain Layout
15876 Operatoren ! Grenzen
15877 \end_layout
15878
15879 \end_inset
15880
15881
15882 \end_layout
15883
15884 \begin_layout Standard
15885 Grenzen werden durch Hoch- bzw.
15886 \begin_inset space \space{}
15887 \end_inset
15888
15889 Tiefstellen erzeugt:
15890 \end_layout
15891
15892 \begin_layout Standard
15893 \align center
15894 \begin_inset Tabular
15895 <lyxtabular version="3" rows="2" columns="2">
15896 <features tabularvalignment="middle">
15897 <column alignment="center" valignment="top" width="0pt">
15898 <column alignment="center" valignment="top" width="0pt">
15899 <row>
15900 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
15901 \begin_inset Text
15902
15903 \begin_layout Plain Layout
15904 Befehl
15905 \end_layout
15906
15907 \end_inset
15908 </cell>
15909 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
15910 \begin_inset Text
15911
15912 \begin_layout Plain Layout
15913 Ergebnis
15914 \begin_inset Note Note
15915 status collapsed
15916
15917 \begin_layout Plain Layout
15918
15919 \series bold
15920
15921 \backslash
15922 raisebox
15923 \series default
15924  dient nur als Abstandhalter.
15925 \end_layout
15926
15927 \end_inset
15928
15929
15930 \end_layout
15931
15932 \end_inset
15933 </cell>
15934 </row>
15935 <row>
15936 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
15937 \begin_inset Text
15938
15939 \begin_layout Plain Layout
15940
15941 \backslash
15942 prod^
15943 \backslash
15944 infty
15945 \begin_inset ERT
15946 status collapsed
15947
15948 \begin_layout Plain Layout
15949
15950
15951 \backslash
15952 leer 
15953 \end_layout
15954
15955 \end_inset
15956
15957
15958 \begin_inset Formula $\to$
15959 \end_inset
15960
15961 _0
15962 \begin_inset Formula $\to$
15963 \end_inset
15964
15965 A(x)
15966 \end_layout
15967
15968 \end_inset
15969 </cell>
15970 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
15971 \begin_inset Text
15972
15973 \begin_layout Plain Layout
15974 \begin_inset Formula $\raisebox{5mm}{}\prod_{0}^{\infty}A(x)\raisebox{-2.5mm}{}$
15975 \end_inset
15976
15977
15978 \end_layout
15979
15980 \end_inset
15981 </cell>
15982 </row>
15983 </lyxtabular>
15984
15985 \end_inset
15986
15987
15988 \end_layout
15989
15990 \begin_layout Standard
15991 Bei einer Formel in einer Textzeile werden die Grenzen rechts neben den
15992  Operator gesetzt.
15993  In einer abgesetzten Formel werden, außer bei Integralen, die Grenzen über
15994  bzw.
15995 \begin_inset space \space{}
15996 \end_inset
15997
15998 unter den Operator gesetzt.
15999 \end_layout
16000
16001 \begin_layout Standard
16002 Um zu erzwingen, dass die Grenzen neben den Operator gesetzt werden, setzt
16003  man den Cursor direkt hinter den Operator und setzt über das Menü 
16004 \family sans
16005 Bearbeiten\SpecialChar \menuseparator
16006 Mathe\SpecialChar \menuseparator
16007 Art der Operatorgrenzen ändern
16008 \family default
16009  die Grenzen auf 
16010 \series bold
16011 Eingebettet
16012 \series default
16013  (Tastenkombination 
16014 \family sans
16015 Alt+M
16016 \begin_inset space ~
16017 \end_inset
16018
16019 L
16020 \family default
16021 ).
16022  Dazu folgendes Beispiel:
16023 \end_layout
16024
16025 \begin_layout Standard
16026 Die normalen Grenzen sehen so aus:
16027 \begin_inset Formula 
16028 \[
16029 \sum_{x=0}^{\infty}\frac{1}{x^{2}}
16030 \]
16031
16032 \end_inset
16033
16034 So sieht die Formel aus, wenn man die Grenzen neben das Summenzeichen setzt:
16035 \begin_inset Formula 
16036 \[
16037 \sum\nolimits _{x=0}^{\infty}\frac{1}{x^{2}}
16038 \]
16039
16040 \end_inset
16041
16042 Bei Integralen werden mit Ausnahme von denen, die auf 
16043 \series bold
16044 op
16045 \series default
16046  enden (
16047 \series bold
16048
16049 \backslash
16050 intop
16051 \series default
16052
16053 \series bold
16054
16055 \backslash
16056 ointop
16057 \series default
16058  usw.), die Grenzen standardmäßig neben den Operator gesetzt.
16059  Bei Mehrfachintegralen werden die Grenzen jedoch meistens unter den Operator
16060  gesetzt.
16061  Im folgenden Beispiel wurde die Grenze deswegen auf 
16062 \series bold
16063 Anzeige
16064 \series default
16065  gesetzt und damit unter die Integrale geschrieben:
16066 \begin_inset Formula 
16067 \begin{equation}
16068 \iiint\limits _{V}X\,\mathrm{d}V=U\label{eq:VolInt}
16069 \end{equation}
16070
16071 \end_inset
16072
16073
16074 \end_layout
16075
16076 \begin_layout Standard
16077 \begin_inset VSpace medskip
16078 \end_inset
16079
16080 Um Bedingungen für Grenzen anzugeben, gibt es die Befehle 
16081 \series bold
16082
16083 \backslash
16084 subarray
16085 \series default
16086
16087 \begin_inset Index idx
16088 status collapsed
16089
16090 \begin_layout Plain Layout
16091 Befehle ! S ! 
16092 \backslash
16093 subarray
16094 \end_layout
16095
16096 \end_inset
16097
16098  und 
16099 \series bold
16100
16101 \backslash
16102 substack
16103 \series default
16104
16105 \begin_inset Index idx
16106 status collapsed
16107
16108 \begin_layout Plain Layout
16109 Befehle ! S ! 
16110 \backslash
16111 substack
16112 \end_layout
16113
16114 \end_inset
16115
16116 .
16117  Um z.
16118 \begin_inset space \thinspace{}
16119 \end_inset
16120
16121 B.
16122  diesen Ausdruck 
16123 \begin_inset Formula 
16124 \begin{equation}
16125 \sum_{\begin{subarray}{c}
16126 0<k<1000\\
16127 \\
16128 k\,\in\,\mathbb{N}
16129 \end{subarray}}^{n}k^{-2}\label{eq:substack}
16130 \end{equation}
16131
16132 \end_inset
16133
16134 zu erstellen, muss man Folgendes tun:
16135 \begin_inset Newline newline
16136 \end_inset
16137
16138 Zuerst gibt man den Befehl 
16139 \series bold
16140
16141 \backslash
16142 sum
16143 \series default
16144 ^
16145 \series bold
16146 n
16147 \begin_inset ERT
16148 status collapsed
16149
16150 \begin_layout Plain Layout
16151
16152
16153 \backslash
16154 leer 
16155 \end_layout
16156
16157 \end_inset
16158
16159 _
16160 \series default
16161  ein.
16162  Man befindet sich nun in einem blauen Kästchen unter dem Summenzeichen.
16163  In dieses gibt man den Befehl 
16164 \series bold
16165
16166 \backslash
16167 subarray
16168 \begin_inset ERT
16169 status collapsed
16170
16171 \begin_layout Plain Layout
16172
16173
16174 \backslash
16175 leer 
16176 \end_layout
16177
16178 \end_inset
16179
16180
16181 \series default
16182  ein.
16183  Das blaue Kästchen hat nun eine lila Umrandung und man kann jetzt mehrere
16184  Zeilen untereinander schreiben.
16185  Mit Eingabe des Zeilenumbruchs (
16186 \family sans
16187 Strg+Enter
16188 \family default
16189 ) wird eine neue Zeile erstellt.
16190  Gibt man
16191 \begin_inset Newline newline
16192 \end_inset
16193
16194
16195 \series bold
16196 0<k<1000 Strg+Enter
16197 \begin_inset Newline newline
16198 \end_inset
16199
16200
16201 \series default
16202 ein, erscheint darunter ein Kästchen für die neue Zeile.
16203 \end_layout
16204
16205 \begin_layout Standard
16206 Die Ausrichtung der Zeilen kann mit der 
16207 \family sans
16208 Tabellen-Werkzeugleiste
16209 \family default
16210  oder dem Menü 
16211 \family sans
16212 Bearbeiten\SpecialChar \menuseparator
16213 Zeilen & Spalten
16214 \family default
16215  auf links geändert werden.
16216  Um rechts ausgerichtete Zeilen zu erhalten, wird am Anfang der Zeile 
16217 \series bold
16218
16219 \backslash
16220 hfill
16221 \begin_inset ERT
16222 status collapsed
16223
16224 \begin_layout Plain Layout
16225
16226
16227 \backslash
16228 leer 
16229 \end_layout
16230
16231 \end_inset
16232
16233
16234 \series default
16235  eingegeben.
16236 \end_layout
16237
16238 \begin_layout Standard
16239 Der Befehl 
16240 \series bold
16241
16242 \backslash
16243 substack
16244 \series default
16245  ist äquivalent zu 
16246 \series bold
16247
16248 \backslash
16249 subarray
16250 \series default
16251 , mit dem Unterschied dass die Zeilen immer zentriert ausgerichtet sind.
16252 \end_layout
16253
16254 \begin_layout Standard
16255 \begin_inset VSpace bigskip
16256 \end_inset
16257
16258 Wie bei Formel 
16259 \begin_inset CommandInset ref
16260 LatexCommand eqref
16261 reference "eq:substack"
16262
16263 \end_inset
16264
16265  kann es vorkommen, dass sich neben dem Operator zu viel Leerraum befindet,
16266  denn das dem Operator folgende Zeichen wird neben die Grenzen gesetzt.
16267 \end_layout
16268
16269 \begin_layout Standard
16270 Um das zu verhindern, kann man folgendes Makro in den LaTeX-Vorspann einfügen:
16271 \end_layout
16272
16273 \begin_layout Standard
16274
16275 \series bold
16276
16277 \backslash
16278 def
16279 \backslash
16280 clap#1{
16281 \backslash
16282 hbox to 0pt{
16283 \backslash
16284 hss #1
16285 \backslash
16286 hss}}
16287 \begin_inset Newline newline
16288 \end_inset
16289
16290
16291 \backslash
16292 def
16293 \backslash
16294 mathclap {
16295 \backslash
16296 mathpalette 
16297 \backslash
16298 mathclapinternal}
16299 \begin_inset Newline newline
16300 \end_inset
16301
16302
16303 \backslash
16304 def
16305 \backslash
16306 mathclapinternal #1#2{
16307 \backslash
16308 clap{$
16309 \backslash
16310 mathsurround =0pt #1{#2}$}}
16311 \end_layout
16312
16313 \begin_layout Standard
16314 Dadurch wird der Befehl 
16315 \series bold
16316
16317 \backslash
16318 mathclap
16319 \series default
16320
16321 \begin_inset Index idx
16322 status collapsed
16323
16324 \begin_layout Plain Layout
16325 Befehle ! M ! 
16326 \backslash
16327 mathclap
16328 \end_layout
16329
16330 \end_inset
16331
16332  definiert, der die Breite der Grenze auf 0
16333 \begin_inset space \thinspace{}
16334 \end_inset
16335
16336 pt setzt.
16337  Das Befehlsschema lautet
16338 \end_layout
16339
16340 \begin_layout Standard
16341
16342 \series bold
16343
16344 \backslash
16345 mathclap{Grenze}
16346 \end_layout
16347
16348 \begin_layout Standard
16349 wobei die Grenze auch aus mehreren Bedingungen bestehen kann.
16350 \end_layout
16351
16352 \begin_layout Standard
16353 Auf Formel 
16354 \begin_inset CommandInset ref
16355 LatexCommand eqref
16356 reference "eq:substack"
16357
16358 \end_inset
16359
16360  angewandt, gibt man also den Befehl
16361 \end_layout
16362
16363 \begin_layout Standard
16364
16365 \series bold
16366
16367 \backslash
16368 sum_
16369 \backslash
16370 mathclap{
16371 \backslash
16372 substack
16373 \begin_inset ERT
16374 status collapsed
16375
16376 \begin_layout Plain Layout
16377
16378
16379 \backslash
16380 leer 
16381 \end_layout
16382
16383 \end_inset
16384
16385 0<k<1000 Strg+Enter
16386 \end_layout
16387
16388 \begin_layout Standard
16389 ein, um die untere Grenze zu erstellen.
16390  Der Summand befindet sich nun direkt hinter dem Summenzeichen:
16391 \begin_inset Formula 
16392 \[
16393 \sum_{\mathclap{\substack{0<k<1000\\
16394 \\
16395 k\,\in\,\mathbb{N}
16396 }
16397 }}^{n}k^{-2}
16398 \]
16399
16400 \end_inset
16401
16402
16403 \end_layout
16404
16405 \begin_layout Standard
16406 \begin_inset VSpace bigskip
16407 \end_inset
16408
16409 In 
16410 \begin_inset CommandInset ref
16411 LatexCommand ref
16412 reference "sub:Selbstdefinierte-Operatoren"
16413
16414 \end_inset
16415
16416  ist beschrieben, wie man eine Grenze für mehrere Operatoren verwenden kann.
16417 \end_layout
16418
16419 \begin_layout Subsection
16420 Dekoration für Operatoren
16421 \begin_inset Index idx
16422 status collapsed
16423
16424 \begin_layout Plain Layout
16425 Operatoren ! Dekoration
16426 \end_layout
16427
16428 \end_inset
16429
16430
16431 \end_layout
16432
16433 \begin_layout Standard
16434 Zum Dekorieren von Operatoren gibt es die Befehle 
16435 \series bold
16436
16437 \backslash
16438 overset
16439 \series default
16440
16441 \begin_inset Index idx
16442 status collapsed
16443
16444 \begin_layout Plain Layout
16445 Befehle ! O ! 
16446 \backslash
16447 overset
16448 \end_layout
16449
16450 \end_inset
16451
16452  und 
16453 \series bold
16454
16455 \backslash
16456 underset
16457 \series default
16458
16459 \begin_inset Index idx
16460 status collapsed
16461
16462 \begin_layout Plain Layout
16463 Befehle ! U ! 
16464 \backslash
16465 underset
16466 \end_layout
16467
16468 \end_inset
16469
16470 , mit denen man Zeichen über bzw.
16471 \begin_inset space \space{}
16472 \end_inset
16473
16474 unter einen Operator setzen kann.
16475  Mit dem Befehl 
16476 \series bold
16477
16478 \backslash
16479 sideset
16480 \series default
16481
16482 \begin_inset Index idx
16483 status collapsed
16484
16485 \begin_layout Plain Layout
16486 Befehle ! S ! 
16487 \backslash
16488 sideset
16489 \end_layout
16490
16491 \end_inset
16492
16493  können Zeichen vor und nach einen großen Operator gesetzt werden.
16494  Das Befehlsschema lautet:
16495 \end_layout
16496
16497 \begin_layout Standard
16498
16499 \series bold
16500
16501 \backslash
16502 sideset{Zeichen
16503 \series default
16504  
16505 \series bold
16506 davor}{Zeichen
16507 \series default
16508  
16509 \series bold
16510 dahinter}
16511 \end_layout
16512
16513 \begin_layout Standard
16514
16515 \series bold
16516
16517 \backslash
16518 sideset
16519 \series default
16520  muss immer vor dem Operator stehen.
16521  Es kann auch mit mehreren Zeichen und sogar mit anderen Operatoren und
16522  Symbolen dekoriert werden.
16523  Will man mit 
16524 \series bold
16525
16526 \backslash
16527 sideset
16528 \series default
16529  z.
16530 \begin_inset space \thinspace{}
16531 \end_inset
16532
16533 B.
16534  nur Zeichen hinter einen großen Operator setzen, schreibt man nichts zwischen
16535  die ersten geschweiften Klammern, lässt die Klammern aber nicht weg.
16536 \end_layout
16537
16538 \begin_layout Standard
16539 Z.
16540 \begin_inset space \thinspace{}
16541 \end_inset
16542
16543 B.
16544  ergibt der Befehl 
16545 \series bold
16546
16547 \backslash
16548 sideset{
16549 \begin_inset Formula $\to$
16550 \end_inset
16551
16552
16553 \backslash
16554 {
16555 \series default
16556 '
16557 \series bold
16558
16559 \begin_inset Formula $\to$
16560 \end_inset
16561
16562
16563 \backslash
16564 sum_k=1
16565 \begin_inset ERT
16566 status collapsed
16567
16568 \begin_layout Plain Layout
16569
16570
16571 \backslash
16572 leer 
16573 \end_layout
16574
16575 \end_inset
16576
16577
16578 \series default
16579 ^
16580 \series bold
16581 n
16582 \series default
16583  :
16584 \begin_inset Formula 
16585 \[
16586 \sideset{}{'}\sum_{k=1}^{n}
16587 \]
16588
16589 \end_inset
16590
16591
16592 \end_layout
16593
16594 \begin_layout Standard
16595 \begin_inset Note Greyedout
16596 status open
16597
16598 \begin_layout Plain Layout
16599
16600 \series bold
16601 Achtung: 
16602 \backslash
16603 sideset
16604 \series default
16605  kann nur für die Dekoration von großen Operatoren verwendet werden, binäre
16606  Operatoren sind nicht erlaubt.
16607 \end_layout
16608
16609 \end_inset
16610
16611
16612 \end_layout
16613
16614 \begin_layout Standard
16615 Mit 
16616 \series bold
16617
16618 \backslash
16619 overset
16620 \series default
16621  bzw.
16622 \begin_inset space \space{}
16623 \end_inset
16624
16625
16626 \series bold
16627
16628 \backslash
16629 underset
16630 \series default
16631  kann man auch Symbole und Zeichen dekorieren.
16632  Beispielsweise ergibt der Befehl 
16633 \series bold
16634
16635 \backslash
16636 overset
16637 \begin_inset ERT
16638 status collapsed
16639
16640 \begin_layout Plain Layout
16641
16642
16643 \backslash
16644 leer 
16645 \end_layout
16646
16647 \end_inset
16648
16649
16650 \backslash
16651 maltese
16652 \begin_inset ERT
16653 status collapsed
16654
16655 \begin_layout Plain Layout
16656
16657
16658 \backslash
16659 leer 
16660 \end_layout
16661
16662 \end_inset
16663
16664
16665 \series default
16666
16667 \begin_inset Formula $\uparrow$
16668 \end_inset
16669
16670
16671 \series bold
16672 a
16673 \series default
16674  :
16675 \begin_inset Formula 
16676 \[
16677 \overset{a}{\maltese}
16678 \]
16679
16680 \end_inset
16681
16682
16683 \end_layout
16684
16685 \begin_layout Subsection
16686 Binäre Operatoren
16687 \begin_inset CommandInset label
16688 LatexCommand label
16689 name "sub:Binäre-Operatoren"
16690
16691 \end_inset
16692
16693
16694 \begin_inset Index idx
16695 status collapsed
16696
16697 \begin_layout Plain Layout
16698 Operatoren ! binäre
16699 \end_layout
16700
16701 \end_inset
16702
16703
16704 \end_layout
16705
16706 \begin_layout Standard
16707 Binäre Operatoren sind von Leerraum umgeben, wenn sich vor und hinter ihnen
16708  ein Zeichen befindet.
16709 \begin_inset VSpace medskip
16710 \end_inset
16711
16712
16713 \end_layout
16714
16715 \begin_layout Standard
16716 \begin_inset space \hfill{}
16717 \end_inset
16718
16719
16720 \begin_inset Tabular
16721 <lyxtabular version="3" rows="13" columns="2">
16722 <features tabularvalignment="middle">
16723 <column alignment="center" valignment="top" width="0pt">
16724 <column alignment="center" valignment="top" width="0pt">
16725 <row>
16726 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
16727 \begin_inset Text
16728
16729 \begin_layout Plain Layout
16730 Befehl
16731 \begin_inset Note Note
16732 status collapsed
16733
16734 \begin_layout Plain Layout
16735
16736 \series bold
16737
16738 \backslash
16739 raisebox
16740 \series default
16741  dient nur als Abstandhalter.
16742 \end_layout
16743
16744 \end_inset
16745
16746
16747 \end_layout
16748
16749 \end_inset
16750 </cell>
16751 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
16752 \begin_inset Text
16753
16754 \begin_layout Plain Layout
16755 Ergebnis
16756 \end_layout
16757
16758 \end_inset
16759 </cell>
16760 </row>
16761 <row>
16762 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16763 \begin_inset Text
16764
16765 \begin_layout Plain Layout
16766 +
16767 \end_layout
16768
16769 \end_inset
16770 </cell>
16771 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16772 \begin_inset Text
16773
16774 \begin_layout Plain Layout
16775 \begin_inset Formula $+$
16776 \end_inset
16777
16778
16779 \end_layout
16780
16781 \end_inset
16782 </cell>
16783 </row>
16784 <row>
16785 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16786 \begin_inset Text
16787
16788 \begin_layout Plain Layout
16789 -
16790 \end_layout
16791
16792 \end_inset
16793 </cell>
16794 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16795 \begin_inset Text
16796
16797 \begin_layout Plain Layout
16798 \begin_inset Formula $-$
16799 \end_inset
16800
16801
16802 \end_layout
16803
16804 \end_inset
16805 </cell>
16806 </row>
16807 <row>
16808 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16809 \begin_inset Text
16810
16811 \begin_layout Plain Layout
16812
16813 \backslash
16814 pm
16815 \end_layout
16816
16817 \end_inset
16818 </cell>
16819 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16820 \begin_inset Text
16821
16822 \begin_layout Plain Layout
16823 \begin_inset Formula $\pm$
16824 \end_inset
16825
16826
16827 \end_layout
16828
16829 \end_inset
16830 </cell>
16831 </row>
16832 <row>
16833 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16834 \begin_inset Text
16835
16836 \begin_layout Plain Layout
16837
16838 \backslash
16839 mp
16840 \end_layout
16841
16842 \end_inset
16843 </cell>
16844 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16845 \begin_inset Text
16846
16847 \begin_layout Plain Layout
16848 \begin_inset Formula $\mp$
16849 \end_inset
16850
16851
16852 \end_layout
16853
16854 \end_inset
16855 </cell>
16856 </row>
16857 <row>
16858 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16859 \begin_inset Text
16860
16861 \begin_layout Plain Layout
16862
16863 \backslash
16864 cdot
16865 \end_layout
16866
16867 \end_inset
16868 </cell>
16869 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16870 \begin_inset Text
16871
16872 \begin_layout Plain Layout
16873 \begin_inset Formula $\cdot$
16874 \end_inset
16875
16876
16877 \end_layout
16878
16879 \end_inset
16880 </cell>
16881 </row>
16882 <row>
16883 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16884 \begin_inset Text
16885
16886 \begin_layout Plain Layout
16887
16888 \backslash
16889 times
16890 \end_layout
16891
16892 \end_inset
16893 </cell>
16894 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16895 \begin_inset Text
16896
16897 \begin_layout Plain Layout
16898 \begin_inset Formula $\times$
16899 \end_inset
16900
16901
16902 \end_layout
16903
16904 \end_inset
16905 </cell>
16906 </row>
16907 <row>
16908 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16909 \begin_inset Text
16910
16911 \begin_layout Plain Layout
16912
16913 \backslash
16914 div
16915 \end_layout
16916
16917 \end_inset
16918 </cell>
16919 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16920 \begin_inset Text
16921
16922 \begin_layout Plain Layout
16923 \begin_inset Formula $\div$
16924 \end_inset
16925
16926
16927 \end_layout
16928
16929 \end_inset
16930 </cell>
16931 </row>
16932 <row>
16933 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16934 \begin_inset Text
16935
16936 \begin_layout Plain Layout
16937 \begin_inset ERT
16938 status collapsed
16939
16940 \begin_layout Plain Layout
16941
16942
16943 \backslash
16944 raisebox{-1.2mm}{
16945 \end_layout
16946
16947 \end_inset
16948
16949 *
16950 \begin_inset ERT
16951 status collapsed
16952
16953 \begin_layout Plain Layout
16954
16955 }
16956 \end_layout
16957
16958 \end_inset
16959
16960
16961 \end_layout
16962
16963 \end_inset
16964 </cell>
16965 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16966 \begin_inset Text
16967
16968 \begin_layout Plain Layout
16969 \begin_inset Formula $*$
16970 \end_inset
16971
16972
16973 \end_layout
16974
16975 \end_inset
16976 </cell>
16977 </row>
16978 <row>
16979 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16980 \begin_inset Text
16981
16982 \begin_layout Plain Layout
16983
16984 \backslash
16985 star
16986 \end_layout
16987
16988 \end_inset
16989 </cell>
16990 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16991 \begin_inset Text
16992
16993 \begin_layout Plain Layout
16994 \begin_inset Formula $\star$
16995 \end_inset
16996
16997
16998 \end_layout
16999
17000 \end_inset
17001 </cell>
17002 </row>
17003 <row>
17004 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17005 \begin_inset Text
17006
17007 \begin_layout Plain Layout
17008
17009 \backslash
17010 circ
17011 \end_layout
17012
17013 \end_inset
17014 </cell>
17015 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17016 \begin_inset Text
17017
17018 \begin_layout Plain Layout
17019 \begin_inset Formula $\circ$
17020 \end_inset
17021
17022
17023 \end_layout
17024
17025 \end_inset
17026 </cell>
17027 </row>
17028 <row>
17029 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17030 \begin_inset Text
17031
17032 \begin_layout Plain Layout
17033
17034 \backslash
17035 diamond
17036 \end_layout
17037
17038 \end_inset
17039 </cell>
17040 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17041 \begin_inset Text
17042
17043 \begin_layout Plain Layout
17044 \begin_inset Formula $\diamond$
17045 \end_inset
17046
17047
17048 \end_layout
17049
17050 \end_inset
17051 </cell>
17052 </row>
17053 <row>
17054 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
17055 \begin_inset Text
17056
17057 \begin_layout Plain Layout
17058
17059 \backslash
17060 bullet
17061 \end_layout
17062
17063 \end_inset
17064 </cell>
17065 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
17066 \begin_inset Text
17067
17068 \begin_layout Plain Layout
17069 \begin_inset Formula $\bullet$
17070 \end_inset
17071
17072
17073 \end_layout
17074
17075 \end_inset
17076 </cell>
17077 </row>
17078 </lyxtabular>
17079
17080 \end_inset
17081
17082
17083 \begin_inset space \hfill{}
17084 \end_inset
17085
17086
17087 \begin_inset Tabular
17088 <lyxtabular version="3" rows="13" columns="2">
17089 <features tabularvalignment="middle">
17090 <column alignment="center" valignment="top" width="0pt">
17091 <column alignment="center" valignment="top" width="0pt">
17092 <row>
17093 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
17094 \begin_inset Text
17095
17096 \begin_layout Plain Layout
17097 Befehl
17098 \end_layout
17099
17100 \end_inset
17101 </cell>
17102 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
17103 \begin_inset Text
17104
17105 \begin_layout Plain Layout
17106 Ergebnis
17107 \end_layout
17108
17109 \end_inset
17110 </cell>
17111 </row>
17112 <row>
17113 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17114 \begin_inset Text
17115
17116 \begin_layout Plain Layout
17117
17118 \backslash
17119 nabla
17120 \end_layout
17121
17122 \end_inset
17123 </cell>
17124 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17125 \begin_inset Text
17126
17127 \begin_layout Plain Layout
17128 \begin_inset Formula $\nabla$
17129 \end_inset
17130
17131
17132 \end_layout
17133
17134 \end_inset
17135 </cell>
17136 </row>
17137 <row>
17138 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17139 \begin_inset Text
17140
17141 \begin_layout Plain Layout
17142
17143 \backslash
17144 bigtriangledown
17145 \end_layout
17146
17147 \end_inset
17148 </cell>
17149 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17150 \begin_inset Text
17151
17152 \begin_layout Plain Layout
17153 \begin_inset Formula $\bigtriangledown$
17154 \end_inset
17155
17156
17157 \end_layout
17158
17159 \end_inset
17160 </cell>
17161 </row>
17162 <row>
17163 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17164 \begin_inset Text
17165
17166 \begin_layout Plain Layout
17167
17168 \backslash
17169 bigtriangleup
17170 \end_layout
17171
17172 \end_inset
17173 </cell>
17174 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17175 \begin_inset Text
17176
17177 \begin_layout Plain Layout
17178 \begin_inset Formula $\bigtriangleup$
17179 \end_inset
17180
17181
17182 \end_layout
17183
17184 \end_inset
17185 </cell>
17186 </row>
17187 <row>
17188 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17189 \begin_inset Text
17190
17191 \begin_layout Plain Layout
17192
17193 \backslash
17194 Box
17195 \end_layout
17196
17197 \end_inset
17198 </cell>
17199 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17200 \begin_inset Text
17201
17202 \begin_layout Plain Layout
17203 \begin_inset Formula $\Box$
17204 \end_inset
17205
17206
17207 \end_layout
17208
17209 \end_inset
17210 </cell>
17211 </row>
17212 <row>
17213 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17214 \begin_inset Text
17215
17216 \begin_layout Plain Layout
17217
17218 \backslash
17219 cap 
17220 \end_layout
17221
17222 \end_inset
17223 </cell>
17224 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17225 \begin_inset Text
17226
17227 \begin_layout Plain Layout
17228 \begin_inset Formula $\cap$
17229 \end_inset
17230
17231
17232 \end_layout
17233
17234 \end_inset
17235 </cell>
17236 </row>
17237 <row>
17238 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17239 \begin_inset Text
17240
17241 \begin_layout Plain Layout
17242
17243 \backslash
17244 cup
17245 \end_layout
17246
17247 \end_inset
17248 </cell>
17249 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17250 \begin_inset Text
17251
17252 \begin_layout Plain Layout
17253 \begin_inset Formula $\cup$
17254 \end_inset
17255
17256
17257 \end_layout
17258
17259 \end_inset
17260 </cell>
17261 </row>
17262 <row>
17263 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17264 \begin_inset Text
17265
17266 \begin_layout Plain Layout
17267
17268 \backslash
17269 dagger
17270 \end_layout
17271
17272 \end_inset
17273 </cell>
17274 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17275 \begin_inset Text
17276
17277 \begin_layout Plain Layout
17278 \begin_inset Formula $\dagger$
17279 \end_inset
17280
17281
17282 \end_layout
17283
17284 \end_inset
17285 </cell>
17286 </row>
17287 <row>
17288 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17289 \begin_inset Text
17290
17291 \begin_layout Plain Layout
17292
17293 \backslash
17294 ddagger
17295 \end_layout
17296
17297 \end_inset
17298 </cell>
17299 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17300 \begin_inset Text
17301
17302 \begin_layout Plain Layout
17303 \begin_inset Formula $\ddagger$
17304 \end_inset
17305
17306
17307 \end_layout
17308
17309 \end_inset
17310 </cell>
17311 </row>
17312 <row>
17313 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17314 \begin_inset Text
17315
17316 \begin_layout Plain Layout
17317
17318 \backslash
17319 wr
17320 \end_layout
17321
17322 \end_inset
17323 </cell>
17324 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17325 \begin_inset Text
17326
17327 \begin_layout Plain Layout
17328 \begin_inset Formula $\wr$
17329 \end_inset
17330
17331
17332 \end_layout
17333
17334 \end_inset
17335 </cell>
17336 </row>
17337 <row>
17338 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17339 \begin_inset Text
17340
17341 \begin_layout Plain Layout
17342
17343 \backslash
17344 bigcirc
17345 \end_layout
17346
17347 \end_inset
17348 </cell>
17349 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17350 \begin_inset Text
17351
17352 \begin_layout Plain Layout
17353 \begin_inset Formula $\bigcirc$
17354 \end_inset
17355
17356
17357 \end_layout
17358
17359 \end_inset
17360 </cell>
17361 </row>
17362 <row>
17363 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17364 \begin_inset Text
17365
17366 \begin_layout Plain Layout
17367
17368 \backslash
17369 wedge
17370 \end_layout
17371
17372 \end_inset
17373 </cell>
17374 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17375 \begin_inset Text
17376
17377 \begin_layout Plain Layout
17378 \begin_inset Formula $\wedge$
17379 \end_inset
17380
17381
17382 \end_layout
17383
17384 \end_inset
17385 </cell>
17386 </row>
17387 <row>
17388 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
17389 \begin_inset Text
17390
17391 \begin_layout Plain Layout
17392
17393 \backslash
17394 vee
17395 \end_layout
17396
17397 \end_inset
17398 </cell>
17399 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
17400 \begin_inset Text
17401
17402 \begin_layout Plain Layout
17403 \begin_inset Formula $\vee$
17404 \end_inset
17405
17406
17407 \end_layout
17408
17409 \end_inset
17410 </cell>
17411 </row>
17412 </lyxtabular>
17413
17414 \end_inset
17415
17416
17417 \begin_inset space \hfill{}
17418 \end_inset
17419
17420
17421 \begin_inset Tabular
17422 <lyxtabular version="3" rows="13" columns="2">
17423 <features tabularvalignment="middle">
17424 <column alignment="center" valignment="top" width="0pt">
17425 <column alignment="center" valignment="top" width="0pt">
17426 <row>
17427 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
17428 \begin_inset Text
17429
17430 \begin_layout Plain Layout
17431 Befehl
17432 \end_layout
17433
17434 \end_inset
17435 </cell>
17436 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
17437 \begin_inset Text
17438
17439 \begin_layout Plain Layout
17440 Ergebnis
17441 \end_layout
17442
17443 \end_inset
17444 </cell>
17445 </row>
17446 <row>
17447 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17448 \begin_inset Text
17449
17450 \begin_layout Plain Layout
17451
17452 \backslash
17453 oplus
17454 \end_layout
17455
17456 \end_inset
17457 </cell>
17458 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17459 \begin_inset Text
17460
17461 \begin_layout Plain Layout
17462 \begin_inset Formula $\oplus$
17463 \end_inset
17464
17465
17466 \end_layout
17467
17468 \end_inset
17469 </cell>
17470 </row>
17471 <row>
17472 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17473 \begin_inset Text
17474
17475 \begin_layout Plain Layout
17476
17477 \backslash
17478 ominus
17479 \end_layout
17480
17481 \end_inset
17482 </cell>
17483 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17484 \begin_inset Text
17485
17486 \begin_layout Plain Layout
17487 \begin_inset Formula $\ominus$
17488 \end_inset
17489
17490
17491 \end_layout
17492
17493 \end_inset
17494 </cell>
17495 </row>
17496 <row>
17497 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17498 \begin_inset Text
17499
17500 \begin_layout Plain Layout
17501
17502 \backslash
17503 otimes
17504 \end_layout
17505
17506 \end_inset
17507 </cell>
17508 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17509 \begin_inset Text
17510
17511 \begin_layout Plain Layout
17512 \begin_inset Formula $\otimes$
17513 \end_inset
17514
17515
17516 \end_layout
17517
17518 \end_inset
17519 </cell>
17520 </row>
17521 <row>
17522 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17523 \begin_inset Text
17524
17525 \begin_layout Plain Layout
17526
17527 \backslash
17528 oslash
17529 \end_layout
17530
17531 \end_inset
17532 </cell>
17533 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17534 \begin_inset Text
17535
17536 \begin_layout Plain Layout
17537 \begin_inset Formula $\oslash$
17538 \end_inset
17539
17540
17541 \end_layout
17542
17543 \end_inset
17544 </cell>
17545 </row>
17546 <row>
17547 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17548 \begin_inset Text
17549
17550 \begin_layout Plain Layout
17551
17552 \backslash
17553 odot
17554 \end_layout
17555
17556 \end_inset
17557 </cell>
17558 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17559 \begin_inset Text
17560
17561 \begin_layout Plain Layout
17562 \begin_inset Formula $\odot$
17563 \end_inset
17564
17565
17566 \end_layout
17567
17568 \end_inset
17569 </cell>
17570 </row>
17571 <row>
17572 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17573 \begin_inset Text
17574
17575 \begin_layout Plain Layout
17576
17577 \backslash
17578 amalg
17579 \end_layout
17580
17581 \end_inset
17582 </cell>
17583 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17584 \begin_inset Text
17585
17586 \begin_layout Plain Layout
17587 \begin_inset Formula $\amalg$
17588 \end_inset
17589
17590
17591 \end_layout
17592
17593 \end_inset
17594 </cell>
17595 </row>
17596 <row>
17597 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17598 \begin_inset Text
17599
17600 \begin_layout Plain Layout
17601
17602 \backslash
17603 uplus
17604 \end_layout
17605
17606 \end_inset
17607 </cell>
17608 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17609 \begin_inset Text
17610
17611 \begin_layout Plain Layout
17612 \begin_inset Formula $\uplus$
17613 \end_inset
17614
17615
17616 \end_layout
17617
17618 \end_inset
17619 </cell>
17620 </row>
17621 <row>
17622 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17623 \begin_inset Text
17624
17625 \begin_layout Plain Layout
17626
17627 \backslash
17628 setminus
17629 \end_layout
17630
17631 \end_inset
17632 </cell>
17633 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17634 \begin_inset Text
17635
17636 \begin_layout Plain Layout
17637 \begin_inset Formula $\setminus$
17638 \end_inset
17639
17640
17641 \end_layout
17642
17643 \end_inset
17644 </cell>
17645 </row>
17646 <row>
17647 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17648 \begin_inset Text
17649
17650 \begin_layout Plain Layout
17651
17652 \backslash
17653 sqcap
17654 \end_layout
17655
17656 \end_inset
17657 </cell>
17658 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17659 \begin_inset Text
17660
17661 \begin_layout Plain Layout
17662 \begin_inset Formula $\sqcap$
17663 \end_inset
17664
17665
17666 \end_layout
17667
17668 \end_inset
17669 </cell>
17670 </row>
17671 <row>
17672 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17673 \begin_inset Text
17674
17675 \begin_layout Plain Layout
17676
17677 \backslash
17678 sqcup
17679 \end_layout
17680
17681 \end_inset
17682 </cell>
17683 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17684 \begin_inset Text
17685
17686 \begin_layout Plain Layout
17687 \begin_inset Formula $\sqcup$
17688 \end_inset
17689
17690
17691 \end_layout
17692
17693 \end_inset
17694 </cell>
17695 </row>
17696 <row>
17697 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17698 \begin_inset Text
17699
17700 \begin_layout Plain Layout
17701
17702 \backslash
17703 triangleleft
17704 \end_layout
17705
17706 \end_inset
17707 </cell>
17708 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17709 \begin_inset Text
17710
17711 \begin_layout Plain Layout
17712 \begin_inset Formula $\triangleleft$
17713 \end_inset
17714
17715
17716 \end_layout
17717
17718 \end_inset
17719 </cell>
17720 </row>
17721 <row>
17722 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
17723 \begin_inset Text
17724
17725 \begin_layout Plain Layout
17726
17727 \backslash
17728 triangleright
17729 \end_layout
17730
17731 \end_inset
17732 </cell>
17733 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
17734 \begin_inset Text
17735
17736 \begin_layout Plain Layout
17737 \begin_inset Formula $\triangleright$
17738 \end_inset
17739
17740
17741 \end_layout
17742
17743 \end_inset
17744 </cell>
17745 </row>
17746 </lyxtabular>
17747
17748 \end_inset
17749
17750
17751 \begin_inset space \hfill{}
17752 \end_inset
17753
17754
17755 \end_layout
17756
17757 \begin_layout Standard
17758 Alle binären Operatoren können auch über den Mathe-Werkzeugleistenknopf
17759  
17760 \begin_inset Graphics
17761         filename ../../images/math/pm.png
17762         scale 85
17763
17764 \end_inset
17765
17766  eingefügt werden.
17767 \end_layout
17768
17769 \begin_layout Standard
17770 Um den Laplace-Operator darzustellen, kann man statt 
17771 \series bold
17772
17773 \backslash
17774 bigtriangleup
17775 \series default
17776  auch 
17777 \series bold
17778
17779 \backslash
17780 Delta
17781 \series default
17782  verwenden oder man benutzt 
17783 \series bold
17784
17785 \backslash
17786 nabla
17787 \series default
17788 ^
17789 \series bold
17790 2
17791 \series default
17792  (
17793 \begin_inset Formula $\nabla^{2}$
17794 \end_inset
17795
17796 ).
17797 \end_layout
17798
17799 \begin_layout Standard
17800 Das Zeichen 
17801 \family sans
17802 Menütrenner
17803 \family default
17804  im Menü 
17805 \family sans
17806 Einfügen\SpecialChar \menuseparator
17807 Sonderzeichen
17808 \family default
17809  ist der Operator 
17810 \series bold
17811
17812 \backslash
17813 triangleright
17814 \series default
17815 .
17816 \end_layout
17817
17818 \begin_layout Subsection
17819 Selbst definierte Operatoren
17820 \begin_inset CommandInset label
17821 LatexCommand label
17822 name "sub:Selbstdefinierte-Operatoren"
17823
17824 \end_inset
17825
17826
17827 \begin_inset Index idx
17828 status collapsed
17829
17830 \begin_layout Plain Layout
17831 Operatoren ! selbstdefinierte
17832 \end_layout
17833
17834 \end_inset
17835
17836
17837 \end_layout
17838
17839 \begin_layout Standard
17840 Mit Hilfe des Befehls 
17841 \series bold
17842
17843 \backslash
17844 DeclareMathOperator
17845 \series default
17846
17847 \begin_inset Index idx
17848 status collapsed
17849
17850 \begin_layout Plain Layout
17851 Befehle ! D ! 
17852 \backslash
17853 dbinom@
17854 \backslash
17855 DeclareMathOperator
17856 \end_layout
17857
17858 \end_inset
17859
17860  kann man im LaTeX-Vorspann eigene Operatoren definieren.
17861  Das Befehlsschema dazu lautet:
17862 \end_layout
17863
17864 \begin_layout Standard
17865
17866 \series bold
17867
17868 \backslash
17869 DeclareMathOperator{neuer Befehl}{Anzeige}
17870 \end_layout
17871
17872 \begin_layout Standard
17873 Anzeige können Zeichen und Symbole sein, die festlegen, wie der Operator
17874  im Ausdruck aussieht.
17875  Will man einen großen Operator definieren, setzt man hinter den Befehl
17876  ein 
17877 \series bold
17878 *
17879 \series default
17880 .
17881  Zu allen selbst definierten großen Operatoren kann man Grenzen angeben,
17882  wie in 
17883 \begin_inset CommandInset ref
17884 LatexCommand ref
17885 reference "sub:Operatorgrenzen"
17886
17887 \end_inset
17888
17889  beschrieben.
17890 \end_layout
17891
17892 \begin_layout Standard
17893 Beispielsweise definiert die LaTeX-Vorspannzeile
17894 \end_layout
17895
17896 \begin_layout Standard
17897
17898 \series bold
17899
17900 \backslash
17901 DeclareMathOperator*{
17902 \backslash
17903 Raute}{
17904 \backslash
17905 blacklozenge}
17906 \end_layout
17907
17908 \begin_layout Standard
17909 den Befehl 
17910 \series bold
17911
17912 \backslash
17913 Raute
17914 \series default
17915 , mit dem man einen großen Operator aufrufen kann, der aus dem Raute Symbol
17916  aus 
17917 \begin_inset CommandInset ref
17918 LatexCommand ref
17919 reference "sub:Sonstige-Symbole"
17920
17921 \end_inset
17922
17923  besteht:
17924 \begin_inset Formula 
17925 \[
17926 \Raute_{n=1}^{\infty}
17927 \]
17928
17929 \end_inset
17930
17931 Der Befehl für diese Formel lautet: 
17932 \series bold
17933
17934 \backslash
17935 Raute
17936 \series default
17937 ^
17938 \series bold
17939
17940 \backslash
17941 infty
17942 \begin_inset Formula $\to$
17943 \end_inset
17944
17945 _n=1
17946 \end_layout
17947
17948 \begin_layout Standard
17949 \begin_inset VSpace bigskip
17950 \end_inset
17951
17952 Benötigt man eigene Operatoren nicht mehrfach im Dokument, kann man diese
17953  auch mit den Befehlen 
17954 \series bold
17955
17956 \backslash
17957 mathop
17958 \series default
17959
17960 \begin_inset Index idx
17961 status collapsed
17962
17963 \begin_layout Plain Layout
17964 Befehle ! M ! 
17965 \backslash
17966 mathop
17967 \end_layout
17968
17969 \end_inset
17970
17971  und 
17972 \series bold
17973
17974 \backslash
17975 mathbin
17976 \series default
17977
17978 \begin_inset Index idx
17979 status collapsed
17980
17981 \begin_layout Plain Layout
17982 Befehle ! M ! 
17983 \backslash
17984 mathbin
17985 \end_layout
17986
17987 \end_inset
17988
17989  definieren, die folgendes Schema besitzen:
17990 \end_layout
17991
17992 \begin_layout Standard
17993
17994 \series bold
17995
17996 \backslash
17997 mathop{Anzeige}
17998 \series default
17999  bzw.
18000 \begin_inset space \space{}
18001 \end_inset
18002
18003
18004 \series bold
18005
18006 \backslash
18007 mathbin{Anzeige}
18008 \end_layout
18009
18010 \begin_layout Standard
18011
18012 \series bold
18013
18014 \backslash
18015 mathop
18016 \series default
18017  definiert große, 
18018 \series bold
18019
18020 \backslash
18021 mathbin
18022 \series default
18023  binäre Operatoren.
18024 \end_layout
18025
18026 \begin_layout Standard
18027
18028 \series bold
18029
18030 \backslash
18031 mathop
18032 \series default
18033  lässt sich z.
18034 \begin_inset space \thinspace{}
18035 \end_inset
18036
18037 B.
18038  nutzen, um eine Grenze für mehrere Operatoren zu verwenden:
18039 \begin_inset Formula 
18040 \[
18041 \mathop{\sum\negmedspace\sum}_{i,j=1}^{N}
18042 \]
18043
18044 \end_inset
18045
18046
18047 \end_layout
18048
18049 \begin_layout Standard
18050 Der Befehl für obige Formel lautet:
18051 \begin_inset Newline newline
18052 \end_inset
18053
18054  
18055 \series bold
18056
18057 \backslash
18058 mathop{
18059 \backslash
18060 sum
18061 \backslash
18062 negmedspace
18063 \backslash
18064 sum
18065 \series default
18066
18067 \begin_inset ERT
18068 status collapsed
18069
18070 \begin_layout Plain Layout
18071
18072
18073 \backslash
18074 leer 
18075 \end_layout
18076
18077 \end_inset
18078
18079
18080 \series bold
18081
18082 \begin_inset Formula $\to$
18083 \end_inset
18084
18085 ^N
18086 \series default
18087
18088 \begin_inset ERT
18089 status collapsed
18090
18091 \begin_layout Plain Layout
18092
18093
18094 \backslash
18095 leer 
18096 \end_layout
18097
18098 \end_inset
18099
18100
18101 \series bold
18102 _i,j=1
18103 \end_layout
18104
18105 \begin_layout Standard
18106 \begin_inset Newpage newpage
18107 \end_inset
18108
18109
18110 \end_layout
18111
18112 \begin_layout Section
18113 Schriften
18114 \begin_inset Index idx
18115 status collapsed
18116
18117 \begin_layout Plain Layout
18118 Schriften
18119 \end_layout
18120
18121 \end_inset
18122
18123
18124 \end_layout
18125
18126 \begin_layout Subsection
18127 Schriftstile
18128 \begin_inset CommandInset label
18129 LatexCommand label
18130 name "sub:Schriftstile"
18131
18132 \end_inset
18133
18134
18135 \begin_inset Index idx
18136 status collapsed
18137
18138 \begin_layout Plain Layout
18139 Schriften ! Schriftstile
18140 \end_layout
18141
18142 \end_inset
18143
18144
18145 \end_layout
18146
18147 \begin_layout Standard
18148 Lateinische Buchstaben in einer Formel können in folgenden Schriftstilen
18149  gesetzt werden:
18150 \begin_inset VSpace -2mm
18151 \end_inset
18152
18153
18154 \end_layout
18155
18156 \begin_layout Standard
18157 \align center
18158 \begin_inset Tabular
18159 <lyxtabular version="3" rows="7" columns="3">
18160 <features tabularvalignment="middle">
18161 <column alignment="center" valignment="top" width="0">
18162 <column alignment="center" valignment="top" width="0">
18163 <column alignment="center" valignment="top" width="0">
18164 <row>
18165 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
18166 \begin_inset Text
18167
18168 \begin_layout Plain Layout
18169 Befehl
18170 \end_layout
18171
18172 \end_inset
18173 </cell>
18174 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
18175 \begin_inset Text
18176
18177 \begin_layout Plain Layout
18178 Ergebnis
18179 \end_layout
18180
18181 \end_inset
18182 </cell>
18183 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
18184 \begin_inset Text
18185
18186 \begin_layout Plain Layout
18187 Tastenkürzel
18188 \end_layout
18189
18190 \end_inset
18191 </cell>
18192 </row>
18193 <row>
18194 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18195 \begin_inset Text
18196
18197 \begin_layout Plain Layout
18198
18199 \backslash
18200 mathbb
18201 \series bold
18202
18203 \begin_inset ERT
18204 status collapsed
18205
18206 \begin_layout Plain Layout
18207
18208
18209 \backslash
18210 leer 
18211 \end_layout
18212
18213 \end_inset
18214
18215
18216 \series default
18217 ABC
18218 \end_layout
18219
18220 \end_inset
18221 </cell>
18222 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18223 \begin_inset Text
18224
18225 \begin_layout Plain Layout
18226 \begin_inset Formula $\mathbb{ABC}$
18227 \end_inset
18228
18229
18230 \end_layout
18231
18232 \end_inset
18233 </cell>
18234 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
18235 \begin_inset Text
18236
18237 \begin_layout Plain Layout
18238 Alt+Z K
18239 \end_layout
18240
18241 \end_inset
18242 </cell>
18243 </row>
18244 <row>
18245 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18246 \begin_inset Text
18247
18248 \begin_layout Plain Layout
18249
18250 \backslash
18251 mathbf
18252 \series bold
18253
18254 \begin_inset ERT
18255 status collapsed
18256
18257 \begin_layout Plain Layout
18258
18259
18260 \backslash
18261 leer 
18262 \end_layout
18263
18264 \end_inset
18265
18266
18267 \series default
18268 AbC
18269 \end_layout
18270
18271 \end_inset
18272 </cell>
18273 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18274 \begin_inset Text
18275
18276 \begin_layout Plain Layout
18277 \begin_inset Formula $\mathbf{AbC}$
18278 \end_inset
18279
18280
18281 \end_layout
18282
18283 \end_inset
18284 </cell>
18285 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
18286 \begin_inset Text
18287
18288 \begin_layout Plain Layout
18289 Strg+B
18290 \end_layout
18291
18292 \end_inset
18293 </cell>
18294 </row>
18295 <row>
18296 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18297 \begin_inset Text
18298
18299 \begin_layout Plain Layout
18300
18301 \backslash
18302 boldsymbol
18303 \series bold
18304
18305 \begin_inset ERT
18306 status collapsed
18307
18308 \begin_layout Plain Layout
18309
18310
18311 \backslash
18312 leer 
18313 \end_layout
18314
18315 \end_inset
18316
18317
18318 \series default
18319 AbC
18320 \end_layout
18321
18322 \end_inset
18323 </cell>
18324 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18325 \begin_inset Text
18326
18327 \begin_layout Plain Layout
18328 \begin_inset Formula $\boldsymbol{AbC}$
18329 \end_inset
18330
18331
18332 \end_layout
18333
18334 \end_inset
18335 </cell>
18336 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
18337 \begin_inset Text
18338
18339 \begin_layout Plain Layout
18340 Alt+Z F oder Strg+Alt+B
18341 \end_layout
18342
18343 \end_inset
18344 </cell>
18345 </row>
18346 <row>
18347 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18348 \begin_inset Text
18349
18350 \begin_layout Plain Layout
18351
18352 \backslash
18353 mathcal
18354 \series bold
18355
18356 \begin_inset ERT
18357 status collapsed
18358
18359 \begin_layout Plain Layout
18360
18361
18362 \backslash
18363 leer 
18364 \end_layout
18365
18366 \end_inset
18367
18368
18369 \series default
18370 ABC
18371 \end_layout
18372
18373 \end_inset
18374 </cell>
18375 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18376 \begin_inset Text
18377
18378 \begin_layout Plain Layout
18379 \begin_inset Formula $\mathcal{ABC}$
18380 \end_inset
18381
18382
18383 \end_layout
18384
18385 \end_inset
18386 </cell>
18387 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
18388 \begin_inset Text
18389
18390 \begin_layout Plain Layout
18391 Alt+Z H
18392 \end_layout
18393
18394 \end_inset
18395 </cell>
18396 </row>
18397 <row>
18398 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18399 \begin_inset Text
18400
18401 \begin_layout Plain Layout
18402
18403 \backslash
18404 mathfrak
18405 \series bold
18406
18407 \begin_inset ERT
18408 status collapsed
18409
18410 \begin_layout Plain Layout
18411
18412
18413 \backslash
18414 leer 
18415 \end_layout
18416
18417 \end_inset
18418
18419
18420 \series default
18421 AbC
18422 \end_layout
18423
18424 \end_inset
18425 </cell>
18426 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18427 \begin_inset Text
18428
18429 \begin_layout Plain Layout
18430 \begin_inset Formula $\mathfrak{AbC}$
18431 \end_inset
18432
18433
18434 \end_layout
18435
18436 \end_inset
18437 </cell>
18438 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
18439 \begin_inset Text
18440
18441 \begin_layout Plain Layout
18442 -
18443 \end_layout
18444
18445 \end_inset
18446 </cell>
18447 </row>
18448 <row>
18449 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
18450 \begin_inset Text
18451
18452 \begin_layout Plain Layout
18453
18454 \backslash
18455 mathscr
18456 \series bold
18457
18458 \begin_inset ERT
18459 status collapsed
18460
18461 \begin_layout Plain Layout
18462
18463
18464 \backslash
18465 leer 
18466 \end_layout
18467
18468 \end_inset
18469
18470
18471 \series default
18472 AbC
18473 \end_layout
18474
18475 \end_inset
18476 </cell>
18477 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
18478 \begin_inset Text
18479
18480 \begin_layout Plain Layout
18481 \begin_inset Formula $\mathscr{AbC}$
18482 \end_inset
18483
18484
18485 \end_layout
18486
18487 \end_inset
18488 </cell>
18489 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
18490 \begin_inset Text
18491
18492 \begin_layout Plain Layout
18493 -
18494 \end_layout
18495
18496 \end_inset
18497 </cell>
18498 </row>
18499 </lyxtabular>
18500
18501 \end_inset
18502
18503
18504 \end_layout
18505
18506 \begin_layout Standard
18507 \align center
18508 \begin_inset Tabular
18509 <lyxtabular version="3" rows="5" columns="3">
18510 <features tabularvalignment="middle">
18511 <column alignment="center" valignment="top" width="0">
18512 <column alignment="center" valignment="top" width="0">
18513 <column alignment="center" valignment="top" width="0">
18514 <row>
18515 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
18516 \begin_inset Text
18517
18518 \begin_layout Plain Layout
18519 Befehl
18520 \end_layout
18521
18522 \end_inset
18523 </cell>
18524 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
18525 \begin_inset Text
18526
18527 \begin_layout Plain Layout
18528 Ergebnis
18529 \end_layout
18530
18531 \end_inset
18532 </cell>
18533 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
18534 \begin_inset Text
18535
18536 \begin_layout Plain Layout
18537 Tastenkürzel
18538 \end_layout
18539
18540 \end_inset
18541 </cell>
18542 </row>
18543 <row>
18544 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18545 \begin_inset Text
18546
18547 \begin_layout Plain Layout
18548
18549 \backslash
18550 mathit
18551 \series bold
18552
18553 \begin_inset ERT
18554 status collapsed
18555
18556 \begin_layout Plain Layout
18557
18558
18559 \backslash
18560 leer 
18561 \end_layout
18562
18563 \end_inset
18564
18565
18566 \series default
18567 AbC
18568 \end_layout
18569
18570 \end_inset
18571 </cell>
18572 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18573 \begin_inset Text
18574
18575 \begin_layout Plain Layout
18576 \begin_inset Formula $\mathit{AbC}$
18577 \end_inset
18578
18579
18580 \end_layout
18581
18582 \end_inset
18583 </cell>
18584 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
18585 \begin_inset Text
18586
18587 \begin_layout Plain Layout
18588 -
18589 \end_layout
18590
18591 \end_inset
18592 </cell>
18593 </row>
18594 <row>
18595 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18596 \begin_inset Text
18597
18598 \begin_layout Plain Layout
18599
18600 \backslash
18601 mathrm
18602 \series bold
18603
18604 \begin_inset ERT
18605 status collapsed
18606
18607 \begin_layout Plain Layout
18608
18609
18610 \backslash
18611 leer 
18612 \end_layout
18613
18614 \end_inset
18615
18616
18617 \series default
18618 AbC
18619 \end_layout
18620
18621 \end_inset
18622 </cell>
18623 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18624 \begin_inset Text
18625
18626 \begin_layout Plain Layout
18627 \begin_inset Formula $\mathrm{AbC}$
18628 \end_inset
18629
18630
18631 \end_layout
18632
18633 \end_inset
18634 </cell>
18635 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
18636 \begin_inset Text
18637
18638 \begin_layout Plain Layout
18639 Alt+Z R
18640 \end_layout
18641
18642 \end_inset
18643 </cell>
18644 </row>
18645 <row>
18646 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18647 \begin_inset Text
18648
18649 \begin_layout Plain Layout
18650
18651 \backslash
18652 mathsf
18653 \series bold
18654
18655 \begin_inset ERT
18656 status collapsed
18657
18658 \begin_layout Plain Layout
18659
18660
18661 \backslash
18662 leer 
18663 \end_layout
18664
18665 \end_inset
18666
18667
18668 \series default
18669 AbC
18670 \end_layout
18671
18672 \end_inset
18673 </cell>
18674 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18675 \begin_inset Text
18676
18677 \begin_layout Plain Layout
18678 \begin_inset Formula $\mathsf{AbC}$
18679 \end_inset
18680
18681
18682 \end_layout
18683
18684 \end_inset
18685 </cell>
18686 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
18687 \begin_inset Text
18688
18689 \begin_layout Plain Layout
18690 Alt+Z S
18691 \end_layout
18692
18693 \end_inset
18694 </cell>
18695 </row>
18696 <row>
18697 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
18698 \begin_inset Text
18699
18700 \begin_layout Plain Layout
18701
18702 \backslash
18703 mathtt
18704 \series bold
18705
18706 \begin_inset ERT
18707 status collapsed
18708
18709 \begin_layout Plain Layout
18710
18711
18712 \backslash
18713 leer 
18714 \end_layout
18715
18716 \end_inset
18717
18718
18719 \series default
18720 AbC
18721 \end_layout
18722
18723 \end_inset
18724 </cell>
18725 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
18726 \begin_inset Text
18727
18728 \begin_layout Plain Layout
18729 \begin_inset Formula $\mathtt{AbC}$
18730 \end_inset
18731
18732
18733 \end_layout
18734
18735 \end_inset
18736 </cell>
18737 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
18738 \begin_inset Text
18739
18740 \begin_layout Plain Layout
18741 Alt+Z C
18742 \end_layout
18743
18744 \end_inset
18745 </cell>
18746 </row>
18747 </lyxtabular>
18748
18749 \end_inset
18750
18751
18752 \end_layout
18753
18754 \begin_layout Standard
18755 \begin_inset Note Greyedout
18756 status open
18757
18758 \begin_layout Plain Layout
18759
18760 \series bold
18761 Achtung:
18762 \series default
18763  Die Stile 
18764 \series bold
18765
18766 \backslash
18767 mathbb
18768 \series default
18769  und 
18770 \series bold
18771
18772 \backslash
18773 mathcal
18774 \series default
18775  können nur für Großbuchstaben verwendet werden.
18776 \end_layout
18777
18778 \end_inset
18779
18780
18781 \end_layout
18782
18783 \begin_layout Standard
18784 Voreingestellt ist der Stil 
18785 \series bold
18786
18787 \backslash
18788 mathnormal
18789 \series default
18790 .
18791 \end_layout
18792
18793 \begin_layout Standard
18794 Die Stilbefehle wirken auch auf Buchstaben in mathematischen Konstruktionen:
18795 \begin_inset Formula 
18796 \[
18797 \mathfrak{A=\frac{b}{C}}
18798 \]
18799
18800 \end_inset
18801
18802
18803 \end_layout
18804
18805 \begin_layout Standard
18806 Zeichen im mathematischen Textmodus erscheinen nicht in einem der Matheschriftst
18807 ile, sondern in dem Textschriftstil 
18808 \series bold
18809
18810 \backslash
18811 textrm
18812 \series default
18813 .
18814  Dass deren Stil nicht über den Textstil Dialog geändert werden kann ist
18815  ein Fehler in LyX.
18816 \begin_inset Foot
18817 status collapsed
18818
18819 \begin_layout Plain Layout
18820 \begin_inset CommandInset href
18821 LatexCommand href
18822 name "LyX-Fehler #4629"
18823 target "http://www.lyx.org/trac/ticket/4629"
18824
18825 \end_inset
18826
18827
18828 \end_layout
18829
18830 \end_inset
18831
18832
18833 \end_layout
18834
18835 \begin_layout Standard
18836 Anstelle der Stilbefehle kann man auch den Dialog 
18837 \family sans
18838 Bearbeiten\SpecialChar \menuseparator
18839 Mathe\SpecialChar \menuseparator
18840 Text-Stil
18841 \family default
18842  oder den Mathe-Werkzeugleistenknopf 
18843 \begin_inset Graphics
18844         filename ../../images/math/font.png
18845         scale 85
18846
18847 \end_inset
18848
18849  verwenden.
18850 \end_layout
18851
18852 \begin_layout Subsection
18853 Fett gedruckte Formeln
18854 \begin_inset CommandInset label
18855 LatexCommand label
18856 name "sub:Fett-gedruckte-Formeln"
18857
18858 \end_inset
18859
18860
18861 \begin_inset Index idx
18862 status collapsed
18863
18864 \begin_layout Plain Layout
18865 Formel ! fett gedruckte
18866 \end_layout
18867
18868 \end_inset
18869
18870
18871 \end_layout
18872
18873 \begin_layout Standard
18874 Möchte man komplette Formeln fett setzen, kann man nicht den im vorigen
18875  Kapitel angegebenen Befehl 
18876 \series bold
18877
18878 \backslash
18879 mathbf
18880 \series default
18881  verwenden, denn dieser wirkt nicht auf kleine griechische Buchstaben.
18882  Außerdem setzt er lateinische Buchstaben immer aufrecht, was man an folgender
18883  Formel gut erkennt:
18884 \end_layout
18885
18886 \begin_layout Standard
18887 \begin_inset Formula 
18888 \[
18889 \mathbf{\int_{n}^{2}f(\theta)=\Gamma}\qquad\textrm{Formel mit \textbackslash mathbf}
18890 \]
18891
18892 \end_inset
18893
18894
18895 \end_layout
18896
18897 \begin_layout Standard
18898 Um die Formel korrekt darzustellen, verwendet man den Befehl 
18899 \series bold
18900
18901 \backslash
18902 boldsymbol
18903 \series default
18904 :
18905 \begin_inset Formula 
18906 \[
18907 \boldsymbol{\int_{n}^{2}f(\theta)=\Gamma\qquad\textrm{Formel mit \textbackslash boldsymbol}}
18908 \]
18909
18910 \end_inset
18911
18912 Es gibt auch die Möglichkeit die Formel in eine 
18913 \series bold
18914 boldmath-Umgebung
18915 \series default
18916  zu setzen.
18917  Diese Umgebung wird erzeugt, indem man im TeX-Modus den Befehl 
18918 \series bold
18919
18920 \backslash
18921 boldmath
18922 \series default
18923
18924 \begin_inset Index idx
18925 status collapsed
18926
18927 \begin_layout Plain Layout
18928 Befehle ! B ! 
18929 \backslash
18930 boldmath
18931 \end_layout
18932
18933 \end_inset
18934
18935  eingibt.
18936  Um die Umgebung wieder zu beenden, gibt man im TeX-Modus den Befehl 
18937 \series bold
18938
18939 \backslash
18940 unboldmath
18941 \series default
18942
18943 \begin_inset Index idx
18944 status collapsed
18945
18946 \begin_layout Plain Layout
18947 Befehle ! U ! 
18948 \backslash
18949 unboldmath
18950 \end_layout
18951
18952 \end_inset
18953
18954  ein.
18955 \begin_inset ERT
18956 status collapsed
18957
18958 \begin_layout Plain Layout
18959
18960
18961 \backslash
18962 boldmath 
18963 \end_layout
18964
18965 \end_inset
18966
18967
18968 \begin_inset Formula 
18969 \[
18970 \int_{n}^{2}f(\theta)=\Gamma\qquad\textrm{Formel in boldmath-Umgebung}
18971 \]
18972
18973 \end_inset
18974
18975
18976 \begin_inset ERT
18977 status collapsed
18978
18979 \begin_layout Plain Layout
18980
18981
18982 \backslash
18983 unboldmath 
18984 \end_layout
18985
18986 \end_inset
18987
18988
18989 \end_layout
18990
18991 \begin_layout Subsection
18992 Farbige Formeln
18993 \begin_inset Index idx
18994 status collapsed
18995
18996 \begin_layout Plain Layout
18997 Formel ! farbige
18998 \end_layout
18999
19000 \end_inset
19001
19002
19003 \end_layout
19004
19005 \begin_layout Standard
19006 Formeln können wie normaler Text gefärbt werden: Markieren Sie eine Formel
19007  oder Formelteile und verwenden dann den 
19008 \family sans
19009 Textstil
19010 \family default
19011  Dialog.
19012  Hier ist eine Formel in Magenta:
19013 \begin_inset Formula 
19014 \[
19015 {\color{magenta}\int A\,\mathrm{d}x=\frac{\sqrt[5]{B}}{\ln\left(\frac{1}{3}\right)}}
19016 \]
19017
19018 \end_inset
19019
19020
19021 \end_layout
19022
19023 \begin_layout Standard
19024 Man kann auch eigene Farben definieren, wie in 
19025 \begin_inset CommandInset ref
19026 LatexCommand ref
19027 reference "sub:Farbige-Boxen"
19028
19029 \end_inset
19030
19031  erklärt ist.
19032  Diese können dann mit dem TeX-Code Befehl 
19033 \series bold
19034
19035 \backslash
19036 textcolor
19037 \series default
19038
19039 \begin_inset Index idx
19040 status collapsed
19041
19042 \begin_layout Plain Layout
19043 Befehle! T ! 
19044 \backslash
19045 textcolor
19046 \end_layout
19047
19048 \end_inset
19049
19050  verwendet werden, dass folgendes Schema besitzt:
19051 \end_layout
19052
19053 \begin_layout Standard
19054
19055 \series bold
19056
19057 \backslash
19058 textcolor{Farbe}{Zeichen oder Formel}
19059 \end_layout
19060
19061 \begin_layout Standard
19062 Das folgende Beispiel wurde komplett dunkelgrün und teilweise rot eingefärbt:
19063 \end_layout
19064
19065 \begin_layout Standard
19066 \begin_inset ERT
19067 status collapsed
19068
19069 \begin_layout Plain Layout
19070
19071
19072 \backslash
19073 textcolor{dunkelgruen}{
19074 \end_layout
19075
19076 \end_inset
19077
19078
19079 \begin_inset Formula 
19080 \[
19081 \int A\,\mathrm{d}x=\frac{{\color{red}\sqrt[5]{B}}}{\ln\left(\frac{1}{3}\right)}
19082 \]
19083
19084 \end_inset
19085
19086
19087 \begin_inset ERT
19088 status collapsed
19089
19090 \begin_layout Plain Layout
19091
19092 }
19093 \end_layout
19094
19095 \end_inset
19096
19097
19098 \end_layout
19099
19100 \begin_layout Standard
19101 Aufgrund eines Fehlers in LyX können nur komplette Formeln mit selbst definierte
19102 n Farben gefärbt werden.
19103 \begin_inset Foot
19104 status collapsed
19105
19106 \begin_layout Plain Layout
19107 \begin_inset CommandInset href
19108 LatexCommand href
19109 name "LyX-bug #5269"
19110 target "http://www.lyx.org/trac/ticket/5269"
19111
19112 \end_inset
19113
19114
19115 \end_layout
19116
19117 \end_inset
19118
19119
19120 \end_layout
19121
19122 \begin_layout Subsection
19123 Schriftgrößen
19124 \begin_inset CommandInset label
19125 LatexCommand label
19126 name "sub:Schriftgrößen"
19127
19128 \end_inset
19129
19130
19131 \begin_inset Index idx
19132 status collapsed
19133
19134 \begin_layout Plain Layout
19135 Schriften ! Schriftgrößen
19136 \end_layout
19137
19138 \end_inset
19139
19140
19141 \end_layout
19142
19143 \begin_layout Standard
19144 Für Zeichen in einer Formel gibt es, analog zu Textzeichen, folgende Größenbefeh
19145 le:
19146 \end_layout
19147
19148 \begin_layout Standard
19149
19150 \series bold
19151
19152 \backslash
19153 Huge
19154 \series default
19155
19156 \series bold
19157
19158 \backslash
19159 huge
19160 \series default
19161
19162 \series bold
19163
19164 \backslash
19165 LARGE
19166 \series default
19167
19168 \series bold
19169
19170 \backslash
19171 Large
19172 \series default
19173
19174 \series bold
19175
19176 \backslash
19177 large
19178 \series default
19179
19180 \series bold
19181
19182 \backslash
19183 normalsize
19184 \series default
19185
19186 \series bold
19187
19188 \backslash
19189 small
19190 \series default
19191
19192 \series bold
19193
19194 \backslash
19195 footnotesize
19196 \series default
19197 ,
19198 \begin_inset Newline linebreak
19199 \end_inset
19200
19201
19202 \series bold
19203
19204 \backslash
19205 scriptsize
19206 \series default
19207  und 
19208 \series bold
19209
19210 \backslash
19211 tiny
19212 \end_layout
19213
19214 \begin_layout Standard
19215 Welche Größe die Befehle produzieren, hängt von der Dokumentschriftgröße
19216  ab, die dem Befehl 
19217 \series bold
19218
19219 \backslash
19220 normalsize
19221 \series default
19222  entspricht.
19223  Die anderen Befehle produzieren kleinere oder größere Schriften als 
19224 \series bold
19225
19226 \backslash
19227 normalsize
19228 \series default
19229 .
19230  Die Schriftgröße kann jedoch einen bestimmten Wert nicht übertreffen.
19231  Beträgt z.
19232 \begin_inset space \thinspace{}
19233 \end_inset
19234
19235 B.
19236  die Dokumentschriftgröße 12
19237 \begin_inset space \thinspace{}
19238 \end_inset
19239
19240 pt, produziert der Befehl 
19241 \series bold
19242
19243 \backslash
19244 Huge
19245 \series default
19246  dasselbe wie 
19247 \series bold
19248
19249 \backslash
19250 huge
19251 \series default
19252 .
19253  
19254 \end_layout
19255
19256 \begin_layout Standard
19257 Ein Größenbefehl wird im TeX-Modus vor der Formel eingegeben und legt die
19258  Größe aller nachfolgenden Formel- und Textzeichen fest.
19259  Um wieder zur Ausgangsgröße zurückzukehren, gibt man nach der Formel im
19260  TeX-Modus den Befehl 
19261 \series bold
19262
19263 \backslash
19264 normalsize
19265 \series default
19266  ein.
19267 \end_layout
19268
19269 \begin_layout Standard
19270 Innerhalb einer Formel kann die Größe mit den folgenden Größenbefehlen geändert
19271  werden:
19272 \end_layout
19273
19274 \begin_layout Standard
19275 \noindent
19276 \align center
19277 \begin_inset Tabular
19278 <lyxtabular version="3" rows="5" columns="2">
19279 <features tabularvalignment="middle">
19280 <column alignment="center" valignment="top" width="0">
19281 <column alignment="center" valignment="top" width="0">
19282 <row>
19283 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
19284 \begin_inset Text
19285
19286 \begin_layout Plain Layout
19287 Befehl
19288 \end_layout
19289
19290 \end_inset
19291 </cell>
19292 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
19293 \begin_inset Text
19294
19295 \begin_layout Plain Layout
19296 Ergebnis
19297 \begin_inset Note Note
19298 status collapsed
19299
19300 \begin_layout Plain Layout
19301
19302 \series bold
19303
19304 \backslash
19305 raisebox
19306 \series default
19307  dient nur als Abstandhalter.
19308 \end_layout
19309
19310 \end_inset
19311
19312
19313 \end_layout
19314
19315 \end_inset
19316 </cell>
19317 </row>
19318 <row>
19319 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19320 \begin_inset Text
19321
19322 \begin_layout Plain Layout
19323
19324 \backslash
19325 displaystyle
19326 \begin_inset Index idx
19327 status collapsed
19328
19329 \begin_layout Plain Layout
19330 Befehle ! D ! 
19331 \backslash
19332 displaystyle
19333 \end_layout
19334
19335 \end_inset
19336
19337
19338 \end_layout
19339
19340 \end_inset
19341 </cell>
19342 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19343 \begin_inset Text
19344
19345 \begin_layout Plain Layout
19346 \begin_inset Formula $\raisebox{6.5mm}{}{\displaystyle E_{\mathrm{pot_{1}}}=\frac{K}{l+\frac{m}{n_{2}}}}\raisebox{-5.5mm}{}$
19347 \end_inset
19348
19349
19350 \end_layout
19351
19352 \end_inset
19353 </cell>
19354 </row>
19355 <row>
19356 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19357 \begin_inset Text
19358
19359 \begin_layout Plain Layout
19360
19361 \backslash
19362 textstyle
19363 \end_layout
19364
19365 \end_inset
19366 </cell>
19367 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19368 \begin_inset Text
19369
19370 \begin_layout Plain Layout
19371 \begin_inset Formula $\raisebox{4.5mm}{}{\textstyle E_{\mathrm{pot_{1}}}=\frac{K}{l+\frac{m}{n_{2}}}}\raisebox{-4mm}{}$
19372 \end_inset
19373
19374
19375 \end_layout
19376
19377 \end_inset
19378 </cell>
19379 </row>
19380 <row>
19381 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19382 \begin_inset Text
19383
19384 \begin_layout Plain Layout
19385
19386 \backslash
19387 scriptstyle
19388 \end_layout
19389
19390 \end_inset
19391 </cell>
19392 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19393 \begin_inset Text
19394
19395 \begin_layout Plain Layout
19396 \begin_inset Formula $\raisebox{4.5mm}{}{\scriptstyle E_{\mathrm{pot_{1}}}=\frac{K}{l+\frac{m}{n_{2}}}}\raisebox{-3.5mm}{}$
19397 \end_inset
19398
19399
19400 \end_layout
19401
19402 \end_inset
19403 </cell>
19404 </row>
19405 <row>
19406 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
19407 \begin_inset Text
19408
19409 \begin_layout Plain Layout
19410
19411 \backslash
19412 scriptscriptstyle
19413 \end_layout
19414
19415 \end_inset
19416 </cell>
19417 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
19418 \begin_inset Text
19419
19420 \begin_layout Plain Layout
19421 \begin_inset Formula $\raisebox{4.5mm}{}{\scriptscriptstyle E_{\mathrm{pot_{1}}}=\frac{K}{l+\frac{m}{n_{2}}}}\raisebox{-3.5mm}{}$
19422 \end_inset
19423
19424
19425 \end_layout
19426
19427 \end_inset
19428 </cell>
19429 </row>
19430 </lyxtabular>
19431
19432 \end_inset
19433
19434
19435 \end_layout
19436
19437 \begin_layout Standard
19438 Nachdem diese Befehle eingegeben wurden, erscheint eine blaues Kästchen
19439  in das die Formelteile eingegeben werden.
19440 \end_layout
19441
19442 \begin_layout Standard
19443 Es gibt eine weitere Möglichkeit die Schriftgröße zu ändern, die allerdings
19444  nur für Symbole oder Buchstaben im mathematischen Text funktioniert.
19445  Dazu wird einer der obigen Textgrößenbefehle im mathematischen Textmodus
19446  eingegeben.
19447  Alle diesem Befehl folgenden Zeichen bis zum Ende des mathematischen Textes
19448  oder bis zu einem anderen Größenbefehl haben dann die angegebene Größe.
19449  Dazu zwei Beispiele:
19450 \begin_inset VSpace -2mm
19451 \end_inset
19452
19453
19454 \end_layout
19455
19456 \begin_layout Standard
19457 \begin_inset ERT
19458 status collapsed
19459
19460 \begin_layout Plain Layout
19461
19462
19463 \backslash
19464 huge 
19465 \end_layout
19466
19467 \end_inset
19468
19469
19470 \begin_inset Formula 
19471 \[
19472 A=\frac{B}{c}\cdot\maltese
19473 \]
19474
19475 \end_inset
19476
19477
19478 \begin_inset Formula 
19479 \[
19480 \maltese A\textrm{\Large\maltese\textit{A}}\textrm{\tiny\maltese\textit{A}}
19481 \]
19482
19483 \end_inset
19484
19485
19486 \begin_inset ERT
19487 status collapsed
19488
19489 \begin_layout Plain Layout
19490
19491
19492 \backslash
19493 normalsize 
19494 \end_layout
19495
19496 \end_inset
19497
19498
19499 \end_layout
19500
19501 \begin_layout Standard
19502 \begin_inset VSpace medskip
19503 \end_inset
19504
19505 Vor beiden Formeln wurde der Befehl 
19506 \series bold
19507
19508 \backslash
19509 huge
19510 \series default
19511  eingegeben.
19512  Der Befehl für die zweite Formel lautet:
19513 \begin_inset Newline newline
19514 \end_inset
19515
19516
19517 \series bold
19518
19519 \backslash
19520 maltese
19521 \begin_inset ERT
19522 status collapsed
19523
19524 \begin_layout Plain Layout
19525
19526
19527 \backslash
19528 leer 
19529 \end_layout
19530
19531 \end_inset
19532
19533 A M-m m 
19534 \backslash
19535 Large
19536 \begin_inset ERT
19537 status collapsed
19538
19539 \begin_layout Plain Layout
19540
19541
19542 \backslash
19543 leer 
19544 \end_layout
19545
19546 \end_inset
19547
19548
19549 \backslash
19550 maltese
19551 \begin_inset ERT
19552 status collapsed
19553
19554 \begin_layout Plain Layout
19555
19556
19557 \backslash
19558 leer 
19559 \end_layout
19560
19561 \end_inset
19562
19563
19564 \backslash
19565 textit
19566 \begin_inset ERT
19567 status collapsed
19568
19569 \begin_layout Plain Layout
19570
19571
19572 \backslash
19573 leer 
19574 \end_layout
19575
19576 \end_inset
19577
19578 A
19579 \begin_inset Formula $\to$
19580 \end_inset
19581
19582
19583 \begin_inset Formula $\to$
19584 \end_inset
19585
19586
19587 \begin_inset Newline newline
19588 \end_inset
19589
19590
19591 \begin_inset space \hspace*{}
19592 \length 1cm
19593 \end_inset
19594
19595 M-m
19596 \series default
19597  
19598 \series bold
19599
19600 \backslash
19601 tiny
19602 \begin_inset ERT
19603 status collapsed
19604
19605 \begin_layout Plain Layout
19606
19607
19608 \backslash
19609 leer 
19610 \end_layout
19611
19612 \end_inset
19613
19614
19615 \backslash
19616 maltese
19617 \begin_inset ERT
19618 status collapsed
19619
19620 \begin_layout Plain Layout
19621
19622
19623 \backslash
19624 leer 
19625 \end_layout
19626
19627 \end_inset
19628
19629
19630 \backslash
19631 textit
19632 \begin_inset ERT
19633 status collapsed
19634
19635 \begin_layout Plain Layout
19636
19637
19638 \backslash
19639 leer 
19640 \end_layout
19641
19642 \end_inset
19643
19644 A
19645 \end_layout
19646
19647 \begin_layout Standard
19648 Kann ein Symbol nicht in verschiedenen Größen dargestellt werden, wird es
19649  immer in der Standardgröße dargestellt.
19650 \end_layout
19651
19652 \begin_layout Section
19653 Griechische Buchstaben
19654 \begin_inset Index idx
19655 status collapsed
19656
19657 \begin_layout Plain Layout
19658 griechische Buchstaben
19659 \end_layout
19660
19661 \end_inset
19662
19663
19664 \end_layout
19665
19666 \begin_layout Standard
19667 Griechischen Buchstaben können auch über den Mathe-Werkzeugleistenknopf
19668  
19669 \begin_inset Graphics
19670         filename ../../images/math/alpha.png
19671         scale 85
19672
19673 \end_inset
19674
19675  eingefügt werden.
19676  Alle internationalen Schriftsatz-Normen geben vor, dass griechische Buchstaben
19677  in Formeln aufrecht gesetzt werden.
19678  In einigen Sprachen, wie z.
19679 \begin_inset space \thinspace{}
19680 \end_inset
19681
19682 B: Französisch oder Russisch, werden sie dennoch manchmal aufrecht gesetzt.
19683 \end_layout
19684
19685 \begin_layout Subsection
19686 Kleine Buchstaben
19687 \begin_inset Index idx
19688 status collapsed
19689
19690 \begin_layout Plain Layout
19691 griechische Buchstaben ! kleine
19692 \end_layout
19693
19694 \end_inset
19695
19696
19697 \end_layout
19698
19699 \begin_layout Standard
19700 \begin_inset space \hfill{}
19701 \end_inset
19702
19703
19704 \begin_inset Tabular
19705 <lyxtabular version="3" rows="11" columns="2">
19706 <features tabularvalignment="middle">
19707 <column alignment="center" valignment="top" width="0pt">
19708 <column alignment="center" valignment="top" width="0pt">
19709 <row>
19710 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
19711 \begin_inset Text
19712
19713 \begin_layout Plain Layout
19714 Befehl
19715 \end_layout
19716
19717 \end_inset
19718 </cell>
19719 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
19720 \begin_inset Text
19721
19722 \begin_layout Plain Layout
19723 Ergebnis
19724 \end_layout
19725
19726 \end_inset
19727 </cell>
19728 </row>
19729 <row>
19730 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19731 \begin_inset Text
19732
19733 \begin_layout Plain Layout
19734
19735 \backslash
19736 alpha
19737 \end_layout
19738
19739 \end_inset
19740 </cell>
19741 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19742 \begin_inset Text
19743
19744 \begin_layout Plain Layout
19745 \begin_inset Formula $\alpha$
19746 \end_inset
19747
19748
19749 \end_layout
19750
19751 \end_inset
19752 </cell>
19753 </row>
19754 <row>
19755 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19756 \begin_inset Text
19757
19758 \begin_layout Plain Layout
19759
19760 \backslash
19761 beta
19762 \end_layout
19763
19764 \end_inset
19765 </cell>
19766 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19767 \begin_inset Text
19768
19769 \begin_layout Plain Layout
19770 \begin_inset Formula $\beta$
19771 \end_inset
19772
19773
19774 \end_layout
19775
19776 \end_inset
19777 </cell>
19778 </row>
19779 <row>
19780 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19781 \begin_inset Text
19782
19783 \begin_layout Plain Layout
19784
19785 \backslash
19786 gamma
19787 \end_layout
19788
19789 \end_inset
19790 </cell>
19791 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19792 \begin_inset Text
19793
19794 \begin_layout Plain Layout
19795 \begin_inset Formula $\gamma$
19796 \end_inset
19797
19798
19799 \end_layout
19800
19801 \end_inset
19802 </cell>
19803 </row>
19804 <row>
19805 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19806 \begin_inset Text
19807
19808 \begin_layout Plain Layout
19809
19810 \backslash
19811 delta
19812 \end_layout
19813
19814 \end_inset
19815 </cell>
19816 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19817 \begin_inset Text
19818
19819 \begin_layout Plain Layout
19820 \begin_inset Formula $\delta$
19821 \end_inset
19822
19823
19824 \end_layout
19825
19826 \end_inset
19827 </cell>
19828 </row>
19829 <row>
19830 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19831 \begin_inset Text
19832
19833 \begin_layout Plain Layout
19834
19835 \backslash
19836 epsilon
19837 \end_layout
19838
19839 \end_inset
19840 </cell>
19841 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19842 \begin_inset Text
19843
19844 \begin_layout Plain Layout
19845 \begin_inset Formula $\epsilon$
19846 \end_inset
19847
19848
19849 \end_layout
19850
19851 \end_inset
19852 </cell>
19853 </row>
19854 <row>
19855 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19856 \begin_inset Text
19857
19858 \begin_layout Plain Layout
19859
19860 \backslash
19861 varepsilon
19862 \end_layout
19863
19864 \end_inset
19865 </cell>
19866 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19867 \begin_inset Text
19868
19869 \begin_layout Plain Layout
19870 \begin_inset Formula $\varepsilon$
19871 \end_inset
19872
19873
19874 \end_layout
19875
19876 \end_inset
19877 </cell>
19878 </row>
19879 <row>
19880 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19881 \begin_inset Text
19882
19883 \begin_layout Plain Layout
19884
19885 \backslash
19886 zeta
19887 \end_layout
19888
19889 \end_inset
19890 </cell>
19891 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19892 \begin_inset Text
19893
19894 \begin_layout Plain Layout
19895 \begin_inset Formula $\zeta$
19896 \end_inset
19897
19898
19899 \end_layout
19900
19901 \end_inset
19902 </cell>
19903 </row>
19904 <row>
19905 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19906 \begin_inset Text
19907
19908 \begin_layout Plain Layout
19909
19910 \backslash
19911 eta
19912 \end_layout
19913
19914 \end_inset
19915 </cell>
19916 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19917 \begin_inset Text
19918
19919 \begin_layout Plain Layout
19920 \begin_inset Formula $\eta$
19921 \end_inset
19922
19923
19924 \end_layout
19925
19926 \end_inset
19927 </cell>
19928 </row>
19929 <row>
19930 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19931 \begin_inset Text
19932
19933 \begin_layout Plain Layout
19934
19935 \backslash
19936 theta
19937 \end_layout
19938
19939 \end_inset
19940 </cell>
19941 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19942 \begin_inset Text
19943
19944 \begin_layout Plain Layout
19945 \begin_inset Formula $\theta$
19946 \end_inset
19947
19948
19949 \end_layout
19950
19951 \end_inset
19952 </cell>
19953 </row>
19954 <row>
19955 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
19956 \begin_inset Text
19957
19958 \begin_layout Plain Layout
19959
19960 \backslash
19961 vartheta
19962 \end_layout
19963
19964 \end_inset
19965 </cell>
19966 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
19967 \begin_inset Text
19968
19969 \begin_layout Plain Layout
19970 \begin_inset Formula $\vartheta$
19971 \end_inset
19972
19973
19974 \end_layout
19975
19976 \end_inset
19977 </cell>
19978 </row>
19979 </lyxtabular>
19980
19981 \end_inset
19982
19983
19984 \begin_inset space \hfill{}
19985 \end_inset
19986
19987
19988 \begin_inset Tabular
19989 <lyxtabular version="3" rows="12" columns="2">
19990 <features tabularvalignment="middle">
19991 <column alignment="center" valignment="top" width="0pt">
19992 <column alignment="center" valignment="top" width="0pt">
19993 <row>
19994 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
19995 \begin_inset Text
19996
19997 \begin_layout Plain Layout
19998 Befehl
19999 \end_layout
20000
20001 \end_inset
20002 </cell>
20003 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
20004 \begin_inset Text
20005
20006 \begin_layout Plain Layout
20007 Ergebnis
20008 \end_layout
20009
20010 \end_inset
20011 </cell>
20012 </row>
20013 <row>
20014 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20015 \begin_inset Text
20016
20017 \begin_layout Plain Layout
20018
20019 \backslash
20020 iota
20021 \end_layout
20022
20023 \end_inset
20024 </cell>
20025 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20026 \begin_inset Text
20027
20028 \begin_layout Plain Layout
20029 \begin_inset Formula $\iota$
20030 \end_inset
20031
20032
20033 \end_layout
20034
20035 \end_inset
20036 </cell>
20037 </row>
20038 <row>
20039 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20040 \begin_inset Text
20041
20042 \begin_layout Plain Layout
20043
20044 \backslash
20045 kappa
20046 \end_layout
20047
20048 \end_inset
20049 </cell>
20050 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20051 \begin_inset Text
20052
20053 \begin_layout Plain Layout
20054 \begin_inset Formula $\kappa$
20055 \end_inset
20056
20057
20058 \end_layout
20059
20060 \end_inset
20061 </cell>
20062 </row>
20063 <row>
20064 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20065 \begin_inset Text
20066
20067 \begin_layout Plain Layout
20068
20069 \backslash
20070 varkappa
20071 \end_layout
20072
20073 \end_inset
20074 </cell>
20075 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20076 \begin_inset Text
20077
20078 \begin_layout Plain Layout
20079 \begin_inset Formula $\varkappa$
20080 \end_inset
20081
20082
20083 \end_layout
20084
20085 \end_inset
20086 </cell>
20087 </row>
20088 <row>
20089 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20090 \begin_inset Text
20091
20092 \begin_layout Plain Layout
20093
20094 \backslash
20095 lambda
20096 \end_layout
20097
20098 \end_inset
20099 </cell>
20100 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20101 \begin_inset Text
20102
20103 \begin_layout Plain Layout
20104 \begin_inset Formula $\lambda$
20105 \end_inset
20106
20107
20108 \end_layout
20109
20110 \end_inset
20111 </cell>
20112 </row>
20113 <row>
20114 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20115 \begin_inset Text
20116
20117 \begin_layout Plain Layout
20118
20119 \backslash
20120 mu
20121 \end_layout
20122
20123 \end_inset
20124 </cell>
20125 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20126 \begin_inset Text
20127
20128 \begin_layout Plain Layout
20129 \begin_inset Formula $\mu$
20130 \end_inset
20131
20132
20133 \end_layout
20134
20135 \end_inset
20136 </cell>
20137 </row>
20138 <row>
20139 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20140 \begin_inset Text
20141
20142 \begin_layout Plain Layout
20143
20144 \backslash
20145 nu
20146 \end_layout
20147
20148 \end_inset
20149 </cell>
20150 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20151 \begin_inset Text
20152
20153 \begin_layout Plain Layout
20154 \begin_inset Formula $\nu$
20155 \end_inset
20156
20157
20158 \end_layout
20159
20160 \end_inset
20161 </cell>
20162 </row>
20163 <row>
20164 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20165 \begin_inset Text
20166
20167 \begin_layout Plain Layout
20168
20169 \backslash
20170 xi
20171 \end_layout
20172
20173 \end_inset
20174 </cell>
20175 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20176 \begin_inset Text
20177
20178 \begin_layout Plain Layout
20179 \begin_inset Formula $\xi$
20180 \end_inset
20181
20182
20183 \end_layout
20184
20185 \end_inset
20186 </cell>
20187 </row>
20188 <row>
20189 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20190 \begin_inset Text
20191
20192 \begin_layout Plain Layout
20193 o
20194 \end_layout
20195
20196 \end_inset
20197 </cell>
20198 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20199 \begin_inset Text
20200
20201 \begin_layout Plain Layout
20202 \begin_inset Formula $o$
20203 \end_inset
20204
20205
20206 \end_layout
20207
20208 \end_inset
20209 </cell>
20210 </row>
20211 <row>
20212 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20213 \begin_inset Text
20214
20215 \begin_layout Plain Layout
20216
20217 \backslash
20218 pi
20219 \end_layout
20220
20221 \end_inset
20222 </cell>
20223 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20224 \begin_inset Text
20225
20226 \begin_layout Plain Layout
20227 \begin_inset Formula $\pi$
20228 \end_inset
20229
20230
20231 \end_layout
20232
20233 \end_inset
20234 </cell>
20235 </row>
20236 <row>
20237 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20238 \begin_inset Text
20239
20240 \begin_layout Plain Layout
20241
20242 \backslash
20243 varpi
20244 \end_layout
20245
20246 \end_inset
20247 </cell>
20248 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20249 \begin_inset Text
20250
20251 \begin_layout Plain Layout
20252 \begin_inset Formula $\varpi$
20253 \end_inset
20254
20255
20256 \end_layout
20257
20258 \end_inset
20259 </cell>
20260 </row>
20261 <row>
20262 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
20263 \begin_inset Text
20264
20265 \begin_layout Plain Layout
20266
20267 \backslash
20268 rho
20269 \end_layout
20270
20271 \end_inset
20272 </cell>
20273 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
20274 \begin_inset Text
20275
20276 \begin_layout Plain Layout
20277 \begin_inset Formula $\rho$
20278 \end_inset
20279
20280
20281 \end_layout
20282
20283 \end_inset
20284 </cell>
20285 </row>
20286 </lyxtabular>
20287
20288 \end_inset
20289
20290
20291 \begin_inset space \hfill{}
20292 \end_inset
20293
20294
20295 \begin_inset Tabular
20296 <lyxtabular version="3" rows="11" columns="2">
20297 <features tabularvalignment="middle">
20298 <column alignment="center" valignment="top" width="0pt">
20299 <column alignment="center" valignment="top" width="0pt">
20300 <row>
20301 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
20302 \begin_inset Text
20303
20304 \begin_layout Plain Layout
20305 Befehl
20306 \end_layout
20307
20308 \end_inset
20309 </cell>
20310 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
20311 \begin_inset Text
20312
20313 \begin_layout Plain Layout
20314 Ergebnis
20315 \end_layout
20316
20317 \end_inset
20318 </cell>
20319 </row>
20320 <row>
20321 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20322 \begin_inset Text
20323
20324 \begin_layout Plain Layout
20325
20326 \backslash
20327 varrho
20328 \end_layout
20329
20330 \end_inset
20331 </cell>
20332 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20333 \begin_inset Text
20334
20335 \begin_layout Plain Layout
20336 \begin_inset Formula $\varrho$
20337 \end_inset
20338
20339
20340 \end_layout
20341
20342 \end_inset
20343 </cell>
20344 </row>
20345 <row>
20346 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20347 \begin_inset Text
20348
20349 \begin_layout Plain Layout
20350
20351 \backslash
20352 sigma
20353 \end_layout
20354
20355 \end_inset
20356 </cell>
20357 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20358 \begin_inset Text
20359
20360 \begin_layout Plain Layout
20361 \begin_inset Formula $\sigma$
20362 \end_inset
20363
20364
20365 \end_layout
20366
20367 \end_inset
20368 </cell>
20369 </row>
20370 <row>
20371 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20372 \begin_inset Text
20373
20374 \begin_layout Plain Layout
20375
20376 \backslash
20377 varsigma
20378 \end_layout
20379
20380 \end_inset
20381 </cell>
20382 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20383 \begin_inset Text
20384
20385 \begin_layout Plain Layout
20386 \begin_inset Formula $\varsigma$
20387 \end_inset
20388
20389
20390 \end_layout
20391
20392 \end_inset
20393 </cell>
20394 </row>
20395 <row>
20396 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20397 \begin_inset Text
20398
20399 \begin_layout Plain Layout
20400
20401 \backslash
20402 tau
20403 \end_layout
20404
20405 \end_inset
20406 </cell>
20407 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20408 \begin_inset Text
20409
20410 \begin_layout Plain Layout
20411 \begin_inset Formula $\tau$
20412 \end_inset
20413
20414
20415 \end_layout
20416
20417 \end_inset
20418 </cell>
20419 </row>
20420 <row>
20421 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20422 \begin_inset Text
20423
20424 \begin_layout Plain Layout
20425
20426 \backslash
20427 upsilon
20428 \end_layout
20429
20430 \end_inset
20431 </cell>
20432 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20433 \begin_inset Text
20434
20435 \begin_layout Plain Layout
20436 \begin_inset Formula $\upsilon$
20437 \end_inset
20438
20439
20440 \end_layout
20441
20442 \end_inset
20443 </cell>
20444 </row>
20445 <row>
20446 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20447 \begin_inset Text
20448
20449 \begin_layout Plain Layout
20450
20451 \backslash
20452 phi
20453 \end_layout
20454
20455 \end_inset
20456 </cell>
20457 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20458 \begin_inset Text
20459
20460 \begin_layout Plain Layout
20461 \begin_inset Formula $\phi$
20462 \end_inset
20463
20464
20465 \end_layout
20466
20467 \end_inset
20468 </cell>
20469 </row>
20470 <row>
20471 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20472 \begin_inset Text
20473
20474 \begin_layout Plain Layout
20475
20476 \backslash
20477 varphi
20478 \end_layout
20479
20480 \end_inset
20481 </cell>
20482 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20483 \begin_inset Text
20484
20485 \begin_layout Plain Layout
20486 \begin_inset Formula $\varphi$
20487 \end_inset
20488
20489
20490 \end_layout
20491
20492 \end_inset
20493 </cell>
20494 </row>
20495 <row>
20496 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20497 \begin_inset Text
20498
20499 \begin_layout Plain Layout
20500
20501 \backslash
20502 chi
20503 \end_layout
20504
20505 \end_inset
20506 </cell>
20507 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20508 \begin_inset Text
20509
20510 \begin_layout Plain Layout
20511 \begin_inset Formula $\chi$
20512 \end_inset
20513
20514
20515 \end_layout
20516
20517 \end_inset
20518 </cell>
20519 </row>
20520 <row>
20521 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20522 \begin_inset Text
20523
20524 \begin_layout Plain Layout
20525
20526 \backslash
20527 psi
20528 \end_layout
20529
20530 \end_inset
20531 </cell>
20532 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20533 \begin_inset Text
20534
20535 \begin_layout Plain Layout
20536 \begin_inset Formula $\psi$
20537 \end_inset
20538
20539
20540 \end_layout
20541
20542 \end_inset
20543 </cell>
20544 </row>
20545 <row>
20546 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
20547 \begin_inset Text
20548
20549 \begin_layout Plain Layout
20550
20551 \backslash
20552 omega
20553 \end_layout
20554
20555 \end_inset
20556 </cell>
20557 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
20558 \begin_inset Text
20559
20560 \begin_layout Plain Layout
20561 \begin_inset Formula $\omega$
20562 \end_inset
20563
20564
20565 \end_layout
20566
20567 \end_inset
20568 </cell>
20569 </row>
20570 </lyxtabular>
20571
20572 \end_inset
20573
20574
20575 \begin_inset space \hfill{}
20576 \end_inset
20577
20578
20579 \end_layout
20580
20581 \begin_layout Standard
20582 \begin_inset VSpace medskip
20583 \end_inset
20584
20585 Wie man spezielle, aufrechte griechische Buchstaben erstellt, ist in 
20586 \begin_inset CommandInset ref
20587 LatexCommand ref
20588 reference "sub:Aufrechte-kleine-griechische"
20589
20590 \end_inset
20591
20592  beschrieben.
20593 \end_layout
20594
20595 \begin_layout Subsection
20596 Große Buchstaben
20597 \begin_inset Index idx
20598 status collapsed
20599
20600 \begin_layout Plain Layout
20601 griechische Buchstaben ! große
20602 \end_layout
20603
20604 \end_inset
20605
20606
20607 \end_layout
20608
20609 \begin_layout Standard
20610 \begin_inset space \hfill{}
20611 \end_inset
20612
20613
20614 \begin_inset Tabular
20615 <lyxtabular version="3" rows="7" columns="2">
20616 <features tabularvalignment="middle">
20617 <column alignment="center" valignment="top" width="0pt">
20618 <column alignment="center" valignment="top" width="0pt">
20619 <row>
20620 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
20621 \begin_inset Text
20622
20623 \begin_layout Plain Layout
20624 Befehl
20625 \end_layout
20626
20627 \end_inset
20628 </cell>
20629 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
20630 \begin_inset Text
20631
20632 \begin_layout Plain Layout
20633 Ergebnis
20634 \end_layout
20635
20636 \end_inset
20637 </cell>
20638 </row>
20639 <row>
20640 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20641 \begin_inset Text
20642
20643 \begin_layout Plain Layout
20644
20645 \backslash
20646 Gamma
20647 \end_layout
20648
20649 \end_inset
20650 </cell>
20651 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20652 \begin_inset Text
20653
20654 \begin_layout Plain Layout
20655 \begin_inset Formula $\Gamma$
20656 \end_inset
20657
20658
20659 \end_layout
20660
20661 \end_inset
20662 </cell>
20663 </row>
20664 <row>
20665 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20666 \begin_inset Text
20667
20668 \begin_layout Plain Layout
20669
20670 \backslash
20671 Delta
20672 \end_layout
20673
20674 \end_inset
20675 </cell>
20676 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20677 \begin_inset Text
20678
20679 \begin_layout Plain Layout
20680 \begin_inset Formula $\Delta$
20681 \end_inset
20682
20683
20684 \end_layout
20685
20686 \end_inset
20687 </cell>
20688 </row>
20689 <row>
20690 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20691 \begin_inset Text
20692
20693 \begin_layout Plain Layout
20694
20695 \backslash
20696 Theta
20697 \end_layout
20698
20699 \end_inset
20700 </cell>
20701 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20702 \begin_inset Text
20703
20704 \begin_layout Plain Layout
20705 \begin_inset Formula $\Theta$
20706 \end_inset
20707
20708
20709 \end_layout
20710
20711 \end_inset
20712 </cell>
20713 </row>
20714 <row>
20715 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20716 \begin_inset Text
20717
20718 \begin_layout Plain Layout
20719
20720 \backslash
20721 Lambda
20722 \end_layout
20723
20724 \end_inset
20725 </cell>
20726 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20727 \begin_inset Text
20728
20729 \begin_layout Plain Layout
20730 \begin_inset Formula $\Lambda$
20731 \end_inset
20732
20733
20734 \end_layout
20735
20736 \end_inset
20737 </cell>
20738 </row>
20739 <row>
20740 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20741 \begin_inset Text
20742
20743 \begin_layout Plain Layout
20744
20745 \backslash
20746 Xi
20747 \end_layout
20748
20749 \end_inset
20750 </cell>
20751 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20752 \begin_inset Text
20753
20754 \begin_layout Plain Layout
20755 \begin_inset Formula $\Xi$
20756 \end_inset
20757
20758
20759 \end_layout
20760
20761 \end_inset
20762 </cell>
20763 </row>
20764 <row>
20765 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
20766 \begin_inset Text
20767
20768 \begin_layout Plain Layout
20769
20770 \backslash
20771 Pi
20772 \end_layout
20773
20774 \end_inset
20775 </cell>
20776 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
20777 \begin_inset Text
20778
20779 \begin_layout Plain Layout
20780 \begin_inset Formula $\Pi$
20781 \end_inset
20782
20783
20784 \end_layout
20785
20786 \end_inset
20787 </cell>
20788 </row>
20789 </lyxtabular>
20790
20791 \end_inset
20792
20793
20794 \begin_inset space \hfill{}
20795 \end_inset
20796
20797
20798 \begin_inset Tabular
20799 <lyxtabular version="3" rows="6" columns="2">
20800 <features tabularvalignment="middle">
20801 <column alignment="center" valignment="top" width="0pt">
20802 <column alignment="center" valignment="top" width="0pt">
20803 <row>
20804 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
20805 \begin_inset Text
20806
20807 \begin_layout Plain Layout
20808 Befehl
20809 \end_layout
20810
20811 \end_inset
20812 </cell>
20813 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
20814 \begin_inset Text
20815
20816 \begin_layout Plain Layout
20817 Ergebnis
20818 \end_layout
20819
20820 \end_inset
20821 </cell>
20822 </row>
20823 <row>
20824 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20825 \begin_inset Text
20826
20827 \begin_layout Plain Layout
20828
20829 \backslash
20830 Sigma
20831 \end_layout
20832
20833 \end_inset
20834 </cell>
20835 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20836 \begin_inset Text
20837
20838 \begin_layout Plain Layout
20839 \begin_inset Formula $\Sigma$
20840 \end_inset
20841
20842
20843 \end_layout
20844
20845 \end_inset
20846 </cell>
20847 </row>
20848 <row>
20849 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20850 \begin_inset Text
20851
20852 \begin_layout Plain Layout
20853
20854 \backslash
20855 Upsilon
20856 \end_layout
20857
20858 \end_inset
20859 </cell>
20860 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20861 \begin_inset Text
20862
20863 \begin_layout Plain Layout
20864 \begin_inset Formula $\Upsilon$
20865 \end_inset
20866
20867
20868 \end_layout
20869
20870 \end_inset
20871 </cell>
20872 </row>
20873 <row>
20874 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20875 \begin_inset Text
20876
20877 \begin_layout Plain Layout
20878
20879 \backslash
20880 Phi
20881 \end_layout
20882
20883 \end_inset
20884 </cell>
20885 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20886 \begin_inset Text
20887
20888 \begin_layout Plain Layout
20889 \begin_inset Formula $\Phi$
20890 \end_inset
20891
20892
20893 \end_layout
20894
20895 \end_inset
20896 </cell>
20897 </row>
20898 <row>
20899 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20900 \begin_inset Text
20901
20902 \begin_layout Plain Layout
20903
20904 \backslash
20905 Psi
20906 \end_layout
20907
20908 \end_inset
20909 </cell>
20910 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20911 \begin_inset Text
20912
20913 \begin_layout Plain Layout
20914 \begin_inset Formula $\Psi$
20915 \end_inset
20916
20917
20918 \end_layout
20919
20920 \end_inset
20921 </cell>
20922 </row>
20923 <row>
20924 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
20925 \begin_inset Text
20926
20927 \begin_layout Plain Layout
20928
20929 \backslash
20930 Omega
20931 \end_layout
20932
20933 \end_inset
20934 </cell>
20935 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
20936 \begin_inset Text
20937
20938 \begin_layout Plain Layout
20939 \begin_inset Formula $\Omega$
20940 \end_inset
20941
20942
20943 \end_layout
20944
20945 \end_inset
20946 </cell>
20947 </row>
20948 </lyxtabular>
20949
20950 \end_inset
20951
20952
20953 \begin_inset space \hfill{}
20954 \end_inset
20955
20956
20957 \end_layout
20958
20959 \begin_layout Standard
20960 \begin_inset VSpace medskip
20961 \end_inset
20962
20963 Dass die großen griechischen Buchstaben aufrecht erscheinen, ist einem Fehler
20964  geschuldet, der während der Entwicklung von TeX gemacht wurde.
20965  Um korrekte kursive Großbuchstaben zu erhalten, beginnt man einen Befehl
20966  mit 
20967 \series bold
20968 var
20969 \series default
20970 .
20971  So ergibt z.
20972 \begin_inset space \thinspace{}
20973 \end_inset
20974
20975 B.
20976  der Befehl 
20977 \series bold
20978
20979 \backslash
20980 varGamma
20981 \series default
20982  
20983 \begin_inset Formula $\varGamma$
20984 \end_inset
20985
20986 .
20987  Eine andere Methode ist das Laden des Pakets 
20988 \series bold
20989 fixmath
20990 \series default
20991
20992 \begin_inset Foot
20993 status collapsed
20994
20995 \begin_layout Plain Layout
20996
20997 \series bold
20998 fixmath
20999 \series default
21000  ist Teil des LaTeX-Paketes 
21001 \series bold
21002 was
21003 \series default
21004
21005 \begin_inset Index idx
21006 status collapsed
21007
21008 \begin_layout Plain Layout
21009 Pakete ! was
21010 \begin_inset ERT
21011 status collapsed
21012
21013 \begin_layout Plain Layout
21014
21015
21016 \backslash
21017 vspace{4mm}
21018 \end_layout
21019
21020 \end_inset
21021
21022
21023 \end_layout
21024
21025 \end_inset
21026
21027 .
21028 \end_layout
21029
21030 \end_inset
21031
21032
21033 \begin_inset Index idx
21034 status collapsed
21035
21036 \begin_layout Plain Layout
21037 Pakete ! fixmath
21038 \end_layout
21039
21040 \end_inset
21041
21042  mit der LaTeX-Vorspannzeile
21043 \end_layout
21044
21045 \begin_layout Standard
21046
21047 \series bold
21048
21049 \backslash
21050 usepackage{fixmath}
21051 \end_layout
21052
21053 \begin_layout Standard
21054 Dann werden alle großen griechischen Buchstaben im Dokument automatisch
21055  kursiv ausgegeben.
21056 \end_layout
21057
21058 \begin_layout Subsection
21059 Fett gedruckte Buchstaben
21060 \begin_inset Index idx
21061 status collapsed
21062
21063 \begin_layout Plain Layout
21064 griechische Buchstaben ! fett gedruckte
21065 \end_layout
21066
21067 \end_inset
21068
21069
21070 \end_layout
21071
21072 \begin_layout Standard
21073 Griechische lassen sich nicht wie lateinische Buchstaben in verschiedenen
21074  Schriftstilen darstellen.
21075  Es besteht nur die Möglichkeit, sie mit dem Befehl 
21076 \series bold
21077
21078 \backslash
21079 boldsymbol
21080 \series default
21081
21082 \begin_inset Index idx
21083 status collapsed
21084
21085 \begin_layout Plain Layout
21086 Befehle ! B ! 
21087 \backslash
21088 boldsymbol
21089 \end_layout
21090
21091 \end_inset
21092
21093  fett gedruckt auszugeben.
21094 \end_layout
21095
21096 \begin_layout Standard
21097 \align center
21098 \begin_inset Tabular
21099 <lyxtabular version="3" rows="3" columns="2">
21100 <features tabularvalignment="middle">
21101 <column alignment="center" valignment="top" width="0">
21102 <column alignment="center" valignment="top" width="0">
21103 <row>
21104 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
21105 \begin_inset Text
21106
21107 \begin_layout Plain Layout
21108 Befehl
21109 \end_layout
21110
21111 \end_inset
21112 </cell>
21113 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
21114 \begin_inset Text
21115
21116 \begin_layout Plain Layout
21117 Ergebnis
21118 \end_layout
21119
21120 \end_inset
21121 </cell>
21122 </row>
21123 <row>
21124 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21125 \begin_inset Text
21126
21127 \begin_layout Plain Layout
21128
21129 \backslash
21130 Upsilon
21131 \backslash
21132 boldsymbol
21133 \backslash
21134 Upsilon
21135 \end_layout
21136
21137 \end_inset
21138 </cell>
21139 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21140 \begin_inset Text
21141
21142 \begin_layout Plain Layout
21143 \begin_inset Formula $\Upsilon\boldsymbol{\Upsilon}$
21144 \end_inset
21145
21146
21147 \end_layout
21148
21149 \end_inset
21150 </cell>
21151 </row>
21152 <row>
21153 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
21154 \begin_inset Text
21155
21156 \begin_layout Plain Layout
21157
21158 \backslash
21159 theta
21160 \backslash
21161 boldsymbol
21162 \backslash
21163 theta
21164 \end_layout
21165
21166 \end_inset
21167 </cell>
21168 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
21169 \begin_inset Text
21170
21171 \begin_layout Plain Layout
21172 \begin_inset Formula $\theta\boldsymbol{\theta}$
21173 \end_inset
21174
21175
21176 \end_layout
21177
21178 \end_inset
21179 </cell>
21180 </row>
21181 </lyxtabular>
21182
21183 \end_inset
21184
21185
21186 \end_layout
21187
21188 \begin_layout Section
21189 Symbole
21190 \begin_inset ERT
21191 status collapsed
21192
21193 \begin_layout Plain Layout
21194
21195
21196 \backslash
21197 texorpdfstring{
21198 \end_layout
21199
21200 \end_inset
21201
21202
21203 \begin_inset Foot
21204 status collapsed
21205
21206 \begin_layout Plain Layout
21207 Eine Liste mit sämtlichen Symbolen der meisten LaTeX-Pakete findet man in
21208  
21209 \begin_inset CommandInset citation
21210 LatexCommand cite
21211 key "Symbole"
21212
21213 \end_inset
21214
21215 .
21216 \end_layout
21217
21218 \end_inset
21219
21220
21221 \begin_inset ERT
21222 status collapsed
21223
21224 \begin_layout Plain Layout
21225
21226 }{}
21227 \end_layout
21228
21229 \end_inset
21230
21231
21232 \begin_inset Note Note
21233 status collapsed
21234
21235 \begin_layout Plain Layout
21236
21237 \series bold
21238
21239 \backslash
21240 texorpdfstring
21241 \series default
21242  dient dazu, dass die Fußnote nicht mit im pdf-Lesezeichen erscheint.
21243 \end_layout
21244
21245 \begin_layout Plain Layout
21246 Näheres zu 
21247 \series bold
21248
21249 \backslash
21250 texorpdfstring
21251 \series default
21252  steht in Kapitel 
21253 \begin_inset CommandInset ref
21254 LatexCommand ref
21255 reference "sub:Formeln-in-Überschriften"
21256
21257 \end_inset
21258
21259 .
21260 \end_layout
21261
21262 \end_inset
21263
21264
21265 \begin_inset Index idx
21266 status collapsed
21267
21268 \begin_layout Plain Layout
21269 Symbole
21270 \end_layout
21271
21272 \end_inset
21273
21274
21275 \end_layout
21276
21277 \begin_layout Standard
21278 Viele der im Folgenden aufgelisteten Symbole können auch über die Mathe-Werkzeug\SpecialChar \-
21279
21280 leistenknöpfe 
21281 \begin_inset Graphics
21282         filename ../../images/math/nabla.png
21283         scale 85
21284
21285 \end_inset
21286
21287  und 
21288 \begin_inset Graphics
21289         filename ../../images/math/digamma.png
21290         scale 85
21291
21292 \end_inset
21293
21294  eingefügt werden.
21295 \end_layout
21296
21297 \begin_layout Subsection
21298 Mathematische Symbole
21299 \begin_inset CommandInset label
21300 LatexCommand label
21301 name "sub:Mathematische-Symbole"
21302
21303 \end_inset
21304
21305
21306 \begin_inset Index idx
21307 status collapsed
21308
21309 \begin_layout Plain Layout
21310 Symbole ! mathematische
21311 \end_layout
21312
21313 \end_inset
21314
21315
21316 \end_layout
21317
21318 \begin_layout Standard
21319 \begin_inset space \hfill{}
21320 \end_inset
21321
21322
21323 \begin_inset Tabular
21324 <lyxtabular version="3" rows="10" columns="2">
21325 <features tabularvalignment="middle">
21326 <column alignment="center" valignment="top" width="0pt">
21327 <column alignment="center" valignment="top" width="0pt">
21328 <row>
21329 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
21330 \begin_inset Text
21331
21332 \begin_layout Plain Layout
21333 Befehl
21334 \end_layout
21335
21336 \end_inset
21337 </cell>
21338 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
21339 \begin_inset Text
21340
21341 \begin_layout Plain Layout
21342 Ergebnis
21343 \end_layout
21344
21345 \end_inset
21346 </cell>
21347 </row>
21348 <row>
21349 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21350 \begin_inset Text
21351
21352 \begin_layout Plain Layout
21353
21354 \backslash
21355 neg
21356 \end_layout
21357
21358 \end_inset
21359 </cell>
21360 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21361 \begin_inset Text
21362
21363 \begin_layout Plain Layout
21364 \begin_inset Formula $\neg$
21365 \end_inset
21366
21367
21368 \end_layout
21369
21370 \end_inset
21371 </cell>
21372 </row>
21373 <row>
21374 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21375 \begin_inset Text
21376
21377 \begin_layout Plain Layout
21378
21379 \backslash
21380 Im
21381 \end_layout
21382
21383 \end_inset
21384 </cell>
21385 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21386 \begin_inset Text
21387
21388 \begin_layout Plain Layout
21389 \begin_inset Formula $\Im$
21390 \end_inset
21391
21392
21393 \end_layout
21394
21395 \end_inset
21396 </cell>
21397 </row>
21398 <row>
21399 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21400 \begin_inset Text
21401
21402 \begin_layout Plain Layout
21403
21404 \backslash
21405 Re
21406 \end_layout
21407
21408 \end_inset
21409 </cell>
21410 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21411 \begin_inset Text
21412
21413 \begin_layout Plain Layout
21414 \begin_inset Formula $\Re$
21415 \end_inset
21416
21417
21418 \end_layout
21419
21420 \end_inset
21421 </cell>
21422 </row>
21423 <row>
21424 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21425 \begin_inset Text
21426
21427 \begin_layout Plain Layout
21428
21429 \backslash
21430 aleph
21431 \end_layout
21432
21433 \end_inset
21434 </cell>
21435 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21436 \begin_inset Text
21437
21438 \begin_layout Plain Layout
21439 \begin_inset Formula $\aleph$
21440 \end_inset
21441
21442
21443 \end_layout
21444
21445 \end_inset
21446 </cell>
21447 </row>
21448 <row>
21449 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21450 \begin_inset Text
21451
21452 \begin_layout Plain Layout
21453
21454 \backslash
21455 partial
21456 \end_layout
21457
21458 \end_inset
21459 </cell>
21460 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21461 \begin_inset Text
21462
21463 \begin_layout Plain Layout
21464 \begin_inset Formula $\partial$
21465 \end_inset
21466
21467
21468 \end_layout
21469
21470 \end_inset
21471 </cell>
21472 </row>
21473 <row>
21474 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21475 \begin_inset Text
21476
21477 \begin_layout Plain Layout
21478
21479 \backslash
21480 infty
21481 \end_layout
21482
21483 \end_inset
21484 </cell>
21485 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21486 \begin_inset Text
21487
21488 \begin_layout Plain Layout
21489 \begin_inset Formula $\infty$
21490 \end_inset
21491
21492
21493 \end_layout
21494
21495 \end_inset
21496 </cell>
21497 </row>
21498 <row>
21499 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
21500 \begin_inset Text
21501
21502 \begin_layout Plain Layout
21503
21504 \backslash
21505 wp
21506 \end_layout
21507
21508 \end_inset
21509 </cell>
21510 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
21511 \begin_inset Text
21512
21513 \begin_layout Plain Layout
21514 \begin_inset Formula $\wp$
21515 \end_inset
21516
21517
21518 \end_layout
21519
21520 \end_inset
21521 </cell>
21522 </row>
21523 <row>
21524 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
21525 \begin_inset Text
21526
21527 \begin_layout Plain Layout
21528
21529 \backslash
21530 imath
21531 \end_layout
21532
21533 \end_inset
21534 </cell>
21535 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
21536 \begin_inset Text
21537
21538 \begin_layout Plain Layout
21539 \begin_inset Formula $\imath$
21540 \end_inset
21541
21542
21543 \end_layout
21544
21545 \end_inset
21546 </cell>
21547 </row>
21548 <row>
21549 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
21550 \begin_inset Text
21551
21552 \begin_layout Plain Layout
21553
21554 \backslash
21555 jmath
21556 \end_layout
21557
21558 \end_inset
21559 </cell>
21560 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
21561 \begin_inset Text
21562
21563 \begin_layout Plain Layout
21564 \begin_inset Formula $\jmath$
21565 \end_inset
21566
21567
21568 \end_layout
21569
21570 \end_inset
21571 </cell>
21572 </row>
21573 </lyxtabular>
21574
21575 \end_inset
21576
21577
21578 \begin_inset space \hfill{}
21579 \end_inset
21580
21581
21582 \begin_inset Tabular
21583 <lyxtabular version="3" rows="10" columns="2">
21584 <features tabularvalignment="middle">
21585 <column alignment="center" valignment="top" width="0pt">
21586 <column alignment="center" valignment="top" width="0pt">
21587 <row>
21588 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
21589 \begin_inset Text
21590
21591 \begin_layout Plain Layout
21592 Befehl
21593 \end_layout
21594
21595 \end_inset
21596 </cell>
21597 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
21598 \begin_inset Text
21599
21600 \begin_layout Plain Layout
21601 Ergebnis
21602 \begin_inset Note Note
21603 status collapsed
21604
21605 \begin_layout Plain Layout
21606
21607 \series bold
21608
21609 \backslash
21610 raisebox
21611 \series default
21612  dient nur als Abstandhalter.
21613 \end_layout
21614
21615 \end_inset
21616
21617
21618 \end_layout
21619
21620 \end_inset
21621 </cell>
21622 </row>
21623 <row>
21624 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21625 \begin_inset Text
21626
21627 \begin_layout Plain Layout
21628
21629 \backslash
21630 forall
21631 \end_layout
21632
21633 \end_inset
21634 </cell>
21635 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21636 \begin_inset Text
21637
21638 \begin_layout Plain Layout
21639 \begin_inset Formula $\forall$
21640 \end_inset
21641
21642
21643 \end_layout
21644
21645 \end_inset
21646 </cell>
21647 </row>
21648 <row>
21649 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21650 \begin_inset Text
21651
21652 \begin_layout Plain Layout
21653
21654 \backslash
21655 exists
21656 \end_layout
21657
21658 \end_inset
21659 </cell>
21660 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21661 \begin_inset Text
21662
21663 \begin_layout Plain Layout
21664 \begin_inset Formula $\exists$
21665 \end_inset
21666
21667
21668 \end_layout
21669
21670 \end_inset
21671 </cell>
21672 </row>
21673 <row>
21674 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21675 \begin_inset Text
21676
21677 \begin_layout Plain Layout
21678
21679 \backslash
21680 nexists
21681 \end_layout
21682
21683 \end_inset
21684 </cell>
21685 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21686 \begin_inset Text
21687
21688 \begin_layout Plain Layout
21689 \begin_inset Formula $\nexists$
21690 \end_inset
21691
21692
21693 \end_layout
21694
21695 \end_inset
21696 </cell>
21697 </row>
21698 <row>
21699 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21700 \begin_inset Text
21701
21702 \begin_layout Plain Layout
21703
21704 \backslash
21705 emptyset
21706 \end_layout
21707
21708 \end_inset
21709 </cell>
21710 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21711 \begin_inset Text
21712
21713 \begin_layout Plain Layout
21714 \begin_inset Formula $\emptyset$
21715 \end_inset
21716
21717
21718 \end_layout
21719
21720 \end_inset
21721 </cell>
21722 </row>
21723 <row>
21724 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21725 \begin_inset Text
21726
21727 \begin_layout Plain Layout
21728
21729 \backslash
21730 varnothing
21731 \end_layout
21732
21733 \end_inset
21734 </cell>
21735 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21736 \begin_inset Text
21737
21738 \begin_layout Plain Layout
21739 \begin_inset Formula $\varnothing$
21740 \end_inset
21741
21742
21743 \end_layout
21744
21745 \end_inset
21746 </cell>
21747 </row>
21748 <row>
21749 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21750 \begin_inset Text
21751
21752 \begin_layout Plain Layout
21753
21754 \backslash
21755 dag
21756 \end_layout
21757
21758 \end_inset
21759 </cell>
21760 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21761 \begin_inset Text
21762
21763 \begin_layout Plain Layout
21764 \begin_inset Formula $\dag$
21765 \end_inset
21766
21767
21768 \end_layout
21769
21770 \end_inset
21771 </cell>
21772 </row>
21773 <row>
21774 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
21775 \begin_inset Text
21776
21777 \begin_layout Plain Layout
21778
21779 \backslash
21780 ddag
21781 \end_layout
21782
21783 \end_inset
21784 </cell>
21785 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
21786 \begin_inset Text
21787
21788 \begin_layout Plain Layout
21789 \begin_inset Formula $\ddag$
21790 \end_inset
21791
21792
21793 \end_layout
21794
21795 \end_inset
21796 </cell>
21797 </row>
21798 <row>
21799 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
21800 \begin_inset Text
21801
21802 \begin_layout Plain Layout
21803
21804 \backslash
21805 complement
21806 \end_layout
21807
21808 \end_inset
21809 </cell>
21810 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
21811 \begin_inset Text
21812
21813 \begin_layout Plain Layout
21814 \begin_inset ERT
21815 status collapsed
21816
21817 \begin_layout Plain Layout
21818
21819
21820 \backslash
21821 raisebox{-0.8mm}{
21822 \end_layout
21823
21824 \end_inset
21825
21826
21827 \begin_inset Formula $\complement$
21828 \end_inset
21829
21830
21831 \begin_inset ERT
21832 status collapsed
21833
21834 \begin_layout Plain Layout
21835
21836 }
21837 \end_layout
21838
21839 \end_inset
21840
21841
21842 \end_layout
21843
21844 \end_inset
21845 </cell>
21846 </row>
21847 <row>
21848 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
21849 \begin_inset Text
21850
21851 \begin_layout Plain Layout
21852
21853 \backslash
21854 Bbbk
21855 \end_layout
21856
21857 \end_inset
21858 </cell>
21859 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
21860 \begin_inset Text
21861
21862 \begin_layout Plain Layout
21863 \begin_inset Formula $\Bbbk$
21864 \end_inset
21865
21866
21867 \end_layout
21868
21869 \end_inset
21870 </cell>
21871 </row>
21872 </lyxtabular>
21873
21874 \end_inset
21875
21876
21877 \begin_inset space \hfill{}
21878 \end_inset
21879
21880
21881 \begin_inset Tabular
21882 <lyxtabular version="3" rows="10" columns="2">
21883 <features tabularvalignment="middle">
21884 <column alignment="center" valignment="top" width="0pt">
21885 <column alignment="center" valignment="top" width="0pt">
21886 <row>
21887 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
21888 \begin_inset Text
21889
21890 \begin_layout Plain Layout
21891 Befehl
21892 \end_layout
21893
21894 \end_inset
21895 </cell>
21896 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
21897 \begin_inset Text
21898
21899 \begin_layout Plain Layout
21900 Ergebnis
21901 \end_layout
21902
21903 \end_inset
21904 </cell>
21905 </row>
21906 <row>
21907 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21908 \begin_inset Text
21909
21910 \begin_layout Plain Layout
21911
21912 \backslash
21913 prime
21914 \end_layout
21915
21916 \end_inset
21917 </cell>
21918 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21919 \begin_inset Text
21920
21921 \begin_layout Plain Layout
21922 \begin_inset Formula $\prime$
21923 \end_inset
21924
21925
21926 \end_layout
21927
21928 \end_inset
21929 </cell>
21930 </row>
21931 <row>
21932 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21933 \begin_inset Text
21934
21935 \begin_layout Plain Layout
21936
21937 \backslash
21938 backprime
21939 \end_layout
21940
21941 \end_inset
21942 </cell>
21943 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21944 \begin_inset Text
21945
21946 \begin_layout Plain Layout
21947 \begin_inset Formula $\backprime$
21948 \end_inset
21949
21950
21951 \end_layout
21952
21953 \end_inset
21954 </cell>
21955 </row>
21956 <row>
21957 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21958 \begin_inset Text
21959
21960 \begin_layout Plain Layout
21961
21962 \backslash
21963 mho
21964 \end_layout
21965
21966 \end_inset
21967 </cell>
21968 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21969 \begin_inset Text
21970
21971 \begin_layout Plain Layout
21972 \begin_inset Formula $\mho$
21973 \end_inset
21974
21975
21976 \end_layout
21977
21978 \end_inset
21979 </cell>
21980 </row>
21981 <row>
21982 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21983 \begin_inset Text
21984
21985 \begin_layout Plain Layout
21986
21987 \backslash
21988 triangle
21989 \end_layout
21990
21991 \end_inset
21992 </cell>
21993 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21994 \begin_inset Text
21995
21996 \begin_layout Plain Layout
21997 \begin_inset Formula $\triangle$
21998 \end_inset
21999
22000
22001 \end_layout
22002
22003 \end_inset
22004 </cell>
22005 </row>
22006 <row>
22007 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22008 \begin_inset Text
22009
22010 \begin_layout Plain Layout
22011
22012 \backslash
22013 angle
22014 \end_layout
22015
22016 \end_inset
22017 </cell>
22018 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22019 \begin_inset Text
22020
22021 \begin_layout Plain Layout
22022 \begin_inset Formula $\angle$
22023 \end_inset
22024
22025
22026 \end_layout
22027
22028 \end_inset
22029 </cell>
22030 </row>
22031 <row>
22032 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22033 \begin_inset Text
22034
22035 \begin_layout Plain Layout
22036
22037 \backslash
22038 measuredangle
22039 \end_layout
22040
22041 \end_inset
22042 </cell>
22043 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22044 \begin_inset Text
22045
22046 \begin_layout Plain Layout
22047 \begin_inset Formula $\measuredangle$
22048 \end_inset
22049
22050
22051 \end_layout
22052
22053 \end_inset
22054 </cell>
22055 </row>
22056 <row>
22057 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
22058 \begin_inset Text
22059
22060 \begin_layout Plain Layout
22061
22062 \backslash
22063 sphericalangle
22064 \end_layout
22065
22066 \end_inset
22067 </cell>
22068 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
22069 \begin_inset Text
22070
22071 \begin_layout Plain Layout
22072 \begin_inset Formula $\sphericalangle$
22073 \end_inset
22074
22075
22076 \end_layout
22077
22078 \end_inset
22079 </cell>
22080 </row>
22081 <row>
22082 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
22083 \begin_inset Text
22084
22085 \begin_layout Plain Layout
22086
22087 \backslash
22088 top
22089 \end_layout
22090
22091 \end_inset
22092 </cell>
22093 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
22094 \begin_inset Text
22095
22096 \begin_layout Plain Layout
22097 \begin_inset Formula $\top$
22098 \end_inset
22099
22100
22101 \end_layout
22102
22103 \end_inset
22104 </cell>
22105 </row>
22106 <row>
22107 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
22108 \begin_inset Text
22109
22110 \begin_layout Plain Layout
22111
22112 \backslash
22113 bot
22114 \end_layout
22115
22116 \end_inset
22117 </cell>
22118 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
22119 \begin_inset Text
22120
22121 \begin_layout Plain Layout
22122 \begin_inset Formula $\bot$
22123 \end_inset
22124
22125
22126 \end_layout
22127
22128 \end_inset
22129 </cell>
22130 </row>
22131 </lyxtabular>
22132
22133 \end_inset
22134
22135
22136 \begin_inset space \hfill{}
22137 \end_inset
22138
22139
22140 \end_layout
22141
22142 \begin_layout Subsection
22143 Sonstige Symbole
22144 \begin_inset CommandInset label
22145 LatexCommand label
22146 name "sub:Sonstige-Symbole"
22147
22148 \end_inset
22149
22150
22151 \begin_inset Index idx
22152 status collapsed
22153
22154 \begin_layout Plain Layout
22155 Symbole ! sonstige
22156 \end_layout
22157
22158 \end_inset
22159
22160
22161 \end_layout
22162
22163 \begin_layout Standard
22164 \begin_inset VSpace -7mm
22165 \end_inset
22166
22167
22168 \end_layout
22169
22170 \begin_layout Standard
22171 \noindent
22172 \align center
22173 \begin_inset Tabular
22174 <lyxtabular version="3" rows="10" columns="2">
22175 <features tabularvalignment="middle">
22176 <column alignment="center" valignment="top" width="0pt">
22177 <column alignment="center" valignment="top" width="0pt">
22178 <row>
22179 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
22180 \begin_inset Text
22181
22182 \begin_layout Plain Layout
22183 Befehl
22184 \end_layout
22185
22186 \end_inset
22187 </cell>
22188 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
22189 \begin_inset Text
22190
22191 \begin_layout Plain Layout
22192 Ergebnis
22193 \end_layout
22194
22195 \end_inset
22196 </cell>
22197 </row>
22198 <row>
22199 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22200 \begin_inset Text
22201
22202 \begin_layout Plain Layout
22203
22204 \backslash
22205 flat
22206 \end_layout
22207
22208 \end_inset
22209 </cell>
22210 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22211 \begin_inset Text
22212
22213 \begin_layout Plain Layout
22214 \begin_inset Formula $\flat$
22215 \end_inset
22216
22217
22218 \end_layout
22219
22220 \end_inset
22221 </cell>
22222 </row>
22223 <row>
22224 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22225 \begin_inset Text
22226
22227 \begin_layout Plain Layout
22228
22229 \backslash
22230 natural
22231 \end_layout
22232
22233 \end_inset
22234 </cell>
22235 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22236 \begin_inset Text
22237
22238 \begin_layout Plain Layout
22239 \begin_inset Formula $\natural$
22240 \end_inset
22241
22242
22243 \end_layout
22244
22245 \end_inset
22246 </cell>
22247 </row>
22248 <row>
22249 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22250 \begin_inset Text
22251
22252 \begin_layout Plain Layout
22253
22254 \backslash
22255 sharp
22256 \end_layout
22257
22258 \end_inset
22259 </cell>
22260 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22261 \begin_inset Text
22262
22263 \begin_layout Plain Layout
22264 \begin_inset Formula $\sharp$
22265 \end_inset
22266
22267
22268 \end_layout
22269
22270 \end_inset
22271 </cell>
22272 </row>
22273 <row>
22274 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
22275 \begin_inset Text
22276
22277 \begin_layout Plain Layout
22278
22279 \backslash
22280 surd
22281 \end_layout
22282
22283 \end_inset
22284 </cell>
22285 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
22286 \begin_inset Text
22287
22288 \begin_layout Plain Layout
22289 \begin_inset Formula $\surd$
22290 \end_inset
22291
22292
22293 \end_layout
22294
22295 \end_inset
22296 </cell>
22297 </row>
22298 <row>
22299 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
22300 \begin_inset Text
22301
22302 \begin_layout Plain Layout
22303
22304 \backslash
22305 checkmark
22306 \end_layout
22307
22308 \end_inset
22309 </cell>
22310 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
22311 \begin_inset Text
22312
22313 \begin_layout Plain Layout
22314 \begin_inset Formula $\checkmark$
22315 \end_inset
22316
22317
22318 \end_layout
22319
22320 \end_inset
22321 </cell>
22322 </row>
22323 <row>
22324 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
22325 \begin_inset Text
22326
22327 \begin_layout Plain Layout
22328
22329 \backslash
22330 yen
22331 \end_layout
22332
22333 \end_inset
22334 </cell>
22335 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
22336 \begin_inset Text
22337
22338 \begin_layout Plain Layout
22339 \begin_inset Formula $\yen$
22340 \end_inset
22341
22342
22343 \end_layout
22344
22345 \end_inset
22346 </cell>
22347 </row>
22348 <row>
22349 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
22350 \begin_inset Text
22351
22352 \begin_layout Plain Layout
22353
22354 \backslash
22355 pounds
22356 \end_layout
22357
22358 \end_inset
22359 </cell>
22360 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
22361 \begin_inset Text
22362
22363 \begin_layout Plain Layout
22364 \begin_inset Formula $\pounds$
22365 \end_inset
22366
22367
22368 \end_layout
22369
22370 \end_inset
22371 </cell>
22372 </row>
22373 <row>
22374 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
22375 \begin_inset Text
22376
22377 \begin_layout Plain Layout
22378 $
22379 \end_layout
22380
22381 \end_inset
22382 </cell>
22383 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
22384 \begin_inset Text
22385
22386 \begin_layout Plain Layout
22387 \begin_inset Formula $\$$
22388 \end_inset
22389
22390
22391 \end_layout
22392
22393 \end_inset
22394 </cell>
22395 </row>
22396 <row>
22397 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
22398 \begin_inset Text
22399
22400 \begin_layout Plain Layout
22401 §
22402 \end_layout
22403
22404 \end_inset
22405 </cell>
22406 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
22407 \begin_inset Text
22408
22409 \begin_layout Plain Layout
22410 \begin_inset Formula $§$
22411 \end_inset
22412
22413
22414 \end_layout
22415
22416 \end_inset
22417 </cell>
22418 </row>
22419 </lyxtabular>
22420
22421 \end_inset
22422
22423
22424 \begin_inset Tabular
22425 <lyxtabular version="3" rows="10" columns="2">
22426 <features tabularvalignment="middle">
22427 <column alignment="center" valignment="top" width="0">
22428 <column alignment="center" valignment="top" width="0">
22429 <row>
22430 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
22431 \begin_inset Text
22432
22433 \begin_layout Plain Layout
22434 Befehl
22435 \end_layout
22436
22437 \end_inset
22438 </cell>
22439 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
22440 \begin_inset Text
22441
22442 \begin_layout Plain Layout
22443 Ergebnis
22444 \end_layout
22445
22446 \end_inset
22447 </cell>
22448 </row>
22449 <row>
22450 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22451 \begin_inset Text
22452
22453 \begin_layout Plain Layout
22454
22455 \backslash
22456 hbar
22457 \end_layout
22458
22459 \end_inset
22460 </cell>
22461 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22462 \begin_inset Text
22463
22464 \begin_layout Plain Layout
22465 \begin_inset Formula $\hbar$
22466 \end_inset
22467
22468
22469 \end_layout
22470
22471 \end_inset
22472 </cell>
22473 </row>
22474 <row>
22475 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22476 \begin_inset Text
22477
22478 \begin_layout Plain Layout
22479
22480 \backslash
22481 hslash
22482 \end_layout
22483
22484 \end_inset
22485 </cell>
22486 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22487 \begin_inset Text
22488
22489 \begin_layout Plain Layout
22490 \begin_inset Formula $\hslash$
22491 \end_inset
22492
22493
22494 \end_layout
22495
22496 \end_inset
22497 </cell>
22498 </row>
22499 <row>
22500 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22501 \begin_inset Text
22502
22503 \begin_layout Plain Layout
22504
22505 \backslash
22506 clubsuit
22507 \end_layout
22508
22509 \end_inset
22510 </cell>
22511 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22512 \begin_inset Text
22513
22514 \begin_layout Plain Layout
22515 \begin_inset Formula $\clubsuit$
22516 \end_inset
22517
22518
22519 \end_layout
22520
22521 \end_inset
22522 </cell>
22523 </row>
22524 <row>
22525 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22526 \begin_inset Text
22527
22528 \begin_layout Plain Layout
22529
22530 \backslash
22531 spadesuit
22532 \end_layout
22533
22534 \end_inset
22535 </cell>
22536 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22537 \begin_inset Text
22538
22539 \begin_layout Plain Layout
22540 \begin_inset Formula $\spadesuit$
22541 \end_inset
22542
22543
22544 \end_layout
22545
22546 \end_inset
22547 </cell>
22548 </row>
22549 <row>
22550 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22551 \begin_inset Text
22552
22553 \begin_layout Plain Layout
22554
22555 \backslash
22556 bigstar
22557 \end_layout
22558
22559 \end_inset
22560 </cell>
22561 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22562 \begin_inset Text
22563
22564 \begin_layout Plain Layout
22565 \begin_inset Formula $\bigstar$
22566 \end_inset
22567
22568
22569 \end_layout
22570
22571 \end_inset
22572 </cell>
22573 </row>
22574 <row>
22575 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22576 \begin_inset Text
22577
22578 \begin_layout Plain Layout
22579
22580 \backslash
22581 blacklozenge
22582 \end_layout
22583
22584 \end_inset
22585 </cell>
22586 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22587 \begin_inset Text
22588
22589 \begin_layout Plain Layout
22590 \begin_inset Formula $\blacklozenge$
22591 \end_inset
22592
22593
22594 \end_layout
22595
22596 \end_inset
22597 </cell>
22598 </row>
22599 <row>
22600 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22601 \begin_inset Text
22602
22603 \begin_layout Plain Layout
22604
22605 \backslash
22606 blacktriangle
22607 \end_layout
22608
22609 \end_inset
22610 </cell>
22611 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22612 \begin_inset Text
22613
22614 \begin_layout Plain Layout
22615 \begin_inset Formula $\blacktriangle$
22616 \end_inset
22617
22618
22619 \end_layout
22620
22621 \end_inset
22622 </cell>
22623 </row>
22624 <row>
22625 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22626 \begin_inset Text
22627
22628 \begin_layout Plain Layout
22629
22630 \backslash
22631 blacktiangledown
22632 \end_layout
22633
22634 \end_inset
22635 </cell>
22636 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22637 \begin_inset Text
22638
22639 \begin_layout Plain Layout
22640 \begin_inset Formula $\blacktriangledown$
22641 \end_inset
22642
22643
22644 \end_layout
22645
22646 \end_inset
22647 </cell>
22648 </row>
22649 <row>
22650 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
22651 \begin_inset Text
22652
22653 \begin_layout Plain Layout
22654
22655 \backslash
22656 bullet
22657 \end_layout
22658
22659 \end_inset
22660 </cell>
22661 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
22662 \begin_inset Text
22663
22664 \begin_layout Plain Layout
22665 \begin_inset Formula $\bullet$
22666 \end_inset
22667
22668
22669 \end_layout
22670
22671 \end_inset
22672 </cell>
22673 </row>
22674 </lyxtabular>
22675
22676 \end_inset
22677
22678
22679 \begin_inset Tabular
22680 <lyxtabular version="3" rows="10" columns="2">
22681 <features tabularvalignment="middle">
22682 <column alignment="center" valignment="top" width="0pt">
22683 <column alignment="center" valignment="top" width="0pt">
22684 <row>
22685 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
22686 \begin_inset Text
22687
22688 \begin_layout Plain Layout
22689 Befehl
22690 \end_layout
22691
22692 \end_inset
22693 </cell>
22694 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
22695 \begin_inset Text
22696
22697 \begin_layout Plain Layout
22698 Ergebnis
22699 \end_layout
22700
22701 \end_inset
22702 </cell>
22703 </row>
22704 <row>
22705 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22706 \begin_inset Text
22707
22708 \begin_layout Plain Layout
22709
22710 \backslash
22711 diamondsuit
22712 \end_layout
22713
22714 \end_inset
22715 </cell>
22716 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22717 \begin_inset Text
22718
22719 \begin_layout Plain Layout
22720 \begin_inset Formula $\diamondsuit$
22721 \end_inset
22722
22723
22724 \end_layout
22725
22726 \end_inset
22727 </cell>
22728 </row>
22729 <row>
22730 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22731 \begin_inset Text
22732
22733 \begin_layout Plain Layout
22734
22735 \backslash
22736 Diamond
22737 \end_layout
22738
22739 \end_inset
22740 </cell>
22741 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22742 \begin_inset Text
22743
22744 \begin_layout Plain Layout
22745 \begin_inset Formula $\Diamond$
22746 \end_inset
22747
22748
22749 \end_layout
22750
22751 \end_inset
22752 </cell>
22753 </row>
22754 <row>
22755 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22756 \begin_inset Text
22757
22758 \begin_layout Plain Layout
22759
22760 \backslash
22761 heartsuit
22762 \end_layout
22763
22764 \end_inset
22765 </cell>
22766 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22767 \begin_inset Text
22768
22769 \begin_layout Plain Layout
22770 \begin_inset Formula $\heartsuit$
22771 \end_inset
22772
22773
22774 \end_layout
22775
22776 \end_inset
22777 </cell>
22778 </row>
22779 <row>
22780 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
22781 \begin_inset Text
22782
22783 \begin_layout Plain Layout
22784
22785 \backslash
22786 P
22787 \end_layout
22788
22789 \end_inset
22790 </cell>
22791 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
22792 \begin_inset Text
22793
22794 \begin_layout Plain Layout
22795 \begin_inset Formula $\P$
22796 \end_inset
22797
22798
22799 \end_layout
22800
22801 \end_inset
22802 </cell>
22803 </row>
22804 <row>
22805 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
22806 \begin_inset Text
22807
22808 \begin_layout Plain Layout
22809
22810 \backslash
22811 copyright
22812 \end_layout
22813
22814 \end_inset
22815 </cell>
22816 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
22817 \begin_inset Text
22818
22819 \begin_layout Plain Layout
22820 \begin_inset Formula $\copyright$
22821 \end_inset
22822
22823
22824 \end_layout
22825
22826 \end_inset
22827 </cell>
22828 </row>
22829 <row>
22830 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
22831 \begin_inset Text
22832
22833 \begin_layout Plain Layout
22834
22835 \backslash
22836 circledR
22837 \end_layout
22838
22839 \end_inset
22840 </cell>
22841 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
22842 \begin_inset Text
22843
22844 \begin_layout Plain Layout
22845 \begin_inset Formula $\circledR$
22846 \end_inset
22847
22848
22849 \end_layout
22850
22851 \end_inset
22852 </cell>
22853 </row>
22854 <row>
22855 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
22856 \begin_inset Text
22857
22858 \begin_layout Plain Layout
22859
22860 \backslash
22861 maltese
22862 \end_layout
22863
22864 \end_inset
22865 </cell>
22866 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
22867 \begin_inset Text
22868
22869 \begin_layout Plain Layout
22870 \begin_inset Formula $\maltese$
22871 \end_inset
22872
22873
22874 \end_layout
22875
22876 \end_inset
22877 </cell>
22878 </row>
22879 <row>
22880 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
22881 \begin_inset Text
22882
22883 \begin_layout Plain Layout
22884
22885 \backslash
22886 diagup
22887 \end_layout
22888
22889 \end_inset
22890 </cell>
22891 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
22892 \begin_inset Text
22893
22894 \begin_layout Plain Layout
22895 \begin_inset Formula $\diagup$
22896 \end_inset
22897
22898
22899 \end_layout
22900
22901 \end_inset
22902 </cell>
22903 </row>
22904 <row>
22905 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
22906 \begin_inset Text
22907
22908 \begin_layout Plain Layout
22909
22910 \backslash
22911 diagdown
22912 \end_layout
22913
22914 \end_inset
22915 </cell>
22916 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
22917 \begin_inset Text
22918
22919 \begin_layout Plain Layout
22920 \begin_inset Formula $\diagdown$
22921 \end_inset
22922
22923
22924 \end_layout
22925
22926 \end_inset
22927 </cell>
22928 </row>
22929 </lyxtabular>
22930
22931 \end_inset
22932
22933
22934 \end_layout
22935
22936 \begin_layout Standard
22937 \begin_inset VSpace medskip
22938 \end_inset
22939
22940 Weitere Symbole sind in 
22941 \begin_inset CommandInset ref
22942 LatexCommand ref
22943 reference "sub:Sonstige-Sonderzeichen"
22944
22945 \end_inset
22946
22947  aufgelistet.
22948 \end_layout
22949
22950 \begin_layout Standard
22951 Einige Symbole können in unterschiedlicher Größe dargestellt werden, siehe
22952  
22953 \begin_inset CommandInset ref
22954 LatexCommand ref
22955 reference "sub:Schriftgrößen"
22956
22957 \end_inset
22958
22959 .
22960 \end_layout
22961
22962 \begin_layout Subsection
22963 Das Euro-Symbol €
22964 \begin_inset Index idx
22965 status collapsed
22966
22967 \begin_layout Plain Layout
22968 Symbole ! Euro-Symbol
22969 \end_layout
22970
22971 \end_inset
22972
22973
22974 \begin_inset Index idx
22975 status collapsed
22976
22977 \begin_layout Plain Layout
22978
22979 \backslash
22980 @
22981 \begin_inset ERT
22982 status collapsed
22983
22984 \begin_layout Plain Layout
22985
22986
22987 \backslash
22988 officialeuro
22989 \end_layout
22990
22991 \end_inset
22992
22993
22994 \end_layout
22995
22996 \end_inset
22997
22998
22999 \end_layout
23000
23001 \begin_layout Standard
23002 Wenn man in einer Formel das Euro-Symbol verwenden will, muss man das LaTeX-Pake
23003
23004 \series bold
23005 eurosym
23006 \series default
23007
23008 \begin_inset Index idx
23009 status collapsed
23010
23011 \begin_layout Plain Layout
23012 Pakete ! eurosym
23013 \end_layout
23014
23015 \end_inset
23016
23017  installieren und dieses mit der LaTeX-Vorspannzeile
23018 \end_layout
23019
23020 \begin_layout Standard
23021
23022 \series bold
23023
23024 \backslash
23025 usepackage[gennarrow]{eurosym}
23026 \end_layout
23027
23028 \begin_layout Standard
23029 aktivieren.
23030  Das Euro-Symbol kann man nun mit dem Befehl 
23031 \series bold
23032
23033 \backslash
23034 euro
23035 \series default
23036
23037 \begin_inset Index idx
23038 status collapsed
23039
23040 \begin_layout Plain Layout
23041 Befehle ! E ! 
23042 \backslash
23043 euro
23044 \end_layout
23045
23046 \end_inset
23047
23048  aufrufen.
23049 \end_layout
23050
23051 \begin_layout Standard
23052 Das Euro-Symbol kann man direkt über die Tastatur in mathematischen Text
23053  eingeben, ohne 
23054 \series bold
23055 eurosym
23056 \series default
23057  installiert zu haben.
23058  Ist 
23059 \series bold
23060 eurosym
23061 \series default
23062  installiert, kann man 
23063 \series bold
23064
23065 \backslash
23066 euro
23067 \series default
23068  auch im TeX-Modus eingeben.
23069  Das offizielle Währungssymbol erhält man dann über den Befehl 
23070 \series bold
23071
23072 \backslash
23073 officialeuro
23074 \series default
23075
23076 \begin_inset Index idx
23077 status collapsed
23078
23079 \begin_layout Plain Layout
23080 Befehle ! O ! 
23081 \backslash
23082 officialeuro
23083 \end_layout
23084
23085 \end_inset
23086
23087 , der nur im TeX-Modus verfügbar ist.
23088 \end_layout
23089
23090 \begin_layout Standard
23091 \begin_inset ERT
23092 status collapsed
23093
23094 \begin_layout Plain Layout
23095
23096
23097 \backslash
23098 ifeurosym 
23099 \end_layout
23100
23101 \end_inset
23102
23103
23104 \begin_inset Note Note
23105 status open
23106
23107 \begin_layout Plain Layout
23108 Die folgende Tabelle erscheint nur im Ausdruck wenn das LaTeX-Paket 
23109 \series bold
23110 eurosym
23111 \series default
23112  installiert ist:
23113 \end_layout
23114
23115 \end_inset
23116
23117
23118 \end_layout
23119
23120 \begin_layout Standard
23121 Eine Übersicht der verschiedenen Euro-Symbole:
23122 \end_layout
23123
23124 \begin_layout Standard
23125 \align center
23126 \begin_inset Tabular
23127 <lyxtabular version="3" rows="4" columns="3">
23128 <features tabularvalignment="middle">
23129 <column alignment="center" valignment="top" width="0pt">
23130 <column alignment="center" valignment="top" width="0pt">
23131 <column alignment="center" valignment="top" width="0pt">
23132 <row>
23133 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" usebox="none">
23134 \begin_inset Text
23135
23136 \begin_layout Plain Layout
23137
23138 \end_layout
23139
23140 \end_inset
23141 </cell>
23142 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
23143 \begin_inset Text
23144
23145 \begin_layout Plain Layout
23146 Befehl 
23147 \end_layout
23148
23149 \end_inset
23150 </cell>
23151 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
23152 \begin_inset Text
23153
23154 \begin_layout Plain Layout
23155 Ergebnis
23156 \end_layout
23157
23158 \end_inset
23159 </cell>
23160 </row>
23161 <row>
23162 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23163 \begin_inset Text
23164
23165 \begin_layout Plain Layout
23166 Formel
23167 \end_layout
23168
23169 \end_inset
23170 </cell>
23171 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23172 \begin_inset Text
23173
23174 \begin_layout Plain Layout
23175
23176 \backslash
23177 euro
23178 \end_layout
23179
23180 \end_inset
23181 </cell>
23182 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23183 \begin_inset Text
23184
23185 \begin_layout Plain Layout
23186 \begin_inset Formula $\euro$
23187 \end_inset
23188
23189
23190 \end_layout
23191
23192 \end_inset
23193 </cell>
23194 </row>
23195 <row>
23196 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23197 \begin_inset Text
23198
23199 \begin_layout Plain Layout
23200 mathematischer Text
23201 \end_layout
23202
23203 \end_inset
23204 </cell>
23205 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23206 \begin_inset Text
23207
23208 \begin_layout Plain Layout
23209
23210 \end_layout
23211
23212 \end_inset
23213 </cell>
23214 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23215 \begin_inset Text
23216
23217 \begin_layout Plain Layout
23218 \begin_inset Formula $\mbox{€}$
23219 \end_inset
23220
23221
23222 \end_layout
23223
23224 \end_inset
23225 </cell>
23226 </row>
23227 <row>
23228 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
23229 \begin_inset Text
23230
23231 \begin_layout Plain Layout
23232 TeX-Modus
23233 \end_layout
23234
23235 \end_inset
23236 </cell>
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
23242 \backslash
23243 officialeuro
23244 \end_layout
23245
23246 \end_inset
23247 </cell>
23248 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
23249 \begin_inset Text
23250
23251 \begin_layout Plain Layout
23252 \begin_inset ERT
23253 status collapsed
23254
23255 \begin_layout Plain Layout
23256
23257
23258 \backslash
23259 officialeuro
23260 \end_layout
23261
23262 \end_inset
23263
23264
23265 \end_layout
23266
23267 \end_inset
23268 </cell>
23269 </row>
23270 </lyxtabular>
23271
23272 \end_inset
23273
23274
23275 \end_layout
23276
23277 \begin_layout Standard
23278 \begin_inset ERT
23279 status collapsed
23280
23281 \begin_layout Plain Layout
23282
23283
23284 \backslash
23285 else 
23286 \end_layout
23287
23288 \end_inset
23289
23290
23291 \begin_inset Note Note
23292 status open
23293
23294 \begin_layout Plain Layout
23295 Folgendes erscheint im Ausdruck wenn das LaTeX-Paket 
23296 \series bold
23297 eurosym
23298 \series default
23299  nicht installiert ist:
23300 \end_layout
23301
23302 \end_inset
23303
23304
23305 \end_layout
23306
23307 \begin_layout Standard
23308 Das LaTeX-Paket 
23309 \series bold
23310 eurosym 
23311 \series default
23312 muss installiert sein, um den Rest dieses Abschnitts im Ausdruck zu sehen.
23313 \end_layout
23314
23315 \begin_layout Standard
23316 \begin_inset ERT
23317 status collapsed
23318
23319 \begin_layout Plain Layout
23320
23321
23322 \backslash
23323 fi 
23324 \end_layout
23325
23326 \end_inset
23327
23328
23329 \end_layout
23330
23331 \begin_layout Section
23332 Relationen
23333 \begin_inset CommandInset label
23334 LatexCommand label
23335 name "sec:Relationen"
23336
23337 \end_inset
23338
23339
23340 \begin_inset Index idx
23341 status collapsed
23342
23343 \begin_layout Plain Layout
23344 Relationen
23345 \end_layout
23346
23347 \end_inset
23348
23349
23350 \begin_inset Index idx
23351 status collapsed
23352
23353 \begin_layout Plain Layout
23354 Vergleiche|see
23355 \begin_inset ERT
23356 status collapsed
23357
23358 \begin_layout Plain Layout
23359
23360 {
23361 \end_layout
23362
23363 \end_inset
23364
23365 Relationen
23366 \begin_inset ERT
23367 status collapsed
23368
23369 \begin_layout Plain Layout
23370
23371 }
23372 \end_layout
23373
23374 \end_inset
23375
23376
23377 \end_layout
23378
23379 \end_inset
23380
23381
23382 \end_layout
23383
23384 \begin_layout Standard
23385 Alle griechischen Buchstaben können auch über den Mathe-Werkzeugleistenknopf
23386  
23387 \begin_inset Graphics
23388         filename ../../images/math/leq.png
23389         scale 85
23390
23391 \end_inset
23392
23393  eingefügt werden.
23394 \end_layout
23395
23396 \begin_layout Standard
23397 \begin_inset space \hfill{}
23398 \end_inset
23399
23400
23401 \begin_inset Tabular
23402 <lyxtabular version="3" rows="17" columns="2">
23403 <features tabularvalignment="middle">
23404 <column alignment="center" valignment="top" width="0pt">
23405 <column alignment="center" valignment="top" width="0pt">
23406 <row>
23407 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
23408 \begin_inset Text
23409
23410 \begin_layout Plain Layout
23411 Befehl
23412 \end_layout
23413
23414 \end_inset
23415 </cell>
23416 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
23417 \begin_inset Text
23418
23419 \begin_layout Plain Layout
23420 Ergebnis
23421 \end_layout
23422
23423 \end_inset
23424 </cell>
23425 </row>
23426 <row>
23427 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23428 \begin_inset Text
23429
23430 \begin_layout Plain Layout
23431 <
23432 \end_layout
23433
23434 \end_inset
23435 </cell>
23436 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23437 \begin_inset Text
23438
23439 \begin_layout Plain Layout
23440 \begin_inset Formula $<$
23441 \end_inset
23442
23443
23444 \end_layout
23445
23446 \end_inset
23447 </cell>
23448 </row>
23449 <row>
23450 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23451 \begin_inset Text
23452
23453 \begin_layout Plain Layout
23454
23455 \backslash
23456 le
23457 \end_layout
23458
23459 \end_inset
23460 </cell>
23461 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23462 \begin_inset Text
23463
23464 \begin_layout Plain Layout
23465 \begin_inset Formula $\le$
23466 \end_inset
23467
23468
23469 \end_layout
23470
23471 \end_inset
23472 </cell>
23473 </row>
23474 <row>
23475 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23476 \begin_inset Text
23477
23478 \begin_layout Plain Layout
23479
23480 \backslash
23481 ll
23482 \end_layout
23483
23484 \end_inset
23485 </cell>
23486 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23487 \begin_inset Text
23488
23489 \begin_layout Plain Layout
23490 \begin_inset Formula $\ll$
23491 \end_inset
23492
23493
23494 \end_layout
23495
23496 \end_inset
23497 </cell>
23498 </row>
23499 <row>
23500 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23501 \begin_inset Text
23502
23503 \begin_layout Plain Layout
23504
23505 \backslash
23506 prec
23507 \end_layout
23508
23509 \end_inset
23510 </cell>
23511 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23512 \begin_inset Text
23513
23514 \begin_layout Plain Layout
23515 \begin_inset Formula $\prec$
23516 \end_inset
23517
23518
23519 \end_layout
23520
23521 \end_inset
23522 </cell>
23523 </row>
23524 <row>
23525 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23526 \begin_inset Text
23527
23528 \begin_layout Plain Layout
23529
23530 \backslash
23531 preceq
23532 \end_layout
23533
23534 \end_inset
23535 </cell>
23536 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23537 \begin_inset Text
23538
23539 \begin_layout Plain Layout
23540 \begin_inset Formula $\preceq$
23541 \end_inset
23542
23543
23544 \end_layout
23545
23546 \end_inset
23547 </cell>
23548 </row>
23549 <row>
23550 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23551 \begin_inset Text
23552
23553 \begin_layout Plain Layout
23554
23555 \backslash
23556 subset
23557 \end_layout
23558
23559 \end_inset
23560 </cell>
23561 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23562 \begin_inset Text
23563
23564 \begin_layout Plain Layout
23565 \begin_inset Formula $\subset$
23566 \end_inset
23567
23568
23569 \end_layout
23570
23571 \end_inset
23572 </cell>
23573 </row>
23574 <row>
23575 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23576 \begin_inset Text
23577
23578 \begin_layout Plain Layout
23579
23580 \backslash
23581 subseteq
23582 \end_layout
23583
23584 \end_inset
23585 </cell>
23586 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23587 \begin_inset Text
23588
23589 \begin_layout Plain Layout
23590 \begin_inset Formula $\subseteq$
23591 \end_inset
23592
23593
23594 \end_layout
23595
23596 \end_inset
23597 </cell>
23598 </row>
23599 <row>
23600 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23601 \begin_inset Text
23602
23603 \begin_layout Plain Layout
23604
23605 \backslash
23606 sqsubseteq
23607 \end_layout
23608
23609 \end_inset
23610 </cell>
23611 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23612 \begin_inset Text
23613
23614 \begin_layout Plain Layout
23615 \begin_inset Formula $\sqsubseteq$
23616 \end_inset
23617
23618
23619 \end_layout
23620
23621 \end_inset
23622 </cell>
23623 </row>
23624 <row>
23625 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23626 \begin_inset Text
23627
23628 \begin_layout Plain Layout
23629
23630 \backslash
23631 in
23632 \end_layout
23633
23634 \end_inset
23635 </cell>
23636 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23637 \begin_inset Text
23638
23639 \begin_layout Plain Layout
23640 \begin_inset Formula $\in$
23641 \end_inset
23642
23643
23644 \end_layout
23645
23646 \end_inset
23647 </cell>
23648 </row>
23649 <row>
23650 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23651 \begin_inset Text
23652
23653 \begin_layout Plain Layout
23654
23655 \backslash
23656 vdash
23657 \end_layout
23658
23659 \end_inset
23660 </cell>
23661 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23662 \begin_inset Text
23663
23664 \begin_layout Plain Layout
23665 \begin_inset Formula $\vdash$
23666 \end_inset
23667
23668
23669 \end_layout
23670
23671 \end_inset
23672 </cell>
23673 </row>
23674 <row>
23675 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23676 \begin_inset Text
23677
23678 \begin_layout Plain Layout
23679
23680 \backslash
23681 smile
23682 \end_layout
23683
23684 \end_inset
23685 </cell>
23686 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23687 \begin_inset Text
23688
23689 \begin_layout Plain Layout
23690 \begin_inset Formula $\smile$
23691 \end_inset
23692
23693
23694 \end_layout
23695
23696 \end_inset
23697 </cell>
23698 </row>
23699 <row>
23700 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23701 \begin_inset Text
23702
23703 \begin_layout Plain Layout
23704
23705 \backslash
23706 lhd
23707 \end_layout
23708
23709 \end_inset
23710 </cell>
23711 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23712 \begin_inset Text
23713
23714 \begin_layout Plain Layout
23715 \begin_inset Formula $\lhd$
23716 \end_inset
23717
23718
23719 \end_layout
23720
23721 \end_inset
23722 </cell>
23723 </row>
23724 <row>
23725 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23726 \begin_inset Text
23727
23728 \begin_layout Plain Layout
23729
23730 \backslash
23731 unlhd
23732 \end_layout
23733
23734 \end_inset
23735 </cell>
23736 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23737 \begin_inset Text
23738
23739 \begin_layout Plain Layout
23740 \begin_inset Formula $\unlhd$
23741 \end_inset
23742
23743
23744 \end_layout
23745
23746 \end_inset
23747 </cell>
23748 </row>
23749 <row>
23750 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23751 \begin_inset Text
23752
23753 \begin_layout Plain Layout
23754
23755 \backslash
23756 gtrless
23757 \end_layout
23758
23759 \end_inset
23760 </cell>
23761 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23762 \begin_inset Text
23763
23764 \begin_layout Plain Layout
23765 \begin_inset Formula $\gtrless$
23766 \end_inset
23767
23768
23769 \end_layout
23770
23771 \end_inset
23772 </cell>
23773 </row>
23774 <row>
23775 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23776 \begin_inset Text
23777
23778 \begin_layout Plain Layout
23779
23780 \backslash
23781 mid
23782 \end_layout
23783
23784 \end_inset
23785 </cell>
23786 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23787 \begin_inset Text
23788
23789 \begin_layout Plain Layout
23790 \begin_inset Formula $\mid$
23791 \end_inset
23792
23793
23794 \end_layout
23795
23796 \end_inset
23797 </cell>
23798 </row>
23799 <row>
23800 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
23801 \begin_inset Text
23802
23803 \begin_layout Plain Layout
23804
23805 \backslash
23806 nmid
23807 \end_layout
23808
23809 \end_inset
23810 </cell>
23811 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
23812 \begin_inset Text
23813
23814 \begin_layout Plain Layout
23815 \begin_inset Formula $\nmid$
23816 \end_inset
23817
23818
23819 \end_layout
23820
23821 \end_inset
23822 </cell>
23823 </row>
23824 </lyxtabular>
23825
23826 \end_inset
23827
23828
23829 \begin_inset space \hfill{}
23830 \end_inset
23831
23832
23833 \begin_inset Tabular
23834 <lyxtabular version="3" rows="17" columns="2">
23835 <features tabularvalignment="middle">
23836 <column alignment="center" valignment="top" width="0pt">
23837 <column alignment="center" valignment="top" width="0pt">
23838 <row>
23839 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
23840 \begin_inset Text
23841
23842 \begin_layout Plain Layout
23843 Befehl
23844 \end_layout
23845
23846 \end_inset
23847 </cell>
23848 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
23849 \begin_inset Text
23850
23851 \begin_layout Plain Layout
23852 Ergebnis
23853 \end_layout
23854
23855 \end_inset
23856 </cell>
23857 </row>
23858 <row>
23859 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23860 \begin_inset Text
23861
23862 \begin_layout Plain Layout
23863 =
23864 \end_layout
23865
23866 \end_inset
23867 </cell>
23868 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23869 \begin_inset Text
23870
23871 \begin_layout Plain Layout
23872 \begin_inset Formula $=$
23873 \end_inset
23874
23875
23876 \end_layout
23877
23878 \end_inset
23879 </cell>
23880 </row>
23881 <row>
23882 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23883 \begin_inset Text
23884
23885 \begin_layout Plain Layout
23886
23887 \backslash
23888 not=
23889 \end_layout
23890
23891 \end_inset
23892 </cell>
23893 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23894 \begin_inset Text
23895
23896 \begin_layout Plain Layout
23897 \begin_inset Formula $\not=$
23898 \end_inset
23899
23900
23901 \end_layout
23902
23903 \end_inset
23904 </cell>
23905 </row>
23906 <row>
23907 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23908 \begin_inset Text
23909
23910 \begin_layout Plain Layout
23911
23912 \backslash
23913 equiv
23914 \end_layout
23915
23916 \end_inset
23917 </cell>
23918 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23919 \begin_inset Text
23920
23921 \begin_layout Plain Layout
23922 \begin_inset Formula $\equiv$
23923 \end_inset
23924
23925
23926 \end_layout
23927
23928 \end_inset
23929 </cell>
23930 </row>
23931 <row>
23932 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23933 \begin_inset Text
23934
23935 \begin_layout Plain Layout
23936
23937 \backslash
23938 sim
23939 \end_layout
23940
23941 \end_inset
23942 </cell>
23943 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23944 \begin_inset Text
23945
23946 \begin_layout Plain Layout
23947 \begin_inset Formula $\sim$
23948 \end_inset
23949
23950
23951 \end_layout
23952
23953 \end_inset
23954 </cell>
23955 </row>
23956 <row>
23957 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23958 \begin_inset Text
23959
23960 \begin_layout Plain Layout
23961
23962 \backslash
23963 simeq
23964 \end_layout
23965
23966 \end_inset
23967 </cell>
23968 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23969 \begin_inset Text
23970
23971 \begin_layout Plain Layout
23972 \begin_inset Formula $\simeq$
23973 \end_inset
23974
23975
23976 \end_layout
23977
23978 \end_inset
23979 </cell>
23980 </row>
23981 <row>
23982 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23983 \begin_inset Text
23984
23985 \begin_layout Plain Layout
23986
23987 \backslash
23988 approx
23989 \end_layout
23990
23991 \end_inset
23992 </cell>
23993 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23994 \begin_inset Text
23995
23996 \begin_layout Plain Layout
23997 \begin_inset Formula $\approx$
23998 \end_inset
23999
24000
24001 \end_layout
24002
24003 \end_inset
24004 </cell>
24005 </row>
24006 <row>
24007 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24008 \begin_inset Text
24009
24010 \begin_layout Plain Layout
24011
24012 \backslash
24013 cong
24014 \end_layout
24015
24016 \end_inset
24017 </cell>
24018 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24019 \begin_inset Text
24020
24021 \begin_layout Plain Layout
24022 \begin_inset Formula $\cong$
24023 \end_inset
24024
24025
24026 \end_layout
24027
24028 \end_inset
24029 </cell>
24030 </row>
24031 <row>
24032 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24033 \begin_inset Text
24034
24035 \begin_layout Plain Layout
24036
24037 \backslash
24038 bowtie
24039 \end_layout
24040
24041 \end_inset
24042 </cell>
24043 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24044 \begin_inset Text
24045
24046 \begin_layout Plain Layout
24047 \begin_inset Formula $\bowtie$
24048 \end_inset
24049
24050
24051 \end_layout
24052
24053 \end_inset
24054 </cell>
24055 </row>
24056 <row>
24057 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24058 \begin_inset Text
24059
24060 \begin_layout Plain Layout
24061
24062 \backslash
24063 notin
24064 \end_layout
24065
24066 \end_inset
24067 </cell>
24068 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24069 \begin_inset Text
24070
24071 \begin_layout Plain Layout
24072 \begin_inset Formula $\notin$
24073 \end_inset
24074
24075
24076 \end_layout
24077
24078 \end_inset
24079 </cell>
24080 </row>
24081 <row>
24082 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24083 \begin_inset Text
24084
24085 \begin_layout Plain Layout
24086
24087 \backslash
24088 perp
24089 \end_layout
24090
24091 \end_inset
24092 </cell>
24093 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24094 \begin_inset Text
24095
24096 \begin_layout Plain Layout
24097 \begin_inset Formula $\perp$
24098 \end_inset
24099
24100
24101 \end_layout
24102
24103 \end_inset
24104 </cell>
24105 </row>
24106 <row>
24107 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24108 \begin_inset Text
24109
24110 \begin_layout Plain Layout
24111
24112 \backslash
24113 propto
24114 \end_layout
24115
24116 \end_inset
24117 </cell>
24118 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24119 \begin_inset Text
24120
24121 \begin_layout Plain Layout
24122 \begin_inset Formula $\propto$
24123 \end_inset
24124
24125
24126 \end_layout
24127
24128 \end_inset
24129 </cell>
24130 </row>
24131 <row>
24132 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24133 \begin_inset Text
24134
24135 \begin_layout Plain Layout
24136
24137 \backslash
24138 asymp
24139 \end_layout
24140
24141 \end_inset
24142 </cell>
24143 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24144 \begin_inset Text
24145
24146 \begin_layout Plain Layout
24147 \begin_inset Formula $\asymp$
24148 \end_inset
24149
24150
24151 \end_layout
24152
24153 \end_inset
24154 </cell>
24155 </row>
24156 <row>
24157 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24158 \begin_inset Text
24159
24160 \begin_layout Plain Layout
24161
24162 \backslash
24163 doteq
24164 \end_layout
24165
24166 \end_inset
24167 </cell>
24168 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24169 \begin_inset Text
24170
24171 \begin_layout Plain Layout
24172 \begin_inset Formula $\doteq$
24173 \end_inset
24174
24175
24176 \end_layout
24177
24178 \end_inset
24179 </cell>
24180 </row>
24181 <row>
24182 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24183 \begin_inset Text
24184
24185 \begin_layout Plain Layout
24186
24187 \backslash
24188 circeq
24189 \end_layout
24190
24191 \end_inset
24192 </cell>
24193 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24194 \begin_inset Text
24195
24196 \begin_layout Plain Layout
24197 \begin_inset Formula $\circeq$
24198 \end_inset
24199
24200
24201 \end_layout
24202
24203 \end_inset
24204 </cell>
24205 </row>
24206 <row>
24207 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24208 \begin_inset Text
24209
24210 \begin_layout Plain Layout
24211
24212 \backslash
24213 models
24214 \end_layout
24215
24216 \end_inset
24217 </cell>
24218 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24219 \begin_inset Text
24220
24221 \begin_layout Plain Layout
24222 \begin_inset Formula $\models$
24223 \end_inset
24224
24225
24226 \end_layout
24227
24228 \end_inset
24229 </cell>
24230 </row>
24231 <row>
24232 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24233 \begin_inset Text
24234
24235 \begin_layout Plain Layout
24236
24237 \backslash
24238 widehat=
24239 \end_layout
24240
24241 \end_inset
24242 </cell>
24243 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
24244 \begin_inset Text
24245
24246 \begin_layout Plain Layout
24247 \begin_inset Formula $\widehat{=}$
24248 \end_inset
24249
24250
24251 \end_layout
24252
24253 \end_inset
24254 </cell>
24255 </row>
24256 </lyxtabular>
24257
24258 \end_inset
24259
24260
24261 \begin_inset space \hfill{}
24262 \end_inset
24263
24264
24265 \begin_inset Tabular
24266 <lyxtabular version="3" rows="17" columns="2">
24267 <features tabularvalignment="middle">
24268 <column alignment="center" valignment="top" width="0pt">
24269 <column alignment="center" valignment="top" width="0pt">
24270 <row>
24271 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24272 \begin_inset Text
24273
24274 \begin_layout Plain Layout
24275 Befehl
24276 \end_layout
24277
24278 \end_inset
24279 </cell>
24280 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
24281 \begin_inset Text
24282
24283 \begin_layout Plain Layout
24284 Ergebnis
24285 \end_layout
24286
24287 \end_inset
24288 </cell>
24289 </row>
24290 <row>
24291 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24292 \begin_inset Text
24293
24294 \begin_layout Plain Layout
24295 >
24296 \end_layout
24297
24298 \end_inset
24299 </cell>
24300 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24301 \begin_inset Text
24302
24303 \begin_layout Plain Layout
24304 \begin_inset Formula $>$
24305 \end_inset
24306
24307
24308 \end_layout
24309
24310 \end_inset
24311 </cell>
24312 </row>
24313 <row>
24314 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24315 \begin_inset Text
24316
24317 \begin_layout Plain Layout
24318
24319 \backslash
24320 ge
24321 \end_layout
24322
24323 \end_inset
24324 </cell>
24325 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24326 \begin_inset Text
24327
24328 \begin_layout Plain Layout
24329 \begin_inset Formula $\ge$
24330 \end_inset
24331
24332
24333 \end_layout
24334
24335 \end_inset
24336 </cell>
24337 </row>
24338 <row>
24339 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24340 \begin_inset Text
24341
24342 \begin_layout Plain Layout
24343
24344 \backslash
24345 gg
24346 \end_layout
24347
24348 \end_inset
24349 </cell>
24350 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24351 \begin_inset Text
24352
24353 \begin_layout Plain Layout
24354 \begin_inset Formula $\gg$
24355 \end_inset
24356
24357
24358 \end_layout
24359
24360 \end_inset
24361 </cell>
24362 </row>
24363 <row>
24364 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24365 \begin_inset Text
24366
24367 \begin_layout Plain Layout
24368
24369 \backslash
24370 succ
24371 \end_layout
24372
24373 \end_inset
24374 </cell>
24375 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24376 \begin_inset Text
24377
24378 \begin_layout Plain Layout
24379 \begin_inset Formula $\succ$
24380 \end_inset
24381
24382
24383 \end_layout
24384
24385 \end_inset
24386 </cell>
24387 </row>
24388 <row>
24389 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24390 \begin_inset Text
24391
24392 \begin_layout Plain Layout
24393
24394 \backslash
24395 succeq
24396 \end_layout
24397
24398 \end_inset
24399 </cell>
24400 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24401 \begin_inset Text
24402
24403 \begin_layout Plain Layout
24404 \begin_inset Formula $\succeq$
24405 \end_inset
24406
24407
24408 \end_layout
24409
24410 \end_inset
24411 </cell>
24412 </row>
24413 <row>
24414 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24415 \begin_inset Text
24416
24417 \begin_layout Plain Layout
24418
24419 \backslash
24420 supset
24421 \end_layout
24422
24423 \end_inset
24424 </cell>
24425 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24426 \begin_inset Text
24427
24428 \begin_layout Plain Layout
24429 \begin_inset Formula $\supset$
24430 \end_inset
24431
24432
24433 \end_layout
24434
24435 \end_inset
24436 </cell>
24437 </row>
24438 <row>
24439 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24440 \begin_inset Text
24441
24442 \begin_layout Plain Layout
24443
24444 \backslash
24445 supseteq
24446 \end_layout
24447
24448 \end_inset
24449 </cell>
24450 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24451 \begin_inset Text
24452
24453 \begin_layout Plain Layout
24454 \begin_inset Formula $\supseteq$
24455 \end_inset
24456
24457
24458 \end_layout
24459
24460 \end_inset
24461 </cell>
24462 </row>
24463 <row>
24464 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24465 \begin_inset Text
24466
24467 \begin_layout Plain Layout
24468
24469 \backslash
24470 sqsupseteq
24471 \end_layout
24472
24473 \end_inset
24474 </cell>
24475 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24476 \begin_inset Text
24477
24478 \begin_layout Plain Layout
24479 \begin_inset Formula $\sqsupseteq$
24480 \end_inset
24481
24482
24483 \end_layout
24484
24485 \end_inset
24486 </cell>
24487 </row>
24488 <row>
24489 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24490 \begin_inset Text
24491
24492 \begin_layout Plain Layout
24493
24494 \backslash
24495 ni
24496 \end_layout
24497
24498 \end_inset
24499 </cell>
24500 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24501 \begin_inset Text
24502
24503 \begin_layout Plain Layout
24504 \begin_inset Formula $\ni$
24505 \end_inset
24506
24507
24508 \end_layout
24509
24510 \end_inset
24511 </cell>
24512 </row>
24513 <row>
24514 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24515 \begin_inset Text
24516
24517 \begin_layout Plain Layout
24518
24519 \backslash
24520 dashv
24521 \end_layout
24522
24523 \end_inset
24524 </cell>
24525 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24526 \begin_inset Text
24527
24528 \begin_layout Plain Layout
24529 \begin_inset Formula $\dashv$
24530 \end_inset
24531
24532
24533 \end_layout
24534
24535 \end_inset
24536 </cell>
24537 </row>
24538 <row>
24539 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24540 \begin_inset Text
24541
24542 \begin_layout Plain Layout
24543
24544 \backslash
24545 frown
24546 \end_layout
24547
24548 \end_inset
24549 </cell>
24550 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24551 \begin_inset Text
24552
24553 \begin_layout Plain Layout
24554 \begin_inset Formula $\frown$
24555 \end_inset
24556
24557
24558 \end_layout
24559
24560 \end_inset
24561 </cell>
24562 </row>
24563 <row>
24564 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24565 \begin_inset Text
24566
24567 \begin_layout Plain Layout
24568
24569 \backslash
24570 rhd
24571 \end_layout
24572
24573 \end_inset
24574 </cell>
24575 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24576 \begin_inset Text
24577
24578 \begin_layout Plain Layout
24579 \begin_inset Formula $\rhd$
24580 \end_inset
24581
24582
24583 \end_layout
24584
24585 \end_inset
24586 </cell>
24587 </row>
24588 <row>
24589 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24590 \begin_inset Text
24591
24592 \begin_layout Plain Layout
24593
24594 \backslash
24595 unrhd
24596 \end_layout
24597
24598 \end_inset
24599 </cell>
24600 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24601 \begin_inset Text
24602
24603 \begin_layout Plain Layout
24604 \begin_inset Formula $\unrhd$
24605 \end_inset
24606
24607
24608 \end_layout
24609
24610 \end_inset
24611 </cell>
24612 </row>
24613 <row>
24614 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24615 \begin_inset Text
24616
24617 \begin_layout Plain Layout
24618
24619 \backslash
24620 lessgtr
24621 \end_layout
24622
24623 \end_inset
24624 </cell>
24625 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24626 \begin_inset Text
24627
24628 \begin_layout Plain Layout
24629 \begin_inset Formula $\lessgtr$
24630 \end_inset
24631
24632
24633 \end_layout
24634
24635 \end_inset
24636 </cell>
24637 </row>
24638 <row>
24639 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24640 \begin_inset Text
24641
24642 \begin_layout Plain Layout
24643
24644 \backslash
24645 parallel
24646 \end_layout
24647
24648 \end_inset
24649 </cell>
24650 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24651 \begin_inset Text
24652
24653 \begin_layout Plain Layout
24654 \begin_inset Formula $\parallel$
24655 \end_inset
24656
24657
24658 \end_layout
24659
24660 \end_inset
24661 </cell>
24662 </row>
24663 <row>
24664 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24665 \begin_inset Text
24666
24667 \begin_layout Plain Layout
24668
24669 \backslash
24670 nparallel
24671 \end_layout
24672
24673 \end_inset
24674 </cell>
24675 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
24676 \begin_inset Text
24677
24678 \begin_layout Plain Layout
24679 \begin_inset Formula $\nparallel$
24680 \end_inset
24681
24682
24683 \end_layout
24684
24685 \end_inset
24686 </cell>
24687 </row>
24688 </lyxtabular>
24689
24690 \end_inset
24691
24692
24693 \begin_inset space \hfill{}
24694 \end_inset
24695
24696
24697 \end_layout
24698
24699 \begin_layout Standard
24700 \begin_inset VSpace medskip
24701 \end_inset
24702
24703 Die Zeichen 
24704 \series bold
24705
24706 \backslash
24707 lhd
24708 \series default
24709  bzw.
24710 \begin_inset space \space{}
24711 \end_inset
24712
24713
24714 \series bold
24715
24716 \backslash
24717 rhd
24718 \series default
24719  sind größer als die gleich aussehenden Operatoren
24720 \begin_inset Newline linebreak
24721 \end_inset
24722
24723
24724 \series bold
24725
24726 \backslash
24727 triangleleft
24728 \series default
24729  bzw.
24730 \begin_inset space \space{}
24731 \end_inset
24732
24733
24734 \series bold
24735
24736 \backslash
24737 triangleright
24738 \series default
24739 .
24740 \end_layout
24741
24742 \begin_layout Standard
24743 Relationen sind im Gegensatz zu Symbolen immer von Leerraum umgeben.
24744 \end_layout
24745
24746 \begin_layout Standard
24747 Relationen mit Beschriftungen können mit Hilfe des Befehls 
24748 \series bold
24749
24750 \backslash
24751 stackrel
24752 \series default
24753
24754 \begin_inset Index idx
24755 status collapsed
24756
24757 \begin_layout Plain Layout
24758 Befehle ! S ! 
24759 \backslash
24760 stackrel
24761 \end_layout
24762
24763 \end_inset
24764
24765  erstellt werden:
24766 \end_layout
24767
24768 \begin_layout Standard
24769 \align center
24770 \begin_inset Tabular
24771 <lyxtabular version="3" rows="2" columns="2">
24772 <features tabularvalignment="middle">
24773 <column alignment="center" valignment="top" width="0">
24774 <column alignment="center" valignment="top" width="0">
24775 <row>
24776 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24777 \begin_inset Text
24778
24779 \begin_layout Plain Layout
24780 Befehl
24781 \end_layout
24782
24783 \end_inset
24784 </cell>
24785 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
24786 \begin_inset Text
24787
24788 \begin_layout Plain Layout
24789 Ergebnis
24790 \begin_inset Note Note
24791 status collapsed
24792
24793 \begin_layout Plain Layout
24794
24795 \series bold
24796
24797 \backslash
24798 raisebox
24799 \series default
24800  dient nur als Abstandhalter.
24801 \end_layout
24802
24803 \end_inset
24804
24805
24806 \end_layout
24807
24808 \end_inset
24809 </cell>
24810 </row>
24811 <row>
24812 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24813 \begin_inset Text
24814
24815 \begin_layout Plain Layout
24816 A(r)
24817 \backslash
24818 stackrel
24819 \begin_inset ERT
24820 status collapsed
24821
24822 \begin_layout Plain Layout
24823
24824
24825 \backslash
24826 leer 
24827 \end_layout
24828
24829 \end_inset
24830
24831 r
24832 \backslash
24833 to
24834 \backslash
24835 infty
24836 \begin_inset ERT
24837 status collapsed
24838
24839 \begin_layout Plain Layout
24840
24841
24842 \backslash
24843 leer 
24844 \end_layout
24845
24846 \end_inset
24847
24848
24849 \begin_inset Formula $\downarrow$
24850 \end_inset
24851
24852
24853 \backslash
24854 approx
24855 \begin_inset ERT
24856 status collapsed
24857
24858 \begin_layout Plain Layout
24859
24860
24861 \backslash
24862 leer 
24863 \end_layout
24864
24865 \end_inset
24866
24867
24868 \begin_inset ERT
24869 status collapsed
24870
24871 \begin_layout Plain Layout
24872
24873
24874 \backslash
24875 leer 
24876 \end_layout
24877
24878 \end_inset
24879
24880 B
24881 \end_layout
24882
24883 \end_inset
24884 </cell>
24885 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
24886 \begin_inset Text
24887
24888 \begin_layout Plain Layout
24889 \begin_inset Formula $\raisebox{5mm}{}A(r)\stackrel{r\to\infty}{\approx}B$
24890 \end_inset
24891
24892
24893 \end_layout
24894
24895 \end_inset
24896 </cell>
24897 </row>
24898 </lyxtabular>
24899
24900 \end_inset
24901
24902
24903 \end_layout
24904
24905 \begin_layout Section
24906 Funktionen
24907 \end_layout
24908
24909 \begin_layout Subsection
24910 Vordefinierte Funktionen
24911 \begin_inset CommandInset label
24912 LatexCommand label
24913 name "sub:Vordefinierte-Funktionen"
24914
24915 \end_inset
24916
24917
24918 \begin_inset Index idx
24919 status collapsed
24920
24921 \begin_layout Plain Layout
24922 Funktionen ! vordefinierte
24923 \end_layout
24924
24925 \end_inset
24926
24927
24928 \end_layout
24929
24930 \begin_layout Standard
24931 Allgemein werden in mathematischen Ausdrücken Variablen 
24932 \shape italic
24933 kursiv
24934 \shape default
24935  gesetzt, Funktionsnamen hingegen nicht, denn 
24936 \begin_inset Formula $sin$
24937 \end_inset
24938
24939  könnte als 
24940 \begin_inset Formula $s\cdot i\cdot n$
24941 \end_inset
24942
24943  missverstanden werden.
24944  Aus diesem Grund gibt es vordefinierte Funktionen, die zusätzlich von Vorfaktor
24945 en etwas abgesetzt sind.
24946  Sie werden als Befehle mit einem Backslash vor dem Funktionsnamen eingefügt.
24947 \end_layout
24948
24949 \begin_layout Standard
24950 \align center
24951 \begin_inset Tabular
24952 <lyxtabular version="3" rows="2" columns="4">
24953 <features tabularvalignment="middle">
24954 <column alignment="center" valignment="top" width="0pt">
24955 <column alignment="center" valignment="top" width="0pt">
24956 <column alignment="center" valignment="top" width="0pt">
24957 <column alignment="center" valignment="top" width="0pt">
24958 <row>
24959 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24960 \begin_inset Text
24961
24962 \begin_layout Plain Layout
24963 Befehl
24964 \end_layout
24965
24966 \end_inset
24967 </cell>
24968 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
24969 \begin_inset Text
24970
24971 \begin_layout Plain Layout
24972 Ergebnis
24973 \end_layout
24974
24975 \end_inset
24976 </cell>
24977 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24978 \begin_inset Text
24979
24980 \begin_layout Plain Layout
24981 Befehl
24982 \end_layout
24983
24984 \end_inset
24985 </cell>
24986 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
24987 \begin_inset Text
24988
24989 \begin_layout Plain Layout
24990 Ergebnis
24991 \end_layout
24992
24993 \end_inset
24994 </cell>
24995 </row>
24996 <row>
24997 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24998 \begin_inset Text
24999
25000 \begin_layout Plain Layout
25001 Asin(x)+B
25002 \end_layout
25003
25004 \end_inset
25005 </cell>
25006 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
25007 \begin_inset Text
25008
25009 \begin_layout Plain Layout
25010 \begin_inset Formula $Asin(x)+B$
25011 \end_inset
25012
25013
25014 \end_layout
25015
25016 \end_inset
25017 </cell>
25018 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25019 \begin_inset Text
25020
25021 \begin_layout Plain Layout
25022 A
25023 \backslash
25024 sin(x)+B
25025 \end_layout
25026
25027 \end_inset
25028 </cell>
25029 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
25030 \begin_inset Text
25031
25032 \begin_layout Plain Layout
25033 \begin_inset Formula $A\sin(x)+B$
25034 \end_inset
25035
25036
25037 \end_layout
25038
25039 \end_inset
25040 </cell>
25041 </row>
25042 </lyxtabular>
25043
25044 \end_inset
25045
25046
25047 \end_layout
25048
25049 \begin_layout Standard
25050 Folgende Funktionen sind vordefiniert:
25051 \end_layout
25052
25053 \begin_layout Standard
25054 \begin_inset VSpace -2mm
25055 \end_inset
25056
25057
25058 \end_layout
25059
25060 \begin_layout Standard
25061 \align center
25062 \begin_inset Tabular
25063 <lyxtabular version="3" rows="9" columns="4">
25064 <features tabularvalignment="middle">
25065 <column alignment="center" valignment="top" width="0pt">
25066 <column alignment="center" valignment="top" width="0pt">
25067 <column alignment="center" valignment="top" width="0pt">
25068 <column alignment="center" valignment="top" width="0pt">
25069 <row>
25070 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25071 \begin_inset Text
25072
25073 \begin_layout Plain Layout
25074 Befehl
25075 \end_layout
25076
25077 \end_inset
25078 </cell>
25079 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25080 \begin_inset Text
25081
25082 \begin_layout Plain Layout
25083 Befehl
25084 \end_layout
25085
25086 \end_inset
25087 </cell>
25088 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25089 \begin_inset Text
25090
25091 \begin_layout Plain Layout
25092 Befehl
25093 \end_layout
25094
25095 \end_inset
25096 </cell>
25097 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
25098 \begin_inset Text
25099
25100 \begin_layout Plain Layout
25101 Befehl
25102 \end_layout
25103
25104 \end_inset
25105 </cell>
25106 </row>
25107 <row>
25108 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25109 \begin_inset Text
25110
25111 \begin_layout Plain Layout
25112
25113 \backslash
25114 sin
25115 \end_layout
25116
25117 \end_inset
25118 </cell>
25119 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25120 \begin_inset Text
25121
25122 \begin_layout Plain Layout
25123
25124 \backslash
25125 sinh
25126 \end_layout
25127
25128 \end_inset
25129 </cell>
25130 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25131 \begin_inset Text
25132
25133 \begin_layout Plain Layout
25134
25135 \backslash
25136 arcsin
25137 \end_layout
25138
25139 \end_inset
25140 </cell>
25141 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25142 \begin_inset Text
25143
25144 \begin_layout Plain Layout
25145
25146 \backslash
25147 sup
25148 \end_layout
25149
25150 \end_inset
25151 </cell>
25152 </row>
25153 <row>
25154 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25155 \begin_inset Text
25156
25157 \begin_layout Plain Layout
25158
25159 \backslash
25160 cos
25161 \end_layout
25162
25163 \end_inset
25164 </cell>
25165 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25166 \begin_inset Text
25167
25168 \begin_layout Plain Layout
25169
25170 \backslash
25171 cosh
25172 \end_layout
25173
25174 \end_inset
25175 </cell>
25176 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25177 \begin_inset Text
25178
25179 \begin_layout Plain Layout
25180
25181 \backslash
25182 arccos
25183 \end_layout
25184
25185 \end_inset
25186 </cell>
25187 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25188 \begin_inset Text
25189
25190 \begin_layout Plain Layout
25191
25192 \backslash
25193 inf
25194 \end_layout
25195
25196 \end_inset
25197 </cell>
25198 </row>
25199 <row>
25200 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25201 \begin_inset Text
25202
25203 \begin_layout Plain Layout
25204
25205 \backslash
25206 tan
25207 \end_layout
25208
25209 \end_inset
25210 </cell>
25211 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25212 \begin_inset Text
25213
25214 \begin_layout Plain Layout
25215
25216 \backslash
25217 tanh
25218 \end_layout
25219
25220 \end_inset
25221 </cell>
25222 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25223 \begin_inset Text
25224
25225 \begin_layout Plain Layout
25226
25227 \backslash
25228 arctan
25229 \end_layout
25230
25231 \end_inset
25232 </cell>
25233 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25234 \begin_inset Text
25235
25236 \begin_layout Plain Layout
25237
25238 \backslash
25239 lim
25240 \end_layout
25241
25242 \end_inset
25243 </cell>
25244 </row>
25245 <row>
25246 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25247 \begin_inset Text
25248
25249 \begin_layout Plain Layout
25250
25251 \backslash
25252 cot
25253 \end_layout
25254
25255 \end_inset
25256 </cell>
25257 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25258 \begin_inset Text
25259
25260 \begin_layout Plain Layout
25261
25262 \backslash
25263 coth
25264 \end_layout
25265
25266 \end_inset
25267 </cell>
25268 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25269 \begin_inset Text
25270
25271 \begin_layout Plain Layout
25272
25273 \backslash
25274 arg
25275 \end_layout
25276
25277 \end_inset
25278 </cell>
25279 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25280 \begin_inset Text
25281
25282 \begin_layout Plain Layout
25283
25284 \backslash
25285 liminf
25286 \end_layout
25287
25288 \end_inset
25289 </cell>
25290 </row>
25291 <row>
25292 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25293 \begin_inset Text
25294
25295 \begin_layout Plain Layout
25296
25297 \backslash
25298 sec
25299 \end_layout
25300
25301 \end_inset
25302 </cell>
25303 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25304 \begin_inset Text
25305
25306 \begin_layout Plain Layout
25307
25308 \backslash
25309 min
25310 \end_layout
25311
25312 \end_inset
25313 </cell>
25314 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25315 \begin_inset Text
25316
25317 \begin_layout Plain Layout
25318
25319 \backslash
25320 deg
25321 \end_layout
25322
25323 \end_inset
25324 </cell>
25325 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25326 \begin_inset Text
25327
25328 \begin_layout Plain Layout
25329
25330 \backslash
25331 limsup
25332 \end_layout
25333
25334 \end_inset
25335 </cell>
25336 </row>
25337 <row>
25338 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25339 \begin_inset Text
25340
25341 \begin_layout Plain Layout
25342
25343 \backslash
25344 csc
25345 \end_layout
25346
25347 \end_inset
25348 </cell>
25349 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25350 \begin_inset Text
25351
25352 \begin_layout Plain Layout
25353
25354 \backslash
25355 max
25356 \end_layout
25357
25358 \end_inset
25359 </cell>
25360 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25361 \begin_inset Text
25362
25363 \begin_layout Plain Layout
25364
25365 \backslash
25366 det
25367 \end_layout
25368
25369 \end_inset
25370 </cell>
25371 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25372 \begin_inset Text
25373
25374 \begin_layout Plain Layout
25375
25376 \backslash
25377 Pr
25378 \end_layout
25379
25380 \end_inset
25381 </cell>
25382 </row>
25383 <row>
25384 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25385 \begin_inset Text
25386
25387 \begin_layout Plain Layout
25388
25389 \backslash
25390 ln
25391 \end_layout
25392
25393 \end_inset
25394 </cell>
25395 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25396 \begin_inset Text
25397
25398 \begin_layout Plain Layout
25399
25400 \backslash
25401 exp
25402 \end_layout
25403
25404 \end_inset
25405 </cell>
25406 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25407 \begin_inset Text
25408
25409 \begin_layout Plain Layout
25410
25411 \backslash
25412 dim
25413 \end_layout
25414
25415 \end_inset
25416 </cell>
25417 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25418 \begin_inset Text
25419
25420 \begin_layout Plain Layout
25421
25422 \backslash
25423 hom
25424 \end_layout
25425
25426 \end_inset
25427 </cell>
25428 </row>
25429 <row>
25430 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25431 \begin_inset Text
25432
25433 \begin_layout Plain Layout
25434
25435 \backslash
25436 lg
25437 \end_layout
25438
25439 \end_inset
25440 </cell>
25441 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25442 \begin_inset Text
25443
25444 \begin_layout Plain Layout
25445
25446 \backslash
25447 log
25448 \end_layout
25449
25450 \end_inset
25451 </cell>
25452 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25453 \begin_inset Text
25454
25455 \begin_layout Plain Layout
25456
25457 \backslash
25458 ker
25459 \end_layout
25460
25461 \end_inset
25462 </cell>
25463 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
25464 \begin_inset Text
25465
25466 \begin_layout Plain Layout
25467
25468 \backslash
25469 gcd
25470 \end_layout
25471
25472 \end_inset
25473 </cell>
25474 </row>
25475 </lyxtabular>
25476
25477 \end_inset
25478
25479
25480 \end_layout
25481
25482 \begin_layout Standard
25483 Sie können auch über den Mathe-Werkzeugleistenknopf 
25484 \begin_inset Graphics
25485         filename ../../images/math/functions.png
25486         scale 85
25487
25488 \end_inset
25489
25490  eingefügt werden.
25491 \end_layout
25492
25493 \begin_layout Subsection
25494 Selbst definierte Funktionen
25495 \begin_inset Index idx
25496 status collapsed
25497
25498 \begin_layout Plain Layout
25499 Funktionen ! selbstdefinierte
25500 \end_layout
25501
25502 \end_inset
25503
25504
25505 \end_layout
25506
25507 \begin_layout Standard
25508 Will man eine Funktion verwenden, die nicht vordefiniert ist, wie z.
25509 \begin_inset space \thinspace{}
25510 \end_inset
25511
25512 B.
25513  die Signumfunktion sgn(x), hat man zwei Möglichkeiten:
25514 \end_layout
25515
25516 \begin_layout Itemize
25517 Man definiert die Funktion selbst.
25518  Dazu gibt man im LaTeX-Vorspann die Zeile
25519 \begin_inset Newline newline
25520 \end_inset
25521
25522
25523 \begin_inset VSpace -3mm
25524 \end_inset
25525
25526
25527 \begin_inset Newline newline
25528 \end_inset
25529
25530
25531 \series bold
25532
25533 \backslash
25534 DeclareMathOperator{
25535 \backslash
25536 sgn}{sgn}
25537 \series default
25538
25539 \begin_inset Index idx
25540 status collapsed
25541
25542 \begin_layout Plain Layout
25543 Befehle ! D ! 
25544 \backslash
25545 dbinom@
25546 \backslash
25547 DeclareMathOperator
25548 \end_layout
25549
25550 \end_inset
25551
25552
25553 \begin_inset Newline newline
25554 \end_inset
25555
25556
25557 \begin_inset VSpace -2mm
25558 \end_inset
25559
25560
25561 \begin_inset Newline newline
25562 \end_inset
25563
25564 ein
25565 \begin_inset Foot
25566 status collapsed
25567
25568 \begin_layout Plain Layout
25569 Näheres zu 
25570 \series bold
25571
25572 \backslash
25573 DeclareMathOperator
25574 \series default
25575  siehe 
25576 \begin_inset CommandInset ref
25577 LatexCommand ref
25578 reference "sub:Selbstdefinierte-Operatoren"
25579
25580 \end_inset
25581
25582 .
25583 \end_layout
25584
25585 \end_inset
25586
25587 .
25588  Nun kann man mit dem Befehl 
25589 \series bold
25590
25591 \backslash
25592 sgn
25593 \series default
25594  die neu definierte Funktion aufrufen.
25595 \end_layout
25596
25597 \begin_layout Itemize
25598 Man schreibt die Formel wie gewohnt, markiert den Formelnamen, also in unserem
25599  Beispiel die Buchstaben 
25600 \emph on
25601 sgn
25602 \emph default
25603 , und wandelt ihn in in mathematischen Text um.
25604  Zwischen Vorfaktor und Funktion fügt man einen kleinen Leerraum ein.
25605 \end_layout
25606
25607 \begin_layout Standard
25608 Das Ergebnis ist bei beiden Methoden dasselbe wie bei einer vordefinierten
25609  Funktion
25610 \begin_inset Foot
25611 status collapsed
25612
25613 \begin_layout Plain Layout
25614 Selbst definierte Funktionen werden in LyX rot, vordefinierte schwarz angezeigt.
25615 \end_layout
25616
25617 \end_inset
25618
25619 :
25620 \end_layout
25621
25622 \begin_layout Standard
25623 \align center
25624 \begin_inset Tabular
25625 <lyxtabular version="3" rows="3" columns="2">
25626 <features tabularvalignment="middle">
25627 <column alignment="center" valignment="top" width="0pt">
25628 <column alignment="center" valignment="top" width="0pt">
25629 <row>
25630 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25631 \begin_inset Text
25632
25633 \begin_layout Plain Layout
25634 Befehl
25635 \end_layout
25636
25637 \end_inset
25638 </cell>
25639 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
25640 \begin_inset Text
25641
25642 \begin_layout Plain Layout
25643 Ergebnis
25644 \end_layout
25645
25646 \end_inset
25647 </cell>
25648 </row>
25649 <row>
25650 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25651 \begin_inset Text
25652
25653 \begin_layout Plain Layout
25654 A
25655 \backslash
25656 sgn(x)+B
25657 \end_layout
25658
25659 \end_inset
25660 </cell>
25661 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
25662 \begin_inset Text
25663
25664 \begin_layout Plain Layout
25665 \begin_inset Formula $A\sgn(x)+B$
25666 \end_inset
25667
25668
25669 \end_layout
25670
25671 \end_inset
25672 </cell>
25673 </row>
25674 <row>
25675 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25676 \begin_inset Text
25677
25678 \begin_layout Plain Layout
25679 A
25680 \backslash
25681 ,
25682 \begin_inset Formula $\underbrace{\textrm{sgn}}_{\textrm{Alt-m}\,\textrm{m}}$
25683 \end_inset
25684
25685 (x)+B
25686 \end_layout
25687
25688 \end_inset
25689 </cell>
25690 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
25691 \begin_inset Text
25692
25693 \begin_layout Plain Layout
25694 \begin_inset Formula $A\,\textrm{sgn}(x)+B$
25695 \end_inset
25696
25697
25698 \end_layout
25699
25700 \end_inset
25701 </cell>
25702 </row>
25703 </lyxtabular>
25704
25705 \end_inset
25706
25707
25708 \end_layout
25709
25710 \begin_layout Standard
25711 Die erste Methode ist besser geeignet, wenn die selbst definierte Funktion
25712  mehrfach verwendet werden soll.
25713 \end_layout
25714
25715 \begin_layout Subsection
25716 Grenzwerte
25717 \begin_inset Index idx
25718 status collapsed
25719
25720 \begin_layout Plain Layout
25721 Grenzwerte
25722 \end_layout
25723
25724 \end_inset
25725
25726
25727 \end_layout
25728
25729 \begin_layout Standard
25730 Für Grenzwerte sind außer 
25731 \series bold
25732
25733 \backslash
25734 lim
25735 \series default
25736
25737 \begin_inset Index idx
25738 status collapsed
25739
25740 \begin_layout Plain Layout
25741 Befehle ! L ! 
25742 \backslash
25743 lim
25744 \end_layout
25745
25746 \end_inset
25747
25748
25749 \series bold
25750
25751 \backslash
25752 liminf
25753 \series default
25754  und 
25755 \series bold
25756
25757 \backslash
25758 limsup
25759 \series default
25760  noch folgende Funktionen definiert:
25761 \end_layout
25762
25763 \begin_layout Standard
25764 \align center
25765 \begin_inset Tabular
25766 <lyxtabular version="3" rows="5" columns="2">
25767 <features tabularvalignment="middle">
25768 <column alignment="center" valignment="top" width="0">
25769 <column alignment="center" valignment="top" width="0">
25770 <row>
25771 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25772 \begin_inset Text
25773
25774 \begin_layout Plain Layout
25775 Befehl
25776 \end_layout
25777
25778 \end_inset
25779 </cell>
25780 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
25781 \begin_inset Text
25782
25783 \begin_layout Plain Layout
25784 Ergebnis
25785 \begin_inset Note Note
25786 status collapsed
25787
25788 \begin_layout Plain Layout
25789
25790 \series bold
25791
25792 \backslash
25793 raisebox
25794 \series default
25795  dient nur als Abstandhalter.
25796 \end_layout
25797
25798 \end_inset
25799
25800
25801 \end_layout
25802
25803 \end_inset
25804 </cell>
25805 </row>
25806 <row>
25807 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25808 \begin_inset Text
25809
25810 \begin_layout Plain Layout
25811
25812 \backslash
25813 varliminf
25814 \end_layout
25815
25816 \end_inset
25817 </cell>
25818 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25819 \begin_inset Text
25820
25821 \begin_layout Plain Layout
25822 \begin_inset Formula $\varliminf$
25823 \end_inset
25824
25825
25826 \end_layout
25827
25828 \end_inset
25829 </cell>
25830 </row>
25831 <row>
25832 <cell alignment="center" valignment="top" leftline="true" usebox="none">
25833 \begin_inset Text
25834
25835 \begin_layout Plain Layout
25836
25837 \backslash
25838 varlimsup
25839 \end_layout
25840
25841 \end_inset
25842 </cell>
25843 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
25844 \begin_inset Text
25845
25846 \begin_layout Plain Layout
25847 \begin_inset Formula $\varlimsup$
25848 \end_inset
25849
25850
25851 \end_layout
25852
25853 \end_inset
25854 </cell>
25855 </row>
25856 <row>
25857 <cell alignment="center" valignment="top" leftline="true" usebox="none">
25858 \begin_inset Text
25859
25860 \begin_layout Plain Layout
25861
25862 \backslash
25863 varprojlim
25864 \end_layout
25865
25866 \end_inset
25867 </cell>
25868 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
25869 \begin_inset Text
25870
25871 \begin_layout Plain Layout
25872 \begin_inset Formula $\varprojlim$
25873 \end_inset
25874
25875
25876 \end_layout
25877
25878 \end_inset
25879 </cell>
25880 </row>
25881 <row>
25882 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
25883 \begin_inset Text
25884
25885 \begin_layout Plain Layout
25886
25887 \backslash
25888 varinjlim
25889 \end_layout
25890
25891 \end_inset
25892 </cell>
25893 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
25894 \begin_inset Text
25895
25896 \begin_layout Plain Layout
25897 \begin_inset Formula $\varinjlim$
25898 \end_inset
25899
25900
25901 \begin_inset Formula $\raisebox{-2.5mm}{}$
25902 \end_inset
25903
25904
25905 \end_layout
25906
25907 \end_inset
25908 </cell>
25909 </row>
25910 </lyxtabular>
25911
25912 \end_inset
25913
25914
25915 \end_layout
25916
25917 \begin_layout Standard
25918 \begin_inset VSpace medskip
25919 \end_inset
25920
25921 Der Grenzwert wird durch Tiefstellen erzeugt.
25922  Bei einer eingebetteten Formel wird er rechts neben die Funktion gesetzt:
25923 \end_layout
25924
25925 \begin_layout Standard
25926 \align center
25927 \begin_inset Tabular
25928 <lyxtabular version="3" rows="2" columns="2">
25929 <features tabularvalignment="middle">
25930 <column alignment="center" valignment="top" width="0pt">
25931 <column alignment="center" valignment="top" width="0pt">
25932 <row>
25933 <cell alignment="center" valignment="top" usebox="none">
25934 \begin_inset Text
25935
25936 \begin_layout Plain Layout
25937 Befehl
25938 \end_layout
25939
25940 \end_inset
25941 </cell>
25942 <cell alignment="center" valignment="top" usebox="none">
25943 \begin_inset Text
25944
25945 \begin_layout Plain Layout
25946 \begin_inset space \hspace{}
25947 \length 1cm
25948 \end_inset
25949
25950 Ergebnis
25951 \begin_inset Note Note
25952 status collapsed
25953
25954 \begin_layout Plain Layout
25955 Der Leerraum und 
25956 \series bold
25957
25958 \backslash
25959 raisebox
25960 \series default
25961  dienen nur als Abstandhalter.
25962 \end_layout
25963
25964 \end_inset
25965
25966
25967 \end_layout
25968
25969 \end_inset
25970 </cell>
25971 </row>
25972 <row>
25973 <cell alignment="center" valignment="top" usebox="none">
25974 \begin_inset Text
25975
25976 \begin_layout Plain Layout
25977
25978 \backslash
25979 lim_x
25980 \backslash
25981 to
25982 \begin_inset ERT
25983 status collapsed
25984
25985 \begin_layout Plain Layout
25986
25987
25988 \backslash
25989 leer 
25990 \end_layout
25991
25992 \end_inset
25993
25994 A
25995 \begin_inset ERT
25996 status collapsed
25997
25998 \begin_layout Plain Layout
25999
26000
26001 \backslash
26002 leer 
26003 \end_layout
26004
26005 \end_inset
26006
26007 x=B
26008 \end_layout
26009
26010 \end_inset
26011 </cell>
26012 <cell alignment="center" valignment="top" usebox="none">
26013 \begin_inset Text
26014
26015 \begin_layout Plain Layout
26016 \begin_inset Formula $\hspace{1cm}\raisebox{5mm}{}\lim_{x\to A}x=B$
26017 \end_inset
26018
26019
26020 \end_layout
26021
26022 \end_inset
26023 </cell>
26024 </row>
26025 </lyxtabular>
26026
26027 \end_inset
26028
26029
26030 \end_layout
26031
26032 \begin_layout Standard
26033 In einer abgesetzten Formel steht der Grenzwert wie gewohnt darunter:
26034 \begin_inset Formula 
26035 \[
26036 \lim_{x\to A}x=B
26037 \]
26038
26039 \end_inset
26040
26041
26042 \end_layout
26043
26044 \begin_layout Subsection
26045 Modulo-Funktionen
26046 \begin_inset Index idx
26047 status collapsed
26048
26049 \begin_layout Plain Layout
26050 Funktionen ! Modulo-
26051 \end_layout
26052
26053 \end_inset
26054
26055
26056 \end_layout
26057
26058 \begin_layout Standard
26059 Eine Besonderheit stellt die Modulo-Funktion dar, denn es gibt sie in vier
26060  Varianten.
26061 \end_layout
26062
26063 \begin_layout Standard
26064 Die Varianten in einer abgesetzten Formel:
26065 \begin_inset Formula 
26066 \begin{align*}
26067 \underline{\textrm{Befehl}\raisebox{-0.9mm}{}} &  & \underline{\textrm{Ergebnis}}\\
26068 \mathrm{a\backslash mod\textrm{\leer}b} &  & a\mod b\\
26069 \mathrm{a\backslash pmod\textrm{\leer}b} &  & a\pmod b\\
26070 \mathrm{a\backslash bmod\textrm{\leer}b} &  & a\bmod b\\
26071 \mathrm{a\backslash pod\textrm{\leer}b} &  & a\pod b
26072 \end{align*}
26073
26074 \end_inset
26075
26076
26077 \end_layout
26078
26079 \begin_layout Standard
26080 In einer eingebetteten Formel wird bei allen Varianten vor den Funktionsnamen
26081  weniger Leerraum gesetzt.
26082  Standardmäßig beachten die Modulo-Funktionen nur das erste, folgende Zeichen.
26083  Um mehrere Zeichen zu verwenden, muss man sie in TeX-Klammern setzen:
26084 \begin_inset Formula 
26085 \begin{align*}
26086 \underline{\textrm{Befehl}\raisebox{-0.9mm}{}} &  & \underline{\textrm{Ergebnis}}\\
26087 \mathrm{a\backslash pod\textrm{\leer}bcd} &  & a\pod bcd\\
26088 \mathrm{a\backslash pod\backslash\{bc\to d} &  & a\pod{bc}d
26089 \end{align*}
26090
26091 \end_inset
26092
26093
26094 \end_layout
26095
26096 \begin_layout Section
26097 Sonderzeichen
26098 \begin_inset Index idx
26099 status collapsed
26100
26101 \begin_layout Plain Layout
26102 Sonderzeichen
26103 \end_layout
26104
26105 \end_inset
26106
26107
26108 \end_layout
26109
26110 \begin_layout Subsection
26111 Sonderzeichen im mathematischen Text
26112 \end_layout
26113
26114 \begin_layout Standard
26115 Die folgenden Befehle können nur im mathematischen Textmodus oder im TeX-Modus
26116  verwendet werden:
26117 \end_layout
26118
26119 \begin_layout Standard
26120 \begin_inset space \hfill{}
26121 \end_inset
26122
26123
26124 \begin_inset Tabular
26125 <lyxtabular version="3" rows="8" columns="2">
26126 <features tabularvalignment="middle">
26127 <column alignment="block" valignment="top" width="0">
26128 <column alignment="block" valignment="top" width="0">
26129 <row>
26130 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
26131 \begin_inset Text
26132
26133 \begin_layout Plain Layout
26134 Befehl
26135 \end_layout
26136
26137 \end_inset
26138 </cell>
26139 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
26140 \begin_inset Text
26141
26142 \begin_layout Plain Layout
26143 Ergebnis
26144 \end_layout
26145
26146 \end_inset
26147 </cell>
26148 </row>
26149 <row>
26150 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26151 \begin_inset Text
26152
26153 \begin_layout Plain Layout
26154
26155 \backslash
26156 oe
26157 \end_layout
26158
26159 \end_inset
26160 </cell>
26161 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26162 \begin_inset Text
26163
26164 \begin_layout Plain Layout
26165 \begin_inset Formula $\textrm{œ}$
26166 \end_inset
26167
26168
26169 \end_layout
26170
26171 \end_inset
26172 </cell>
26173 </row>
26174 <row>
26175 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26176 \begin_inset Text
26177
26178 \begin_layout Plain Layout
26179
26180 \backslash
26181 OE
26182 \end_layout
26183
26184 \end_inset
26185 </cell>
26186 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26187 \begin_inset Text
26188
26189 \begin_layout Plain Layout
26190 \begin_inset Formula $\textrm{Œ}$
26191 \end_inset
26192
26193
26194 \end_layout
26195
26196 \end_inset
26197 </cell>
26198 </row>
26199 <row>
26200 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26201 \begin_inset Text
26202
26203 \begin_layout Plain Layout
26204
26205 \backslash
26206 ae
26207 \end_layout
26208
26209 \end_inset
26210 </cell>
26211 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26212 \begin_inset Text
26213
26214 \begin_layout Plain Layout
26215 \begin_inset Formula $\textrm{æ}$
26216 \end_inset
26217
26218
26219 \end_layout
26220
26221 \end_inset
26222 </cell>
26223 </row>
26224 <row>
26225 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26226 \begin_inset Text
26227
26228 \begin_layout Plain Layout
26229
26230 \backslash
26231 AE
26232 \end_layout
26233
26234 \end_inset
26235 </cell>
26236 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26237 \begin_inset Text
26238
26239 \begin_layout Plain Layout
26240 \begin_inset Formula $\textrm{Æ}$
26241 \end_inset
26242
26243
26244 \end_layout
26245
26246 \end_inset
26247 </cell>
26248 </row>
26249 <row>
26250 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26251 \begin_inset Text
26252
26253 \begin_layout Plain Layout
26254
26255 \backslash
26256 aa
26257 \end_layout
26258
26259 \end_inset
26260 </cell>
26261 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26262 \begin_inset Text
26263
26264 \begin_layout Plain Layout
26265 \begin_inset Formula $\textrm{\aa}$
26266 \end_inset
26267
26268
26269 \end_layout
26270
26271 \end_inset
26272 </cell>
26273 </row>
26274 <row>
26275 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
26276 \begin_inset Text
26277
26278 \begin_layout Plain Layout
26279
26280 \backslash
26281 AA
26282 \begin_inset Index idx
26283 status collapsed
26284
26285 \begin_layout Plain Layout
26286
26287 \backslash
26288 @
26289 \begin_inset ERT
26290 status collapsed
26291
26292 \begin_layout Plain Layout
26293
26294
26295 \backslash
26296 textrm{
26297 \backslash
26298 AA}
26299 \end_layout
26300
26301 \end_inset
26302
26303
26304 \end_layout
26305
26306 \end_inset
26307
26308
26309 \end_layout
26310
26311 \end_inset
26312 </cell>
26313 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
26314 \begin_inset Text
26315
26316 \begin_layout Plain Layout
26317 \begin_inset Formula $\textrm{Å}$
26318 \end_inset
26319
26320
26321 \end_layout
26322
26323 \end_inset
26324 </cell>
26325 </row>
26326 <row>
26327 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
26328 \begin_inset Text
26329
26330 \begin_layout Plain Layout
26331
26332 \backslash
26333 i
26334 \end_layout
26335
26336 \end_inset
26337 </cell>
26338 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
26339 \begin_inset Text
26340
26341 \begin_layout Plain Layout
26342 \begin_inset Formula $\textrm{ı}$
26343 \end_inset
26344
26345
26346 \end_layout
26347
26348 \end_inset
26349 </cell>
26350 </row>
26351 </lyxtabular>
26352
26353 \end_inset
26354
26355
26356 \begin_inset space \hfill{}
26357 \end_inset
26358
26359
26360 \begin_inset Tabular
26361 <lyxtabular version="3" rows="8" columns="2">
26362 <features tabularvalignment="middle">
26363 <column alignment="block" valignment="top" width="0">
26364 <column alignment="center" valignment="top" width="0">
26365 <row>
26366 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
26367 \begin_inset Text
26368
26369 \begin_layout Plain Layout
26370 Befehl
26371 \begin_inset Note Note
26372 status collapsed
26373
26374 \begin_layout Plain Layout
26375 Der Leerraum von 0
26376 \begin_inset space \thinspace{}
26377 \end_inset
26378
26379 mm dient nur zur Trennung,da sonst im Ausdruck ¡ bzw.
26380 \begin_inset space \space{}
26381 \end_inset
26382
26383 ¿ erscheinen würde.
26384 \end_layout
26385
26386 \end_inset
26387
26388
26389 \end_layout
26390
26391 \end_inset
26392 </cell>
26393 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
26394 \begin_inset Text
26395
26396 \begin_layout Plain Layout
26397 Ergebnis
26398 \end_layout
26399
26400 \end_inset
26401 </cell>
26402 </row>
26403 <row>
26404 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26405 \begin_inset Text
26406
26407 \begin_layout Plain Layout
26408
26409 \backslash
26410 o
26411 \end_layout
26412
26413 \end_inset
26414 </cell>
26415 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26416 \begin_inset Text
26417
26418 \begin_layout Plain Layout
26419 \begin_inset Formula $\textrm{ø}$
26420 \end_inset
26421
26422
26423 \end_layout
26424
26425 \end_inset
26426 </cell>
26427 </row>
26428 <row>
26429 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26430 \begin_inset Text
26431
26432 \begin_layout Plain Layout
26433
26434 \backslash
26435 O
26436 \end_layout
26437
26438 \end_inset
26439 </cell>
26440 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26441 \begin_inset Text
26442
26443 \begin_layout Plain Layout
26444 \begin_inset Formula $\textrm{Ø}$
26445 \end_inset
26446
26447
26448 \end_layout
26449
26450 \end_inset
26451 </cell>
26452 </row>
26453 <row>
26454 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26455 \begin_inset Text
26456
26457 \begin_layout Plain Layout
26458
26459 \backslash
26460 l
26461 \end_layout
26462
26463 \end_inset
26464 </cell>
26465 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26466 \begin_inset Text
26467
26468 \begin_layout Plain Layout
26469 \begin_inset Formula $\textrm{ł}$
26470 \end_inset
26471
26472
26473 \end_layout
26474
26475 \end_inset
26476 </cell>
26477 </row>
26478 <row>
26479 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26480 \begin_inset Text
26481
26482 \begin_layout Plain Layout
26483
26484 \backslash
26485 L
26486 \end_layout
26487
26488 \end_inset
26489 </cell>
26490 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26491 \begin_inset Text
26492
26493 \begin_layout Plain Layout
26494 \begin_inset Formula $\textrm{Ł}$
26495 \end_inset
26496
26497
26498 \end_layout
26499
26500 \end_inset
26501 </cell>
26502 </row>
26503 <row>
26504 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
26505 \begin_inset Text
26506
26507 \begin_layout Plain Layout
26508 !
26509 \begin_inset space \hspace{}
26510 \length 0mm
26511 \end_inset
26512
26513 `
26514 \begin_inset ERT
26515 status collapsed
26516
26517 \begin_layout Plain Layout
26518
26519
26520 \backslash
26521 leer 
26522 \end_layout
26523
26524 \end_inset
26525
26526
26527 \end_layout
26528
26529 \end_inset
26530 </cell>
26531 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
26532 \begin_inset Text
26533
26534 \begin_layout Plain Layout
26535 \begin_inset Formula $\textrm{!`}$
26536 \end_inset
26537
26538
26539 \end_layout
26540
26541 \end_inset
26542 </cell>
26543 </row>
26544 <row>
26545 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
26546 \begin_inset Text
26547
26548 \begin_layout Plain Layout
26549 ?
26550 \begin_inset space \hspace{}
26551 \length 0mm
26552 \end_inset
26553
26554 `
26555 \begin_inset ERT
26556 status collapsed
26557
26558 \begin_layout Plain Layout
26559
26560
26561 \backslash
26562 leer 
26563 \end_layout
26564
26565 \end_inset
26566
26567
26568 \end_layout
26569
26570 \end_inset
26571 </cell>
26572 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
26573 \begin_inset Text
26574
26575 \begin_layout Plain Layout
26576 \begin_inset Formula $\textrm{?`}$
26577 \end_inset
26578
26579
26580 \end_layout
26581
26582 \end_inset
26583 </cell>
26584 </row>
26585 <row>
26586 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
26587 \begin_inset Text
26588
26589 \begin_layout Plain Layout
26590
26591 \backslash
26592 j
26593 \end_layout
26594
26595 \end_inset
26596 </cell>
26597 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
26598 \begin_inset Text
26599
26600 \begin_layout Plain Layout
26601 \begin_inset Formula $\textrm{ȷ}$
26602 \end_inset
26603
26604
26605 \end_layout
26606
26607 \end_inset
26608 </cell>
26609 </row>
26610 </lyxtabular>
26611
26612 \end_inset
26613
26614
26615 \begin_inset space \hfill{}
26616 \end_inset
26617
26618
26619 \end_layout
26620
26621 \begin_layout Standard
26622 Die Zeichen 
26623 \begin_inset Formula $\textrm{\textrm{Å}}$
26624 \end_inset
26625
26626  und 
26627 \begin_inset Formula $\textrm{\textrm{Ø}}$
26628 \end_inset
26629
26630  können auch über den Mathe-Werkzeugleistenknopf 
26631 \begin_inset Graphics
26632         filename ../../images/math/digamma.png
26633         scale 85
26634
26635 \end_inset
26636
26637  eingefügt werden.
26638 \end_layout
26639
26640 \begin_layout Standard
26641 Eine Ausnahme bilden die Befehle 
26642 \series bold
26643 !
26644 \begin_inset space \hspace{}
26645 \length 0mm
26646 \end_inset
26647
26648 `
26649 \series default
26650  und 
26651 \series bold
26652 ?
26653 \begin_inset space \hspace{}
26654 \length 0mm
26655 \end_inset
26656
26657 `
26658 \series default
26659 , denn man kann sie in LyX direkt in den Text eingeben.
26660 \end_layout
26661
26662 \begin_layout Subsection
26663 Akzente im Text
26664 \begin_inset CommandInset label
26665 LatexCommand label
26666 name "sub:Sonderzeichen-Akzente"
26667
26668 \end_inset
26669
26670
26671 \begin_inset Index idx
26672 status collapsed
26673
26674 \begin_layout Plain Layout
26675 Akzente ! im Text
26676 \end_layout
26677
26678 \end_inset
26679
26680
26681 \end_layout
26682
26683 \begin_layout Standard
26684 Man kann mit den folgenden Befehlen sämtliche Buchstaben akzentuieren.
26685  Die Befehle müssen dazu im TeX-Modus eingegeben werden.
26686 \end_layout
26687
26688 \begin_layout Standard
26689 \begin_inset space \hfill{}
26690 \end_inset
26691
26692
26693 \begin_inset Tabular
26694 <lyxtabular version="3" rows="8" columns="2">
26695 <features tabularvalignment="middle">
26696 <column alignment="block" valignment="top" width="0">
26697 <column alignment="block" valignment="top" width="0">
26698 <row>
26699 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
26700 \begin_inset Text
26701
26702 \begin_layout Plain Layout
26703 Befehl
26704 \end_layout
26705
26706 \end_inset
26707 </cell>
26708 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
26709 \begin_inset Text
26710
26711 \begin_layout Plain Layout
26712 Ergebnis
26713 \end_layout
26714
26715 \end_inset
26716 </cell>
26717 </row>
26718 <row>
26719 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26720 \begin_inset Text
26721
26722 \begin_layout Plain Layout
26723
26724 \backslash
26725
26726 \begin_inset Quotes grd
26727 \end_inset
26728
26729 e
26730 \end_layout
26731
26732 \end_inset
26733 </cell>
26734 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26735 \begin_inset Text
26736
26737 \begin_layout Plain Layout
26738 \begin_inset ERT
26739 status collapsed
26740
26741 \begin_layout Plain Layout
26742
26743
26744 \backslash
26745 "e
26746 \end_layout
26747
26748 \end_inset
26749
26750
26751 \end_layout
26752
26753 \end_inset
26754 </cell>
26755 </row>
26756 <row>
26757 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26758 \begin_inset Text
26759
26760 \begin_layout Plain Layout
26761
26762 \backslash
26763 `e
26764 \end_layout
26765
26766 \end_inset
26767 </cell>
26768 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26769 \begin_inset Text
26770
26771 \begin_layout Plain Layout
26772 \begin_inset ERT
26773 status collapsed
26774
26775 \begin_layout Plain Layout
26776
26777
26778 \backslash
26779 `e
26780 \end_layout
26781
26782 \end_inset
26783
26784
26785 \end_layout
26786
26787 \end_inset
26788 </cell>
26789 </row>
26790 <row>
26791 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26792 \begin_inset Text
26793
26794 \begin_layout Plain Layout
26795
26796 \backslash
26797 ^
26798 \begin_inset ERT
26799 status collapsed
26800
26801 \begin_layout Plain Layout
26802
26803
26804 \backslash
26805 leer 
26806 \end_layout
26807
26808 \end_inset
26809
26810 e
26811 \end_layout
26812
26813 \end_inset
26814 </cell>
26815 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26816 \begin_inset Text
26817
26818 \begin_layout Plain Layout
26819 \begin_inset ERT
26820 status collapsed
26821
26822 \begin_layout Plain Layout
26823
26824
26825 \backslash
26826 ^e
26827 \end_layout
26828
26829 \end_inset
26830
26831
26832 \end_layout
26833
26834 \end_inset
26835 </cell>
26836 </row>
26837 <row>
26838 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26839 \begin_inset Text
26840
26841 \begin_layout Plain Layout
26842
26843 \backslash
26844 =e
26845 \end_layout
26846
26847 \end_inset
26848 </cell>
26849 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26850 \begin_inset Text
26851
26852 \begin_layout Plain Layout
26853 \begin_inset ERT
26854 status collapsed
26855
26856 \begin_layout Plain Layout
26857
26858
26859 \backslash
26860 =e
26861 \end_layout
26862
26863 \end_inset
26864
26865
26866 \end_layout
26867
26868 \end_inset
26869 </cell>
26870 </row>
26871 <row>
26872 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26873 \begin_inset Text
26874
26875 \begin_layout Plain Layout
26876
26877 \backslash
26878 u
26879 \begin_inset ERT
26880 status collapsed
26881
26882 \begin_layout Plain Layout
26883
26884
26885 \backslash
26886 leer 
26887 \end_layout
26888
26889 \end_inset
26890
26891 e
26892 \end_layout
26893
26894 \end_inset
26895 </cell>
26896 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26897 \begin_inset Text
26898
26899 \begin_layout Plain Layout
26900 \begin_inset ERT
26901 status collapsed
26902
26903 \begin_layout Plain Layout
26904
26905
26906 \backslash
26907 u e
26908 \end_layout
26909
26910 \end_inset
26911
26912
26913 \end_layout
26914
26915 \end_inset
26916 </cell>
26917 </row>
26918 <row>
26919 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
26920 \begin_inset Text
26921
26922 \begin_layout Plain Layout
26923
26924 \backslash
26925 b
26926 \begin_inset ERT
26927 status collapsed
26928
26929 \begin_layout Plain Layout
26930
26931
26932 \backslash
26933 leer 
26934 \end_layout
26935
26936 \end_inset
26937
26938 e
26939 \end_layout
26940
26941 \end_inset
26942 </cell>
26943 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
26944 \begin_inset Text
26945
26946 \begin_layout Plain Layout
26947 \begin_inset ERT
26948 status collapsed
26949
26950 \begin_layout Plain Layout
26951
26952
26953 \backslash
26954 b e
26955 \end_layout
26956
26957 \end_inset
26958
26959
26960 \end_layout
26961
26962 \end_inset
26963 </cell>
26964 </row>
26965 <row>
26966 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
26967 \begin_inset Text
26968
26969 \begin_layout Plain Layout
26970
26971 \backslash
26972 t
26973 \begin_inset ERT
26974 status collapsed
26975
26976 \begin_layout Plain Layout
26977
26978
26979 \backslash
26980 leer 
26981 \end_layout
26982
26983 \end_inset
26984
26985 ee
26986 \end_layout
26987
26988 \end_inset
26989 </cell>
26990 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
26991 \begin_inset Text
26992
26993 \begin_layout Plain Layout
26994 \begin_inset ERT
26995 status collapsed
26996
26997 \begin_layout Plain Layout
26998
26999
27000 \backslash
27001 t ee
27002 \end_layout
27003
27004 \end_inset
27005
27006
27007 \end_layout
27008
27009 \end_inset
27010 </cell>
27011 </row>
27012 </lyxtabular>
27013
27014 \end_inset
27015
27016
27017 \begin_inset space \hfill{}
27018 \end_inset
27019
27020
27021 \begin_inset Tabular
27022 <lyxtabular version="3" rows="8" columns="2">
27023 <features tabularvalignment="middle">
27024 <column alignment="block" valignment="top" width="0">
27025 <column alignment="center" valignment="top" width="0">
27026 <row>
27027 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
27028 \begin_inset Text
27029
27030 \begin_layout Plain Layout
27031 Befehl
27032 \end_layout
27033
27034 \end_inset
27035 </cell>
27036 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
27037 \begin_inset Text
27038
27039 \begin_layout Plain Layout
27040 Ergebnis
27041 \end_layout
27042
27043 \end_inset
27044 </cell>
27045 </row>
27046 <row>
27047 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27048 \begin_inset Text
27049
27050 \begin_layout Plain Layout
27051
27052 \backslash
27053 H
27054 \begin_inset ERT
27055 status collapsed
27056
27057 \begin_layout Plain Layout
27058
27059
27060 \backslash
27061 leer 
27062 \end_layout
27063
27064 \end_inset
27065
27066 e
27067 \end_layout
27068
27069 \end_inset
27070 </cell>
27071 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
27072 \begin_inset Text
27073
27074 \begin_layout Plain Layout
27075 \begin_inset ERT
27076 status collapsed
27077
27078 \begin_layout Plain Layout
27079
27080
27081 \backslash
27082 H e
27083 \end_layout
27084
27085 \end_inset
27086
27087
27088 \end_layout
27089
27090 \end_inset
27091 </cell>
27092 </row>
27093 <row>
27094 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27095 \begin_inset Text
27096
27097 \begin_layout Plain Layout
27098
27099 \backslash
27100 'e
27101 \end_layout
27102
27103 \end_inset
27104 </cell>
27105 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
27106 \begin_inset Text
27107
27108 \begin_layout Plain Layout
27109 \begin_inset ERT
27110 status collapsed
27111
27112 \begin_layout Plain Layout
27113
27114
27115 \backslash
27116 'e
27117 \end_layout
27118
27119 \end_inset
27120
27121
27122 \end_layout
27123
27124 \end_inset
27125 </cell>
27126 </row>
27127 <row>
27128 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27129 \begin_inset Text
27130
27131 \begin_layout Plain Layout
27132
27133 \backslash
27134 ~e
27135 \begin_inset Index idx
27136 status collapsed
27137
27138 \begin_layout Plain Layout
27139 Tilde
27140 \end_layout
27141
27142 \end_inset
27143
27144
27145 \end_layout
27146
27147 \end_inset
27148 </cell>
27149 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
27150 \begin_inset Text
27151
27152 \begin_layout Plain Layout
27153 \begin_inset ERT
27154 status collapsed
27155
27156 \begin_layout Plain Layout
27157
27158
27159 \backslash
27160 ~e
27161 \end_layout
27162
27163 \end_inset
27164
27165
27166 \end_layout
27167
27168 \end_inset
27169 </cell>
27170 </row>
27171 <row>
27172 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27173 \begin_inset Text
27174
27175 \begin_layout Plain Layout
27176
27177 \backslash
27178 .e
27179 \end_layout
27180
27181 \end_inset
27182 </cell>
27183 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
27184 \begin_inset Text
27185
27186 \begin_layout Plain Layout
27187 \begin_inset ERT
27188 status collapsed
27189
27190 \begin_layout Plain Layout
27191
27192
27193 \backslash
27194 .e
27195 \end_layout
27196
27197 \end_inset
27198
27199
27200 \end_layout
27201
27202 \end_inset
27203 </cell>
27204 </row>
27205 <row>
27206 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
27207 \begin_inset Text
27208
27209 \begin_layout Plain Layout
27210
27211 \backslash
27212 v
27213 \begin_inset ERT
27214 status collapsed
27215
27216 \begin_layout Plain Layout
27217
27218
27219 \backslash
27220 leer 
27221 \end_layout
27222
27223 \end_inset
27224
27225 e
27226 \end_layout
27227
27228 \end_inset
27229 </cell>
27230 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
27231 \begin_inset Text
27232
27233 \begin_layout Plain Layout
27234 \begin_inset ERT
27235 status collapsed
27236
27237 \begin_layout Plain Layout
27238
27239
27240 \backslash
27241 v e
27242 \end_layout
27243
27244 \end_inset
27245
27246
27247 \end_layout
27248
27249 \end_inset
27250 </cell>
27251 </row>
27252 <row>
27253 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
27254 \begin_inset Text
27255
27256 \begin_layout Plain Layout
27257
27258 \backslash
27259 d
27260 \begin_inset ERT
27261 status collapsed
27262
27263 \begin_layout Plain Layout
27264
27265
27266 \backslash
27267 leer 
27268 \end_layout
27269
27270 \end_inset
27271
27272 e
27273 \end_layout
27274
27275 \end_inset
27276 </cell>
27277 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
27278 \begin_inset Text
27279
27280 \begin_layout Plain Layout
27281 \begin_inset ERT
27282 status collapsed
27283
27284 \begin_layout Plain Layout
27285
27286
27287 \backslash
27288 d e
27289 \end_layout
27290
27291 \end_inset
27292
27293
27294 \end_layout
27295
27296 \end_inset
27297 </cell>
27298 </row>
27299 <row>
27300 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
27301 \begin_inset Text
27302
27303 \begin_layout Plain Layout
27304
27305 \backslash
27306 c
27307 \begin_inset ERT
27308 status collapsed
27309
27310 \begin_layout Plain Layout
27311
27312
27313 \backslash
27314 leer 
27315 \end_layout
27316
27317 \end_inset
27318
27319 e
27320 \end_layout
27321
27322 \end_inset
27323 </cell>
27324 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
27325 \begin_inset Text
27326
27327 \begin_layout Plain Layout
27328 \begin_inset ERT
27329 status collapsed
27330
27331 \begin_layout Plain Layout
27332
27333
27334 \backslash
27335 c e
27336 \end_layout
27337
27338 \end_inset
27339
27340
27341 \end_layout
27342
27343 \end_inset
27344 </cell>
27345 </row>
27346 </lyxtabular>
27347
27348 \end_inset
27349
27350
27351 \begin_inset space \hfill{}
27352 \end_inset
27353
27354
27355 \end_layout
27356
27357 \begin_layout Standard
27358 \begin_inset VSpace medskip
27359 \end_inset
27360
27361 Mit dem Befehl 
27362 \series bold
27363
27364 \backslash
27365 t
27366 \series default
27367  können auch zwei verschiedene Zeichen akzentuiert werden.
27368  Der Befehl 
27369 \series bold
27370
27371 \backslash
27372 t
27373 \begin_inset ERT
27374 status collapsed
27375
27376 \begin_layout Plain Layout
27377
27378
27379 \backslash
27380 leer 
27381 \end_layout
27382
27383 \end_inset
27384
27385 sz
27386 \series default
27387  ergibt: 
27388 \begin_inset ERT
27389 status collapsed
27390
27391 \begin_layout Plain Layout
27392
27393
27394 \backslash
27395 t sz
27396 \end_layout
27397
27398 \end_inset
27399
27400
27401 \end_layout
27402
27403 \begin_layout Standard
27404 Die Akzente 
27405 \series bold
27406 `
27407 \series default
27408  , 
27409 \series bold
27410 '
27411 \series default
27412  und 
27413 \series bold
27414 ^
27415 \series default
27416  können in Verbindung mit Selbstlauten auch direkt über die Tastatur eingegeben
27417  werden ohne den TeX-Modus zu benutzen.
27418  Dasselbe gilt für die Tilde
27419 \begin_inset Foot
27420 status collapsed
27421
27422 \begin_layout Plain Layout
27423 Gilt nur für Tastaturen, bei denen die Tilde als Akzent definiert ist.
27424 \end_layout
27425
27426 \end_inset
27427
27428  
27429 \series bold
27430 ~
27431 \series default
27432  in Verbindung mit 
27433 \emph on
27434 a
27435 \emph default
27436  , 
27437 \emph on
27438 n
27439 \emph default
27440  oder 
27441 \emph on
27442 o
27443 \emph default
27444 .
27445 \end_layout
27446
27447 \begin_layout Standard
27448 Die Befehle 
27449 \series bold
27450
27451 \backslash
27452 b
27453 \series default
27454  , 
27455 \series bold
27456
27457 \backslash
27458 c
27459 \series default
27460  , 
27461 \series bold
27462
27463 \backslash
27464 d
27465 \series default
27466  , 
27467 \series bold
27468
27469 \backslash
27470 H
27471 \series default
27472  , 
27473 \series bold
27474
27475 \backslash
27476 t
27477 \series default
27478  , 
27479 \series bold
27480
27481 \backslash
27482 u
27483 \series default
27484  , 
27485 \series bold
27486
27487 \backslash
27488 v
27489 \series default
27490  und direkt über die Tastatur eingegebene Akzente sind auch im mathematischen
27491  Textmodus verfügbar.
27492  Für die restlichen Akzente gibt es in Formeln spezielle Mathebefehle, siehe
27493  
27494 \begin_inset CommandInset ref
27495 LatexCommand ref
27496 reference "sub:Akzente-für-ein"
27497
27498 \end_inset
27499
27500 .
27501 \end_layout
27502
27503 \begin_layout Standard
27504 \begin_inset VSpace bigskip
27505 \end_inset
27506
27507 Des Weiteren kann man mit dem Befehl 
27508 \series bold
27509
27510 \backslash
27511 textcircled
27512 \series default
27513
27514 \begin_inset Index idx
27515 status collapsed
27516
27517 \begin_layout Plain Layout
27518 Befehle ! T ! 
27519 \backslash
27520 textcircled
27521 \end_layout
27522
27523 \end_inset
27524
27525 , ähnlich dem Copyrightsymbol, sämtliche Zahlen und Buchstaben in einen
27526  Kreis setzen, quasi mit einem Kreis akzentuieren.
27527 \end_layout
27528
27529 \begin_layout Standard
27530 \align center
27531 \begin_inset Tabular
27532 <lyxtabular version="3" rows="3" columns="2">
27533 <features tabularvalignment="middle">
27534 <column alignment="center" valignment="top" width="0">
27535 <column alignment="center" valignment="top" width="0">
27536 <row>
27537 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
27538 \begin_inset Text
27539
27540 \begin_layout Plain Layout
27541 Befehl
27542 \end_layout
27543
27544 \end_inset
27545 </cell>
27546 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
27547 \begin_inset Text
27548
27549 \begin_layout Plain Layout
27550 Ergebnis
27551 \begin_inset Note Note
27552 status collapsed
27553
27554 \begin_layout Plain Layout
27555
27556 \series bold
27557
27558 \backslash
27559 raisebox
27560 \series default
27561  in der Formel dient nur als Abstandhalter.
27562 \end_layout
27563
27564 \end_inset
27565
27566
27567 \end_layout
27568
27569 \end_inset
27570 </cell>
27571 </row>
27572 <row>
27573 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27574 \begin_inset Text
27575
27576 \begin_layout Plain Layout
27577
27578 \backslash
27579 textcircled{w}
27580 \end_layout
27581
27582 \end_inset
27583 </cell>
27584 <cell multicolumn="1" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
27585 \begin_inset Text
27586
27587 \begin_layout Plain Layout
27588 \begin_inset ERT
27589 status collapsed
27590
27591 \begin_layout Plain Layout
27592
27593
27594 \backslash
27595 textcircled{w}
27596 \end_layout
27597
27598 \end_inset
27599
27600
27601 \end_layout
27602
27603 \end_inset
27604 </cell>
27605 </row>
27606 <row>
27607 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
27608 \begin_inset Text
27609
27610 \begin_layout Plain Layout
27611
27612 \backslash
27613 Large 
27614 \backslash
27615 textcircled{
27616 \backslash
27617 normalsize
27618 \backslash
27619 protect
27620 \backslash
27621 raisebox{-1.5pt}{W}}
27622 \end_layout
27623
27624 \end_inset
27625 </cell>
27626 <cell multicolumn="1" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
27627 \begin_inset Text
27628
27629 \begin_layout Plain Layout
27630 \begin_inset Formula $\raisebox{4.5mm}{}$
27631 \end_inset
27632
27633
27634 \begin_inset ERT
27635 status collapsed
27636
27637 \begin_layout Plain Layout
27638
27639
27640 \backslash
27641 Large 
27642 \backslash
27643 textcircled{
27644 \backslash
27645 normalsize
27646 \backslash
27647 protect
27648 \backslash
27649 raisebox{-1.5pt}W}
27650 \end_layout
27651
27652 \end_inset
27653
27654
27655 \begin_inset Formula $\raisebox{-2mm}{}$
27656 \end_inset
27657
27658
27659 \end_layout
27660
27661 \end_inset
27662 </cell>
27663 </row>
27664 </lyxtabular>
27665
27666 \end_inset
27667
27668
27669 \end_layout
27670
27671 \begin_layout Standard
27672 Man muss darauf achten, dass das Zeichen in einen Kreis passt.
27673  
27674 \series bold
27675
27676 \backslash
27677 Large
27678 \series default
27679
27680 \begin_inset Foot
27681 status collapsed
27682
27683 \begin_layout Plain Layout
27684 siehe 
27685 \begin_inset CommandInset ref
27686 LatexCommand ref
27687 reference "sub:Schriftgrößen"
27688
27689 \end_inset
27690
27691
27692 \end_layout
27693
27694 \end_inset
27695
27696  bestimmt dabei die Größe des Kreises.
27697  Mit Hilfe von 
27698 \series bold
27699
27700 \backslash
27701 raisebox
27702 \series default
27703
27704 \begin_inset Foot
27705 status collapsed
27706
27707 \begin_layout Plain Layout
27708 siehe 
27709 \begin_inset CommandInset ref
27710 LatexCommand ref
27711 reference "sub:Boxen-ohne-Rahmen"
27712
27713 \end_inset
27714
27715
27716 \end_layout
27717
27718 \end_inset
27719
27720  kann man das Zeichen zentrieren.
27721 \end_layout
27722
27723 \begin_layout Subsection
27724 Minuskelziffern
27725 \begin_inset Index idx
27726 status collapsed
27727
27728 \begin_layout Plain Layout
27729 Minuskelziffern
27730 \end_layout
27731
27732 \end_inset
27733
27734
27735 \end_layout
27736
27737 \begin_layout Standard
27738 Minuskelziffern werden mit dem Befehl 
27739 \series bold
27740
27741 \backslash
27742 oldstylenums
27743 \series default
27744
27745 \begin_inset Index idx
27746 status collapsed
27747
27748 \begin_layout Plain Layout
27749 Befehle ! O ! 
27750 \backslash
27751 oldstylenums
27752 \end_layout
27753
27754 \end_inset
27755
27756  erzeugt.
27757  Der Befehl ist sowohl in einer Formel als auch im TeX-Modus verwendbar.
27758  Das Befehlsschema lautet:
27759 \end_layout
27760
27761 \begin_layout Standard
27762
27763 \series bold
27764
27765 \backslash
27766 oldstylenums{Ziffer}
27767 \end_layout
27768
27769 \begin_layout Standard
27770 Der Befehl 
27771 \series bold
27772
27773 \backslash
27774 oldstylenums{0123456789
27775 \series default
27776  ergibt: 
27777 \begin_inset Formula $\oldstylenums{0123456789}$
27778 \end_inset
27779
27780
27781 \end_layout
27782
27783 \begin_layout Subsection
27784 Sonstige Sonderzeichen
27785 \begin_inset CommandInset label
27786 LatexCommand label
27787 name "sub:Sonstige-Sonderzeichen"
27788
27789 \end_inset
27790
27791
27792 \begin_inset Index idx
27793 status collapsed
27794
27795 \begin_layout Plain Layout
27796 Sonderzeichen ! sonstige
27797 \end_layout
27798
27799 \end_inset
27800
27801
27802 \end_layout
27803
27804 \begin_layout Standard
27805 Folgende Zeichen können in eine Formel nur mit Befehlen eingegeben werden:
27806 \end_layout
27807
27808 \begin_layout Standard
27809 \align center
27810 \begin_inset Tabular
27811 <lyxtabular version="3" rows="4" columns="2">
27812 <features tabularvalignment="middle">
27813 <column alignment="center" valignment="top" width="0">
27814 <column alignment="center" valignment="top" width="0">
27815 <row>
27816 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
27817 \begin_inset Text
27818
27819 \begin_layout Plain Layout
27820 Befehl
27821 \end_layout
27822
27823 \end_inset
27824 </cell>
27825 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
27826 \begin_inset Text
27827
27828 \begin_layout Plain Layout
27829 Ergebnis
27830 \end_layout
27831
27832 \end_inset
27833 </cell>
27834 </row>
27835 <row>
27836 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27837 \begin_inset Text
27838
27839 \begin_layout Plain Layout
27840
27841 \backslash
27842 ^
27843 \begin_inset ERT
27844 status collapsed
27845
27846 \begin_layout Plain Layout
27847
27848
27849 \backslash
27850 leer 
27851 \end_layout
27852
27853 \end_inset
27854
27855
27856 \end_layout
27857
27858 \end_inset
27859 </cell>
27860 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
27861 \begin_inset Text
27862
27863 \begin_layout Plain Layout
27864 \begin_inset Formula $\mathcircumflex$
27865 \end_inset
27866
27867
27868 \end_layout
27869
27870 \end_inset
27871 </cell>
27872 </row>
27873 <row>
27874 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27875 \begin_inset Text
27876
27877 \begin_layout Plain Layout
27878
27879 \backslash
27880 _
27881 \end_layout
27882
27883 \end_inset
27884 </cell>
27885 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
27886 \begin_inset Text
27887
27888 \begin_layout Plain Layout
27889 \begin_inset Formula $\_$
27890 \end_inset
27891
27892
27893 \end_layout
27894
27895 \end_inset
27896 </cell>
27897 </row>
27898 <row>
27899 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
27900 \begin_inset Text
27901
27902 \begin_layout Plain Layout
27903 ^
27904 \begin_inset ERT
27905 status collapsed
27906
27907 \begin_layout Plain Layout
27908
27909
27910 \backslash
27911 leer 
27912 \end_layout
27913
27914 \end_inset
27915
27916
27917 \backslash
27918 circ
27919 \begin_inset Index idx
27920 status collapsed
27921
27922 \begin_layout Plain Layout
27923
27924 \backslash
27925
27926 \end_layout
27927
27928 \end_inset
27929
27930
27931 \end_layout
27932
27933 \end_inset
27934 </cell>
27935 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
27936 \begin_inset Text
27937
27938 \begin_layout Plain Layout
27939 \begin_inset Formula $^{\circ}$
27940 \end_inset
27941
27942
27943 \end_layout
27944
27945 \end_inset
27946 </cell>
27947 </row>
27948 </lyxtabular>
27949
27950 \end_inset
27951
27952
27953 \end_layout
27954
27955 \begin_layout Standard
27956 Das Gradzeichen ° kann dennoch direkt eingegeben werden, wenn der LaTeX-Vorspann
27957  folgende Zeile enthält
27958 \begin_inset Foot
27959 status collapsed
27960
27961 \begin_layout Plain Layout
27962 Mehr dazu ist in 
27963 \begin_inset CommandInset ref
27964 LatexCommand ref
27965 reference "sub:Textzeichen-in-Formeln"
27966
27967 \end_inset
27968
27969  beschrieben.
27970 \end_layout
27971
27972 \end_inset
27973
27974 :
27975 \end_layout
27976
27977 \begin_layout Standard
27978
27979 \series bold
27980
27981 \backslash
27982 DeclareInputText{176}{
27983 \backslash
27984 ifmmode^
27985 \backslash
27986 circ
27987 \backslash
27988 else
27989 \backslash
27990 textdegree
27991 \backslash
27992 fi}
27993 \end_layout
27994
27995 \begin_layout Section
27996 Formelstile
27997 \begin_inset CommandInset label
27998 LatexCommand label
27999 name "sec:Formelstile"
28000
28001 \end_inset
28002
28003
28004 \begin_inset Index idx
28005 status collapsed
28006
28007 \begin_layout Plain Layout
28008 Formel ! Stile
28009 \end_layout
28010
28011 \end_inset
28012
28013
28014 \end_layout
28015
28016 \begin_layout Itemize
28017 Für abgesetzte Formeln gibt es zwei verschiedene Anordnungsstile:
28018 \end_layout
28019
28020 \begin_deeper
28021 \begin_layout Description
28022 Zentriert ist der voreingestellte Standard
28023 \end_layout
28024
28025 \begin_layout Description
28026 Eingerückt dazu muss im Menü 
28027 \family sans
28028 Dokument\SpecialChar \menuseparator
28029 Einstellungen
28030 \family default
28031  unter 
28032 \family sans
28033 Dokumentklasse
28034 \family default
28035  die Option 
28036 \series bold
28037 fleqn
28038 \series default
28039  eingeben werden
28040 \end_layout
28041
28042 \begin_layout Standard
28043 Wird 
28044 \series bold
28045 Eingerückt
28046 \series default
28047  verwendet, kann mit der Länge 
28048 \series bold
28049
28050 \backslash
28051 mathindent
28052 \series default
28053
28054 \begin_inset Index idx
28055 status collapsed
28056
28057 \begin_layout Plain Layout
28058 Befehle ! M ! 
28059 \backslash
28060 mathindent
28061 \end_layout
28062
28063 \end_inset
28064
28065  die Einrückung eingestellt werden.
28066  Soll der Abstand 15
28067 \begin_inset space \thinspace{}
28068 \end_inset
28069
28070 mm betragen, gibt man im LaTeX-Vorspann die Zeile
28071 \end_layout
28072
28073 \begin_layout Standard
28074
28075 \series bold
28076
28077 \backslash
28078 setlength{
28079 \backslash
28080 mathindent}{15mm}
28081 \end_layout
28082
28083 \begin_layout Standard
28084 ein.
28085  Wenn keine Länge vorgegeben wird, wird der voreingestellte Wert von 30
28086 \begin_inset space \thinspace{}
28087 \end_inset
28088
28089 pt verwendet.
28090 \end_layout
28091
28092 \end_deeper
28093 \begin_layout Itemize
28094 Und zwei verschiedene Nummerierungsstile:
28095 \end_layout
28096
28097 \begin_deeper
28098 \begin_layout Description
28099 Rechts ist der voreingestellte Standard
28100 \end_layout
28101
28102 \begin_layout Description
28103 Links dazu muss im Menü 
28104 \family sans
28105 Dokument\SpecialChar \menuseparator
28106 Einstellungen
28107 \family default
28108  unter 
28109 \family sans
28110 Dokumentklasse
28111 \family default
28112  die Option 
28113 \series bold
28114 leqno
28115 \series default
28116  eingeben werden
28117 \end_layout
28118
28119 \end_deeper
28120 \begin_layout Standard
28121
28122 \series bold
28123 fleqn
28124 \series default
28125  und 
28126 \series bold
28127 leqno
28128 \series default
28129  können auch gemeinsam verwendet werden.
28130  Dazu werden beide Optionen, durch ein Komma getrennt, hintereinander geschriebe
28131 n.
28132 \end_layout
28133
28134 \begin_layout Standard
28135 Die eingestellten Stile gelten für alle abgesetzten Formeln eines Dokuments.
28136  Möchte man jedoch in einem Dokument sowohl zentrierte als auch eingerückte
28137  ausgerichtete Formeln setzen, verwendet man den Stil 
28138 \series bold
28139 Zentriert
28140 \series default
28141 .
28142  Die einzurückenden Formeln setzt man dann in eine flalign-Umgebung, siehe
28143  
28144 \begin_inset CommandInset ref
28145 LatexCommand ref
28146 reference "sub:Flalign-Umgebung"
28147
28148 \end_inset
28149
28150 .
28151 \end_layout
28152
28153 \begin_layout Section
28154 Mehrzeilige Formeln
28155 \begin_inset CommandInset label
28156 LatexCommand label
28157 name "sec:Mehrzeilige-Formeln"
28158
28159 \end_inset
28160
28161
28162 \begin_inset Index idx
28163 status collapsed
28164
28165 \begin_layout Plain Layout
28166 Formel ! mehrzeilige
28167 \end_layout
28168
28169 \end_inset
28170
28171
28172 \end_layout
28173
28174 \begin_layout Subsection
28175 Allgemeines
28176 \end_layout
28177
28178 \begin_layout Standard
28179 In LyX werden mehrzeilige Formeln erstellt, wenn man in einer Formel 
28180 \family sans
28181 \series bold
28182 Strg+Enter
28183 \family default
28184 \series default
28185  drückt.
28186  Dies erzeugt entweder eine 
28187 \series bold
28188 eqnarray-Umgebung
28189 \series default
28190 , die in 
28191 \begin_inset CommandInset ref
28192 LatexCommand ref
28193 reference "sub:Eqnarray-Umgebung"
28194
28195 \end_inset
28196
28197  beschrieben ist oder, wenn die Option 
28198 \family sans
28199 AMS-Mathe-Paket verwenden
28200 \family default
28201  in den Dokumenteinstellungen gewählt ist, eine 
28202 \series bold
28203 align-Umgebung
28204 \series default
28205 , die in 
28206 \begin_inset CommandInset ref
28207 LatexCommand ref
28208 reference "sub:Standard-align-Umgebung"
28209
28210 \end_inset
28211
28212  beschrieben ist.
28213  Es wird empfohlen die align-Umgebung zu verwenden, denn sie erscheint in
28214  jedem Fall typographisch korrekt in der Ausgabe.
28215 \end_layout
28216
28217 \begin_layout Standard
28218 Es gibt noch weitere mehrzeilige Formelumgebungen, die über das Menü 
28219 \family sans
28220 Einfügen\SpecialChar \menuseparator
28221 Mathe
28222 \family default
28223  erstellt werden können.
28224  Diese Umgebungen werden in den folgenden Kapiteln beschrieben.
28225 \end_layout
28226
28227 \begin_layout Standard
28228 In allen mehrzeiligen Formelumgebungen erstellt man eine neue Zeile, indem
28229  man 
28230 \family sans
28231 Strg+Enter
28232 \family default
28233  drückt.
28234  Um Spalten hinzuzufügen oder zu entfernen, können die Mathe-Werkzeugleistenknöp
28235 fe 
28236 \begin_inset Graphics
28237         filename ../../images/tabular-feature_append-row.png
28238         scale 85
28239
28240 \end_inset
28241
28242  bzw.
28243 \begin_inset space \space{}
28244 \end_inset
28245
28246
28247 \begin_inset Graphics
28248         filename ../../images/tabular-feature_delete-row.png
28249         scale 85
28250
28251 \end_inset
28252
28253  oder das Menü 
28254 \family sans
28255 Bearbeiten\SpecialChar \menuseparator
28256 Zeilen & Spalten
28257 \family default
28258  verwendet werden.
28259 \end_layout
28260
28261 \begin_layout Subsubsection
28262 Zeilenabstand
28263 \begin_inset CommandInset label
28264 LatexCommand label
28265 name "sub:Zeilenabstand"
28266
28267 \end_inset
28268
28269
28270 \begin_inset Index idx
28271 status collapsed
28272
28273 \begin_layout Plain Layout
28274 Formel ! mehrzeilige ! Zeilenabstand
28275 \end_layout
28276
28277 \end_inset
28278
28279
28280 \end_layout
28281
28282 \begin_layout Standard
28283 Bei mehrzeiligen Formeln fehlt manchmal etwas Platz zwischen den Zeilen:
28284 \begin_inset Formula 
28285 \begin{eqnarray*}
28286 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}\\
28287 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
28288 \end{eqnarray*}
28289
28290 \end_inset
28291
28292
28293 \end_layout
28294
28295 \begin_layout Standard
28296 In LaTeX wird zusätzlicher Zeilenabstand als optionales Argument des Zeilenumbru
28297 chbefehls angegeben.
28298  Dies ist in LyX aber nicht möglich
28299 \begin_inset Foot
28300 status collapsed
28301
28302 \begin_layout Plain Layout
28303 siehe 
28304 \begin_inset CommandInset href
28305 LatexCommand href
28306 name "LyX-Fehler #1505"
28307 target "http://www.lyx.org/trac/ticket/1505"
28308
28309 \end_inset
28310
28311
28312 \end_layout
28313
28314 \end_inset
28315
28316 , weshalb man die ganze Formel im TeX-Modus eingeben muss.
28317  Um für unser Beispiel Leerraum einzufügen, gibt man am Ende der ersten
28318  Zeile den Befehl 
28319 \series bold
28320
28321 \backslash
28322
28323 \backslash
28324 [3mm]
28325 \series default
28326  ein.
28327  Damit erhält man: 
28328 \begin_inset ERT
28329 status collapsed
28330
28331 \begin_layout Plain Layout
28332
28333
28334 \backslash
28335 begin{eqnarray*}
28336 \end_layout
28337
28338 \begin_layout Plain Layout
28339
28340 B^{2}(B^{2}-2r_{g}^{2}+2x_{0}^{2}-2r_{k}^{2})+4x_{0}^{2}x^{2}+4x_{0}xD &
28341  = & 
28342 \backslash
28343 textrm{-}4x^{2}B^{2}+4x_{0}xB^{2}
28344 \backslash
28345
28346 \backslash
28347 [3mm]
28348 \end_layout
28349
28350 \begin_layout Plain Layout
28351
28352 4x^{2}
28353 \backslash
28354 left(B^{2}+x_{0}^{2}
28355 \backslash
28356 right)+4x_{0}x
28357 \backslash
28358 left(D-B^{2}
28359 \backslash
28360 right)+B^{2}
28361 \backslash
28362 left(B^{2}-2r_{g}^{2}+2x_{0}^{2}-2r_{k}^{2}
28363 \backslash
28364 right) & = & 0
28365 \end_layout
28366
28367 \begin_layout Plain Layout
28368
28369
28370 \backslash
28371 end{eqnarray*}
28372 \end_layout
28373
28374 \end_inset
28375
28376
28377 \end_layout
28378
28379 \begin_layout Standard
28380 \begin_inset VSpace bigskip
28381 \end_inset
28382
28383 Möchte man den Zeilenabstand für alle Zeilen einer Formel festlegen, verändert
28384  man die Länge 
28385 \series bold
28386
28387 \backslash
28388 jot
28389 \series default
28390
28391 \begin_inset Index idx
28392 status collapsed
28393
28394 \begin_layout Plain Layout
28395 Befehle ! J ! 
28396 \backslash
28397 jot
28398 \end_layout
28399
28400 \end_inset
28401
28402 .
28403  Es gilt 
28404 \begin_inset Formula $\mbox{Zeilenabstand}=\mathrm{6\, pt+\backslash jot}$
28405 \end_inset
28406
28407 .
28408  Voreingestellt ist für 
28409 \series bold
28410
28411 \backslash
28412 jot
28413 \series default
28414  der Wert 3
28415 \begin_inset space \thinspace{}
28416 \end_inset
28417
28418 pt.
28419  Um wie im vorigen Beispiel 3
28420 \begin_inset space \thinspace{}
28421 \end_inset
28422
28423 mm zusätzlichen Zeilenabstand zu erzeugen, gibt man den Befehl
28424 \end_layout
28425
28426 \begin_layout Standard
28427
28428 \series bold
28429
28430 \backslash
28431 setlength{
28432 \backslash
28433 jot}{3mm+3pt}
28434 \end_layout
28435
28436 \begin_layout Standard
28437 im TeX-Modus vor der Formel ein.
28438  Das setzt voraus, dass das LaTeX-Paket 
28439 \series bold
28440 calc
28441 \series default
28442
28443 \begin_inset Foot
28444 status collapsed
28445
28446 \begin_layout Plain Layout
28447
28448 \series bold
28449 calc
28450 \series default
28451  ist Teil jeder LaTeX-Standardinstallation.
28452 \end_layout
28453
28454 \end_inset
28455
28456
28457 \begin_inset Index idx
28458 status collapsed
28459
28460 \begin_layout Plain Layout
28461 Pakete ! calc
28462 \end_layout
28463
28464 \end_inset
28465
28466  im LaTeX-Vorspann mit der Zeile
28467 \end_layout
28468
28469 \begin_layout Standard
28470
28471 \series bold
28472
28473 \backslash
28474 usepackage{calc}
28475 \end_layout
28476
28477 \begin_layout Standard
28478 geladen wurde.
28479 \end_layout
28480
28481 \begin_layout Standard
28482 Man erhält: 
28483 \begin_inset ERT
28484 status collapsed
28485
28486 \begin_layout Plain Layout
28487
28488
28489 \backslash
28490 setlength{
28491 \backslash
28492 jot}{3mm+3pt}
28493 \end_layout
28494
28495 \end_inset
28496
28497
28498 \begin_inset Formula 
28499 \begin{eqnarray*}
28500 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}\\
28501 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
28502 \end{eqnarray*}
28503
28504 \end_inset
28505
28506
28507 \end_layout
28508
28509 \begin_layout Standard
28510 \begin_inset ERT
28511 status collapsed
28512
28513 \begin_layout Plain Layout
28514
28515
28516 \backslash
28517 setlength{
28518 \backslash
28519 jot}{3pt}
28520 \end_layout
28521
28522 \end_inset
28523
28524  Um wieder zum voreingestellten Abstand zu wechseln, setzt man 
28525 \series bold
28526
28527 \backslash
28528 jot
28529 \series default
28530  auf den Wert 3
28531 \begin_inset space \thinspace{}
28532 \end_inset
28533
28534 pt.
28535 \end_layout
28536
28537 \begin_layout Subsubsection
28538 Spaltenabstand
28539 \begin_inset CommandInset label
28540 LatexCommand label
28541 name "sub:Spaltenabstand"
28542
28543 \end_inset
28544
28545
28546 \begin_inset Index idx
28547 status collapsed
28548
28549 \begin_layout Plain Layout
28550 Formel ! mehrzeilige ! Spaltenabstand
28551 \end_layout
28552
28553 \end_inset
28554
28555
28556 \end_layout
28557
28558 \begin_layout Standard
28559 Mehrzeilige Formeln bilden eine Matrix.
28560  Eine Formel in der Eqnarray-Umgebung ist z.
28561 \begin_inset space \thinspace{}
28562 \end_inset
28563
28564 B.
28565  eine dreispaltige Matrix.
28566  Durch Änderung des Spaltenabstands in dieser Umgebung, kann man den Leerraum
28567  neben den Relationszeichen ändern.
28568 \end_layout
28569
28570 \begin_layout Standard
28571 Der Spaltenabstand wird mit der Länge 
28572 \series bold
28573
28574 \backslash
28575 arraycolsep
28576 \series default
28577
28578 \begin_inset Index idx
28579 status collapsed
28580
28581 \begin_layout Plain Layout
28582 Befehle ! A ! 
28583 \backslash
28584 arraycolsep
28585 \end_layout
28586
28587 \end_inset
28588
28589  festgelegt, wobei gilt:
28590 \begin_inset Newline newline
28591 \end_inset
28592
28593 Spaltenabstand = 2
28594 \begin_inset space \thinspace{}
28595 \end_inset
28596
28597
28598 \series bold
28599
28600 \backslash
28601 arraycolsep
28602 \series default
28603 .
28604 \begin_inset Newline newline
28605 \end_inset
28606
28607 Der im TeX-Modus eingegebene Befehl
28608 \end_layout
28609
28610 \begin_layout Standard
28611
28612 \series bold
28613
28614 \backslash
28615 setlength{
28616 \backslash
28617 arraycolsep}{1cm}
28618 \end_layout
28619
28620 \begin_layout Standard
28621 bewirkt also für alle folgenden Formeln einen Spaltenabstand von 2
28622 \begin_inset space \thinspace{}
28623 \end_inset
28624
28625 cm.
28626  Um wieder zum voreingestellten Abstand zurückzukehren, setzt man 
28627 \series bold
28628
28629 \backslash
28630 arraycolsep
28631 \series default
28632  auf 5
28633 \begin_inset space \thinspace{}
28634 \end_inset
28635
28636 pt.
28637 \end_layout
28638
28639 \begin_layout Standard
28640 Eine Formel mit 2
28641 \begin_inset space \thinspace{}
28642 \end_inset
28643
28644 cm Spaltenabstand:
28645 \begin_inset ERT
28646 status collapsed
28647
28648 \begin_layout Plain Layout
28649
28650
28651 \backslash
28652 setlength{
28653 \backslash
28654 arraycolsep}{1cm}
28655 \end_layout
28656
28657 \end_inset
28658
28659
28660 \begin_inset Formula 
28661 \begin{eqnarray*}
28662 A & = & B\\
28663 C & \ne & A
28664 \end{eqnarray*}
28665
28666 \end_inset
28667
28668 Eine Formel mit dem für Matrizen voreingestellten Spaltenabstand von 10
28669 \begin_inset space \thinspace{}
28670 \end_inset
28671
28672 pt:
28673 \begin_inset ERT
28674 status collapsed
28675
28676 \begin_layout Plain Layout
28677
28678
28679 \backslash
28680 setlength{
28681 \backslash
28682 arraycolsep}{5pt}
28683 \end_layout
28684
28685 \end_inset
28686
28687
28688 \begin_inset Formula 
28689 \begin{eqnarray*}
28690 A & = & B\\
28691 C & \ne & A
28692 \end{eqnarray*}
28693
28694 \end_inset
28695
28696
28697 \end_layout
28698
28699 \begin_layout Subsubsection
28700 Lange Formeln
28701 \begin_inset Index idx
28702 status collapsed
28703
28704 \begin_layout Plain Layout
28705 Formel ! lange
28706 \end_layout
28707
28708 \end_inset
28709
28710
28711 \end_layout
28712
28713 \begin_layout Standard
28714 Lange Formeln kann man wie folgt setzen:
28715 \end_layout
28716
28717 \begin_layout Itemize
28718 Ist eine Seite der Gleichung deutlich kürzer als die Zeilenbreite, wählt
28719  man man diese als linke Seite und schreibt die rechte über zwei Zeilen:
28720 \begin_inset Formula 
28721 \begin{eqnarray}
28722 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 \\
28723  &  & -\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}
28724 \end{eqnarray}
28725
28726 \end_inset
28727
28728 Das Minuszeichen zu Beginn der zweiten Zeile erscheint eigentlich nicht
28729  als Operator, da es das erste Zeichen der Zeile ist.
28730  Deswegen wäre es nicht von Leerraum umgeben und ließe sich schlecht vom
28731  Bruchstrich unterscheiden.
28732  Um das zu verhindern, wurde mit dem Befehl 
28733 \series bold
28734
28735 \backslash
28736 hspace
28737 \series default
28738  3
28739 \begin_inset space \thinspace{}
28740 \end_inset
28741
28742 pt Leerraum hinter das Minuszeichen eingefügt.
28743 \begin_inset Foot
28744 status collapsed
28745
28746 \begin_layout Plain Layout
28747 mehr zu 
28748 \series bold
28749
28750 \backslash
28751 hspace
28752 \series default
28753  siehe 
28754 \begin_inset CommandInset ref
28755 LatexCommand ref
28756 reference "sub:Variabler-Leerraum"
28757
28758 \end_inset
28759
28760
28761 \end_layout
28762
28763 \end_inset
28764
28765
28766 \begin_inset Index idx
28767 status collapsed
28768
28769 \begin_layout Plain Layout
28770 Befehle ! H ! 
28771 \backslash
28772 hspace
28773 \end_layout
28774
28775 \end_inset
28776
28777
28778 \end_layout
28779
28780 \begin_layout Itemize
28781 Sind beide Seiten der Gleichung zu lang, verwendet man den Befehl 
28782 \series bold
28783
28784 \backslash
28785 lefteqn
28786 \series default
28787
28788 \begin_inset Index idx
28789 status collapsed
28790
28791 \begin_layout Plain Layout
28792 Befehle ! L ! 
28793 \backslash
28794 lefteqn
28795 \end_layout
28796
28797 \end_inset
28798
28799 .
28800  Dieser wird in die erste Spalte der ersten Zeile eingegeben und bewirkt,
28801  dass alle weiteren Eingaben die folgenden Spalten überschreiben:
28802 \begin_inset Formula 
28803 \begin{eqnarray}
28804 \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 \\
28805  &  & -\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 \\
28806  &  & =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}
28807 \end{eqnarray}
28808
28809 \end_inset
28810
28811 Nachdem man 
28812 \series bold
28813
28814 \backslash
28815 lefteqn
28816 \series default
28817  eingegeben hat, befindet sich der Cursor in einem pinkfarbenen Kästchen,
28818  das gegenüber dem blauen leicht verschoben ist.
28819  In dieses wird die Formel eingegeben.
28820 \begin_inset Newline newline
28821 \end_inset
28822
28823 Der Inhalt der weiteren Zeilen wird in die zweite oder eine andere Formelspalte
28824  eingegeben.
28825  Je größer die Spaltennummer in die eingegeben wurde, desto größer ist die
28826  Einrückung.
28827 \begin_inset VSpace medskip
28828 \end_inset
28829
28830
28831 \begin_inset Newline newline
28832 \end_inset
28833
28834
28835 \begin_inset Note Greyedout
28836 status open
28837
28838 \begin_layout Plain Layout
28839 Bei der Verwendung von 
28840 \series bold
28841
28842 \backslash
28843 lefteqn
28844 \series default
28845  ist Folgendes zu beachten:
28846 \end_layout
28847
28848 \begin_layout Itemize
28849 Die Formel nutzt nicht die gesamte Seitenbreite aus.
28850  Würde man in obigem Beispiel der ersten Zeile den Term 
28851 \begin_inset Formula $-B^{2}$
28852 \end_inset
28853
28854  anfügen, befände sich dieser außerhalb des Seitenrands.
28855  Um die Breite besser auszunutzen, kann man zu Beginn der ersten Zeile negativen
28856  Leerraum einfügen.
28857 \end_layout
28858
28859 \begin_layout Itemize
28860 Aufgrund eines Fehlers in LyX kann der Cursor nicht mit der Maus in die
28861  erste Zeile gesetzt werden.
28862 \begin_inset Foot
28863 status collapsed
28864
28865 \begin_layout Plain Layout
28866 \begin_inset CommandInset href
28867 LatexCommand href
28868 name "LyX-Fehler #1429"
28869 target "http://www.lyx.org/trac/ticket/1429"
28870
28871 \end_inset
28872
28873
28874 \end_layout
28875
28876 \end_inset
28877
28878  Man kann den Cursor nur an den Anfang der Zeile setzen und ihn mit den
28879  Pfeiltasten bewegen.
28880 \end_layout
28881
28882 \end_inset
28883
28884
28885 \end_layout
28886
28887 \begin_layout Itemize
28888 Weitere Möglichkeiten lange Formeln zu setzen, bieten die in 
28889 \begin_inset CommandInset ref
28890 LatexCommand ref
28891 reference "sub:Multline-Umgebung"
28892
28893 \end_inset
28894
28895  und 
28896 \begin_inset CommandInset ref
28897 LatexCommand ref
28898 reference "sub:Mehrzeilige-Formelteile"
28899
28900 \end_inset
28901
28902  beschriebenen Umgebungen.
28903 \end_layout
28904
28905 \begin_layout Subsubsection
28906 Mehrzeilige Klammern
28907 \begin_inset CommandInset label
28908 LatexCommand label
28909 name "sub:Mehrzeilige-Klammern"
28910
28911 \end_inset
28912
28913
28914 \begin_inset Index idx
28915 status collapsed
28916
28917 \begin_layout Plain Layout
28918 Klammern ! mehrzeilige
28919 \end_layout
28920
28921 \end_inset
28922
28923
28924 \end_layout
28925
28926 \begin_layout Standard
28927 Bei Klammern, die über mehrere Zeilen gehen, tritt folgendes Problem auf:
28928 \begin_inset Formula 
28929 \begin{eqnarray*}
28930 A & = & \sin(x)\left[\prod_{R=1}^{\infty}\frac{1}{R}+\cdots\right.\\
28931  &  & \left.\cdots+B-D\right]
28932 \end{eqnarray*}
28933
28934 \end_inset
28935
28936
28937 \end_layout
28938
28939 \begin_layout Standard
28940 Die schließende Klammer ist kleiner als die öffnende, denn Klammern variabler
28941  Größe dürfen nicht über mehrere Zeilen gehen.
28942 \end_layout
28943
28944 \begin_layout Standard
28945 Um die Größe für die Klammer der zweiten Zeile anzupassen, beendet man die
28946  erste Zeile mit 
28947 \series bold
28948
28949 \backslash
28950 right.
28951 \series default
28952
28953 \begin_inset Index idx
28954 status collapsed
28955
28956 \begin_layout Plain Layout
28957 Befehle ! R ! 
28958 \backslash
28959 right
28960 \end_layout
28961
28962 \end_inset
28963
28964  und beginnt die zweite Zeile mit 
28965 \series bold
28966
28967 \backslash
28968 left.
28969 \begin_inset Foot
28970 status collapsed
28971
28972 \begin_layout Plain Layout
28973 mehr zu 
28974 \series bold
28975
28976 \backslash
28977 left
28978 \series default
28979  und 
28980 \series bold
28981
28982 \backslash
28983 right
28984 \series default
28985  siehe 
28986 \begin_inset CommandInset ref
28987 LatexCommand ref
28988 reference "sub:Automatische-Klammergrößen"
28989
28990 \end_inset
28991
28992
28993 \end_layout
28994
28995 \end_inset
28996
28997
28998 \series default
28999
29000 \begin_inset Index idx
29001 status collapsed
29002
29003 \begin_layout Plain Layout
29004 Befehle ! L ! 
29005 \backslash
29006 left
29007 \end_layout
29008
29009 \end_inset
29010
29011 .
29012  Nach 
29013 \series bold
29014
29015 \backslash
29016 left.
29017
29018 \series default
29019  gibt man den Befehl 
29020 \series bold
29021
29022 \backslash
29023 vphantom
29024 \series default
29025
29026 \begin_inset ERT
29027 status collapsed
29028
29029 \begin_layout Plain Layout
29030
29031
29032 \backslash
29033 leer 
29034 \end_layout
29035
29036 \end_inset
29037
29038
29039 \series bold
29040
29041 \backslash
29042 prod
29043 \series default
29044 ^
29045 \begin_inset ERT
29046 status collapsed
29047
29048 \begin_layout Plain Layout
29049
29050
29051 \backslash
29052 leer 
29053 \end_layout
29054
29055 \end_inset
29056
29057
29058 \series bold
29059
29060 \backslash
29061 infty
29062 \series default
29063
29064 \begin_inset ERT
29065 status collapsed
29066
29067 \begin_layout Plain Layout
29068
29069
29070 \backslash
29071 leer 
29072 \end_layout
29073
29074 \end_inset
29075
29076
29077 \series bold
29078
29079 \begin_inset Formula $\downarrow$
29080 \end_inset
29081
29082 _R=1}
29083 \series default
29084
29085 \begin_inset Index idx
29086 status collapsed
29087
29088 \begin_layout Plain Layout
29089 Befehle ! V ! 
29090 \backslash
29091 vphantom
29092 \end_layout
29093
29094 \end_inset
29095
29096  ein, denn der Multiplikationsoperator mit seinen Grenzen ist das größte
29097  Symbol der ersten Zeile, und daran soll die zweite Klammer angepasst werden.
29098 \end_layout
29099
29100 \begin_layout Standard
29101 Das Ergebnis sieht so aus:
29102 \begin_inset Formula 
29103 \begin{eqnarray*}
29104 A & = & \sin(x)\left[\prod_{R=1}^{\infty}\frac{1}{R}+\cdots\right.\\
29105  &  & \left.\vphantom{\prod_{R=1}^{\infty}}\cdots+B-D\right]
29106 \end{eqnarray*}
29107
29108 \end_inset
29109
29110
29111 \end_layout
29112
29113 \begin_layout Subsection
29114 Align-Umgebungen
29115 \end_layout
29116
29117 \begin_layout Standard
29118 Align-Umgebungen können für jede Art von mehrzeiligen Formeln verwendet
29119  werden.
29120  Sie sind besonders geeignet um mehrere Formeln nebeneinander zu setzen.
29121 \end_layout
29122
29123 \begin_layout Standard
29124 Align-Umgebungen bestehen aus Spalten.
29125  Die ungeradzahligen Spalten sind rechts-, die geradzahligen linksbündig
29126  ausgerichtet.
29127  Jede Zeile einer Align-Umgebung kann nummeriert werden.
29128 \end_layout
29129
29130 \begin_layout Standard
29131 Align-Umgebung werden über das Menü 
29132 \family sans
29133 Einfügen\SpecialChar \menuseparator
29134 Mathe
29135 \family default
29136  erstellt.
29137  Über das Menü 
29138 \family sans
29139 Bearbeiten\SpecialChar \menuseparator
29140 Mathe\SpecialChar \menuseparator
29141 Formelart
29142 \begin_inset space ~
29143 \end_inset
29144
29145 ändern
29146 \family default
29147  können bereits existierende Formeln in Align-Umgebungen umgewandelt werden.
29148 \end_layout
29149
29150 \begin_layout Standard
29151 Um Spalten hinzuzufügen oder zu entfernen, können die Mathe-Werkzeugleistenknöpf
29152
29153 \begin_inset Graphics
29154         filename ../../images/tabular-feature_append-column.png
29155         scale 85
29156
29157 \end_inset
29158
29159  bzw.
29160 \begin_inset space \space{}
29161 \end_inset
29162
29163
29164 \begin_inset Graphics
29165         filename ../../images/tabular-feature_delete-column.png
29166         scale 85
29167
29168 \end_inset
29169
29170  oder das Menü 
29171 \family sans
29172 Bearbeiten\SpecialChar \menuseparator
29173 Zeilen & Spalten
29174 \family default
29175  verwendet werden.
29176 \end_layout
29177
29178 \begin_layout Subsubsection
29179 Standard align-Umgebung
29180 \begin_inset CommandInset label
29181 LatexCommand label
29182 name "sub:Standard-align-Umgebung"
29183
29184 \end_inset
29185
29186
29187 \begin_inset Index idx
29188 status collapsed
29189
29190 \begin_layout Plain Layout
29191 Formel ! mehrzeilige ! align-Umgebung
29192 \end_layout
29193
29194 \end_inset
29195
29196
29197 \end_layout
29198
29199 \begin_layout Standard
29200 Diese Align-Umgebung wird erstellt, indem man in einer Formel 
29201 \family sans
29202 Strg+Enter
29203 \family default
29204  drückt oder das Menü 
29205 \family sans
29206 Einfügen\SpecialChar \menuseparator
29207 Mathe\SpecialChar \menuseparator
29208 AMS align-Umge\SpecialChar \-
29209 bung
29210 \family default
29211  aufruft.
29212 \end_layout
29213
29214 \begin_layout Standard
29215 Ein Beispiel für zwei nebeneinander stehende Formeln, die mit einer vierspaltige
29216 n align-Umgebung erzeugt wurden:
29217 \begin_inset Formula 
29218 \begin{align*}
29219 A & =\sin(B) & C & =D\\
29220 C & \ne A & B & \ne D
29221 \end{align*}
29222
29223 \end_inset
29224
29225 Wie man sieht, werden die Formeln in dieser Umgebung so angeordnet, als
29226  würde sich vor der ersten und hinter jeder geraden Spalte ein 
29227 \series bold
29228
29229 \backslash
29230 hfill
29231 \begin_inset Foot
29232 status collapsed
29233
29234 \begin_layout Plain Layout
29235 mehr zu 
29236 \series bold
29237
29238 \backslash
29239 hfill
29240 \series default
29241  siehe 
29242 \begin_inset CommandInset ref
29243 LatexCommand ref
29244 reference "sub:Variabler-Leerraum"
29245
29246 \end_inset
29247
29248
29249 \end_layout
29250
29251 \end_inset
29252
29253
29254 \series default
29255  befinden.
29256  Ist der Formelstil 
29257 \series bold
29258 Eingerückt
29259 \begin_inset Foot
29260 status collapsed
29261
29262 \begin_layout Plain Layout
29263 Formelstile siehe 
29264 \begin_inset CommandInset ref
29265 LatexCommand ref
29266 reference "sec:Formelstile"
29267
29268 \end_inset
29269
29270
29271 \end_layout
29272
29273 \end_inset
29274
29275
29276 \series default
29277  gewählt, wird die Formel ohne den 
29278 \series bold
29279
29280 \backslash
29281 hfill
29282 \series default
29283  vor der ersten Spalte gesetzt.
29284 \end_layout
29285
29286 \begin_layout Subsubsection
29287 Alignat-Umgebung
29288 \begin_inset Index idx
29289 status collapsed
29290
29291 \begin_layout Plain Layout
29292 Formel ! mehrzeilige ! alignat-Umgebung
29293 \end_layout
29294
29295 \end_inset
29296
29297
29298 \end_layout
29299
29300 \begin_layout Standard
29301 In der alignat-Umgebung gibt es keinen vordefinierten Spaltenabstand.
29302  Man kann ihn manuell durch die in 
29303 \begin_inset CommandInset ref
29304 LatexCommand ref
29305 reference "sub:Leerraum"
29306
29307 \end_inset
29308
29309  beschriebenen Leerräume einfügen.
29310 \end_layout
29311
29312 \begin_layout Standard
29313 Das vorige Beispiel in der alignat-Umgebung, bei dem zu Beginn der zweiten
29314  Formel 1
29315 \begin_inset space \thinspace{}
29316 \end_inset
29317
29318 cm Leerraum eingefügt wurde:
29319 \begin_inset Formula 
29320 \begin{alignat*}{2}
29321 A & =\sin(B) & \hspace{1cm}C & =D\\
29322 C & \ne A & B & \ne D
29323 \end{alignat*}
29324
29325 \end_inset
29326
29327 Weil man den Spaltenabstand für jede Spalte einzeln einstellen kann, eignet
29328  sich diese Umgebung besonders für drei und mehr nebeneinander gesetzte
29329  Formeln.
29330 \end_layout
29331
29332 \begin_layout Subsubsection
29333 Flalign-Umgebung
29334 \begin_inset CommandInset label
29335 LatexCommand label
29336 name "sub:Flalign-Umgebung"
29337
29338 \end_inset
29339
29340
29341 \begin_inset Index idx
29342 status collapsed
29343
29344 \begin_layout Plain Layout
29345 Formel ! mehrzeilige ! flalign-Umgebung
29346 \end_layout
29347
29348 \end_inset
29349
29350
29351 \end_layout
29352
29353 \begin_layout Standard
29354 Bei dieser Umgebung werden die ersten beiden Spalten immer so weit links
29355  und die letzten beiden Spalten so weit rechts wie möglich gesetzt.
29356  Dazu ein Beispiel:
29357 \begin_inset Formula 
29358 \begin{flalign*}
29359 A & =1 & B & =2 & C & =3\\
29360 X & =\textrm{-}1 & Y & =\textrm{-}2 & Z & =4
29361 \end{flalign*}
29362
29363 \end_inset
29364
29365
29366 \end_layout
29367
29368 \begin_layout Standard
29369 Erzeugt man eine flalign-Umgebung mit ungerader Spaltenanzahl und gibt in
29370  die letzte Spalte eine leere TeX-Klammer ein, kann man einzelne Formeln
29371  im Dokument links setzen obwohl der Formelstil 
29372 \series bold
29373 Zentriert
29374 \series default
29375  eingestellt ist.
29376  Als Beispiel die eingerückte ausgerichtete Formel 
29377 \begin_inset CommandInset ref
29378 LatexCommand eqref
29379 reference "eq:VolInt"
29380
29381 \end_inset
29382
29383 :
29384 \begin_inset Formula 
29385 \begin{flalign}
29386 \hspace{30pt}\iiint\limits _{V}X\,\mathrm{d}V & =U & {}
29387 \end{flalign}
29388
29389 \end_inset
29390
29391 In den ersten beiden Spalten befindet sich die Formel.
29392  Damit sie wie beim Formelstil 
29393 \series bold
29394 Eingerückt
29395 \series default
29396  vom Rand etwas abgesetzt ist, wurde zu Beginn der ersten Spalte 30
29397 \begin_inset space \thinspace{}
29398 \end_inset
29399
29400 pt Leerraum eingefügt.
29401 \end_layout
29402
29403 \begin_layout Subsection
29404 Eqnarray-Umgebung
29405 \begin_inset CommandInset label
29406 LatexCommand label
29407 name "sub:Eqnarray-Umgebung"
29408
29409 \end_inset
29410
29411
29412 \begin_inset Index idx
29413 status collapsed
29414
29415 \begin_layout Plain Layout
29416 Formel ! mehrzeilige ! Eqnarray-Umgebung
29417 \end_layout
29418
29419 \end_inset
29420
29421
29422 \end_layout
29423
29424 \begin_layout Standard
29425 Hat man diese Umgebung erzeugt, erscheinen drei blaue Kästchen.
29426  Der Inhalt des ersten Kästchens wird rechtsbündig, der des letzten linksbündig
29427  ausgerichtet.
29428  Der Inhalt des mittleren Kästchens erscheint zentriert und etwas kleiner,
29429  da dieses Kästchen nur für Relationzeichen gedacht ist.
29430 \begin_inset Formula 
29431 \begin{eqnarray*}
29432 \frac{ABC}{D} & \frac{ABC}{D} & \frac{ABC}{D}\\
29433 AB & AB & AB\\
29434 A & = & A
29435 \end{eqnarray*}
29436
29437 \end_inset
29438
29439
29440 \end_layout
29441
29442 \begin_layout Subsection
29443 Gather-Umgebung
29444 \begin_inset Index idx
29445 status collapsed
29446
29447 \begin_layout Plain Layout
29448 Formel ! mehrzeilige ! Gather-Umgebung
29449 \end_layout
29450
29451 \end_inset
29452
29453
29454 \end_layout
29455
29456 \begin_layout Standard
29457 Diese Umgebung besteht nur aus einer Spalte, deren Inhalt zentriert ist.
29458  Jede Zeile kann nummeriert werden.
29459 \begin_inset Formula 
29460 \begin{gather}
29461 A=1\\
29462 X=\textrm{-}1
29463 \end{gather}
29464
29465 \end_inset
29466
29467
29468 \end_layout
29469
29470 \begin_layout Subsection
29471 Multline-Umgebung
29472 \begin_inset CommandInset label
29473 LatexCommand label
29474 name "sub:Multline-Umgebung"
29475
29476 \end_inset
29477
29478
29479 \begin_inset Index idx
29480 status collapsed
29481
29482 \begin_layout Plain Layout
29483 Formel ! mehrzeilige ! Multline-Umgebung
29484 \end_layout
29485
29486 \end_inset
29487
29488
29489 \end_layout
29490
29491 \begin_layout Standard
29492 Die multline-Umgebung besteht wie die Gather-Umgebung nur aus einer Spalte.
29493  Jedoch ist die erste Zeile links, die letzte rechts ausgerichtet.
29494  Alle anderen Zeilen sind zentriert.
29495  Dadurch eignet sich diese Umgebung besonders für lange Formeln.
29496  Als Beispiel Formel 
29497 \begin_inset CommandInset ref
29498 LatexCommand eqref
29499 reference "eq:lefteqn"
29500
29501 \end_inset
29502
29503  in der multline-Umgebung:
29504 \begin_inset Formula 
29505 \begin{multline}
29506 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}\\
29507 -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}\\
29508 =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}}
29509 \end{multline}
29510
29511 \end_inset
29512
29513
29514 \end_layout
29515
29516 \begin_layout Standard
29517 In der Ausgabe erscheint nur die letzte (erste) Zeile einer multline-Umgebung
29518  nummeriert, wenn rechts (links) nummeriert wird.
29519 \begin_inset Foot
29520 status collapsed
29521
29522 \begin_layout Plain Layout
29523 Nummerierungsstile siehe 
29524 \begin_inset CommandInset ref
29525 LatexCommand ref
29526 reference "sec:Formelstile"
29527
29528 \end_inset
29529
29530
29531 \end_layout
29532
29533 \end_inset
29534
29535
29536 \end_layout
29537
29538 \begin_layout Standard
29539 Mit den Befehlen 
29540 \series bold
29541
29542 \backslash
29543 shoveright
29544 \series default
29545
29546 \begin_inset Index idx
29547 status collapsed
29548
29549 \begin_layout Plain Layout
29550 Befehle ! S ! 
29551 \backslash
29552 shoveright
29553 \end_layout
29554
29555 \end_inset
29556
29557  und 
29558 \series bold
29559
29560 \backslash
29561 shoveleft
29562 \series default
29563
29564 \begin_inset Index idx
29565 status collapsed
29566
29567 \begin_layout Plain Layout
29568 Befehle ! S ! 
29569 \backslash
29570 shoveleft
29571 \end_layout
29572
29573 \end_inset
29574
29575  kann eine zentrierte Zeile rechts bzw.
29576 \begin_inset space \space{}
29577 \end_inset
29578
29579 links ausgerichtet werden.
29580  Die Befehle werden folgendermaßen verwendet:
29581 \end_layout
29582
29583 \begin_layout Standard
29584
29585 \series bold
29586
29587 \backslash
29588 shoveright{Zeileninhalt}
29589 \series default
29590  bzw.
29591 \begin_inset space \space{}
29592 \end_inset
29593
29594
29595 \series bold
29596
29597 \backslash
29598 shoveleft{Zeileninhalt}
29599 \end_layout
29600
29601 \begin_layout Standard
29602 \begin_inset VSpace medskip
29603 \end_inset
29604
29605 Die Länge 
29606 \series bold
29607
29608 \backslash
29609 multlinegap
29610 \series default
29611
29612 \begin_inset Index idx
29613 status collapsed
29614
29615 \begin_layout Plain Layout
29616 Befehle ! M ! 
29617 \backslash
29618 multlinegap
29619 \end_layout
29620
29621 \end_inset
29622
29623  legt den Abstand der ersten Zeile vom linken Seitenrand fest.
29624  Voreingestellt ist die Länge 0
29625 \begin_inset space \thinspace{}
29626 \end_inset
29627
29628 pt.
29629 \end_layout
29630
29631 \begin_layout Standard
29632 Als Beispiel obige Formel, vor der im TeX-Modus der Befehl
29633 \end_layout
29634
29635 \begin_layout Standard
29636
29637 \series bold
29638
29639 \backslash
29640 setlength{
29641 \backslash
29642 multlinegap}{2cm}
29643 \end_layout
29644
29645 \begin_layout Standard
29646 eingegeben wurde:
29647 \begin_inset ERT
29648 status collapsed
29649
29650 \begin_layout Plain Layout
29651
29652
29653 \backslash
29654 setlength{
29655 \backslash
29656 multlinegap}{2cm}
29657 \end_layout
29658
29659 \end_inset
29660
29661
29662 \begin_inset Formula 
29663 \begin{multline}
29664 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}\\
29665 \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}}\\
29666 =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}}
29667 \end{multline}
29668
29669 \end_inset
29670
29671
29672 \begin_inset ERT
29673 status collapsed
29674
29675 \begin_layout Plain Layout
29676
29677
29678 \backslash
29679 setlength{
29680 \backslash
29681 multlinegap}{0pt}
29682 \end_layout
29683
29684 \end_inset
29685
29686
29687 \end_layout
29688
29689 \begin_layout Standard
29690 Die zweite Zeile wurde mit 
29691 \series bold
29692
29693 \backslash
29694 shoveleft
29695 \series default
29696  linksbündig ausgerichtet.
29697 \end_layout
29698
29699 \begin_layout Subsection
29700 Mehrzeilige Formelteile
29701 \begin_inset CommandInset label
29702 LatexCommand label
29703 name "sub:Mehrzeilige-Formelteile"
29704
29705 \end_inset
29706
29707
29708 \begin_inset Index idx
29709 status collapsed
29710
29711 \begin_layout Plain Layout
29712 Formel ! mehrzeilige ! Formelteile
29713 \end_layout
29714
29715 \end_inset
29716
29717
29718 \end_layout
29719
29720 \begin_layout Standard
29721 Möchte man nur Teile einer Formel mehrzeilig darstellen, verwendet man eine
29722  der folgenden Umgebungen: 
29723 \series bold
29724 aligned
29725 \series default
29726
29727 \series bold
29728 alignedat
29729 \series default
29730
29731 \series bold
29732 gathered
29733 \series default
29734  oder 
29735 \series bold
29736 split
29737 \series default
29738 .
29739  Sie können über das Menü 
29740 \family sans
29741 Einfügen\SpecialChar \menuseparator
29742 Mathe
29743 \family default
29744  oder mit Befehlen eingefügt werden, wie in diesem Abschnitt beschrieben.
29745 \end_layout
29746
29747 \begin_layout Standard
29748 Die ersten drei haben dieselben Eigenschaften wie die entsprechenden mehrzeilige
29749 n Formel\SpecialChar \-
29750 umgebungen.
29751  Man kann jedoch zusätzlich weitere Formelteile daneben setzen.
29752  Dazu ein Beispiel:
29753 \begin_inset Formula 
29754 \[
29755 \left.\begin{aligned}\Delta x\Delta p & \ge\frac{\hbar}{2}\\
29756 \Delta E\Delta t & \ge\frac{\hbar}{2}
29757 \end{aligned}
29758 \right\} \textrm{Unbestimmtheitsrelationen}
29759 \]
29760
29761 \end_inset
29762
29763
29764 \end_layout
29765
29766 \begin_layout Standard
29767 Um diese Formel zu erhalten, wird eine abgesetzte Formel erstellt, in die
29768  der Befehl 
29769 \series bold
29770
29771 \backslash
29772 aligned
29773 \series default
29774
29775 \begin_inset Index idx
29776 status collapsed
29777
29778 \begin_layout Plain Layout
29779 Befehle ! A ! 
29780 \backslash
29781 aligned
29782 \end_layout
29783
29784 \end_inset
29785
29786  eingegeben wird.
29787  Es erscheint eine lila Box um das blaue Formelkästchen in der man nun Spalten
29788  und Zeilen hinzufügen kann.
29789  Außerhalb der mehrzeiligen Umgebung können Formelteile, wie die Klammer,
29790  gesetzt werden.
29791 \end_layout
29792
29793 \begin_layout Standard
29794 Die aligned-Umgebung eignet sich auch für lange Formeln, deren Zeilen horizontal
29795  ausgerichtet sind.
29796  Verwendet man aligned in einer abgesetzten Formel, hat das den Vorteil,
29797  dass die Formelnummer vertikal mittig hinter den Zeilen steht.
29798  Als Beispiel Formel 
29799 \begin_inset CommandInset ref
29800 LatexCommand eqref
29801 reference "eq:kurzlang"
29802
29803 \end_inset
29804
29805  in der aligned-Umgebung:
29806 \begin_inset Formula 
29807 \begin{equation}
29808 \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}|}\\
29809  & -\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}|}
29810 \end{aligned}
29811 \end{equation}
29812
29813 \end_inset
29814
29815
29816 \end_layout
29817
29818 \begin_layout Standard
29819 Möchte man die Umgebung 
29820 \series bold
29821 alignedat
29822 \series default
29823
29824 \series bold
29825 gathered
29826 \series default
29827  oder 
29828 \series bold
29829 split
29830 \series default
29831  verwenden, gibt man den Befehl 
29832 \series bold
29833
29834 \backslash
29835 alignedat
29836 \series default
29837 ,
29838 \begin_inset Index idx
29839 status collapsed
29840
29841 \begin_layout Plain Layout
29842 Befehle ! A ! 
29843 \backslash
29844 alignedat
29845 \end_layout
29846
29847 \end_inset
29848
29849  
29850 \series bold
29851
29852 \backslash
29853 gathered
29854 \series default
29855
29856 \begin_inset Index idx
29857 status collapsed
29858
29859 \begin_layout Plain Layout
29860 Befehle ! G ! 
29861 \backslash
29862 gathered
29863 \end_layout
29864
29865 \end_inset
29866
29867  bzw.
29868 \begin_inset space \space{}
29869 \end_inset
29870
29871
29872 \series bold
29873
29874 \backslash
29875 split
29876 \series default
29877
29878 \begin_inset Index idx
29879 status collapsed
29880
29881 \begin_layout Plain Layout
29882 Befehle ! S ! 
29883 \backslash
29884 split
29885 \end_layout
29886
29887 \end_inset
29888
29889  ein.
29890  Die split-Umgebung hat dieselben Eigenschaften wie die aligned-Umgebung,
29891  jedoch darf sie nur zwei Spalten enthalten.
29892 \end_layout
29893
29894 \begin_layout Subsection
29895 Text in mehrzeiligen Formeln
29896 \begin_inset CommandInset label
29897 LatexCommand label
29898 name "sub:Text-in-mehrzeiligen"
29899
29900 \end_inset
29901
29902
29903 \begin_inset Index idx
29904 status collapsed
29905
29906 \begin_layout Plain Layout
29907 Text ! in Formeln
29908 \end_layout
29909
29910 \end_inset
29911
29912
29913 \begin_inset Index idx
29914 status collapsed
29915
29916 \begin_layout Plain Layout
29917 Formel ! mehrzeilige ! Text
29918 \end_layout
29919
29920 \end_inset
29921
29922
29923 \end_layout
29924
29925 \begin_layout Standard
29926 Bei den Align-Umgebungen sowie der multline- und gather-Umgebung besteht
29927  die Möglichkeit Text einzufügen, der in einer eigenen Zeile erscheint und
29928  die Ausrichtung der Spalten nicht beeinflusst.
29929  Dazu wird der Befehl 
29930 \series bold
29931
29932 \backslash
29933 intertext
29934 \begin_inset Index idx
29935 status collapsed
29936
29937 \begin_layout Plain Layout
29938 Befehle ! I ! 
29939 \backslash
29940 intertext
29941 \end_layout
29942
29943 \end_inset
29944
29945
29946 \series default
29947  nach folgendem Schema benutzt:
29948 \end_layout
29949
29950 \begin_layout Standard
29951
29952 \series bold
29953
29954 \backslash
29955 intertext{Text}
29956 \end_layout
29957
29958 \begin_layout Standard
29959 Der Text sollte nicht länger als eine Zeile sein, da er nicht umgebrochen
29960  werden kann.
29961  Weil LyX 
29962 \series bold
29963
29964 \backslash
29965 intertext
29966 \series default
29967  noch nicht direkt unterstützt, schreibt man den Text als mathematischen
29968  Text.
29969  
29970 \series bold
29971
29972 \backslash
29973 intertext
29974 \series default
29975  muss dabei zu Beginn einer Zeile stehen und erscheint in der Ausgabe über
29976  dieser Zeile.
29977  Ein Beispiel bei dem der Text zu Beginn der zweiten Zeile eingegeben wurde:
29978 \begin_inset Formula 
29979 \begin{align}
29980 I & =a\sqrt{2}\int_{0}^{2\pi}\sqrt{1+\cos(\phi)}\;\mathrm{d}\phi\\
29981 \intertext{\text{Integrand ist symmetrisch zu \ensuremath{\phi=\pi}, daher}} & =2a\sqrt{2}\int_{0}^{\pi}\sqrt{1+\cos(\phi)}\;\mathrm{d}\phi
29982 \end{align}
29983
29984 \end_inset
29985
29986
29987 \end_layout
29988
29989 \begin_layout Section
29990 Formelnummerierung
29991 \begin_inset Index idx
29992 status collapsed
29993
29994 \begin_layout Plain Layout
29995 Formelnummerierung
29996 \end_layout
29997
29998 \end_inset
29999
30000
30001 \begin_inset Index idx
30002 status collapsed
30003
30004 \begin_layout Plain Layout
30005 Formel ! Nummerierung|see
30006 \begin_inset ERT
30007 status collapsed
30008
30009 \begin_layout Plain Layout
30010
30011 {
30012 \end_layout
30013
30014 \end_inset
30015
30016 Formelnummerierung
30017 \begin_inset ERT
30018 status collapsed
30019
30020 \begin_layout Plain Layout
30021
30022 }
30023 \end_layout
30024
30025 \end_inset
30026
30027
30028 \end_layout
30029
30030 \end_inset
30031
30032
30033 \end_layout
30034
30035 \begin_layout Subsection
30036 Allgemeines
30037 \end_layout
30038
30039 \begin_layout Standard
30040 Nummerierte Formeln können mit dem Menü 
30041 \family sans
30042 Einfügen\SpecialChar \menuseparator
30043 Mathe\SpecialChar \menuseparator
30044 Nummerierte
30045 \begin_inset space ~
30046 \end_inset
30047
30048 Formel
30049 \family default
30050  (Tastenkürzel 
30051 \family sans
30052 Strg+Alt
30053 \begin_inset space ~
30054 \end_inset
30055
30056 N
30057 \family default
30058 ) erstellt, bestehende Formeln über das Menü 
30059 \family sans
30060 Bearbeiten\SpecialChar \menuseparator
30061 Mathe\SpecialChar \menuseparator
30062 Nummerierung
30063 \begin_inset space ~
30064 \end_inset
30065
30066 an/aus
30067 \family default
30068  (Tastenkürzel 
30069 \family sans
30070 Alt+M
30071 \begin_inset space ~
30072 \end_inset
30073
30074 N
30075 \family default
30076 ) nummeriert werden.
30077  Die Formelnummer erscheint in LyX hinter der Formel als Raute in runden
30078  Klammern.
30079  Im Ausdruck erscheint anstelle der Raute die Formelnummer.
30080 \end_layout
30081
30082 \begin_layout Standard
30083 Wird in mehrzeiligen Formeln die Nummerierung angeschaltet, werden alle
30084  Zeilen nummeriert.
30085  Man kann jedoch über das Menü 
30086 \family sans
30087 Bearbeiten\SpecialChar \menuseparator
30088 Mathe\SpecialChar \menuseparator
30089 Zeilennummerierung an/aus
30090 \family default
30091  (Tastenkürzel 
30092 \family sans
30093 Alt+M
30094 \begin_inset space ~
30095 \end_inset
30096
30097 Shift+N
30098 \family default
30099 ) für jede Zeile die Nummerierung festlegen.
30100 \end_layout
30101
30102 \begin_layout Standard
30103 Außer eingebetteten können alle Formeln in zwei verschiedenen Stilen nummeriert
30104  werden, siehe 
30105 \begin_inset CommandInset ref
30106 LatexCommand ref
30107 reference "sec:Formelstile"
30108
30109 \end_inset
30110
30111 .
30112 \end_layout
30113
30114 \begin_layout Subsection
30115 Querverweise
30116 \begin_inset Index idx
30117 status collapsed
30118
30119 \begin_layout Plain Layout
30120 Querverweise ! auf Formeln
30121 \end_layout
30122
30123 \end_inset
30124
30125
30126 \end_layout
30127
30128 \begin_layout Standard
30129 Es kann auf alle Formeln verwiesen werden, die eine Marke besitzen.
30130  Eine Marke wird mit dem Menü 
30131 \family sans
30132 Einfügen\SpecialChar \menuseparator
30133 Marke
30134 \family default
30135  oder dem Werkzeugleistenknopf 
30136 \begin_inset Graphics
30137         filename ../../images/label-insert.png
30138         scale 85
30139
30140 \end_inset
30141
30142  gesetzt.
30143  Dabei muss sich der Cursor in einer abgesetzten Formel befinden.
30144  Alternativ klickt man mit rechts auf die Formel und wählt 
30145 \family sans
30146 Formelmarke
30147 \family default
30148 .
30149  Es erscheint ein Eingabefeld mit dem voreingestellten Eintrag 
30150 \series bold
30151 eq:
30152 \series default
30153 , nachdem der eigentliche Markenname eingegeben wird.
30154  Der voreingestellte Eintrag steht für 
30155 \begin_inset Quotes gld
30156 \end_inset
30157
30158 equation
30159 \begin_inset Quotes grd
30160 \end_inset
30161
30162  und erleichtert bei größeren Dokumenten die Zuordnung, dass die Marke zu
30163  einer Formel und nicht zu einem Kapitel gehört.
30164  Um eine Marke zu ändern, wählt man wieder das Menü 
30165 \family sans
30166 Einfügen\SpecialChar \menuseparator
30167 Marke
30168 \family default
30169  oder man klickt mit rechts auf eine Formel und dann auf 
30170 \family sans
30171 Formelmarke
30172 \family default
30173 .
30174 \end_layout
30175
30176 \begin_layout Standard
30177 Der Name der Marke erscheint in LyX in zwei runden Klammern hinter der Formel.
30178  Eine Formel mit Marke wird immer nummeriert.
30179 \end_layout
30180
30181 \begin_layout Standard
30182 Querverweise werden mit dem Menü 
30183 \family sans
30184 Einfügen\SpecialChar \menuseparator
30185 Querverweis
30186 \family default
30187  oder dem Werkzeugleistenknopf 
30188 \begin_inset Graphics
30189         filename ../../images/dialog-show-new-inset_ref.png
30190         scale 85
30191
30192 \end_inset
30193
30194  eingefügt.
30195  Ein Querverweis auf Formeln erscheint im Ausdruck als Formelnummer.
30196  Wenn man im Querverweis Dialogfenster das Format 
30197 \series bold
30198 (<Querverweis>)
30199 \series default
30200  wählt, erscheint der Querverweis als Formelnummer in Klammern.
30201 \begin_inset Newline newline
30202 \end_inset
30203
30204 Drückt man in LyX mit der rechten Maustaste auf einen Querverweis, gelangt
30205  man zur Formel auf die verwiesen wird.
30206 \end_layout
30207
30208 \begin_layout Standard
30209 Als Beispiel folgen Querverweise zu Formeln aus diesem Kapitel:
30210 \begin_inset Note Note
30211 status open
30212
30213 \begin_layout Plain Layout
30214 Man beachte die unterschiedlichen Querverweistypen.
30215 \end_layout
30216
30217 \end_inset
30218
30219
30220 \end_layout
30221
30222 \begin_layout Standard
30223 Die Gleichungen 
30224 \begin_inset CommandInset ref
30225 LatexCommand eqref
30226 reference "eq:tag"
30227
30228 \end_inset
30229
30230  und 
30231 \begin_inset CommandInset ref
30232 LatexCommand eqref
30233 reference "eq:c"
30234
30235 \end_inset
30236
30237  sind äquivalent.
30238  In (
30239 \begin_inset CommandInset ref
30240 LatexCommand ref
30241 reference "eq:Lat"
30242
30243 \end_inset
30244
30245 ) werden im Gegensatz zu (
30246 \begin_inset CommandInset ref
30247 LatexCommand ref
30248 reference "eq:Roem"
30249
30250 \end_inset
30251
30252 ) große lateinische Buchstaben zur Nummerierung verwendet.
30253 \end_layout
30254
30255 \begin_layout Standard
30256 \begin_inset VSpace medskip
30257 \end_inset
30258
30259 Ist im Argument von 
30260 \series bold
30261
30262 \backslash
30263 tag
30264 \begin_inset Foot
30265 status collapsed
30266
30267 \begin_layout Plain Layout
30268
30269 \series bold
30270
30271 \backslash
30272 tag
30273 \series default
30274  ist in 
30275 \begin_inset CommandInset ref
30276 LatexCommand ref
30277 reference "sub:Benutzerdefinierte-Nummerierung"
30278
30279 \end_inset
30280
30281  beschrieben.
30282 \end_layout
30283
30284 \end_inset
30285
30286
30287 \series default
30288  wie in 
30289 \begin_inset CommandInset ref
30290 LatexCommand ref
30291 reference "sub:Absatzboxen"
30292
30293 \end_inset
30294
30295  eine Box angegeben, kann nicht auf die Formel verwiesen werden.
30296 \end_layout
30297
30298 \begin_layout Subsection
30299 Unternummerierung
30300 \begin_inset Index idx
30301 status collapsed
30302
30303 \begin_layout Plain Layout
30304 Formelnummerierung ! Unternummerierung
30305 \end_layout
30306
30307 \end_inset
30308
30309
30310 \end_layout
30311
30312 \begin_layout Standard
30313 Möchte man Formeln weiter untergliedern, kann man das mit Hilfe der Befehle
30314  
30315 \begin_inset Newline newline
30316 \end_inset
30317
30318
30319 \series bold
30320
30321 \backslash
30322 begin{subequations}
30323 \series default
30324  und 
30325 \series bold
30326
30327 \backslash
30328 end{subequations}
30329 \series default
30330  erreichen.
30331  Beide Befehle werden im TeX-Modus eingegeben.
30332 \end_layout
30333
30334 \begin_layout Standard
30335 Dazu ein Beispiel:
30336 \begin_inset Formula 
30337 \begin{equation}
30338 A=C-B\label{eq:a}
30339 \end{equation}
30340
30341 \end_inset
30342
30343
30344 \begin_inset ERT
30345 status collapsed
30346
30347 \begin_layout Plain Layout
30348
30349
30350 \backslash
30351 addtocounter{equation}{-1}
30352 \end_layout
30353
30354 \end_inset
30355
30356
30357 \begin_inset ERT
30358 status collapsed
30359
30360 \begin_layout Plain Layout
30361
30362
30363 \backslash
30364 begin{subequations}
30365 \end_layout
30366
30367 \end_inset
30368
30369
30370 \begin_inset VSpace -5mm
30371 \end_inset
30372
30373
30374 \begin_inset Formula 
30375 \begin{equation}
30376 B=C-A\label{eq:b}
30377 \end{equation}
30378
30379 \end_inset
30380
30381
30382 \begin_inset Formula 
30383 \begin{equation}
30384 C=A+B\label{eq:c}
30385 \end{equation}
30386
30387 \end_inset
30388
30389
30390 \end_layout
30391
30392 \begin_layout Standard
30393 \begin_inset ERT
30394 status collapsed
30395
30396 \begin_layout Plain Layout
30397
30398
30399 \backslash
30400 end{subequations}
30401 \end_layout
30402
30403 \end_inset
30404
30405
30406 \end_layout
30407
30408 \begin_layout Standard
30409 Um das Beispiel zu erstellen, geht man folgendermaßen vor:
30410 \end_layout
30411
30412 \begin_layout Enumerate
30413 erste Formel eingeben
30414 \end_layout
30415
30416 \begin_layout Enumerate
30417
30418 \series bold
30419
30420 \backslash
30421 addtocounter{equation}{-1} 
30422 \backslash
30423 begin{subequations}
30424 \begin_inset Index idx
30425 status collapsed
30426
30427 \begin_layout Plain Layout
30428 Befehle ! A ! 
30429 \backslash
30430 addtocounter
30431 \end_layout
30432
30433 \end_inset
30434
30435
30436 \begin_inset Newline newline
30437 \end_inset
30438
30439
30440 \series default
30441 nach der ersten Formel einfügen
30442 \end_layout
30443
30444 \begin_layout Enumerate
30445 zweite Formel eingeben
30446 \end_layout
30447
30448 \begin_layout Enumerate
30449 dritte Formel eingeben
30450 \end_layout
30451
30452 \begin_layout Enumerate
30453
30454 \series bold
30455
30456 \backslash
30457 end{subequations}
30458 \series default
30459  nach der dritten Formel einfügen
30460 \end_layout
30461
30462 \begin_layout Standard
30463 Jede Formel, die zwischen den Befehlen 
30464 \series bold
30465
30466 \backslash
30467 begin
30468 \series default
30469  und 
30470 \series bold
30471
30472 \backslash
30473 end
30474 \series default
30475  steht, wird mit a, b, c, \SpecialChar \ldots{}
30476  untergliedert.
30477  Bei mehrzeiligen Formeln wird jede Zeile untergliedert.
30478  Alle untergliederten Formeln gelten als 
30479 \emph on
30480 eine
30481 \emph default
30482  nummerierte Formel.
30483  Da jede nummerierte Formel den Formelzähler 
30484 \series bold
30485 equation
30486 \series default
30487  um Eins erhöht, ist der Befehl 
30488 \series bold
30489
30490 \backslash
30491 addtocounter
30492 \series default
30493  notwendig um den Zähler wieder zu erniedrigen.
30494  Ansonsten würden die Formeln 
30495 \begin_inset CommandInset ref
30496 LatexCommand eqref
30497 reference "eq:a"
30498
30499 \end_inset
30500
30501
30502 \begin_inset CommandInset ref
30503 LatexCommand eqref
30504 reference "eq:b"
30505
30506 \end_inset
30507
30508
30509 \begin_inset CommandInset ref
30510 LatexCommand eqref
30511 reference "eq:c"
30512
30513 \end_inset
30514
30515  als 
30516 \begin_inset CommandInset ref
30517 LatexCommand eqref
30518 reference "eq:a"
30519
30520 \end_inset
30521
30522
30523 \begin_inset CommandInset ref
30524 LatexCommand eqref
30525 reference "eq:d"
30526
30527 \end_inset
30528
30529
30530 \begin_inset CommandInset ref
30531 LatexCommand eqref
30532 reference "eq:f"
30533
30534 \end_inset
30535
30536  nummeriert werden.
30537 \end_layout
30538
30539 \begin_layout Standard
30540 Durch die Eingabe der Befehle im TeX-Modus wird zwischen den ersten beiden
30541  Formeln automatisch etwas Leerraum erstellt.
30542  Um dies rückgängig zu machen, fügt man nach dem Befehl 
30543 \series bold
30544
30545 \backslash
30546 begin{subequations}
30547 \series default
30548  -5
30549 \begin_inset space \thinspace{}
30550 \end_inset
30551
30552 mm vertikalen Leerraum ein.
30553  Ist der Formelstil 
30554 \series bold
30555 Eingerückt
30556 \begin_inset Foot
30557 status collapsed
30558
30559 \begin_layout Plain Layout
30560 Formelstile siehe 
30561 \begin_inset CommandInset ref
30562 LatexCommand ref
30563 reference "sec:Formelstile"
30564
30565 \end_inset
30566
30567
30568 \end_layout
30569
30570 \end_inset
30571
30572
30573 \series default
30574  gewählt, fügt man -7
30575 \begin_inset space \thinspace{}
30576 \end_inset
30577
30578 mm Leerraum ein.
30579 \end_layout
30580
30581 \begin_layout Standard
30582 Hier ist ein Beispiel für mehrzeilige Formeln, bei dem die Nummerierung
30583  der zweiten Zeile abgeschaltet wurde:
30584 \begin_inset ERT
30585 status collapsed
30586
30587 \begin_layout Plain Layout
30588
30589
30590 \backslash
30591 begin{subequations}
30592 \end_layout
30593
30594 \end_inset
30595
30596
30597 \begin_inset Formula 
30598 \begin{eqnarray}
30599 A & = & (B-Z)^{2}=(B-Z)(B-Z)\label{eq:d}\\
30600  & = & B^{2}-ZB-BZ+Z^{²}\nonumber \\
30601  & = & B^{2}-2BZ+Z^{2}\label{eq:f}
30602 \end{eqnarray}
30603
30604 \end_inset
30605
30606
30607 \begin_inset ERT
30608 status collapsed
30609
30610 \begin_layout Plain Layout
30611
30612
30613 \backslash
30614 end{subequations}
30615 \end_layout
30616
30617 \end_inset
30618
30619
30620 \end_layout
30621
30622 \begin_layout Subsection
30623 Benutzerdefinierte Nummerierung
30624 \begin_inset CommandInset label
30625 LatexCommand label
30626 name "sub:Benutzerdefinierte-Nummerierung"
30627
30628 \end_inset
30629
30630
30631 \begin_inset Index idx
30632 status collapsed
30633
30634 \begin_layout Plain Layout
30635 Formelnummerierung ! benutzerdefinierte
30636 \end_layout
30637
30638 \end_inset
30639
30640
30641 \end_layout
30642
30643 \begin_layout Standard
30644 \begin_inset Index idx
30645 status collapsed
30646
30647 \begin_layout Plain Layout
30648 Formelnummerierung ! eigene Klammern
30649 \end_layout
30650
30651 \end_inset
30652
30653 Bei der Standardnummerierung werden um die Formelnummern runde Klammern
30654  gesetzt.
30655  Will man diese Klammern z.
30656 \begin_inset space \thinspace{}
30657 \end_inset
30658
30659 B.
30660  durch senkrechte Striche ersetzen, gibt man im LaTeX-Vorspann Folgendes
30661  an:
30662 \end_layout
30663
30664 \begin_layout Standard
30665
30666 \series bold
30667
30668 \backslash
30669 def
30670 \backslash
30671 tagform@#1{
30672 \backslash
30673 maketag@@@{|#1|}}
30674 \series default
30675
30676 \begin_inset Note Note
30677 status collapsed
30678
30679 \begin_layout Plain Layout
30680 Dieses Makro ist zum Testen bereits im LaTeX-Vorspann angegeben.
30681  Damit es wirksam wird, muss das Prozentzeichen am Zeilenbeginn entfernt
30682  werden.
30683 \end_layout
30684
30685 \end_inset
30686
30687
30688 \end_layout
30689
30690 \begin_layout Standard
30691 Möchte man andere Zeichen haben, ersetzt man die Striche neben 
30692 \series bold
30693 #1
30694 \series default
30695  durch ein oder mehrere gewünschte Zeichen.
30696  Möchte man nur die Formelnummer haben, lässt man die Striche weg.
30697 \end_layout
30698
30699 \begin_layout Standard
30700 \begin_inset VSpace bigskip
30701 \end_inset
30702
30703 Soll statt einer fortlaufenden Nummer ein beliebiger Ausdruck in den Klammern
30704  hinter der Formel stehen, benutzt man den Befehl 
30705 \series bold
30706
30707 \backslash
30708 tag
30709 \series default
30710
30711 \begin_inset Index idx
30712 status collapsed
30713
30714 \begin_layout Plain Layout
30715 Befehle ! T ! 
30716 \backslash
30717 tag
30718 \end_layout
30719
30720 \end_inset
30721
30722 :
30723 \begin_inset Formula 
30724 \begin{equation}
30725 A+B=C\tag{etwas}\label{eq:tag}
30726 \end{equation}
30727
30728 \end_inset
30729
30730  In diesem Beispiel wurde in der Formel der Befehl 
30731 \series bold
30732
30733 \backslash
30734 tag
30735 \series default
30736
30737 \begin_inset ERT
30738 status collapsed
30739
30740 \begin_layout Plain Layout
30741
30742
30743 \backslash
30744 leer 
30745 \end_layout
30746
30747 \end_inset
30748
30749
30750 \series bold
30751 etwas
30752 \series default
30753  eingegeben.
30754 \end_layout
30755
30756 \begin_layout Standard
30757 Gibt man stattdessen 
30758 \series bold
30759
30760 \backslash
30761 tag*
30762 \series default
30763
30764 \begin_inset ERT
30765 status collapsed
30766
30767 \begin_layout Plain Layout
30768
30769
30770 \backslash
30771 leer 
30772 \end_layout
30773
30774 \end_inset
30775
30776
30777 \series bold
30778 etwas
30779 \series default
30780  ein, verhindert der Stern die Klammern um den Ausdruck:
30781 \begin_inset Formula 
30782 \[
30783 A+B=C\tag*{etwas}
30784 \]
30785
30786 \end_inset
30787
30788
30789 \end_layout
30790
30791 \begin_layout Standard
30792 \begin_inset VSpace bigskip
30793 \end_inset
30794
30795 Möchte man die Formelnummerierung neu starten wenn ein neuer Dokumentteil
30796  oder 
30797 \begin_inset ERT
30798 status collapsed
30799
30800 \begin_layout Plain Layout
30801
30802
30803 \backslash
30804 mbox{
30805 \end_layout
30806
30807 \end_inset
30808
30809 -abschnitt
30810 \begin_inset ERT
30811 status collapsed
30812
30813 \begin_layout Plain Layout
30814
30815 }
30816 \end_layout
30817
30818 \end_inset
30819
30820
30821 \begin_inset Note Note
30822 status collapsed
30823
30824 \begin_layout Plain Layout
30825 Der Befehl 
30826 \series bold
30827
30828 \backslash
30829 mbox
30830 \series default
30831  verhindert, dass am Bindestrich umgebrochen wird.
30832 \end_layout
30833
30834 \end_inset
30835
30836  beginnt, verwendet man folgende LaTeX-Vorspannzeile:
30837 \end_layout
30838
30839 \begin_layout Standard
30840
30841 \series bold
30842
30843 \backslash
30844 @addtoreset{equation}{part}
30845 \series default
30846
30847 \begin_inset Index idx
30848 status collapsed
30849
30850 \begin_layout Plain Layout
30851 Befehle ! 
30852 \begin_inset ERT
30853 status collapsed
30854
30855 \begin_layout Plain Layout
30856
30857 "
30858 \end_layout
30859
30860 \end_inset
30861
30862 @
30863 \begin_inset ERT
30864 status collapsed
30865
30866 \begin_layout Plain Layout
30867
30868 "
30869 \end_layout
30870
30871 \end_inset
30872
30873  ! 
30874 \backslash
30875
30876 \begin_inset ERT
30877 status collapsed
30878
30879 \begin_layout Plain Layout
30880
30881 "
30882 \end_layout
30883
30884 \end_inset
30885
30886 @
30887 \begin_inset ERT
30888 status collapsed
30889
30890 \begin_layout Plain Layout
30891
30892 "
30893 \end_layout
30894
30895 \end_inset
30896
30897 addtoreset
30898 \end_layout
30899
30900 \end_inset
30901
30902
30903 \begin_inset Newline newline
30904 \end_inset
30905
30906 bzw.
30907 \begin_inset Newline newline
30908 \end_inset
30909
30910
30911 \series bold
30912
30913 \backslash
30914 @addtoreset{equation}{section}
30915 \end_layout
30916
30917 \begin_layout Standard
30918 Um diese Befehle im TeX-Modus benutzen zu können, muss das 
30919 \begin_inset Quotes gld
30920 \end_inset
30921
30922 @
30923 \begin_inset Quotes grd
30924 \end_inset
30925
30926  Zeichen für LaTeX mit dem Befehl 
30927 \series bold
30928
30929 \backslash
30930 makeatletter
30931 \series default
30932  
30933 \begin_inset Quotes gld
30934 \end_inset
30935
30936 aktiv
30937 \begin_inset Quotes grd
30938 \end_inset
30939
30940  gemacht werden.
30941  Der Befehl 
30942 \series bold
30943
30944 \backslash
30945 makeatother
30946 \series default
30947  macht dies wieder rückgängig.
30948  Daher ist die Befehlssequenz im TeX-Modus:
30949 \end_layout
30950
30951 \begin_layout Standard
30952
30953 \series bold
30954
30955 \backslash
30956 makeatletter
30957 \begin_inset Newline newline
30958 \end_inset
30959
30960
30961 \backslash
30962 @addtoreset{equation}{section}
30963 \begin_inset Newline newline
30964 \end_inset
30965
30966
30967 \backslash
30968 makeatother
30969 \end_layout
30970
30971 \begin_layout Standard
30972 Im LaTeX-Vorspann können 
30973 \series bold
30974
30975 \backslash
30976 makeatletter
30977 \series default
30978  und 
30979 \series bold
30980
30981 \backslash
30982 makeatother
30983 \series default
30984  weggelassen werden, da LyX sie automatisch intern einfügt.
30985 \end_layout
30986
30987 \begin_layout Standard
30988 Um 
30989 \series bold
30990
30991 \backslash
30992 @addtoreset
30993 \series default
30994  rückgängig zu machen, muss die Datei 
30995 \series bold
30996 remreset.sty
30997 \series default
30998
30999 \begin_inset Foot
31000 status collapsed
31001
31002 \begin_layout Plain Layout
31003
31004 \series bold
31005 remreset
31006 \series default
31007  ist Teil des LaTeX-Paketes 
31008 \series bold
31009 carlisle
31010 \series default
31011
31012 \begin_inset Index idx
31013 status collapsed
31014
31015 \begin_layout Plain Layout
31016 Pakete ! carlisle
31017 \end_layout
31018
31019 \end_inset
31020
31021 , das Teil jeder LaTeX-Standardinstallation ist.
31022 \end_layout
31023
31024 \end_inset
31025
31026
31027 \begin_inset Index idx
31028 status collapsed
31029
31030 \begin_layout Plain Layout
31031 Pakete ! remreset
31032 \end_layout
31033
31034 \end_inset
31035
31036  im LaTeX-Vorspann mit der Zeile
31037 \end_layout
31038
31039 \begin_layout Standard
31040
31041 \series bold
31042
31043 \backslash
31044 usepackage{remreset}
31045 \end_layout
31046
31047 \begin_layout Standard
31048 geladen werden.
31049  Dann kann der Befehl 
31050 \series bold
31051
31052 \backslash
31053 @removefromreset
31054 \series default
31055
31056 \begin_inset Index idx
31057 status collapsed
31058
31059 \begin_layout Plain Layout
31060 Befehle ! 
31061 \begin_inset ERT
31062 status collapsed
31063
31064 \begin_layout Plain Layout
31065
31066 "
31067 \end_layout
31068
31069 \end_inset
31070
31071 @
31072 \begin_inset ERT
31073 status collapsed
31074
31075 \begin_layout Plain Layout
31076
31077 "
31078 \end_layout
31079
31080 \end_inset
31081
31082  ! 
31083 \backslash
31084
31085 \begin_inset ERT
31086 status collapsed
31087
31088 \begin_layout Plain Layout
31089
31090 "
31091 \end_layout
31092
31093 \end_inset
31094
31095 @
31096 \begin_inset ERT
31097 status collapsed
31098
31099 \begin_layout Plain Layout
31100
31101 "
31102 \end_layout
31103
31104 \end_inset
31105
31106 removefromreset
31107 \end_layout
31108
31109 \end_inset
31110
31111  mit dem selben Schema wie 
31112 \series bold
31113
31114 \backslash
31115 @addtoreset
31116 \series default
31117  benutzt werden.
31118 \end_layout
31119
31120 \begin_layout Standard
31121 \begin_inset VSpace bigskip
31122 \end_inset
31123
31124 Oftmals möchte man Formeln in folgender Art nummerieren:
31125 \end_layout
31126
31127 \begin_layout Standard
31128
31129 \family typewriter
31130 (Kapitelnummer.Formelnummer)
31131 \end_layout
31132
31133 \begin_layout Standard
31134 Dabei soll die Formelnummer bei jedem Kapitel wieder mit Eins beginnen.
31135 \end_layout
31136
31137 \begin_layout Standard
31138 Für diesen Fall gibt es den Befehl 
31139 \series bold
31140
31141 \backslash
31142 numberwithin
31143 \series default
31144
31145 \begin_inset Index idx
31146 status collapsed
31147
31148 \begin_layout Plain Layout
31149 Befehle ! N ! 
31150 \backslash
31151 numberwithin
31152 \end_layout
31153
31154 \end_inset
31155
31156 , der nach folgendem Schema benutzt wird:
31157 \end_layout
31158
31159 \begin_layout Standard
31160
31161 \series bold
31162
31163 \backslash
31164 numberwithin{Zähler}{Gliederung}
31165 \end_layout
31166
31167 \begin_layout Standard
31168 Zähler gibt an, welche Nummerierung betroffen ist.
31169  Gliederung gibt an, welche Nummer vor dem Punkt steht.
31170 \end_layout
31171
31172 \begin_layout Standard
31173 In unserem Fall gibt man demnach folgende LaTeX-Vorspann- oder TeX-Code-Zeile
31174  ein:
31175 \end_layout
31176
31177 \begin_layout Standard
31178
31179 \series bold
31180
31181 \backslash
31182 numberwithin{equation}{section}
31183 \end_layout
31184
31185 \begin_layout Standard
31186 Das ist das Ergebnis:
31187 \begin_inset ERT
31188 status collapsed
31189
31190 \begin_layout Plain Layout
31191
31192
31193 \backslash
31194 numberwithin{equation}{section}
31195 \end_layout
31196
31197 \end_inset
31198
31199
31200 \begin_inset Formula 
31201 \begin{equation}
31202 A+B=C
31203 \end{equation}
31204
31205 \end_inset
31206
31207
31208 \end_layout
31209
31210 \begin_layout Standard
31211 Möchte man z.
31212 \begin_inset space \thinspace{}
31213 \end_inset
31214
31215 B.
31216  Tabellen nummerieren, so dass die Nummer des Teils vor dem Punkt steht,
31217  gibt man 
31218 \series bold
31219
31220 \backslash
31221 numberwithin{table}{part}
31222 \series default
31223  ein.
31224 \end_layout
31225
31226 \begin_layout Standard
31227 Um wieder auf Standardnummerierung umzuschalten oder um diese Art der Nummerieru
31228 ng zu vermeiden wenn sie von der Dokumentklasse vorgegeben ist, gibt man
31229  folgenden Befehl als TeX-Code oder als LaTeX-Vorspannzeile ein:
31230 \end_layout
31231
31232 \begin_layout Standard
31233
31234 \series bold
31235
31236 \backslash
31237 renewcommand{
31238 \backslash
31239 theequation}{
31240 \backslash
31241 arabic{equation}}
31242 \begin_inset Index idx
31243 status collapsed
31244
31245 \begin_layout Plain Layout
31246 Befehle ! A ! 
31247 \backslash
31248 arabic
31249 \end_layout
31250
31251 \end_inset
31252
31253
31254 \series default
31255
31256 \begin_inset ERT
31257 status collapsed
31258
31259 \begin_layout Plain Layout
31260
31261
31262 \backslash
31263 renewcommand{
31264 \backslash
31265 theequation}{
31266 \backslash
31267 arabic{equation}}
31268 \end_layout
31269
31270 \end_inset
31271
31272
31273 \series bold
31274
31275 \begin_inset Newline newline
31276 \end_inset
31277
31278
31279 \series default
31280 bzw.
31281 \series bold
31282
31283 \begin_inset Newline newline
31284 \end_inset
31285
31286
31287 \backslash
31288 renewcommand{
31289 \backslash
31290 thetable}{
31291 \backslash
31292 arabic{table}}
31293 \end_layout
31294
31295 \begin_layout Standard
31296
31297 \series bold
31298
31299 \backslash
31300 numberwithin
31301 \series default
31302  benutzt intern den oben beschriebenen Befehl 
31303 \series bold
31304
31305 \backslash
31306 @addtoreset
31307 \series default
31308 , der ebenfalls rückgängig gemacht werden muss.
31309 \begin_inset ERT
31310 status collapsed
31311
31312 \begin_layout Plain Layout
31313
31314
31315 \backslash
31316 makeatletter
31317 \end_layout
31318
31319 \begin_layout Plain Layout
31320
31321
31322 \backslash
31323 @removefromreset{equation}{section}
31324 \end_layout
31325
31326 \begin_layout Plain Layout
31327
31328
31329 \backslash
31330 makeatother
31331 \end_layout
31332
31333 \end_inset
31334
31335
31336 \end_layout
31337
31338 \begin_layout Subsection
31339 Nummerierung mit römischen Zahlen und Buchstaben
31340 \begin_inset Index idx
31341 status collapsed
31342
31343 \begin_layout Plain Layout
31344 Formelnummerierung ! mit Buchstaben
31345 \end_layout
31346
31347 \end_inset
31348
31349
31350 \begin_inset Index idx
31351 status collapsed
31352
31353 \begin_layout Plain Layout
31354 Formelnummerierung ! mit römischen Zahlen
31355 \end_layout
31356
31357 \end_inset
31358
31359
31360 \end_layout
31361
31362 \begin_layout Standard
31363 Formeln können auch mit römischen Zahlen und lateinischen Buchstaben nummeriert
31364  werden.
31365  Um z.
31366 \begin_inset space \thinspace{}
31367 \end_inset
31368
31369 B.
31370  mit kleinen römischen Zahlen zu nummerieren, gibt man vor der Formel im
31371  TeX-Modus den Befehl
31372 \end_layout
31373
31374 \begin_layout Standard
31375
31376 \series bold
31377
31378 \backslash
31379 renewcommand{
31380 \backslash
31381 theequation}{
31382 \backslash
31383 roman{equation}}
31384 \end_layout
31385
31386 \begin_layout Standard
31387 ein.
31388  
31389 \series bold
31390
31391 \backslash
31392 renewcommand
31393 \series default
31394
31395 \begin_inset Index idx
31396 status collapsed
31397
31398 \begin_layout Plain Layout
31399 Befehle ! R ! 
31400 \backslash
31401 renewcommand
31402 \end_layout
31403
31404 \end_inset
31405
31406  weist dem vordefinierten Befehl 
31407 \series bold
31408
31409 \backslash
31410 theequation
31411 \series default
31412  den Befehl
31413 \begin_inset Newline linebreak
31414 \end_inset
31415
31416
31417 \series bold
31418
31419 \backslash
31420 roman{equation}
31421 \series default
31422  zu.
31423 \begin_inset Foot
31424 status collapsed
31425
31426 \begin_layout Plain Layout
31427 Der Befehl 
31428 \series bold
31429
31430 \backslash
31431 renewcommand
31432 \series default
31433  besitzt dasselbe Schema wie der in 
31434 \begin_inset CommandInset ref
31435 LatexCommand ref
31436 reference "sub:Der-Befehl-newcommand"
31437
31438 \end_inset
31439
31440  beschriebene Befehl
31441 \begin_inset Newline newline
31442 \end_inset
31443
31444
31445 \series bold
31446
31447 \backslash
31448 newcommand
31449 \series default
31450 .
31451 \end_layout
31452
31453 \end_inset
31454
31455  
31456 \series bold
31457 equation
31458 \series default
31459  ist der Formelzähler.
31460  Stellt man einem Zähler den Befehl 
31461 \series bold
31462
31463 \backslash
31464 the
31465 \series default
31466  voran, bewirkt dies, dass der Wert des Zählers als arabische Zahl ausgegeben
31467  wird.
31468  Gibt man an, dass eine Formel nummeriert wird, setzt LaTeX intern den Befehl
31469  
31470 \series bold
31471
31472 \backslash
31473 theequation
31474 \series default
31475  hinter die Formel.
31476  
31477 \series bold
31478
31479 \backslash
31480 roman{equation}
31481 \begin_inset Index idx
31482 status collapsed
31483
31484 \begin_layout Plain Layout
31485 Befehle ! R ! 
31486 \backslash
31487 roman
31488 \end_layout
31489
31490 \end_inset
31491
31492
31493 \series default
31494  bewirkt, dass der Formelzähler als kleine römische Zahl erscheint.
31495 \end_layout
31496
31497 \begin_layout Standard
31498 Alle Formeln nach dem 
31499 \series bold
31500
31501 \backslash
31502 renewcommand
31503 \series default
31504 -Befehl werden nun römisch nummeriert.
31505  Um auf Nummerierung mit großen römischen Zahlen umzuschalten, gibt man
31506  den Befehl erneut ein, ersetzt aber 
31507 \series bold
31508
31509 \backslash
31510 roman
31511 \series default
31512  durch 
31513 \series bold
31514
31515 \backslash
31516 Roman
31517 \series default
31518
31519 \begin_inset Index idx
31520 status collapsed
31521
31522 \begin_layout Plain Layout
31523 Befehle ! R ! 
31524 \backslash
31525 roman@
31526 \backslash
31527 Roman
31528 \end_layout
31529
31530 \end_inset
31531
31532 .
31533  Für die 
31534 \begin_inset Quotes gld
31535 \end_inset
31536
31537 Nummerierung
31538 \begin_inset Quotes grd
31539 \end_inset
31540
31541  mit lateinischen Buchstaben gibt es den Befehl 
31542 \series bold
31543
31544 \backslash
31545 alph
31546 \series default
31547
31548 \begin_inset Index idx
31549 status collapsed
31550
31551 \begin_layout Plain Layout
31552 Befehle ! A ! 
31553 \backslash
31554 alph
31555 \end_layout
31556
31557 \end_inset
31558
31559  für kleine und 
31560 \series bold
31561
31562 \backslash
31563 Alph
31564 \series default
31565
31566 \begin_inset Index idx
31567 status collapsed
31568
31569 \begin_layout Plain Layout
31570 Befehle ! A ! 
31571 \backslash
31572 alph@
31573 \backslash
31574 Alph
31575 \end_layout
31576
31577 \end_inset
31578
31579  für große Buchstaben.
31580 \end_layout
31581
31582 \begin_layout Standard
31583 \begin_inset Note Greyedout
31584 status open
31585
31586 \begin_layout Plain Layout
31587
31588 \series bold
31589 \color none
31590 Achtung:
31591 \series default
31592  Es können nur maximal 26
31593 \begin_inset space ~
31594 \end_inset
31595
31596 Formeln in einem Dokument mit lateinischen Buchstaben nummeriert werden.
31597 \end_layout
31598
31599 \end_inset
31600
31601
31602 \end_layout
31603
31604 \begin_layout Standard
31605 \begin_inset ERT
31606 status collapsed
31607
31608 \begin_layout Plain Layout
31609
31610
31611 \backslash
31612 renewcommand{
31613 \backslash
31614 theequation}{
31615 \backslash
31616 roman{equation}}
31617 \end_layout
31618
31619 \end_inset
31620
31621
31622 \end_layout
31623
31624 \begin_layout Standard
31625 \begin_inset Formula 
31626 \begin{equation}
31627 A=\textrm{römisch}
31628 \end{equation}
31629
31630 \end_inset
31631
31632
31633 \begin_inset ERT
31634 status collapsed
31635
31636 \begin_layout Plain Layout
31637
31638
31639 \backslash
31640 renewcommand{
31641 \backslash
31642 theequation}{
31643 \backslash
31644 Roman{equation}}
31645 \end_layout
31646
31647 \end_inset
31648
31649
31650 \begin_inset Formula 
31651 \begin{equation}
31652 B=\textrm{Römisch}\label{eq:Roem}
31653 \end{equation}
31654
31655 \end_inset
31656
31657
31658 \begin_inset ERT
31659 status collapsed
31660
31661 \begin_layout Plain Layout
31662
31663
31664 \backslash
31665 renewcommand{
31666 \backslash
31667 theequation}{
31668 \backslash
31669 alph{equation}}
31670 \end_layout
31671
31672 \end_inset
31673
31674
31675 \begin_inset Formula 
31676 \begin{equation}
31677 C=\textrm{lateinisch}
31678 \end{equation}
31679
31680 \end_inset
31681
31682
31683 \begin_inset ERT
31684 status collapsed
31685
31686 \begin_layout Plain Layout
31687
31688
31689 \backslash
31690 renewcommand{
31691 \backslash
31692 theequation}{
31693 \backslash
31694 Alph{equation}}
31695 \end_layout
31696
31697 \end_inset
31698
31699
31700 \begin_inset Formula 
31701 \begin{equation}
31702 D=\textrm{Lateinisch}\label{eq:Lat}
31703 \end{equation}
31704
31705 \end_inset
31706
31707
31708 \end_layout
31709
31710 \begin_layout Standard
31711 Um wieder auf Standardnummerierung umzuschalten, gibt man folgenden Befehl
31712  ein:
31713 \end_layout
31714
31715 \begin_layout Standard
31716
31717 \series bold
31718
31719 \backslash
31720 renewcommand{
31721 \backslash
31722 theequation}{
31723 \backslash
31724 arabic{equation}}
31725 \begin_inset Index idx
31726 status collapsed
31727
31728 \begin_layout Plain Layout
31729 Befehle ! A ! 
31730 \backslash
31731 arabic
31732 \end_layout
31733
31734 \end_inset
31735
31736
31737 \end_layout
31738
31739 \begin_layout Standard
31740 \begin_inset ERT
31741 status collapsed
31742
31743 \begin_layout Plain Layout
31744
31745
31746 \backslash
31747 renewcommand{
31748 \backslash
31749 theequation}{
31750 \backslash
31751 arabic{equation}}
31752 \end_layout
31753
31754 \end_inset
31755
31756
31757 \begin_inset Formula 
31758 \begin{equation}
31759 E=\textrm{arabisch}
31760 \end{equation}
31761
31762 \end_inset
31763
31764
31765 \end_layout
31766
31767 \begin_layout Standard
31768 \begin_inset VSpace medskip
31769 \end_inset
31770
31771 Wie man sieht, werden die Formeln unabhängig von der Nummerierungsart durchnumme
31772 riert.
31773  Soll beim Wechsel der Nummerierungsart die Nummerierung wieder mit Eins
31774  beginnen, müssen neue Formelzähler angelegt werden.
31775  Eine Beschreibung dazu findet man in der Datei 
31776 \begin_inset CommandInset href
31777 LatexCommand href
31778 name "Formelnummerierung.lyx"
31779 target "run:Formelnummerierung.lyx"
31780
31781 \end_inset
31782
31783 .
31784 \end_layout
31785
31786 \begin_layout Section
31787 Chemische Symbole und Reaktionsgleichungen
31788 \begin_inset CommandInset label
31789 LatexCommand label
31790 name "sub:Chemische-Symbole-und"
31791
31792 \end_inset
31793
31794
31795 \begin_inset Index idx
31796 status collapsed
31797
31798 \begin_layout Plain Layout
31799 chemische Zeichen ! Symbole
31800 \end_layout
31801
31802 \end_inset
31803
31804
31805 \begin_inset Index idx
31806 status collapsed
31807
31808 \begin_layout Plain Layout
31809 Reaktionsgleichungen
31810 \end_layout
31811
31812 \end_inset
31813
31814
31815 \begin_inset Index idx
31816 status collapsed
31817
31818 \begin_layout Plain Layout
31819 Symbole ! chemische
31820 \end_layout
31821
31822 \end_inset
31823
31824
31825 \end_layout
31826
31827 \begin_layout Standard
31828 Ein Beispieltext aus der Chemie:
31829 \end_layout
31830
31831 \begin_layout Quote
31832 Das 
31833 \begin_inset Formula $\mathrm{SO_{4}^{2-}}$
31834 \end_inset
31835
31836 -Ion verbindet sich mit zwei 
31837 \begin_inset Formula $\mathrm{Na^{+}}$
31838 \end_inset
31839
31840 -Ionen zu Natriumsulfat 
31841 \begin_inset Formula $\left(\mathrm{Na_{2}SO_{4}}\right)$
31842 \end_inset
31843
31844 .
31845  Die Reaktionsgleichung dazu lautet:
31846 \begin_inset Formula 
31847 \begin{equation}
31848 \mathrm{2\, Na^{+}+SO_{4}^{2-}\longrightarrow Na_{2}SO_{4}}\label{eq:chemische-Reaktion}
31849 \end{equation}
31850
31851 \end_inset
31852
31853
31854 \end_layout
31855
31856 \begin_layout Standard
31857 Diese Reaktionsgleichung kann direkt als Formel erstellt werden.
31858  Damit die Symbole nicht kursiv erscheinen, markiert man sämtliche Zeichen
31859  in der Formel und wandelt diese mit der Tastenkombination 
31860 \family sans
31861 Alt+Z
31862 \begin_inset space ~
31863 \end_inset
31864
31865 R
31866 \family default
31867  in den aufrechten Schriftstil um.
31868 \begin_inset Foot
31869 status collapsed
31870
31871 \begin_layout Plain Layout
31872 Schriftstile siehe 
31873 \begin_inset CommandInset ref
31874 LatexCommand ref
31875 reference "sub:Schriftstile"
31876
31877 \end_inset
31878
31879
31880 \end_layout
31881
31882 \end_inset
31883
31884
31885 \end_layout
31886
31887 \begin_layout Standard
31888 Eine komfortablerer Weg chemische Formeln zu setzen, ist es den Befehl
31889 \series bold
31890  
31891 \backslash
31892 ce
31893 \series default
31894
31895 \begin_inset Index idx
31896 status collapsed
31897
31898 \begin_layout Plain Layout
31899 Befehle ! C ! 
31900 \backslash
31901 ce
31902 \end_layout
31903
31904 \end_inset
31905
31906  zu benutzen.
31907  Dieser ist verfügbar, wenn das LaTeX-Paket 
31908 \series bold
31909 mhchem
31910 \series default
31911
31912 \begin_inset Index idx
31913 status collapsed
31914
31915 \begin_layout Plain Layout
31916 Pakete ! mhchem
31917 \end_layout
31918
31919 \end_inset
31920
31921  installiert ist.
31922  Nachdem 
31923 \series bold
31924
31925 \backslash
31926 ce
31927 \series default
31928  in eine Formel eingefügt wurde, erscheint eine neue blaue Box in die chemische
31929  Formeln in intuitiver Weise eingegeben werden können.
31930 \end_layout
31931
31932 \begin_layout Standard
31933 \align center
31934 \begin_inset Tabular
31935 <lyxtabular version="3" rows="9" columns="2">
31936 <features tabularvalignment="middle">
31937 <column alignment="center" valignment="top" width="0">
31938 <column alignment="center" valignment="top" width="0">
31939 <row>
31940 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
31941 \begin_inset Text
31942
31943 \begin_layout Plain Layout
31944 Befehl
31945 \end_layout
31946
31947 \end_inset
31948 </cell>
31949 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
31950 \begin_inset Text
31951
31952 \begin_layout Plain Layout
31953 Ergebnis
31954 \begin_inset Note Note
31955 status collapsed
31956
31957 \begin_layout Plain Layout
31958
31959 \series bold
31960
31961 \backslash
31962 raisebox
31963 \series default
31964  dient nur als Abstandhalter.
31965 \end_layout
31966
31967 \end_inset
31968
31969
31970 \end_layout
31971
31972 \end_inset
31973 </cell>
31974 </row>
31975 <row>
31976 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
31977 \begin_inset Text
31978
31979 \begin_layout Plain Layout
31980
31981 \backslash
31982 ce
31983 \begin_inset ERT
31984 status collapsed
31985
31986 \begin_layout Plain Layout
31987
31988
31989 \backslash
31990 leer 
31991 \end_layout
31992
31993 \end_inset
31994
31995 H2CO3
31996 \end_layout
31997
31998 \end_inset
31999 </cell>
32000 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
32001 \begin_inset Text
32002
32003 \begin_layout Plain Layout
32004 \begin_inset Formula $\raisebox{4.5mm}{}\ce{H2CO3}\raisebox{-2mm}{}$
32005 \end_inset
32006
32007
32008 \end_layout
32009
32010 \end_inset
32011 </cell>
32012 </row>
32013 <row>
32014 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
32015 \begin_inset Text
32016
32017 \begin_layout Plain Layout
32018
32019 \backslash
32020 ce
32021 \begin_inset ERT
32022 status collapsed
32023
32024 \begin_layout Plain Layout
32025
32026
32027 \backslash
32028 leer 
32029 \end_layout
32030
32031 \end_inset
32032
32033 SO4^2-
32034 \end_layout
32035
32036 \end_inset
32037 </cell>
32038 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
32039 \begin_inset Text
32040
32041 \begin_layout Plain Layout
32042 \begin_inset Formula $\raisebox{5mm}{}\ce{SO4^{2-}}\raisebox{-2mm}{}$
32043 \end_inset
32044
32045
32046 \end_layout
32047
32048 \end_inset
32049 </cell>
32050 </row>
32051 <row>
32052 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
32053 \begin_inset Text
32054
32055 \begin_layout Plain Layout
32056
32057 \backslash
32058 ce
32059 \begin_inset ERT
32060 status collapsed
32061
32062 \begin_layout Plain Layout
32063
32064
32065 \backslash
32066 leer 
32067 \end_layout
32068
32069 \end_inset
32070
32071 (NH4)2S
32072 \end_layout
32073
32074 \end_inset
32075 </cell>
32076 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
32077 \begin_inset Text
32078
32079 \begin_layout Plain Layout
32080 \begin_inset Formula $\raisebox{4.5mm}{}\ce{(NH4)2S}\raisebox{-2mm}{}$
32081 \end_inset
32082
32083
32084 \end_layout
32085
32086 \end_inset
32087 </cell>
32088 </row>
32089 <row>
32090 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
32091 \begin_inset Text
32092
32093 \begin_layout Plain Layout
32094
32095 \backslash
32096 ce
32097 \begin_inset ERT
32098 status collapsed
32099
32100 \begin_layout Plain Layout
32101
32102
32103 \backslash
32104 leer 
32105 \end_layout
32106
32107 \end_inset
32108
32109 KCr(SO4)2.12H2O
32110 \end_layout
32111
32112 \end_inset
32113 </cell>
32114 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
32115 \begin_inset Text
32116
32117 \begin_layout Plain Layout
32118 \begin_inset Formula $\raisebox{4.5mm}{}\ce{KCr(SO4)2.12H2O}\raisebox{-2mm}{}$
32119 \end_inset
32120
32121
32122 \end_layout
32123
32124 \end_inset
32125 </cell>
32126 </row>
32127 <row>
32128 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
32129 \begin_inset Text
32130
32131 \begin_layout Plain Layout
32132
32133 \backslash
32134 ce
32135 \begin_inset ERT
32136 status collapsed
32137
32138 \begin_layout Plain Layout
32139
32140
32141 \backslash
32142 leer 
32143 \end_layout
32144
32145 \end_inset
32146
32147 A-B
32148 \backslash
32149 dbond
32150 \begin_inset ERT
32151 status collapsed
32152
32153 \begin_layout Plain Layout
32154
32155
32156 \backslash
32157 leer 
32158 \end_layout
32159
32160 \end_inset
32161
32162 C
32163 \backslash
32164 tbond
32165 \begin_inset ERT
32166 status collapsed
32167
32168 \begin_layout Plain Layout
32169
32170
32171 \backslash
32172 leer 
32173 \end_layout
32174
32175 \end_inset
32176
32177 D
32178 \end_layout
32179
32180 \end_inset
32181 </cell>
32182 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
32183 \begin_inset Text
32184
32185 \begin_layout Plain Layout
32186 \begin_inset Formula $\raisebox{4.5mm}{}\ce{A-B\dbond C\tbond D}\raisebox{-2mm}{}$
32187 \end_inset
32188
32189
32190 \end_layout
32191
32192 \end_inset
32193 </cell>
32194 </row>
32195 <row>
32196 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
32197 \begin_inset Text
32198
32199 \begin_layout Plain Layout
32200
32201 \backslash
32202 ce
32203 \begin_inset ERT
32204 status collapsed
32205
32206 \begin_layout Plain Layout
32207
32208
32209 \backslash
32210 leer 
32211 \end_layout
32212
32213 \end_inset
32214
32215 ^227
32216 \begin_inset Formula $\downarrow$
32217 \end_inset
32218
32219 _90
32220 \begin_inset Formula $\to$
32221 \end_inset
32222
32223 Th+
32224 \end_layout
32225
32226 \end_inset
32227 </cell>
32228 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
32229 \begin_inset Text
32230
32231 \begin_layout Plain Layout
32232 \begin_inset Formula $\raisebox{5mm}{}\ce{_{90}^{227}Th+}\raisebox{-2mm}{}$
32233 \end_inset
32234
32235
32236 \end_layout
32237
32238 \end_inset
32239 </cell>
32240 </row>
32241 <row>
32242 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
32243 \begin_inset Text
32244
32245 \begin_layout Plain Layout
32246
32247 \backslash
32248 ce
32249 \begin_inset ERT
32250 status collapsed
32251
32252 \begin_layout Plain Layout
32253
32254
32255 \backslash
32256 leer 
32257 \end_layout
32258
32259 \end_inset
32260
32261 CO2
32262 \begin_inset ERT
32263 status collapsed
32264
32265 \begin_layout Plain Layout
32266
32267
32268 \backslash
32269 leer 
32270 \end_layout
32271
32272 \end_inset
32273
32274 +
32275 \begin_inset ERT
32276 status collapsed
32277
32278 \begin_layout Plain Layout
32279
32280
32281 \backslash
32282 leer 
32283 \end_layout
32284
32285 \end_inset
32286
32287 C
32288 \begin_inset ERT
32289 status collapsed
32290
32291 \begin_layout Plain Layout
32292
32293
32294 \backslash
32295 leer 
32296 \end_layout
32297
32298 \end_inset
32299
32300 <=>
32301 \begin_inset ERT
32302 status collapsed
32303
32304 \begin_layout Plain Layout
32305
32306
32307 \backslash
32308 leer 
32309 \end_layout
32310
32311 \end_inset
32312
32313 2CO
32314 \end_layout
32315
32316 \end_inset
32317 </cell>
32318 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
32319 \begin_inset Text
32320
32321 \begin_layout Plain Layout
32322 \begin_inset Formula $\raisebox{4.5mm}{}\ce{CO2 + C <=> 2CO}\raisebox{-2mm}{}$
32323 \end_inset
32324
32325
32326 \end_layout
32327
32328 \end_inset
32329 </cell>
32330 </row>
32331 <row>
32332 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
32333 \begin_inset Text
32334
32335 \begin_layout Plain Layout
32336
32337 \backslash
32338 ce
32339 \begin_inset ERT
32340 status collapsed
32341
32342 \begin_layout Plain Layout
32343
32344
32345 \backslash
32346 leer 
32347 \end_layout
32348
32349 \end_inset
32350
32351 CO2
32352 \begin_inset ERT
32353 status collapsed
32354
32355 \begin_layout Plain Layout
32356
32357
32358 \backslash
32359 leer 
32360 \end_layout
32361
32362 \end_inset
32363
32364 +
32365 \begin_inset ERT
32366 status collapsed
32367
32368 \begin_layout Plain Layout
32369
32370
32371 \backslash
32372 leer 
32373 \end_layout
32374
32375 \end_inset
32376
32377 C
32378 \begin_inset ERT
32379 status collapsed
32380
32381 \begin_layout Plain Layout
32382
32383
32384 \backslash
32385 leer 
32386 \end_layout
32387
32388 \end_inset
32389
32390 ->[
32391 \backslash
32392 alpha][
32393 \backslash
32394 beta]
32395 \begin_inset ERT
32396 status collapsed
32397
32398 \begin_layout Plain Layout
32399
32400
32401 \backslash
32402 leer 
32403 \end_layout
32404
32405 \end_inset
32406
32407 2CO}
32408 \end_layout
32409
32410 \end_inset
32411 </cell>
32412 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
32413 \begin_inset Text
32414
32415 \begin_layout Plain Layout
32416 \begin_inset Formula $\raisebox{5mm}{}\ce{CO2 + C ->[\alpha][\beta] 2CO}\raisebox{-4mm}{}$
32417 \end_inset
32418
32419
32420 \end_layout
32421
32422 \end_inset
32423 </cell>
32424 </row>
32425 </lyxtabular>
32426
32427 \end_inset
32428
32429
32430 \end_layout
32431
32432 \begin_layout Standard
32433 \begin_inset Note Greyedout
32434 status open
32435
32436 \begin_layout Plain Layout
32437
32438 \series bold
32439 \color none
32440 Achtung:
32441 \series default
32442  Wenn eine Formel in eine 
32443 \series bold
32444
32445 \backslash
32446 ce
32447 \series default
32448 -Box eingefügt wird, führt dies zu LaTeX-Fehlern.
32449  In diesem Fall muss daher TeX-Code verwendet werden, wie z.
32450 \begin_inset space \thinspace{}
32451 \end_inset
32452
32453 B.
32454  für
32455 \begin_inset Newline newline
32456 \end_inset
32457
32458
32459 \series bold
32460
32461 \backslash
32462 ce{$
32463 \backslash
32464 mu
32465 \backslash
32466 hyphen$Cl}
32467 \series default
32468
32469 \begin_inset ERT
32470 status collapsed
32471
32472 \begin_layout Plain Layout
32473
32474
32475 \backslash
32476 ce{$
32477 \backslash
32478 mu
32479 \backslash
32480 hyphen$Cl}
32481 \end_layout
32482
32483 \end_inset
32484
32485  
32486 \end_layout
32487
32488 \end_inset
32489
32490
32491 \end_layout
32492
32493 \begin_layout Standard
32494 \begin_inset Note Greyedout
32495 status open
32496
32497 \begin_layout Plain Layout
32498
32499 \series bold
32500 \color none
32501 Achtung:
32502 \series default
32503  Es ist nicht möglich in LyX das Zeichen ^ zu verwenden um einen Pfeil nach
32504  oben zu bekommen, wie es im 
32505 \series bold
32506 mhchem
32507 \series default
32508 -Handbuch steht.
32509  Man verwendet stattdessen einen kleinen negativen Leerraum gefolgt vom
32510  Befehl 
32511 \series bold
32512
32513 \backslash
32514 uparrow
32515 \series default
32516 :
32517 \begin_inset Newline newline
32518 \end_inset
32519
32520
32521 \begin_inset Formula $\ce{Fe + 2H+ -> Fe^{2+} + H2\negthinspace\uparrow}$
32522 \end_inset
32523
32524
32525 \end_layout
32526
32527 \end_inset
32528
32529
32530 \end_layout
32531
32532 \begin_layout Standard
32533 Wird 
32534 \series bold
32535
32536 \backslash
32537 ce
32538 \series default
32539  benutzt, lautet der Befehl für Gleichung
32540 \begin_inset space ~
32541 \end_inset
32542
32543
32544 \begin_inset CommandInset ref
32545 LatexCommand eqref
32546 reference "eq:chemische-Reaktion"
32547
32548 \end_inset
32549
32550 :
32551 \begin_inset Newline newline
32552 \end_inset
32553
32554
32555 \series bold
32556  
32557 \backslash
32558 ce
32559 \series default
32560
32561 \begin_inset ERT
32562 status collapsed
32563
32564 \begin_layout Plain Layout
32565
32566
32567 \backslash
32568 leer 
32569 \end_layout
32570
32571 \end_inset
32572
32573
32574 \series bold
32575 2Na+
32576 \series default
32577
32578 \begin_inset ERT
32579 status collapsed
32580
32581 \begin_layout Plain Layout
32582
32583
32584 \backslash
32585 leer 
32586 \end_layout
32587
32588 \end_inset
32589
32590
32591 \series bold
32592 +
32593 \series default
32594
32595 \begin_inset ERT
32596 status collapsed
32597
32598 \begin_layout Plain Layout
32599
32600
32601 \backslash
32602 leer 
32603 \end_layout
32604
32605 \end_inset
32606
32607
32608 \series bold
32609 SO4^2-
32610 \series default
32611
32612 \begin_inset ERT
32613 status collapsed
32614
32615 \begin_layout Plain Layout
32616
32617
32618 \backslash
32619 leer 
32620 \end_layout
32621
32622 \end_inset
32623
32624
32625 \begin_inset ERT
32626 status collapsed
32627
32628 \begin_layout Plain Layout
32629
32630
32631 \backslash
32632 leer 
32633 \end_layout
32634
32635 \end_inset
32636
32637
32638 \series bold
32639 ->
32640 \series default
32641
32642 \begin_inset ERT
32643 status collapsed
32644
32645 \begin_layout Plain Layout
32646
32647
32648 \backslash
32649 leer 
32650 \end_layout
32651
32652 \end_inset
32653
32654
32655 \series bold
32656 Na2SO4
32657 \end_layout
32658
32659 \begin_layout Standard
32660 Um mehrzeilige chemische Gleichungen zu erzeugen, wird zuerst eine mehrzeilige
32661  Formel erstellt, wie in 
32662 \begin_inset CommandInset ref
32663 LatexCommand ref
32664 reference "sec:Mehrzeilige-Formeln"
32665
32666 \end_inset
32667
32668  beschrieben.
32669  Anschließend wird in jeder kleinen blauen Box der Formel der Befehl 
32670 \series bold
32671
32672 \backslash
32673 ce
32674 \series default
32675  verwendet.
32676  
32677 \begin_inset CommandInset ref
32678 LatexCommand eqref
32679 reference "eq:TEOS-Reaktion-1"
32680
32681 \end_inset
32682
32683  und 
32684 \begin_inset CommandInset ref
32685 LatexCommand eqref
32686 reference "eq:TEOS-Reaktion-2"
32687
32688 \end_inset
32689
32690  sind ein Beispiel für eine mehrstufige chemische Reaktion, bei der jede
32691  Gleichung eine eigene Nummer hat.
32692 \begin_inset Formula 
32693 \begin{eqnarray}
32694 \ce{TEOS + 4O} & \ce{->} & \ce{Si(OH)4 + 4C2H4O}\label{eq:TEOS-Reaktion-1}\\
32695 \ce{Si(OH)4} & \ce{->} & \ce{SiO2 + 2H2O}\label{eq:TEOS-Reaktion-2}
32696 \end{eqnarray}
32697
32698 \end_inset
32699
32700
32701 \end_layout
32702
32703 \begin_layout Standard
32704 Außer 
32705 \series bold
32706
32707 \backslash
32708 ce
32709 \series default
32710  bietet das Paket 
32711 \series bold
32712 mhchem
32713 \series default
32714  noch den Befehl 
32715 \series bold
32716
32717 \backslash
32718 cf
32719 \series default
32720
32721 \begin_inset Index idx
32722 status collapsed
32723
32724 \begin_layout Plain Layout
32725 Befehle ! C ! 
32726 \backslash
32727 cf
32728 \end_layout
32729
32730 \end_inset
32731
32732  für spezielle Fälle.
32733  Mehr über 
32734 \series bold
32735
32736 \backslash
32737 cf
32738 \series default
32739  und weitere Beispiele sind in der Dokumentation von 
32740 \series bold
32741 mhchem
32742 \series default
32743  zu finden, 
32744 \begin_inset CommandInset citation
32745 LatexCommand cite
32746 key "mhchem"
32747
32748 \end_inset
32749
32750 .
32751 \end_layout
32752
32753 \begin_layout Section
32754 Diagramme
32755 \end_layout
32756
32757 \begin_layout Standard
32758 LyX unterstützt zwei Typen kommutativer Diagramme: 
32759 \series bold
32760 amscd
32761 \series default
32762  und 
32763 \series bold
32764 xymatrix
32765 \series default
32766 , die im Folgenden erläutert sind.
32767 \end_layout
32768
32769 \begin_layout Subsection
32770 amscd Diagramme
32771 \begin_inset Index idx
32772 status collapsed
32773
32774 \begin_layout Plain Layout
32775 Diagramme ! amscd
32776 \end_layout
32777
32778 \end_inset
32779
32780
32781 \end_layout
32782
32783 \begin_layout Standard
32784 Diagramme dieses Typs stellen Beziehungen mittels horizontaler und vertikaler
32785  Linien oder Pfeilen dar:
32786 \begin_inset Formula 
32787 \[
32788 \begin{CD}A@>>>B@>>>C\\
32789 @AAA@.@VVV\\
32790 F@<<<E@<<<D
32791 \end{CD}
32792 \]
32793
32794 \end_inset
32795
32796
32797 \end_layout
32798
32799 \begin_layout Standard
32800 Um sie zu erstellen, gibt man in einer Formel den Befehl 
32801 \series bold
32802
32803 \backslash
32804 CD
32805 \begin_inset Index idx
32806 status collapsed
32807
32808 \begin_layout Plain Layout
32809 Befehle ! C ! 
32810 \backslash
32811 CD
32812 \end_layout
32813
32814 \end_inset
32815
32816
32817 \series default
32818  ein.
32819  Es erscheint ein blaues Kästchen mit zwei gestrichelten Linien, in das
32820  man die weiteren Befehle eingibt.
32821  Mit 
32822 \series bold
32823
32824 \begin_inset ERT
32825 status collapsed
32826
32827 \begin_layout Plain Layout
32828
32829
32830 \backslash
32831 mbox{
32832 \end_layout
32833
32834 \end_inset
32835
32836
32837 \family sans
32838 \series default
32839 Strg+Enter
32840 \family default
32841 \series bold
32842
32843 \begin_inset ERT
32844 status collapsed
32845
32846 \begin_layout Plain Layout
32847
32848 }
32849 \end_layout
32850
32851 \end_inset
32852
32853
32854 \series default
32855  wird eine neue Zeile erstellt.
32856  Horizontale Beziehungen werden in ungerade Zeilen, vertikale in gerade
32857  Zeilen der Formel eingegeben.
32858 \end_layout
32859
32860 \begin_layout Standard
32861 Zum Erstellen der Beziehungen gibt es folgende Befehle:
32862 \end_layout
32863
32864 \begin_layout Itemize
32865
32866 \series bold
32867 @<<<
32868 \series default
32869  erstellt einen Linkspfeil, 
32870 \series bold
32871 @>>>
32872 \series default
32873  einen Rechtspfeil und 
32874 \series bold
32875 @=
32876 \series default
32877  ein langes Gleichheitszeichen
32878 \end_layout
32879
32880 \begin_layout Itemize
32881
32882 \series bold
32883 @AAA
32884 \series default
32885  erstellt einen Pfeil nach oben, 
32886 \series bold
32887 @VVV
32888 \series default
32889  einen Pfeil nach unten und 
32890 \series bold
32891 @|
32892 \series default
32893  ein senkrechtes Gleichheitszeichen
32894 \end_layout
32895
32896 \begin_layout Itemize
32897
32898 \series bold
32899 @.
32900
32901 \series default
32902  dient als Platzhalter für nicht vorhandene Beziehungen
32903 \end_layout
32904
32905 \begin_layout Standard
32906 Alle Pfeile sind wie folgt beschriftbar:
32907 \end_layout
32908
32909 \begin_layout Itemize
32910 Wird bei horizontalen Pfeilen zwischen dem ersten und zweiten < bzw.
32911 \begin_inset space \space{}
32912 \end_inset
32913
32914 > Text eingegeben, erscheint er über dem Pfeil.
32915  Wird der Text zwischen dem zweiten und dritten < bzw.
32916 \begin_inset space \space{}
32917 \end_inset
32918
32919 > eingegeben, erscheint er unter dem Pfeil.
32920 \end_layout
32921
32922 \begin_layout Itemize
32923 Wird bei vertikalen Pfeilen Text zwischen erstem und zweitem A bzw.
32924 \begin_inset space \space{}
32925 \end_inset
32926
32927 V eingegeben, erscheint er links neben dem Pfeil.
32928  Bei Eingabe zwischen zweitem und drittem A bzw.
32929 \begin_inset space \space{}
32930 \end_inset
32931
32932 V erscheint er rechts daneben.
32933  Enthält der Text ein A oder V, müssen diese Buchstaben in eine TeX-Klammer
32934  gesetzt werden.
32935 \end_layout
32936
32937 \begin_layout Standard
32938 Als Beispiel ein Diagramm mit allen möglichen Beziehungen:
32939 \end_layout
32940
32941 \begin_layout Standard
32942 \begin_inset Formula 
32943 \[
32944 \begin{CD}A@>j>>B@>>k>C@=F\\
32945 @AmAA@.@VV{V}V@|\\
32946 D@<<j<E@>k>>F@=C
32947 \end{CD}
32948 \]
32949
32950 \end_inset
32951
32952
32953 \end_layout
32954
32955 \begin_layout Standard
32956 Der Befehl dazu lautet:
32957 \begin_inset Newline newline
32958 \end_inset
32959
32960
32961 \series bold
32962
32963 \backslash
32964 CD
32965 \begin_inset ERT
32966 status collapsed
32967
32968 \begin_layout Plain Layout
32969
32970
32971 \backslash
32972 leer 
32973 \end_layout
32974
32975 \end_inset
32976
32977 A@>j>>B@>>k>C@=F Strg+Enter
32978 \begin_inset Newline newline
32979 \end_inset
32980
32981
32982 \begin_inset Phantom HPhantom
32983 status open
32984
32985 \begin_layout Plain Layout
32986
32987 \series bold
32988
32989 \backslash
32990 CD
32991 \begin_inset ERT
32992 status collapsed
32993
32994 \begin_layout Plain Layout
32995
32996
32997 \backslash
32998 leer 
32999 \end_layout
33000
33001 \end_inset
33002
33003
33004 \end_layout
33005
33006 \end_inset
33007
33008 @AmAA@.@VV
33009 \backslash
33010 {V
33011 \series default
33012
33013 \begin_inset Formula $\to$
33014 \end_inset
33015
33016
33017 \series bold
33018 V@| Strg+Enter
33019 \begin_inset Newline newline
33020 \end_inset
33021
33022
33023 \begin_inset Phantom HPhantom
33024 status open
33025
33026 \begin_layout Plain Layout
33027
33028 \series bold
33029
33030 \backslash
33031 CD
33032 \begin_inset ERT
33033 status collapsed
33034
33035 \begin_layout Plain Layout
33036
33037
33038 \backslash
33039 leer 
33040 \end_layout
33041
33042 \end_inset
33043
33044
33045 \end_layout
33046
33047 \end_inset
33048
33049 D@<<j<E@>k>>F@=C
33050 \end_layout
33051
33052 \begin_layout Subsection
33053 xymatrix Diagramme
33054 \begin_inset Index idx
33055 status collapsed
33056
33057 \begin_layout Plain Layout
33058 Diagramme ! xymatrix
33059 \end_layout
33060
33061 \end_inset
33062
33063
33064 \end_layout
33065
33066 \begin_layout Standard
33067 Um Xymatrizen nutzen zu können, muss das LaTeX-Paket 
33068 \series bold
33069 xypic
33070 \series default
33071  installiert sein.
33072  Eine Xymatrix wird erstellt, indem der Befehl 
33073 \series bold
33074
33075 \backslash
33076 xymatrix
33077 \series default
33078  in eine Formel eingegeben wird.
33079  Dann können Sie neue Matrixspalten und -zeilen wie bei normalen Matrizen
33080  hinzufügen, siehe 
33081 \begin_inset CommandInset ref
33082 LatexCommand ref
33083 reference "sec:Matrizen"
33084
33085 \end_inset
33086
33087 .
33088 \end_layout
33089
33090 \begin_layout Standard
33091 Im Gegensatz zu amscd Diagrammen, unterstützen Xymatrixen diagonale und
33092  gekrümmte Pfeile und vieles mehr.
33093  Alle Möglichkeiten kommutative Diagramme und Dekorationen zu erzeugen,
33094  sind im Detail im 
33095 \emph on
33096 XY-pic-Handbuch
33097 \emph default
33098  erklärt, dass im Menü 
33099 \family sans
33100 Hilfe\SpecialChar \menuseparator
33101 Spezielle
33102 \begin_inset space ~
33103 \end_inset
33104
33105 Handbücher
33106 \family default
33107  zu finden ist.
33108 \end_layout
33109
33110 \begin_layout Subsection
33111
33112 \noun on
33113 Feynman
33114 \noun default
33115  Diagramme
33116 \begin_inset Index idx
33117 status collapsed
33118
33119 \begin_layout Plain Layout
33120 Diagramme ! Feynman
33121 \end_layout
33122
33123 \end_inset
33124
33125
33126 \end_layout
33127
33128 \begin_layout Standard
33129 Um 
33130 \noun on
33131 Feynman-
33132 \noun default
33133 Diagrammen nutzen zu können, muss das LaTeX-Paket 
33134 \series bold
33135 feyn
33136 \series default
33137  installiert sein.
33138  Ein 
33139 \noun on
33140 Feynman-
33141 \noun default
33142 Diagramm wird erstellt, indem der Befehl 
33143 \series bold
33144
33145 \backslash
33146 Diagram
33147 \series default
33148  in eine Formel eingegeben wird.
33149  Dann können Sie neue Matrixspalten und -zeilen wie bei normalen Matrizen
33150  hinzufügen, siehe 
33151 \begin_inset CommandInset ref
33152 LatexCommand ref
33153 reference "sec:Matrizen"
33154
33155 \end_inset
33156
33157 .
33158 \end_layout
33159
33160 \begin_layout Standard
33161 Beispiele wie man in LyX 
33162 \noun on
33163 Feynman-
33164 \noun default
33165 Diagramme erstellt sind im 
33166 \emph on
33167 Feynman-Diagramm Handbuch
33168 \emph default
33169  gegeben, dass im Menü 
33170 \family sans
33171 Hilfe\SpecialChar \menuseparator
33172 Spezielle
33173 \begin_inset space ~
33174 \end_inset
33175
33176 Handbücher
33177 \family default
33178  zu finden ist.
33179 \end_layout
33180
33181 \begin_layout Standard
33182 \begin_inset Newpage newpage
33183 \end_inset
33184
33185
33186 \end_layout
33187
33188 \begin_layout Section
33189 Benutzerdefinierte Befehle
33190 \begin_inset CommandInset label
33191 LatexCommand label
33192 name "sec:Benutzerdefinierte-Befehle"
33193
33194 \end_inset
33195
33196
33197 \begin_inset Index idx
33198 status collapsed
33199
33200 \begin_layout Plain Layout
33201 benutzerdefinierte Befehle
33202 \end_layout
33203
33204 \end_inset
33205
33206
33207 \end_layout
33208
33209 \begin_layout Standard
33210 \begin_inset Note Greyedout
33211 status open
33212
33213 \begin_layout Plain Layout
33214
33215 \series bold
33216 Achtung: 
33217 \series default
33218 Die Namen von benutzerdefinierten Befehlen und Makros dürfen nur aus lateinische
33219 n Buchstaben bestehen.
33220 \end_layout
33221
33222 \end_inset
33223
33224
33225 \end_layout
33226
33227 \begin_layout Subsection
33228 Der Befehl 
33229 \backslash
33230 newcommand
33231 \begin_inset CommandInset label
33232 LatexCommand label
33233 name "sub:Der-Befehl-newcommand"
33234
33235 \end_inset
33236
33237
33238 \begin_inset Index idx
33239 status collapsed
33240
33241 \begin_layout Plain Layout
33242 benutzerdefinierte Befehle ! 
33243 \backslash
33244 newcommand
33245 \end_layout
33246
33247 \end_inset
33248
33249
33250 \begin_inset Index idx
33251 status collapsed
33252
33253 \begin_layout Plain Layout
33254 Befehle ! N ! 
33255 \backslash
33256 newcommand
33257 \end_layout
33258
33259 \end_inset
33260
33261
33262 \end_layout
33263
33264 \begin_layout Standard
33265 Viele der LaTeX-Befehle sind für den ständigen Gebrauch viel zu lang.
33266  Man kann sich aber mit dem Befehl 
33267 \series bold
33268
33269 \backslash
33270 newcommand
33271 \series default
33272  neue kürzere Befehle definieren.
33273 \end_layout
33274
33275 \begin_layout Standard
33276 Das Befehlsschema von 
33277 \series bold
33278
33279 \backslash
33280 newcommand
33281 \series default
33282  lautet:
33283 \end_layout
33284
33285 \begin_layout Standard
33286
33287 \series bold
33288
33289 \backslash
33290 newcommand{neuer Befehlsname}[Argumentanzahl][optionaler
33291 \series default
33292  
33293 \series bold
33294 Wert]
33295 \begin_inset Newline newline
33296 \end_inset
33297
33298
33299 \begin_inset Phantom HPhantom
33300 status open
33301
33302 \begin_layout Plain Layout
33303
33304 \series bold
33305
33306 \backslash
33307 newcommand
33308 \end_layout
33309
33310 \end_inset
33311
33312 {Befehlsdefinition}
33313 \end_layout
33314
33315 \begin_layout Standard
33316 \begin_inset Note Greyedout
33317 status open
33318
33319 \begin_layout Plain Layout
33320
33321 \series bold
33322 Achtung:
33323 \series default
33324  Es muss darauf geachtet werden, dass der Befehlsname nicht schon im Dokument
33325  oder von benutzten LaTeX-Paketen verwendet wird.
33326  Definiert man beispielsweise für 
33327 \series bold
33328
33329 \backslash
33330 Leftarrow
33331 \series default
33332  den Befehl 
33333 \series bold
33334
33335 \backslash
33336 le
33337 \series default
33338 , erhält man eine Fehlermeldung, denn 
33339 \series bold
33340
33341 \backslash
33342 le
33343 \series default
33344  ist schon für 
33345 \begin_inset Quotes gld
33346 \end_inset
33347
33348
33349 \begin_inset Formula $\le$
33350 \end_inset
33351
33352
33353 \begin_inset Quotes grd
33354 \end_inset
33355
33356  definiert.
33357 \end_layout
33358
33359 \end_inset
33360
33361
33362 \end_layout
33363
33364 \begin_layout Standard
33365 Die Argumentanzahl ist eine ganze Zahl im Bereich 0
33366 \begin_inset space \thinspace{}
33367 \end_inset
33368
33369 -
33370 \begin_inset space \thinspace{}
33371 \end_inset
33372
33373 9 und gibt an, wie viele Argumente der neue Befehl haben soll.
33374  Als optionalen Wert kann man den Wert für ein optionales Argument voreinstellen.
33375  Wenn man dies macht, bedeutet das gleichzeitig, dass das 
33376 \emph on
33377 erste
33378 \emph default
33379  Argument des neuen Befehls ein optionales ist.
33380 \end_layout
33381
33382 \begin_layout Standard
33383 Es folgen einige Beispiele:
33384 \end_layout
33385
33386 \begin_layout Itemize
33387 Will man für 
33388 \series bold
33389
33390 \backslash
33391 Longrightarrow
33392 \series default
33393  den Befehl 
33394 \series bold
33395
33396 \backslash
33397 gr
33398 \series default
33399  definieren, lautet die LaTeX-Vor\SpecialChar \-
33400 spannzeile:
33401 \begin_inset VSpace medskip
33402 \end_inset
33403
33404
33405 \begin_inset Newline newline
33406 \end_inset
33407
33408
33409 \series bold
33410
33411 \backslash
33412 newcommand{
33413 \backslash
33414 gr}{
33415 \backslash
33416 Longrightarrow}
33417 \end_layout
33418
33419 \begin_layout Itemize
33420 Um für den Befehl 
33421 \series bold
33422
33423 \backslash
33424 underline
33425 \series default
33426  den Befehl 
33427 \series bold
33428
33429 \backslash
33430 us
33431 \series default
33432  zu definieren, muss das Argument (was unterstrichen werden soll) berücksichtigt
33433  werden.
33434  Dazu sieht die Vorspannzeile wie folgt aus:
33435 \begin_inset VSpace medskip
33436 \end_inset
33437
33438
33439 \begin_inset Newline newline
33440 \end_inset
33441
33442
33443 \series bold
33444
33445 \backslash
33446 newcommand{
33447 \backslash
33448 us}[1]{
33449 \backslash
33450 underline{#1}}
33451 \series default
33452
33453 \begin_inset VSpace medskip
33454 \end_inset
33455
33456
33457 \begin_inset Newline newline
33458 \end_inset
33459
33460 Das Zeichen 
33461 \series bold
33462 #
33463 \series default
33464  fungiert als Argumentplatzhalter, die 
33465 \series bold
33466 1
33467 \series default
33468  dahinter gibt an, dass es der Platzhalter für das erste Argument ist.
33469 \end_layout
33470
33471 \begin_layout Itemize
33472 Für 
33473 \series bold
33474
33475 \backslash
33476 framebox
33477 \series default
33478  kann man z.
33479 \begin_inset space \thinspace{}
33480 \end_inset
33481
33482 B.
33483  den Befehl 
33484 \series bold
33485
33486 \backslash
33487 fb
33488 \series default
33489  definieren:
33490 \begin_inset VSpace medskip
33491 \end_inset
33492
33493
33494 \begin_inset Newline newline
33495 \end_inset
33496
33497
33498 \series bold
33499
33500 \backslash
33501 newcommand{
33502 \backslash
33503 fb}[3]{
33504 \backslash
33505 framebox#1#2{$#3$}}
33506 \series default
33507
33508 \begin_inset VSpace medskip
33509 \end_inset
33510
33511
33512 \begin_inset Newline newline
33513 \end_inset
33514
33515 Die beiden Dollarzeichen erstellen hierbei die für 
33516 \series bold
33517
33518 \backslash
33519 framebox
33520 \series default
33521  geforderte weitere Formel, siehe 
33522 \begin_inset CommandInset ref
33523 LatexCommand ref
33524 reference "sub:Boxen-mit-Rahmen"
33525
33526 \end_inset
33527
33528 .
33529 \end_layout
33530
33531 \begin_layout Itemize
33532 Um einen neuen Befehl für 
33533 \series bold
33534
33535 \backslash
33536 fcolorbox
33537 \series default
33538  zu erstellen, bei dem die Farbe der Box nicht mehr angegeben werden muss,
33539  definiert man das Argument für die Farbe als optional:
33540 \begin_inset VSpace medskip
33541 \end_inset
33542
33543
33544 \begin_inset Newline newline
33545 \end_inset
33546
33547
33548 \series bold
33549
33550 \backslash
33551 newcommand{
33552 \backslash
33553 cb}[3][white]{
33554 \backslash
33555 fcolorbox{#2}{#1}{$#3$}}
33556 \series default
33557
33558 \begin_inset VSpace medskip
33559 \end_inset
33560
33561
33562 \begin_inset Newline newline
33563 \end_inset
33564
33565 Gibt man bei der Verwendung von 
33566 \series bold
33567
33568 \backslash
33569 cb
33570 \series default
33571  die Farbe nicht an, wird die voreingestellte Farbe 
33572 \series bold
33573 white
33574 \series default
33575  verwendet.
33576 \end_layout
33577
33578 \begin_layout Standard
33579 Ein Test der neu definierten Befehle:
33580 \end_layout
33581
33582 \begin_layout Standard
33583 \align center
33584 \begin_inset Tabular
33585 <lyxtabular version="3" rows="6" columns="2">
33586 <features tabularvalignment="middle">
33587 <column alignment="center" valignment="top" width="0">
33588 <column alignment="center" valignment="top" width="0">
33589 <row>
33590 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
33591 \begin_inset Text
33592
33593 \begin_layout Plain Layout
33594 Befehl
33595 \end_layout
33596
33597 \end_inset
33598 </cell>
33599 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
33600 \begin_inset Text
33601
33602 \begin_layout Plain Layout
33603 Ergebnis
33604 \begin_inset Note Note
33605 status collapsed
33606
33607 \begin_layout Plain Layout
33608
33609 \series bold
33610
33611 \backslash
33612 raisebox
33613 \series default
33614  dient nur als Abstandhalter.
33615 \end_layout
33616
33617 \end_inset
33618
33619
33620 \end_layout
33621
33622 \end_inset
33623 </cell>
33624 </row>
33625 <row>
33626 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
33627 \begin_inset Text
33628
33629 \begin_layout Plain Layout
33630 A
33631 \backslash
33632 gr
33633 \begin_inset ERT
33634 status collapsed
33635
33636 \begin_layout Plain Layout
33637
33638
33639 \backslash
33640 leer 
33641 \end_layout
33642
33643 \end_inset
33644
33645 B
33646 \end_layout
33647
33648 \end_inset
33649 </cell>
33650 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
33651 \begin_inset Text
33652
33653 \begin_layout Plain Layout
33654 \begin_inset Formula $A\gr B$
33655 \end_inset
33656
33657
33658 \end_layout
33659
33660 \end_inset
33661 </cell>
33662 </row>
33663 <row>
33664 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
33665 \begin_inset Text
33666
33667 \begin_layout Plain Layout
33668
33669 \backslash
33670 us{ABcd
33671 \end_layout
33672
33673 \end_inset
33674 </cell>
33675 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
33676 \begin_inset Text
33677
33678 \begin_layout Plain Layout
33679 \begin_inset Formula $\raisebox{4.5mm}{}\us{ABcd}\raisebox{-2mm}{}$
33680 \end_inset
33681
33682
33683 \end_layout
33684
33685 \end_inset
33686 </cell>
33687 </row>
33688 <row>
33689 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
33690 \begin_inset Text
33691
33692 \begin_layout Plain Layout
33693
33694 \backslash
33695 fb{[2cm]
33696 \begin_inset Formula $\to$
33697 \end_inset
33698
33699
33700 \backslash
33701 {
33702 \begin_inset Formula $\to$
33703 \end_inset
33704
33705
33706 \backslash
33707 {
33708 \backslash
33709 int
33710 \begin_inset ERT
33711 status collapsed
33712
33713 \begin_layout Plain Layout
33714
33715
33716 \backslash
33717 leer 
33718 \end_layout
33719
33720 \end_inset
33721
33722 A=B
33723 \end_layout
33724
33725 \end_inset
33726 </cell>
33727 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
33728 \begin_inset Text
33729
33730 \begin_layout Plain Layout
33731 \begin_inset Formula $\raisebox{6mm}{}\fb{[2cm]}{}{\int A=B}\raisebox{-4mm}{}$
33732 \end_inset
33733
33734
33735 \end_layout
33736
33737 \end_inset
33738 </cell>
33739 </row>
33740 <row>
33741 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
33742 \begin_inset Text
33743
33744 \begin_layout Plain Layout
33745
33746 \backslash
33747 cb{red
33748 \begin_inset Formula $\to$
33749 \end_inset
33750
33751
33752 \backslash
33753 {
33754 \backslash
33755 int
33756 \begin_inset ERT
33757 status collapsed
33758
33759 \begin_layout Plain Layout
33760
33761
33762 \backslash
33763 leer 
33764 \end_layout
33765
33766 \end_inset
33767
33768 A=B
33769 \end_layout
33770
33771 \end_inset
33772 </cell>
33773 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
33774 \begin_inset Text
33775
33776 \begin_layout Plain Layout
33777 \begin_inset Formula $\raisebox{6mm}{}\cb{red}{\int A=B}\raisebox{-4mm}{}$
33778 \end_inset
33779
33780
33781 \end_layout
33782
33783 \end_inset
33784 </cell>
33785 </row>
33786 <row>
33787 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
33788 \begin_inset Text
33789
33790 \begin_layout Plain Layout
33791
33792 \backslash
33793 cb[green]
33794 \backslash
33795 {red
33796 \begin_inset Formula $\to$
33797 \end_inset
33798
33799
33800 \backslash
33801 {
33802 \backslash
33803 int
33804 \begin_inset ERT
33805 status collapsed
33806
33807 \begin_layout Plain Layout
33808
33809
33810 \backslash
33811 leer 
33812 \end_layout
33813
33814 \end_inset
33815
33816 A=B
33817 \end_layout
33818
33819 \end_inset
33820 </cell>
33821 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
33822 \begin_inset Text
33823
33824 \begin_layout Plain Layout
33825 \begin_inset Formula $\raisebox{6mm}{}\cb[green]{red}{\int A=B}\raisebox{-4mm}{}$
33826 \end_inset
33827
33828
33829 \end_layout
33830
33831 \end_inset
33832 </cell>
33833 </row>
33834 </lyxtabular>
33835
33836 \end_inset
33837
33838
33839 \end_layout
33840
33841 \begin_layout Subsection
33842 Mathe-Makros
33843 \begin_inset Index idx
33844 status collapsed
33845
33846 \begin_layout Plain Layout
33847 benutzerdefinierte Befehle ! Mathe-Makros
33848 \end_layout
33849
33850 \end_inset
33851
33852
33853 \begin_inset Index idx
33854 status collapsed
33855
33856 \begin_layout Plain Layout
33857 Makros
33858 \end_layout
33859
33860 \end_inset
33861
33862
33863 \end_layout
33864
33865 \begin_layout Standard
33866 Besonders praktisch sind eigene Befehle für komplexe Ausdrücke.
33867  Hat man es in einem Dokument z.
33868 \begin_inset space \thinspace{}
33869 \end_inset
33870
33871 B.
33872  häufiger mit quadratischen Gleichungen zu tun, tritt immer derselbe Lösungstyp
33873  auf.
33874  Die allgemeine Form einer quadratischen Gleichung ist
33875 \begin_inset Formula 
33876 \[
33877 0=\lambda^{2}+p\lambda+q
33878 \]
33879
33880 \end_inset
33881
33882 Die allgemeine Form der Lösung lautet
33883 \begin_inset Formula 
33884 \[
33885 \lambda_{1,2}=-\frac{p}{2}\pm\sqrt{\frac{p²}{4}-q}
33886 \]
33887
33888 \end_inset
33889
33890
33891 \end_layout
33892
33893 \begin_layout Standard
33894 Um für die Lösungsformel einen Befehl zu definieren, bei dem nur noch die
33895  drei Parameter 
33896 \begin_inset Formula $\lambda$
33897 \end_inset
33898
33899
33900 \begin_inset Formula $p$
33901 \end_inset
33902
33903  und 
33904 \begin_inset Formula $q$
33905 \end_inset
33906
33907  angegeben werden müssen und der Index von 
33908 \begin_inset Formula $\lambda$
33909 \end_inset
33910
33911  optional angeben werden kann, lautet die LaTeX-Vorspannzeile
33912 \begin_inset Newline newline
33913 \end_inset
33914
33915
33916 \series bold
33917
33918 \backslash
33919 newcommand{
33920 \backslash
33921 qG}[4][1,
33922 \backslash
33923 ,2]{#2_{#1}=-
33924 \backslash
33925 frac{#3}{2}
33926 \backslash
33927 pm
33928 \begin_inset Newline newline
33929 \end_inset
33930
33931
33932 \begin_inset Phantom HPhantom
33933 status open
33934
33935 \begin_layout Plain Layout
33936
33937 \series bold
33938
33939 \backslash
33940 newcommand
33941 \end_layout
33942
33943 \end_inset
33944
33945
33946 \backslash
33947 sqrt{
33948 \backslash
33949 frac{#3^{2}}{4}-#4}}
33950 \end_layout
33951
33952 \begin_layout Standard
33953 Um damit die Lösungsformel zu erstellen, gibt man in einer Formel den Befehl
33954  
33955 \begin_inset Newline newline
33956 \end_inset
33957
33958
33959 \series bold
33960
33961 \backslash
33962 qG{
33963 \backslash
33964 lambda
33965 \begin_inset Formula $\to$
33966 \end_inset
33967
33968
33969 \backslash
33970 {p
33971 \begin_inset Formula $\to$
33972 \end_inset
33973
33974
33975 \backslash
33976 {q 
33977 \series default
33978 ein.
33979 \end_layout
33980
33981 \begin_layout Standard
33982 Die Definition des neuen Befehls ist unintuitiv, denn man muss die Schemata
33983  aller verwendeten LaTeX-Befehle kennen, z.
33984 \begin_inset space \thinspace{}
33985 \end_inset
33986
33987 B.
33988  dass ein Bruch in LaTeX mit 
33989 \series bold
33990
33991 \backslash
33992 frac{Zähler}
33993 \begin_inset Newline linebreak
33994 \end_inset
33995
33996 {Nenner}
33997 \series default
33998  eingegeben wird.
33999  Außerdem kann man leicht eine geschweifte Klammer vergessen und man kann
34000  in LyX nicht sehen, was der neue Befehl macht.
34001  Um diesen Problemen aus dem Weg zu gehen, gibt es in LyX die Möglichkeit
34002  Mathe-Makros statt den Befehl 
34003 \series bold
34004
34005 \backslash
34006 newcommand
34007 \series default
34008  zu verwenden.
34009 \end_layout
34010
34011 \begin_layout Standard
34012 Ein Mathe-Makro wird erstellt, indem man das Menü 
34013 \family sans
34014 Einfügen\SpecialChar \menuseparator
34015 Mathe\SpecialChar \menuseparator
34016 Makro
34017 \family default
34018  oder den Werkzeugleistenknopf 
34019 \begin_inset Graphics
34020         filename ../../images/math-macro_newmacroname_newcommand.png
34021         scale 85
34022
34023 \end_inset
34024
34025  verwendet.
34026  Es erscheint die Mathe-Makro-Werkzeugleiste und folgende Box, in der das
34027  Makro definiert wird:
34028 \begin_inset Newline newline
34029 \end_inset
34030
34031
34032 \begin_inset space \hspace*{\fill}
34033 \end_inset
34034
34035
34036 \begin_inset Graphics
34037         filename ../clipart/macrobox.png
34038
34039 \end_inset
34040
34041
34042 \begin_inset space \hspace*{\fill}
34043 \end_inset
34044
34045
34046 \begin_inset Newline newline
34047 \end_inset
34048
34049
34050 \begin_inset FormulaMacro
34051 \newcommand{\qG}[4][1,\,2]{#2_{#1}=-\frac{#3}{2}\pm\sqrt{\frac{#3^{2}}{4}-#4}}
34052 \end_inset
34053
34054
34055 \backslash
34056 newmacroname ist der voreingestellte Makroname, der auf etwas sinnvolles
34057  geändert werden sollte.
34058  In das erste blaue Kästchen gibt man die gewünschte Formel ein.
34059  Einen Argumentplatzhalter fügt man mit dem Befehl 
34060 \series bold
34061
34062 \backslash
34063 #Argumentnummer
34064 \series default
34065  ein, z.
34066 \begin_inset space \thinspace{}
34067 \end_inset
34068
34069 B.
34070  
34071 \series bold
34072
34073 \backslash
34074 #1
34075 \series default
34076  oder man verwendet den Makro-Werkzeugleistenknopf 
34077 \begin_inset Graphics
34078         filename ../../images/math-macro-add-param.png
34079         scale 85
34080
34081 \end_inset
34082
34083 .
34084  Argumentplatzhalter werden rot dargestellt.
34085  Es sind maximal 9
34086 \begin_inset space ~
34087 \end_inset
34088
34089 Argumente möglich.
34090  Optionale Argumente werden mit dem Werkzeugleistenknopf 
34091 \begin_inset Graphics
34092         filename ../../images/math-macro-add-optional-param.png
34093         scale 85
34094
34095 \end_inset
34096
34097  erstellt.
34098  Mit dem Werkzeugleistenknopf 
34099 \begin_inset Graphics
34100         filename ../../images/math-macro-make-optional.png
34101         scale 85
34102
34103 \end_inset
34104
34105  kann das erste nicht-optionale Argument in ein optionales verwandelt werden.
34106  Im zweiten Kästchen kann man definieren wie das Makro in LyX angezeigt
34107  werden soll.
34108  Normalerweise will man es so sehen, wie es definiert wurde, wozu man das
34109  Kästchen leer lässt.
34110  Hat man hingegen ein Makro erstellt, der auf dem Bildschirm viel Platz
34111  einnimmt, kann man in das Kästchen z.
34112 \begin_inset space \thinspace{}
34113 \end_inset
34114
34115 B.
34116 \begin_inset Newline newline
34117 \end_inset
34118
34119
34120 \series bold
34121 qG: 
34122 \backslash
34123 #1
34124 \series default
34125  
34126 \series bold
34127 ,
34128 \series default
34129  
34130 \series bold
34131
34132 \backslash
34133 #2
34134 \series default
34135  
34136 \series bold
34137 ,
34138 \series default
34139  
34140 \series bold
34141
34142 \backslash
34143 #3, 
34144 \backslash
34145 #4
34146 \begin_inset Newline newline
34147 \end_inset
34148
34149
34150 \series default
34151 eingeben.
34152  Für das Makro werden dann in LyX nur die Argumente mit dem davor stehenden
34153  Makronamen angezeigt, was für mehr Überblick im Dokument sorgt.
34154  Im Ausdruck erscheint die Formel so, wie sie im ersten Kästchen definiert
34155  wurde.
34156 \begin_inset Newline newline
34157 \end_inset
34158
34159 Das Erscheinungsbild von Makros in Formeln lässt sich außerdem für einzelne
34160  Makros ändern, indem man den Cursor in das Makro setzt und das Menü 
34161 \family sans
34162 Ansicht\SpecialChar \menuseparator
34163 Mathe-Makro
34164 \begin_inset space ~
34165 \end_inset
34166
34167 auf/zuklappen
34168 \family default
34169  verwendet.
34170 \end_layout
34171
34172 \begin_layout Standard
34173 Um ein Makro zu verwenden, gibt man in eine Formel den Makronamen als Befehl
34174  ein, in unserem Fall 
34175 \series bold
34176
34177 \backslash
34178 qG
34179 \series default
34180 .
34181  Unser Makro sieht in LyX folgendermaßen aus:
34182 \begin_inset Newline newline
34183 \end_inset
34184
34185
34186 \begin_inset space \hspace*{\fill}
34187 \end_inset
34188
34189
34190 \begin_inset Graphics
34191         filename ../clipart/macrouse.png
34192
34193 \end_inset
34194
34195
34196 \begin_inset space \hspace*{\fill}
34197 \end_inset
34198
34199
34200 \begin_inset Newline newline
34201 \end_inset
34202
34203 Hier ist unser Makro-Beispiel mit den Argumenten 
34204 \begin_inset Formula $x$
34205 \end_inset
34206
34207
34208 \begin_inset Formula $\ln(x)$
34209 \end_inset
34210
34211  und 
34212 \begin_inset Formula $B$
34213 \end_inset
34214
34215 :
34216 \end_layout
34217
34218 \begin_layout Standard
34219 \begin_inset Formula 
34220 \[
34221 \qG x{\ln(x)}B
34222 \]
34223
34224 \end_inset
34225
34226
34227 \end_layout
34228
34229 \begin_layout Standard
34230 LyX bietet im Menü 
34231 \family sans
34232 Werkzeuge\SpecialChar \menuseparator
34233 Einstellungen\SpecialChar \menuseparator
34234 Bearbeiten\SpecialChar \menuseparator
34235 Kontrolle
34236 \family default
34237  verschiedene Bearbeitungsstile für Makros an.
34238  Um den Stil zu finden, der für Sie am angenehmsten ist, wählen Sie einen
34239  Stil aus und setzen den Cursor in eine Makro-Formel um den Unterschied
34240  zu sehen.
34241 \end_layout
34242
34243 \begin_layout Standard
34244 Ein Mathe-Makro wird beim Exportieren des Dokuments intern in einen 
34245 \series bold
34246
34247 \backslash
34248 new\SpecialChar \-
34249 command
34250 \series default
34251 -Befehl umgewandelt.
34252  Der 
34253 \series bold
34254
34255 \backslash
34256 newcommand
34257 \series default
34258 -Befehl wird dabei nicht in den LaTeX-Vorspann gesetzt, so dass man daher
34259  Makros nur in Formeln verwenden kann, die sich im Dokument unterhalb der
34260  Makrodefinitionsbox befinden.
34261 \end_layout
34262
34263 \begin_layout Standard
34264 Mathe-Makros können auch direkt aus einem 
34265 \series bold
34266
34267 \backslash
34268 newcommand
34269 \series default
34270 -Befehl erstellt werden.
34271  Schreibt man z.
34272 \begin_inset space \thinspace{}
34273 \end_inset
34274
34275 B.
34276  den Befehl
34277 \series bold
34278
34279 \begin_inset Newline newline
34280 \end_inset
34281
34282
34283 \backslash
34284 newcommand{
34285 \backslash
34286 larrow}[2]{
34287 \backslash
34288 xleftarrow[#2]{#1}}
34289 \begin_inset Newline newline
34290 \end_inset
34291
34292
34293 \series default
34294 in LyX als normalen Text, markiert ihn komplett und verwendet dann das Tastenkür
34295 zel 
34296 \family sans
34297 Strg+M
34298 \family default
34299 , wird der Befehl in ein Mathe-Makro umgewandelt.
34300  Bei dieser Methode muss man jedoch aufpassen, dass der 
34301 \series bold
34302
34303 \backslash
34304 newcommand
34305 \series default
34306 -Befehl richtig geschrieben wurde, ansonsten wird ein fehlerhaftes Makro
34307  erstellt, dass später LaTeX-Fehler hervorruft.
34308 \end_layout
34309
34310 \begin_layout Standard
34311 Mathe-Makros haben im Moment noch das Problem, dass weitere Formeln in einer
34312  Makrodefinition fehlerhaft behandelt werden.
34313  Dadurch kann das Beispiel 
34314 \series bold
34315
34316 \backslash
34317 fb
34318 \series default
34319  aus 
34320 \begin_inset CommandInset ref
34321 LatexCommand ref
34322 reference "sub:Der-Befehl-newcommand"
34323
34324 \end_inset
34325
34326  nicht als Makro erzeugt werden.
34327 \end_layout
34328
34329 \begin_layout Standard
34330 Wenn der Cursor in einer Makrodefinitionsbox ist, wird die Makro-Werkzeugleiste
34331  in LyX angezeigt:
34332 \end_layout
34333
34334 \begin_layout Standard
34335 \begin_inset VSpace defskip
34336 \end_inset
34337
34338
34339 \end_layout
34340
34341 \begin_layout Standard
34342 \begin_inset Graphics
34343         filename ../clipart/MacroToolbar.png
34344
34345 \end_inset
34346
34347
34348 \begin_inset Index idx
34349 status collapsed
34350
34351 \begin_layout Plain Layout
34352 Makros ! Werkzeugleiste
34353 \end_layout
34354
34355 \end_inset
34356
34357
34358 \end_layout
34359
34360 \begin_layout Standard
34361 \begin_inset VSpace defskip
34362 \end_inset
34363
34364
34365 \end_layout
34366
34367 \begin_layout Standard
34368 Die Makro-Werkzeugleiste enthält von links nach rechts die folgenden Knöpfe:
34369 \end_layout
34370
34371 \begin_layout Standard
34372 \begin_inset VSpace defskip
34373 \end_inset
34374
34375
34376 \end_layout
34377
34378 \begin_layout Standard
34379 \begin_inset Tabular
34380 <lyxtabular version="3" rows="9" columns="2">
34381 <features islongtable="true" longtabularalignment="center">
34382 <column alignment="left" valignment="top" width="0">
34383 <column alignment="left" valignment="top" width="85col%">
34384 <row interlinespace="2.5mm">
34385 <cell alignment="center" valignment="top" usebox="none">
34386 \begin_inset Text
34387
34388 \begin_layout Plain Layout
34389 \begin_inset Graphics
34390         filename ../../images/math-macro-remove-param.png
34391         rotateOrigin center
34392
34393 \end_inset
34394
34395
34396 \end_layout
34397
34398 \end_inset
34399 </cell>
34400 <cell alignment="center" valignment="top" usebox="none">
34401 \begin_inset Text
34402
34403 \begin_layout Plain Layout
34404
34405 \family sans
34406 Bearbeiten\SpecialChar \menuseparator
34407 Mathe\SpecialChar \menuseparator
34408 Makro-Definition\SpecialChar \menuseparator
34409 Letztes Argument entfernen
34410 \end_layout
34411
34412 \end_inset
34413 </cell>
34414 </row>
34415 <row interlinespace="2.5mm">
34416 <cell alignment="center" valignment="top" usebox="none">
34417 \begin_inset Text
34418
34419 \begin_layout Plain Layout
34420 \begin_inset Graphics
34421         filename ../../images/math-macro-add-param.png
34422         rotateOrigin center
34423
34424 \end_inset
34425
34426
34427 \end_layout
34428
34429 \end_inset
34430 </cell>
34431 <cell alignment="center" valignment="top" usebox="none">
34432 \begin_inset Text
34433
34434 \begin_layout Plain Layout
34435
34436 \family sans
34437 Bearbeiten\SpecialChar \menuseparator
34438 Mathe\SpecialChar \menuseparator
34439 Makro-Definition\SpecialChar \menuseparator
34440 Argument hinzufügen
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-optional.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 erste nicht-optionale
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 Argument in einen optionales
34491 \begin_inset Newline newline
34492 \end_inset
34493
34494
34495 \begin_inset Phantom HPhantom
34496 status open
34497
34498 \begin_layout Plain Layout
34499
34500 \family sans
34501 Bearbeiten\SpecialChar \menuseparator
34502 Mathe\SpecialChar \menuseparator
34503 Makro-Definition\SpecialChar \menuseparator
34504
34505 \end_layout
34506
34507 \end_inset
34508
34509 ändern
34510 \end_layout
34511
34512 \end_inset
34513 </cell>
34514 </row>
34515 <row interlinespace="2.5mm">
34516 <cell alignment="center" valignment="top" usebox="none">
34517 \begin_inset Text
34518
34519 \begin_layout Plain Layout
34520 \begin_inset Graphics
34521         filename ../../images/math-macro-make-nonoptional.png
34522         rotateOrigin center
34523
34524 \end_inset
34525
34526
34527 \end_layout
34528
34529 \end_inset
34530 </cell>
34531 <cell alignment="center" valignment="top" usebox="none">
34532 \begin_inset Text
34533
34534 \begin_layout Plain Layout
34535
34536 \family sans
34537 Bearbeiten\SpecialChar \menuseparator
34538 Mathe\SpecialChar \menuseparator
34539 Makro-Definition\SpecialChar \menuseparator
34540 Das letzte optionale Argument in
34541 \begin_inset Newline newline
34542 \end_inset
34543
34544
34545 \begin_inset Phantom HPhantom
34546 status open
34547
34548 \begin_layout Plain Layout
34549
34550 \family sans
34551 Bearbeiten\SpecialChar \menuseparator
34552 Mathe\SpecialChar \menuseparator
34553 Makro-Definition\SpecialChar \menuseparator
34554
34555 \end_layout
34556
34557 \end_inset
34558
34559 einen nicht-optionales ändern
34560 \end_layout
34561
34562 \end_inset
34563 </cell>
34564 </row>
34565 <row interlinespace="2.5mm">
34566 <cell alignment="center" valignment="top" usebox="none">
34567 \begin_inset Text
34568
34569 \begin_layout Plain Layout
34570 \begin_inset Graphics
34571         filename ../../images/math-macro-remove-optional-param.png
34572         rotateOrigin center
34573
34574 \end_inset
34575
34576
34577 \end_layout
34578
34579 \end_inset
34580 </cell>
34581 <cell alignment="center" valignment="top" usebox="none">
34582 \begin_inset Text
34583
34584 \begin_layout Plain Layout
34585
34586 \family sans
34587 Bearbeiten\SpecialChar \menuseparator
34588 Mathe\SpecialChar \menuseparator
34589 Makro-Definition\SpecialChar \menuseparator
34590 Optionales Argument entfernen
34591 \end_layout
34592
34593 \end_inset
34594 </cell>
34595 </row>
34596 <row interlinespace="2.5mm">
34597 <cell alignment="center" valignment="top" usebox="none">
34598 \begin_inset Text
34599
34600 \begin_layout Plain Layout
34601 \begin_inset Graphics
34602         filename ../../images/math-macro-add-optional-param.png
34603         rotateOrigin center
34604
34605 \end_inset
34606
34607
34608 \end_layout
34609
34610 \end_inset
34611 </cell>
34612 <cell alignment="center" valignment="top" usebox="none">
34613 \begin_inset Text
34614
34615 \begin_layout Plain Layout
34616
34617 \family sans
34618 Bearbeiten\SpecialChar \menuseparator
34619 Mathe\SpecialChar \menuseparator
34620 Makro-Definition\SpecialChar \menuseparator
34621 Optionales Argument einfügen
34622 \end_layout
34623
34624 \end_inset
34625 </cell>
34626 </row>
34627 <row interlinespace="2.5mm">
34628 <cell alignment="center" valignment="top" usebox="none">
34629 \begin_inset Text
34630
34631 \begin_layout Plain Layout
34632 \begin_inset Graphics
34633         filename ../../images/math-macro-remove-greedy-param.png
34634         rotateOrigin center
34635
34636 \end_inset
34637
34638
34639 \end_layout
34640
34641 \end_inset
34642 </cell>
34643 <cell alignment="center" valignment="top" usebox="none">
34644 \begin_inset Text
34645
34646 \begin_layout Plain Layout
34647
34648 \family sans
34649 Bearbeiten\SpecialChar \menuseparator
34650 Mathe\SpecialChar \menuseparator
34651 Makro-Definition\SpecialChar \menuseparator
34652 Letztes Argument rechts entfernen
34653 \end_layout
34654
34655 \end_inset
34656 </cell>
34657 </row>
34658 <row interlinespace="2.5mm">
34659 <cell alignment="center" valignment="top" usebox="none">
34660 \begin_inset Text
34661
34662 \begin_layout Plain Layout
34663 \begin_inset Graphics
34664         filename ../../images/math-macro-append-greedy-param.png
34665         rotateOrigin center
34666
34667 \end_inset
34668
34669
34670 \end_layout
34671
34672 \end_inset
34673 </cell>
34674 <cell alignment="center" valignment="top" usebox="none">
34675 \begin_inset Text
34676
34677 \begin_layout Plain Layout
34678
34679 \family sans
34680 Bearbeiten\SpecialChar \menuseparator
34681 Mathe\SpecialChar \menuseparator
34682 Makro-Definition\SpecialChar \menuseparator
34683 Argument von rechts hinzufügen
34684 \end_layout
34685
34686 \end_inset
34687 </cell>
34688 </row>
34689 <row interlinespace="2.5mm">
34690 <cell alignment="center" valignment="top" usebox="none">
34691 \begin_inset Text
34692
34693 \begin_layout Plain Layout
34694 \begin_inset Graphics
34695         filename ../../images/math-macro-add-greedy-optional-param.png
34696         rotateOrigin center
34697
34698 \end_inset
34699
34700
34701 \end_layout
34702
34703 \end_inset
34704 </cell>
34705 <cell alignment="center" valignment="top" usebox="none">
34706 \begin_inset Text
34707
34708 \begin_layout Plain Layout
34709
34710 \family sans
34711 Bearbeiten\SpecialChar \menuseparator
34712 Mathe\SpecialChar \menuseparator
34713 Makro-Definition\SpecialChar \menuseparator
34714 Optionales Argument von rechts
34715 \begin_inset Newline newline
34716 \end_inset
34717
34718
34719 \begin_inset Phantom HPhantom
34720 status open
34721
34722 \begin_layout Plain Layout
34723
34724 \family sans
34725 Bearbeiten\SpecialChar \menuseparator
34726 Mathe\SpecialChar \menuseparator
34727 Makro-Definition\SpecialChar \menuseparator
34728
34729 \end_layout
34730
34731 \end_inset
34732
34733 hinzufügen
34734 \end_layout
34735
34736 \end_inset
34737 </cell>
34738 </row>
34739 </lyxtabular>
34740
34741 \end_inset
34742
34743
34744 \end_layout
34745
34746 \begin_layout Section
34747 Computeralgebrasysteme
34748 \end_layout
34749
34750 \begin_layout Standard
34751 Mit LyX ist es möglich, mathematische Ausdrücke mit externen Anwendungen
34752  oder benutzerdefinierten Skripten auszutauschen.
34753  Momentan werden folgende Anwendungen unterstützt: 
34754 \family typewriter
34755 Maple
34756 \family default
34757
34758 \family typewriter
34759 Mathematica
34760 \family default
34761
34762 \family typewriter
34763 Maxima
34764 \family default
34765  und 
34766 \family typewriter
34767 Octave
34768 \family default
34769 .
34770  Beachten Sie aber, dass die unterstützten mathematischen Ausdrücke auf
34771  sehr einfache Fälle beschränkt sind.
34772 \end_layout
34773
34774 \begin_layout Subsection
34775 Verwendung
34776 \end_layout
34777
34778 \begin_layout Standard
34779 Schreiben Sie einen Ausdruck in eine Formel, öffnen Sie das Menü 
34780 \family sans
34781 Bearbeiten\SpecialChar \menuseparator
34782 Mathe\SpecialChar \menuseparator
34783 Computer-Algebra-System verwenden
34784 \family default
34785  und wählen Sie die Anwendung, die Sie auf ihrem Computer installiert haben.
34786  Danach sollte das Ergebnis der Berechnung auf der rechten Seite zusammen
34787  mit dem 
34788 \begin_inset Quotes gld
34789 \end_inset
34790
34791 =
34792 \begin_inset Quotes grd
34793 \end_inset
34794
34795  Operator erscheinen.
34796 \end_layout
34797
34798 \begin_layout Standard
34799 Hier sind ein paar einfache Beispiele (mit Resultaten von 
34800 \family typewriter
34801 Maxima
34802 \family default
34803 ) um zu zeigen, welche Berechnungen durchgeführt werden können:
34804 \end_layout
34805
34806 \begin_layout Itemize
34807 \begin_inset Formula $\frac{37}{3}*2-\sum_{i=1}^{3}i^{i}=-\frac{22}{3}$
34808 \end_inset
34809
34810
34811 \end_layout
34812
34813 \begin_layout Itemize
34814 \begin_inset Formula $\frac{37.0}{3}=12.33333333333333$
34815 \end_inset
34816
34817
34818 \end_layout
34819
34820 \begin_layout Itemize
34821 \begin_inset Formula $\int_{1}^{2}\sin(x)dx=\cos1-\cos2$
34822 \end_inset
34823
34824
34825 \end_layout
34826
34827 \begin_layout Itemize
34828 \begin_inset Formula $\det\left[\begin{array}{ccc}
34829 1 & 6 & 7\\
34830 2 & 5 & 8\\
34831 3 & 4 & 17
34832 \end{array}\right]=-56$
34833 \end_inset
34834
34835
34836 \end_layout
34837
34838 \begin_layout Itemize
34839 \begin_inset Formula $\lim_{x\rightarrow0}\left(\frac{\sin(x)}{x}\right)=1$
34840 \end_inset
34841
34842
34843 \end_layout
34844
34845 \begin_layout Subsection
34846 Tastenkürzel
34847 \end_layout
34848
34849 \begin_layout Standard
34850 Momentan gibt es kein Tastenkürzel um Computeralgebrasysteme aufzurufen.
34851  Sie können aber einfach ein Tastenkürzel mit der LyX-Funktion 
34852 \family sans
34853 math-extern
34854 \family default
34855  verknüpfen (siehe das 
34856 \emph on
34857 LyX-Funktionen
34858 \emph default
34859  Handbuch).
34860  Man kann z.
34861 \begin_inset space \thinspace{}
34862 \end_inset
34863
34864 B.
34865  die 
34866 \family sans
34867 Enter
34868 \family default
34869 -Taste in Formeln verknüpfen.
34870  Um sie mit 
34871 \family typewriter
34872 Maxima
34873 \family default
34874  zu verknüpfen, würde man diesen Tastenkürzel-Definitionsbefehl verwenden:
34875 \end_layout
34876
34877 \begin_layout Standard
34878
34879 \series bold
34880 command-alternatives break-paragraph;math-extern maxima
34881 \end_layout
34882
34883 \begin_layout Section
34884 Verschiedenes
34885 \begin_inset Index idx
34886 status collapsed
34887
34888 \begin_layout Plain Layout
34889 Verschiedenes
34890 \end_layout
34891
34892 \end_inset
34893
34894
34895 \end_layout
34896
34897 \begin_layout Subsection
34898 Negative Zahlen
34899 \begin_inset Index idx
34900 status collapsed
34901
34902 \begin_layout Plain Layout
34903 Zahlen ! negative
34904 \end_layout
34905
34906 \end_inset
34907
34908
34909 \end_layout
34910
34911 \begin_layout Standard
34912 Negative Zahlen sehen im Formelmodus oft schlecht aus, denn das Minuszeichen
34913  vor der Ziffer wird mit der gleichen Länge wie das Zeichen der Minus-Operation
34914  dargestellt.
34915  Schreibt man dagegen eine negative Zahl im normalen Text, erscheint das
34916  Minuszeichen korrekt.
34917 \end_layout
34918
34919 \begin_layout Standard
34920 Wandelt man also das Minuszeichen in mathematischen Text um, tritt das Problem
34921  nicht mehr auf.
34922 \end_layout
34923
34924 \begin_layout Standard
34925 Ein Beispiel zur Veranschaulichung der Problematik:
34926 \end_layout
34927
34928 \begin_layout Standard
34929 \align center
34930 \begin_inset Tabular
34931 <lyxtabular version="3" rows="3" columns="2">
34932 <features tabularvalignment="middle">
34933 <column alignment="right" valignment="top" width="0">
34934 <column alignment="left" valignment="top" width="0">
34935 <row>
34936 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
34937 \begin_inset Text
34938
34939 \begin_layout Plain Layout
34940 normaler Text:
34941 \end_layout
34942
34943 \end_inset
34944 </cell>
34945 <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
34946 \begin_inset Text
34947
34948 \begin_layout Plain Layout
34949 x = -2
34950 \end_layout
34951
34952 \end_inset
34953 </cell>
34954 </row>
34955 <row>
34956 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
34957 \begin_inset Text
34958
34959 \begin_layout Plain Layout
34960 Formelmodus:
34961 \end_layout
34962
34963 \end_inset
34964 </cell>
34965 <cell alignment="center" valignment="top" topline="true" bottomline="true" rightline="true" usebox="none">
34966 \begin_inset Text
34967
34968 \begin_layout Plain Layout
34969 \begin_inset Formula $x=-2$
34970 \end_inset
34971
34972
34973 \end_layout
34974
34975 \end_inset
34976 </cell>
34977 </row>
34978 <row>
34979 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
34980 \begin_inset Text
34981
34982 \begin_layout Plain Layout
34983 Lösung:
34984 \end_layout
34985
34986 \end_inset
34987 </cell>
34988 <cell alignment="center" valignment="top" topline="true" bottomline="true" rightline="true" usebox="none">
34989 \begin_inset Text
34990
34991 \begin_layout Plain Layout
34992 \begin_inset Formula $x=\textrm{-}2$
34993 \end_inset
34994
34995
34996 \end_layout
34997
34998 \end_inset
34999 </cell>
35000 </row>
35001 </lyxtabular>
35002
35003 \end_inset
35004
35005
35006 \end_layout
35007
35008 \begin_layout Subsection
35009 Komma als Dezimaltrennzeichen
35010 \begin_inset Index idx
35011 status collapsed
35012
35013 \begin_layout Plain Layout
35014 Komma
35015 \end_layout
35016
35017 \end_inset
35018
35019
35020 \end_layout
35021
35022 \begin_layout Standard
35023 In LaTeX fungiert das Komma in einer Formel, gemäß englischer Konvention,
35024  als Gruppentrennzeichen.
35025  Es wird demnach automatisch hinter allen Kommas in Formeln ein Leerraum
35026  eingefügt.
35027 \end_layout
35028
35029 \begin_layout Standard
35030 Um dies zu verhindern, markiert man das Komma und wandelt es in mathematischen
35031  Text um (Tastenkürzel 
35032 \family sans
35033 Alt+M
35034 \begin_inset space ~
35035 \end_inset
35036
35037 M
35038 \family default
35039 ).
35040 \end_layout
35041
35042 \begin_layout Standard
35043 Um hingegen alle Formelkommas des Dokuments als Dezimaltrennzeichen zu setzen,
35044  lädt man die Datei 
35045 \series bold
35046 icomma.sty
35047 \series default
35048
35049 \begin_inset Foot
35050 status collapsed
35051
35052 \begin_layout Plain Layout
35053
35054 \series bold
35055 icomma
35056 \series default
35057  ist Teil des LaTeX-Paketes 
35058 \series bold
35059 was
35060 \series default
35061
35062 \begin_inset Index idx
35063 status collapsed
35064
35065 \begin_layout Plain Layout
35066 Pakete ! was
35067 \begin_inset ERT
35068 status collapsed
35069
35070 \begin_layout Plain Layout
35071
35072
35073 \backslash
35074 vspace{4mm}
35075 \end_layout
35076
35077 \end_inset
35078
35079
35080 \end_layout
35081
35082 \end_inset
35083
35084 .
35085 \end_layout
35086
35087 \end_inset
35088
35089
35090 \begin_inset Index idx
35091 status collapsed
35092
35093 \begin_layout Plain Layout
35094 Pakete ! icomma
35095 \end_layout
35096
35097 \end_inset
35098
35099  mit der LaTeX-Vorspannzeile
35100 \end_layout
35101
35102 \begin_layout Standard
35103
35104 \series bold
35105
35106 \backslash
35107 usepackage{icomma}
35108 \end_layout
35109
35110 \begin_layout Subsection
35111 Physikalische Vektoren
35112 \begin_inset CommandInset label
35113 LatexCommand label
35114 name "sub:Physikalische-Vektoren"
35115
35116 \end_inset
35117
35118
35119 \begin_inset Index idx
35120 status collapsed
35121
35122 \begin_layout Plain Layout
35123 Vektoren ! physikalische
35124 \end_layout
35125
35126 \end_inset
35127
35128
35129 \end_layout
35130
35131 \begin_layout Standard
35132 Vordefinierte Vektoren bietet das LaTeX-Paket 
35133 \series bold
35134 braket
35135 \series default
35136
35137 \begin_inset Index idx
35138 status collapsed
35139
35140 \begin_layout Plain Layout
35141 Pakete ! braket
35142 \end_layout
35143
35144 \end_inset
35145
35146 , das mit der LaTeX-Vorspannzeile
35147 \end_layout
35148
35149 \begin_layout Standard
35150
35151 \series bold
35152
35153 \backslash
35154 usepackage{braket}
35155 \end_layout
35156
35157 \begin_layout Standard
35158 geladen wird.
35159 \begin_inset ERT
35160 status collapsed
35161
35162 \begin_layout Plain Layout
35163
35164
35165 \backslash
35166 ifbraket 
35167 \end_layout
35168
35169 \end_inset
35170
35171
35172 \begin_inset Note Note
35173 status open
35174
35175 \begin_layout Plain Layout
35176 Die folgende Tabelle erscheint nur im Ausdruck wenn das LaTeX-Paket 
35177 \series bold
35178 braket
35179 \series default
35180  installiert ist:
35181 \end_layout
35182
35183 \end_inset
35184
35185
35186 \end_layout
35187
35188 \begin_layout Standard
35189 Folgende Befehle sind definiert:
35190 \end_layout
35191
35192 \begin_layout Standard
35193 \align center
35194 \begin_inset Tabular
35195 <lyxtabular version="3" rows="4" columns="2">
35196 <features tabularvalignment="middle">
35197 <column alignment="center" valignment="top" width="0">
35198 <column alignment="center" valignment="top" width="0">
35199 <row>
35200 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
35201 \begin_inset Text
35202
35203 \begin_layout Plain Layout
35204 Befehl
35205 \end_layout
35206
35207 \end_inset
35208 </cell>
35209 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
35210 \begin_inset Text
35211
35212 \begin_layout Plain Layout
35213 Ergebnis
35214 \end_layout
35215
35216 \end_inset
35217 </cell>
35218 </row>
35219 <row>
35220 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
35221 \begin_inset Text
35222
35223 \begin_layout Plain Layout
35224
35225 \backslash
35226 Bra{
35227 \backslash
35228 psi
35229 \end_layout
35230
35231 \end_inset
35232 </cell>
35233 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
35234 \begin_inset Text
35235
35236 \begin_layout Plain Layout
35237 \begin_inset Formula $\Bra{\psi}$
35238 \end_inset
35239
35240
35241 \end_layout
35242
35243 \end_inset
35244 </cell>
35245 </row>
35246 <row>
35247 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
35248 \begin_inset Text
35249
35250 \begin_layout Plain Layout
35251
35252 \backslash
35253 Ket{
35254 \backslash
35255 psi
35256 \end_layout
35257
35258 \end_inset
35259 </cell>
35260 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
35261 \begin_inset Text
35262
35263 \begin_layout Plain Layout
35264 \begin_inset Formula $\Ket{\psi}$
35265 \end_inset
35266
35267
35268 \end_layout
35269
35270 \end_inset
35271 </cell>
35272 </row>
35273 <row>
35274 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
35275 \begin_inset Text
35276
35277 \begin_layout Plain Layout
35278
35279 \backslash
35280 Braket{
35281 \backslash
35282 psi|
35283 \backslash
35284 phi
35285 \end_layout
35286
35287 \end_inset
35288 </cell>
35289 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
35290 \begin_inset Text
35291
35292 \begin_layout Plain Layout
35293 \begin_inset Formula $\Braket{\psi|\phi}$
35294 \end_inset
35295
35296
35297 \end_layout
35298
35299 \end_inset
35300 </cell>
35301 </row>
35302 </lyxtabular>
35303
35304 \end_inset
35305
35306
35307 \end_layout
35308
35309 \begin_layout Standard
35310 Der Befehl 
35311 \series bold
35312
35313 \backslash
35314 Braket
35315 \series default
35316  stellt sicher, dass alle senkrechten Striche in der Größe der umgebenden
35317  Klammern gesetzt werden:
35318 \begin_inset Formula 
35319 \[
35320 \Braket{\phi|J=\frac{3}{2}\,,\, M_{J}}
35321 \]
35322
35323 \end_inset
35324
35325
35326 \begin_inset ERT
35327 status collapsed
35328
35329 \begin_layout Plain Layout
35330
35331
35332 \backslash
35333 else 
35334 \end_layout
35335
35336 \end_inset
35337
35338
35339 \begin_inset Note Note
35340 status open
35341
35342 \begin_layout Plain Layout
35343 Folgendes erscheint im Ausdruck wenn das LaTeX-Paket 
35344 \series bold
35345 braket
35346 \series default
35347  nicht installiert ist:
35348 \end_layout
35349
35350 \end_inset
35351
35352
35353 \end_layout
35354
35355 \begin_layout Standard
35356 Das LaTeX-Paket 
35357 \series bold
35358 braket 
35359 \series default
35360 muss installiert sein, um den Rest dieses Abschnitts im Ausdruck zu sehen.
35361 \end_layout
35362
35363 \begin_layout Standard
35364 \begin_inset ERT
35365 status collapsed
35366
35367 \begin_layout Plain Layout
35368
35369
35370 \backslash
35371 fi 
35372 \end_layout
35373
35374 \end_inset
35375
35376
35377 \end_layout
35378
35379 \begin_layout Standard
35380 Der Effekt von 
35381 \series bold
35382
35383 \backslash
35384 Braket
35385 \series default
35386  kann auch mit dem Befehl 
35387 \series bold
35388
35389 \backslash
35390 middle
35391 \series default
35392  erzielt werden, der in 
35393 \begin_inset CommandInset ref
35394 LatexCommand ref
35395 reference "sub:Automatische-Klammergrößen"
35396
35397 \end_inset
35398
35399  beschrieben ist.
35400 \end_layout
35401
35402 \begin_layout Subsection
35403 Selbst definierte Brüche
35404 \begin_inset CommandInset label
35405 LatexCommand label
35406 name "sub:Selbstdefinierte-Brüche"
35407
35408 \end_inset
35409
35410
35411 \begin_inset Index idx
35412 status collapsed
35413
35414 \begin_layout Plain Layout
35415 Brüche ! selbstdefinierte
35416 \end_layout
35417
35418 \end_inset
35419
35420
35421 \end_layout
35422
35423 \begin_layout Standard
35424 Um eigene Befehle für Brüche zu definieren, verwendet man den Befehl 
35425 \series bold
35426
35427 \backslash
35428 genfrac
35429 \series default
35430
35431 \begin_inset Index idx
35432 status collapsed
35433
35434 \begin_layout Plain Layout
35435 Befehle ! G ! 
35436 \backslash
35437 genfrac
35438 \end_layout
35439
35440 \end_inset
35441
35442  in folgendem Schema:
35443 \end_layout
35444
35445 \begin_layout Standard
35446
35447 \series bold
35448
35449 \backslash
35450 genfrac{linke
35451 \series default
35452  
35453 \series bold
35454 Klammer}{rechte
35455 \series default
35456  
35457 \series bold
35458 Klammer}{Bruchstrichdicke}{Ansichtsstil}
35459 \begin_inset Newline newline
35460 \end_inset
35461
35462
35463 \begin_inset Phantom HPhantom
35464 status open
35465
35466 \begin_layout Plain Layout
35467
35468 \series bold
35469
35470 \backslash
35471 genfrac
35472 \end_layout
35473
35474 \end_inset
35475
35476 {Zähler}{Nenner}
35477 \end_layout
35478
35479 \begin_layout Standard
35480 Der Ansichtsstil wird mit einer ganzen Zahl im Bereich 0
35481 \begin_inset space \thinspace{}
35482 \end_inset
35483
35484 -
35485 \begin_inset space \thinspace{}
35486 \end_inset
35487
35488 3 angegeben.
35489 \end_layout
35490
35491 \begin_layout Standard
35492 \align center
35493 \begin_inset Tabular
35494 <lyxtabular version="3" rows="5" columns="2">
35495 <features tabularvalignment="middle">
35496 <column alignment="center" valignment="top" width="0">
35497 <column alignment="center" valignment="top" width="0">
35498 <row>
35499 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
35500 \begin_inset Text
35501
35502 \begin_layout Plain Layout
35503 Nummer
35504 \end_layout
35505
35506 \end_inset
35507 </cell>
35508 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
35509 \begin_inset Text
35510
35511 \begin_layout Plain Layout
35512 Ansichtsstil
35513 \end_layout
35514
35515 \end_inset
35516 </cell>
35517 </row>
35518 <row>
35519 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
35520 \begin_inset Text
35521
35522 \begin_layout Plain Layout
35523 0
35524 \end_layout
35525
35526 \end_inset
35527 </cell>
35528 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
35529 \begin_inset Text
35530
35531 \begin_layout Plain Layout
35532 abgesetzte Formel
35533 \end_layout
35534
35535 \end_inset
35536 </cell>
35537 </row>
35538 <row>
35539 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
35540 \begin_inset Text
35541
35542 \begin_layout Plain Layout
35543 1
35544 \end_layout
35545
35546 \end_inset
35547 </cell>
35548 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
35549 \begin_inset Text
35550
35551 \begin_layout Plain Layout
35552 eingebettete Formel
35553 \end_layout
35554
35555 \end_inset
35556 </cell>
35557 </row>
35558 <row>
35559 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
35560 \begin_inset Text
35561
35562 \begin_layout Plain Layout
35563 2
35564 \end_layout
35565
35566 \end_inset
35567 </cell>
35568 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
35569 \begin_inset Text
35570
35571 \begin_layout Plain Layout
35572 klein
35573 \end_layout
35574
35575 \end_inset
35576 </cell>
35577 </row>
35578 <row>
35579 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
35580 \begin_inset Text
35581
35582 \begin_layout Plain Layout
35583 3
35584 \end_layout
35585
35586 \end_inset
35587 </cell>
35588 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
35589 \begin_inset Text
35590
35591 \begin_layout Plain Layout
35592 winzig
35593 \end_layout
35594
35595 \end_inset
35596 </cell>
35597 </row>
35598 </lyxtabular>
35599
35600 \end_inset
35601
35602
35603 \end_layout
35604
35605 \begin_layout Standard
35606 Wird nichts für den Ansichtsstil angegeben, passt sich die Größe wie bei
35607  
35608 \series bold
35609
35610 \backslash
35611 frac
35612 \series default
35613  der Umgebung an.
35614 \end_layout
35615
35616 \begin_layout Standard
35617 Wird keine Bruchstrichdicke angegeben, wird der voreingestellte Wert von
35618  0.4
35619 \begin_inset space \thinspace{}
35620 \end_inset
35621
35622 pt verwendet.
35623 \end_layout
35624
35625 \begin_layout Standard
35626 \begin_inset VSpace medskip
35627 \end_inset
35628
35629 Zum Beispiel sind die Befehle 
35630 \series bold
35631
35632 \backslash
35633 dfrac
35634 \series default
35635  und 
35636 \series bold
35637
35638 \backslash
35639 tbinom
35640 \series default
35641  aus 
35642 \begin_inset CommandInset ref
35643 LatexCommand ref
35644 reference "sub:Brüche"
35645
35646 \end_inset
35647
35648  folgendermaßen definiert:
35649 \end_layout
35650
35651 \begin_layout Standard
35652
35653 \series bold
35654
35655 \backslash
35656 newcommand{
35657 \backslash
35658 dfrac}[2]{
35659 \backslash
35660 genfrac{}{}{}{0}{#1}{#2}}
35661 \end_layout
35662
35663 \begin_layout Standard
35664 und
35665 \end_layout
35666
35667 \begin_layout Standard
35668
35669 \series bold
35670
35671 \backslash
35672 newcommand{
35673 \backslash
35674 tbinom}[2]{
35675 \backslash
35676 genfrac{(}{)}{0pt}{1}{#1}{#2}}
35677 \end_layout
35678
35679 \begin_layout Standard
35680 \begin_inset VSpace medskip
35681 \end_inset
35682
35683 Um einen Bruch zu definieren, bei dem man die Bruchstrichdicke als optionales
35684  Argument angeben kann, gibt man im LaTeX-Vorspann folgenden Befehl ein:
35685 \end_layout
35686
35687 \begin_layout Standard
35688
35689 \series bold
35690
35691 \backslash
35692 newcommand{
35693 \backslash
35694 fracS}[3][]{
35695 \backslash
35696 genfrac{}{}{#1}{}{#2}{#3}}
35697 \end_layout
35698
35699 \begin_layout Standard
35700 Dazu ein Test:
35701 \begin_inset Formula 
35702 \begin{align*}
35703 \text{Befehl} &  & \mathrm{\backslash fracS[1mm]\backslash\{A\to\backslash\{B} &  & \mathrm{\backslash fracS[5mm]\backslash\{A\to\backslash\{B}\\
35704 \text{Ergebnis} &  & \fracS[1mm]{A}{B} &  & \fracS[5mm]{A}{B}
35705 \end{align*}
35706
35707 \end_inset
35708
35709 Wie man sieht, entspricht der Abstand des Zählers und Nenners vom Strich
35710  in etwa der dreifachen Strichdicke.
35711 \end_layout
35712
35713 \begin_layout Subsection
35714 Durchgestrichene Formeln
35715 \begin_inset Index idx
35716 status collapsed
35717
35718 \begin_layout Plain Layout
35719 Formel ! durchgestrichene
35720 \end_layout
35721
35722 \end_inset
35723
35724
35725 \end_layout
35726
35727 \begin_layout Standard
35728 Um Formeln oder Formelteile durchzustreichen, muss das LaTeX-Paket 
35729 \series bold
35730 cancel
35731 \series default
35732
35733 \begin_inset Index idx
35734 status collapsed
35735
35736 \begin_layout Plain Layout
35737 Pakete ! cancel
35738 \end_layout
35739
35740 \end_inset
35741
35742  mit der LaTeX-Vorspannzeile
35743 \end_layout
35744
35745 \begin_layout Standard
35746
35747 \series bold
35748
35749 \backslash
35750 usepackage{cancel}
35751 \end_layout
35752
35753 \begin_layout Standard
35754 geladen werden.
35755 \end_layout
35756
35757 \begin_layout Standard
35758 \begin_inset ERT
35759 status collapsed
35760
35761 \begin_layout Plain Layout
35762
35763
35764 \backslash
35765 ifcancel 
35766 \end_layout
35767
35768 \end_inset
35769
35770
35771 \begin_inset Note Note
35772 status open
35773
35774 \begin_layout Plain Layout
35775 Die folgende Tabelle erscheint nur im Ausdruck wenn das LaTeX-Paket 
35776 \series bold
35777 cancel
35778 \series default
35779  installiert ist:
35780 \end_layout
35781
35782 \end_inset
35783
35784
35785 \end_layout
35786
35787 \begin_layout Standard
35788 Es gibt vier verschiedene Arten durchzustreichen:
35789 \end_layout
35790
35791 \begin_layout Standard
35792 \align center
35793 \begin_inset Tabular
35794 <lyxtabular version="3" rows="5" columns="2">
35795 <features tabularvalignment="middle">
35796 <column alignment="center" valignment="top" width="0">
35797 <column alignment="center" valignment="top" width="0">
35798 <row>
35799 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
35800 \begin_inset Text
35801
35802 \begin_layout Plain Layout
35803 Befehl
35804 \end_layout
35805
35806 \end_inset
35807 </cell>
35808 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
35809 \begin_inset Text
35810
35811 \begin_layout Plain Layout
35812 Ergebnis
35813 \begin_inset Note Note
35814 status collapsed
35815
35816 \begin_layout Plain Layout
35817 Der Leerraum und 
35818 \series bold
35819
35820 \backslash
35821 raisebox
35822 \series default
35823  dienen nur als Abstandhalter.
35824 \end_layout
35825
35826 \end_inset
35827
35828
35829 \end_layout
35830
35831 \end_inset
35832 </cell>
35833 </row>
35834 <row>
35835 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
35836 \begin_inset Text
35837
35838 \begin_layout Plain Layout
35839
35840 \backslash
35841 cancel{
35842 \backslash
35843 int
35844 \begin_inset ERT
35845 status collapsed
35846
35847 \begin_layout Plain Layout
35848
35849
35850 \backslash
35851 leer 
35852 \end_layout
35853
35854 \end_inset
35855
35856 A=B
35857 \end_layout
35858
35859 \end_inset
35860 </cell>
35861 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
35862 \begin_inset Text
35863
35864 \begin_layout Plain Layout
35865 \begin_inset Formula $\raisebox{4.5mm}{}\cancel{\int A=B}\raisebox{-2.5mm}{}$
35866 \end_inset
35867
35868
35869 \end_layout
35870
35871 \end_inset
35872 </cell>
35873 </row>
35874 <row>
35875 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
35876 \begin_inset Text
35877
35878 \begin_layout Plain Layout
35879
35880 \backslash
35881 bcancel{
35882 \backslash
35883 int
35884 \begin_inset ERT
35885 status collapsed
35886
35887 \begin_layout Plain Layout
35888
35889
35890 \backslash
35891 leer 
35892 \end_layout
35893
35894 \end_inset
35895
35896 A=B
35897 \end_layout
35898
35899 \end_inset
35900 </cell>
35901 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
35902 \begin_inset Text
35903
35904 \begin_layout Plain Layout
35905 \begin_inset Formula $\raisebox{4.5mm}{}\bcancel{\int A=B}\raisebox{-2.5mm}{}$
35906 \end_inset
35907
35908
35909 \end_layout
35910
35911 \end_inset
35912 </cell>
35913 </row>
35914 <row>
35915 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
35916 \begin_inset Text
35917
35918 \begin_layout Plain Layout
35919
35920 \backslash
35921 xcancel{
35922 \backslash
35923 int
35924 \begin_inset ERT
35925 status collapsed
35926
35927 \begin_layout Plain Layout
35928
35929
35930 \backslash
35931 leer 
35932 \end_layout
35933
35934 \end_inset
35935
35936 A=B
35937 \end_layout
35938
35939 \end_inset
35940 </cell>
35941 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
35942 \begin_inset Text
35943
35944 \begin_layout Plain Layout
35945 \begin_inset Formula $\raisebox{4.5mm}{}\xcancel{\int A=B}\raisebox{-2.5mm}{}$
35946 \end_inset
35947
35948
35949 \end_layout
35950
35951 \end_inset
35952 </cell>
35953 </row>
35954 <row>
35955 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
35956 \begin_inset Text
35957
35958 \begin_layout Plain Layout
35959
35960 \backslash
35961 cancelto{1
35962 \begin_inset Formula $\to$
35963 \end_inset
35964
35965
35966 \backslash
35967 {
35968 \backslash
35969 int
35970 \begin_inset ERT
35971 status collapsed
35972
35973 \begin_layout Plain Layout
35974
35975
35976 \backslash
35977 leer 
35978 \end_layout
35979
35980 \end_inset
35981
35982 A=B
35983 \end_layout
35984
35985 \end_inset
35986 </cell>
35987 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
35988 \begin_inset Text
35989
35990 \begin_layout Plain Layout
35991 \begin_inset Formula $\raisebox{7mm}{}\cancelto{1}{\int A=B}\raisebox{-2.5mm}{}\hspace{3mm}$
35992 \end_inset
35993
35994
35995 \end_layout
35996
35997 \end_inset
35998 </cell>
35999 </row>
36000 </lyxtabular>
36001
36002 \end_inset
36003
36004
36005 \end_layout
36006
36007 \begin_layout Standard
36008
36009 \series bold
36010
36011 \backslash
36012 cancelto
36013 \series default
36014  eignet sich besonders, wenn man das Kürzen innerhalb einer Formel darstellen
36015  will:
36016 \begin_inset Formula 
36017 \[
36018 \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}}}
36019 \]
36020
36021 \end_inset
36022
36023
36024 \end_layout
36025
36026 \begin_layout Standard
36027 Um die Größe des 
36028 \begin_inset Quotes gld
36029 \end_inset
36030
36031 hochgestellten
36032 \begin_inset Quotes grd
36033 \end_inset
36034
36035  Werts von 
36036 \series bold
36037
36038 \backslash
36039 cancelto
36040 \series default
36041  zu ändern, kann man das Paket 
36042 \series bold
36043 cancel
36044 \series default
36045  entweder mit der Option 
36046 \series bold
36047 samesize
36048 \series default
36049 , die zur selben Größe wie die der durchgestrichenen Zeichen führt, oder
36050  mit der Option 
36051 \series bold
36052 Smaller
36053 \series default
36054 , die zu einer etwas kleineren Größe führt als es ohne Option der Fall ist.
36055  In diesem Dokument wurde 
36056 \series bold
36057 cancel
36058 \series default
36059  mit der Zeile
36060 \end_layout
36061
36062 \begin_layout Standard
36063
36064 \series bold
36065
36066 \backslash
36067 usepackage[samesize]{cancel}
36068 \end_layout
36069
36070 \begin_layout Standard
36071 geladen.
36072  Um den Durchstrich zu färben, verwendet man den Befehl
36073 \end_layout
36074
36075 \begin_layout Standard
36076
36077 \series bold
36078
36079 \backslash
36080 renewcommand{
36081 \backslash
36082 CancelColor}{
36083 \backslash
36084 color{red}}
36085 \end_layout
36086
36087 \begin_layout Standard
36088 als TeX-Code.
36089  
36090 \series bold
36091 red
36092 \series default
36093  kann durch eine Farbe der Wahl ersetzt werden.
36094 \end_layout
36095
36096 \begin_layout Standard
36097 \begin_inset ERT
36098 status collapsed
36099
36100 \begin_layout Plain Layout
36101
36102
36103 \backslash
36104 renewcommand{
36105 \backslash
36106 CancelColor}{
36107 \backslash
36108 color{red}}
36109 \end_layout
36110
36111 \end_inset
36112
36113
36114 \end_layout
36115
36116 \begin_layout Standard
36117 \begin_inset Formula 
36118 \[
36119 \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}}}
36120 \]
36121
36122 \end_inset
36123
36124
36125 \end_layout
36126
36127 \begin_layout Standard
36128 \begin_inset ERT
36129 status collapsed
36130
36131 \begin_layout Plain Layout
36132
36133
36134 \backslash
36135 renewcommand{
36136 \backslash
36137 CancelColor}{
36138 \backslash
36139 color{black}}
36140 \end_layout
36141
36142 \end_inset
36143
36144
36145 \begin_inset Note Note
36146 status open
36147
36148 \begin_layout Plain Layout
36149 Farbe zurücksetzen
36150 \end_layout
36151
36152 \end_inset
36153
36154
36155 \end_layout
36156
36157 \begin_layout Standard
36158 Für weitere Anpassungen siehe die Dokumentation des Pakets 
36159 \series bold
36160 cancel
36161 \series default
36162
36163 \begin_inset CommandInset citation
36164 LatexCommand cite
36165 key "cancel"
36166
36167 \end_inset
36168
36169 .
36170 \end_layout
36171
36172 \begin_layout Standard
36173 \begin_inset ERT
36174 status collapsed
36175
36176 \begin_layout Plain Layout
36177
36178
36179 \backslash
36180 else 
36181 \end_layout
36182
36183 \end_inset
36184
36185
36186 \begin_inset Note Note
36187 status open
36188
36189 \begin_layout Plain Layout
36190 Folgendes erscheint im Ausdruck wenn das LaTeX-Paket 
36191 \series bold
36192 cancel
36193 \series default
36194  nicht installiert ist:
36195 \end_layout
36196
36197 \end_inset
36198
36199
36200 \end_layout
36201
36202 \begin_layout Standard
36203 Das LaTeX-Paket 
36204 \series bold
36205 cancel 
36206 \series default
36207 muss installiert sein, um den Rest dieses Abschnitts im Ausdruck zu sehen.
36208 \end_layout
36209
36210 \begin_layout Standard
36211 \begin_inset ERT
36212 status collapsed
36213
36214 \begin_layout Plain Layout
36215
36216
36217 \backslash
36218 fi 
36219 \end_layout
36220
36221 \end_inset
36222
36223
36224 \end_layout
36225
36226 \begin_layout Subsection
36227 Formeln in Überschriften
36228 \begin_inset CommandInset label
36229 LatexCommand label
36230 name "sub:Formeln-in-Überschriften"
36231
36232 \end_inset
36233
36234
36235 \begin_inset Index idx
36236 status collapsed
36237
36238 \begin_layout Plain Layout
36239 Formel ! in Überschriften
36240 \end_layout
36241
36242 \end_inset
36243
36244
36245 \end_layout
36246
36247 \begin_layout Standard
36248 Benutzt man Formeln in Überschriften, ist auf Folgendes zu achten:
36249 \end_layout
36250
36251 \begin_layout Standard
36252 \begin_inset Note Greyedout
36253 status open
36254
36255 \begin_layout Plain Layout
36256 Verwendet man 
36257 \series bold
36258 hyperref
36259 \series default
36260
36261 \begin_inset Index idx
36262 status collapsed
36263
36264 \begin_layout Plain Layout
36265 Pakete ! hyperref
36266 \end_layout
36267
36268 \end_inset
36269
36270  Unterstützung im den Dokumenteinstellungen unter 
36271 \family sans
36272 PDF-Eigenschaften
36273 \family default
36274 , werden PDF-Lesezeichen für jede Überschrift aus dem Inhaltsverzeichnis
36275  erzeugt.
36276  Enthält eine Überschrift Formeln, werden diese im Lesezeichentext falsch
36277  dargestellt.
36278  Denn Formeln in Lesezeichen verstoßen gegen die PDF-Konventionen.
36279 \end_layout
36280
36281 \end_inset
36282
36283
36284 \end_layout
36285
36286 \begin_layout Standard
36287 Beide Probleme lassen sich lösen, indem man am Ende der Überschrift einen
36288  Kurztitel über das Menü 
36289 \family sans
36290 Einfügen\SpecialChar \menuseparator
36291 Kurztitel
36292 \family default
36293  einfügt.
36294  Kurztitel werden als Alternative für mehrzeilige Überschriften verwendet,
36295  um das Inhaltsverzeichnis übersichtlich zu halten.
36296  Nur der Kurztitel erscheint im Inhaltsverzeichnis und damit auch im PDF-Lesezei
36297 chen.
36298 \end_layout
36299
36300 \begin_layout Standard
36301 Möchte man im Inhaltsverzeichnis eine Formel verwenden, benutzt aber 
36302 \series bold
36303 hyperref
36304 \series default
36305 , verwendet man im TeX-Modus den Befehl
36306 \end_layout
36307
36308 \begin_layout Standard
36309
36310 \series bold
36311
36312 \backslash
36313 texorpdfstring{Teil}{Alternative}
36314 \begin_inset Index idx
36315 status collapsed
36316
36317 \begin_layout Plain Layout
36318 Befehle ! T ! 
36319 \backslash
36320 texorpdfstring
36321 \end_layout
36322
36323 \end_inset
36324
36325
36326 \end_layout
36327
36328 \begin_layout Standard
36329 Teil ist der Überschriftsteil, der nicht im PDF-Lesezeichen erscheinen solle.
36330  Das können Zeichen, Formeln, Fußnoten aber auch Querverweise sein.
36331  Als Alternative kann man angeben, was stattdessen im Lesezeichen erscheinen
36332  soll.
36333 \end_layout
36334
36335 \begin_layout Standard
36336 Es folgen zwei Beispielüberschriften:
36337 \begin_inset VSpace -3mm
36338 \end_inset
36339
36340
36341 \begin_inset ERT
36342 status collapsed
36343
36344 \begin_layout Plain Layout
36345
36346
36347 \backslash
36348 boldmath 
36349 \end_layout
36350
36351 \end_inset
36352
36353
36354 \end_layout
36355
36356 \begin_layout Subsubsection
36357 Überschrift ohne Formel im Inhaltsverzeichnis 
36358 \begin_inset Formula $\sqrt{-1}=\mathrm{i}$
36359 \end_inset
36360
36361
36362 \begin_inset Argument
36363 status collapsed
36364
36365 \begin_layout Plain Layout
36366 Überschrift ohne Formel im Inhaltsverzeichnis
36367 \end_layout
36368
36369 \end_inset
36370
36371
36372 \end_layout
36373
36374 \begin_layout Subsubsection
36375 Überschrift mit Formel im Inhaltsverzeichnis
36376 \begin_inset ERT
36377 status collapsed
36378
36379 \begin_layout Plain Layout
36380
36381
36382 \backslash
36383 texorpdfstring{
36384 \end_layout
36385
36386 \end_inset
36387
36388  
36389 \begin_inset Formula $\sqrt{-1}=\mathrm{i}$
36390 \end_inset
36391
36392
36393 \begin_inset ERT
36394 status collapsed
36395
36396 \begin_layout Plain Layout
36397
36398 }{}
36399 \end_layout
36400
36401 \end_inset
36402
36403
36404 \end_layout
36405
36406 \begin_layout Standard
36407 \begin_inset ERT
36408 status collapsed
36409
36410 \begin_layout Plain Layout
36411
36412
36413 \backslash
36414 unboldmath 
36415 \end_layout
36416
36417 \end_inset
36418
36419 In der ersten Überschrift wurde ein Kurztitel verwendet.
36420  In der zweiten 
36421 \series bold
36422
36423 \backslash
36424 texorpdfstring
36425 \series default
36426 .
36427 \end_layout
36428
36429 \begin_layout Standard
36430 Damit die Formeln so wie der Rest der Überschrift formatiert werden, wurde
36431  die komplette Überschrift in eine 
36432 \series bold
36433 boldmath
36434 \series default
36435 -Umgebung
36436 \begin_inset Foot
36437 status collapsed
36438
36439 \begin_layout Plain Layout
36440 siehe 
36441 \begin_inset CommandInset ref
36442 LatexCommand ref
36443 reference "sub:Fett-gedruckte-Formeln"
36444
36445 \end_inset
36446
36447
36448 \end_layout
36449
36450 \end_inset
36451
36452  gesetzt.
36453 \end_layout
36454
36455 \begin_layout Subsection
36456 Formeln im mehrspaltigen Text
36457 \begin_inset Index idx
36458 status collapsed
36459
36460 \begin_layout Plain Layout
36461 Formel ! im mehrspaltigen Text
36462 \end_layout
36463
36464 \end_inset
36465
36466
36467 \end_layout
36468
36469 \begin_layout Standard
36470 Formeln im mehrspaltigen Text sind oftmals zu breit für eine Spalte und
36471  müssen daher über die gesamte Seitenbreite gesetzt werden.
36472  Dazu verwendet man das LaTeX-Paket 
36473 \series bold
36474 multicol
36475 \series default
36476
36477 \begin_inset Foot
36478 status collapsed
36479
36480 \begin_layout Plain Layout
36481
36482 \series bold
36483 multicol
36484 \series default
36485  ist Teil jeder LaTeX-Standardinstallation.
36486 \end_layout
36487
36488 \end_inset
36489
36490
36491 \begin_inset Index idx
36492 status collapsed
36493
36494 \begin_layout Plain Layout
36495 Pakete ! multicol
36496 \end_layout
36497
36498 \end_inset
36499
36500 , das mit der LaTeX-Vorspannzeile
36501 \end_layout
36502
36503 \begin_layout Standard
36504
36505 \series bold
36506
36507 \backslash
36508 usepackage{multicol}
36509 \end_layout
36510
36511 \begin_layout Standard
36512 geladen wird.
36513 \end_layout
36514
36515 \begin_layout Standard
36516 \begin_inset Note Greyedout
36517 status open
36518
36519 \begin_layout Plain Layout
36520 Dabei ist zu beachten, dass im Menü 
36521 \family sans
36522 Dokument\SpecialChar \menuseparator
36523 Einstellungen
36524 \family default
36525  unter 
36526 \family sans
36527 Textformat
36528 \family default
36529  
36530 \emph on
36531 nicht
36532 \emph default
36533  
36534 \family sans
36535 Zweispaltiges
36536 \begin_inset space ~
36537 \end_inset
36538
36539 Dokument
36540 \family default
36541  ausgewählt sein darf.
36542 \end_layout
36543
36544 \end_inset
36545
36546
36547 \end_layout
36548
36549 \begin_layout Standard
36550 Vor den mehrspaltigen Text schreibt man im TeX-Modus den Befehl
36551 \end_layout
36552
36553 \begin_layout Standard
36554
36555 \series bold
36556
36557 \backslash
36558 begin{multicols}{Spaltenanzahl}
36559 \end_layout
36560
36561 \begin_layout Standard
36562 wobei die Spaltenanzahl eine Zahl im Bereich 2
36563 \begin_inset space \thinspace{}
36564 \end_inset
36565
36566 -
36567 \begin_inset space \thinspace{}
36568 \end_inset
36569
36570 10 ist.
36571  Vor der Formel beendet man den mehrspaltigen Text mit dem Befehl
36572 \end_layout
36573
36574 \begin_layout Standard
36575
36576 \series bold
36577
36578 \backslash
36579 end{multicols}
36580 \end_layout
36581
36582 \begin_layout Standard
36583 der im TeX-Modus eingegeben wird.
36584 \end_layout
36585
36586 \begin_layout Standard
36587 Durch den Befehl wird vor der Formel automatisch etwas Leerraum erstellt.
36588  Um dies rückgängig zu machen, fügt man vor der Formel -6
36589 \begin_inset space \thinspace{}
36590 \end_inset
36591
36592 mm vertikalen Leerraum ein.
36593  Ist der Formelstil 
36594 \series bold
36595 Eingerückt
36596 \begin_inset Foot
36597 status collapsed
36598
36599 \begin_layout Plain Layout
36600 Formelstile siehe 
36601 \begin_inset CommandInset ref
36602 LatexCommand ref
36603 reference "sec:Formelstile"
36604
36605 \end_inset
36606
36607
36608 \end_layout
36609
36610 \end_inset
36611
36612
36613 \series default
36614  gewählt, fügt man stattdessen -9
36615 \begin_inset space \thinspace{}
36616 \end_inset
36617
36618 mm Leerraum ein.
36619 \end_layout
36620
36621 \begin_layout Standard
36622 Als Beispiel ein mehrspaltiger Text mit einer abgesetzten Formel:
36623 \end_layout
36624
36625 \begin_layout Standard
36626 \begin_inset ERT
36627 status collapsed
36628
36629 \begin_layout Plain Layout
36630
36631
36632 \backslash
36633 begin{multicols}{2}
36634 \end_layout
36635
36636 \end_inset
36637
36638 Das Spektrum wird fouriertransformiert.
36639  Die Fouriertransformation wird verwendet, um die überlagerten Signale (Netzwerk
36640 , Lösungsmittel) zu trennen.
36641  Nachdem wir die Phasenverschiebung bestimmen konnten, interessiert uns
36642  nun das Aussehen des Ausgangssignals.
36643  Im Experiment haben wir es mit sehr vielen Teilchen zu tun, so dass man
36644  über alle Phasen integrieren muss.
36645  Sei nun 
36646 \begin_inset Formula $S$
36647 \end_inset
36648
36649  unser normiertes Ausgangssignal und 
36650 \begin_inset Formula $P$
36651 \end_inset
36652
36653  die Phasenverteilungsfunktion, so ergibt sich die Beziehung
36654 \begin_inset ERT
36655 status collapsed
36656
36657 \begin_layout Plain Layout
36658
36659
36660 \backslash
36661 end{multicols}
36662 \end_layout
36663
36664 \end_inset
36665
36666
36667 \begin_inset VSpace -6mm
36668 \end_inset
36669
36670
36671 \begin_inset Formula 
36672 \begin{equation}
36673 S(t)=S_{0}(t)\int_{-\infty}^{\infty}P(\phi,t)\mathrm{e}^{\mathrm{i}\phi}\,\mathrm{d}\phi
36674 \end{equation}
36675
36676 \end_inset
36677
36678
36679 \begin_inset ERT
36680 status collapsed
36681
36682 \begin_layout Plain Layout
36683
36684
36685 \backslash
36686 begin{multicols}{2}
36687 \end_layout
36688
36689 \end_inset
36690
36691 wobei 
36692 \begin_inset Formula $S_{0}$
36693 \end_inset
36694
36695  das Signal ohne Gradient ist und die Normierungsbedingung 
36696 \begin_inset Formula $\int_{-\infty}^{\infty}P(\phi,t)\,\mathrm{d}\phi=1$
36697 \end_inset
36698
36699  gilt.
36700  Nun dürfen wir aber nicht den Relaxationsprozess außer Acht lassen.
36701  Direkt nach dem 
36702 \begin_inset Formula $\nicefrac{\pi}{2}$
36703 \end_inset
36704
36705
36706 \begin_inset space \thinspace{}
36707 \end_inset
36708
36709 -rf-Puls beginnt sich die Magnetisierung zu entfokussieren, wodurch sich
36710  das Signal zusätzlich abschwächt.
36711  Diese Abschwächung verläuft exponentiell in Abhängigkeit der so genannten
36712  
36713 \begin_inset Formula $T_{2}$
36714 \end_inset
36715
36716 -Zeit.
36717 \end_layout
36718
36719 \begin_layout Standard
36720 \begin_inset ERT
36721 status collapsed
36722
36723 \begin_layout Plain Layout
36724
36725
36726 \backslash
36727 end{multicols}
36728 \end_layout
36729
36730 \end_inset
36731
36732  
36733 \end_layout
36734
36735 \begin_layout Subsection
36736 Formeln mit Beschreibung der Variablen
36737 \begin_inset Index idx
36738 status collapsed
36739
36740 \begin_layout Plain Layout
36741 Formel ! mit Variablenbeschreibung
36742 \end_layout
36743
36744 \end_inset
36745
36746
36747 \end_layout
36748
36749 \begin_layout Standard
36750 Möchte man wie in Formel 
36751 \begin_inset CommandInset ref
36752 LatexCommand eqref
36753 reference "eq:innerhalb"
36754
36755 \end_inset
36756
36757 , Variablen innerhalb einer Formel beschreiben, verwendet man eine 2
36758 \series bold
36759 ×
36760 \series default
36761
36762 \begin_inset Formula $n$
36763 \end_inset
36764
36765
36766 \begin_inset space ~
36767 \end_inset
36768
36769 Matrix mit links ausgerichteten Spalten für die verwendeten 
36770 \begin_inset Formula $n$
36771 \end_inset
36772
36773  Variablen.
36774 \begin_inset Foot
36775 status collapsed
36776
36777 \begin_layout Plain Layout
36778 Matrizen siehe 
36779 \begin_inset CommandInset ref
36780 LatexCommand ref
36781 reference "sec:Matrizen"
36782
36783 \end_inset
36784
36785
36786 \end_layout
36787
36788 \end_inset
36789
36790  Um die Beschreibung kleiner zu setzen, gibt man vor der Matrix z.
36791 \begin_inset space \thinspace{}
36792 \end_inset
36793
36794 B.
36795  den Befehl 
36796 \series bold
36797
36798 \backslash
36799 footnotesize
36800 \series default
36801  ein.
36802 \begin_inset Foot
36803 status collapsed
36804
36805 \begin_layout Plain Layout
36806 Schriftgrößen siehe 
36807 \begin_inset CommandInset ref
36808 LatexCommand ref
36809 reference "sub:Schriftgrößen"
36810
36811 \end_inset
36812
36813
36814 \end_layout
36815
36816 \end_inset
36817
36818
36819 \end_layout
36820
36821 \begin_layout Standard
36822 Wird der Formelstil 
36823 \series bold
36824 Eingerückt
36825 \begin_inset Foot
36826 status collapsed
36827
36828 \begin_layout Plain Layout
36829 Formelstile siehe 
36830 \begin_inset CommandInset ref
36831 LatexCommand ref
36832 reference "sec:Formelstile"
36833
36834 \end_inset
36835
36836
36837 \end_layout
36838
36839 \end_inset
36840
36841
36842 \series default
36843  verwendet, fügt man vor und nach der Matrix ein 
36844 \series bold
36845
36846 \backslash
36847 hfill
36848 \series default
36849
36850 \begin_inset Foot
36851 status collapsed
36852
36853 \begin_layout Plain Layout
36854
36855 \series bold
36856
36857 \backslash
36858 hfill
36859 \series default
36860  wirkt nur in Formeln mit dem Stil 
36861 \series bold
36862 Eingerückt
36863 \series default
36864 , siehe 
36865 \begin_inset CommandInset ref
36866 LatexCommand ref
36867 reference "sub:Variabler-Leerraum"
36868
36869 \end_inset
36870
36871 .
36872 \end_layout
36873
36874 \end_inset
36875
36876  ein, damit der Abstand der Matrix von der Gleichung und vom Seitenrand
36877  gleich ist.
36878 \end_layout
36879
36880 \begin_layout Standard
36881 Ist der Formelstil 
36882 \series bold
36883 Zentriert
36884 \series default
36885  gewählt, nutzt man die in 
36886 \begin_inset CommandInset ref
36887 LatexCommand ref
36888 reference "sub:Flalign-Umgebung"
36889
36890 \end_inset
36891
36892  beschriebene Möglichkeit, Formeln einzurücken.
36893  Formel 
36894 \begin_inset CommandInset ref
36895 LatexCommand eqref
36896 reference "eq:innerhalb"
36897
36898 \end_inset
36899
36900  besteht aus fünf Spalten, wobei in den ersten beiden die Gleichung, in
36901  der dritten die Matrix und in der letzten die leere TeX-Klammer steht.
36902 \begin_inset Formula 
36903 \begin{flalign}
36904 \hspace{30pt}F_{A} & =\rho·V·g & \footnotesize\begin{array}{ll}
36905 \rho & \textrm{Dichte}\\
36906 V & \textrm{Volumen}\\
36907 g & \textrm{Fallbeschleunigung}
36908 \end{array} &  & {}\label{eq:innerhalb}
36909 \end{flalign}
36910
36911 \end_inset
36912
36913
36914 \end_layout
36915
36916 \begin_layout Subsection
36917 Aufrechte kleine griechische Buchstaben
36918 \begin_inset CommandInset label
36919 LatexCommand label
36920 name "sub:Aufrechte-kleine-griechische"
36921
36922 \end_inset
36923
36924
36925 \begin_inset Index idx
36926 status collapsed
36927
36928 \begin_layout Plain Layout
36929 griechische Buchstaben ! aufrechte
36930 \end_layout
36931
36932 \end_inset
36933
36934
36935 \end_layout
36936
36937 \begin_layout Standard
36938 Die meisten Mathe-Schriften stellen nur kursive kleine griechische Buchstaben
36939  zur Verfügung.
36940  Für Symbole der Elementarteilchen, wie Pionen und Neutrinos werden jedoch
36941  aufrechte griechische Buchstaben benötigt.
36942  Die Datei 
36943 \series bold
36944 upgreek.sty
36945 \series default
36946
36947 \begin_inset Foot
36948 status collapsed
36949
36950 \begin_layout Plain Layout
36951
36952 \series bold
36953 upgreek
36954 \series default
36955  ist Teil des LaTeX-Paketes 
36956 \series bold
36957 was
36958 \series default
36959
36960 \begin_inset Index idx
36961 status collapsed
36962
36963 \begin_layout Plain Layout
36964 Pakete ! was
36965 \begin_inset ERT
36966 status collapsed
36967
36968 \begin_layout Plain Layout
36969
36970
36971 \backslash
36972 vspace{4mm}
36973 \end_layout
36974
36975 \end_inset
36976
36977
36978 \end_layout
36979
36980 \end_inset
36981
36982 .
36983 \end_layout
36984
36985 \end_inset
36986
36987
36988 \begin_inset Index idx
36989 status collapsed
36990
36991 \begin_layout Plain Layout
36992 Pakete ! upgreek
36993 \end_layout
36994
36995 \end_inset
36996
36997 , die mit der LaTeX-Vorspannzeile
36998 \end_layout
36999
37000 \begin_layout Standard
37001
37002 \series bold
37003
37004 \backslash
37005 usepackage{upgreek}
37006 \end_layout
37007
37008 \begin_layout Standard
37009 geladen wird, stellt diese Buchstaben zur Verfügung.
37010  
37011 \begin_inset ERT
37012 status collapsed
37013
37014 \begin_layout Plain Layout
37015
37016
37017 \backslash
37018 ifupgreek 
37019 \end_layout
37020
37021 \end_inset
37022
37023
37024 \begin_inset Note Note
37025 status open
37026
37027 \begin_layout Plain Layout
37028 Das Folgende erscheint nur im Ausdruck wenn das LaTeX-Paket 
37029 \series bold
37030 upgreek
37031 \series default
37032  installiert ist:
37033 \end_layout
37034
37035 \end_inset
37036
37037  Sie werden erzeugt, wenn der Befehl für einen griechischen Buchstaben mit
37038  
37039 \series bold
37040 up
37041 \series default
37042  begonnen wird.
37043  So erzeugt z.
37044 \begin_inset space \thinspace{}
37045 \end_inset
37046
37047 B.
37048  der Befehl 
37049 \series bold
37050
37051 \backslash
37052 uptau
37053 \series default
37054  dies: 
37055 \begin_inset Formula $\uptau$
37056 \end_inset
37057
37058
37059 \end_layout
37060
37061 \begin_layout Standard
37062 Damit kann man Elementarteilchenreaktionen erstellen:
37063 \begin_inset Formula 
37064 \[
37065 \uppi^{+}\to\upmu^{+}+\upnu_{\upmu}
37066 \]
37067
37068 \end_inset
37069
37070
37071 \end_layout
37072
37073 \begin_layout Standard
37074 Die aufrechten Buchstaben sind fetter und breiter als die kursiven.
37075  Sie sollten daher nicht für Einheiten wie 
37076 \begin_inset Quotes gld
37077 \end_inset
37078
37079 µm
37080 \begin_inset Quotes grd
37081 \end_inset
37082
37083  verwendet werden.
37084 \end_layout
37085
37086 \begin_layout Standard
37087 \begin_inset ERT
37088 status collapsed
37089
37090 \begin_layout Plain Layout
37091
37092
37093 \backslash
37094 else 
37095 \end_layout
37096
37097 \end_inset
37098
37099
37100 \begin_inset Note Note
37101 status open
37102
37103 \begin_layout Plain Layout
37104 Folgendes erscheint im Ausdruck wenn das LaTeX-Paket 
37105 \series bold
37106 upgreek
37107 \series default
37108  nicht installiert ist:
37109 \end_layout
37110
37111 \end_inset
37112
37113
37114 \end_layout
37115
37116 \begin_layout Standard
37117 Das LaTeX-Paket 
37118 \series bold
37119 upgreek 
37120 \series default
37121 muss installiert sein, um den Rest dieses Abschnitts im Ausdruck zu sehen.
37122 \end_layout
37123
37124 \begin_layout Standard
37125 \begin_inset ERT
37126 status collapsed
37127
37128 \begin_layout Plain Layout
37129
37130
37131 \backslash
37132 fi 
37133 \end_layout
37134
37135 \end_inset
37136
37137
37138 \end_layout
37139
37140 \begin_layout Subsection
37141 Textzeichen in Formeln
37142 \begin_inset CommandInset label
37143 LatexCommand label
37144 name "sub:Textzeichen-in-Formeln"
37145
37146 \end_inset
37147
37148
37149 \begin_inset Index idx
37150 status collapsed
37151
37152 \begin_layout Plain Layout
37153 Text ! in Formeln
37154 \end_layout
37155
37156 \end_inset
37157
37158
37159 \end_layout
37160
37161 \begin_layout Standard
37162 In einigen Fällen möchte man Textzeichen direkt in Formeln eingeben.
37163  Benötigt man z.
37164 \begin_inset space \thinspace{}
37165 \end_inset
37166
37167 B.
37168  den mittigen Punkt · in Formeln wie 
37169 \begin_inset Formula $\nu=5·10^{5}\,\mathrm{Hz}$
37170 \end_inset
37171
37172 , müsste man dafür jedes Mal den Befehl 
37173 \series bold
37174
37175 \backslash
37176 cdot
37177 \series default
37178  eingeben
37179 \begin_inset Foot
37180 status collapsed
37181
37182 \begin_layout Plain Layout
37183 siehe 
37184 \begin_inset CommandInset ref
37185 LatexCommand ref
37186 reference "sub:Binäre-Operatoren"
37187
37188 \end_inset
37189
37190
37191 \end_layout
37192
37193 \end_inset
37194
37195 , da dieses Zeichen in allen Kodierungen als Textzeichen definiert ist.
37196  Man kann jedoch die Kodierung mit folgender LaTeX-Vorspannzeile ändern:
37197 \end_layout
37198
37199 \begin_layout Standard
37200
37201 \series bold
37202
37203 \backslash
37204 DeclareInputText{183}{
37205 \backslash
37206 ifmmode
37207 \backslash
37208 cdot
37209 \backslash
37210 else
37211 \backslash
37212 textperiodcentered
37213 \backslash
37214 f\SpecialChar \textcompwordmark{}
37215 i}
37216 \end_layout
37217
37218 \begin_layout Standard
37219 Die Zeichenkodierung (Menü 
37220 \family sans
37221 Dokument\SpecialChar \menuseparator
37222 Einstellungen\SpecialChar \menuseparator
37223 Sprache
37224 \family default
37225 ) legt fest, welches Zeichen beim Druck einer bestimmten Taste erscheint.
37226  Wenn man die Taste für das Zeichen '·' drückt, wird intern der Befehl 
37227 \series bold
37228
37229 \backslash
37230 textperiodcentered
37231 \series default
37232  verwendet.
37233  Dieser Befehl ist in einer Formel jedoch nicht verfügbar, so dass es zu
37234  LaTeX-Fehlern kommen würde.
37235  Durch die geänderte Kodierung wird hingegen automatisch der richtige Befehl
37236  gewählt, je nachdem ob das Zeichen in eine Formel eingegeben wurde oder
37237  nicht.
37238 \end_layout
37239
37240 \begin_layout Standard
37241 Die Kodierung der einzelnen Zeichen ist in Definitionsdateien abgespeichert.
37242  Z.
37243 \begin_inset space \thinspace{}
37244 \end_inset
37245
37246 B.
37247  ist die Kodierung 
37248 \series bold
37249 latin9
37250 \series default
37251  in der Datei 
37252 \series bold
37253 latin9.def
37254 \series default
37255  definiert, die sich im Installationsverzeichnis von LaTeX befindet.
37256  Kodierungen sollten nur über den LaTeX-Vorspann und nicht in den Definitionsdat
37257 eien geändert werden.
37258  Ansonsten können eigene Dokumente von anderen LyX-Nutzern auf anderen Computern
37259  nicht ohne Weiteres bearbeitet werden.
37260 \end_layout
37261
37262 \begin_layout Standard
37263 \begin_inset VSpace medskip
37264 \end_inset
37265
37266 In diesem Dokument wurde außerdem mittigen Punkt noch das Gradzeichen °
37267  mit folgenden LaTeX-Vorspannzeilen so definiert, dass sie direkt in eine
37268  Formel eingegeben werden können:
37269 \end_layout
37270
37271 \begin_layout Standard
37272
37273 \series bold
37274
37275 \backslash
37276 DeclareInputText{176}{
37277 \backslash
37278 ifmmode^
37279 \backslash
37280 circ
37281 \backslash
37282 else
37283 \backslash
37284 textdegree
37285 \backslash
37286 f\SpecialChar \textcompwordmark{}
37287 i}
37288 \end_layout
37289
37290 \begin_layout Standard
37291 \begin_inset Newpage newpage
37292 \end_inset
37293
37294
37295 \end_layout
37296
37297 \begin_layout Section
37298 \start_of_appendix
37299 Typographische Hinweise
37300 \begin_inset Index idx
37301 status collapsed
37302
37303 \begin_layout Plain Layout
37304 Typographische Hinweise
37305 \end_layout
37306
37307 \end_inset
37308
37309
37310 \end_layout
37311
37312 \begin_layout Standard
37313 Dieses Kapitel ist eine Zusammenfassung der wichtigsten typographischen
37314  Regeln, die teilweise auch im Duden 
37315 \begin_inset CommandInset citation
37316 LatexCommand cite
37317 key "Duden"
37318
37319 \end_inset
37320
37321  unter 
37322 \family typewriter
37323 Textverarbeitung
37324 \family default
37325  aufgelistet sind.
37326  Weitere Regeln sind in 
37327 \begin_inset CommandInset citation
37328 LatexCommand cite
37329 key "Checklist"
37330
37331 \end_inset
37332
37333  zu finden.
37334 \end_layout
37335
37336 \begin_layout Itemize
37337 Physikalische Einheiten werden 
37338 \emph on
37339 immer
37340 \emph default
37341  aufrecht gesetzt
37342 \begin_inset Foot
37343 status collapsed
37344
37345 \begin_layout Plain Layout
37346 wird durch Schriftstile erreicht, siehe 
37347 \begin_inset CommandInset ref
37348 LatexCommand ref
37349 reference "sub:Schriftstile"
37350
37351 \end_inset
37352
37353
37354 \end_layout
37355
37356 \end_inset
37357
37358 , egal ob sie sich in einem kursiven Text befinden: 30
37359 \begin_inset space \thinspace{}
37360 \end_inset
37361
37362 km/h
37363 \begin_inset Newline newline
37364 \end_inset
37365
37366 Zwischen Wert und Einheit befindet sich der kleinste Leerraum, siehe 
37367 \begin_inset CommandInset ref
37368 LatexCommand ref
37369 reference "sub:Vordefinierter-Leerraum"
37370
37371 \end_inset
37372
37373 .
37374 \begin_inset Newline newline
37375 \end_inset
37376
37377 Diese Richtlinie wird automatisch eingehalten, wenn man den Befehl 
37378 \series bold
37379
37380 \backslash
37381 unittwo
37382 \series default
37383  verwendet.
37384  Gibt man ihn in eine Formel ein, erscheinen zwei Kästchen.
37385  In das Erste wird der Wert, in das Zweite die Einheit eingegeben und man
37386  erhält wie oben: 
37387 \begin_inset Formula $\unit[30]{km/h}$
37388 \end_inset
37389
37390
37391 \begin_inset space \thinspace{}
37392 \end_inset
37393
37394 .
37395  Zu beachten ist, dass 
37396 \series bold
37397
37398 \backslash
37399 unittwo
37400 \series default
37401  kein echter LaTeX-Befehl, sondern der Befehl 
37402 \series bold
37403
37404 \backslash
37405 unit[Wert]{Einheit}
37406 \series default
37407  ist, daher kann man ihn nicht im TeX-Code benutzen.
37408 \end_layout
37409
37410 \begin_layout Itemize
37411 Prozent- und Promillezeichen werden wie physikalische Einheiten gesetzt:
37412 \begin_inset Newline newline
37413 \end_inset
37414
37415 1,2
37416 \begin_inset space \thinspace{}
37417 \end_inset
37418
37419 ‰ Alkohol im Blut
37420 \begin_inset Newline newline
37421 \end_inset
37422
37423 Sie folgen jedoch direkt auf die Zahl, wenn sie in einer Zusammensetzung
37424  oder Ableitung stehen: 3%-ige Rendite, 20%-Grenze
37425 \end_layout
37426
37427 \begin_layout Itemize
37428 Das Grad-Symbol folgt immer unmittelbar auf die Zahl: 15°, es sei denn es
37429  wird in einer Einheit verwendet: 15
37430 \begin_inset space \thinspace{}
37431 \end_inset
37432
37433 °C
37434 \end_layout
37435
37436 \begin_layout Itemize
37437 In Zahlen mit mehr als vier Ziffern wird zur Gruppierung vor jeder dritten
37438  Ziffer der kleinste Leerraum eingefügt: 18
37439 \begin_inset space \thinspace{}
37440 \end_inset
37441
37442 473
37443 \begin_inset space \thinspace{}
37444 \end_inset
37445
37446 588
37447 \end_layout
37448
37449 \begin_layout Itemize
37450 Für Bemaßungen wie z.
37451 \begin_inset space \thinspace{}
37452 \end_inset
37453
37454 B.
37455  120×90×40
37456 \begin_inset space \thinspace{}
37457 \end_inset
37458
37459 cm, verwendet man das gelegte Kreuz 
37460 \begin_inset Quotes gld
37461 \end_inset
37462
37463 ×
37464 \begin_inset Quotes grd
37465 \end_inset
37466
37467 , dass entweder über den Befehl 
37468 \series bold
37469
37470 \backslash
37471 times
37472 \series default
37473  oder über das Menü 
37474 \family sans
37475 Einfügen\SpecialChar \menuseparator
37476 Sonderzeichen\SpecialChar \menuseparator
37477 Symbole
37478 \family default
37479  verfügbar ist.
37480 \end_layout
37481
37482 \begin_layout Itemize
37483 Bei Datumsangaben befindet sich zwischen Tag und Monat der kleinste Leerraum,
37484  zwischen Monat und Jahr ein geschütztes Leerzeichen: 23.
37485 \begin_inset space \thinspace{}
37486 \end_inset
37487
37488 6.
37489 \begin_inset space ~
37490 \end_inset
37491
37492 1979
37493 \end_layout
37494
37495 \begin_layout Itemize
37496 Funktionen, deren Name aus mehreren Buchstaben besteht, werden aufrecht
37497  gesetzt um Verwechslungen mit Variablen zu vermeiden, siehe 
37498 \begin_inset CommandInset ref
37499 LatexCommand ref
37500 reference "sub:Vordefinierte-Funktionen"
37501
37502 \end_inset
37503
37504 .
37505 \end_layout
37506
37507 \begin_layout Itemize
37508 Indizes, die aus mehreren Buchstaben bestehen, werden aufrecht gesetzt:
37509  
37510 \begin_inset Formula $E_{\mathrm{kin}}$
37511 \end_inset
37512
37513
37514 \begin_inset Newline newline
37515 \end_inset
37516
37517 Komponenten von Matrizen werden kursiv gesetzt: 
37518 \begin_inset Formula $\hat{H}_{kl}$
37519 \end_inset
37520
37521
37522 \end_layout
37523
37524 \begin_layout Itemize
37525 Der Ableitungs-/Integrationsoperator 'd', die Eulersche Zahl 'e' und die
37526  Imaginäre Zahl 'i' sollten aufrecht gesetzt werden, um sie nicht mit anderen
37527  Variablen zu verwechseln.
37528 \end_layout
37529
37530 \begin_layout Itemize
37531 Das Symbol für eine 
37532 \noun on
37533 Fourier
37534 \noun default
37535 -Transformation kann entweder mit dem Befehl 
37536 \series bold
37537
37538 \backslash
37539 mathscr
37540 \begin_inset ERT
37541 status collapsed
37542
37543 \begin_layout Plain Layout
37544
37545
37546 \backslash
37547 leer 
37548 \end_layout
37549
37550 \end_inset
37551
37552 F
37553 \series default
37554  oder über das Menü 
37555 \family sans
37556 Einfügen\SpecialChar \menuseparator
37557 Sonderzeichen\SpecialChar \menuseparator
37558 Symbole\SpecialChar \menuseparator
37559 Buchsta\SpecialChar \-
37560 benähnliche Symbole
37561 \family default
37562  eingefügt werden: 
37563 \begin_inset Formula $\mathscr{F}$
37564 \end_inset
37565
37566
37567 \end_layout
37568
37569 \begin_layout Standard
37570 \begin_inset Newpage newpage
37571 \end_inset
37572
37573
37574 \end_layout
37575
37576 \begin_layout Section
37577 Synonyme
37578 \begin_inset Index idx
37579 status collapsed
37580
37581 \begin_layout Plain Layout
37582 Synonyme
37583 \end_layout
37584
37585 \end_inset
37586
37587
37588 \end_layout
37589
37590 \begin_layout Standard
37591 Einige Zeichen und Symbole können mit mehreren Befehlen erstellt werden.
37592  Hier ist eine Übersicht der Synonymbefehle:
37593 \end_layout
37594
37595 \begin_layout Standard
37596 \begin_inset VSpace bigskip
37597 \end_inset
37598
37599
37600 \begin_inset space \hfill{}
37601 \end_inset
37602
37603
37604 \begin_inset Tabular
37605 <lyxtabular version="3" rows="12" columns="2">
37606 <features tabularvalignment="middle">
37607 <column alignment="center" valignment="top" width="0pt">
37608 <column alignment="center" valignment="top" width="0pt">
37609 <row>
37610 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
37611 \begin_inset Text
37612
37613 \begin_layout Plain Layout
37614 Befehl
37615 \end_layout
37616
37617 \end_inset
37618 </cell>
37619 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
37620 \begin_inset Text
37621
37622 \begin_layout Plain Layout
37623 äquivalent zu
37624 \begin_inset Note Note
37625 status collapsed
37626
37627 \begin_layout Plain Layout
37628
37629 \series bold
37630
37631 \backslash
37632 raisebox
37633 \series default
37634  dient nur als Abstandhalter.
37635 \end_layout
37636
37637 \end_inset
37638
37639
37640 \end_layout
37641
37642 \end_inset
37643 </cell>
37644 </row>
37645 <row>
37646 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37647 \begin_inset Text
37648
37649 \begin_layout Plain Layout
37650
37651 \backslash
37652 ast
37653 \end_layout
37654
37655 \end_inset
37656 </cell>
37657 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37658 \begin_inset Text
37659
37660 \begin_layout Plain Layout
37661 \begin_inset ERT
37662 status collapsed
37663
37664 \begin_layout Plain Layout
37665
37666
37667 \backslash
37668 raisebox{-1.2mm}{
37669 \end_layout
37670
37671 \end_inset
37672
37673 *
37674 \begin_inset ERT
37675 status collapsed
37676
37677 \begin_layout Plain Layout
37678
37679 }
37680 \end_layout
37681
37682 \end_inset
37683
37684
37685 \end_layout
37686
37687 \end_inset
37688 </cell>
37689 </row>
37690 <row>
37691 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37692 \begin_inset Text
37693
37694 \begin_layout Plain Layout
37695
37696 \backslash
37697 choose
37698 \end_layout
37699
37700 \end_inset
37701 </cell>
37702 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37703 \begin_inset Text
37704
37705 \begin_layout Plain Layout
37706
37707 \backslash
37708 binom
37709 \end_layout
37710
37711 \end_inset
37712 </cell>
37713 </row>
37714 <row>
37715 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37716 \begin_inset Text
37717
37718 \begin_layout Plain Layout
37719
37720 \backslash
37721 geq
37722 \end_layout
37723
37724 \end_inset
37725 </cell>
37726 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37727 \begin_inset Text
37728
37729 \begin_layout Plain Layout
37730
37731 \backslash
37732 ge
37733 \end_layout
37734
37735 \end_inset
37736 </cell>
37737 </row>
37738 <row>
37739 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37740 \begin_inset Text
37741
37742 \begin_layout Plain Layout
37743
37744 \backslash
37745 lbrace
37746 \end_layout
37747
37748 \end_inset
37749 </cell>
37750 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37751 \begin_inset Text
37752
37753 \begin_layout Plain Layout
37754 {
37755 \end_layout
37756
37757 \end_inset
37758 </cell>
37759 </row>
37760 <row>
37761 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37762 \begin_inset Text
37763
37764 \begin_layout Plain Layout
37765
37766 \backslash
37767 lbracket
37768 \end_layout
37769
37770 \end_inset
37771 </cell>
37772 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37773 \begin_inset Text
37774
37775 \begin_layout Plain Layout
37776 [
37777 \end_layout
37778
37779 \end_inset
37780 </cell>
37781 </row>
37782 <row>
37783 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37784 \begin_inset Text
37785
37786 \begin_layout Plain Layout
37787
37788 \backslash
37789 leftarrow
37790 \end_layout
37791
37792 \end_inset
37793 </cell>
37794 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37795 \begin_inset Text
37796
37797 \begin_layout Plain Layout
37798
37799 \backslash
37800 gets
37801 \end_layout
37802
37803 \end_inset
37804 </cell>
37805 </row>
37806 <row>
37807 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37808 \begin_inset Text
37809
37810 \begin_layout Plain Layout
37811
37812 \backslash
37813 leq
37814 \end_layout
37815
37816 \end_inset
37817 </cell>
37818 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37819 \begin_inset Text
37820
37821 \begin_layout Plain Layout
37822
37823 \backslash
37824 le
37825 \end_layout
37826
37827 \end_inset
37828 </cell>
37829 </row>
37830 <row>
37831 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37832 \begin_inset Text
37833
37834 \begin_layout Plain Layout
37835
37836 \backslash
37837 lor
37838 \end_layout
37839
37840 \end_inset
37841 </cell>
37842 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37843 \begin_inset Text
37844
37845 \begin_layout Plain Layout
37846
37847 \backslash
37848 vee
37849 \end_layout
37850
37851 \end_inset
37852 </cell>
37853 </row>
37854 <row>
37855 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37856 \begin_inset Text
37857
37858 \begin_layout Plain Layout
37859
37860 \backslash
37861 neq
37862 \end_layout
37863
37864 \end_inset
37865 </cell>
37866 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37867 \begin_inset Text
37868
37869 \begin_layout Plain Layout
37870
37871 \backslash
37872 not=
37873 \end_layout
37874
37875 \end_inset
37876 </cell>
37877 </row>
37878 <row>
37879 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37880 \begin_inset Text
37881
37882 \begin_layout Plain Layout
37883
37884 \backslash
37885 slash
37886 \end_layout
37887
37888 \end_inset
37889 </cell>
37890 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37891 \begin_inset Text
37892
37893 \begin_layout Plain Layout
37894 /
37895 \end_layout
37896
37897 \end_inset
37898 </cell>
37899 </row>
37900 <row>
37901 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
37902 \begin_inset Text
37903
37904 \begin_layout Plain Layout
37905
37906 \backslash
37907 vert
37908 \end_layout
37909
37910 \end_inset
37911 </cell>
37912 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
37913 \begin_inset Text
37914
37915 \begin_layout Plain Layout
37916 |
37917 \end_layout
37918
37919 \end_inset
37920 </cell>
37921 </row>
37922 </lyxtabular>
37923
37924 \end_inset
37925
37926
37927 \begin_inset space \hfill{}
37928 \end_inset
37929
37930
37931 \begin_inset Tabular
37932 <lyxtabular version="3" rows="12" columns="2">
37933 <features tabularvalignment="middle">
37934 <column alignment="center" valignment="top" width="0pt">
37935 <column alignment="center" valignment="top" width="0pt">
37936 <row>
37937 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
37938 \begin_inset Text
37939
37940 \begin_layout Plain Layout
37941 Befehl
37942 \end_layout
37943
37944 \end_inset
37945 </cell>
37946 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
37947 \begin_inset Text
37948
37949 \begin_layout Plain Layout
37950 äquivalent zu
37951 \end_layout
37952
37953 \end_inset
37954 </cell>
37955 </row>
37956 <row>
37957 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37958 \begin_inset Text
37959
37960 \begin_layout Plain Layout
37961
37962 \backslash
37963 backslash
37964 \end_layout
37965
37966 \end_inset
37967 </cell>
37968 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37969 \begin_inset Text
37970
37971 \begin_layout Plain Layout
37972
37973 \backslash
37974
37975 \backslash
37976
37977 \end_layout
37978
37979 \end_inset
37980 </cell>
37981 </row>
37982 <row>
37983 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37984 \begin_inset Text
37985
37986 \begin_layout Plain Layout
37987
37988 \backslash
37989 dasharrow
37990 \end_layout
37991
37992 \end_inset
37993 </cell>
37994 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37995 \begin_inset Text
37996
37997 \begin_layout Plain Layout
37998
37999 \backslash
38000 dashrightarrow
38001 \end_layout
38002
38003 \end_inset
38004 </cell>
38005 </row>
38006 <row>
38007 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
38008 \begin_inset Text
38009
38010 \begin_layout Plain Layout
38011
38012 \backslash
38013 land
38014 \end_layout
38015
38016 \end_inset
38017 </cell>
38018 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
38019 \begin_inset Text
38020
38021 \begin_layout Plain Layout
38022
38023 \backslash
38024 wedge
38025 \end_layout
38026
38027 \end_inset
38028 </cell>
38029 </row>
38030 <row>
38031 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
38032 \begin_inset Text
38033
38034 \begin_layout Plain Layout
38035
38036 \backslash
38037 rbrace
38038 \end_layout
38039
38040 \end_inset
38041 </cell>
38042 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
38043 \begin_inset Text
38044
38045 \begin_layout Plain Layout
38046 }
38047 \end_layout
38048
38049 \end_inset
38050 </cell>
38051 </row>
38052 <row>
38053 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
38054 \begin_inset Text
38055
38056 \begin_layout Plain Layout
38057
38058 \backslash
38059 rbracket
38060 \end_layout
38061
38062 \end_inset
38063 </cell>
38064 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
38065 \begin_inset Text
38066
38067 \begin_layout Plain Layout
38068 ]
38069 \end_layout
38070
38071 \end_inset
38072 </cell>
38073 </row>
38074 <row>
38075 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
38076 \begin_inset Text
38077
38078 \begin_layout Plain Layout
38079
38080 \backslash
38081 rightarrow
38082 \end_layout
38083
38084 \end_inset
38085 </cell>
38086 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
38087 \begin_inset Text
38088
38089 \begin_layout Plain Layout
38090
38091 \backslash
38092 to
38093 \end_layout
38094
38095 \end_inset
38096 </cell>
38097 </row>
38098 <row>
38099 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
38100 \begin_inset Text
38101
38102 \begin_layout Plain Layout
38103
38104 \backslash
38105 lnot
38106 \end_layout
38107
38108 \end_inset
38109 </cell>
38110 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
38111 \begin_inset Text
38112
38113 \begin_layout Plain Layout
38114
38115 \backslash
38116 neg
38117 \end_layout
38118
38119 \end_inset
38120 </cell>
38121 </row>
38122 <row>
38123 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
38124 \begin_inset Text
38125
38126 \begin_layout Plain Layout
38127
38128 \backslash
38129 ne
38130 \end_layout
38131
38132 \end_inset
38133 </cell>
38134 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
38135 \begin_inset Text
38136
38137 \begin_layout Plain Layout
38138
38139 \backslash
38140 not=
38141 \end_layout
38142
38143 \end_inset
38144 </cell>
38145 </row>
38146 <row>
38147 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
38148 \begin_inset Text
38149
38150 \begin_layout Plain Layout
38151
38152 \backslash
38153 owns
38154 \end_layout
38155
38156 \end_inset
38157 </cell>
38158 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
38159 \begin_inset Text
38160
38161 \begin_layout Plain Layout
38162
38163 \backslash
38164 ni
38165 \end_layout
38166
38167 \end_inset
38168 </cell>
38169 </row>
38170 <row>
38171 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
38172 \begin_inset Text
38173
38174 \begin_layout Plain Layout
38175
38176 \backslash
38177 square
38178 \end_layout
38179
38180 \end_inset
38181 </cell>
38182 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
38183 \begin_inset Text
38184
38185 \begin_layout Plain Layout
38186
38187 \backslash
38188 Box
38189 \end_layout
38190
38191 \end_inset
38192 </cell>
38193 </row>
38194 <row>
38195 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
38196 \begin_inset Text
38197
38198 \begin_layout Plain Layout
38199
38200 \backslash
38201 Vert
38202 \end_layout
38203
38204 \end_inset
38205 </cell>
38206 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
38207 \begin_inset Text
38208
38209 \begin_layout Plain Layout
38210
38211 \backslash
38212 |
38213 \end_layout
38214
38215 \end_inset
38216 </cell>
38217 </row>
38218 </lyxtabular>
38219
38220 \end_inset
38221
38222
38223 \begin_inset space \hfill{}
38224 \end_inset
38225
38226
38227 \end_layout
38228
38229 \begin_layout Standard
38230 \begin_inset Newpage newpage
38231 \end_inset
38232
38233
38234 \end_layout
38235
38236 \begin_layout Bibliography
38237 \begin_inset CommandInset bibitem
38238 LatexCommand bibitem
38239 key "TLC2"
38240
38241 \end_inset
38242
38243
38244 \shape smallcaps
38245 Mittelbach, F.
38246  ; Goossens, M.
38247 \shape default
38248
38249 \shape italic
38250 The LaTeX Companion
38251 \shape default
38252 .
38253  Addison Wesley, 2004
38254 \end_layout
38255
38256 \begin_layout Bibliography
38257 \begin_inset CommandInset bibitem
38258 LatexCommand bibitem
38259 key "Mathmode"
38260
38261 \end_inset
38262
38263
38264 \begin_inset CommandInset href
38265 LatexCommand href
38266 name "Beschreibung"
38267 target "ftp://ftp.dante.de/tex-archive/info/math/voss/mathmode/Mathmode.pdf"
38268
38269 \end_inset
38270
38271  der mathematischen Fähigkeiten von LaTeX
38272 \end_layout
38273
38274 \begin_layout Bibliography
38275 \begin_inset CommandInset bibitem
38276 LatexCommand bibitem
38277 key "AMS"
38278
38279 \end_inset
38280
38281
38282 \begin_inset CommandInset href
38283 LatexCommand href
38284 name "Beschreibung"
38285 target "ftp://ftp.ams.org/pub/tex/doc/amsmath/amsldoc.pdf"
38286
38287 \end_inset
38288
38289  von 
38290 \begin_inset ERT
38291 status collapsed
38292
38293 \begin_layout Plain Layout
38294
38295
38296 \backslash
38297 AmS
38298 \end_layout
38299
38300 \end_inset
38301
38302 -LaTeX
38303 \end_layout
38304
38305 \begin_layout Bibliography
38306 \begin_inset CommandInset bibitem
38307 LatexCommand bibitem
38308 key "Symbole"
38309
38310 \end_inset
38311
38312
38313 \begin_inset CommandInset href
38314 LatexCommand href
38315 name "Auflistung"
38316 target "ftp://ftp.dante.de/tex-archive/info/symbols/comprehensive/symbols-a4.pdf"
38317
38318 \end_inset
38319
38320  aller über LaTeX-Pakete verfügbare Symbole
38321 \end_layout
38322
38323 \begin_layout Bibliography
38324 \begin_inset CommandInset bibitem
38325 LatexCommand bibitem
38326 key "cancel"
38327
38328 \end_inset
38329
38330
38331 \begin_inset CommandInset href
38332 LatexCommand href
38333 name "Dokumentation"
38334 target "http://mirrors.ctan.org/macros/latex/contrib/cancel/cancel.pdf"
38335
38336 \end_inset
38337
38338  des LaTeX-Pakets 
38339 \series bold
38340 cancel
38341 \series default
38342
38343 \begin_inset Index idx
38344 status collapsed
38345
38346 \begin_layout Plain Layout
38347 Pakete ! cancel
38348 \end_layout
38349
38350 \end_inset
38351
38352
38353 \end_layout
38354
38355 \begin_layout Bibliography
38356 \begin_inset CommandInset bibitem
38357 LatexCommand bibitem
38358 key "hyperref"
38359
38360 \end_inset
38361
38362
38363 \begin_inset CommandInset href
38364 LatexCommand href
38365 name "Dokumentation"
38366 target "http://www.tug.org/applications/hyperref/ftp/doc/manual.pdf"
38367
38368 \end_inset
38369
38370  des LaTeX-Pakets 
38371 \series bold
38372 hyperref
38373 \series default
38374
38375 \begin_inset Index idx
38376 status collapsed
38377
38378 \begin_layout Plain Layout
38379 Pakete ! hyperref
38380 \end_layout
38381
38382 \end_inset
38383
38384
38385 \end_layout
38386
38387 \begin_layout Bibliography
38388 \begin_inset CommandInset bibitem
38389 LatexCommand bibitem
38390 key "mhchem"
38391
38392 \end_inset
38393
38394
38395 \begin_inset CommandInset href
38396 LatexCommand href
38397 name "Dokumentation"
38398 target "http://www.ctan.org/tex-archive/macros/latex/contrib/mhchem/mhchem.pdf"
38399
38400 \end_inset
38401
38402  des LaTeX-Pakets 
38403 \series bold
38404 mhchem
38405 \series default
38406
38407 \begin_inset Index idx
38408 status collapsed
38409
38410 \begin_layout Plain Layout
38411 Pakete ! mhchem
38412 \end_layout
38413
38414 \end_inset
38415
38416
38417 \end_layout
38418
38419 \begin_layout Bibliography
38420 \begin_inset CommandInset bibitem
38421 LatexCommand bibitem
38422 key "Mathclap"
38423
38424 \end_inset
38425
38426
38427 \begin_inset CommandInset href
38428 LatexCommand href
38429 name "Beschreibung"
38430 target "http://www.tug.org/TUGboat/Articles/tb22-4/tb72perlS.pdf"
38431
38432 \end_inset
38433
38434  des in 
38435 \begin_inset CommandInset ref
38436 LatexCommand ref
38437 reference "sub:Operatorgrenzen"
38438
38439 \end_inset
38440
38441  vorgestellten Befehls 
38442 \series bold
38443
38444 \backslash
38445 mathclap
38446 \series default
38447
38448 \begin_inset Index idx
38449 status collapsed
38450
38451 \begin_layout Plain Layout
38452 Befehle ! M ! 
38453 \backslash
38454 mathclap
38455 \end_layout
38456
38457 \end_inset
38458
38459
38460 \end_layout
38461
38462 \begin_layout Bibliography
38463 \begin_inset CommandInset bibitem
38464 LatexCommand bibitem
38465 key "Duden"
38466
38467 \end_inset
38468
38469
38470 \emph on
38471 Duden Band 1
38472 \emph default
38473 .
38474  22.
38475  Auflage, Duden Verlag 2001
38476 \end_layout
38477
38478 \begin_layout Bibliography
38479 \begin_inset CommandInset bibitem
38480 LatexCommand bibitem
38481 key "Checklist"
38482
38483 \end_inset
38484
38485
38486 \begin_inset CommandInset href
38487 LatexCommand href
38488 name "Prüfliste"
38489 target "http://physics.nist.gov/Document/checklist.pdf"
38490
38491 \end_inset
38492
38493  für das Rezensieren von Manuskripten
38494 \end_layout
38495
38496 \begin_layout Standard
38497 \begin_inset Note Note
38498 status collapsed
38499
38500 \begin_layout Plain Layout
38501 Damit der Index den Namen 
38502 \begin_inset Quotes gld
38503 \end_inset
38504
38505 Stichwortverzeichnis
38506 \begin_inset Quotes grd
38507 \end_inset
38508
38509  erhält, wurde im LaTeX-Vorspann
38510 \end_layout
38511
38512 \begin_layout Plain Layout
38513
38514 \series bold
38515
38516 \backslash
38517 addto
38518 \backslash
38519 captionsngerman{
38520 \backslash
38521 renewcommand{
38522 \backslash
38523 indexname}{Stichwortverzeichnis}}
38524 \end_layout
38525
38526 \begin_layout Plain Layout
38527 eingefügt.
38528 \end_layout
38529
38530 \begin_layout Plain Layout
38531 Das Paket 
38532 \series bold
38533 babel
38534 \series default
38535  sorgt dafür, dass die Beschriftungen in der ausgewählten Sprache erscheinen.
38536  Ehe man Beschriftungen ändern kann, muss es geladen werden.
38537  Außerdem wird 
38538 \series bold
38539 babel
38540 \series default
38541  von LyX automatisch nach dem LaTeX-Vorspann geladen.
38542  Das ruft aber keine Probleme hervor, solange im LaTeX-Vorspann die Dokumentspra
38543 che verwendet wurde.
38544 \end_layout
38545
38546 \begin_layout Plain Layout
38547 Möchte man andere Beschriftungen ändern, ersetzt man 
38548 \series bold
38549
38550 \backslash
38551 indexname
38552 \series default
38553  durch 
38554 \series bold
38555
38556 \backslash
38557 <Beschriftungs>name
38558 \series default
38559 .
38560  Eine Auflistung der möglichen Namen findet man unter
38561 \end_layout
38562
38563 \begin_layout Plain Layout
38564
38565 \family typewriter
38566 http://www.tex.ac.uk/cgi-bin/texfaq2html?label=fixnam
38567 \end_layout
38568
38569 \begin_layout Plain Layout
38570 Möchte man Beschriftungen für andere Sprachen ändern, ersetzt man 
38571 \series bold
38572 ngerman
38573 \series default
38574  durch die Dokumentsprache und
38575 \end_layout
38576
38577 \begin_layout Plain Layout
38578
38579 \series bold
38580
38581 \backslash
38582 captionsgerman
38583 \series default
38584  durch 
38585 \series bold
38586
38587 \backslash
38588 captions<Dokumentsprache>
38589 \series default
38590 .
38591 \end_layout
38592
38593 \end_inset
38594
38595
38596 \begin_inset CommandInset index_print
38597 LatexCommand printindex
38598 type "idx"
38599
38600 \end_inset
38601
38602
38603 \end_layout
38604
38605 \end_body
38606 \end_document