]> git.lyx.org Git - lyx.git/blob - lib/doc/de/Math.lyx
Math.lyx: fix potential whitespace issue in preamble
[lyx.git] / lib / doc / de / Math.lyx
1 #LyX 2.1 created this file. For more info see http://www.lyx.org/
2 \lyxformat 474
3 \begin_document
4 \begin_header
5 \textclass scrartcl
6 \begin_preamble
7 % DO NOT ALTER THIS PREAMBLE!!!
8 %
9 % This preamble is designed to ensure that the file prints
10 % out as advertised. If you mess with this preamble,
11 % parts of this document may not print out as expected.  If you
12 % have problems LaTeXing this file, please contact 
13 % the documentation team
14 % email: lyx-docs@lists.lyx.org
15
16 % if pdflatex is used
17 \usepackage{ifpdf}
18 \ifpdf
19
20 % set fonts for nicer pdf view
21 \IfFileExists{lmodern.sty}
22  {\usepackage{lmodern}}{}
23
24 \fi % end if pdflatex is used
25
26 % Folgendes Problem lösen:
27 % Besteht die Kapitelnummer aus zu vielen Ziffern, wird  die
28 % Kapitelüberschrift im Inhaltsverzeichnis direkt an oder über
29 % die Kapitelnummer geschrieben.
30 % Als Lösung wird mehr Platz zwischen Nummer und
31 % Überschrift eingefügt.
32 \renewcommand{\l@subsection}{\@dottedtocline{2}{1.5em}{2.8em}}
33 \renewcommand{\l@subsubsection}{\@dottedtocline{3}{4.3em}{3.6em}}
34
35 % 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_math auto
164 \font_default_family default
165 \use_non_tex_fonts false
166 \font_sc false
167 \font_osf false
168 \font_sf_scale 100
169 \font_tt_scale 100
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_package amsmath 2
195 \use_package amssymb 2
196 \use_package cancel 0
197 \use_package esint 1
198 \use_package mathdots 1
199 \use_package mathtools 0
200 \use_package mhchem 1
201 \use_package stackrel 0
202 \use_package stmaryrd 0
203 \use_package undertilde 0
204 \cite_engine basic
205 \cite_engine_type default
206 \biblio_style plain
207 \use_bibtopic false
208 \use_indices false
209 \paperorientation portrait
210 \suppress_date false
211 \justification true
212 \use_refstyle 0
213 \notefontcolor #0000ff
214 \index Stichwortverzeichnis
215 \shortcut idx
216 \color #008000
217 \end_index
218 \secnumdepth 4
219 \tocdepth 3
220 \paragraph_separation skip
221 \defskip medskip
222 \quotes_language german
223 \papercolumns 1
224 \papersides 2
225 \paperpagestyle plain
226 \bullet 1 0 6 -1
227 \bullet 2 2 35 -1
228 \bullet 3 2 7 -1
229 \tracking_changes false
230 \output_changes false
231 \html_math_output 0
232 \html_css_as_file 0
233 \html_be_strict false
234 \end_header
235
236 \begin_body
237
238 \begin_layout Title
239 LyXs detailliertes Mathe Handbuch
240 \end_layout
241
242 \begin_layout Author
243 vom LyX Team
244 \begin_inset Foot
245 status collapsed
246
247 \begin_layout Plain Layout
248 \noindent
249 Für Anmerkungen oder Korrekturen senden sie bitte eine Email an LyXs Dokumentati
250 ons-Liste: 
251 \family typewriter
252
253 \begin_inset CommandInset href
254 LatexCommand href
255 name "lyx-docs@lists.lyx.org"
256 target "lyx-docs@lists.lyx.org?subject=LyXs Mathehandbuch"
257
258 \end_inset
259
260
261 \end_layout
262
263 \end_inset
264
265
266 \begin_inset Note Note
267 status collapsed
268
269 \begin_layout Plain Layout
270 Verfasser: Uwe Stöhr
271 \end_layout
272
273 \end_inset
274
275
276 \begin_inset Newline newline
277 \end_inset
278
279
280 \begin_inset Newline newline
281 \end_inset
282
283
284 \family sans
285 Version 2.0.x
286 \end_layout
287
288 \begin_layout Standard
289 \begin_inset CommandInset toc
290 LatexCommand tableofcontents
291
292 \end_inset
293
294
295 \end_layout
296
297 \begin_layout Standard
298 \begin_inset Note Note
299 status open
300
301 \begin_layout Plain Layout
302 Um diese Datei als PDF, PS oder DVI zu exportieren, sollten die LaTeX-Pakete
303  
304 \series bold
305 braket, cancel, eurosym, mathdots, mhchem
306 \series default
307  und 
308 \series bold
309 was
310 \series default
311  installiert sein.
312  Wenn diese nicht installiert sind, kann das Dokument zwar exportiert werden,
313  die Abschnitte in denen die Pakete benötigt werden, erscheinen dann aber
314  nicht im Ausdruck.
315  Eine Ausnahme ist 
316 \series bold
317 mhchem
318 \series default
319 ; wenn es nicht installiert ist, kann dieses Dokument nicht exportiert werden.
320 \end_layout
321
322 \begin_layout Plain Layout
323 Die neueste PDF-Version dieses Dokuments ist hier zu finden:
324 \begin_inset Newline newline
325 \end_inset
326
327
328 \series bold
329 http://wiki.lyx.org/LyX/DocumentationDevelopment#Math
330 \end_layout
331
332 \end_inset
333
334
335 \end_layout
336
337 \begin_layout Standard
338 \begin_inset Newpage newpage
339 \end_inset
340
341
342 \end_layout
343
344 \begin_layout Section
345 Einleitung
346 \end_layout
347
348 \begin_layout Standard
349 Dieses Dokument ist eine Zusammenstellung und Erläuterung der wichtigsten
350  LaTeX-Befehle für mathematische Zeichen und Konstruktionen.
351  Die Erläuterungen sind speziell auf die Benutzung der Befehle mit LyX zugeschni
352 tten.
353  Das setzt voraus, dass bereits das Kapitel 
354 \family typewriter
355 Mathematische
356 \family default
357  
358 \family typewriter
359 Formeln
360 \family default
361  des Benutzerhandbuchs gelesen worden ist.
362 \end_layout
363
364 \begin_layout Standard
365 Die meisten Zeichen und viele Konstruktionen sind auch über das Menü 
366 \family sans
367 Einfügen
368 \series bold
369 \SpecialChar \menuseparator
370
371 \series default
372 Mathe
373 \family default
374  oder die 
375 \family sans
376 Mathe-Werkzeugleiste
377 \family default
378  aufrufbar.
379  Wer viele Formeln zu schreiben hat, wird jedoch feststellen, dass man mit
380  den LaTeX-Befehlen viel schneller eine Formel setzen kann.
381  Daher wird in diesem Handbuch der Fokus auf Befehle gesetzt wobei entsprechende
382  Werkzeugleistenknöpfe, falls vorhanden, erwähnt werden.
383 \end_layout
384
385 \begin_layout Standard
386 Sofern nicht anders angegeben, sind Befehle nur in der Formel-Umgebung von
387  LyX verfügbar.
388  Um alle Befehle nutzen zu können, muss die Option 
389 \family sans
390 AMS-Mathe-Paket verwenden
391 \family default
392  im Menü 
393 \family sans
394 Dokument\SpecialChar \menuseparator
395 Einstellungen\SpecialChar \menuseparator
396 Mathe Optionen
397 \family default
398  aktiviert sein.
399 \begin_inset Foot
400 status collapsed
401
402 \begin_layout Plain Layout
403 Die 
404 \family sans
405 Option
406 \family default
407  
408 \family sans
409 AMS-Mathe-Paket automatisch verwenden
410 \family default
411  verwendet 
412 \begin_inset ERT
413 status collapsed
414
415 \begin_layout Plain Layout
416
417
418 \backslash
419 AmS 
420 \end_layout
421
422 \end_inset
423
424 -Mathe nur wenn im Dokument mathematische Konstrukte gefunden wurden die
425  LyX unterstützt.
426 \end_layout
427
428 \end_inset
429
430
431 \end_layout
432
433 \begin_layout Standard
434 Es wird in diesem Dokument der Übersichtlichkeit halber auf die Auf\SpecialChar \textcompwordmark{}
435 listung
436  aller 
437 \begin_inset ERT
438 status collapsed
439
440 \begin_layout Plain Layout
441
442
443 \backslash
444 AmS 
445 \end_layout
446
447 \end_inset
448
449 -Mathe Befehle
450 \begin_inset Foot
451 status collapsed
452
453 \begin_layout Plain Layout
454 Eine Liste mit allen 
455 \begin_inset ERT
456 status collapsed
457
458 \begin_layout Plain Layout
459
460
461 \backslash
462 AmS
463 \end_layout
464
465 \end_inset
466
467 -Mathe Befehlen findet sich in der Datei 
468 \family sans
469
470 \begin_inset CommandInset href
471 LatexCommand href
472 name "amsguide.ps"
473 target "ftp://ctan.tug.org/tex-archive/macros/amstex/doc/amsguide.ps"
474
475 \end_inset
476
477
478 \family default
479 , die Teil jeder LaTeX-Standardinstallation ist.
480 \end_layout
481
482 \end_inset
483
484  verzichtet.
485 \end_layout
486
487 \begin_layout Section
488 Allgemeine Hinweise
489 \end_layout
490
491 \begin_layout Standard
492 Um eine in einer Textzeile eingebettete Formel
493 \begin_inset Index idx
494 status collapsed
495
496 \begin_layout Plain Layout
497 Formel ! eingebettete
498 \end_layout
499
500 \end_inset
501
502  zu erstellen, drückt man 
503 \family sans
504 Strg+M
505 \family default
506  oder den Werkzeugleistenknopf 
507 \begin_inset Graphics
508         filename ../../images/math-mode.png
509         scale 85
510
511 \end_inset
512
513 .
514 \begin_inset Newline newline
515 \end_inset
516
517 Um eine abgesetzte Formel
518 \begin_inset Index idx
519 status collapsed
520
521 \begin_layout Plain Layout
522 Formel ! abgesetzte
523 \end_layout
524
525 \end_inset
526
527  zu erstellen, drückt man 
528 \family sans
529 Strg+Shift+M
530 \family default
531 .
532 \end_layout
533
534 \begin_layout Standard
535 Um eine abgesetzte Formel in eine eingebettete umzuwandeln, setzt man den
536  Cursor in die Formel und drückt 
537 \family sans
538 Strg+Shift+M
539 \family default
540  oder benutzt das Menü 
541 \family sans
542 Bearbeiten\SpecialChar \menuseparator
543 Mathe\SpecialChar \menuseparator
544
545 \begin_inset Newline linebreak
546 \end_inset
547
548 Formelart ändern
549 \family default
550 .
551  Auf die selbe Weise lässt sich eine eingebettete in eine abgesetzte Formel
552  umwandeln.
553 \end_layout
554
555 \begin_layout Standard
556 Um Teile einer eingebetteten Formel in der Größe einer abgesetzten darzustellen,
557  gibt man in die Formel den Befehl 
558 \series bold
559
560 \backslash
561 displaystyle
562 \series default
563
564 \begin_inset Index idx
565 status collapsed
566
567 \begin_layout Plain Layout
568 Befehle ! D ! 
569 \backslash
570 displaystyle
571 \end_layout
572
573 \end_inset
574
575  ein.
576  Es erscheint ein neues blaues Kästchen, in das dann der Formelteil eingegeben
577  wird.
578 \end_layout
579
580 \begin_layout Standard
581 In einer Tabelle dürfen nur eingebettete Formeln verwendet werden.
582 \end_layout
583
584 \begin_layout Standard
585 Die 
586 \family sans
587 Mathe-Werkzeugleiste
588 \family default
589  kann über das Menü 
590 \family sans
591 Ansicht\SpecialChar \menuseparator
592 Werkzeugleisten
593 \family default
594  eingeblendet werden.
595  Wenn dort auf 
596 \begin_inset Quotes eld
597 \end_inset
598
599 Mathe
600 \begin_inset Quotes erd
601 \end_inset
602
603  geklickt wird, wird die Werkzeugleiste permanent am unteren Rand eingeblendet;
604  diese Einstellung wird durch ein Häkchen im Menü 
605 \family sans
606 Werkzeugleisten
607 \family default
608  angezeigt.
609  Wenn nun im Menü 
610 \family sans
611 Werkzeugleisten
612 \family default
613  nochmal auf 
614 \begin_inset Quotes eld
615 \end_inset
616
617 Mathe
618 \begin_inset Quotes erd
619 \end_inset
620
621  geklickt wird, wird die Werkzeugleiste nur angezeigt, wenn sich der Cursor
622  in einer Formel befindet; diese Einstellung wird durch die Umbenennung
623  des Menüeintrags von 
624 \begin_inset Quotes eld
625 \end_inset
626
627 Mathe
628 \begin_inset Quotes erd
629 \end_inset
630
631  zu 
632 \begin_inset Quotes eld
633 \end_inset
634
635 Mathe
636 \begin_inset space ~
637 \end_inset
638
639 (automatisch)
640 \begin_inset Quotes erd
641 \end_inset
642
643  angezeigt.
644 \end_layout
645
646 \begin_layout Standard
647 In den TeX-Modus
648 \begin_inset Index idx
649 status collapsed
650
651 \begin_layout Plain Layout
652 T@TeX-Modus
653 \end_layout
654
655 \end_inset
656
657  gelangt man über den Werkzeugleistenknopf 
658 \begin_inset Graphics
659         filename ../../images/ert-insert.png
660         scale 85
661
662 \end_inset
663
664  oder das Menü 
665 \family sans
666 Einfügen\SpecialChar \menuseparator
667 Te
668 \begin_inset ERT
669 status collapsed
670
671 \begin_layout Plain Layout
672
673 {}
674 \end_layout
675
676 \end_inset
677
678 X
679 \begin_inset space ~
680 \end_inset
681
682 Code
683 \family default
684  (Tastenkürzel 
685 \family sans
686 Strg+L
687 \family default
688 ).
689 \begin_inset Note Note
690 status collapsed
691
692 \begin_layout Plain Layout
693 In LyX gibt es drei 
694 \begin_inset Quotes gld
695 \end_inset
696
697 Eigennamen
698 \begin_inset Quotes grd
699 \end_inset
700
701 , die im Ausdruck mit hoch bzw.
702 \begin_inset space \space{}
703 \end_inset
704
705 tief gestellten Großbuchstaben erscheinen: TeX, LaTeX und LyX
706 \end_layout
707
708 \begin_layout Plain Layout
709 Um zu verhindern, dass diese Wörter als Eigennamen erkannt werden, fügt
710  man ein TeX-Klammerpaar ein.
711 \end_layout
712
713 \end_inset
714
715
716 \end_layout
717
718 \begin_layout Standard
719 In den LaTeX-Vorspann
720 \begin_inset Index idx
721 status collapsed
722
723 \begin_layout Plain Layout
724 L@LaTeX-Vorspann
725 \end_layout
726
727 \end_inset
728
729  gelangt man über das Menü 
730 \family sans
731 Dokument\SpecialChar \menuseparator
732 Einstellungen\SpecialChar \menuseparator
733 LaT
734 \begin_inset ERT
735 status collapsed
736
737 \begin_layout Plain Layout
738
739 {}
740 \end_layout
741
742 \end_inset
743
744 eX-Vorspann
745 \family default
746 .
747 \end_layout
748
749 \begin_layout Standard
750 Zur nachträglichen Bearbeitung von Matrizen, Fallunterscheidungen und mehrzeilig
751 en Formeln kann man die Menüs 
752 \family sans
753 Bearbeiten\SpecialChar \menuseparator
754 Mathe
755 \family default
756  und 
757 \family sans
758 Bearbeiten\SpecialChar \menuseparator
759 Zeilen
760 \begin_inset space \thinspace{}
761 \end_inset
762
763 &
764 \begin_inset space \thinspace{}
765 \end_inset
766
767 Spalten
768 \family default
769  oder die 
770 \family sans
771 Tabellen-Werkzeugleiste
772 \family default
773  verwenden.
774  Beim Vertauschen von Zeilen und Spalten mit Hilfe dieses Menüs wird immer
775  die Spalte bzw.
776 \begin_inset space \space{}
777 \end_inset
778
779 Zeile, in der der Cursor steht, mit der rechts daneben stehenden Spalte
780  bzw.
781 \begin_inset space \space{}
782 \end_inset
783
784 darunter liegenden Zeile vertauscht.
785  Befindet sich der Cursor in der letzten Spalte bzw.
786 \begin_inset space \space{}
787 \end_inset
788
789 Zeile, wird mit der links daneben stehenden Spalte bzw.
790 \begin_inset space \space{}
791 \end_inset
792
793 darüber liegenden Zeile vertauscht.
794 \end_layout
795
796 \begin_layout Standard
797 Zum Schreiben von Text in einer Formel
798 \begin_inset Foot
799 status collapsed
800
801 \begin_layout Plain Layout
802 Bei mehrzeiligen Formeln wird der Befehl 
803 \series bold
804
805 \backslash
806 intertext
807 \series default
808  verwendet, siehe 
809 \begin_inset CommandInset ref
810 LatexCommand ref
811 reference "sub:Text-in-mehrzeiligen"
812
813 \end_inset
814
815 .
816 \end_layout
817
818 \end_inset
819
820  verwendet man den 
821 \emph on
822 mathematischen Textmodus
823 \emph default
824
825 \begin_inset Index idx
826 status collapsed
827
828 \begin_layout Plain Layout
829 Text ! in Formeln
830 \end_layout
831
832 \end_inset
833
834
835 \begin_inset Index idx
836 status collapsed
837
838 \begin_layout Plain Layout
839 Mathematischer Textmodus
840 \end_layout
841
842 \end_inset
843
844 , in den man mit dem Tastenkürzel 
845 \family sans
846 Alt+M
847 \begin_inset space ~
848 \end_inset
849
850 M
851 \family default
852  oder durch Eingabe des Befehls 
853 \series bold
854
855 \backslash
856 text
857 \begin_inset Index idx
858 status collapsed
859
860 \begin_layout Plain Layout
861 Befehle ! T ! 
862 \backslash
863 text
864 \end_layout
865
866 \end_inset
867
868
869 \series default
870  gelangt.
871  Der Text erscheint in LyX schwarz und lässt sich dadurch gut vom Rest der
872  Formel unterscheiden.
873  Im fertigen Dokument erscheint mathematischer Text im Gegensatz zu allen
874  anderen Zeichen einer Formel nicht kursiv.
875 \end_layout
876
877 \begin_layout Subsection*
878 Befehlsschema
879 \end_layout
880
881 \begin_layout Standard
882 Die meisten LaTeX-Befehle für mathematische Konstruktionen besitzen folgendes
883  Schema:
884 \end_layout
885
886 \begin_layout Standard
887
888 \series bold
889
890 \backslash
891 Befehlsname[optionales
892 \series default
893  
894 \series bold
895 Argument]{anzugebendes
896 \series default
897  
898 \series bold
899 Argument}
900 \end_layout
901
902 \begin_layout Standard
903 Ein Befehl muss immer mit einem Backslash 
904 \begin_inset Quotes gld
905 \end_inset
906
907
908 \series bold
909
910 \backslash
911
912 \series default
913
914 \begin_inset Quotes grd
915 \end_inset
916
917  beginnen.
918  Möchte man ein optionales Argument nicht angeben, müssen auch die zugehörigen
919  eckigen Klammern weggelassen werden.
920  Die geschweiften Klammern werden in diesem Dokument als TeX-Klammern
921 \begin_inset Index idx
922 status collapsed
923
924 \begin_layout Plain Layout
925 T@TeX-Klammern
926 \end_layout
927
928 \end_inset
929
930  bezeichnet.
931  Hängt man in einer Formel an Befehlsnamen eine linke geschweifte Klammer
932  an, erzeugt LyX automatisch eine TeX-Klammer.
933  Ansonsten werden sie in Formeln mit dem Befehl 
934 \series bold
935
936 \backslash
937 {
938 \series default
939  erzeugt.
940  TeX-Klammern erscheinen in LyX rot, im Gegensatz zu normalen geschweiften
941  Klammern, die blau erscheinen.
942  Im TeX-Modus sind für TeX-Klammern keine Befehle notwendig.
943  TeX-Klammern erscheinen nicht im Ausdruck.
944 \end_layout
945
946 \begin_layout Standard
947 Werden Befehle ohne Argumente, wie z.
948 \begin_inset space \thinspace{}
949 \end_inset
950
951 B.
952  Symbolbefehle, im TeX-Modus eingegeben, muss auf den Befehl 
953 \emph on
954 immer
955 \emph default
956  ein Leerzeichen folgen um ihn zu beenden.
957  Dieses Leerzeichen erscheint nicht im Ausdruck.
958  Soll das Leerzeichen auch im Ausdruck erscheinen, muss auf den Befehl im
959  normalen Text ein geschütztes Leerzeichen folgen.
960 \end_layout
961
962 \begin_layout Standard
963 Ein geschütztes Leerzeichen gibt man mit 
964 \family sans
965 Strg+Leertaste
966 \family default
967  ein.
968 \end_layout
969
970 \begin_layout Subsection*
971 Zeichenerklärung
972 \end_layout
973
974 \begin_layout Itemize
975 Das Symbol
976 \begin_inset Foot
977 status collapsed
978
979 \begin_layout Plain Layout
980 Dieses sichtbare Leerzeichen erhält man über den Befehl 
981 \series bold
982
983 \backslash
984 textvisiblespace
985 \series default
986
987 \begin_inset Index idx
988 status collapsed
989
990 \begin_layout Plain Layout
991 Befehle ! T ! 
992 \backslash
993 textvisiblespace
994 \end_layout
995
996 \end_inset
997
998 , der im TeX-Modus einzugeben ist.
999 \end_layout
1000
1001 \end_inset
1002
1003  
1004 \begin_inset ERT
1005 status collapsed
1006
1007 \begin_layout Plain Layout
1008
1009
1010 \backslash
1011 leer 
1012 \end_layout
1013
1014 \end_inset
1015
1016
1017 \begin_inset space ~
1018 \end_inset
1019
1020 steht für ein einzugebendes Leerzeichen.
1021 \end_layout
1022
1023 \begin_layout Itemize
1024 Ein Pfeil wie z.
1025 \begin_inset space \thinspace{}
1026 \end_inset
1027
1028 B.
1029  
1030 \begin_inset Formula $\to$
1031 \end_inset
1032
1033  steht für den Druck der jeweiligen Pfeiltaste auf der Tastatur.
1034  Die 
1035 \family sans
1036 Tabulator
1037 \family default
1038 -Taste kann oft anstelle von 
1039 \begin_inset Formula $\to$
1040 \end_inset
1041
1042  und 
1043 \begin_inset Formula $\downarrow$
1044 \end_inset
1045
1046  benutzt werden und 
1047 \family sans
1048 Umschalt+Tabulator
1049 \family default
1050  anstelle von 
1051 \begin_inset Formula $\leftarrow$
1052 \end_inset
1053
1054  und 
1055 \begin_inset Formula $\uparrow$
1056 \end_inset
1057
1058 .
1059 \end_layout
1060
1061 \begin_layout Subsection*
1062 Verfügbare Einheiten
1063 \end_layout
1064
1065 \begin_layout Standard
1066 \align center
1067 \begin_inset Float table
1068 placement H
1069 wide false
1070 sideways false
1071 status open
1072
1073 \begin_layout Plain Layout
1074 \align center
1075 \begin_inset Caption Standard
1076
1077 \begin_layout Plain Layout
1078 \begin_inset CommandInset label
1079 LatexCommand label
1080 name "tab:Verfügbare-Einheiten"
1081
1082 \end_inset
1083
1084 Verfügbare Einheiten
1085 \end_layout
1086
1087 \end_inset
1088
1089
1090 \end_layout
1091
1092 \begin_layout Plain Layout
1093 \align center
1094 \begin_inset Tabular
1095 <lyxtabular version="3" rows="13" columns="2">
1096 <features rotate="0" tabularvalignment="middle">
1097 <column alignment="center" valignment="top">
1098 <column alignment="center" valignment="top">
1099 <row>
1100 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1101 \begin_inset Text
1102
1103 \begin_layout Plain Layout
1104 Einheit
1105 \end_layout
1106
1107 \end_inset
1108 </cell>
1109 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
1110 \begin_inset Text
1111
1112 \begin_layout Plain Layout
1113 Name / Beschreibung
1114 \end_layout
1115
1116 \end_inset
1117 </cell>
1118 </row>
1119 <row>
1120 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1121 \begin_inset Text
1122
1123 \begin_layout Plain Layout
1124 mm
1125 \end_layout
1126
1127 \end_inset
1128 </cell>
1129 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1130 \begin_inset Text
1131
1132 \begin_layout Plain Layout
1133 Millimeter
1134 \end_layout
1135
1136 \end_inset
1137 </cell>
1138 </row>
1139 <row>
1140 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1141 \begin_inset Text
1142
1143 \begin_layout Plain Layout
1144 cm
1145 \end_layout
1146
1147 \end_inset
1148 </cell>
1149 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1150 \begin_inset Text
1151
1152 \begin_layout Plain Layout
1153 Zentimeter
1154 \end_layout
1155
1156 \end_inset
1157 </cell>
1158 </row>
1159 <row>
1160 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1161 \begin_inset Text
1162
1163 \begin_layout Plain Layout
1164 in
1165 \end_layout
1166
1167 \end_inset
1168 </cell>
1169 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1170 \begin_inset Text
1171
1172 \begin_layout Plain Layout
1173 Inch / Zoll (1
1174 \begin_inset space \thinspace{}
1175 \end_inset
1176
1177 in = 2,54
1178 \begin_inset space \thinspace{}
1179 \end_inset
1180
1181 cm)
1182 \end_layout
1183
1184 \end_inset
1185 </cell>
1186 </row>
1187 <row>
1188 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1189 \begin_inset Text
1190
1191 \begin_layout Plain Layout
1192 pt
1193 \end_layout
1194
1195 \end_inset
1196 </cell>
1197 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1198 \begin_inset Text
1199
1200 \begin_layout Plain Layout
1201 Punkt (72,27
1202 \begin_inset space \thinspace{}
1203 \end_inset
1204
1205 pt = 1
1206 \begin_inset space \thinspace{}
1207 \end_inset
1208
1209 in)
1210 \end_layout
1211
1212 \end_inset
1213 </cell>
1214 </row>
1215 <row>
1216 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1217 \begin_inset Text
1218
1219 \begin_layout Plain Layout
1220 pc
1221 \end_layout
1222
1223 \end_inset
1224 </cell>
1225 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1226 \begin_inset Text
1227
1228 \begin_layout Plain Layout
1229 Pica (1
1230 \begin_inset space \thinspace{}
1231 \end_inset
1232
1233 pc = 12
1234 \begin_inset space \thinspace{}
1235 \end_inset
1236
1237 pt)
1238 \end_layout
1239
1240 \end_inset
1241 </cell>
1242 </row>
1243 <row>
1244 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1245 \begin_inset Text
1246
1247 \begin_layout Plain Layout
1248 sp
1249 \end_layout
1250
1251 \end_inset
1252 </cell>
1253 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1254 \begin_inset Text
1255
1256 \begin_layout Plain Layout
1257 skalierter Punkt(65536
1258 \begin_inset space \thinspace{}
1259 \end_inset
1260
1261 sp = 1
1262 \begin_inset space \thinspace{}
1263 \end_inset
1264
1265 pt)
1266 \end_layout
1267
1268 \end_inset
1269 </cell>
1270 </row>
1271 <row>
1272 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1273 \begin_inset Text
1274
1275 \begin_layout Plain Layout
1276 bp
1277 \end_layout
1278
1279 \end_inset
1280 </cell>
1281 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1282 \begin_inset Text
1283
1284 \begin_layout Plain Layout
1285 großer Punkt (72
1286 \begin_inset space \thinspace{}
1287 \end_inset
1288
1289 bp = 1
1290 \begin_inset space \thinspace{}
1291 \end_inset
1292
1293 in)
1294 \end_layout
1295
1296 \end_inset
1297 </cell>
1298 </row>
1299 <row>
1300 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1301 \begin_inset Text
1302
1303 \begin_layout Plain Layout
1304 dd
1305 \end_layout
1306
1307 \end_inset
1308 </cell>
1309 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1310 \begin_inset Text
1311
1312 \begin_layout Plain Layout
1313 Didot (1
1314 \begin_inset space \thinspace{}
1315 \end_inset
1316
1317 dd 
1318 \begin_inset Formula $\approx$
1319 \end_inset
1320
1321  0,376
1322 \begin_inset space \thinspace{}
1323 \end_inset
1324
1325 mm)
1326 \end_layout
1327
1328 \end_inset
1329 </cell>
1330 </row>
1331 <row>
1332 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1333 \begin_inset Text
1334
1335 \begin_layout Plain Layout
1336 cc
1337 \end_layout
1338
1339 \end_inset
1340 </cell>
1341 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1342 \begin_inset Text
1343
1344 \begin_layout Plain Layout
1345 Cicero (1
1346 \begin_inset space \thinspace{}
1347 \end_inset
1348
1349 cc = 12
1350 \begin_inset space \thinspace{}
1351 \end_inset
1352
1353 dd)
1354 \end_layout
1355
1356 \end_inset
1357 </cell>
1358 </row>
1359 <row>
1360 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1361 \begin_inset Text
1362
1363 \begin_layout Plain Layout
1364 ex
1365 \end_layout
1366
1367 \end_inset
1368 </cell>
1369 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1370 \begin_inset Text
1371
1372 \begin_layout Plain Layout
1373 Höhe des Buchstabens 
1374 \emph on
1375 x
1376 \emph default
1377  in der aktuellen Schrift
1378 \end_layout
1379
1380 \end_inset
1381 </cell>
1382 </row>
1383 <row>
1384 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1385 \begin_inset Text
1386
1387 \begin_layout Plain Layout
1388 em
1389 \end_layout
1390
1391 \end_inset
1392 </cell>
1393 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1394 \begin_inset Text
1395
1396 \begin_layout Plain Layout
1397 Breite des Buchstabens 
1398 \emph on
1399 M
1400 \emph default
1401  in der aktuellen Schrift
1402 \end_layout
1403
1404 \end_inset
1405 </cell>
1406 </row>
1407 <row>
1408 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1409 \begin_inset Text
1410
1411 \begin_layout Plain Layout
1412 mu
1413 \end_layout
1414
1415 \end_inset
1416 </cell>
1417 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
1418 \begin_inset Text
1419
1420 \begin_layout Plain Layout
1421 Mathe-Einheit (1
1422 \begin_inset space \thinspace{}
1423 \end_inset
1424
1425 mu = 
1426 \begin_inset Formula $\nicefrac{1}{18}$
1427 \end_inset
1428
1429
1430 \begin_inset space \thinspace{}
1431 \end_inset
1432
1433 em)
1434 \end_layout
1435
1436 \end_inset
1437 </cell>
1438 </row>
1439 </lyxtabular>
1440
1441 \end_inset
1442
1443
1444 \end_layout
1445
1446 \end_inset
1447
1448
1449 \end_layout
1450
1451 \begin_layout Standard
1452 \begin_inset Newpage newpage
1453 \end_inset
1454
1455
1456 \end_layout
1457
1458 \begin_layout Section
1459 Grundlegende Funktionen
1460 \end_layout
1461
1462 \begin_layout Subsection
1463 Exponenten
1464 \begin_inset Index idx
1465 status collapsed
1466
1467 \begin_layout Plain Layout
1468 Exponenten
1469 \end_layout
1470
1471 \end_inset
1472
1473  und Indizes
1474 \begin_inset Index idx
1475 status collapsed
1476
1477 \begin_layout Plain Layout
1478 Indizes
1479 \end_layout
1480
1481 \end_inset
1482
1483
1484 \begin_inset Index idx
1485 status collapsed
1486
1487 \begin_layout Plain Layout
1488 Hochstellen|see
1489 \begin_inset ERT
1490 status collapsed
1491
1492 \begin_layout Plain Layout
1493
1494 {
1495 \end_layout
1496
1497 \end_inset
1498
1499 Exponenten
1500 \begin_inset ERT
1501 status collapsed
1502
1503 \begin_layout Plain Layout
1504
1505 }
1506 \end_layout
1507
1508 \end_inset
1509
1510
1511 \end_layout
1512
1513 \end_inset
1514
1515
1516 \begin_inset Index idx
1517 status collapsed
1518
1519 \begin_layout Plain Layout
1520 Tiefstellen|see
1521 \begin_inset ERT
1522 status collapsed
1523
1524 \begin_layout Plain Layout
1525
1526 {
1527 \end_layout
1528
1529 \end_inset
1530
1531 Indizes
1532 \begin_inset ERT
1533 status collapsed
1534
1535 \begin_layout Plain Layout
1536
1537 }
1538 \end_layout
1539
1540 \end_inset
1541
1542
1543 \end_layout
1544
1545 \end_inset
1546
1547
1548 \end_layout
1549
1550 \begin_layout Standard
1551 Indizes werden mit dem Unterstrich _ oder mit dem Mathe-Werkzeugleistenknopf
1552  
1553 \begin_inset Graphics
1554         filename ../../images/math-subscript.png
1555         scale 85
1556
1557 \end_inset
1558
1559 , Exponenten mit dem Zirkumflexzeichen ^ oder mit dem Mathe-Werkzeugleistenknopf
1560  
1561 \begin_inset Graphics
1562         filename ../../images/math-superscript.png
1563         scale 85
1564
1565 \end_inset
1566
1567  erzeugt.
1568 \end_layout
1569
1570 \begin_layout Standard
1571 \align center
1572 \begin_inset Tabular
1573 <lyxtabular version="3" rows="4" columns="2">
1574 <features rotate="0" tabularvalignment="middle">
1575 <column alignment="center" valignment="top" width="0pt">
1576 <column alignment="center" valignment="top" width="0pt">
1577 <row>
1578 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1579 \begin_inset Text
1580
1581 \begin_layout Plain Layout
1582 Befehl
1583 \end_layout
1584
1585 \end_inset
1586 </cell>
1587 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
1588 \begin_inset Text
1589
1590 \begin_layout Plain Layout
1591 Ergebnis
1592 \begin_inset Note Note
1593 status collapsed
1594
1595 \begin_layout Plain Layout
1596
1597 \series bold
1598
1599 \backslash
1600 raisebox
1601 \series default
1602  dient nur als Abstandhalter.
1603 \end_layout
1604
1605 \end_inset
1606
1607
1608 \end_layout
1609
1610 \end_inset
1611 </cell>
1612 </row>
1613 <row>
1614 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1615 \begin_inset Text
1616
1617 \begin_layout Plain Layout
1618 B_V
1619 \end_layout
1620
1621 \end_inset
1622 </cell>
1623 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1624 \begin_inset Text
1625
1626 \begin_layout Plain Layout
1627 \begin_inset Formula $B_{V}$
1628 \end_inset
1629
1630
1631 \end_layout
1632
1633 \end_inset
1634 </cell>
1635 </row>
1636 <row>
1637 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1638 \begin_inset Text
1639
1640 \begin_layout Plain Layout
1641 B^V
1642 \end_layout
1643
1644 \end_inset
1645 </cell>
1646 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
1647 \begin_inset Text
1648
1649 \begin_layout Plain Layout
1650 \begin_inset Formula $\raisebox{5mm}{}B^{V}$
1651 \end_inset
1652
1653
1654 \end_layout
1655
1656 \end_inset
1657 </cell>
1658 </row>
1659 <row>
1660 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1661 \begin_inset Text
1662
1663 \begin_layout Plain Layout
1664 B^
1665 \begin_inset ERT
1666 status collapsed
1667
1668 \begin_layout Plain Layout
1669
1670
1671 \backslash
1672 leer 
1673 \end_layout
1674
1675 \end_inset
1676
1677 A
1678 \end_layout
1679
1680 \end_inset
1681 </cell>
1682 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
1683 \begin_inset Text
1684
1685 \begin_layout Plain Layout
1686 \begin_inset Formula $\raisebox{5mm}{}B^{A}$
1687 \end_inset
1688
1689
1690 \end_layout
1691
1692 \end_inset
1693 </cell>
1694 </row>
1695 </lyxtabular>
1696
1697 \end_inset
1698
1699
1700 \end_layout
1701
1702 \begin_layout Standard
1703 Da der Zirkumflex ein Akzent ist, werden Selbstlaute akzentuiert statt hochgeste
1704 llt
1705 \begin_inset Foot
1706 status collapsed
1707
1708 \begin_layout Plain Layout
1709 Je nach Tastatureinstellung werden auch andere Buchstaben akzentuiert.
1710 \end_layout
1711
1712 \end_inset
1713
1714 .
1715  Um in diesem Fall Exponenten zu erzeugen, muss nach dem Zirkumflex ein
1716  Leerzeichen eingegeben werden, siehe letztes Beispiel.
1717 \end_layout
1718
1719 \begin_layout Subsection
1720 Brüche
1721 \begin_inset CommandInset label
1722 LatexCommand label
1723 name "sub:Brüche"
1724
1725 \end_inset
1726
1727
1728 \begin_inset Index idx
1729 status collapsed
1730
1731 \begin_layout Plain Layout
1732 Brüche
1733 \end_layout
1734
1735 \end_inset
1736
1737
1738 \end_layout
1739
1740 \begin_layout Standard
1741 Brüche werden mit dem Befehl 
1742 \series bold
1743
1744 \backslash
1745 frac
1746 \series default
1747
1748 \begin_inset Index idx
1749 status collapsed
1750
1751 \begin_layout Plain Layout
1752 Befehle ! F ! 
1753 \backslash
1754 frac
1755 \end_layout
1756
1757 \end_inset
1758
1759  oder mit dem Mathe-Werkzeugleistenknopf 
1760 \begin_inset Graphics
1761         filename ../../images/math/frac.png
1762         scale 50
1763
1764 \end_inset
1765
1766  erstellt.
1767  Die Zeichengröße wird automatisch angepasst, je nachdem, ob sich der Bruch
1768  in einer eingebetteten oder abgesetzten Formel befindet.
1769  Mit dem Mathe-Werkzeugleistenknopf 
1770 \begin_inset Graphics
1771         filename ../../images/math/frac-square.png
1772         scale 85
1773
1774 \end_inset
1775
1776  können verschieden Bruchtypen gewählt werden.
1777 \end_layout
1778
1779 \begin_layout Standard
1780 Mit dem Befehl 
1781 \series bold
1782
1783 \backslash
1784 dfrac
1785 \series default
1786
1787 \begin_inset Index idx
1788 status collapsed
1789
1790 \begin_layout Plain Layout
1791 Befehle ! D ! 
1792 \backslash
1793 dfrac
1794 \end_layout
1795
1796 \end_inset
1797
1798  kann man einen Bruch erzeugen, der immer in der Größe einer abgesetzten
1799  Formel erscheint.
1800  Mit 
1801 \series bold
1802
1803 \backslash
1804 tfrac
1805 \series default
1806
1807 \begin_inset Index idx
1808 status collapsed
1809
1810 \begin_layout Plain Layout
1811 Befehle ! T ! 
1812 \backslash
1813 tfrac
1814 \end_layout
1815
1816 \end_inset
1817
1818  erscheint der Bruch immer in der Größe einer eingebetteten Formel.
1819  Ein Beispiel:
1820 \end_layout
1821
1822 \begin_layout Standard
1823 Eine Zeile mit dem Bruch 
1824 \begin_inset Formula $\frac{1}{2}$
1825 \end_inset
1826
1827 , der mit dem Befehl 
1828 \series bold
1829
1830 \backslash
1831 frac
1832 \series default
1833  erstellt wurde.
1834 \end_layout
1835
1836 \begin_layout Standard
1837 Eine Zeile mit dem Bruch 
1838 \begin_inset Formula $\dfrac{1}{2}$
1839 \end_inset
1840
1841 , der mit dem Befehl 
1842 \series bold
1843
1844 \backslash
1845 dfrac
1846 \series default
1847  erstellt wurde.
1848 \end_layout
1849
1850 \begin_layout Standard
1851 \align center
1852 \begin_inset Tabular
1853 <lyxtabular version="3" rows="4" columns="2">
1854 <features rotate="0" tabularvalignment="middle">
1855 <column alignment="center" valignment="top" width="0pt">
1856 <column alignment="center" valignment="top" width="0pt">
1857 <row>
1858 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1859 \begin_inset Text
1860
1861 \begin_layout Plain Layout
1862 Befehl
1863 \end_layout
1864
1865 \end_inset
1866 </cell>
1867 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
1868 \begin_inset Text
1869
1870 \begin_layout Plain Layout
1871 Ergebnis
1872 \begin_inset Note Note
1873 status collapsed
1874
1875 \begin_layout Plain Layout
1876
1877 \series bold
1878
1879 \backslash
1880 raisebox
1881 \series default
1882  dient nur als Abstandhalter.
1883 \end_layout
1884
1885 \end_inset
1886
1887
1888 \end_layout
1889
1890 \end_inset
1891 </cell>
1892 </row>
1893 <row>
1894 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1895 \begin_inset Text
1896
1897 \begin_layout Plain Layout
1898
1899 \backslash
1900 frac
1901 \begin_inset ERT
1902 status collapsed
1903
1904 \begin_layout Plain Layout
1905
1906
1907 \backslash
1908 leer 
1909 \end_layout
1910
1911 \end_inset
1912
1913 A
1914 \begin_inset Formula $\downarrow$
1915 \end_inset
1916
1917 B
1918 \end_layout
1919
1920 \end_inset
1921 </cell>
1922 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1923 \begin_inset Text
1924
1925 \begin_layout Plain Layout
1926 \begin_inset Formula $\raisebox{4.5mm}{}\frac{A}{B}\raisebox{-2.5mm}{}$
1927 \end_inset
1928
1929
1930 \end_layout
1931
1932 \end_inset
1933 </cell>
1934 </row>
1935 <row>
1936 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1937 \begin_inset Text
1938
1939 \begin_layout Plain Layout
1940
1941 \backslash
1942 dfrac
1943 \begin_inset ERT
1944 status collapsed
1945
1946 \begin_layout Plain Layout
1947
1948
1949 \backslash
1950 leer 
1951 \end_layout
1952
1953 \end_inset
1954
1955 A
1956 \begin_inset Formula $\downarrow$
1957 \end_inset
1958
1959 B
1960 \end_layout
1961
1962 \end_inset
1963 </cell>
1964 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1965 \begin_inset Text
1966
1967 \begin_layout Plain Layout
1968 \begin_inset Formula $\raisebox{7mm}{}\dfrac{A}{B}\raisebox{-4mm}{}$
1969 \end_inset
1970
1971
1972 \end_layout
1973
1974 \end_inset
1975 </cell>
1976 </row>
1977 <row>
1978 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1979 \begin_inset Text
1980
1981 \begin_layout Plain Layout
1982
1983 \backslash
1984 dfrac
1985 \begin_inset ERT
1986 status collapsed
1987
1988 \begin_layout Plain Layout
1989
1990
1991 \backslash
1992 leer 
1993 \end_layout
1994
1995 \end_inset
1996
1997 e^
1998 \backslash
1999 frac
2000 \begin_inset ERT
2001 status collapsed
2002
2003 \begin_layout Plain Layout
2004
2005
2006 \backslash
2007 leer 
2008 \end_layout
2009
2010 \end_inset
2011
2012 1
2013 \begin_inset Formula $\downarrow$
2014 \end_inset
2015
2016 2
2017 \begin_inset Formula $\downarrow\downarrow$
2018 \end_inset
2019
2020 3
2021 \end_layout
2022
2023 \end_inset
2024 </cell>
2025 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2026 \begin_inset Text
2027
2028 \begin_layout Plain Layout
2029 \begin_inset Formula $\raisebox{8mm}{}\dfrac{e^{\frac{1}{2}}}{3}\raisebox{-4mm}{}$
2030 \end_inset
2031
2032
2033 \end_layout
2034
2035 \end_inset
2036 </cell>
2037 </row>
2038 </lyxtabular>
2039
2040 \end_inset
2041
2042
2043 \end_layout
2044
2045 \begin_layout Standard
2046 \begin_inset VSpace bigskip
2047 \end_inset
2048
2049
2050 \begin_inset Newpage newpage
2051 \end_inset
2052
2053 Für Mehrfachbrüche gibt es den Befehl 
2054 \series bold
2055
2056 \backslash
2057 cfrac
2058 \series default
2059
2060 \begin_inset Index idx
2061 status collapsed
2062
2063 \begin_layout Plain Layout
2064 Befehle ! C ! 
2065 \backslash
2066 cfrac
2067 \end_layout
2068
2069 \end_inset
2070
2071 .
2072  Dazu ein Beispiel:
2073 \begin_inset VSpace -3mm
2074 \end_inset
2075
2076
2077 \end_layout
2078
2079 \begin_layout Standard
2080 \begin_inset Formula 
2081 \begin{align*}
2082 \textrm{mit \textbf{\textbackslash frac} erstellt} &  & \textrm{mit \textbf{\textbackslash cfrac} erstellt}\\
2083 \frac{A}{B+\frac{C+\frac{E}{F}}{D}} &  & \cfrac{A}{B+\cfrac{C+\cfrac{E}{F}}{D}}
2084 \end{align*}
2085
2086 \end_inset
2087
2088
2089 \end_layout
2090
2091 \begin_layout Standard
2092 Der Befehl für obiges Beispiel lautet:
2093 \end_layout
2094
2095 \begin_layout Standard
2096
2097 \series bold
2098
2099 \backslash
2100 cfrac
2101 \begin_inset ERT
2102 status collapsed
2103
2104 \begin_layout Plain Layout
2105
2106
2107 \backslash
2108 leer 
2109 \end_layout
2110
2111 \end_inset
2112
2113 A
2114 \begin_inset Formula $\downarrow$
2115 \end_inset
2116
2117 B+
2118 \backslash
2119 cfrac
2120 \begin_inset ERT
2121 status collapsed
2122
2123 \begin_layout Plain Layout
2124
2125
2126 \backslash
2127 leer 
2128 \end_layout
2129
2130 \end_inset
2131
2132 C+
2133 \backslash
2134 cfrac
2135 \begin_inset ERT
2136 status collapsed
2137
2138 \begin_layout Plain Layout
2139
2140
2141 \backslash
2142 leer 
2143 \end_layout
2144
2145 \end_inset
2146
2147 E
2148 \begin_inset Formula $\downarrow$
2149 \end_inset
2150
2151 F
2152 \begin_inset Formula $\downarrow$
2153 \end_inset
2154
2155 D
2156 \end_layout
2157
2158 \begin_layout Standard
2159 \begin_inset VSpace medskip
2160 \end_inset
2161
2162
2163 \end_layout
2164
2165 \begin_layout Standard
2166
2167 \series bold
2168
2169 \backslash
2170 cfrac
2171 \series default
2172  bewirkt, dass der Bruch immer in der Größe einer abgesetzten Formel erscheint,
2173  auch wenn er selbst Teil eines Bruches ist.
2174 \end_layout
2175
2176 \begin_layout Standard
2177 Es ist möglich die Ausrichtung des Zählers einzustellen.
2178  Der Befehl 
2179 \series bold
2180
2181 \backslash
2182 cfracleft
2183 \series default
2184  richtet ihn links, der Befehl 
2185 \series bold
2186
2187 \backslash
2188 cfracright
2189 \series default
2190  rechts aus.
2191  
2192 \series bold
2193
2194 \backslash
2195 cfrac
2196 \series default
2197  zentriert den Zähler.
2198  Diese Brüche demonstrieren die verschiedenen Ausrichtungen:
2199 \end_layout
2200
2201 \begin_layout Standard
2202
2203 \series bold
2204 \begin_inset Formula 
2205 \[
2206 \cfrac[l]{A}{B+C}\,,\,\cfrac{A}{B+C}\,,\,\cfrac[r]{A}{B+C}
2207 \]
2208
2209 \end_inset
2210
2211
2212 \end_layout
2213
2214 \begin_layout Standard
2215 \begin_inset Note Greyedout
2216 status open
2217
2218 \begin_layout Plain Layout
2219
2220 \series bold
2221 Achtung:
2222 \series default
2223  
2224 \series bold
2225
2226 \backslash
2227 cfracleft
2228 \series default
2229  und
2230 \series bold
2231  
2232 \backslash
2233 cfracright
2234 \series default
2235  sind keine echten LaTeX-Befehle, sondern stellen den Befehl 
2236 \series bold
2237
2238 \backslash
2239 cfrac[Ausrichtung]{Zähler}{Nenner}
2240 \series default
2241  dar.
2242  Daher kann man sie nicht im TeX-Code benutzen.
2243 \end_layout
2244
2245 \end_inset
2246
2247
2248 \end_layout
2249
2250 \begin_layout Standard
2251 \begin_inset VSpace medskip
2252 \end_inset
2253
2254 Oftmals ist es am günstigsten 
2255 \series bold
2256
2257 \backslash
2258 cfrac
2259 \series default
2260  und 
2261 \series bold
2262
2263 \backslash
2264 frac
2265 \series default
2266  zu kombinieren:
2267 \begin_inset Formula 
2268 \[
2269 \cfrac{A}{B+\cfrac{C+\frac{E}{F}}{D}}
2270 \]
2271
2272 \end_inset
2273
2274
2275 \end_layout
2276
2277 \begin_layout Standard
2278 Um Brüche mit schrägem Bruchstrich zu erzeugen, kann der Befehl 
2279 \series bold
2280
2281 \backslash
2282 nicefrac
2283 \series default
2284
2285 \begin_inset Index idx
2286 status collapsed
2287
2288 \begin_layout Plain Layout
2289 Befehle ! N ! 
2290 \backslash
2291 nicefrac
2292 \end_layout
2293
2294 \end_inset
2295
2296
2297 \begin_inset Formula $\nicefrac{5}{31}$
2298 \end_inset
2299
2300  oder 
2301 \series bold
2302
2303 \backslash
2304 unitfrac
2305 \series default
2306
2307 \begin_inset Index idx
2308 status collapsed
2309
2310 \begin_layout Plain Layout
2311 Befehle! U ! 
2312 \backslash
2313 unitfrac
2314 \end_layout
2315
2316 \end_inset
2317
2318
2319 \begin_inset Formula $\unitfrac{5}{31}$
2320 \end_inset
2321
2322  benutzt werden.
2323  Des Weiteren gibt es den Befehl 
2324 \series bold
2325
2326 \backslash
2327 unitfracthree
2328 \series default
2329  mit dem man einen Bruch in Kombination mit einer Zahl setzen kann: 
2330 \begin_inset Formula $\unitfrac[2]{1}{3}$
2331 \end_inset
2332
2333
2334 \end_layout
2335
2336 \begin_layout Standard
2337 \begin_inset Note Greyedout
2338 status open
2339
2340 \begin_layout Plain Layout
2341
2342 \series bold
2343 Achtung:
2344 \series default
2345  
2346 \series bold
2347
2348 \backslash
2349 unitfracthree
2350 \series default
2351  ist kein echter LaTeX-Befehl, sondern der Befehl
2352 \begin_inset Newline newline
2353 \end_inset
2354
2355
2356 \series bold
2357
2358 \backslash
2359 unitfrac[Zahl]{Zähler}{Nenner}
2360 \series default
2361  .
2362  Daher kann man ihn nicht im TeX-Code benutzen.
2363 \end_layout
2364
2365 \end_inset
2366
2367
2368 \end_layout
2369
2370 \begin_layout Standard
2371 Wie man eigene Brüche definiert, um die Bruchstrichdicke zu ändern, ist
2372  in 
2373 \begin_inset CommandInset ref
2374 LatexCommand ref
2375 reference "sub:Selbstdefinierte-Brüche"
2376
2377 \end_inset
2378
2379  erklärt.
2380 \end_layout
2381
2382 \begin_layout Standard
2383 \begin_inset Newpage newpage
2384 \end_inset
2385
2386
2387 \end_layout
2388
2389 \begin_layout Subsection
2390 Wurzeln
2391 \begin_inset Index idx
2392 status collapsed
2393
2394 \begin_layout Plain Layout
2395 Wurzeln
2396 \end_layout
2397
2398 \end_inset
2399
2400
2401 \end_layout
2402
2403 \begin_layout Standard
2404 Quadratwurzeln werden mit 
2405 \series bold
2406
2407 \backslash
2408 sqrt
2409 \series default
2410
2411 \begin_inset Index idx
2412 status collapsed
2413
2414 \begin_layout Plain Layout
2415 Befehle ! S ! 
2416 \backslash
2417 sqrt
2418 \end_layout
2419
2420 \end_inset
2421
2422  oder dem Mathe-Werkzeugleistenknopf 
2423 \begin_inset Graphics
2424         filename ../../images/math/sqrt.png
2425         scale 85
2426
2427 \end_inset
2428
2429  gesetzt, alle anderen Wurzeln mit dem Befehl 
2430 \series bold
2431
2432 \backslash
2433 root
2434 \series default
2435
2436 \begin_inset Index idx
2437 status collapsed
2438
2439 \begin_layout Plain Layout
2440 Befehle ! R ! 
2441 \backslash
2442 root
2443 \end_layout
2444
2445 \end_inset
2446
2447  oder dem Mathe-Werkzeugleistenknopf 
2448 \begin_inset Graphics
2449         filename ../../images/math/root.png
2450         scale 85
2451
2452 \end_inset
2453
2454 .
2455 \end_layout
2456
2457 \begin_layout Standard
2458 \align center
2459 \begin_inset Tabular
2460 <lyxtabular version="3" rows="3" columns="2">
2461 <features rotate="0" tabularvalignment="middle">
2462 <column alignment="center" valignment="top" width="0pt">
2463 <column alignment="center" valignment="top" width="0pt">
2464 <row>
2465 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
2466 \begin_inset Text
2467
2468 \begin_layout Plain Layout
2469 Befehl
2470 \end_layout
2471
2472 \end_inset
2473 </cell>
2474 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2475 \begin_inset Text
2476
2477 \begin_layout Plain Layout
2478 Ergebnis
2479 \begin_inset Note Note
2480 status collapsed
2481
2482 \begin_layout Plain Layout
2483
2484 \series bold
2485
2486 \backslash
2487 raisebox
2488 \series default
2489  dient nur als Abstandhalter.
2490 \end_layout
2491
2492 \end_inset
2493
2494
2495 \end_layout
2496
2497 \end_inset
2498 </cell>
2499 </row>
2500 <row>
2501 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
2502 \begin_inset Text
2503
2504 \begin_layout Plain Layout
2505
2506 \backslash
2507 sqrt
2508 \begin_inset ERT
2509 status collapsed
2510
2511 \begin_layout Plain Layout
2512
2513
2514 \backslash
2515 leer 
2516 \end_layout
2517
2518 \end_inset
2519
2520 A-B
2521 \end_layout
2522
2523 \end_inset
2524 </cell>
2525 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2526 \begin_inset Text
2527
2528 \begin_layout Plain Layout
2529 \begin_inset Formula $\raisebox{4.5mm}{}\sqrt{A-B}$
2530 \end_inset
2531
2532
2533 \end_layout
2534
2535 \end_inset
2536 </cell>
2537 </row>
2538 <row>
2539 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
2540 \begin_inset Text
2541
2542 \begin_layout Plain Layout
2543
2544 \backslash
2545 root
2546 \begin_inset ERT
2547 status collapsed
2548
2549 \begin_layout Plain Layout
2550
2551
2552 \backslash
2553 leer 
2554 \end_layout
2555
2556 \end_inset
2557
2558 3
2559 \begin_inset Formula $\downarrow$
2560 \end_inset
2561
2562 A-B
2563 \end_layout
2564
2565 \end_inset
2566 </cell>
2567 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
2568 \begin_inset Text
2569
2570 \begin_layout Plain Layout
2571 \begin_inset Formula $\raisebox{4.5mm}{}\sqrt[3]{A-B}$
2572 \end_inset
2573
2574
2575 \end_layout
2576
2577 \end_inset
2578 </cell>
2579 </row>
2580 </lyxtabular>
2581
2582 \end_inset
2583
2584
2585 \end_layout
2586
2587 \begin_layout Standard
2588 Eine Quadratwurzel kann man auch mit 
2589 \series bold
2590
2591 \backslash
2592 root
2593 \series default
2594  erstellen, indem man das Feld über der Wurzel frei lässt.
2595 \end_layout
2596
2597 \begin_layout Standard
2598 Bei manchen Indizes ist der Abstand zur Wurzel zu gering, wie bei dieser
2599  Formel: 
2600 \begin_inset Formula $\sqrt[\beta]{B}$
2601 \end_inset
2602
2603
2604 \begin_inset Newline newline
2605 \end_inset
2606
2607 Das 
2608 \begin_inset Formula $\beta$
2609 \end_inset
2610
2611  berührt die Wurzel.
2612  Um dies zu verhindern, verwendet man die Befehle 
2613 \series bold
2614
2615 \backslash
2616 leftroot
2617 \series default
2618
2619 \begin_inset Index idx
2620 status collapsed
2621
2622 \begin_layout Plain Layout
2623 Befehle ! L ! 
2624 \backslash
2625 leftroot
2626 \end_layout
2627
2628 \end_inset
2629
2630  und 
2631 \series bold
2632
2633 \backslash
2634 uproot
2635 \series default
2636
2637 \begin_inset Index idx
2638 status collapsed
2639
2640 \begin_layout Plain Layout
2641 Befehle ! U ! 
2642 \backslash
2643 uproot
2644 \end_layout
2645
2646 \end_inset
2647
2648 , die folgendes Schema besitzen:
2649 \end_layout
2650
2651 \begin_layout Standard
2652
2653 \series bold
2654
2655 \backslash
2656 leftroot{Abstand}
2657 \series default
2658  bzw.
2659 \begin_inset space \space{}
2660 \end_inset
2661
2662
2663 \series bold
2664
2665 \backslash
2666 uproot{Abstand}
2667 \end_layout
2668
2669 \begin_layout Standard
2670 Abstand ist die Anzahl der Big Points (Einheit bp; 
2671 \begin_inset Formula $\mathrm{72\, bp=1\, inch}$
2672 \end_inset
2673
2674 ), um die der Index nach links bzw.
2675 \begin_inset space \space{}
2676 \end_inset
2677
2678 nach oben verschoben werden soll.
2679  Die Befehle werden in den Index geschrieben.
2680  So ergibt der Befehl
2681 \begin_inset Newline newline
2682 \end_inset
2683
2684
2685 \series bold
2686
2687 \backslash
2688 root
2689 \backslash
2690 leftroot{-1
2691 \begin_inset Formula $\to$
2692 \end_inset
2693
2694
2695 \backslash
2696 uproot{2
2697 \begin_inset Formula $\to$
2698 \end_inset
2699
2700
2701 \backslash
2702 beta
2703 \begin_inset ERT
2704 status collapsed
2705
2706 \begin_layout Plain Layout
2707
2708
2709 \backslash
2710 leer 
2711 \end_layout
2712
2713 \end_inset
2714
2715
2716 \begin_inset Formula $\to$
2717 \end_inset
2718
2719 B
2720 \begin_inset Newline newline
2721 \end_inset
2722
2723
2724 \series default
2725 eine korrekt gesetzte Formel: 
2726 \begin_inset Formula $\sqrt[\leftroot{-1}\uproot{2}\beta]{B}$
2727 \end_inset
2728
2729
2730 \end_layout
2731
2732 \begin_layout Subsection
2733 Binomialkoeffizienten
2734 \begin_inset Index idx
2735 status collapsed
2736
2737 \begin_layout Plain Layout
2738 Binomialkoeffizienten
2739 \end_layout
2740
2741 \end_inset
2742
2743
2744 \end_layout
2745
2746 \begin_layout Standard
2747 Binomialkoeffizienten können mit dem Befehl 
2748 \series bold
2749
2750 \backslash
2751 binom
2752 \series default
2753
2754 \begin_inset Index idx
2755 status collapsed
2756
2757 \begin_layout Plain Layout
2758 Befehle ! B ! 
2759 \backslash
2760 binom
2761 \end_layout
2762
2763 \end_inset
2764
2765  oder über das Untermenü des Mathe-Werkzeugleistenknopfs 
2766 \begin_inset Graphics
2767         filename ../../images/math/frac-square.png
2768         scale 85
2769
2770 \end_inset
2771
2772 eingefügt werden.
2773  Analog zu Brüchen (
2774 \series bold
2775
2776 \backslash
2777 frac
2778 \series default
2779 ) gibt es außer 
2780 \series bold
2781
2782 \backslash
2783 binom
2784 \series default
2785  noch die Befehle 
2786 \series bold
2787
2788 \backslash
2789 dbinom
2790 \series default
2791
2792 \begin_inset Index idx
2793 status collapsed
2794
2795 \begin_layout Plain Layout
2796 Befehle ! D ! 
2797 \backslash
2798 dbinom
2799 \end_layout
2800
2801 \end_inset
2802
2803  und 
2804 \series bold
2805
2806 \backslash
2807 tbinom
2808 \series default
2809
2810 \begin_inset Index idx
2811 status collapsed
2812
2813 \begin_layout Plain Layout
2814 Befehle ! T ! 
2815 \backslash
2816 tbinom
2817 \end_layout
2818
2819 \end_inset
2820
2821 .
2822  Für andere Klammern um Binomialkoeffizienten gibt es die Befehle 
2823 \series bold
2824
2825 \backslash
2826 brace
2827 \series default
2828
2829 \begin_inset Index idx
2830 status collapsed
2831
2832 \begin_layout Plain Layout
2833 Befehle ! B ! 
2834 \backslash
2835 brace
2836 \end_layout
2837
2838 \end_inset
2839
2840  und 
2841 \series bold
2842
2843 \backslash
2844 brack
2845 \series default
2846
2847 \begin_inset Index idx
2848 status collapsed
2849
2850 \begin_layout Plain Layout
2851 Befehle ! B ! 
2852 \backslash
2853 brack
2854 \end_layout
2855
2856 \end_inset
2857
2858 .
2859 \end_layout
2860
2861 \begin_layout Standard
2862 \align center
2863 \begin_inset Tabular
2864 <lyxtabular version="3" rows="6" columns="2">
2865 <features rotate="0" tabularvalignment="middle">
2866 <column alignment="center" valignment="top" width="0pt">
2867 <column alignment="center" valignment="top" width="0pt">
2868 <row>
2869 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2870 \begin_inset Text
2871
2872 \begin_layout Plain Layout
2873 Befehl
2874 \end_layout
2875
2876 \end_inset
2877 </cell>
2878 <cell alignment="center" valignment="top" topline="true" bottomline="true" rightline="true" usebox="none">
2879 \begin_inset Text
2880
2881 \begin_layout Plain Layout
2882 Ergebnis
2883 \begin_inset Note Note
2884 status collapsed
2885
2886 \begin_layout Plain Layout
2887
2888 \series bold
2889
2890 \backslash
2891 raisebox
2892 \series default
2893  dient nur als Abstandhalter.
2894 \end_layout
2895
2896 \end_inset
2897
2898
2899 \end_layout
2900
2901 \end_inset
2902 </cell>
2903 </row>
2904 <row>
2905 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
2906 \begin_inset Text
2907
2908 \begin_layout Plain Layout
2909
2910 \backslash
2911 binom
2912 \begin_inset ERT
2913 status collapsed
2914
2915 \begin_layout Plain Layout
2916
2917
2918 \backslash
2919 leer 
2920 \end_layout
2921
2922 \end_inset
2923
2924 A
2925 \begin_inset Formula $\downarrow$
2926 \end_inset
2927
2928 B
2929 \end_layout
2930
2931 \end_inset
2932 </cell>
2933 <cell alignment="center" valignment="top" bottomline="true" rightline="true" usebox="none">
2934 \begin_inset Text
2935
2936 \begin_layout Plain Layout
2937 \begin_inset Formula $\raisebox{5mm}{}\binom{A}{B}\raisebox{-2.5mm}{}$
2938 \end_inset
2939
2940
2941 \end_layout
2942
2943 \end_inset
2944 </cell>
2945 </row>
2946 <row>
2947 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
2948 \begin_inset Text
2949
2950 \begin_layout Plain Layout
2951
2952 \backslash
2953 dbinom
2954 \begin_inset ERT
2955 status collapsed
2956
2957 \begin_layout Plain Layout
2958
2959
2960 \backslash
2961 leer 
2962 \end_layout
2963
2964 \end_inset
2965
2966 A
2967 \begin_inset Formula $\downarrow$
2968 \end_inset
2969
2970 B
2971 \end_layout
2972
2973 \end_inset
2974 </cell>
2975 <cell alignment="center" valignment="top" bottomline="true" rightline="true" usebox="none">
2976 \begin_inset Text
2977
2978 \begin_layout Plain Layout
2979 \begin_inset Formula $\raisebox{5mm}{}\dbinom{A}{B}\raisebox{-2.5mm}{}$
2980 \end_inset
2981
2982
2983 \end_layout
2984
2985 \end_inset
2986 </cell>
2987 </row>
2988 <row>
2989 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
2990 \begin_inset Text
2991
2992 \begin_layout Plain Layout
2993
2994 \backslash
2995 tbinom
2996 \begin_inset ERT
2997 status collapsed
2998
2999 \begin_layout Plain Layout
3000
3001
3002 \backslash
3003 leer 
3004 \end_layout
3005
3006 \end_inset
3007
3008 A
3009 \begin_inset Formula $\downarrow$
3010 \end_inset
3011
3012 B
3013 \end_layout
3014
3015 \end_inset
3016 </cell>
3017 <cell alignment="center" valignment="top" bottomline="true" rightline="true" usebox="none">
3018 \begin_inset Text
3019
3020 \begin_layout Plain Layout
3021 \begin_inset Formula $\raisebox{5mm}{}\tbinom{A}{B}\raisebox{-2.5mm}{}$
3022 \end_inset
3023
3024
3025 \end_layout
3026
3027 \end_inset
3028 </cell>
3029 </row>
3030 <row>
3031 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
3032 \begin_inset Text
3033
3034 \begin_layout Plain Layout
3035
3036 \backslash
3037 brack
3038 \begin_inset ERT
3039 status collapsed
3040
3041 \begin_layout Plain Layout
3042
3043
3044 \backslash
3045 leer 
3046 \end_layout
3047
3048 \end_inset
3049
3050 A
3051 \begin_inset Formula $\downarrow$
3052 \end_inset
3053
3054 B
3055 \end_layout
3056
3057 \end_inset
3058 </cell>
3059 <cell alignment="center" valignment="top" topline="true" bottomline="true" rightline="true" usebox="none">
3060 \begin_inset Text
3061
3062 \begin_layout Plain Layout
3063 \begin_inset Formula $\raisebox{5mm}{}{A \brack B}\raisebox{-2.5mm}{}$
3064 \end_inset
3065
3066
3067 \end_layout
3068
3069 \end_inset
3070 </cell>
3071 </row>
3072 <row>
3073 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
3074 \begin_inset Text
3075
3076 \begin_layout Plain Layout
3077
3078 \backslash
3079 brace
3080 \begin_inset ERT
3081 status collapsed
3082
3083 \begin_layout Plain Layout
3084
3085
3086 \backslash
3087 leer 
3088 \end_layout
3089
3090 \end_inset
3091
3092 A
3093 \begin_inset Formula $\downarrow$
3094 \end_inset
3095
3096 B
3097 \end_layout
3098
3099 \end_inset
3100 </cell>
3101 <cell alignment="center" valignment="top" bottomline="true" rightline="true" usebox="none">
3102 \begin_inset Text
3103
3104 \begin_layout Plain Layout
3105 \begin_inset Formula $\raisebox{5mm}{}{A \brace B}\raisebox{-2.5mm}{}$
3106 \end_inset
3107
3108
3109 \end_layout
3110
3111 \end_inset
3112 </cell>
3113 </row>
3114 </lyxtabular>
3115
3116 \end_inset
3117
3118
3119 \end_layout
3120
3121 \begin_layout Subsection
3122 Fallunterscheidungen
3123 \begin_inset Index idx
3124 status collapsed
3125
3126 \begin_layout Plain Layout
3127 Fallunterscheidungen
3128 \end_layout
3129
3130 \end_inset
3131
3132
3133 \end_layout
3134
3135 \begin_layout Standard
3136 \align center
3137 \begin_inset Tabular
3138 <lyxtabular version="3" rows="3" columns="2">
3139 <features rotate="0" tabularvalignment="middle">
3140 <column alignment="center" valignment="top" width="0pt">
3141 <column alignment="center" valignment="top" width="0pt">
3142 <row>
3143 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
3144 \begin_inset Text
3145
3146 \begin_layout Plain Layout
3147 Befehl
3148 \end_layout
3149
3150 \end_inset
3151 </cell>
3152 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
3153 \begin_inset Text
3154
3155 \begin_layout Plain Layout
3156 Ergebnis
3157 \end_layout
3158
3159 \end_inset
3160 </cell>
3161 </row>
3162 <row>
3163 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3164 \begin_inset Text
3165
3166 \begin_layout Plain Layout
3167
3168 \backslash
3169 cases
3170 \begin_inset ERT
3171 status collapsed
3172
3173 \begin_layout Plain Layout
3174
3175
3176 \backslash
3177 leer 
3178 \end_layout
3179
3180 \end_inset
3181
3182 A
3183 \begin_inset Formula $\to$
3184 \end_inset
3185
3186 B>0
3187 \begin_inset Index idx
3188 status collapsed
3189
3190 \begin_layout Plain Layout
3191 Befehle ! C ! 
3192 \backslash
3193 cases
3194 \end_layout
3195
3196 \end_inset
3197
3198
3199 \end_layout
3200
3201 \end_inset
3202 </cell>
3203 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3204 \begin_inset Text
3205
3206 \begin_layout Plain Layout
3207 \begin_inset Formula $\begin{cases}
3208 A & B>0\end{cases}$
3209 \end_inset
3210
3211
3212 \end_layout
3213
3214 \end_inset
3215 </cell>
3216 </row>
3217 <row>
3218 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
3219 \begin_inset Text
3220
3221 \begin_layout Plain Layout
3222
3223 \backslash
3224 cases
3225 \begin_inset ERT
3226 status collapsed
3227
3228 \begin_layout Plain Layout
3229
3230
3231 \backslash
3232 leer 
3233 \end_layout
3234
3235 \end_inset
3236
3237 Strg+Enter
3238 \end_layout
3239
3240 \end_inset
3241 </cell>
3242 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
3243 \begin_inset Text
3244
3245 \begin_layout Plain Layout
3246 \begin_inset Formula $\begin{cases}
3247 A & \textrm{für }x>0\\
3248 B & \textrm{für }x=0
3249 \end{cases}$
3250 \end_inset
3251
3252
3253 \end_layout
3254
3255 \end_inset
3256 </cell>
3257 </row>
3258 </lyxtabular>
3259
3260 \end_inset
3261
3262
3263 \end_layout
3264
3265 \begin_layout Standard
3266 Nach der Eingabe von 
3267 \series bold
3268
3269 \backslash
3270 cases
3271 \series default
3272  oder der Benutzung des Mathe-Werkzeugleistenknopfs 
3273 \begin_inset Graphics
3274         filename ../../images/math/cases.png
3275         scale 85
3276
3277 \end_inset
3278
3279  können mit 
3280 \family sans
3281 Strg+Enter
3282 \family default
3283  oder dem Tabellen-Werkzeugleistenknopf 
3284 \begin_inset Graphics
3285         filename ../../images/tabular-feature_append-row.png
3286         scale 85
3287
3288 \end_inset
3289
3290  neue Zeilen erstellt werden.
3291 \begin_inset Foot
3292 status collapsed
3293
3294 \begin_layout Plain Layout
3295 Umlaute in Formeln, wie in obiger Tabelle, sind in 
3296 \begin_inset CommandInset ref
3297 LatexCommand ref
3298 reference "sub:Akzente-für-ein"
3299
3300 \end_inset
3301
3302  beschrieben.
3303 \end_layout
3304
3305 \end_inset
3306
3307
3308 \end_layout
3309
3310 \begin_layout Standard
3311 Der Befehl 
3312 \series bold
3313
3314 \backslash
3315 cases
3316 \series default
3317  ist auch über das Menü 
3318 \family sans
3319 Einfügen\SpecialChar \menuseparator
3320 Mathe\SpecialChar \menuseparator
3321 Cases-Umgebung
3322 \family default
3323  verfügbar.
3324 \end_layout
3325
3326 \begin_layout Subsection
3327 Verneinungen
3328 \begin_inset Index idx
3329 status collapsed
3330
3331 \begin_layout Plain Layout
3332 Verneinungen
3333 \end_layout
3334
3335 \end_inset
3336
3337
3338 \end_layout
3339
3340 \begin_layout Standard
3341 Durch die Eingabe von 
3342 \series bold
3343
3344 \backslash
3345 not
3346 \series default
3347
3348 \begin_inset Index idx
3349 status collapsed
3350
3351 \begin_layout Plain Layout
3352 Befehle ! N ! 
3353 \backslash
3354 not
3355 \end_layout
3356
3357 \end_inset
3358
3359  kann jedes beliebige Zeichen durchgestrichen dargestellt werden.
3360  Die Zeichen werden quasi mit einem Schrägstrich akzentuiert.
3361 \end_layout
3362
3363 \begin_layout Standard
3364 \align center
3365 \begin_inset Tabular
3366 <lyxtabular version="3" rows="4" columns="2">
3367 <features rotate="0" tabularvalignment="middle">
3368 <column alignment="center" valignment="top" width="0pt">
3369 <column alignment="center" valignment="top" width="0pt">
3370 <row>
3371 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
3372 \begin_inset Text
3373
3374 \begin_layout Plain Layout
3375 Befehl
3376 \end_layout
3377
3378 \end_inset
3379 </cell>
3380 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
3381 \begin_inset Text
3382
3383 \begin_layout Plain Layout
3384 Ergebnis
3385 \end_layout
3386
3387 \end_inset
3388 </cell>
3389 </row>
3390 <row>
3391 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3392 \begin_inset Text
3393
3394 \begin_layout Plain Layout
3395
3396 \backslash
3397 not=
3398 \end_layout
3399
3400 \end_inset
3401 </cell>
3402 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3403 \begin_inset Text
3404
3405 \begin_layout Plain Layout
3406 \begin_inset Formula $\not=$
3407 \end_inset
3408
3409
3410 \end_layout
3411
3412 \end_inset
3413 </cell>
3414 </row>
3415 <row>
3416 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
3417 \begin_inset Text
3418
3419 \begin_layout Plain Layout
3420
3421 \backslash
3422 not 
3423 \backslash
3424 le
3425 \end_layout
3426
3427 \end_inset
3428 </cell>
3429 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
3430 \begin_inset Text
3431
3432 \begin_layout Plain Layout
3433 \begin_inset Formula $\not\le$
3434 \end_inset
3435
3436
3437 \end_layout
3438
3439 \end_inset
3440 </cell>
3441 </row>
3442 <row>
3443 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
3444 \begin_inset Text
3445
3446 \begin_layout Plain Layout
3447
3448 \backslash
3449 not 
3450 \backslash
3451 parallel
3452 \end_layout
3453
3454 \end_inset
3455 </cell>
3456 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
3457 \begin_inset Text
3458
3459 \begin_layout Plain Layout
3460 \begin_inset Formula $\not\parallel$
3461 \end_inset
3462
3463
3464 \end_layout
3465
3466 \end_inset
3467 </cell>
3468 </row>
3469 </lyxtabular>
3470
3471 \end_inset
3472
3473
3474 \end_layout
3475
3476 \begin_layout Standard
3477 Das letzte Beispiel zeigt, dass nicht alle Verneinungen gut aussehen.
3478  Deswegen gibt es für Einige spezielle Befehle (siehe 
3479 \begin_inset CommandInset ref
3480 LatexCommand ref
3481 reference "sub:Mathematische-Symbole"
3482
3483 \end_inset
3484
3485  und 
3486 \begin_inset CommandInset ref
3487 LatexCommand ref
3488 reference "sec:Relationen"
3489
3490 \end_inset
3491
3492 ).
3493 \end_layout
3494
3495 \begin_layout Subsection
3496 Platzhalter
3497 \begin_inset CommandInset label
3498 LatexCommand label
3499 name "sub:Platzhalter"
3500
3501 \end_inset
3502
3503
3504 \begin_inset Index idx
3505 status collapsed
3506
3507 \begin_layout Plain Layout
3508 Platzhalter
3509 \end_layout
3510
3511 \end_inset
3512
3513
3514 \begin_inset Index idx
3515 status collapsed
3516
3517 \begin_layout Plain Layout
3518 chemische Zeichen ! Isotope
3519 \end_layout
3520
3521 \end_inset
3522
3523
3524 \begin_inset Index idx
3525 status collapsed
3526
3527 \begin_layout Plain Layout
3528 Isotope|see
3529 \begin_inset ERT
3530 status collapsed
3531
3532 \begin_layout Plain Layout
3533
3534 {
3535 \end_layout
3536
3537 \end_inset
3538
3539 chemische Zeichen
3540 \begin_inset ERT
3541 status collapsed
3542
3543 \begin_layout Plain Layout
3544
3545 }
3546 \end_layout
3547
3548 \end_inset
3549
3550
3551 \end_layout
3552
3553 \end_inset
3554
3555
3556 \end_layout
3557
3558 \begin_layout Standard
3559 Möchte man z.
3560 \begin_inset space \thinspace{}
3561 \end_inset
3562
3563 B.
3564  Isotope
3565 \begin_inset Foot
3566 status collapsed
3567
3568 \begin_layout Plain Layout
3569 Wie Isotope und chemische Reaktionen erstellt werden, ist in 
3570 \begin_inset CommandInset ref
3571 LatexCommand ref
3572 reference "sub:Chemische-Symbole-und"
3573
3574 \end_inset
3575
3576  beschrieben.
3577 \end_layout
3578
3579 \end_inset
3580
3581  darstellen, tritt folgendes Problem auf:
3582 \end_layout
3583
3584 \begin_layout Standard
3585 \align center
3586 \begin_inset Tabular
3587 <lyxtabular version="3" rows="2" columns="2">
3588 <features rotate="0" tabularvalignment="middle">
3589 <column alignment="center" valignment="top" width="0pt">
3590 <column alignment="center" valignment="top" width="0pt">
3591 <row>
3592 <cell alignment="center" valignment="top" usebox="none">
3593 \begin_inset Text
3594
3595 \begin_layout Plain Layout
3596 durch Hoch- und Tiefstellen erzeugte Indizes:
3597 \end_layout
3598
3599 \end_inset
3600 </cell>
3601 <cell alignment="center" valignment="top" usebox="none">
3602 \begin_inset Text
3603
3604 \begin_layout Plain Layout
3605 \begin_inset Formula $_{9}^{19}\mathrm{F}\raisebox{-3mm}{}$
3606 \end_inset
3607
3608
3609 \end_layout
3610
3611 \end_inset
3612 </cell>
3613 </row>
3614 <row>
3615 <cell alignment="center" valignment="top" usebox="none">
3616 \begin_inset Text
3617
3618 \begin_layout Plain Layout
3619 korrekte Indizes:
3620 \end_layout
3621
3622 \end_inset
3623 </cell>
3624 <cell alignment="center" valignment="top" usebox="none">
3625 \begin_inset Text
3626
3627 \begin_layout Plain Layout
3628 \begin_inset Formula $_{\phantom{1}9}^{19}\mathrm{F}$
3629 \end_inset
3630
3631
3632 \end_layout
3633
3634 \end_inset
3635 </cell>
3636 </row>
3637 </lyxtabular>
3638
3639 \end_inset
3640
3641
3642 \begin_inset Note Note
3643 status collapsed
3644
3645 \begin_layout Plain Layout
3646
3647 \series bold
3648
3649 \backslash
3650 raisebox
3651 \series default
3652  dient nur
3653 \end_layout
3654
3655 \begin_layout Plain Layout
3656 als Abstandhalter.
3657 \end_layout
3658
3659 \end_inset
3660
3661
3662 \end_layout
3663
3664 \begin_layout Standard
3665 Der kürzere Index wird standardmäßig unter oder über das erste Zeichen des
3666  längeren Index gesetzt.
3667  Um das zu verhindern gibt es den Befehl 
3668 \series bold
3669
3670 \backslash
3671 phantom
3672 \series default
3673
3674 \begin_inset Index idx
3675 status collapsed
3676
3677 \begin_layout Plain Layout
3678 Befehle ! P ! 
3679 \backslash
3680 phantom
3681 \end_layout
3682
3683 \end_inset
3684
3685  oder den Mathe-Werkzeugleistenknopf
3686 \begin_inset space \thinspace{}
3687 \end_inset
3688
3689
3690 \begin_inset Foot
3691 status collapsed
3692
3693 \begin_layout Plain Layout
3694 zu finden im Untermenü des Mathe-Werkzeugleistenknopfs 
3695 \begin_inset Graphics
3696         filename ../../images/math/space.png
3697         scale 85
3698
3699 \end_inset
3700
3701
3702 \end_layout
3703
3704 \end_inset
3705
3706  
3707 \begin_inset Graphics
3708         filename ../../images/math/phantom.png
3709         scale 85
3710
3711 \end_inset
3712
3713 , der ein oder mehrere Phantomzeichen erstellt.
3714  Wenn 
3715 \series bold
3716
3717 \backslash
3718 phantom
3719 \series default
3720  eingegeben wird, erscheint ein kleines blaues Kästchen, dass von zwei roten
3721  Pfeilen überlagert wird.
3722  Die Pfeile geben an, dass die komplette Breite und Höhe des Kästcheninhalts
3723  als Leerraum erstellt wird.
3724  Phantomzeichen sind dementsprechend Platzhalter mit der Größe der angegebenen
3725  Zeichen.
3726 \end_layout
3727
3728 \begin_layout Standard
3729 \align center
3730 \begin_inset Tabular
3731 <lyxtabular version="3" rows="4" columns="2">
3732 <features rotate="0" tabularvalignment="middle">
3733 <column alignment="center" valignment="top">
3734 <column alignment="center" valignment="top">
3735 <row>
3736 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
3737 \begin_inset Text
3738
3739 \begin_layout Plain Layout
3740 Befehl
3741 \end_layout
3742
3743 \end_inset
3744 </cell>
3745 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
3746 \begin_inset Text
3747
3748 \begin_layout Plain Layout
3749 Ergebnis
3750 \begin_inset Note Note
3751 status collapsed
3752
3753 \begin_layout Plain Layout
3754
3755 \series bold
3756
3757 \backslash
3758 raisebox
3759 \series default
3760  dient nur als Abstandhalter.
3761 \end_layout
3762
3763 \end_inset
3764
3765
3766 \end_layout
3767
3768 \end_inset
3769 </cell>
3770 </row>
3771 <row>
3772 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3773 \begin_inset Text
3774
3775 \begin_layout Plain Layout
3776 ^19
3777 \begin_inset ERT
3778 status collapsed
3779
3780 \begin_layout Plain Layout
3781
3782
3783 \backslash
3784 leer 
3785 \end_layout
3786
3787 \end_inset
3788
3789 _
3790 \backslash
3791 phantom
3792 \begin_inset ERT
3793 status collapsed
3794
3795 \begin_layout Plain Layout
3796
3797
3798 \backslash
3799 leer 
3800 \end_layout
3801
3802 \end_inset
3803
3804 1
3805 \begin_inset Formula $\to$
3806 \end_inset
3807
3808 9
3809 \begin_inset ERT
3810 status collapsed
3811
3812 \begin_layout Plain Layout
3813
3814
3815 \backslash
3816 leer 
3817 \end_layout
3818
3819 \end_inset
3820
3821 F
3822 \end_layout
3823
3824 \end_inset
3825 </cell>
3826 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3827 \begin_inset Text
3828
3829 \begin_layout Plain Layout
3830 \begin_inset Formula $\raisebox{4.5mm}{}{}_{\phantom{1}9}^{19}\mathrm{F}\raisebox{-2.5mm}{}$
3831 \end_inset
3832
3833
3834 \end_layout
3835
3836 \end_inset
3837 </cell>
3838 </row>
3839 <row>
3840 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
3841 \begin_inset Text
3842
3843 \begin_layout Plain Layout
3844 ^235
3845 \begin_inset ERT
3846 status collapsed
3847
3848 \begin_layout Plain Layout
3849
3850
3851 \backslash
3852 leer 
3853 \end_layout
3854
3855 \end_inset
3856
3857 _
3858 \backslash
3859 phantom
3860 \begin_inset ERT
3861 status collapsed
3862
3863 \begin_layout Plain Layout
3864
3865
3866 \backslash
3867 leer 
3868 \end_layout
3869
3870 \end_inset
3871
3872 23
3873 \begin_inset Formula $\to$
3874 \end_inset
3875
3876 9
3877 \begin_inset ERT
3878 status collapsed
3879
3880 \begin_layout Plain Layout
3881
3882
3883 \backslash
3884 leer 
3885 \end_layout
3886
3887 \end_inset
3888
3889 F
3890 \end_layout
3891
3892 \end_inset
3893 </cell>
3894 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
3895 \begin_inset Text
3896
3897 \begin_layout Plain Layout
3898 \begin_inset Formula $\raisebox{4.5mm}{}{}_{\phantom{23}9}^{235}\mathrm{F}\raisebox{-2.5mm}{}$
3899 \end_inset
3900
3901
3902 \end_layout
3903
3904 \end_inset
3905 </cell>
3906 </row>
3907 <row>
3908 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
3909 \begin_inset Text
3910
3911 \begin_layout Plain Layout
3912
3913 \backslash
3914 Lambda^
3915 \begin_inset ERT
3916 status collapsed
3917
3918 \begin_layout Plain Layout
3919
3920
3921 \backslash
3922 leer 
3923 \end_layout
3924
3925 \end_inset
3926
3927
3928 \backslash
3929 phantom
3930 \begin_inset ERT
3931 status collapsed
3932
3933 \begin_layout Plain Layout
3934
3935
3936 \backslash
3937 leer 
3938 \end_layout
3939
3940 \end_inset
3941
3942 ii
3943 \begin_inset Formula $\to$
3944 \end_inset
3945
3946 t
3947 \begin_inset ERT
3948 status collapsed
3949
3950 \begin_layout Plain Layout
3951
3952
3953 \backslash
3954 leer 
3955 \end_layout
3956
3957 \end_inset
3958
3959 _MMt
3960 \end_layout
3961
3962 \end_inset
3963 </cell>
3964 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
3965 \begin_inset Text
3966
3967 \begin_layout Plain Layout
3968 \begin_inset Formula $\raisebox{4.5mm}{}\Lambda_{MMt}^{\phantom{ii}t}\raisebox{-2.5mm}{}$
3969 \end_inset
3970
3971
3972 \end_layout
3973
3974 \end_inset
3975 </cell>
3976 </row>
3977 </lyxtabular>
3978
3979 \end_inset
3980
3981
3982 \end_layout
3983
3984 \begin_layout Standard
3985 Des Weiteren gibt es noch die Befehle 
3986 \series bold
3987
3988 \backslash
3989 vphantom
3990 \series default
3991
3992 \begin_inset Index idx
3993 status collapsed
3994
3995 \begin_layout Plain Layout
3996 Befehle ! V ! 
3997 \backslash
3998 vphantom
3999 \end_layout
4000
4001 \end_inset
4002
4003  (Werkzeugleistenknopf 
4004 \begin_inset space ~
4005 \end_inset
4006
4007
4008 \begin_inset Graphics
4009         filename ../../images/math/vphantom.png
4010         scale 85
4011
4012 \end_inset
4013
4014 ) und 
4015 \series bold
4016
4017 \backslash
4018 hphantom
4019 \series default
4020
4021 \begin_inset Index idx
4022 status collapsed
4023
4024 \begin_layout Plain Layout
4025 Befehle ! H ! 
4026 \backslash
4027 hphantom
4028 \end_layout
4029
4030 \end_inset
4031
4032  (Werkzeugleistenknopf 
4033 \begin_inset space ~
4034 \end_inset
4035
4036
4037 \begin_inset Graphics
4038         filename ../../images/math/hphantom.png
4039         scale 85
4040
4041 \end_inset
4042
4043 ).
4044  
4045 \series bold
4046
4047 \backslash
4048 hphantom
4049 \series default
4050  erzeugt nur Platz für die maximale Höhe der im Kästchen angegebenen Zeichen,
4051  nicht jedoch für deren Breite.
4052  Bei 
4053 \series bold
4054
4055 \backslash
4056 vphantom
4057 \series default
4058  wird nur Platz mit der Breite des Kästchens erstellt.
4059  Daher haben die Kästchen der beiden Befehle nur einen roten Pfeil.
4060 \end_layout
4061
4062 \begin_layout Standard
4063 Zum Beispiel erzeugt 
4064 \series bold
4065
4066 \backslash
4067 vphantom
4068 \series default
4069
4070 \begin_inset ERT
4071 status collapsed
4072
4073 \begin_layout Plain Layout
4074
4075
4076 \backslash
4077 leer 
4078 \end_layout
4079
4080 \end_inset
4081
4082
4083 \series bold
4084 a
4085 \backslash
4086 int
4087 \series default
4088  Platz der Höhe des Integralzeichens,
4089 \begin_inset Foot
4090 status collapsed
4091
4092 \begin_layout Plain Layout
4093 Der Befehl 
4094 \series bold
4095
4096 \backslash
4097 int
4098 \series default
4099  erzeugt ein Integralzeichen, siehe 
4100 \begin_inset CommandInset ref
4101 LatexCommand ref
4102 reference "sub:Große-Operatoren"
4103
4104 \end_inset
4105
4106 .
4107 \end_layout
4108
4109 \end_inset
4110
4111  da dieses das größere Zeichen ist.
4112  Eine Beispielanwendung ist in 
4113 \begin_inset CommandInset ref
4114 LatexCommand ref
4115 reference "sub:Mehrzeilige-Klammern"
4116
4117 \end_inset
4118
4119  zu finden.
4120 \end_layout
4121
4122 \begin_layout Standard
4123 Platzhalter können auch für Text verwendet werden, wenn sie über das Menü
4124  
4125 \family sans
4126 Einfügen\SpecialChar \menuseparator
4127 Formatierung\SpecialChar \menuseparator
4128 Phantom
4129 \family default
4130  eingefügt werden:
4131 \end_layout
4132
4133 \begin_layout Standard
4134 Dies ist ein Satz.
4135 \begin_inset Newline newline
4136 \end_inset
4137
4138
4139 \begin_inset Phantom Phantom
4140 status open
4141
4142 \begin_layout Plain Layout
4143 Dies
4144 \end_layout
4145
4146 \end_inset
4147
4148  ist ein Satz.
4149 \end_layout
4150
4151 \begin_layout Subsection
4152 Linien
4153 \begin_inset Index idx
4154 status collapsed
4155
4156 \begin_layout Plain Layout
4157 Linien
4158 \end_layout
4159
4160 \end_inset
4161
4162
4163 \begin_inset Index idx
4164 status collapsed
4165
4166 \begin_layout Plain Layout
4167 Formel ! unterstrichene
4168 \end_layout
4169
4170 \end_inset
4171
4172
4173 \end_layout
4174
4175 \begin_layout Standard
4176 \align center
4177 \begin_inset Tabular
4178 <lyxtabular version="3" rows="4" columns="2">
4179 <features rotate="0" tabularvalignment="middle">
4180 <column alignment="center" valignment="top" width="0pt">
4181 <column alignment="center" valignment="top" width="0pt">
4182 <row>
4183 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
4184 \begin_inset Text
4185
4186 \begin_layout Plain Layout
4187 Befehl
4188 \end_layout
4189
4190 \end_inset
4191 </cell>
4192 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
4193 \begin_inset Text
4194
4195 \begin_layout Plain Layout
4196 Ergebnis
4197 \begin_inset Note Note
4198 status collapsed
4199
4200 \begin_layout Plain Layout
4201
4202 \series bold
4203
4204 \backslash
4205 raisebox
4206 \series default
4207  dient nur als Abstandhalter.
4208 \end_layout
4209
4210 \end_inset
4211
4212
4213 \end_layout
4214
4215 \end_inset
4216 </cell>
4217 </row>
4218 <row>
4219 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
4220 \begin_inset Text
4221
4222 \begin_layout Plain Layout
4223
4224 \backslash
4225 overline
4226 \begin_inset ERT
4227 status collapsed
4228
4229 \begin_layout Plain Layout
4230
4231
4232 \backslash
4233 leer 
4234 \end_layout
4235
4236 \end_inset
4237
4238 A+B
4239 \begin_inset Index idx
4240 status collapsed
4241
4242 \begin_layout Plain Layout
4243 Befehle ! O ! 
4244 \backslash
4245 overline
4246 \end_layout
4247
4248 \end_inset
4249
4250
4251 \end_layout
4252
4253 \end_inset
4254 </cell>
4255 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
4256 \begin_inset Text
4257
4258 \begin_layout Plain Layout
4259 \begin_inset Formula $\raisebox{5mm}{}\overline{A+B}$
4260 \end_inset
4261
4262
4263 \end_layout
4264
4265 \end_inset
4266 </cell>
4267 </row>
4268 <row>
4269 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
4270 \begin_inset Text
4271
4272 \begin_layout Plain Layout
4273
4274 \backslash
4275 underline
4276 \begin_inset ERT
4277 status collapsed
4278
4279 \begin_layout Plain Layout
4280
4281
4282 \backslash
4283 leer 
4284 \end_layout
4285
4286 \end_inset
4287
4288 A+B
4289 \begin_inset Index idx
4290 status collapsed
4291
4292 \begin_layout Plain Layout
4293 Befehle ! U ! 
4294 \backslash
4295 underline
4296 \end_layout
4297
4298 \end_inset
4299
4300
4301 \end_layout
4302
4303 \end_inset
4304 </cell>
4305 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
4306 \begin_inset Text
4307
4308 \begin_layout Plain Layout
4309 \begin_inset Formula $\underline{A+B}\raisebox{-2.5mm}{}$
4310 \end_inset
4311
4312
4313 \end_layout
4314
4315 \end_inset
4316 </cell>
4317 </row>
4318 <row>
4319 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
4320 \begin_inset Text
4321
4322 \begin_layout Plain Layout
4323
4324 \backslash
4325 overline
4326 \begin_inset ERT
4327 status collapsed
4328
4329 \begin_layout Plain Layout
4330
4331
4332 \backslash
4333 leer 
4334 \end_layout
4335
4336 \end_inset
4337
4338
4339 \backslash
4340 underline
4341 \begin_inset ERT
4342 status collapsed
4343
4344 \begin_layout Plain Layout
4345
4346
4347 \backslash
4348 leer 
4349 \end_layout
4350
4351 \end_inset
4352
4353 A+B
4354 \end_layout
4355
4356 \end_inset
4357 </cell>
4358 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
4359 \begin_inset Text
4360
4361 \begin_layout Plain Layout
4362 \begin_inset Formula $\raisebox{5mm}{}\overline{\underline{A+B}}\raisebox{-2.5mm}{}$
4363 \end_inset
4364
4365
4366 \end_layout
4367
4368 \end_inset
4369 </cell>
4370 </row>
4371 </lyxtabular>
4372
4373 \end_inset
4374
4375
4376 \end_layout
4377
4378 \begin_layout Standard
4379 Beim letzten Beispiel spielt es keine Rolle, ob man zuerst 
4380 \series bold
4381
4382 \backslash
4383 overline
4384 \series default
4385  oder 
4386 \series bold
4387
4388 \backslash
4389 underline
4390 \series default
4391  eingibt.
4392 \end_layout
4393
4394 \begin_layout Standard
4395 Will man Ergebnisse doppelt unterstreichen, verwendet man zweimal hintereinander
4396 \begin_inset Newline linebreak
4397 \end_inset
4398
4399
4400 \series bold
4401
4402 \backslash
4403 underline
4404 \series default
4405 .
4406 \end_layout
4407
4408 \begin_layout Standard
4409 Man kann bis zu 6 Striche über oder unter Zeichen setzen.
4410 \end_layout
4411
4412 \begin_layout Standard
4413 \begin_inset VSpace bigskip
4414 \end_inset
4415
4416 Benutzerdefinierte Linien können mit dem Befehl 
4417 \series bold
4418
4419 \backslash
4420 rule
4421 \series default
4422
4423 \begin_inset Index idx
4424 status collapsed
4425
4426 \begin_layout Plain Layout
4427 Befehle! R ! 
4428 \backslash
4429 rule
4430 \end_layout
4431
4432 \end_inset
4433
4434  erstellt werden, der folgendes Schema besitzt:
4435 \end_layout
4436
4437 \begin_layout Standard
4438
4439 \series bold
4440
4441 \backslash
4442 rule[vertikaler Versatz]{Länge}{Dicke}
4443 \end_layout
4444
4445 \begin_layout Standard
4446 Der optionale vertikale Versatz verschiebt die Linie nach oben (oder nach
4447  unten, wenn der Wert negativ ist).
4448  Die Einheiten, die in 
4449 \begin_inset CommandInset ref
4450 LatexCommand ref
4451 reference "tab:Verfügbare-Einheiten"
4452
4453 \end_inset
4454
4455  aufgelistet sind, können für die Werte benutzt werden.
4456  Hier sind zwei Beispiele, die mit den Befehlen
4457 \begin_inset Newline newline
4458 \end_inset
4459
4460
4461 \series bold
4462
4463 \backslash
4464 rule[-2ex]{3cm}{2pt}
4465 \series default
4466  und 
4467 \series bold
4468
4469 \backslash
4470 rule{2cm}{1pt}
4471 \series default
4472  erzeugt wurden:
4473 \end_layout
4474
4475 \begin_layout Standard
4476 Dies ist ein Satz 
4477 \begin_inset Formula $\rule[-2ex]{3cm}{2pt}\rule{2cm}{1pt}$
4478 \end_inset
4479
4480  mit zwei Linien.
4481 \end_layout
4482
4483 \begin_layout Standard
4484
4485 \series bold
4486
4487 \backslash
4488 rule
4489 \series default
4490  kann auch für Text verwendet werden, wenn eine Linie über das Menü 
4491 \family sans
4492 Einfügen\SpecialChar \menuseparator
4493 Formatierung\SpecialChar \menuseparator
4494 Horizontale
4495 \begin_inset space ~
4496 \end_inset
4497
4498 Line
4499 \family default
4500  eingefügt wird:
4501 \end_layout
4502
4503 \begin_layout Standard
4504 Dies ist ein Satz 
4505 \begin_inset CommandInset line
4506 LatexCommand rule
4507 offset "0.5ex"
4508 width "3cm"
4509 height "1pt"
4510
4511 \end_inset
4512
4513  mit einer Linie.
4514 \end_layout
4515
4516 \begin_layout Subsection
4517 Fortsetzungspunkte
4518 \begin_inset CommandInset label
4519 LatexCommand label
4520 name "sub:Fortsetzungspunkte"
4521
4522 \end_inset
4523
4524
4525 \begin_inset Index idx
4526 status collapsed
4527
4528 \begin_layout Plain Layout
4529 Fortsetzungspunkte
4530 \end_layout
4531
4532 \end_inset
4533
4534
4535 \end_layout
4536
4537 \begin_layout Standard
4538 Es gibt unterschiedliche Arten von Fortsetzungspunkten.
4539 \begin_inset Foot
4540 status collapsed
4541
4542 \begin_layout Plain Layout
4543 In der Mathe-Werkzeugleiste zu finden im Untermenü des Knopfs 
4544 \begin_inset Graphics
4545         filename ../../images/math/ldots.png
4546         scale 85
4547
4548 \end_inset
4549
4550
4551 \end_layout
4552
4553 \end_inset
4554
4555  Für Aufzählungen verwendet man unten sitzende Punkte (
4556 \series bold
4557
4558 \backslash
4559 ldots
4560 \series default
4561
4562 \begin_inset Index idx
4563 status collapsed
4564
4565 \begin_layout Plain Layout
4566 Befehle ! L ! 
4567 \backslash
4568 ldots
4569 \end_layout
4570
4571 \end_inset
4572
4573 ), während man für Operationen Punkte braucht, die auf der selben Höhe wie
4574  die Operatoren sind (
4575 \series bold
4576
4577 \backslash
4578 cdots
4579 \series default
4580
4581 \begin_inset Index idx
4582 status collapsed
4583
4584 \begin_layout Plain Layout
4585 Befehle ! C ! 
4586 \backslash
4587 cdots
4588 \end_layout
4589
4590 \end_inset
4591
4592 ).
4593  Verwendet man den Befehl 
4594 \series bold
4595
4596 \backslash
4597 dots
4598 \series default
4599
4600 \begin_inset Index idx
4601 status collapsed
4602
4603 \begin_layout Plain Layout
4604 Befehle ! D ! 
4605 \backslash
4606 dots
4607 \end_layout
4608
4609 \end_inset
4610
4611 , entscheidet LaTeX anhand des nachfolgenden Zeichens, welche Punktart verwendet
4612  wird.
4613 \end_layout
4614
4615 \begin_layout Standard
4616 \align center
4617 \begin_inset Tabular
4618 <lyxtabular version="3" rows="9" columns="2">
4619 <features rotate="0" tabularvalignment="middle">
4620 <column alignment="center" valignment="top" width="0pt">
4621 <column alignment="center" valignment="top" width="0pt">
4622 <row>
4623 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
4624 \begin_inset Text
4625
4626 \begin_layout Plain Layout
4627 Befehl
4628 \end_layout
4629
4630 \end_inset
4631 </cell>
4632 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
4633 \begin_inset Text
4634
4635 \begin_layout Plain Layout
4636 Ergebnis
4637 \end_layout
4638
4639 \end_inset
4640 </cell>
4641 </row>
4642 <row>
4643 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4644 \begin_inset Text
4645
4646 \begin_layout Plain Layout
4647 A_1
4648 \begin_inset ERT
4649 status collapsed
4650
4651 \begin_layout Plain Layout
4652
4653
4654 \backslash
4655 leer 
4656 \end_layout
4657
4658 \end_inset
4659
4660 ,
4661 \backslash
4662 dots
4663 \begin_inset ERT
4664 status collapsed
4665
4666 \begin_layout Plain Layout
4667
4668
4669 \backslash
4670 leer 
4671 \end_layout
4672
4673 \end_inset
4674
4675 ,A_n
4676 \end_layout
4677
4678 \end_inset
4679 </cell>
4680 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4681 \begin_inset Text
4682
4683 \begin_layout Plain Layout
4684 \begin_inset Formula $A_{1},\dots,A_{n}$
4685 \end_inset
4686
4687
4688 \end_layout
4689
4690 \end_inset
4691 </cell>
4692 </row>
4693 <row>
4694 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4695 \begin_inset Text
4696
4697 \begin_layout Plain Layout
4698 A_1
4699 \begin_inset ERT
4700 status collapsed
4701
4702 \begin_layout Plain Layout
4703
4704
4705 \backslash
4706 leer 
4707 \end_layout
4708
4709 \end_inset
4710
4711 +
4712 \backslash
4713 dots
4714 \begin_inset ERT
4715 status collapsed
4716
4717 \begin_layout Plain Layout
4718
4719
4720 \backslash
4721 leer 
4722 \end_layout
4723
4724 \end_inset
4725
4726 +A_n
4727 \end_layout
4728
4729 \end_inset
4730 </cell>
4731 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4732 \begin_inset Text
4733
4734 \begin_layout Plain Layout
4735 \begin_inset Formula $A_{1}+\dots+A_{n}$
4736 \end_inset
4737
4738
4739 \end_layout
4740
4741 \end_inset
4742 </cell>
4743 </row>
4744 <row>
4745 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4746 \begin_inset Text
4747
4748 \begin_layout Plain Layout
4749 A_1
4750 \begin_inset ERT
4751 status collapsed
4752
4753 \begin_layout Plain Layout
4754
4755
4756 \backslash
4757 leer 
4758 \end_layout
4759
4760 \end_inset
4761
4762 ,
4763 \backslash
4764 ldots
4765 \begin_inset ERT
4766 status collapsed
4767
4768 \begin_layout Plain Layout
4769
4770
4771 \backslash
4772 leer 
4773 \end_layout
4774
4775 \end_inset
4776
4777 ,A_n
4778 \end_layout
4779
4780 \end_inset
4781 </cell>
4782 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4783 \begin_inset Text
4784
4785 \begin_layout Plain Layout
4786 \begin_inset Formula $A_{1},\ldots,A_{n}$
4787 \end_inset
4788
4789
4790 \end_layout
4791
4792 \end_inset
4793 </cell>
4794 </row>
4795 <row>
4796 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
4797 \begin_inset Text
4798
4799 \begin_layout Plain Layout
4800 A_1
4801 \begin_inset ERT
4802 status collapsed
4803
4804 \begin_layout Plain Layout
4805
4806
4807 \backslash
4808 leer 
4809 \end_layout
4810
4811 \end_inset
4812
4813 +
4814 \backslash
4815 cdots
4816 \begin_inset ERT
4817 status collapsed
4818
4819 \begin_layout Plain Layout
4820
4821
4822 \backslash
4823 leer 
4824 \end_layout
4825
4826 \end_inset
4827
4828 +A_n
4829 \end_layout
4830
4831 \end_inset
4832 </cell>
4833 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
4834 \begin_inset Text
4835
4836 \begin_layout Plain Layout
4837 \begin_inset Formula $A_{1}+\cdots+A_{n}$
4838 \end_inset
4839
4840
4841 \end_layout
4842
4843 \end_inset
4844 </cell>
4845 </row>
4846 <row>
4847 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4848 \begin_inset Text
4849
4850 \begin_layout Plain Layout
4851
4852 \backslash
4853 vdots
4854 \end_layout
4855
4856 \end_inset
4857 </cell>
4858 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4859 \begin_inset Text
4860
4861 \begin_layout Plain Layout
4862 \begin_inset Formula $\vdots$
4863 \end_inset
4864
4865
4866 \end_layout
4867
4868 \end_inset
4869 </cell>
4870 </row>
4871 <row>
4872 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4873 \begin_inset Text
4874
4875 \begin_layout Plain Layout
4876
4877 \backslash
4878 ddots
4879 \end_layout
4880
4881 \end_inset
4882 </cell>
4883 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4884 \begin_inset Text
4885
4886 \begin_layout Plain Layout
4887 \begin_inset Formula $\ddots$
4888 \end_inset
4889
4890
4891 \end_layout
4892
4893 \end_inset
4894 </cell>
4895 </row>
4896 <row>
4897 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
4898 \begin_inset Text
4899
4900 \begin_layout Plain Layout
4901
4902 \backslash
4903 iddots
4904 \end_layout
4905
4906 \end_inset
4907 </cell>
4908 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
4909 \begin_inset Text
4910
4911 \begin_layout Plain Layout
4912 \begin_inset Formula $\iddots$
4913 \end_inset
4914
4915
4916 \end_layout
4917
4918 \end_inset
4919 </cell>
4920 </row>
4921 <row>
4922 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
4923 \begin_inset Text
4924
4925 \begin_layout Plain Layout
4926 3
4927 \series bold
4928 ×
4929 \series default
4930 3
4931 \begin_inset space \thinspace{}
4932 \end_inset
4933
4934 Matrix mit obigen Befehlen
4935 \end_layout
4936
4937 \end_inset
4938 </cell>
4939 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
4940 \begin_inset Text
4941
4942 \begin_layout Plain Layout
4943 \begin_inset Formula $\begin{array}{ccc}
4944 A_{11} & \cdots & A_{1m}\\
4945 \vdots & \ddots & \vdots\\
4946 A_{n1} & \cdots & A_{nm}
4947 \end{array}$
4948 \end_inset
4949
4950
4951 \end_layout
4952
4953 \end_inset
4954 </cell>
4955 </row>
4956 </lyxtabular>
4957
4958 \end_inset
4959
4960
4961 \end_layout
4962
4963 \begin_layout Standard
4964 Die im Menü 
4965 \family sans
4966 Einfügen\SpecialChar \menuseparator
4967 Sonderzeichen
4968 \family default
4969  verfügbaren Fortsetzungspunkte sind 
4970 \series bold
4971
4972 \backslash
4973 ldots
4974 \series default
4975 .
4976 \end_layout
4977
4978 \begin_layout Standard
4979 \begin_inset VSpace medskip
4980 \end_inset
4981
4982 Um 
4983 \series bold
4984
4985 \backslash
4986 iddots
4987 \series default
4988  nutzen zu können, muss eine der Optionen 
4989 \family sans
4990 Mathdots Paket (automatisch) verwenden 
4991 \family default
4992 in den Dokumenteinstellungen unter 
4993 \family sans
4994 Mathe-Optionen
4995 \family default
4996  gewählt sein.
4997 \begin_inset Newline newline
4998 \end_inset
4999
5000 Die Option 
5001 \family sans
5002 Mathdots Paket verwenden
5003 \family default
5004  verbessert das Aussehen aller Fortsetzungspunkte des Dokuments wenn deren
5005  Schriftstil oder die Schriftgröße nicht Standard sind.
5006 \end_layout
5007
5008 \begin_layout Standard
5009 \begin_inset VSpace medskip
5010 \end_inset
5011
5012 Speziell für Matrizen gibt es Fortsetzungspunkte, die sich über mehrere
5013  Spalten erstrecken.
5014  Man erhält sie mit dem Befehl 
5015 \series bold
5016
5017 \backslash
5018 hdotsfor
5019 \series default
5020
5021 \begin_inset Index idx
5022 status collapsed
5023
5024 \begin_layout Plain Layout
5025 Befehle ! H ! 
5026 \backslash
5027 hdotsfor
5028 \end_layout
5029
5030 \end_inset
5031
5032 , der folgendes Schema besitzt:
5033 \end_layout
5034
5035 \begin_layout Standard
5036
5037 \series bold
5038
5039 \backslash
5040 hdotsfor[Abstand]{Anzahl der Spalten}
5041 \end_layout
5042
5043 \begin_layout Standard
5044 Anzahl der Spalten gibt an, über wie viele Spalten sich die Punkte erstrecken
5045  sollen.
5046  Abstand ist ein Faktor, der den Punktabstand festlegt.
5047 \end_layout
5048
5049 \begin_layout Standard
5050 In folgender Matrix wurde in das erste Kästchen der zweiten Zeile der Befehl
5051  
5052 \series bold
5053
5054 \backslash
5055 hdotsfor[2]{4}
5056 \series default
5057  eingegeben, um Fortsetzungspunkte mit doppelt so großem Punktabstand wie
5058  beim Befehl 
5059 \series bold
5060
5061 \backslash
5062 dots
5063 \series default
5064  zu erhalten:
5065 \begin_inset Formula 
5066 \[
5067 \left(\begin{array}{cccc}
5068 A & B & C & D\\
5069 \hdotsfor[2]{4}\\
5070 q & w & e & r
5071 \end{array}\right)
5072 \]
5073
5074 \end_inset
5075
5076 Es ist zu beachten, dass die Matrixfelder über die sich die Punkte erstrecken
5077  sollen leer sein müssen, ansonsten kommt es zu LaTeX-Fehlern.
5078 \end_layout
5079
5080 \begin_layout Standard
5081 \begin_inset VSpace bigskip
5082 \end_inset
5083
5084 Des Weiteren kann man mit dem Befehl 
5085 \series bold
5086
5087 \backslash
5088 dotfill
5089 \series default
5090
5091 \begin_inset Index idx
5092 status collapsed
5093
5094 \begin_layout Plain Layout
5095 Befehle ! D ! 
5096 \backslash
5097 dotfill
5098 \end_layout
5099
5100 \end_inset
5101
5102  den Rest einer Zeile mit Punkten füllen.
5103  Die Wirkungsweise des Befehls entspricht der von 
5104 \series bold
5105
5106 \backslash
5107 hfill
5108 \series default
5109 , siehe 
5110 \begin_inset CommandInset ref
5111 LatexCommand ref
5112 reference "sub:Variabler-Leerraum"
5113
5114 \end_inset
5115
5116 .
5117 \end_layout
5118
5119 \begin_layout Standard
5120 Z.
5121 \begin_inset space \thinspace{}
5122 \end_inset
5123
5124 B.
5125  ergibt der Befehl 
5126 \series bold
5127 A
5128 \backslash
5129 dotfill
5130 \begin_inset ERT
5131 status collapsed
5132
5133 \begin_layout Plain Layout
5134
5135
5136 \backslash
5137 leer 
5138 \end_layout
5139
5140 \end_inset
5141
5142 B
5143 \end_layout
5144
5145 \begin_layout Standard
5146 \begin_inset Formula $A\dotfill B$
5147 \end_inset
5148
5149
5150 \end_layout
5151
5152 \begin_layout Standard
5153 Analog dazu gibt es für eine Linie den Befehl 
5154 \series bold
5155
5156 \backslash
5157 hrulefill
5158 \series default
5159
5160 \begin_inset Index idx
5161 status collapsed
5162
5163 \begin_layout Plain Layout
5164 Befehle ! H ! 
5165 \backslash
5166 hrulefill
5167 \end_layout
5168
5169 \end_inset
5170
5171 :
5172 \end_layout
5173
5174 \begin_layout Standard
5175 \begin_inset Formula $A\hrulefill B$
5176 \end_inset
5177
5178
5179 \end_layout
5180
5181 \begin_layout Standard
5182 Um die Befehle für Text zu verwenden, müssen sie im TeX-Modus eingegeben
5183  werden.
5184 \end_layout
5185
5186 \begin_layout Section
5187 Matrizen
5188 \begin_inset CommandInset label
5189 LatexCommand label
5190 name "sec:Matrizen"
5191
5192 \end_inset
5193
5194
5195 \begin_inset Index idx
5196 status collapsed
5197
5198 \begin_layout Plain Layout
5199 Matrizen
5200 \end_layout
5201
5202 \end_inset
5203
5204
5205 \end_layout
5206
5207 \begin_layout Standard
5208 Matrizen können über den Mathe-Werkzeugleistenknopf
5209 \family sans
5210  
5211 \family default
5212
5213 \begin_inset Graphics
5214         filename ../../images/dialog-show_mathmatrix.png
5215         scale 85
5216
5217 \end_inset
5218
5219  oder das Menü 
5220 \family sans
5221 Einfügen\SpecialChar \menuseparator
5222 Mathe\SpecialChar \menuseparator
5223 Matrix
5224 \family default
5225  eingefügt werden.
5226  Sie werden nach der Spalten- und Zeilenanzahl, der Ausrichtung und der
5227  Verzierung gefragt.
5228  Die vertikale Ausrichtung ist dabei nur bei Matrizen in eingebetteten Formeln
5229  von Bedeutung:
5230 \end_layout
5231
5232 \begin_layout Standard
5233 Die erste Matrix ist oben 
5234 \begin_inset Formula $\begin{array}[t]{cccc}
5235 A & D & G & J\\
5236 B & E & H & K\\
5237 C & F & I & L
5238 \end{array}$
5239 \end_inset
5240
5241 , die zweite mittig 
5242 \begin_inset Formula $\begin{array}{cccc}
5243 A & D & G & J\\
5244 B & E & H & K\\
5245 C & F & I & L
5246 \end{array}$
5247 \end_inset
5248
5249  und die dritte unten 
5250 \begin_inset Formula $\begin{array}[b]{cccc}
5251 A & D & G & J\\
5252 B & E & H & K\\
5253 C & F & I & L
5254 \end{array}$
5255 \end_inset
5256
5257  ausgerichtet.
5258 \end_layout
5259
5260 \begin_layout Standard
5261 Die horizontale Ausrichtung gibt an, wie die Spalteneinträge ausgerichtet
5262  werden sollen.
5263  Dazu wird für jede Spalte ein Buchstabe eingegeben.
5264  
5265 \emph on
5266 l
5267 \emph default
5268  steht für linksbündig, 
5269 \emph on
5270 c
5271 \emph default
5272  für mittig und 
5273 \emph on
5274 r
5275 \emph default
5276  für rechtsbündig.
5277  Möchte man z.
5278 \begin_inset space \thinspace{}
5279 \end_inset
5280
5281 B.
5282  eine 4
5283 \series bold
5284 ×
5285 \series default
5286 4
5287 \begin_inset space ~
5288 \end_inset
5289
5290 Matrix erstellen, bei der der Inhalt der ersten Spalte linksbündig, der
5291  Inhalt der zweiten und dritten mittig und der Inhalt der letzten rechtsbündig
5292  ausgerichtet ist, gibt man für die horizontale Ausrichtung 
5293 \series bold
5294 lccr
5295 \series default
5296  an.
5297  Normalerweise sind in einer Matrix alle Spalteninhalte zentriert, weswegen
5298  die Voreinstellung für jede Spalte ein 
5299 \series bold
5300 c
5301 \series default
5302  ist.
5303 \end_layout
5304
5305 \begin_layout Standard
5306 Horizontale Ausrichtung:
5307 \end_layout
5308
5309 \begin_layout Standard
5310
5311 \series bold
5312 lll
5313 \series default
5314  : 
5315 \begin_inset Formula $\begin{array}{lll}
5316 10000 & D & G\\
5317 B & 10000 & H\\
5318 C & F & 10000
5319 \end{array}$
5320 \end_inset
5321
5322  , 
5323 \series bold
5324 ccc
5325 \series default
5326  : 
5327 \begin_inset Formula $\begin{array}{ccc}
5328 10000 & D & G\\
5329 B & 10000 & H\\
5330 C & F & 10000
5331 \end{array}$
5332 \end_inset
5333
5334  , 
5335 \series bold
5336 rrr
5337 \series default
5338  : 
5339 \begin_inset Formula $\begin{array}{rrr}
5340 10000 & D & G\\
5341 B & 10000 & H\\
5342 C & F & 10000
5343 \end{array}$
5344 \end_inset
5345
5346
5347 \end_layout
5348
5349 \begin_layout Standard
5350 Um nachträglich Zeilen und Spalten hinzuzufügen oder zu entfernen, kann
5351  man die Mathe-Werkzeugleistenknöpfe 
5352 \begin_inset Graphics
5353         filename ../../images/tabular-feature_append-row.png
5354         scale 85
5355
5356 \end_inset
5357
5358
5359 \begin_inset Graphics
5360         filename ../../images/tabular-feature_delete-row.png
5361         scale 85
5362
5363 \end_inset
5364
5365 , usw.
5366 \begin_inset space \space{}
5367 \end_inset
5368
5369 oder das Menü 
5370 \family sans
5371 Bearbeiten\SpecialChar \menuseparator
5372 Zeilen & Spalten
5373 \family default
5374  verwenden.
5375  Neue Zeilen können auch mit 
5376 \family sans
5377 Strg+Enter
5378 \family default
5379  erstellt werden.
5380 \end_layout
5381
5382 \begin_layout Standard
5383 \begin_inset VSpace bigskip
5384 \end_inset
5385
5386 Die 
5387 \family sans
5388 Verzierung
5389 \family default
5390  fügt Klammern um die Matrix in der ausgewählten Art hinzu.
5391  Alternativ können Klammern entweder mit den Befehlen 
5392 \series bold
5393
5394 \backslash
5395 left
5396 \series default
5397
5398 \begin_inset Index idx
5399 status collapsed
5400
5401 \begin_layout Plain Layout
5402 Befehle ! L ! 
5403 \backslash
5404 left
5405 \end_layout
5406
5407 \end_inset
5408
5409  und 
5410 \series bold
5411
5412 \backslash
5413 right
5414 \series default
5415
5416 \begin_inset Index idx
5417 status collapsed
5418
5419 \begin_layout Plain Layout
5420 Befehle ! R ! 
5421 \backslash
5422 right
5423 \end_layout
5424
5425 \end_inset
5426
5427  erstellt werden (Tastenkürzel 
5428 \family sans
5429 Alt+M
5430 \begin_inset space ~
5431 \end_inset
5432
5433 Klammer
5434 \family default
5435 ), siehe 
5436 \begin_inset CommandInset ref
5437 LatexCommand ref
5438 reference "sub:Automatische-Klammergrößen"
5439
5440 \end_inset
5441
5442 , oder man verwendet folgende Befehle:
5443 \begin_inset VSpace bigskip
5444 \end_inset
5445
5446
5447 \end_layout
5448
5449 \begin_layout Standard
5450 \begin_inset space \hfill{}
5451 \end_inset
5452
5453
5454 \begin_inset Tabular
5455 <lyxtabular version="3" rows="4" columns="2">
5456 <features rotate="0" tabularvalignment="middle">
5457 <column alignment="center" valignment="top">
5458 <column alignment="center" valignment="top">
5459 <row>
5460 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
5461 \begin_inset Text
5462
5463 \begin_layout Plain Layout
5464 Befehl
5465 \end_layout
5466
5467 \end_inset
5468 </cell>
5469 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
5470 \begin_inset Text
5471
5472 \begin_layout Plain Layout
5473 Ergebnis
5474 \end_layout
5475
5476 \end_inset
5477 </cell>
5478 </row>
5479 <row>
5480 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5481 \begin_inset Text
5482
5483 \begin_layout Plain Layout
5484
5485 \backslash
5486 bmatrix
5487 \begin_inset ERT
5488 status collapsed
5489
5490 \begin_layout Plain Layout
5491
5492
5493 \backslash
5494 leer 
5495 \end_layout
5496
5497 \end_inset
5498
5499 2
5500 \series bold
5501 ×
5502 \series default
5503 2
5504 \begin_inset space \thinspace{}
5505 \end_inset
5506
5507 Matrix
5508 \end_layout
5509
5510 \end_inset
5511 </cell>
5512 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5513 \begin_inset Text
5514
5515 \begin_layout Plain Layout
5516 \begin_inset Formula $\raisebox{7.5mm}{}\begin{bmatrix}\begin{array}{cc}
5517 0 & \textrm{-}\mathrm{i}\\
5518 \mathrm{i} & 0
5519 \end{array}\end{bmatrix}\raisebox{-5.3mm}{}$
5520 \end_inset
5521
5522
5523 \end_layout
5524
5525 \end_inset
5526 </cell>
5527 </row>
5528 <row>
5529 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5530 \begin_inset Text
5531
5532 \begin_layout Plain Layout
5533
5534 \backslash
5535 Bmatrix
5536 \begin_inset ERT
5537 status collapsed
5538
5539 \begin_layout Plain Layout
5540
5541
5542 \backslash
5543 leer 
5544 \end_layout
5545
5546 \end_inset
5547
5548 2
5549 \series bold
5550 ×
5551 \series default
5552 2
5553 \begin_inset space \thinspace{}
5554 \end_inset
5555
5556 Matrix
5557 \end_layout
5558
5559 \end_inset
5560 </cell>
5561 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5562 \begin_inset Text
5563
5564 \begin_layout Plain Layout
5565 \begin_inset Formula $\raisebox{7.5mm}{}\begin{Bmatrix}\begin{array}{cc}
5566 0 & \textrm{-}\mathrm{i}\\
5567 \mathrm{i} & 0
5568 \end{array}\end{Bmatrix}\raisebox{-5.3mm}{}$
5569 \end_inset
5570
5571
5572 \end_layout
5573
5574 \end_inset
5575 </cell>
5576 </row>
5577 <row>
5578 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
5579 \begin_inset Text
5580
5581 \begin_layout Plain Layout
5582
5583 \backslash
5584 pmatrix
5585 \begin_inset ERT
5586 status collapsed
5587
5588 \begin_layout Plain Layout
5589
5590
5591 \backslash
5592 leer 
5593 \end_layout
5594
5595 \end_inset
5596
5597 2
5598 \series bold
5599 ×
5600 \series default
5601 2
5602 \begin_inset space \thinspace{}
5603 \end_inset
5604
5605 Matrix
5606 \end_layout
5607
5608 \end_inset
5609 </cell>
5610 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
5611 \begin_inset Text
5612
5613 \begin_layout Plain Layout
5614 \begin_inset Formula $\raisebox{7.5mm}{}\begin{pmatrix}\begin{array}{cc}
5615 0 & \textrm{-}\mathrm{i}\\
5616 \mathrm{i} & 0
5617 \end{array}\end{pmatrix}\raisebox{-5.3mm}{}$
5618 \end_inset
5619
5620
5621 \end_layout
5622
5623 \end_inset
5624 </cell>
5625 </row>
5626 </lyxtabular>
5627
5628 \end_inset
5629
5630
5631 \begin_inset space \hfill{}
5632 \end_inset
5633
5634
5635 \begin_inset Tabular
5636 <lyxtabular version="3" rows="4" columns="2">
5637 <features rotate="0" tabularvalignment="middle">
5638 <column alignment="center" valignment="top">
5639 <column alignment="center" valignment="top">
5640 <row>
5641 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
5642 \begin_inset Text
5643
5644 \begin_layout Plain Layout
5645 Befehl
5646 \end_layout
5647
5648 \end_inset
5649 </cell>
5650 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
5651 \begin_inset Text
5652
5653 \begin_layout Plain Layout
5654 Ergebnis
5655 \end_layout
5656
5657 \end_inset
5658 </cell>
5659 </row>
5660 <row>
5661 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5662 \begin_inset Text
5663
5664 \begin_layout Plain Layout
5665
5666 \backslash
5667 vmatrix
5668 \begin_inset ERT
5669 status collapsed
5670
5671 \begin_layout Plain Layout
5672
5673
5674 \backslash
5675 leer 
5676 \end_layout
5677
5678 \end_inset
5679
5680 2
5681 \series bold
5682 ×
5683 \series default
5684 2
5685 \begin_inset space \thinspace{}
5686 \end_inset
5687
5688 Matrix
5689 \end_layout
5690
5691 \end_inset
5692 </cell>
5693 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5694 \begin_inset Text
5695
5696 \begin_layout Plain Layout
5697 \begin_inset Formula $\raisebox{7.5mm}{}\begin{vmatrix}\begin{array}{cc}
5698 0 & \textrm{-}\mathrm{i}\\
5699 \mathrm{i} & 0
5700 \end{array}\end{vmatrix}\raisebox{-5.3mm}{}$
5701 \end_inset
5702
5703
5704 \end_layout
5705
5706 \end_inset
5707 </cell>
5708 </row>
5709 <row>
5710 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
5711 \begin_inset Text
5712
5713 \begin_layout Plain Layout
5714
5715 \backslash
5716 Vmatrix
5717 \begin_inset ERT
5718 status collapsed
5719
5720 \begin_layout Plain Layout
5721
5722
5723 \backslash
5724 leer 
5725 \end_layout
5726
5727 \end_inset
5728
5729 2
5730 \series bold
5731 ×
5732 \series default
5733 2
5734 \begin_inset space \thinspace{}
5735 \end_inset
5736
5737 Matrix
5738 \end_layout
5739
5740 \end_inset
5741 </cell>
5742 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
5743 \begin_inset Text
5744
5745 \begin_layout Plain Layout
5746 \begin_inset Formula $\raisebox{7.5mm}{}\begin{Vmatrix}\begin{array}{cc}
5747 0 & \textrm{-}\mathrm{i}\\
5748 \mathrm{i} & 0
5749 \end{array}\end{Vmatrix}\raisebox{-5.3mm}{}$
5750 \end_inset
5751
5752
5753 \end_layout
5754
5755 \end_inset
5756 </cell>
5757 </row>
5758 <row>
5759 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
5760 \begin_inset Text
5761
5762 \begin_layout Plain Layout
5763
5764 \backslash
5765 matrix
5766 \begin_inset ERT
5767 status collapsed
5768
5769 \begin_layout Plain Layout
5770
5771
5772 \backslash
5773 leer 
5774 \end_layout
5775
5776 \end_inset
5777
5778 2
5779 \series bold
5780 ×
5781 \series default
5782 2
5783 \begin_inset space \thinspace{}
5784 \end_inset
5785
5786 Matrix
5787 \end_layout
5788
5789 \end_inset
5790 </cell>
5791 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
5792 \begin_inset Text
5793
5794 \begin_layout Plain Layout
5795 \begin_inset Formula $\raisebox{7.5mm}{}\begin{matrix}\begin{array}{cc}
5796 0 & \textrm{-}\mathrm{i}\\
5797 \mathrm{i} & 0
5798 \end{array}\end{matrix}\raisebox{-5.3mm}{}$
5799 \end_inset
5800
5801
5802 \end_layout
5803
5804 \end_inset
5805 </cell>
5806 </row>
5807 </lyxtabular>
5808
5809 \end_inset
5810
5811
5812 \begin_inset space \hfill{}
5813 \end_inset
5814
5815
5816 \end_layout
5817
5818 \begin_layout Standard
5819 \begin_inset VSpace medskip
5820 \end_inset
5821
5822 Wurde z.
5823 \begin_inset space \thinspace{}
5824 \end_inset
5825
5826 B.
5827  
5828 \series bold
5829
5830 \backslash
5831 vmatrix
5832 \series default
5833  eingegeben, erscheint ein blaues Kästchen zwischen zwei senkrechten Strichen,
5834  in das die Matrix eingefügt wird.
5835 \begin_inset Newline newline
5836 \end_inset
5837
5838 Man beachte, dass verzierte Matrizen die vertikale Ausrichtung ignorieren.
5839 \end_layout
5840
5841 \begin_layout Standard
5842 \begin_inset VSpace bigskip
5843 \end_inset
5844
5845 Da alle mehrzeiligen Formeln Matrizen sind, kann man die in 
5846 \begin_inset CommandInset ref
5847 LatexCommand ref
5848 reference "sub:Spaltenabstand"
5849
5850 \end_inset
5851
5852  beschriebene Länge 
5853 \series bold
5854
5855 \backslash
5856 arraycolsep
5857 \series default
5858
5859 \begin_inset Index idx
5860 status collapsed
5861
5862 \begin_layout Plain Layout
5863 Befehle ! A ! 
5864 \backslash
5865 arraycolsep
5866 \end_layout
5867
5868 \end_inset
5869
5870  auch zur Änderung des Spaltenabstands von Matrizen verwenden.
5871 \end_layout
5872
5873 \begin_layout Standard
5874 Möchte man den Zeilenabstand ändern, verwendet man den Befehl 
5875 \series bold
5876
5877 \backslash
5878 arraystretch
5879 \series default
5880
5881 \begin_inset Index idx
5882 status collapsed
5883
5884 \begin_layout Plain Layout
5885 Befehle ! A ! 
5886 \backslash
5887 arraystretch
5888 \end_layout
5889
5890 \end_inset
5891
5892 .
5893  Dieser wird folgendermaßen benutzt:
5894 \end_layout
5895
5896 \begin_layout Standard
5897
5898 \series bold
5899
5900 \backslash
5901 renewcommand{
5902 \backslash
5903 arraystretch}{Dehnungsfaktor}
5904 \begin_inset Index idx
5905 status collapsed
5906
5907 \begin_layout Plain Layout
5908 Befehle ! R ! 
5909 \backslash
5910 renewcommand
5911 \end_layout
5912
5913 \end_inset
5914
5915
5916 \end_layout
5917
5918 \begin_layout Standard
5919 Der Befehl 
5920 \series bold
5921
5922 \backslash
5923 renewcommand
5924 \series default
5925  weist dabei dem vordefinierten Befehl 
5926 \series bold
5927
5928 \backslash
5929 arraystretch
5930 \series default
5931  den Dehnungsfaktor zu.
5932  Möchte man z.
5933 \begin_inset space \thinspace{}
5934 \end_inset
5935
5936 B.
5937  den Zeilenabstand verdoppeln, gibt man für den Faktor eine 2 an.
5938  Dieser wird dann für alle folgenden Matrizen verwendet.
5939  Um wieder zum ursprünglichen Abstand zurückzukehren, weist man 
5940 \series bold
5941
5942 \backslash
5943 arraystretch
5944 \series default
5945  den Faktor 1 zu.
5946 \end_layout
5947
5948 \begin_layout Standard
5949 Um Matrizen in eine Textzeile zu setzen, benutzt man den Befehl 
5950 \series bold
5951
5952 \backslash
5953 smallmatrix
5954 \series default
5955
5956 \begin_inset Index idx
5957 status collapsed
5958
5959 \begin_layout Plain Layout
5960 Befehle ! S ! 
5961 \backslash
5962 smallmatrix
5963 \end_layout
5964
5965 \end_inset
5966
5967 .
5968  Gibt man ihn in eine Formel ein, erscheint ein blaues Kästchen mit zwei
5969  gestrichelten Linien.
5970  In dieses Kästchen wird die Matrix eingegeben.
5971  Man verwendet stattdessen das Menü 
5972 \family sans
5973 Bearbeiten\SpecialChar \menuseparator
5974 Zeilen
5975 \begin_inset space ~
5976 \end_inset
5977
5978 &
5979 \begin_inset space ~
5980 \end_inset
5981
5982 Spalten
5983 \family default
5984  oder die Mathe-Werkzeugleiste um neue Spalten zu erstellen.
5985  Neue Zeilen können auch mit 
5986 \family sans
5987 Strg+Enter
5988 \family default
5989  erstellt werden.
5990 \end_layout
5991
5992 \begin_layout Standard
5993 Dies ist eine Matrix 
5994 \begin_inset Formula $\left(\begin{smallmatrix}A & B\\
5995 C & D
5996 \end{smallmatrix}\right)$
5997 \end_inset
5998
5999  in einer Textzeile.
6000 \end_layout
6001
6002 \begin_layout Section
6003 Klammern und Begrenzungszeichen
6004 \begin_inset Index idx
6005 status collapsed
6006
6007 \begin_layout Plain Layout
6008 Klammern
6009 \end_layout
6010
6011 \end_inset
6012
6013
6014 \begin_inset Index idx
6015 status collapsed
6016
6017 \begin_layout Plain Layout
6018 Begrenzungszeichen
6019 \end_layout
6020
6021 \end_inset
6022
6023
6024 \end_layout
6025
6026 \begin_layout Subsection
6027 Vertikale Klammern und Begrenzungszeichen
6028 \begin_inset Index idx
6029 status collapsed
6030
6031 \begin_layout Plain Layout
6032 Klammern ! vertikale
6033 \end_layout
6034
6035 \end_inset
6036
6037
6038 \end_layout
6039
6040 \begin_layout Standard
6041 \begin_inset space \hfill{}
6042 \end_inset
6043
6044
6045 \begin_inset Tabular
6046 <lyxtabular version="3" rows="9" columns="2">
6047 <features rotate="0" tabularvalignment="middle">
6048 <column alignment="center" valignment="top" width="0pt">
6049 <column alignment="center" valignment="top" width="0pt">
6050 <row>
6051 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
6052 \begin_inset Text
6053
6054 \begin_layout Plain Layout
6055 Befehl
6056 \end_layout
6057
6058 \end_inset
6059 </cell>
6060 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6061 \begin_inset Text
6062
6063 \begin_layout Plain Layout
6064 Ergebnis
6065 \end_layout
6066
6067 \end_inset
6068 </cell>
6069 </row>
6070 <row>
6071 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6072 \begin_inset Text
6073
6074 \begin_layout Plain Layout
6075 (
6076 \end_layout
6077
6078 \end_inset
6079 </cell>
6080 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6081 \begin_inset Text
6082
6083 \begin_layout Plain Layout
6084 \begin_inset Formula $($
6085 \end_inset
6086
6087
6088 \end_layout
6089
6090 \end_inset
6091 </cell>
6092 </row>
6093 <row>
6094 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6095 \begin_inset Text
6096
6097 \begin_layout Plain Layout
6098 {
6099 \end_layout
6100
6101 \end_inset
6102 </cell>
6103 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6104 \begin_inset Text
6105
6106 \begin_layout Plain Layout
6107 \begin_inset Formula $\{$
6108 \end_inset
6109
6110
6111 \end_layout
6112
6113 \end_inset
6114 </cell>
6115 </row>
6116 <row>
6117 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6118 \begin_inset Text
6119
6120 \begin_layout Plain Layout
6121 [
6122 \end_layout
6123
6124 \end_inset
6125 </cell>
6126 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6127 \begin_inset Text
6128
6129 \begin_layout Plain Layout
6130 \begin_inset Formula $[$
6131 \end_inset
6132
6133
6134 \end_layout
6135
6136 \end_inset
6137 </cell>
6138 </row>
6139 <row>
6140 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6141 \begin_inset Text
6142
6143 \begin_layout Plain Layout
6144
6145 \backslash
6146 langle
6147 \end_layout
6148
6149 \end_inset
6150 </cell>
6151 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6152 \begin_inset Text
6153
6154 \begin_layout Plain Layout
6155 \begin_inset Formula $\langle$
6156 \end_inset
6157
6158
6159 \end_layout
6160
6161 \end_inset
6162 </cell>
6163 </row>
6164 <row>
6165 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6166 \begin_inset Text
6167
6168 \begin_layout Plain Layout
6169
6170 \backslash
6171 lceil
6172 \end_layout
6173
6174 \end_inset
6175 </cell>
6176 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6177 \begin_inset Text
6178
6179 \begin_layout Plain Layout
6180 \begin_inset Formula $\lceil$
6181 \end_inset
6182
6183
6184 \end_layout
6185
6186 \end_inset
6187 </cell>
6188 </row>
6189 <row>
6190 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6191 \begin_inset Text
6192
6193 \begin_layout Plain Layout
6194
6195 \backslash
6196 lfloor
6197 \end_layout
6198
6199 \end_inset
6200 </cell>
6201 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6202 \begin_inset Text
6203
6204 \begin_layout Plain Layout
6205 \begin_inset Formula $\lfloor$
6206 \end_inset
6207
6208
6209 \end_layout
6210
6211 \end_inset
6212 </cell>
6213 </row>
6214 <row>
6215 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6216 \begin_inset Text
6217
6218 \begin_layout Plain Layout
6219 /
6220 \end_layout
6221
6222 \end_inset
6223 </cell>
6224 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6225 \begin_inset Text
6226
6227 \begin_layout Plain Layout
6228 \begin_inset Formula $/$
6229 \end_inset
6230
6231
6232 \end_layout
6233
6234 \end_inset
6235 </cell>
6236 </row>
6237 <row>
6238 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
6239 \begin_inset Text
6240
6241 \begin_layout Plain Layout
6242 |
6243 \end_layout
6244
6245 \end_inset
6246 </cell>
6247 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6248 \begin_inset Text
6249
6250 \begin_layout Plain Layout
6251 \begin_inset Formula $|$
6252 \end_inset
6253
6254
6255 \end_layout
6256
6257 \end_inset
6258 </cell>
6259 </row>
6260 </lyxtabular>
6261
6262 \end_inset
6263
6264
6265 \begin_inset space \hfill{}
6266 \end_inset
6267
6268
6269 \begin_inset Tabular
6270 <lyxtabular version="3" rows="9" columns="2">
6271 <features rotate="0" tabularvalignment="middle">
6272 <column alignment="center" valignment="top" width="0pt">
6273 <column alignment="center" valignment="top" width="0pt">
6274 <row>
6275 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
6276 \begin_inset Text
6277
6278 \begin_layout Plain Layout
6279 Befehl
6280 \end_layout
6281
6282 \end_inset
6283 </cell>
6284 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6285 \begin_inset Text
6286
6287 \begin_layout Plain Layout
6288 Ergebnis
6289 \end_layout
6290
6291 \end_inset
6292 </cell>
6293 </row>
6294 <row>
6295 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6296 \begin_inset Text
6297
6298 \begin_layout Plain Layout
6299 )
6300 \end_layout
6301
6302 \end_inset
6303 </cell>
6304 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6305 \begin_inset Text
6306
6307 \begin_layout Plain Layout
6308 \begin_inset Formula $)$
6309 \end_inset
6310
6311
6312 \end_layout
6313
6314 \end_inset
6315 </cell>
6316 </row>
6317 <row>
6318 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6319 \begin_inset Text
6320
6321 \begin_layout Plain Layout
6322 }
6323 \end_layout
6324
6325 \end_inset
6326 </cell>
6327 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6328 \begin_inset Text
6329
6330 \begin_layout Plain Layout
6331 \begin_inset Formula $\}$
6332 \end_inset
6333
6334
6335 \end_layout
6336
6337 \end_inset
6338 </cell>
6339 </row>
6340 <row>
6341 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6342 \begin_inset Text
6343
6344 \begin_layout Plain Layout
6345 ]
6346 \end_layout
6347
6348 \end_inset
6349 </cell>
6350 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6351 \begin_inset Text
6352
6353 \begin_layout Plain Layout
6354 \begin_inset Formula $]$
6355 \end_inset
6356
6357
6358 \end_layout
6359
6360 \end_inset
6361 </cell>
6362 </row>
6363 <row>
6364 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6365 \begin_inset Text
6366
6367 \begin_layout Plain Layout
6368
6369 \backslash
6370 rangle
6371 \end_layout
6372
6373 \end_inset
6374 </cell>
6375 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6376 \begin_inset Text
6377
6378 \begin_layout Plain Layout
6379 \begin_inset Formula $\rangle$
6380 \end_inset
6381
6382
6383 \end_layout
6384
6385 \end_inset
6386 </cell>
6387 </row>
6388 <row>
6389 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6390 \begin_inset Text
6391
6392 \begin_layout Plain Layout
6393
6394 \backslash
6395 rceil
6396 \end_layout
6397
6398 \end_inset
6399 </cell>
6400 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6401 \begin_inset Text
6402
6403 \begin_layout Plain Layout
6404 \begin_inset Formula $\rceil$
6405 \end_inset
6406
6407
6408 \end_layout
6409
6410 \end_inset
6411 </cell>
6412 </row>
6413 <row>
6414 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6415 \begin_inset Text
6416
6417 \begin_layout Plain Layout
6418
6419 \backslash
6420 rfloor
6421 \end_layout
6422
6423 \end_inset
6424 </cell>
6425 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6426 \begin_inset Text
6427
6428 \begin_layout Plain Layout
6429 \begin_inset Formula $\rfloor$
6430 \end_inset
6431
6432
6433 \end_layout
6434
6435 \end_inset
6436 </cell>
6437 </row>
6438 <row>
6439 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6440 \begin_inset Text
6441
6442 \begin_layout Plain Layout
6443
6444 \backslash
6445
6446 \backslash
6447
6448 \end_layout
6449
6450 \end_inset
6451 </cell>
6452 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6453 \begin_inset Text
6454
6455 \begin_layout Plain Layout
6456 \begin_inset Formula $\backslash$
6457 \end_inset
6458
6459
6460 \end_layout
6461
6462 \end_inset
6463 </cell>
6464 </row>
6465 <row>
6466 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
6467 \begin_inset Text
6468
6469 \begin_layout Plain Layout
6470
6471 \backslash
6472 |
6473 \end_layout
6474
6475 \end_inset
6476 </cell>
6477 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6478 \begin_inset Text
6479
6480 \begin_layout Plain Layout
6481 \begin_inset Formula $\|$
6482 \end_inset
6483
6484
6485 \end_layout
6486
6487 \end_inset
6488 </cell>
6489 </row>
6490 </lyxtabular>
6491
6492 \end_inset
6493
6494
6495 \begin_inset space \hfill{}
6496 \end_inset
6497
6498
6499 \end_layout
6500
6501 \begin_layout Standard
6502
6503 \series medium
6504 \begin_inset Note Greyedout
6505 status open
6506
6507 \begin_layout Plain Layout
6508
6509 \series bold
6510 Achtung:
6511 \series default
6512  Im TeX-Modus muss für den Backslash der Befehl 
6513 \series bold
6514
6515 \backslash
6516 textbackslash
6517 \series default
6518
6519 \begin_inset Index idx
6520 status collapsed
6521
6522 \begin_layout Plain Layout
6523 Befehle ! T ! 
6524 \backslash
6525 textbackslash
6526 \end_layout
6527
6528 \end_inset
6529
6530  verwendet werden, denn der Befehl 
6531 \series bold
6532
6533 \backslash
6534
6535 \backslash
6536
6537 \series default
6538  steht dort für einen Zeilenumbruch.
6539 \end_layout
6540
6541 \end_inset
6542
6543
6544 \end_layout
6545
6546 \begin_layout Standard
6547 Für alle oben aufgelisteten Zeichen kann die Größe mit den in den folgenden
6548  zwei Unterkapiteln beschriebenen Befehlen eingestellt werden.
6549  Dabei können dann statt den Befehlen 
6550 \series bold
6551
6552 \backslash
6553 langle
6554 \series default
6555  und 
6556 \series bold
6557
6558 \backslash
6559 rangle
6560 \series default
6561  direkt die Zeichen < und > verwendet werden.
6562 \end_layout
6563
6564 \begin_layout Subsubsection
6565 Manuelle Klammergrößen
6566 \begin_inset CommandInset label
6567 LatexCommand label
6568 name "sub:Manuelle-Klammergrößen"
6569
6570 \end_inset
6571
6572
6573 \begin_inset Index idx
6574 status collapsed
6575
6576 \begin_layout Plain Layout
6577 Klammergrößen ! manuelle
6578 \end_layout
6579
6580 \end_inset
6581
6582
6583 \end_layout
6584
6585 \begin_layout Standard
6586 Möchte man die Klammergröße manuell festlegen, kann man dies mittels der
6587  LaTeX-Befehle 
6588 \series bold
6589
6590 \backslash
6591 big
6592 \series default
6593
6594 \begin_inset Index idx
6595 status collapsed
6596
6597 \begin_layout Plain Layout
6598 Befehle ! B ! 
6599 \backslash
6600 big
6601 \end_layout
6602
6603 \end_inset
6604
6605
6606 \series bold
6607
6608 \backslash
6609 Big
6610 \series default
6611
6612 \series bold
6613
6614 \backslash
6615 bigg
6616 \series default
6617  und 
6618 \series bold
6619
6620 \backslash
6621 Bigg
6622 \series default
6623  tun.
6624  
6625 \series bold
6626
6627 \backslash
6628 big
6629 \series default
6630  steht hierbei für die kleinste und 
6631 \series bold
6632
6633 \backslash
6634 Bigg
6635 \series default
6636  für die größte Klammergröße.
6637 \end_layout
6638
6639 \begin_layout Standard
6640 Diese Befehle werden benutzt um Klammerebenen optisch hervorzuheben:
6641 \end_layout
6642
6643 \begin_layout Standard
6644 \align center
6645 \begin_inset Tabular
6646 <lyxtabular version="3" rows="2" columns="2">
6647 <features rotate="0" tabularvalignment="middle">
6648 <column alignment="center" valignment="top" width="0pt">
6649 <column alignment="center" valignment="top" width="0pt">
6650 <row>
6651 <cell alignment="center" valignment="top" usebox="none">
6652 \begin_inset Text
6653
6654 \begin_layout Plain Layout
6655 einheitliche Klammergröße:
6656 \end_layout
6657
6658 \end_inset
6659 </cell>
6660 <cell alignment="center" valignment="top" usebox="none">
6661 \begin_inset Text
6662
6663 \begin_layout Plain Layout
6664 \begin_inset Formula $((A+B)(A-B))^{C}\raisebox{-4mm}{}$
6665 \end_inset
6666
6667
6668 \end_layout
6669
6670 \end_inset
6671 </cell>
6672 </row>
6673 <row>
6674 <cell alignment="center" valignment="top" usebox="none">
6675 \begin_inset Text
6676
6677 \begin_layout Plain Layout
6678 besser sieht das so aus:
6679 \end_layout
6680
6681 \end_inset
6682 </cell>
6683 <cell alignment="center" valignment="top" usebox="none">
6684 \begin_inset Text
6685
6686 \begin_layout Plain Layout
6687 \begin_inset Formula $\Big((A+B)(A-B)\Big)^{C}$
6688 \end_inset
6689
6690
6691 \end_layout
6692
6693 \end_inset
6694 </cell>
6695 </row>
6696 </lyxtabular>
6697
6698 \end_inset
6699
6700
6701 \begin_inset Note Note
6702 status collapsed
6703
6704 \begin_layout Plain Layout
6705
6706 \series bold
6707
6708 \backslash
6709 raisebox
6710 \series default
6711  dient nur
6712 \end_layout
6713
6714 \begin_layout Plain Layout
6715 als Abstandhalter.
6716 \end_layout
6717
6718 \end_inset
6719
6720
6721 \end_layout
6722
6723 \begin_layout Standard
6724 Für die zweite Formel wurde der Befehl 
6725 \series bold
6726
6727 \backslash
6728 Big((A+B)(A-B)
6729 \backslash
6730 Big)^
6731 \begin_inset ERT
6732 status collapsed
6733
6734 \begin_layout Plain Layout
6735
6736
6737 \backslash
6738 leer 
6739 \end_layout
6740
6741 \end_inset
6742
6743 C
6744 \series default
6745  verwendet.
6746 \end_layout
6747
6748 \begin_layout Standard
6749 Hier alle Klammergrößen in der Übersicht:
6750 \end_layout
6751
6752 \begin_layout Standard
6753 \align center
6754
6755 \backslash
6756 Bigg(
6757 \backslash
6758 exp
6759 \backslash
6760 bigg<
6761 \backslash
6762 Big[
6763 \backslash
6764 big{
6765 \backslash
6766 ln(3x)
6767 \backslash
6768 big}^2
6769 \begin_inset ERT
6770 status collapsed
6771
6772 \begin_layout Plain Layout
6773
6774
6775 \backslash
6776 leer 
6777 \end_layout
6778
6779 \end_inset
6780
6781
6782 \backslash
6783 sin(x)
6784 \backslash
6785 Big]^
6786 \begin_inset ERT
6787 status collapsed
6788
6789 \begin_layout Plain Layout
6790
6791
6792 \backslash
6793 leer 
6794 \end_layout
6795
6796 \end_inset
6797
6798 A
6799 \begin_inset ERT
6800 status collapsed
6801
6802 \begin_layout Plain Layout
6803
6804
6805 \backslash
6806 leer 
6807 \end_layout
6808
6809 \end_inset
6810
6811
6812 \backslash
6813 bigg>
6814 \backslash
6815 Bigg)^0,5
6816 \end_layout
6817
6818 \begin_layout Standard
6819 \align center
6820 \begin_inset Formula $\Bigg(\exp\bigg<\Big[\big\{\ln(3x)\big\}^{2}\sin(x)\Big]^{A}\bigg>\Bigg)^{0,5}$
6821 \end_inset
6822
6823
6824 \end_layout
6825
6826 \begin_layout Standard
6827 Es gibt außer den 
6828 \series bold
6829
6830 \backslash
6831 big
6832 \series default
6833 -Befehlen noch die Variante 
6834 \series bold
6835
6836 \backslash
6837 bigm
6838 \series default
6839
6840 \begin_inset Index idx
6841 status collapsed
6842
6843 \begin_layout Plain Layout
6844 Befehle ! B ! 
6845 \backslash
6846 bigm
6847 \end_layout
6848
6849 \end_inset
6850
6851 , die etwas mehr Leerraum zwischen Klammer und Klammerinhalt erzeugt und
6852  die Variante 
6853 \series bold
6854
6855 \backslash
6856 bigl
6857 \series default
6858 -
6859 \series bold
6860
6861 \backslash
6862 bigr
6863 \series default
6864
6865 \begin_inset Index idx
6866 status collapsed
6867
6868 \begin_layout Plain Layout
6869 Befehle ! B ! 
6870 \backslash
6871 bigl - 
6872 \backslash
6873 bigr
6874 \end_layout
6875
6876 \end_inset
6877
6878 , die keinen zusätzlichen Leerraum erzeugt.
6879  Das 
6880 \emph on
6881 l
6882 \emph default
6883  am Ende des Befehls 
6884 \series bold
6885
6886 \backslash
6887 bigl
6888 \series default
6889  steht für eine linke Klammer; für eine rechte Klammer wird dieses durch
6890  ein 
6891 \emph on
6892 r
6893 \emph default
6894  ersetzt.
6895  Eine linke oder rechte Klammer kann je eine öffnende oder schließende Klammer
6896  sein.
6897 \end_layout
6898
6899 \begin_layout Standard
6900 In der folgenden Tabelle sind die Varianten miteinander verglichen:
6901 \end_layout
6902
6903 \begin_layout Standard
6904 \align center
6905 \begin_inset Tabular
6906 <lyxtabular version="3" rows="5" columns="2">
6907 <features rotate="0" tabularvalignment="middle">
6908 <column alignment="center" valignment="middle">
6909 <column alignment="center" valignment="middle">
6910 <row>
6911 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
6912 \begin_inset Text
6913
6914 \begin_layout Plain Layout
6915 Befehl
6916 \end_layout
6917
6918 \end_inset
6919 </cell>
6920 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6921 \begin_inset Text
6922
6923 \begin_layout Plain Layout
6924 Ergebnis
6925 \begin_inset Note Note
6926 status collapsed
6927
6928 \begin_layout Plain Layout
6929
6930 \series bold
6931
6932 \backslash
6933 raisebox
6934 \series default
6935  dient nur als Abstandhalter.
6936 \end_layout
6937
6938 \end_inset
6939
6940
6941 \end_layout
6942
6943 \end_inset
6944 </cell>
6945 </row>
6946 <row>
6947 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6948 \begin_inset Text
6949
6950 \begin_layout Plain Layout
6951
6952 \backslash
6953 Bigm(
6954 \backslash
6955 bigm(
6956 \backslash
6957 ln(3x)
6958 \backslash
6959 bigm)^2
6960 \begin_inset ERT
6961 status collapsed
6962
6963 \begin_layout Plain Layout
6964
6965
6966 \backslash
6967 leer 
6968 \end_layout
6969
6970 \end_inset
6971
6972
6973 \backslash
6974 Bigm)
6975 \end_layout
6976
6977 \end_inset
6978 </cell>
6979 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6980 \begin_inset Text
6981
6982 \begin_layout Plain Layout
6983 \begin_inset Formula $\raisebox{5.5mm}{}\Bigm(\bigm(\ln(3x)\bigm)^{2}\Bigm)\raisebox{-3.25mm}{}$
6984 \end_inset
6985
6986
6987 \end_layout
6988
6989 \end_inset
6990 </cell>
6991 </row>
6992 <row>
6993 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6994 \begin_inset Text
6995
6996 \begin_layout Plain Layout
6997
6998 \backslash
6999 Big(
7000 \backslash
7001 big(
7002 \backslash
7003 ln(3x)
7004 \backslash
7005 big)^2
7006 \begin_inset ERT
7007 status collapsed
7008
7009 \begin_layout Plain Layout
7010
7011
7012 \backslash
7013 leer 
7014 \end_layout
7015
7016 \end_inset
7017
7018
7019 \backslash
7020 Big)
7021 \end_layout
7022
7023 \end_inset
7024 </cell>
7025 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7026 \begin_inset Text
7027
7028 \begin_layout Plain Layout
7029 \begin_inset Formula $\raisebox{5.5mm}{}\Big(\big(\ln(3x)\big)^{2}\Big)\raisebox{-3.25mm}{}$
7030 \end_inset
7031
7032
7033 \end_layout
7034
7035 \end_inset
7036 </cell>
7037 </row>
7038 <row>
7039 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
7040 \begin_inset Text
7041
7042 \begin_layout Plain Layout
7043
7044 \backslash
7045 Bigl(
7046 \backslash
7047 bigl(
7048 \backslash
7049 ln(3x)
7050 \backslash
7051 bigr)^2
7052 \begin_inset ERT
7053 status collapsed
7054
7055 \begin_layout Plain Layout
7056
7057
7058 \backslash
7059 leer 
7060 \end_layout
7061
7062 \end_inset
7063
7064
7065 \backslash
7066 Bigr)
7067 \end_layout
7068
7069 \end_inset
7070 </cell>
7071 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
7072 \begin_inset Text
7073
7074 \begin_layout Plain Layout
7075 \begin_inset Formula $\raisebox{5.5mm}{}\Bigl(\bigl(\ln(3x)\bigr)^{2}\Bigr)\raisebox{-3.25mm}{}$
7076 \end_inset
7077
7078
7079 \end_layout
7080
7081 \end_inset
7082 </cell>
7083 </row>
7084 <row>
7085 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
7086 \begin_inset Text
7087
7088 \begin_layout Plain Layout
7089
7090 \backslash
7091 bigl)
7092 \backslash
7093 ln(3x)
7094 \backslash
7095 bigr(
7096 \end_layout
7097
7098 \end_inset
7099 </cell>
7100 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
7101 \begin_inset Text
7102
7103 \begin_layout Plain Layout
7104 \begin_inset Formula $\raisebox{4.5mm}{}\bigl)\ln(3x)\bigr(\raisebox{-2mm}{}$
7105 \end_inset
7106
7107
7108 \end_layout
7109
7110 \end_inset
7111 </cell>
7112 </row>
7113 </lyxtabular>
7114
7115 \end_inset
7116
7117
7118 \end_layout
7119
7120 \begin_layout Subsubsection
7121 Automatische Klammergrößen
7122 \begin_inset CommandInset label
7123 LatexCommand label
7124 name "sub:Automatische-Klammergrößen"
7125
7126 \end_inset
7127
7128
7129 \begin_inset Index idx
7130 status collapsed
7131
7132 \begin_layout Plain Layout
7133 Klammergrößen ! automatische
7134 \end_layout
7135
7136 \end_inset
7137
7138
7139 \end_layout
7140
7141 \begin_layout Standard
7142 Klammern variabler Größe können mit den Befehlen 
7143 \series bold
7144
7145 \backslash
7146 left
7147 \series default
7148
7149 \begin_inset Index idx
7150 status collapsed
7151
7152 \begin_layout Plain Layout
7153 Befehle ! L ! 
7154 \backslash
7155 left
7156 \end_layout
7157
7158 \end_inset
7159
7160  und 
7161 \series bold
7162
7163 \backslash
7164 right
7165 \series default
7166
7167 \begin_inset Index idx
7168 status collapsed
7169
7170 \begin_layout Plain Layout
7171 Befehle ! R ! 
7172 \backslash
7173 right
7174 \end_layout
7175
7176 \end_inset
7177
7178  oder über den Mathe-Werkzeugleistenknopf
7179 \family sans
7180  
7181 \family default
7182
7183 \begin_inset Graphics
7184         filename ../../images/dialog-show_mathdelimiter.png
7185         scale 85
7186
7187 \end_inset
7188
7189  eingefügt werden.
7190  Auf 
7191 \series bold
7192
7193 \backslash
7194 left
7195 \series default
7196  und 
7197 \series bold
7198
7199 \backslash
7200 right
7201 \series default
7202  muss unmittelbar die gewünschte Klammer folgen.
7203  Die Klammergröße wird dann bei der Ausgabe automatisch berechnet.
7204 \end_layout
7205
7206 \begin_layout Standard
7207 \align center
7208 normale Klammer: Der Befehl 
7209 \series bold
7210
7211 \backslash
7212 ln(
7213 \backslash
7214 frac
7215 \begin_inset ERT
7216 status collapsed
7217
7218 \begin_layout Plain Layout
7219
7220
7221 \backslash
7222 leer 
7223 \end_layout
7224
7225 \end_inset
7226
7227 A
7228 \begin_inset Formula $\downarrow$
7229 \end_inset
7230
7231 C
7232 \begin_inset ERT
7233 status collapsed
7234
7235 \begin_layout Plain Layout
7236
7237
7238 \backslash
7239 leer 
7240 \end_layout
7241
7242 \end_inset
7243
7244 )
7245 \series default
7246  ergibt
7247 \begin_inset Formula 
7248 \[
7249 \ln(\frac{A}{C})
7250 \]
7251
7252 \end_inset
7253
7254
7255 \end_layout
7256
7257 \begin_layout Standard
7258 \align center
7259 mehrzeilige Klammer: Der Befehl 
7260 \series bold
7261
7262 \backslash
7263 ln
7264 \backslash
7265 left(
7266 \backslash
7267 frac
7268 \begin_inset ERT
7269 status collapsed
7270
7271 \begin_layout Plain Layout
7272
7273
7274 \backslash
7275 leer 
7276 \end_layout
7277
7278 \end_inset
7279
7280 A
7281 \begin_inset Formula $\downarrow$
7282 \end_inset
7283
7284 C
7285 \begin_inset ERT
7286 status collapsed
7287
7288 \begin_layout Plain Layout
7289
7290
7291 \backslash
7292 leer 
7293 \end_layout
7294
7295 \end_inset
7296
7297
7298 \backslash
7299 right)
7300 \series default
7301  ergibt
7302 \begin_inset Formula 
7303 \[
7304 \ln\left(\frac{A}{C}\right)
7305 \]
7306
7307 \end_inset
7308
7309
7310 \end_layout
7311
7312 \begin_layout Standard
7313 An Stelle von 
7314 \series bold
7315
7316 \backslash
7317 left
7318 \series default
7319  und 
7320 \series bold
7321
7322 \backslash
7323 right
7324 \series default
7325  kann man die Tastenkürzel 
7326 \family sans
7327 Alt+M
7328 \begin_inset space ~
7329 \end_inset
7330
7331 Klammer
7332 \family default
7333  verwenden.
7334  Das hat den Vorteil, dass man in LyX sofort die wahre Klammergröße sieht
7335  und dass die rechte Klammer gleich mit erstellt wird.
7336 \begin_inset Newline newline
7337 \end_inset
7338
7339 Der Befehl für das letzte Beispiel würde dann lauten: 
7340 \series bold
7341
7342 \backslash
7343 ln Alt+M
7344 \series default
7345  
7346 \series bold
7347 (
7348 \backslash
7349 frac
7350 \begin_inset ERT
7351 status collapsed
7352
7353 \begin_layout Plain Layout
7354
7355
7356 \backslash
7357 leer 
7358 \end_layout
7359
7360 \end_inset
7361
7362 A
7363 \begin_inset Formula $\downarrow$
7364 \end_inset
7365
7366 C
7367 \end_layout
7368
7369 \begin_layout Standard
7370 Will man nur eine Klammerhälfte erstellen, schreibt man für die weggelassene
7371  Klammer einen Punkt.
7372  So ergibt z.
7373 \begin_inset space \thinspace{}
7374 \end_inset
7375
7376 B.
7377  der Befehl 
7378 \series bold
7379
7380 \backslash
7381 left.
7382 \backslash
7383 frac
7384 \begin_inset ERT
7385 status collapsed
7386
7387 \begin_layout Plain Layout
7388
7389
7390 \backslash
7391 leer 
7392 \end_layout
7393
7394 \end_inset
7395
7396 A
7397 \begin_inset Formula $\downarrow$
7398 \end_inset
7399
7400 B
7401 \begin_inset ERT
7402 status collapsed
7403
7404 \begin_layout Plain Layout
7405
7406
7407 \backslash
7408 leer 
7409 \end_layout
7410
7411 \end_inset
7412
7413
7414 \backslash
7415 right}
7416 \series default
7417
7418 \begin_inset space \thinspace{}
7419 \end_inset
7420
7421 :
7422 \series bold
7423
7424 \begin_inset Formula 
7425 \[
7426 \left.\frac{A}{B}\right\} 
7427 \]
7428
7429 \end_inset
7430
7431
7432 \series default
7433 Die Befehle 
7434 \series bold
7435
7436 \backslash
7437 left
7438 \series default
7439  und 
7440 \series bold
7441
7442 \backslash
7443 right
7444 \series default
7445  werden beim Neu laden des Dokuments von LyX in Klammern der richtigen Größe
7446  umgewandelt.
7447  Für eine weggelassene Klammer erscheint in LyX eine gestrichelte Linie.
7448 \end_layout
7449
7450 \begin_layout Standard
7451 \begin_inset VSpace bigskip
7452 \end_inset
7453
7454 Da alle gängigen LaTeX-Distributionen eTeX, eine Erweiterung von LaTeX,
7455  verwenden, steht für alle Klammern und Begrenzungszeichen zusätzlich der
7456  Befehl 
7457 \series bold
7458
7459 \backslash
7460 middle
7461 \series default
7462
7463 \begin_inset Index idx
7464 status collapsed
7465
7466 \begin_layout Plain Layout
7467 Befehle ! M ! 
7468 \backslash
7469 middle
7470 \end_layout
7471
7472 \end_inset
7473
7474  zur Verfügung.
7475  Durch diesen wird das folgende Zeichen an die Höhe der umgebenden Klammern
7476  angepasst, was z.
7477 \begin_inset space \thinspace{}
7478 \end_inset
7479
7480 B.
7481  für physikalische Vektoren von Nutzen ist:
7482 \begin_inset Formula 
7483 \[
7484 \left\langle \phi\:\middle|\: J=\frac{3}{2}\,,\, M_{J}\right\rangle 
7485 \]
7486
7487 \end_inset
7488
7489 Für physikalische Vektoren gibt es ein spezielles LaTeX-Paket, das in 
7490 \begin_inset CommandInset ref
7491 LatexCommand ref
7492 reference "sub:Physikalische-Vektoren"
7493
7494 \end_inset
7495
7496  beschrieben ist.
7497 \end_layout
7498
7499 \begin_layout Subsection
7500 Horizontale Klammern
7501 \begin_inset Index idx
7502 status collapsed
7503
7504 \begin_layout Plain Layout
7505 Klammern ! horizontale
7506 \end_layout
7507
7508 \end_inset
7509
7510
7511 \end_layout
7512
7513 \begin_layout Standard
7514 \align center
7515 \begin_inset Tabular
7516 <lyxtabular version="3" rows="4" columns="2">
7517 <features rotate="0" tabularvalignment="middle">
7518 <column alignment="center" valignment="top" width="0pt">
7519 <column alignment="center" valignment="top" width="0pt">
7520 <row>
7521 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
7522 \begin_inset Text
7523
7524 \begin_layout Plain Layout
7525 Befehl
7526 \begin_inset Note Note
7527 status collapsed
7528
7529 \begin_layout Plain Layout
7530
7531 \series bold
7532
7533 \backslash
7534 raisebox
7535 \series default
7536  dient nur als Abstandhalter.
7537 \end_layout
7538
7539 \end_inset
7540
7541
7542 \end_layout
7543
7544 \end_inset
7545 </cell>
7546 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
7547 \begin_inset Text
7548
7549 \begin_layout Plain Layout
7550 Ergebnis
7551 \end_layout
7552
7553 \end_inset
7554 </cell>
7555 </row>
7556 <row>
7557 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7558 \begin_inset Text
7559
7560 \begin_layout Plain Layout
7561 \begin_inset ERT
7562 status collapsed
7563
7564 \begin_layout Plain Layout
7565
7566
7567 \backslash
7568 raisebox{2.3mm}{
7569 \end_layout
7570
7571 \end_inset
7572
7573
7574 \backslash
7575 overbrace
7576 \begin_inset ERT
7577 status collapsed
7578
7579 \begin_layout Plain Layout
7580
7581
7582 \backslash
7583 leer 
7584 \end_layout
7585
7586 \end_inset
7587
7588 A+B
7589 \begin_inset ERT
7590 status collapsed
7591
7592 \begin_layout Plain Layout
7593
7594
7595 \backslash
7596 leer 
7597 \end_layout
7598
7599 \end_inset
7600
7601 ^
7602 \begin_inset ERT
7603 status collapsed
7604
7605 \begin_layout Plain Layout
7606
7607
7608 \backslash
7609 leer 
7610 \end_layout
7611
7612 \end_inset
7613
7614 3
7615 \begin_inset ERT
7616 status collapsed
7617
7618 \begin_layout Plain Layout
7619
7620 }
7621 \end_layout
7622
7623 \end_inset
7624
7625
7626 \begin_inset Index idx
7627 status collapsed
7628
7629 \begin_layout Plain Layout
7630 Befehle ! O ! 
7631 \backslash
7632 overbrace
7633 \end_layout
7634
7635 \end_inset
7636
7637
7638 \end_layout
7639
7640 \end_inset
7641 </cell>
7642 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7643 \begin_inset Text
7644
7645 \begin_layout Plain Layout
7646 \begin_inset Formula $\overbrace{A+B}^{3}$
7647 \end_inset
7648
7649
7650 \end_layout
7651
7652 \end_inset
7653 </cell>
7654 </row>
7655 <row>
7656 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
7657 \begin_inset Text
7658
7659 \begin_layout Plain Layout
7660 \begin_inset ERT
7661 status collapsed
7662
7663 \begin_layout Plain Layout
7664
7665
7666 \backslash
7667 raisebox{-2.2mm}{
7668 \end_layout
7669
7670 \end_inset
7671
7672
7673 \backslash
7674 underbrace
7675 \begin_inset ERT
7676 status collapsed
7677
7678 \begin_layout Plain Layout
7679
7680
7681 \backslash
7682 leer 
7683 \end_layout
7684
7685 \end_inset
7686
7687 A+B
7688 \begin_inset ERT
7689 status collapsed
7690
7691 \begin_layout Plain Layout
7692
7693
7694 \backslash
7695 leer 
7696 \end_layout
7697
7698 \end_inset
7699
7700 _5
7701 \begin_inset ERT
7702 status collapsed
7703
7704 \begin_layout Plain Layout
7705
7706 }
7707 \end_layout
7708
7709 \end_inset
7710
7711
7712 \begin_inset Index idx
7713 status collapsed
7714
7715 \begin_layout Plain Layout
7716 Befehle ! U ! 
7717 \backslash
7718 underbrace
7719 \end_layout
7720
7721 \end_inset
7722
7723
7724 \end_layout
7725
7726 \end_inset
7727 </cell>
7728 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
7729 \begin_inset Text
7730
7731 \begin_layout Plain Layout
7732 \begin_inset Formula $\underbrace{A+B}_{5}$
7733 \end_inset
7734
7735
7736 \end_layout
7737
7738 \end_inset
7739 </cell>
7740 </row>
7741 <row>
7742 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
7743 \begin_inset Text
7744
7745 \begin_layout Plain Layout
7746
7747 \backslash
7748 overbrace
7749 \begin_inset ERT
7750 status collapsed
7751
7752 \begin_layout Plain Layout
7753
7754
7755 \backslash
7756 leer 
7757 \end_layout
7758
7759 \end_inset
7760
7761
7762 \backslash
7763 underbrace
7764 \begin_inset ERT
7765 status collapsed
7766
7767 \begin_layout Plain Layout
7768
7769
7770 \backslash
7771 leer 
7772 \end_layout
7773
7774 \end_inset
7775
7776 A+B_w
7777 \begin_inset ERT
7778 status collapsed
7779
7780 \begin_layout Plain Layout
7781
7782
7783 \backslash
7784 leer 
7785 \end_layout
7786
7787 \end_inset
7788
7789
7790 \begin_inset ERT
7791 status collapsed
7792
7793 \begin_layout Plain Layout
7794
7795
7796 \backslash
7797 leer 
7798 \end_layout
7799
7800 \end_inset
7801
7802 _7
7803 \begin_inset ERT
7804 status collapsed
7805
7806 \begin_layout Plain Layout
7807
7808
7809 \backslash
7810 leer 
7811 \end_layout
7812
7813 \end_inset
7814
7815
7816 \begin_inset ERT
7817 status collapsed
7818
7819 \begin_layout Plain Layout
7820
7821
7822 \backslash
7823 leer 
7824 \end_layout
7825
7826 \end_inset
7827
7828 ^
7829 \begin_inset ERT
7830 status collapsed
7831
7832 \begin_layout Plain Layout
7833
7834
7835 \backslash
7836 leer 
7837 \end_layout
7838
7839 \end_inset
7840
7841 C
7842 \end_layout
7843
7844 \end_inset
7845 </cell>
7846 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
7847 \begin_inset Text
7848
7849 \begin_layout Plain Layout
7850 \begin_inset Formula $\overbrace{\underbrace{A+B_{w}}_{7}}^{C}$
7851 \end_inset
7852
7853
7854 \end_layout
7855
7856 \end_inset
7857 </cell>
7858 </row>
7859 </lyxtabular>
7860
7861 \end_inset
7862
7863
7864 \end_layout
7865
7866 \begin_layout Standard
7867 Beim letzten Beispiel spielt es keine Rolle, ob man zuerst 
7868 \series bold
7869
7870 \backslash
7871 overbrace
7872 \series default
7873  oder 
7874 \series bold
7875
7876 \backslash
7877 underbrace
7878 \series default
7879  eingibt.
7880 \end_layout
7881
7882 \begin_layout Standard
7883 \begin_inset VSpace bigskip
7884 \end_inset
7885
7886 Benötigt man Klammern, die sich überschneiden, muss man die in 
7887 \begin_inset CommandInset ref
7888 LatexCommand ref
7889 reference "sec:Mehrzeilige-Formeln"
7890
7891 \end_inset
7892
7893  beschriebenen mehrzeiligen Formeln verwenden:
7894 \begin_inset Formula 
7895 \begin{eqnarray*}
7896 A & = & \underbrace{gggg+bbqq}_{r}+\: dddd\\
7897  &  & \hphantom{gggg+\:}\underbrace{\hphantom{bbqq+dddd}}_{s}
7898 \end{eqnarray*}
7899
7900 \end_inset
7901
7902 In die erste Zeile wird die Formel zusammen mit der ersten Klammer eingegeben.
7903  Dabei ist es wichtig, dass vor dem ersten 
7904 \begin_inset Formula $d$
7905 \end_inset
7906
7907  der Abstandsbefehl
7908 \begin_inset Foot
7909 status collapsed
7910
7911 \begin_layout Plain Layout
7912 Abstandsbefehle sind in 
7913 \begin_inset CommandInset ref
7914 LatexCommand ref
7915 reference "sub:Vordefinierter-Leerraum"
7916
7917 \end_inset
7918
7919  erklärt.
7920 \end_layout
7921
7922 \end_inset
7923
7924  
7925 \series bold
7926
7927 \backslash
7928 :
7929 \series default
7930  eingegeben wird, denn die nach dem 
7931 \begin_inset Formula $q$
7932 \end_inset
7933
7934  endende Klammer verhindert, dass das nachfolgende 
7935 \begin_inset Quotes gld
7936 \end_inset
7937
7938 +
7939 \begin_inset Quotes grd
7940 \end_inset
7941
7942  von Leerraum umgeben ist.
7943 \begin_inset Foot
7944 status collapsed
7945
7946 \begin_layout Plain Layout
7947 weil eine Klammer nicht als Zeichen gilt, siehe 
7948 \begin_inset CommandInset ref
7949 LatexCommand ref
7950 reference "sub:Binäre-Operatoren"
7951
7952 \end_inset
7953
7954
7955 \end_layout
7956
7957 \end_inset
7958
7959  In die zweite Zeile wird die zweite Klammer eingegeben.
7960  Da sie vor dem 
7961 \begin_inset Formula $b$
7962 \end_inset
7963
7964  beginnen soll, gibt man zuerst 
7965 \series bold
7966
7967 \backslash
7968 hphantom{gggg+
7969 \backslash
7970 :}
7971 \series default
7972  ein.
7973 \begin_inset Foot
7974 status collapsed
7975
7976 \begin_layout Plain Layout
7977 mehr zu 
7978 \series bold
7979
7980 \backslash
7981 hphantom
7982 \series default
7983  siehe 
7984 \begin_inset CommandInset ref
7985 LatexCommand ref
7986 reference "sub:Platzhalter"
7987
7988 \end_inset
7989
7990 .
7991 \end_layout
7992
7993 \end_inset
7994
7995  Dieser Leerraum wird benötigt, weil das 
7996 \begin_inset Quotes gld
7997 \end_inset
7998
7999 +
8000 \begin_inset Quotes grd
8001 \end_inset
8002
8003  in der Formel auch von Leerraum umgeben ist.
8004  Die Klammer wird unter den Befehl 
8005 \series bold
8006
8007 \backslash
8008 hphantom{bbqq+dddd}
8009 \series default
8010  gesetzt.
8011 \end_layout
8012
8013 \begin_layout Standard
8014 Komplizierter wird es, wenn sich Klammern über und unter der Formel überschneide
8015 n, wie in folgendem Beispiel:
8016 \begin_inset ERT
8017 status collapsed
8018
8019 \begin_layout Plain Layout
8020
8021
8022 \backslash
8023 setlength{
8024 \backslash
8025 jot}{-6pt}
8026 \end_layout
8027
8028 \end_inset
8029
8030
8031 \begin_inset Formula 
8032 \begin{eqnarray*}
8033  &  & \hphantom{gggg+\:}\overbrace{\hphantom{bbqq+dddd}}^{s}\\
8034 A & = & \underbrace{gggg+bbqq}_{r}+\: dddd
8035 \end{eqnarray*}
8036
8037 \end_inset
8038
8039
8040 \begin_inset ERT
8041 status collapsed
8042
8043 \begin_layout Plain Layout
8044
8045
8046 \backslash
8047 setlength{
8048 \backslash
8049 jot}{3pt}
8050 \end_layout
8051
8052 \end_inset
8053
8054 Die erste Formelzeile ist gleich der zweiten Zeile des vorigen Beispiels,
8055  mit dem Unterschied, dass sich die Klammer oben befindet.
8056  Die zweite Zeile enthält die Formel zusammen mit der zweiten Klammer.
8057  Damit sich zwischen oberer Klammer in der ersten Zeile und der Formel in
8058  der zweiten Zeile kein Leerraum befindet, muss der Zeilenabstand verändert
8059  werden.
8060  Aufgrund eines Fehlers in LyX ist dies nicht ohne Weiteres möglich
8061 \begin_inset Foot
8062 status collapsed
8063
8064 \begin_layout Plain Layout
8065 \begin_inset CommandInset href
8066 LatexCommand href
8067 name "LyX-Fehler #1505"
8068 target "http://www.lyx.org/trac/ticket/1505"
8069
8070 \end_inset
8071
8072
8073 \end_layout
8074
8075 \end_inset
8076
8077 .
8078  Es muss als Lösung des Problems der globale Formelzeilenabstand 
8079 \series bold
8080
8081 \backslash
8082 jot
8083 \series default
8084
8085 \begin_inset Index idx
8086 status collapsed
8087
8088 \begin_layout Plain Layout
8089 Befehle ! J ! 
8090 \backslash
8091 jot
8092 \end_layout
8093
8094 \end_inset
8095
8096  vor der Formel mit dem Befehl 
8097 \series bold
8098
8099 \backslash
8100 setlength{
8101 \backslash
8102 jot}{-6pt}
8103 \series default
8104  im TeX-Modus auf den Wert -6
8105 \begin_inset space \thinspace{}
8106 \end_inset
8107
8108 pt geändert.
8109  Nach der Formel wird 
8110 \series bold
8111
8112 \backslash
8113 jot
8114 \series default
8115  mit demselben Befehl wieder auf den Standardwert 3
8116 \begin_inset space \thinspace{}
8117 \end_inset
8118
8119 pt zurückgesetzt.
8120  Genaueres zum Zeilenabstand in Formeln ist in 
8121 \begin_inset CommandInset ref
8122 LatexCommand ref
8123 reference "sub:Zeilenabstand"
8124
8125 \end_inset
8126
8127  erklärt.
8128 \end_layout
8129
8130 \begin_layout Section
8131 Pfeile
8132 \begin_inset Index idx
8133 status collapsed
8134
8135 \begin_layout Plain Layout
8136 Pfeile
8137 \end_layout
8138
8139 \end_inset
8140
8141
8142 \end_layout
8143
8144 \begin_layout Standard
8145 Pfeile können über den Mathe-Werkzeugleistenknopf 
8146 \begin_inset Graphics
8147         filename ../../images/math/leftarrow.png
8148         scale 85
8149
8150 \end_inset
8151
8152  oder mit den Befehlen eingefügt werden, die in den folgenden Unterkapiteln
8153  aufgelistet sind.
8154 \end_layout
8155
8156 \begin_layout Subsection
8157 Horizontale Pfeile
8158 \begin_inset Index idx
8159 status collapsed
8160
8161 \begin_layout Plain Layout
8162 Pfeile ! horizontale
8163 \end_layout
8164
8165 \end_inset
8166
8167
8168 \end_layout
8169
8170 \begin_layout Standard
8171 \begin_inset space \hfill{}
8172 \end_inset
8173
8174
8175 \begin_inset Tabular
8176 <lyxtabular version="3" rows="8" columns="2">
8177 <features rotate="0" tabularvalignment="middle">
8178 <column alignment="center" valignment="top" width="0pt">
8179 <column alignment="center" valignment="top" width="0pt">
8180 <row>
8181 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
8182 \begin_inset Text
8183
8184 \begin_layout Plain Layout
8185 Befehl
8186 \end_layout
8187
8188 \end_inset
8189 </cell>
8190 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8191 \begin_inset Text
8192
8193 \begin_layout Plain Layout
8194 Ergebnis
8195 \end_layout
8196
8197 \end_inset
8198 </cell>
8199 </row>
8200 <row>
8201 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8202 \begin_inset Text
8203
8204 \begin_layout Plain Layout
8205
8206 \backslash
8207 gets
8208 \end_layout
8209
8210 \end_inset
8211 </cell>
8212 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8213 \begin_inset Text
8214
8215 \begin_layout Plain Layout
8216 \begin_inset Formula $\gets$
8217 \end_inset
8218
8219
8220 \end_layout
8221
8222 \end_inset
8223 </cell>
8224 </row>
8225 <row>
8226 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8227 \begin_inset Text
8228
8229 \begin_layout Plain Layout
8230
8231 \backslash
8232 Leftarrow
8233 \end_layout
8234
8235 \end_inset
8236 </cell>
8237 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8238 \begin_inset Text
8239
8240 \begin_layout Plain Layout
8241 \begin_inset Formula $\Leftarrow$
8242 \end_inset
8243
8244
8245 \end_layout
8246
8247 \end_inset
8248 </cell>
8249 </row>
8250 <row>
8251 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
8252 \begin_inset Text
8253
8254 \begin_layout Plain Layout
8255
8256 \backslash
8257 longleftarrow
8258 \end_layout
8259
8260 \end_inset
8261 </cell>
8262 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8263 \begin_inset Text
8264
8265 \begin_layout Plain Layout
8266 \begin_inset Formula $\longleftarrow$
8267 \end_inset
8268
8269
8270 \end_layout
8271
8272 \end_inset
8273 </cell>
8274 </row>
8275 <row>
8276 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
8277 \begin_inset Text
8278
8279 \begin_layout Plain Layout
8280
8281 \backslash
8282 Longleftarrow
8283 \end_layout
8284
8285 \end_inset
8286 </cell>
8287 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
8288 \begin_inset Text
8289
8290 \begin_layout Plain Layout
8291 \begin_inset Formula $\Longleftarrow$
8292 \end_inset
8293
8294
8295 \end_layout
8296
8297 \end_inset
8298 </cell>
8299 </row>
8300 <row>
8301 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
8302 \begin_inset Text
8303
8304 \begin_layout Plain Layout
8305
8306 \backslash
8307 leftharpoonup
8308 \end_layout
8309
8310 \end_inset
8311 </cell>
8312 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
8313 \begin_inset Text
8314
8315 \begin_layout Plain Layout
8316 \begin_inset Formula $\leftharpoonup$
8317 \end_inset
8318
8319
8320 \end_layout
8321
8322 \end_inset
8323 </cell>
8324 </row>
8325 <row>
8326 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
8327 \begin_inset Text
8328
8329 \begin_layout Plain Layout
8330
8331 \backslash
8332 leftharpoondown
8333 \end_layout
8334
8335 \end_inset
8336 </cell>
8337 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
8338 \begin_inset Text
8339
8340 \begin_layout Plain Layout
8341 \begin_inset Formula $\leftharpoondown$
8342 \end_inset
8343
8344
8345 \end_layout
8346
8347 \end_inset
8348 </cell>
8349 </row>
8350 <row>
8351 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
8352 \begin_inset Text
8353
8354 \begin_layout Plain Layout
8355
8356 \backslash
8357 hookleftarrow
8358 \end_layout
8359
8360 \end_inset
8361 </cell>
8362 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
8363 \begin_inset Text
8364
8365 \begin_layout Plain Layout
8366 \begin_inset Formula $\hookleftarrow$
8367 \end_inset
8368
8369
8370 \end_layout
8371
8372 \end_inset
8373 </cell>
8374 </row>
8375 </lyxtabular>
8376
8377 \end_inset
8378
8379
8380 \begin_inset space \hfill{}
8381 \end_inset
8382
8383
8384 \begin_inset Tabular
8385 <lyxtabular version="3" rows="8" columns="2">
8386 <features rotate="0" tabularvalignment="middle">
8387 <column alignment="center" valignment="top" width="0pt">
8388 <column alignment="center" valignment="top" width="0pt">
8389 <row>
8390 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
8391 \begin_inset Text
8392
8393 \begin_layout Plain Layout
8394 Befehl
8395 \end_layout
8396
8397 \end_inset
8398 </cell>
8399 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8400 \begin_inset Text
8401
8402 \begin_layout Plain Layout
8403 Ergebnis
8404 \end_layout
8405
8406 \end_inset
8407 </cell>
8408 </row>
8409 <row>
8410 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8411 \begin_inset Text
8412
8413 \begin_layout Plain Layout
8414
8415 \backslash
8416 to
8417 \end_layout
8418
8419 \end_inset
8420 </cell>
8421 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8422 \begin_inset Text
8423
8424 \begin_layout Plain Layout
8425 \begin_inset Formula $\to$
8426 \end_inset
8427
8428
8429 \end_layout
8430
8431 \end_inset
8432 </cell>
8433 </row>
8434 <row>
8435 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8436 \begin_inset Text
8437
8438 \begin_layout Plain Layout
8439
8440 \backslash
8441 Rightarrow
8442 \end_layout
8443
8444 \end_inset
8445 </cell>
8446 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8447 \begin_inset Text
8448
8449 \begin_layout Plain Layout
8450 \begin_inset Formula $\Rightarrow$
8451 \end_inset
8452
8453
8454 \end_layout
8455
8456 \end_inset
8457 </cell>
8458 </row>
8459 <row>
8460 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8461 \begin_inset Text
8462
8463 \begin_layout Plain Layout
8464
8465 \backslash
8466 longrightarrow
8467 \end_layout
8468
8469 \end_inset
8470 </cell>
8471 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8472 \begin_inset Text
8473
8474 \begin_layout Plain Layout
8475 \begin_inset Formula $\longrightarrow$
8476 \end_inset
8477
8478
8479 \end_layout
8480
8481 \end_inset
8482 </cell>
8483 </row>
8484 <row>
8485 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8486 \begin_inset Text
8487
8488 \begin_layout Plain Layout
8489
8490 \backslash
8491 Longrightarrow
8492 \end_layout
8493
8494 \end_inset
8495 </cell>
8496 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8497 \begin_inset Text
8498
8499 \begin_layout Plain Layout
8500 \begin_inset Formula $\Longrightarrow$
8501 \end_inset
8502
8503
8504 \end_layout
8505
8506 \end_inset
8507 </cell>
8508 </row>
8509 <row>
8510 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8511 \begin_inset Text
8512
8513 \begin_layout Plain Layout
8514
8515 \backslash
8516 rightharpoonup
8517 \end_layout
8518
8519 \end_inset
8520 </cell>
8521 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8522 \begin_inset Text
8523
8524 \begin_layout Plain Layout
8525 \begin_inset Formula $\rightharpoonup$
8526 \end_inset
8527
8528
8529 \end_layout
8530
8531 \end_inset
8532 </cell>
8533 </row>
8534 <row>
8535 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
8536 \begin_inset Text
8537
8538 \begin_layout Plain Layout
8539
8540 \backslash
8541 rightharpoondown
8542 \end_layout
8543
8544 \end_inset
8545 </cell>
8546 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8547 \begin_inset Text
8548
8549 \begin_layout Plain Layout
8550 \begin_inset Formula $\rightharpoondown$
8551 \end_inset
8552
8553
8554 \end_layout
8555
8556 \end_inset
8557 </cell>
8558 </row>
8559 <row>
8560 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
8561 \begin_inset Text
8562
8563 \begin_layout Plain Layout
8564
8565 \backslash
8566 hookrightarrow
8567 \end_layout
8568
8569 \end_inset
8570 </cell>
8571 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
8572 \begin_inset Text
8573
8574 \begin_layout Plain Layout
8575 \begin_inset Formula $\hookrightarrow$
8576 \end_inset
8577
8578
8579 \end_layout
8580
8581 \end_inset
8582 </cell>
8583 </row>
8584 </lyxtabular>
8585
8586 \end_inset
8587
8588
8589 \begin_inset space \hfill{}
8590 \end_inset
8591
8592
8593 \end_layout
8594
8595 \begin_layout Standard
8596 \begin_inset space \hfill{}
8597 \end_inset
8598
8599
8600 \begin_inset Tabular
8601 <lyxtabular version="3" rows="6" columns="2">
8602 <features rotate="0" tabularvalignment="middle">
8603 <column alignment="center" valignment="top" width="0pt">
8604 <column alignment="center" valignment="top" width="0pt">
8605 <row>
8606 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
8607 \begin_inset Text
8608
8609 \begin_layout Plain Layout
8610 Befehl
8611 \end_layout
8612
8613 \end_inset
8614 </cell>
8615 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8616 \begin_inset Text
8617
8618 \begin_layout Plain Layout
8619 Ergebnis
8620 \end_layout
8621
8622 \end_inset
8623 </cell>
8624 </row>
8625 <row>
8626 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8627 \begin_inset Text
8628
8629 \begin_layout Plain Layout
8630
8631 \backslash
8632 leftrightarrow
8633 \end_layout
8634
8635 \end_inset
8636 </cell>
8637 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8638 \begin_inset Text
8639
8640 \begin_layout Plain Layout
8641 \begin_inset Formula $\leftrightarrow$
8642 \end_inset
8643
8644
8645 \end_layout
8646
8647 \end_inset
8648 </cell>
8649 </row>
8650 <row>
8651 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8652 \begin_inset Text
8653
8654 \begin_layout Plain Layout
8655
8656 \backslash
8657 Leftrightarrow
8658 \end_layout
8659
8660 \end_inset
8661 </cell>
8662 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8663 \begin_inset Text
8664
8665 \begin_layout Plain Layout
8666 \begin_inset Formula $\Leftrightarrow$
8667 \end_inset
8668
8669
8670 \end_layout
8671
8672 \end_inset
8673 </cell>
8674 </row>
8675 <row>
8676 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8677 \begin_inset Text
8678
8679 \begin_layout Plain Layout
8680
8681 \backslash
8682 longleftrightarrow
8683 \end_layout
8684
8685 \end_inset
8686 </cell>
8687 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8688 \begin_inset Text
8689
8690 \begin_layout Plain Layout
8691 \begin_inset Formula $\longleftrightarrow$
8692 \end_inset
8693
8694
8695 \end_layout
8696
8697 \end_inset
8698 </cell>
8699 </row>
8700 <row>
8701 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8702 \begin_inset Text
8703
8704 \begin_layout Plain Layout
8705
8706 \backslash
8707 Longleftrightarrow
8708 \end_layout
8709
8710 \end_inset
8711 </cell>
8712 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8713 \begin_inset Text
8714
8715 \begin_layout Plain Layout
8716 \begin_inset Formula $\Longleftrightarrow$
8717 \end_inset
8718
8719
8720 \end_layout
8721
8722 \end_inset
8723 </cell>
8724 </row>
8725 <row>
8726 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
8727 \begin_inset Text
8728
8729 \begin_layout Plain Layout
8730
8731 \backslash
8732 rightleftharpoons
8733 \end_layout
8734
8735 \end_inset
8736 </cell>
8737 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8738 \begin_inset Text
8739
8740 \begin_layout Plain Layout
8741 \begin_inset Formula $\rightleftharpoons$
8742 \end_inset
8743
8744
8745 \end_layout
8746
8747 \end_inset
8748 </cell>
8749 </row>
8750 </lyxtabular>
8751
8752 \end_inset
8753
8754
8755 \begin_inset space \hspace{}
8756 \length 25pt
8757 \end_inset
8758
8759
8760 \begin_inset space \hfill{}
8761 \end_inset
8762
8763
8764 \begin_inset Tabular
8765 <lyxtabular version="3" rows="5" columns="2">
8766 <features rotate="0" tabularvalignment="middle">
8767 <column alignment="center" valignment="top" width="0pt">
8768 <column alignment="center" valignment="top" width="0pt">
8769 <row>
8770 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
8771 \begin_inset Text
8772
8773 \begin_layout Plain Layout
8774 Befehl
8775 \end_layout
8776
8777 \end_inset
8778 </cell>
8779 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8780 \begin_inset Text
8781
8782 \begin_layout Plain Layout
8783 Ergebnis
8784 \end_layout
8785
8786 \end_inset
8787 </cell>
8788 </row>
8789 <row>
8790 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8791 \begin_inset Text
8792
8793 \begin_layout Plain Layout
8794
8795 \backslash
8796 mapsto
8797 \end_layout
8798
8799 \end_inset
8800 </cell>
8801 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8802 \begin_inset Text
8803
8804 \begin_layout Plain Layout
8805 \begin_inset Formula $\mapsto$
8806 \end_inset
8807
8808
8809 \end_layout
8810
8811 \end_inset
8812 </cell>
8813 </row>
8814 <row>
8815 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8816 \begin_inset Text
8817
8818 \begin_layout Plain Layout
8819
8820 \backslash
8821 longmapsto
8822 \end_layout
8823
8824 \end_inset
8825 </cell>
8826 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8827 \begin_inset Text
8828
8829 \begin_layout Plain Layout
8830 \begin_inset Formula $\longmapsto$
8831 \end_inset
8832
8833
8834 \end_layout
8835
8836 \end_inset
8837 </cell>
8838 </row>
8839 <row>
8840 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8841 \begin_inset Text
8842
8843 \begin_layout Plain Layout
8844
8845 \backslash
8846 leadsto
8847 \end_layout
8848
8849 \end_inset
8850 </cell>
8851 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8852 \begin_inset Text
8853
8854 \begin_layout Plain Layout
8855 \begin_inset Formula $\leadsto$
8856 \end_inset
8857
8858
8859 \end_layout
8860
8861 \end_inset
8862 </cell>
8863 </row>
8864 <row>
8865 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
8866 \begin_inset Text
8867
8868 \begin_layout Plain Layout
8869
8870 \backslash
8871 dasharrow
8872 \end_layout
8873
8874 \end_inset
8875 </cell>
8876 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8877 \begin_inset Text
8878
8879 \begin_layout Plain Layout
8880 \begin_inset Formula $\dasharrow$
8881 \end_inset
8882
8883
8884 \end_layout
8885
8886 \end_inset
8887 </cell>
8888 </row>
8889 </lyxtabular>
8890
8891 \end_inset
8892
8893
8894 \begin_inset space \hfill{}
8895 \end_inset
8896
8897
8898 \end_layout
8899
8900 \begin_layout Standard
8901 \begin_inset VSpace medskip
8902 \end_inset
8903
8904 Als Akzente verwendete Pfeile, wie z.
8905 \begin_inset space \thinspace{}
8906 \end_inset
8907
8908 B.
8909  Vektorpfeile, sind in 
8910 \begin_inset CommandInset ref
8911 LatexCommand ref
8912 reference "sec:Akzente"
8913
8914 \end_inset
8915
8916  aufgelistet.
8917 \end_layout
8918
8919 \begin_layout Standard
8920 \begin_inset VSpace bigskip
8921 \end_inset
8922
8923 Des Weiteren gibt es die beschriftbaren Pfeile
8924 \begin_inset Index idx
8925 status collapsed
8926
8927 \begin_layout Plain Layout
8928 Pfeile ! beschriftbare
8929 \end_layout
8930
8931 \end_inset
8932
8933  
8934 \series bold
8935
8936 \backslash
8937 xleftarrow
8938 \series default
8939
8940 \begin_inset Index idx
8941 status collapsed
8942
8943 \begin_layout Plain Layout
8944 Befehle ! X ! 
8945 \backslash
8946 xleftarrow
8947 \end_layout
8948
8949 \end_inset
8950
8951  und 
8952 \series bold
8953
8954 \backslash
8955 xrightarrow
8956 \series default
8957
8958 \begin_inset Index idx
8959 status collapsed
8960
8961 \begin_layout Plain Layout
8962 Befehle ! X ! 
8963 \backslash
8964 xrightarrow
8965 \begin_inset ERT
8966 status collapsed
8967
8968 \begin_layout Plain Layout
8969
8970
8971 \backslash
8972 vspace{4mm}
8973 \end_layout
8974
8975 \end_inset
8976
8977
8978 \end_layout
8979
8980 \end_inset
8981
8982 .
8983  Gibt man einen dieser Befehle in eine Formel ein, erscheint ein Pfeil mit
8984  zwei blauen Kästchen, in die man die Beschriftung eingeben kann.
8985  Die Pfeillänge passt sich der Breite der Beschriftung an.
8986 \end_layout
8987
8988 \begin_layout Standard
8989 \align center
8990 \begin_inset Tabular
8991 <lyxtabular version="3" rows="3" columns="2">
8992 <features rotate="0" tabularvalignment="middle">
8993 <column alignment="center" valignment="top" width="0pt">
8994 <column alignment="center" valignment="top" width="0pt">
8995 <row>
8996 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
8997 \begin_inset Text
8998
8999 \begin_layout Plain Layout
9000 Befehl
9001 \end_layout
9002
9003 \end_inset
9004 </cell>
9005 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
9006 \begin_inset Text
9007
9008 \begin_layout Plain Layout
9009 Ergebnis
9010 \begin_inset Note Note
9011 status collapsed
9012
9013 \begin_layout Plain Layout
9014
9015 \series bold
9016
9017 \backslash
9018 raisebox
9019 \series default
9020  dient nur als Abstandhalter.
9021 \end_layout
9022
9023 \end_inset
9024
9025
9026 \end_layout
9027
9028 \end_inset
9029 </cell>
9030 </row>
9031 <row>
9032 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9033 \begin_inset Text
9034
9035 \begin_layout Plain Layout
9036 F(a)
9037 \backslash
9038 xleftarrow
9039 \begin_inset ERT
9040 status collapsed
9041
9042 \begin_layout Plain Layout
9043
9044
9045 \backslash
9046 leer 
9047 \end_layout
9048
9049 \end_inset
9050
9051 x=a
9052 \begin_inset Formula $\downarrow$
9053 \end_inset
9054
9055 x>0
9056 \begin_inset Formula $\to$
9057 \end_inset
9058
9059 F(x)
9060 \end_layout
9061
9062 \end_inset
9063 </cell>
9064 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9065 \begin_inset Text
9066
9067 \begin_layout Plain Layout
9068 \begin_inset Formula $\raisebox{5mm}{}F(a)\xleftarrow[x>0]{x=a}F(x)\raisebox{-4mm}{}$
9069 \end_inset
9070
9071
9072 \end_layout
9073
9074 \end_inset
9075 </cell>
9076 </row>
9077 <row>
9078 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
9079 \begin_inset Text
9080
9081 \begin_layout Plain Layout
9082 F(x)
9083 \backslash
9084 xrightarrow
9085 \begin_inset ERT
9086 status collapsed
9087
9088 \begin_layout Plain Layout
9089
9090
9091 \backslash
9092 leer 
9093 \end_layout
9094
9095 \end_inset
9096
9097 x=a
9098 \begin_inset Formula $\downarrow$
9099 \end_inset
9100
9101 x>0
9102 \begin_inset Formula $\to$
9103 \end_inset
9104
9105 F(a)
9106 \end_layout
9107
9108 \end_inset
9109 </cell>
9110 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
9111 \begin_inset Text
9112
9113 \begin_layout Plain Layout
9114 \begin_inset Formula $\raisebox{5mm}{}F(x)\xrightarrow[x>0]{x=a}F(a)\raisebox{-4mm}{}$
9115 \end_inset
9116
9117
9118 \end_layout
9119
9120 \end_inset
9121 </cell>
9122 </row>
9123 </lyxtabular>
9124
9125 \end_inset
9126
9127
9128 \end_layout
9129
9130 \begin_layout Subsection
9131 Vertikale und diagonale Pfeile
9132 \begin_inset Index idx
9133 status collapsed
9134
9135 \begin_layout Plain Layout
9136 Pfeile ! diagonale
9137 \end_layout
9138
9139 \end_inset
9140
9141
9142 \begin_inset Index idx
9143 status collapsed
9144
9145 \begin_layout Plain Layout
9146 Pfeile ! vertikale
9147 \end_layout
9148
9149 \end_inset
9150
9151
9152 \end_layout
9153
9154 \begin_layout Standard
9155 \begin_inset space \hfill{}
9156 \end_inset
9157
9158
9159 \begin_inset Tabular
9160 <lyxtabular version="3" rows="7" columns="2">
9161 <features rotate="0" tabularvalignment="middle">
9162 <column alignment="center" valignment="top" width="0pt">
9163 <column alignment="center" valignment="top" width="0pt">
9164 <row>
9165 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
9166 \begin_inset Text
9167
9168 \begin_layout Plain Layout
9169 Befehl
9170 \end_layout
9171
9172 \end_inset
9173 </cell>
9174 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
9175 \begin_inset Text
9176
9177 \begin_layout Plain Layout
9178 Ergebnis
9179 \end_layout
9180
9181 \end_inset
9182 </cell>
9183 </row>
9184 <row>
9185 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9186 \begin_inset Text
9187
9188 \begin_layout Plain Layout
9189
9190 \backslash
9191 uparrow
9192 \end_layout
9193
9194 \end_inset
9195 </cell>
9196 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9197 \begin_inset Text
9198
9199 \begin_layout Plain Layout
9200 \begin_inset Formula $\uparrow$
9201 \end_inset
9202
9203
9204 \end_layout
9205
9206 \end_inset
9207 </cell>
9208 </row>
9209 <row>
9210 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9211 \begin_inset Text
9212
9213 \begin_layout Plain Layout
9214
9215 \backslash
9216 Uparrow
9217 \end_layout
9218
9219 \end_inset
9220 </cell>
9221 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9222 \begin_inset Text
9223
9224 \begin_layout Plain Layout
9225 \begin_inset Formula $\Uparrow$
9226 \end_inset
9227
9228
9229 \end_layout
9230
9231 \end_inset
9232 </cell>
9233 </row>
9234 <row>
9235 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9236 \begin_inset Text
9237
9238 \begin_layout Plain Layout
9239
9240 \backslash
9241 updownarrow
9242 \end_layout
9243
9244 \end_inset
9245 </cell>
9246 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9247 \begin_inset Text
9248
9249 \begin_layout Plain Layout
9250 \begin_inset Formula $\updownarrow$
9251 \end_inset
9252
9253
9254 \end_layout
9255
9256 \end_inset
9257 </cell>
9258 </row>
9259 <row>
9260 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9261 \begin_inset Text
9262
9263 \begin_layout Plain Layout
9264
9265 \backslash
9266 Updownarrow
9267 \end_layout
9268
9269 \end_inset
9270 </cell>
9271 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9272 \begin_inset Text
9273
9274 \begin_layout Plain Layout
9275 \begin_inset Formula $\Updownarrow$
9276 \end_inset
9277
9278
9279 \end_layout
9280
9281 \end_inset
9282 </cell>
9283 </row>
9284 <row>
9285 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
9286 \begin_inset Text
9287
9288 \begin_layout Plain Layout
9289
9290 \backslash
9291 Downarrow
9292 \end_layout
9293
9294 \end_inset
9295 </cell>
9296 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
9297 \begin_inset Text
9298
9299 \begin_layout Plain Layout
9300 \begin_inset Formula $\Downarrow$
9301 \end_inset
9302
9303
9304 \end_layout
9305
9306 \end_inset
9307 </cell>
9308 </row>
9309 <row>
9310 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9311 \begin_inset Text
9312
9313 \begin_layout Plain Layout
9314
9315 \backslash
9316 downarrow
9317 \end_layout
9318
9319 \end_inset
9320 </cell>
9321 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9322 \begin_inset Text
9323
9324 \begin_layout Plain Layout
9325 \begin_inset Formula $\downarrow$
9326 \end_inset
9327
9328
9329 \end_layout
9330
9331 \end_inset
9332 </cell>
9333 </row>
9334 </lyxtabular>
9335
9336 \end_inset
9337
9338
9339 \begin_inset space \hfill{}
9340 \end_inset
9341
9342
9343 \begin_inset Tabular
9344 <lyxtabular version="3" rows="5" columns="2">
9345 <features rotate="0" tabularvalignment="middle">
9346 <column alignment="center" valignment="top" width="0pt">
9347 <column alignment="center" valignment="top" width="0pt">
9348 <row>
9349 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
9350 \begin_inset Text
9351
9352 \begin_layout Plain Layout
9353 Befehl
9354 \end_layout
9355
9356 \end_inset
9357 </cell>
9358 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
9359 \begin_inset Text
9360
9361 \begin_layout Plain Layout
9362 Ergebnis
9363 \end_layout
9364
9365 \end_inset
9366 </cell>
9367 </row>
9368 <row>
9369 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9370 \begin_inset Text
9371
9372 \begin_layout Plain Layout
9373
9374 \backslash
9375 nearrow
9376 \end_layout
9377
9378 \end_inset
9379 </cell>
9380 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9381 \begin_inset Text
9382
9383 \begin_layout Plain Layout
9384 \begin_inset Formula $\nearrow$
9385 \end_inset
9386
9387
9388 \end_layout
9389
9390 \end_inset
9391 </cell>
9392 </row>
9393 <row>
9394 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9395 \begin_inset Text
9396
9397 \begin_layout Plain Layout
9398
9399 \backslash
9400 searrow
9401 \end_layout
9402
9403 \end_inset
9404 </cell>
9405 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9406 \begin_inset Text
9407
9408 \begin_layout Plain Layout
9409 \begin_inset Formula $\searrow$
9410 \end_inset
9411
9412
9413 \end_layout
9414
9415 \end_inset
9416 </cell>
9417 </row>
9418 <row>
9419 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
9420 \begin_inset Text
9421
9422 \begin_layout Plain Layout
9423
9424 \backslash
9425 swarrow
9426 \end_layout
9427
9428 \end_inset
9429 </cell>
9430 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
9431 \begin_inset Text
9432
9433 \begin_layout Plain Layout
9434 \begin_inset Formula $\swarrow$
9435 \end_inset
9436
9437
9438 \end_layout
9439
9440 \end_inset
9441 </cell>
9442 </row>
9443 <row>
9444 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9445 \begin_inset Text
9446
9447 \begin_layout Plain Layout
9448
9449 \backslash
9450 nwarrow
9451 \end_layout
9452
9453 \end_inset
9454 </cell>
9455 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9456 \begin_inset Text
9457
9458 \begin_layout Plain Layout
9459 \begin_inset Formula $\nwarrow$
9460 \end_inset
9461
9462
9463 \end_layout
9464
9465 \end_inset
9466 </cell>
9467 </row>
9468 </lyxtabular>
9469
9470 \end_inset
9471
9472
9473 \begin_inset space \hfill{}
9474 \end_inset
9475
9476
9477 \end_layout
9478
9479 \begin_layout Standard
9480 \begin_inset VSpace medskip
9481 \end_inset
9482
9483 Vertikale Pfeile können auch als Begrenzungszeichen zusammen mit den in
9484  
9485 \begin_inset CommandInset ref
9486 LatexCommand ref
9487 reference "sub:Manuelle-Klammergrößen"
9488
9489 \end_inset
9490
9491  und 
9492 \begin_inset CommandInset ref
9493 LatexCommand ref
9494 reference "sub:Automatische-Klammergrößen"
9495
9496 \end_inset
9497
9498  beschriebenen Befehlen verwendet werden.
9499 \end_layout
9500
9501 \begin_layout Section
9502 Akzente
9503 \begin_inset CommandInset label
9504 LatexCommand label
9505 name "sec:Akzente"
9506
9507 \end_inset
9508
9509
9510 \begin_inset Index idx
9511 status collapsed
9512
9513 \begin_layout Plain Layout
9514 Akzente
9515 \end_layout
9516
9517 \end_inset
9518
9519
9520 \end_layout
9521
9522 \begin_layout Standard
9523 Akzente können über den Mathe-Werkzeugleistenknopf 
9524 \begin_inset Graphics
9525         filename ../../images/math/hat.png
9526         scale 85
9527
9528 \end_inset
9529
9530  oder mit den Befehlen eingefügt werden, die in den folgenden Unterkapiteln
9531  aufgelistet sind.
9532 \end_layout
9533
9534 \begin_layout Subsection
9535 Akzente für ein Zeichen
9536 \begin_inset ERT
9537 status collapsed
9538
9539 \begin_layout Plain Layout
9540
9541
9542 \backslash
9543 texorpdfstring{
9544 \end_layout
9545
9546 \end_inset
9547
9548
9549 \begin_inset Foot
9550 status collapsed
9551
9552 \begin_layout Plain Layout
9553 Akzente im Text siehe 
9554 \begin_inset CommandInset ref
9555 LatexCommand ref
9556 reference "sub:Sonderzeichen-Akzente"
9557
9558 \end_inset
9559
9560
9561 \end_layout
9562
9563 \end_inset
9564
9565
9566 \begin_inset ERT
9567 status collapsed
9568
9569 \begin_layout Plain Layout
9570
9571 }{}
9572 \end_layout
9573
9574 \end_inset
9575
9576
9577 \begin_inset Note Note
9578 status collapsed
9579
9580 \begin_layout Plain Layout
9581
9582 \series bold
9583
9584 \backslash
9585 texorpdfstring
9586 \series default
9587  dient dazu, dass die Fußnote nicht im PDF-Lesezeichen erscheint.
9588 \end_layout
9589
9590 \begin_layout Plain Layout
9591 Näheres zu 
9592 \series bold
9593
9594 \backslash
9595 texorpdfstring
9596 \series default
9597  steht in Kapitel 
9598 \begin_inset CommandInset ref
9599 LatexCommand ref
9600 reference "sub:Formeln-in-Überschriften"
9601
9602 \end_inset
9603
9604 .
9605 \end_layout
9606
9607 \end_inset
9608
9609
9610 \begin_inset CommandInset label
9611 LatexCommand label
9612 name "sub:Akzente-für-ein"
9613
9614 \end_inset
9615
9616
9617 \begin_inset Index idx
9618 status collapsed
9619
9620 \begin_layout Plain Layout
9621 Akzente ! für ein Zeichen
9622 \end_layout
9623
9624 \end_inset
9625
9626
9627 \end_layout
9628
9629 \begin_layout Standard
9630 \begin_inset space \hfill{}
9631 \end_inset
9632
9633
9634 \begin_inset Tabular
9635 <lyxtabular version="3" rows="8" columns="2">
9636 <features rotate="0" tabularvalignment="middle">
9637 <column alignment="center" valignment="top" width="0pt">
9638 <column alignment="center" valignment="top" width="0pt">
9639 <row>
9640 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
9641 \begin_inset Text
9642
9643 \begin_layout Plain Layout
9644 Befehl
9645 \end_layout
9646
9647 \end_inset
9648 </cell>
9649 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
9650 \begin_inset Text
9651
9652 \begin_layout Plain Layout
9653 Ergebnis
9654 \begin_inset Note Note
9655 status collapsed
9656
9657 \begin_layout Plain Layout
9658
9659 \series bold
9660
9661 \backslash
9662 raisebox
9663 \series default
9664  dient nur als Abstandhalter.
9665 \end_layout
9666
9667 \end_inset
9668
9669
9670 \end_layout
9671
9672 \end_inset
9673 </cell>
9674 </row>
9675 <row>
9676 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
9677 \begin_inset Text
9678
9679 \begin_layout Plain Layout
9680
9681 \backslash
9682 dot
9683 \begin_inset ERT
9684 status collapsed
9685
9686 \begin_layout Plain Layout
9687
9688
9689 \backslash
9690 leer 
9691 \end_layout
9692
9693 \end_inset
9694
9695 A
9696 \end_layout
9697
9698 \end_inset
9699 </cell>
9700 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
9701 \begin_inset Text
9702
9703 \begin_layout Plain Layout
9704 \begin_inset Formula $\raisebox{5mm}{}\dot{A}$
9705 \end_inset
9706
9707
9708 \end_layout
9709
9710 \end_inset
9711 </cell>
9712 </row>
9713 <row>
9714 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9715 \begin_inset Text
9716
9717 \begin_layout Plain Layout
9718
9719 \backslash
9720 ddot
9721 \begin_inset ERT
9722 status collapsed
9723
9724 \begin_layout Plain Layout
9725
9726
9727 \backslash
9728 leer 
9729 \end_layout
9730
9731 \end_inset
9732
9733 A
9734 \end_layout
9735
9736 \end_inset
9737 </cell>
9738 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9739 \begin_inset Text
9740
9741 \begin_layout Plain Layout
9742 \begin_inset Formula $\raisebox{5mm}{}\ddot{A}$
9743 \end_inset
9744
9745
9746 \end_layout
9747
9748 \end_inset
9749 </cell>
9750 </row>
9751 <row>
9752 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9753 \begin_inset Text
9754
9755 \begin_layout Plain Layout
9756
9757 \backslash
9758 dddot
9759 \begin_inset ERT
9760 status collapsed
9761
9762 \begin_layout Plain Layout
9763
9764
9765 \backslash
9766 leer 
9767 \end_layout
9768
9769 \end_inset
9770
9771 A
9772 \end_layout
9773
9774 \end_inset
9775 </cell>
9776 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9777 \begin_inset Text
9778
9779 \begin_layout Plain Layout
9780 \begin_inset Formula $\raisebox{5mm}{}\dddot{A}$
9781 \end_inset
9782
9783
9784 \end_layout
9785
9786 \end_inset
9787 </cell>
9788 </row>
9789 <row>
9790 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9791 \begin_inset Text
9792
9793 \begin_layout Plain Layout
9794
9795 \backslash
9796 ddddot
9797 \begin_inset ERT
9798 status collapsed
9799
9800 \begin_layout Plain Layout
9801
9802
9803 \backslash
9804 leer 
9805 \end_layout
9806
9807 \end_inset
9808
9809 A
9810 \end_layout
9811
9812 \end_inset
9813 </cell>
9814 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9815 \begin_inset Text
9816
9817 \begin_layout Plain Layout
9818 \begin_inset Formula $\raisebox{5mm}{}\ddddot{A}$
9819 \end_inset
9820
9821
9822 \end_layout
9823
9824 \end_inset
9825 </cell>
9826 </row>
9827 <row>
9828 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9829 \begin_inset Text
9830
9831 \begin_layout Plain Layout
9832
9833 \backslash
9834 vec
9835 \begin_inset ERT
9836 status collapsed
9837
9838 \begin_layout Plain Layout
9839
9840
9841 \backslash
9842 leer 
9843 \end_layout
9844
9845 \end_inset
9846
9847 A
9848 \begin_inset Index idx
9849 status collapsed
9850
9851 \begin_layout Plain Layout
9852 Vektoren
9853 \end_layout
9854
9855 \end_inset
9856
9857
9858 \end_layout
9859
9860 \end_inset
9861 </cell>
9862 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9863 \begin_inset Text
9864
9865 \begin_layout Plain Layout
9866 \begin_inset Formula $\raisebox{5mm}{}\vec{A}$
9867 \end_inset
9868
9869
9870 \end_layout
9871
9872 \end_inset
9873 </cell>
9874 </row>
9875 <row>
9876 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9877 \begin_inset Text
9878
9879 \begin_layout Plain Layout
9880
9881 \backslash
9882 bar
9883 \begin_inset ERT
9884 status collapsed
9885
9886 \begin_layout Plain Layout
9887
9888
9889 \backslash
9890 leer 
9891 \end_layout
9892
9893 \end_inset
9894
9895 A
9896 \end_layout
9897
9898 \end_inset
9899 </cell>
9900 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9901 \begin_inset Text
9902
9903 \begin_layout Plain Layout
9904 \begin_inset Formula $\raisebox{5mm}{}\bar{A}$
9905 \end_inset
9906
9907
9908 \end_layout
9909
9910 \end_inset
9911 </cell>
9912 </row>
9913 <row>
9914 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9915 \begin_inset Text
9916
9917 \begin_layout Plain Layout
9918
9919 \backslash
9920 mathring
9921 \begin_inset ERT
9922 status collapsed
9923
9924 \begin_layout Plain Layout
9925
9926
9927 \backslash
9928 leer 
9929 \end_layout
9930
9931 \end_inset
9932
9933 A
9934 \end_layout
9935
9936 \end_inset
9937 </cell>
9938 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9939 \begin_inset Text
9940
9941 \begin_layout Plain Layout
9942 \begin_inset Formula $\raisebox{5mm}{}\mathring{A}$
9943 \end_inset
9944
9945
9946 \end_layout
9947
9948 \end_inset
9949 </cell>
9950 </row>
9951 </lyxtabular>
9952
9953 \end_inset
9954
9955
9956 \begin_inset space \hfill{}
9957 \end_inset
9958
9959
9960 \begin_inset Tabular
9961 <lyxtabular version="3" rows="7" columns="2">
9962 <features rotate="0" tabularvalignment="middle">
9963 <column alignment="center" valignment="top" width="0pt">
9964 <column alignment="center" valignment="top" width="0pt">
9965 <row>
9966 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
9967 \begin_inset Text
9968
9969 \begin_layout Plain Layout
9970 Befehl
9971 \end_layout
9972
9973 \end_inset
9974 </cell>
9975 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
9976 \begin_inset Text
9977
9978 \begin_layout Plain Layout
9979 Ergebnis
9980 \end_layout
9981
9982 \end_inset
9983 </cell>
9984 </row>
9985 <row>
9986 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
9987 \begin_inset Text
9988
9989 \begin_layout Plain Layout
9990
9991 \backslash
9992 tilde
9993 \begin_inset ERT
9994 status collapsed
9995
9996 \begin_layout Plain Layout
9997
9998
9999 \backslash
10000 leer 
10001 \end_layout
10002
10003 \end_inset
10004
10005 A
10006 \end_layout
10007
10008 \end_inset
10009 </cell>
10010 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
10011 \begin_inset Text
10012
10013 \begin_layout Plain Layout
10014 \begin_inset Formula $\raisebox{5mm}{}\tilde{A}$
10015 \end_inset
10016
10017
10018 \end_layout
10019
10020 \end_inset
10021 </cell>
10022 </row>
10023 <row>
10024 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10025 \begin_inset Text
10026
10027 \begin_layout Plain Layout
10028
10029 \backslash
10030 hat
10031 \begin_inset ERT
10032 status collapsed
10033
10034 \begin_layout Plain Layout
10035
10036
10037 \backslash
10038 leer 
10039 \end_layout
10040
10041 \end_inset
10042
10043 A
10044 \end_layout
10045
10046 \end_inset
10047 </cell>
10048 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
10049 \begin_inset Text
10050
10051 \begin_layout Plain Layout
10052 \begin_inset Formula $\raisebox{5mm}{}\hat{A}$
10053 \end_inset
10054
10055
10056 \end_layout
10057
10058 \end_inset
10059 </cell>
10060 </row>
10061 <row>
10062 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10063 \begin_inset Text
10064
10065 \begin_layout Plain Layout
10066
10067 \backslash
10068 check
10069 \begin_inset ERT
10070 status collapsed
10071
10072 \begin_layout Plain Layout
10073
10074
10075 \backslash
10076 leer 
10077 \end_layout
10078
10079 \end_inset
10080
10081 A
10082 \end_layout
10083
10084 \end_inset
10085 </cell>
10086 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
10087 \begin_inset Text
10088
10089 \begin_layout Plain Layout
10090 \begin_inset Formula $\raisebox{5mm}{}\check{A}$
10091 \end_inset
10092
10093
10094 \end_layout
10095
10096 \end_inset
10097 </cell>
10098 </row>
10099 <row>
10100 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10101 \begin_inset Text
10102
10103 \begin_layout Plain Layout
10104
10105 \backslash
10106 acute
10107 \begin_inset ERT
10108 status collapsed
10109
10110 \begin_layout Plain Layout
10111
10112
10113 \backslash
10114 leer 
10115 \end_layout
10116
10117 \end_inset
10118
10119 A
10120 \end_layout
10121
10122 \end_inset
10123 </cell>
10124 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
10125 \begin_inset Text
10126
10127 \begin_layout Plain Layout
10128 \begin_inset Formula $\raisebox{5mm}{}\acute{A}$
10129 \end_inset
10130
10131
10132 \end_layout
10133
10134 \end_inset
10135 </cell>
10136 </row>
10137 <row>
10138 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10139 \begin_inset Text
10140
10141 \begin_layout Plain Layout
10142
10143 \backslash
10144 grave
10145 \begin_inset ERT
10146 status collapsed
10147
10148 \begin_layout Plain Layout
10149
10150
10151 \backslash
10152 leer 
10153 \end_layout
10154
10155 \end_inset
10156
10157 A
10158 \end_layout
10159
10160 \end_inset
10161 </cell>
10162 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
10163 \begin_inset Text
10164
10165 \begin_layout Plain Layout
10166 \begin_inset Formula $\raisebox{5mm}{}\grave{A}$
10167 \end_inset
10168
10169
10170 \end_layout
10171
10172 \end_inset
10173 </cell>
10174 </row>
10175 <row>
10176 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10177 \begin_inset Text
10178
10179 \begin_layout Plain Layout
10180
10181 \backslash
10182 breve
10183 \begin_inset ERT
10184 status collapsed
10185
10186 \begin_layout Plain Layout
10187
10188
10189 \backslash
10190 leer 
10191 \end_layout
10192
10193 \end_inset
10194
10195 A
10196 \end_layout
10197
10198 \end_inset
10199 </cell>
10200 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
10201 \begin_inset Text
10202
10203 \begin_layout Plain Layout
10204 \begin_inset Formula $\raisebox{5mm}{}\breve{A}$
10205 \end_inset
10206
10207
10208 \end_layout
10209
10210 \end_inset
10211 </cell>
10212 </row>
10213 </lyxtabular>
10214
10215 \end_inset
10216
10217
10218 \begin_inset space \hfill{}
10219 \end_inset
10220
10221
10222 \end_layout
10223
10224 \begin_layout Standard
10225 \begin_inset VSpace bigskip
10226 \end_inset
10227
10228 Akzente wie z.B.
10229  é können direkt in Formeln eingegeben werden.
10230  LyX transformiert sie dann in den entsprechenden Akzentbefehl.
10231  Für Umlaute
10232 \begin_inset Index idx
10233 status collapsed
10234
10235 \begin_layout Plain Layout
10236 Umlaute
10237 \end_layout
10238
10239 \end_inset
10240
10241  ist es besser wenn man ein Anführungszeichen vor den Selbstlaut schreibt.
10242  Diese beiden Zeichen bilden dann für LaTeX 
10243 \emph on
10244 ein
10245 \emph default
10246  Zeichen.
10247  Im Gegensatz zu 
10248 \series bold
10249
10250 \backslash
10251 ddot
10252 \series default
10253  entstehen damit 
10254 \begin_inset Quotes gld
10255 \end_inset
10256
10257 echte
10258 \begin_inset Quotes grd
10259 \end_inset
10260
10261  Umlaute, was folgendes Beispiel zeigt:
10262 \end_layout
10263
10264 \begin_layout Standard
10265 \begin_inset VSpace -2mm
10266 \end_inset
10267
10268
10269 \end_layout
10270
10271 \begin_layout Standard
10272 \align center
10273 \begin_inset Tabular
10274 <lyxtabular version="3" rows="3" columns="2">
10275 <features rotate="0" tabularvalignment="middle">
10276 <column alignment="center" valignment="top">
10277 <column alignment="center" valignment="top">
10278 <row>
10279 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
10280 \begin_inset Text
10281
10282 \begin_layout Plain Layout
10283 Befehl
10284 \end_layout
10285
10286 \end_inset
10287 </cell>
10288 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
10289 \begin_inset Text
10290
10291 \begin_layout Plain Layout
10292 Ergebnis
10293 \begin_inset Note Note
10294 status collapsed
10295
10296 \begin_layout Plain Layout
10297
10298 \series bold
10299
10300 \backslash
10301 raisebox
10302 \series default
10303  dient nur als Abstandhalter.
10304 \end_layout
10305
10306 \end_inset
10307
10308
10309 \end_layout
10310
10311 \end_inset
10312 </cell>
10313 </row>
10314 <row>
10315 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10316 \begin_inset Text
10317
10318 \begin_layout Plain Layout
10319 \begin_inset Quotes grd
10320 \end_inset
10321
10322 i
10323 \end_layout
10324
10325 \end_inset
10326 </cell>
10327 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10328 \begin_inset Text
10329
10330 \begin_layout Plain Layout
10331 \begin_inset Formula $"i$
10332 \end_inset
10333
10334
10335 \end_layout
10336
10337 \end_inset
10338 </cell>
10339 </row>
10340 <row>
10341 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
10342 \begin_inset Text
10343
10344 \begin_layout Plain Layout
10345
10346 \backslash
10347 ddot
10348 \begin_inset ERT
10349 status collapsed
10350
10351 \begin_layout Plain Layout
10352
10353
10354 \backslash
10355 leer 
10356 \end_layout
10357
10358 \end_inset
10359
10360 i
10361 \end_layout
10362
10363 \end_inset
10364 </cell>
10365 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
10366 \begin_inset Text
10367
10368 \begin_layout Plain Layout
10369 \begin_inset Formula $\raisebox{5mm}{}\ddot{i}$
10370 \end_inset
10371
10372
10373 \end_layout
10374
10375 \end_inset
10376 </cell>
10377 </row>
10378 </lyxtabular>
10379
10380 \end_inset
10381
10382
10383 \end_layout
10384
10385 \begin_layout Standard
10386 Ein weiterer Vorteil gegenüber 
10387 \series bold
10388
10389 \backslash
10390 ddot
10391 \series default
10392  ist, dass man Umlaute direkt in mathematischen Text konvertieren kann,
10393  denn die obigen Akzentbefehle sind 
10394 \emph on
10395 im mathematischen Text\SpecialChar \-
10396 modus nicht erlaubt
10397 \emph default
10398 .
10399  Um ein akzentuiertes Zeichen in mathematischen Text zu überführen, darf
10400  nur das Zeichen unter dem Akzent umgewandelt werden.
10401  Das gilt auch für alle anderen Umwandlungen wie z.
10402 \begin_inset space \thinspace{}
10403 \end_inset
10404
10405 B.
10406  in kursiv oder fett.
10407 \end_layout
10408
10409 \begin_layout Standard
10410 Im mathematischen Textmodus können Umlaute und andere akzentuierten Zeichen
10411  direkt eingegeben werden.
10412 \end_layout
10413
10414 \begin_layout Subsection
10415 Akzente für mehrere Zeichen
10416 \begin_inset Index idx
10417 status collapsed
10418
10419 \begin_layout Plain Layout
10420 Akzente ! für mehrere Zeichen
10421 \end_layout
10422
10423 \end_inset
10424
10425
10426 \end_layout
10427
10428 \begin_layout Standard
10429 \begin_inset space \hfill{}
10430 \end_inset
10431
10432
10433 \begin_inset Tabular
10434 <lyxtabular version="3" rows="5" columns="2">
10435 <features rotate="0" tabularvalignment="middle">
10436 <column alignment="center" valignment="top" width="0pt">
10437 <column alignment="center" valignment="top" width="0pt">
10438 <row>
10439 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
10440 \begin_inset Text
10441
10442 \begin_layout Plain Layout
10443 Befehl
10444 \end_layout
10445
10446 \end_inset
10447 </cell>
10448 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
10449 \begin_inset Text
10450
10451 \begin_layout Plain Layout
10452 Ergebnis
10453 \begin_inset Note Note
10454 status collapsed
10455
10456 \begin_layout Plain Layout
10457
10458 \series bold
10459
10460 \backslash
10461 raisebox
10462 \series default
10463  dient nur als Abstandhalter.
10464 \end_layout
10465
10466 \end_inset
10467
10468
10469 \end_layout
10470
10471 \end_inset
10472 </cell>
10473 </row>
10474 <row>
10475 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
10476 \begin_inset Text
10477
10478 \begin_layout Plain Layout
10479
10480 \backslash
10481 overleftarrow
10482 \begin_inset ERT
10483 status collapsed
10484
10485 \begin_layout Plain Layout
10486
10487
10488 \backslash
10489 leer 
10490 \end_layout
10491
10492 \end_inset
10493
10494 A=B
10495 \end_layout
10496
10497 \end_inset
10498 </cell>
10499 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
10500 \begin_inset Text
10501
10502 \begin_layout Plain Layout
10503 \begin_inset Formula $\raisebox{6mm}{}\overleftarrow{A=B}\raisebox{-2mm}{}$
10504 \end_inset
10505
10506
10507 \end_layout
10508
10509 \end_inset
10510 </cell>
10511 </row>
10512 <row>
10513 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10514 \begin_inset Text
10515
10516 \begin_layout Plain Layout
10517
10518 \backslash
10519 underleftarrow
10520 \begin_inset ERT
10521 status collapsed
10522
10523 \begin_layout Plain Layout
10524
10525
10526 \backslash
10527 leer 
10528 \end_layout
10529
10530 \end_inset
10531
10532 A=B
10533 \end_layout
10534
10535 \end_inset
10536 </cell>
10537 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
10538 \begin_inset Text
10539
10540 \begin_layout Plain Layout
10541 \begin_inset Formula $\raisebox{5mm}{}\underleftarrow{A=B}\raisebox{-3mm}{}$
10542 \end_inset
10543
10544
10545 \end_layout
10546
10547 \end_inset
10548 </cell>
10549 </row>
10550 <row>
10551 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10552 \begin_inset Text
10553
10554 \begin_layout Plain Layout
10555
10556 \backslash
10557 overleftrightarrow
10558 \begin_inset ERT
10559 status collapsed
10560
10561 \begin_layout Plain Layout
10562
10563
10564 \backslash
10565 leer 
10566 \end_layout
10567
10568 \end_inset
10569
10570 A=B
10571 \end_layout
10572
10573 \end_inset
10574 </cell>
10575 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
10576 \begin_inset Text
10577
10578 \begin_layout Plain Layout
10579 \begin_inset Formula $\raisebox{6mm}{}\overleftrightarrow{A=B}\raisebox{-2mm}{}$
10580 \end_inset
10581
10582
10583 \end_layout
10584
10585 \end_inset
10586 </cell>
10587 </row>
10588 <row>
10589 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10590 \begin_inset Text
10591
10592 \begin_layout Plain Layout
10593
10594 \backslash
10595 underleftrightarrow
10596 \begin_inset ERT
10597 status collapsed
10598
10599 \begin_layout Plain Layout
10600
10601
10602 \backslash
10603 leer 
10604 \end_layout
10605
10606 \end_inset
10607
10608 A=B
10609 \end_layout
10610
10611 \end_inset
10612 </cell>
10613 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
10614 \begin_inset Text
10615
10616 \begin_layout Plain Layout
10617 \begin_inset Formula $\raisebox{5mm}{}\underleftrightarrow{A=B}\raisebox{-3mm}{}$
10618 \end_inset
10619
10620
10621 \end_layout
10622
10623 \end_inset
10624 </cell>
10625 </row>
10626 </lyxtabular>
10627
10628 \end_inset
10629
10630
10631 \begin_inset space \hfill{}
10632 \end_inset
10633
10634
10635 \begin_inset Tabular
10636 <lyxtabular version="3" rows="5" columns="2">
10637 <features rotate="0" tabularvalignment="middle">
10638 <column alignment="center" valignment="top" width="0pt">
10639 <column alignment="center" valignment="top" width="0pt">
10640 <row>
10641 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
10642 \begin_inset Text
10643
10644 \begin_layout Plain Layout
10645 Befehl
10646 \end_layout
10647
10648 \end_inset
10649 </cell>
10650 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
10651 \begin_inset Text
10652
10653 \begin_layout Plain Layout
10654 Ergebnis
10655 \end_layout
10656
10657 \end_inset
10658 </cell>
10659 </row>
10660 <row>
10661 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
10662 \begin_inset Text
10663
10664 \begin_layout Plain Layout
10665
10666 \backslash
10667 overrightarrow
10668 \begin_inset ERT
10669 status collapsed
10670
10671 \begin_layout Plain Layout
10672
10673
10674 \backslash
10675 leer 
10676 \end_layout
10677
10678 \end_inset
10679
10680 A=B
10681 \end_layout
10682
10683 \end_inset
10684 </cell>
10685 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
10686 \begin_inset Text
10687
10688 \begin_layout Plain Layout
10689 \begin_inset Formula $\raisebox{6mm}{}\overrightarrow{A=B}\raisebox{-2mm}{}$
10690 \end_inset
10691
10692
10693 \end_layout
10694
10695 \end_inset
10696 </cell>
10697 </row>
10698 <row>
10699 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10700 \begin_inset Text
10701
10702 \begin_layout Plain Layout
10703
10704 \backslash
10705 underrightarrow
10706 \begin_inset ERT
10707 status collapsed
10708
10709 \begin_layout Plain Layout
10710
10711
10712 \backslash
10713 leer 
10714 \end_layout
10715
10716 \end_inset
10717
10718 A=B
10719 \end_layout
10720
10721 \end_inset
10722 </cell>
10723 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
10724 \begin_inset Text
10725
10726 \begin_layout Plain Layout
10727 \begin_inset Formula $\raisebox{5mm}{}\underrightarrow{A=B}\raisebox{-3mm}{}$
10728 \end_inset
10729
10730
10731 \end_layout
10732
10733 \end_inset
10734 </cell>
10735 </row>
10736 <row>
10737 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10738 \begin_inset Text
10739
10740 \begin_layout Plain Layout
10741
10742 \backslash
10743 widetilde
10744 \begin_inset ERT
10745 status collapsed
10746
10747 \begin_layout Plain Layout
10748
10749
10750 \backslash
10751 leer 
10752 \end_layout
10753
10754 \end_inset
10755
10756 A=B
10757 \end_layout
10758
10759 \end_inset
10760 </cell>
10761 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
10762 \begin_inset Text
10763
10764 \begin_layout Plain Layout
10765 \begin_inset Formula $\raisebox{6mm}{}\widetilde{A=B}\raisebox{-2mm}{}$
10766 \end_inset
10767
10768
10769 \end_layout
10770
10771 \end_inset
10772 </cell>
10773 </row>
10774 <row>
10775 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10776 \begin_inset Text
10777
10778 \begin_layout Plain Layout
10779
10780 \backslash
10781 widehat
10782 \begin_inset ERT
10783 status collapsed
10784
10785 \begin_layout Plain Layout
10786
10787
10788 \backslash
10789 leer 
10790 \end_layout
10791
10792 \end_inset
10793
10794 A=B
10795 \end_layout
10796
10797 \end_inset
10798 </cell>
10799 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
10800 \begin_inset Text
10801
10802 \begin_layout Plain Layout
10803 \begin_inset Formula $\raisebox{6mm}{}\widehat{A=B}\raisebox{-2mm}{}$
10804 \end_inset
10805
10806
10807 \end_layout
10808
10809 \end_inset
10810 </cell>
10811 </row>
10812 </lyxtabular>
10813
10814 \end_inset
10815
10816
10817 \begin_inset space \hfill{}
10818 \end_inset
10819
10820
10821 \end_layout
10822
10823 \begin_layout Standard
10824 \begin_inset VSpace medskip
10825 \end_inset
10826
10827 Mit diesen Befehlen können beliebig viele Zeichen akzentuiert werden.
10828  Die Akzente
10829 \begin_inset Newline linebreak
10830 \end_inset
10831
10832
10833 \series bold
10834
10835 \backslash
10836 widetilde
10837 \series default
10838  und 
10839 \series bold
10840
10841 \backslash
10842 widehat
10843 \series default
10844  werden aber im Ausdruck nur mit einer Länge von etwa drei Zeichen gesetzt,
10845  was folgendes Beispiel verdeutlicht:
10846 \begin_inset Formula 
10847 \[
10848 \widetilde{A+B=C-D}
10849 \]
10850
10851 \end_inset
10852
10853
10854 \end_layout
10855
10856 \begin_layout Standard
10857 Mit den im vorigen Kapitel beschriebenen Befehlen 
10858 \series bold
10859
10860 \backslash
10861 overset
10862 \series default
10863
10864 \begin_inset Index idx
10865 status collapsed
10866
10867 \begin_layout Plain Layout
10868 Befehle ! O ! 
10869 \backslash
10870 overset
10871 \end_layout
10872
10873 \end_inset
10874
10875  und 
10876 \series bold
10877
10878 \backslash
10879 underset
10880 \series default
10881
10882 \begin_inset Index idx
10883 status collapsed
10884
10885 \begin_layout Plain Layout
10886 Befehle ! U ! 
10887 \backslash
10888 underset
10889 \end_layout
10890
10891 \end_inset
10892
10893  ist es auch möglich mehrere Zeichen zu akzentuieren.
10894  Der Befehl 
10895 \series bold
10896
10897 \backslash
10898 underset
10899 \begin_inset ERT
10900 status collapsed
10901
10902 \begin_layout Plain Layout
10903
10904
10905 \backslash
10906 leer 
10907 \end_layout
10908
10909 \end_inset
10910
10911 A=B
10912 \begin_inset Formula $\downarrow$
10913 \end_inset
10914
10915 ***
10916 \series default
10917  ergibt:
10918 \begin_inset Formula 
10919 \[
10920 \underset{***}{A=B}
10921 \]
10922
10923 \end_inset
10924
10925
10926 \end_layout
10927
10928 \begin_layout Section
10929 Leerraum
10930 \begin_inset CommandInset label
10931 LatexCommand label
10932 name "sub:Leerraum"
10933
10934 \end_inset
10935
10936
10937 \begin_inset Index idx
10938 status collapsed
10939
10940 \begin_layout Plain Layout
10941 Leerraum ! horizontaler
10942 \end_layout
10943
10944 \end_inset
10945
10946
10947 \end_layout
10948
10949 \begin_layout Subsection
10950 Vordefinierter Leerraum
10951 \begin_inset CommandInset label
10952 LatexCommand label
10953 name "sub:Vordefinierter-Leerraum"
10954
10955 \end_inset
10956
10957
10958 \begin_inset Index idx
10959 status collapsed
10960
10961 \begin_layout Plain Layout
10962 Leerraum ! horizontaler ! vordefiniert
10963 \end_layout
10964
10965 \end_inset
10966
10967
10968 \end_layout
10969
10970 \begin_layout Standard
10971 Ab und an ist es notwendig in einer Formel horizontalen Leerraum einzufügen.
10972  Dazu gibt man ein geschütztes Leerzeichen ein.
10973  Es erscheint ein 
10974 \begin_inset Quotes gld
10975 \end_inset
10976
10977
10978 \color blue
10979
10980 \begin_inset ERT
10981 status collapsed
10982
10983 \begin_layout Plain Layout
10984
10985
10986 \backslash
10987 leer 
10988 \end_layout
10989
10990 \end_inset
10991
10992
10993 \color inherit
10994
10995 \begin_inset Quotes grd
10996 \end_inset
10997
10998  und man kann durch mehrfaches Drücken der Leertaste aus acht verschiedenen
10999  Leerraum-Größen wählen.
11000  Man kann die Leerräume auch über den Mathe-Werkzeugleistenknopf 
11001 \begin_inset Graphics
11002         filename ../../images/math/space.png
11003         scale 85
11004
11005 \end_inset
11006
11007  oder mit einzelnen Befehlen aufrufen.
11008  Unabhängig vom eingegebenen Befehl kann man durch Drücken der Leertaste
11009  danach wieder aus allen Größen wählen.
11010 \end_layout
11011
11012 \begin_layout Standard
11013 \align center
11014 \begin_inset VSpace -5mm
11015 \end_inset
11016
11017
11018 \begin_inset Tabular
11019 <lyxtabular version="3" rows="3" columns="7">
11020 <features rotate="0" tabularvalignment="middle">
11021 <column alignment="center" valignment="middle" width="6.8cm">
11022 <column alignment="center" valignment="top" width="0pt">
11023 <column alignment="center" valignment="top" width="0pt">
11024 <column alignment="center" valignment="top" width="0pt">
11025 <column alignment="center" valignment="top" width="0pt">
11026 <column alignment="center" valignment="top" width="0pt">
11027 <column alignment="center" valignment="top" width="0pt">
11028 <row>
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 Befehl
11034 \end_layout
11035
11036 \end_inset
11037 </cell>
11038 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11039 \begin_inset Text
11040
11041 \begin_layout Plain Layout
11042
11043 \backslash
11044 ,
11045 \end_layout
11046
11047 \end_inset
11048 </cell>
11049 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11050 \begin_inset Text
11051
11052 \begin_layout Plain Layout
11053
11054 \backslash
11055 :
11056 \end_layout
11057
11058 \end_inset
11059 </cell>
11060 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11061 \begin_inset Text
11062
11063 \begin_layout Plain Layout
11064
11065 \backslash
11066 ;
11067 \end_layout
11068
11069 \end_inset
11070 </cell>
11071 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11072 \begin_inset Text
11073
11074 \begin_layout Plain Layout
11075
11076 \backslash
11077 quad
11078 \end_layout
11079
11080 \end_inset
11081 </cell>
11082 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11083 \begin_inset Text
11084
11085 \begin_layout Plain Layout
11086
11087 \backslash
11088 qquad
11089 \end_layout
11090
11091 \end_inset
11092 </cell>
11093 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
11094 \begin_inset Text
11095
11096 \begin_layout Plain Layout
11097
11098 \backslash
11099 !
11100 \end_layout
11101
11102 \end_inset
11103 </cell>
11104 </row>
11105 <row>
11106 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none" width="7cm">
11107 \begin_inset Text
11108
11109 \begin_layout Plain Layout
11110 Anzahl der Leertastendrücke nach Eingabe des geschützten Leerzeichens
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 0
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 1
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 2
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 3
11147 \end_layout
11148
11149 \end_inset
11150 </cell>
11151 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11152 \begin_inset Text
11153
11154 \begin_layout Plain Layout
11155 4
11156 \end_layout
11157
11158 \end_inset
11159 </cell>
11160 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
11161 \begin_inset Text
11162
11163 \begin_layout Plain Layout
11164 5
11165 \end_layout
11166
11167 \end_inset
11168 </cell>
11169 </row>
11170 <row>
11171 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11172 \begin_inset Text
11173
11174 \begin_layout Plain Layout
11175 Ergebnis
11176 \end_layout
11177
11178 \end_inset
11179 </cell>
11180 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11181 \begin_inset Text
11182
11183 \begin_layout Plain Layout
11184 \begin_inset Formula $A\, B$
11185 \end_inset
11186
11187
11188 \end_layout
11189
11190 \end_inset
11191 </cell>
11192 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11193 \begin_inset Text
11194
11195 \begin_layout Plain Layout
11196 \begin_inset Formula $A\: B$
11197 \end_inset
11198
11199
11200 \end_layout
11201
11202 \end_inset
11203 </cell>
11204 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11205 \begin_inset Text
11206
11207 \begin_layout Plain Layout
11208 \begin_inset Formula $A\; B$
11209 \end_inset
11210
11211
11212 \end_layout
11213
11214 \end_inset
11215 </cell>
11216 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11217 \begin_inset Text
11218
11219 \begin_layout Plain Layout
11220 \begin_inset Formula $A\quad B$
11221 \end_inset
11222
11223
11224 \end_layout
11225
11226 \end_inset
11227 </cell>
11228 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11229 \begin_inset Text
11230
11231 \begin_layout Plain Layout
11232 \begin_inset Formula $A\qquad B$
11233 \end_inset
11234
11235
11236 \end_layout
11237
11238 \end_inset
11239 </cell>
11240 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
11241 \begin_inset Text
11242
11243 \begin_layout Plain Layout
11244 \begin_inset Formula $A\! B$
11245 \end_inset
11246
11247
11248 \end_layout
11249
11250 \end_inset
11251 </cell>
11252 </row>
11253 </lyxtabular>
11254
11255 \end_inset
11256
11257
11258 \end_layout
11259
11260 \begin_layout Standard
11261 Die letzte Größe scheint überhaupt keinen Leerraum zu produzieren.
11262  In LyX ist diese allerdings auch im Gegensatz zu allen anderen rot eingefärbt,
11263  denn sie erstellt negativen Leerraum.
11264  Es gibt noch zwei weitere negative Leerräume:
11265 \end_layout
11266
11267 \begin_layout Standard
11268 \align center
11269 \begin_inset Tabular
11270 <lyxtabular version="3" rows="3" columns="3">
11271 <features rotate="0" tabularvalignment="middle">
11272 <column alignment="center" valignment="middle" width="6.8cm">
11273 <column alignment="center" valignment="top" width="0pt">
11274 <column alignment="center" valignment="top" width="0pt">
11275 <row>
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 Befehl
11281 \end_layout
11282
11283 \end_inset
11284 </cell>
11285 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11286 \begin_inset Text
11287
11288 \begin_layout Plain Layout
11289
11290 \backslash
11291 negmedspace
11292 \end_layout
11293
11294 \end_inset
11295 </cell>
11296 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
11297 \begin_inset Text
11298
11299 \begin_layout Plain Layout
11300
11301 \backslash
11302 negthickspace
11303 \end_layout
11304
11305 \end_inset
11306 </cell>
11307 </row>
11308 <row>
11309 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11310 \begin_inset Text
11311
11312 \begin_layout Plain Layout
11313 Anzahl der Leertastendrücke nach Eingabe des geschützten Leerzeichens
11314 \end_layout
11315
11316 \end_inset
11317 </cell>
11318 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11319 \begin_inset Text
11320
11321 \begin_layout Plain Layout
11322 6
11323 \end_layout
11324
11325 \end_inset
11326 </cell>
11327 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
11328 \begin_inset Text
11329
11330 \begin_layout Plain Layout
11331 7
11332 \end_layout
11333
11334 \end_inset
11335 </cell>
11336 </row>
11337 <row>
11338 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11339 \begin_inset Text
11340
11341 \begin_layout Plain Layout
11342 Ergebnis
11343 \end_layout
11344
11345 \end_inset
11346 </cell>
11347 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11348 \begin_inset Text
11349
11350 \begin_layout Plain Layout
11351 \begin_inset Formula $A\negmedspace B$
11352 \end_inset
11353
11354
11355 \end_layout
11356
11357 \end_inset
11358 </cell>
11359 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
11360 \begin_inset Text
11361
11362 \begin_layout Plain Layout
11363 \begin_inset Formula $A\negthickspace B$
11364 \end_inset
11365
11366
11367 \end_layout
11368
11369 \end_inset
11370 </cell>
11371 </row>
11372 </lyxtabular>
11373
11374 \end_inset
11375
11376
11377 \end_layout
11378
11379 \begin_layout Standard
11380 Negative Leerräume bewirken, dass sich benachbarte Zeichen überschneiden.
11381  Man kann auf diese Weise Ligaturen erzwingen, was z.
11382 \begin_inset space \thinspace{}
11383 \end_inset
11384
11385 B.
11386  für Summenzeichen von Nutzen ist: 
11387 \end_layout
11388
11389 \begin_layout Standard
11390 \align center
11391 \begin_inset Tabular
11392 <lyxtabular version="3" rows="3" columns="2">
11393 <features rotate="0" tabularvalignment="middle">
11394 <column alignment="center" valignment="top">
11395 <column alignment="center" valignment="top">
11396 <row>
11397 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11398 \begin_inset Text
11399
11400 \begin_layout Plain Layout
11401 Befehl
11402 \end_layout
11403
11404 \end_inset
11405 </cell>
11406 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
11407 \begin_inset Text
11408
11409 \begin_layout Plain Layout
11410 Ergebnis
11411 \begin_inset Note Note
11412 status collapsed
11413
11414 \begin_layout Plain Layout
11415
11416 \series bold
11417
11418 \backslash
11419 raisebox
11420 \series default
11421  dient nur als Abstandhalter.
11422 \end_layout
11423
11424 \end_inset
11425
11426
11427 \end_layout
11428
11429 \end_inset
11430 </cell>
11431 </row>
11432 <row>
11433 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11434 \begin_inset Text
11435
11436 \begin_layout Plain Layout
11437
11438 \backslash
11439 sum
11440 \backslash
11441 sum
11442 \begin_inset ERT
11443 status collapsed
11444
11445 \begin_layout Plain Layout
11446
11447
11448 \backslash
11449 leer 
11450 \end_layout
11451
11452 \end_inset
11453
11454 f_kl
11455 \end_layout
11456
11457 \end_inset
11458 </cell>
11459 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11460 \begin_inset Text
11461
11462 \begin_layout Plain Layout
11463 \begin_inset Formula $\raisebox{4.5mm}{}\sum\sum f_{kl}\raisebox{-2.5mm}{}$
11464 \end_inset
11465
11466
11467 \end_layout
11468
11469 \end_inset
11470 </cell>
11471 </row>
11472 <row>
11473 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11474 \begin_inset Text
11475
11476 \begin_layout Plain Layout
11477
11478 \backslash
11479 sum
11480 \backslash
11481 negmedspace
11482 \backslash
11483 sum
11484 \begin_inset ERT
11485 status collapsed
11486
11487 \begin_layout Plain Layout
11488
11489
11490 \backslash
11491 leer 
11492 \end_layout
11493
11494 \end_inset
11495
11496 f_kl
11497 \end_layout
11498
11499 \end_inset
11500 </cell>
11501 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
11502 \begin_inset Text
11503
11504 \begin_layout Plain Layout
11505 \begin_inset Formula $\raisebox{4.5mm}{}\sum\negmedspace\sum f_{kl}\raisebox{-2.5mm}{}$
11506 \end_inset
11507
11508
11509 \end_layout
11510
11511 \end_inset
11512 </cell>
11513 </row>
11514 </lyxtabular>
11515
11516 \end_inset
11517
11518
11519 \end_layout
11520
11521 \begin_layout Standard
11522 Relationen, wie z.
11523 \begin_inset space \thinspace{}
11524 \end_inset
11525
11526 B.
11527  Gleichheitszeichen, sind immer von Leerraum umgeben.
11528  Will man dies unterdrücken, schreibt man das Gleichheitszeichen in eine
11529  TeX-Klammer.
11530  Die Wirkung kann man an folgendem Beispiel gut erkennen:
11531 \end_layout
11532
11533 \begin_layout Standard
11534 \align center
11535 \begin_inset Tabular
11536 <lyxtabular version="3" rows="2" columns="2">
11537 <features rotate="0" tabularvalignment="middle">
11538 <column alignment="center" valignment="top" width="0pt">
11539 <column alignment="center" valignment="top" width="0pt">
11540 <row>
11541 <cell alignment="center" valignment="top" usebox="none">
11542 \begin_inset Text
11543
11544 \begin_layout Plain Layout
11545 normale Gleichung
11546 \end_layout
11547
11548 \end_inset
11549 </cell>
11550 <cell alignment="center" valignment="top" usebox="none">
11551 \begin_inset Text
11552
11553 \begin_layout Plain Layout
11554 \begin_inset Formula $A=B$
11555 \end_inset
11556
11557
11558 \end_layout
11559
11560 \end_inset
11561 </cell>
11562 </row>
11563 <row>
11564 <cell alignment="center" valignment="top" usebox="none">
11565 \begin_inset Text
11566
11567 \begin_layout Plain Layout
11568 \begin_inset Note Note
11569 status collapsed
11570
11571 \begin_layout Plain Layout
11572
11573 \series bold
11574
11575 \backslash
11576 raisebox
11577 \series default
11578  dient nur als Abstandhalter.
11579 \end_layout
11580
11581 \end_inset
11582
11583
11584 \begin_inset Formula $\raisebox{5mm}{}$
11585 \end_inset
11586
11587 Gleichung ohne Leerraum
11588 \end_layout
11589
11590 \end_inset
11591 </cell>
11592 <cell multicolumn="1" alignment="center" valignment="top" usebox="none">
11593 \begin_inset Text
11594
11595 \begin_layout Plain Layout
11596 \begin_inset Formula $A{=}B$
11597 \end_inset
11598
11599
11600 \end_layout
11601
11602 \end_inset
11603 </cell>
11604 </row>
11605 </lyxtabular>
11606
11607 \end_inset
11608
11609
11610 \end_layout
11611
11612 \begin_layout Standard
11613 Der Befehl für die letzte Formel lautet: 
11614 \series bold
11615 A
11616 \backslash
11617 {=
11618 \begin_inset Formula $\to$
11619 \end_inset
11620
11621 B
11622 \end_layout
11623
11624 \begin_layout Standard
11625 \begin_inset VSpace bigskip
11626 \end_inset
11627
11628 Leerräumen werden für physikalische Einheiten benötigt, denn zwischen Wert
11629  und Einheit ist der kleinste Leerraum und kein normales Leerzeichen.
11630  Bei Einheiten im Text fügt man den kleinsten Leerraum über das Menü 
11631 \family sans
11632 Einfügen\SpecialChar \menuseparator
11633 Formatierung\SpecialChar \menuseparator
11634 Kleiner
11635 \begin_inset space ~
11636 \end_inset
11637
11638 Abstand
11639 \family default
11640  (Tastenkürzel 
11641 \family sans
11642 Strg+Shift+Leertaste
11643 \family default
11644 ) ein.
11645 \end_layout
11646
11647 \begin_layout Standard
11648 Ein Beispiel zur Veranschaulichung:
11649 \end_layout
11650
11651 \begin_layout Standard
11652 \begin_inset Tabular
11653 <lyxtabular version="3" rows="2" columns="2">
11654 <features rotate="0" tabularvalignment="middle">
11655 <column alignment="left" valignment="top">
11656 <column alignment="left" valignment="top">
11657 <row>
11658 <cell alignment="center" valignment="top" usebox="none">
11659 \begin_inset Text
11660
11661 \begin_layout Plain Layout
11662 24 kW
11663 \begin_inset Formula $\cdot$
11664 \end_inset
11665
11666 h
11667 \end_layout
11668
11669 \end_inset
11670 </cell>
11671 <cell alignment="center" valignment="top" usebox="none">
11672 \begin_inset Text
11673
11674 \begin_layout Plain Layout
11675 Leerzeichen zwischen Wert und Einheit
11676 \end_layout
11677
11678 \end_inset
11679 </cell>
11680 </row>
11681 <row>
11682 <cell alignment="center" valignment="top" usebox="none">
11683 \begin_inset Text
11684
11685 \begin_layout Plain Layout
11686 24
11687 \begin_inset space \thinspace{}
11688 \end_inset
11689
11690 kW
11691 \begin_inset Formula $\cdot$
11692 \end_inset
11693
11694 h
11695 \end_layout
11696
11697 \end_inset
11698 </cell>
11699 <cell alignment="center" valignment="top" usebox="none">
11700 \begin_inset Text
11701
11702 \begin_layout Plain Layout
11703 kleinster Leerraum zwischen Wert und Einheit
11704 \end_layout
11705
11706 \end_inset
11707 </cell>
11708 </row>
11709 </lyxtabular>
11710
11711 \end_inset
11712
11713
11714 \end_layout
11715
11716 \begin_layout Subsection
11717 Variabler Leerraum
11718 \begin_inset ERT
11719 status collapsed
11720
11721 \begin_layout Plain Layout
11722
11723
11724 \backslash
11725 texorpdfstring{
11726 \end_layout
11727
11728 \end_inset
11729
11730
11731 \begin_inset Foot
11732 status collapsed
11733
11734 \begin_layout Plain Layout
11735 für vertikalen Leerraum in Formeln siehe 
11736 \begin_inset CommandInset ref
11737 LatexCommand ref
11738 reference "sub:Zeilenabstand"
11739
11740 \end_inset
11741
11742
11743 \end_layout
11744
11745 \end_inset
11746
11747
11748 \begin_inset ERT
11749 status collapsed
11750
11751 \begin_layout Plain Layout
11752
11753 }{}
11754 \end_layout
11755
11756 \end_inset
11757
11758
11759 \begin_inset Note Note
11760 status collapsed
11761
11762 \begin_layout Plain Layout
11763
11764 \series bold
11765
11766 \backslash
11767 texorpdfstring
11768 \series default
11769  dient dazu, dass die Fußnote nicht mit im PDF-Lesezeichen erscheint.
11770 \end_layout
11771
11772 \begin_layout Plain Layout
11773 Näheres zu 
11774 \series bold
11775
11776 \backslash
11777 texorpdfstring
11778 \series default
11779  steht in Kapitel 
11780 \begin_inset CommandInset ref
11781 LatexCommand ref
11782 reference "sub:Formeln-in-Überschriften"
11783
11784 \end_inset
11785
11786 .
11787 \end_layout
11788
11789 \end_inset
11790
11791
11792 \begin_inset CommandInset label
11793 LatexCommand label
11794 name "sub:Variabler-Leerraum"
11795
11796 \end_inset
11797
11798
11799 \begin_inset Index idx
11800 status collapsed
11801
11802 \begin_layout Plain Layout
11803 Leerraum ! horizontaler ! variabel
11804 \end_layout
11805
11806 \end_inset
11807
11808
11809 \end_layout
11810
11811 \begin_layout Standard
11812 Leerraum mit vorgegebener Länge lässt sich mit dem Befehl 
11813 \series bold
11814
11815 \backslash
11816 hspace
11817 \series default
11818
11819 \begin_inset Index idx
11820 status collapsed
11821
11822 \begin_layout Plain Layout
11823 Befehle ! H ! 
11824 \backslash
11825 hspace
11826 \end_layout
11827
11828 \end_inset
11829
11830  einfügen.
11831  Es erscheint ein langes 
11832 \begin_inset Quotes gld
11833 \end_inset
11834
11835
11836 \color blue
11837
11838 \begin_inset ERT
11839 status collapsed
11840
11841 \begin_layout Plain Layout
11842
11843
11844 \backslash
11845 leer 
11846 \end_layout
11847
11848 \end_inset
11849
11850
11851 \color inherit
11852
11853 \begin_inset Quotes grd
11854 \end_inset
11855
11856 .
11857  Die Länge kann eingestellt werden, indem man mit der linken Maustaste auf
11858  das 
11859 \begin_inset Quotes gld
11860 \end_inset
11861
11862
11863 \color blue
11864
11865 \begin_inset ERT
11866 status collapsed
11867
11868 \begin_layout Plain Layout
11869
11870
11871 \backslash
11872 leer 
11873 \end_layout
11874
11875 \end_inset
11876
11877
11878 \color inherit
11879
11880 \begin_inset Quotes grd
11881 \end_inset
11882
11883  klickt.
11884  Die Länge darf auch negativ sein.
11885  Um so viel Leerraum einzufügen, dass die Formel allen verfügbaren Platz
11886  einnimmt, benutzt man den Befehl 
11887 \series bold
11888
11889 \backslash
11890 hfill
11891 \series default
11892
11893 \begin_inset Index idx
11894 status collapsed
11895
11896 \begin_layout Plain Layout
11897 Befehle ! H ! 
11898 \backslash
11899 hfill
11900 \end_layout
11901
11902 \end_inset
11903
11904 .
11905 \end_layout
11906
11907 \begin_layout Standard
11908 \begin_inset VSpace -1mm
11909 \end_inset
11910
11911
11912 \end_layout
11913
11914 \begin_layout Standard
11915 \align center
11916 \begin_inset Tabular
11917 <lyxtabular version="3" rows="4" columns="2">
11918 <features rotate="0" tabularvalignment="middle">
11919 <column alignment="center" valignment="top">
11920 <column alignment="center" valignment="top">
11921 <row>
11922 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11923 \begin_inset Text
11924
11925 \begin_layout Plain Layout
11926 Befehl (
11927 \backslash
11928 hspace Länge)
11929 \end_layout
11930
11931 \end_inset
11932 </cell>
11933 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
11934 \begin_inset Text
11935
11936 \begin_layout Plain Layout
11937 Ergebnis
11938 \end_layout
11939
11940 \end_inset
11941 </cell>
11942 </row>
11943 <row>
11944 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11945 \begin_inset Text
11946
11947 \begin_layout Plain Layout
11948 A=B
11949 \backslash
11950 hspace{3cm
11951 \begin_inset Formula $\to$
11952 \end_inset
11953
11954 A
11955 \backslash
11956 not=C (3
11957 \begin_inset space \thinspace{}
11958 \end_inset
11959
11960 cm)
11961 \end_layout
11962
11963 \end_inset
11964 </cell>
11965 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11966 \begin_inset Text
11967
11968 \begin_layout Plain Layout
11969 \begin_inset Formula $A=B\hspace{3cm}A\not=C$
11970 \end_inset
11971
11972
11973 \end_layout
11974
11975 \end_inset
11976 </cell>
11977 </row>
11978 <row>
11979 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11980 \begin_inset Text
11981
11982 \begin_layout Plain Layout
11983 A
11984 \backslash
11985 hspace{-1mm
11986 \begin_inset Formula $\to$
11987 \end_inset
11988
11989 A
11990 \backslash
11991 not=A (-1
11992 \begin_inset space \thinspace{}
11993 \end_inset
11994
11995 mm)
11996 \end_layout
11997
11998 \end_inset
11999 </cell>
12000 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
12001 \begin_inset Text
12002
12003 \begin_layout Plain Layout
12004 \begin_inset Formula $A\hspace{-1mm}A\not=A$
12005 \end_inset
12006
12007
12008 \end_layout
12009
12010 \end_inset
12011 </cell>
12012 </row>
12013 <row>
12014 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
12015 \begin_inset Text
12016
12017 \begin_layout Plain Layout
12018 A=A
12019 \backslash
12020 hfill
12021 \begin_inset ERT
12022 status collapsed
12023
12024 \begin_layout Plain Layout
12025
12026
12027 \backslash
12028 leer 
12029 \end_layout
12030
12031 \end_inset
12032
12033 B=B
12034 \end_layout
12035
12036 \end_inset
12037 </cell>
12038 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
12039 \begin_inset Text
12040
12041 \begin_layout Plain Layout
12042 \begin_inset Formula $A=A\hfill B=B$
12043 \end_inset
12044
12045
12046 \end_layout
12047
12048 \end_inset
12049 </cell>
12050 </row>
12051 </lyxtabular>
12052
12053 \end_inset
12054
12055
12056 \end_layout
12057
12058 \begin_layout Standard
12059 Im letzten Beispiel ist der verfügbare Platz durch die Länge des längsten
12060  Spalteneintrags der Tabelle vorgegeben.
12061  In einer eingebetteten Formel ist der Platz von der Länge der Zeile abhängig,
12062  in die 
12063 \series bold
12064
12065 \backslash
12066 hfill
12067 \series default
12068  eingegeben wird.
12069  Füllt eine Zeile die Breite komplett aus, wird demnach kein Leerraum erstellt.
12070  
12071 \series bold
12072
12073 \backslash
12074 hfill
12075 \series default
12076  wirkt in abgesetzten Formeln nur, wenn der Formelstil 
12077 \series bold
12078 Eingerückt
12079 \series default
12080  eingestellt ist.
12081  (Formelstile sind in 
12082 \begin_inset CommandInset ref
12083 LatexCommand ref
12084 reference "sec:Formelstile"
12085
12086 \end_inset
12087
12088  erklärt.)
12089 \end_layout
12090
12091 \begin_layout Standard
12092 Neben 
12093 \series bold
12094
12095 \backslash
12096 hfill
12097 \series default
12098  gibt es noch die Befehle 
12099 \series bold
12100
12101 \backslash
12102 dotfill
12103 \series default
12104  und 
12105 \series bold
12106
12107 \backslash
12108 hrulefill
12109 \series default
12110 , die den Leerraum mit einem Muster füllen, siehe 
12111 \begin_inset CommandInset ref
12112 LatexCommand ref
12113 reference "sub:Fortsetzungspunkte"
12114
12115 \end_inset
12116
12117  für ein Beispiel.
12118 \end_layout
12119
12120 \begin_layout Standard
12121 Variabler Leerraum kann für Text über das Menü 
12122 \family sans
12123 Einfügen\SpecialChar \menuseparator
12124 Formatierung\SpecialChar \menuseparator
12125 Horizontaler
12126 \begin_inset space ~
12127 \end_inset
12128
12129 Abstand
12130 \family default
12131  eingefügt werden:
12132 \end_layout
12133
12134 \begin_layout Standard
12135 Dies ist eine Zeile mit
12136 \begin_inset space \hspace{}
12137 \length 2cm
12138 \end_inset
12139
12140 2
12141 \begin_inset space \thinspace{}
12142 \end_inset
12143
12144 cm Leerraum.
12145 \end_layout
12146
12147 \begin_layout Standard
12148 Dies ist eine Zeile mit
12149 \begin_inset space \hfill{}
12150 \end_inset
12151
12152 maximalem Leerraum.
12153 \end_layout
12154
12155 \begin_layout Subsection
12156 Leerraum neben eingebetteten Formeln
12157 \begin_inset Index idx
12158 status collapsed
12159
12160 \begin_layout Plain Layout
12161 Leerraum ! neben eingebetteten Formeln
12162 \end_layout
12163
12164 \end_inset
12165
12166
12167 \end_layout
12168
12169 \begin_layout Standard
12170 Über die Länge 
12171 \series bold
12172
12173 \backslash
12174 mathsurround
12175 \series default
12176
12177 \begin_inset Index idx
12178 status collapsed
12179
12180 \begin_layout Plain Layout
12181 Befehle ! M ! 
12182 \backslash
12183 mathsurround
12184 \end_layout
12185
12186 \end_inset
12187
12188  lässt sich der Leerraum einstellen, der neben eingebettete Formeln gesetzt
12189  wird.
12190  Der Wert einer Länge wird mit dem Befehl 
12191 \series bold
12192
12193 \backslash
12194 setlength
12195 \series default
12196
12197 \begin_inset Index idx
12198 status collapsed
12199
12200 \begin_layout Plain Layout
12201 Befehle ! S ! 
12202 \backslash
12203 setlength
12204 \end_layout
12205
12206 \end_inset
12207
12208  gesetzt.
12209  Dieser besitzt folgendes Befehlsschema:
12210 \end_layout
12211
12212 \begin_layout Standard
12213
12214 \series bold
12215
12216 \backslash
12217 setlength{Längenname}{Wert}
12218 \end_layout
12219
12220 \begin_layout Standard
12221 Um 
12222 \series bold
12223
12224 \backslash
12225 mathsurround
12226 \series default
12227  den Wert 5
12228 \begin_inset space \thinspace{}
12229 \end_inset
12230
12231 mm zuzuweisen, gibt man im TeX-Modus den Befehl
12232 \end_layout
12233
12234 \begin_layout Standard
12235
12236 \series bold
12237
12238 \backslash
12239 setlength{
12240 \backslash
12241 mathsurround}{5mm}
12242 \end_layout
12243
12244 \begin_layout Standard
12245 ein.
12246  Neben alle eingebetteten Formeln, die auf den Befehl folgen, wird nun 5
12247 \begin_inset space \thinspace{}
12248 \end_inset
12249
12250 mm Leerraum gesetzt:
12251 \begin_inset ERT
12252 status collapsed
12253
12254 \begin_layout Plain Layout
12255
12256
12257 \backslash
12258 setlength{
12259 \backslash
12260 mathsurround}{5mm}
12261 \end_layout
12262
12263 \end_inset
12264
12265
12266 \end_layout
12267
12268 \begin_layout Standard
12269 Dies ist eine Zeile in der sich 
12270 \begin_inset Formula $A=B$
12271 \end_inset
12272
12273  eine Formel mit 5
12274 \begin_inset space \thinspace{}
12275 \end_inset
12276
12277 mm umgebendem Leerraum befindet.
12278 \begin_inset ERT
12279 status collapsed
12280
12281 \begin_layout Plain Layout
12282
12283
12284 \backslash
12285 setlength{
12286 \backslash
12287 mathsurround}{0pt}
12288 \end_layout
12289
12290 \end_inset
12291
12292
12293 \end_layout
12294
12295 \begin_layout Standard
12296 Um wieder zum voreingestellten Wert zurückzukehren, setzt man 
12297 \series bold
12298
12299 \backslash
12300 mathsurround
12301 \series default
12302  auf den Wert 0
12303 \begin_inset space \thinspace{}
12304 \end_inset
12305
12306 pt.
12307 \end_layout
12308
12309 \begin_layout Section
12310 Boxen und Rahmen
12311 \begin_inset Index idx
12312 status collapsed
12313
12314 \begin_layout Plain Layout
12315 Boxen
12316 \end_layout
12317
12318 \end_inset
12319
12320
12321 \begin_inset Index idx
12322 status collapsed
12323
12324 \begin_layout Plain Layout
12325 Rahmen | see
12326 \begin_inset ERT
12327 status collapsed
12328
12329 \begin_layout Plain Layout
12330
12331 {
12332 \end_layout
12333
12334 \end_inset
12335
12336 Boxen
12337 \begin_inset ERT
12338 status collapsed
12339
12340 \begin_layout Plain Layout
12341
12342 }
12343 \end_layout
12344
12345 \end_inset
12346
12347
12348 \end_layout
12349
12350 \end_inset
12351
12352
12353 \end_layout
12354
12355 \begin_layout Standard
12356 Boxen für Text sind im Kapitel 
12357 \family typewriter
12358 Boxen
12359 \family default
12360  im Handbuch 
12361 \family typewriter
12362 Eingebettete
12363 \begin_inset space ~
12364 \end_inset
12365
12366 Objekte
12367 \family default
12368  beschrieben.
12369 \end_layout
12370
12371 \begin_layout Subsection
12372 Boxen mit Rahmen
12373 \begin_inset CommandInset label
12374 LatexCommand label
12375 name "sub:Boxen-mit-Rahmen"
12376
12377 \end_inset
12378
12379
12380 \begin_inset Index idx
12381 status collapsed
12382
12383 \begin_layout Plain Layout
12384 Boxen ! mit Rahmen
12385 \end_layout
12386
12387 \end_inset
12388
12389
12390 \end_layout
12391
12392 \begin_layout Standard
12393 Es ist möglich Formeln oder Teile davon mit den Befehlen 
12394 \series bold
12395
12396 \backslash
12397 fbox
12398 \series default
12399
12400 \begin_inset Index idx
12401 status collapsed
12402
12403 \begin_layout Plain Layout
12404 Befehle ! F ! 
12405 \backslash
12406 fbox
12407 \end_layout
12408
12409 \end_inset
12410
12411  und 
12412 \series bold
12413
12414 \backslash
12415 boxed
12416 \series default
12417
12418 \begin_inset Index idx
12419 status collapsed
12420
12421 \begin_layout Plain Layout
12422 Befehle ! B ! 
12423 \backslash
12424 boxed
12425 \end_layout
12426
12427 \end_inset
12428
12429  zu umranden.
12430 \end_layout
12431
12432 \begin_layout Standard
12433 Gibt man einen dieser Befehle in eine Formel ein, erscheint ein Eingabefeld
12434  in einem Rahmen.
12435  Bei 
12436 \series bold
12437
12438 \backslash
12439 fbox
12440 \series default
12441  muss in diesem Eingabefeld mit 
12442 \family sans
12443 Strg+M
12444 \family default
12445  noch eine Formel erstellt werden, denn der Inhalt dieser Box wird sonst
12446  als mathematischer Text behandelt.
12447  Verwendet man 
12448 \series bold
12449
12450 \backslash
12451 boxed
12452 \series default
12453 , wird automatisch im Rahmen eine neue Formel erzeugt.
12454 \end_layout
12455
12456 \begin_layout Standard
12457 Der Befehl 
12458 \series bold
12459
12460 \backslash
12461 fbox
12462 \series default
12463  ist nicht zur Umrandung von abgesetzten Formeln geeignet, denn die Formel
12464  wird dann immer in Textzeilengröße gesetzt.
12465  Im Gegensatz dazu ist 
12466 \series bold
12467
12468 \backslash
12469 boxed
12470 \series default
12471  nicht zur Umrandung von Formeln in einer Textzeile geeignet, denn die Formel
12472  wird dann immer in der Größe einer abgesetzten Formel gesetzt.
12473 \end_layout
12474
12475 \begin_layout Standard
12476 Als Erweiterung zu 
12477 \series bold
12478
12479 \backslash
12480 fbox
12481 \series default
12482  gibt es den Befehl 
12483 \series bold
12484
12485 \backslash
12486 framebox
12487 \series default
12488
12489 \begin_inset Index idx
12490 status collapsed
12491
12492 \begin_layout Plain Layout
12493 Befehle ! F ! 
12494 \backslash
12495 framebox
12496 \end_layout
12497
12498 \end_inset
12499
12500 , bei dem man zusätzlich die Rahmenbreite und die Ausrichtung einstellen
12501  kann.
12502  
12503 \series bold
12504
12505 \backslash
12506 framebox
12507 \series default
12508  wird nach folgendem Schema verwendet:
12509 \end_layout
12510
12511 \begin_layout Standard
12512
12513 \series bold
12514
12515 \backslash
12516 framebox[Rahmenbreite][Position]{Boxinhalt}
12517 \end_layout
12518
12519 \begin_layout Standard
12520 Die Position kann entweder 
12521 \emph on
12522 l
12523 \emph default
12524  oder 
12525 \emph on
12526 r
12527 \emph default
12528  sein.
12529  
12530 \emph on
12531 l
12532 \emph default
12533  bewirkt linksbündige, 
12534 \emph on
12535 r
12536 \emph default
12537  rechtsbündige Ausrichtung der Formel in der Box.
12538  Gibt man keine Position an, wird die Formel zentriert.
12539 \begin_inset Newline newline
12540 \end_inset
12541
12542 Gibt man keine Breite an, darf auch keine Position angegeben werden.
12543  In diesem Falle wird die Rahmenbreite wie bei 
12544 \series bold
12545
12546 \backslash
12547 fbox
12548 \series default
12549  an den Boxinhalt angepasst.
12550 \end_layout
12551
12552 \begin_layout Standard
12553 Wenn man den Befehl 
12554 \series bold
12555
12556 \backslash
12557 framebox
12558 \series default
12559  eingibt, erscheint eine Box mit drei Eingabefeldern.
12560  Die ersten beiden sind von eckigen Klammern umgeben und stehen für die
12561  beiden optionalen Argumente.
12562  In das dritte Feld wird wie bei 
12563 \series bold
12564
12565 \backslash
12566 fbox
12567 \series default
12568  die Formel eingegeben.
12569 \end_layout
12570
12571 \begin_layout Standard
12572 \align center
12573 \begin_inset Tabular
12574 <lyxtabular version="3" rows="5" columns="2">
12575 <features rotate="0" tabularvalignment="middle">
12576 <column alignment="center" valignment="top">
12577 <column alignment="center" valignment="top">
12578 <row>
12579 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
12580 \begin_inset Text
12581
12582 \begin_layout Plain Layout
12583 Befehl
12584 \end_layout
12585
12586 \end_inset
12587 </cell>
12588 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
12589 \begin_inset Text
12590
12591 \begin_layout Plain Layout
12592 Ergebnis
12593 \begin_inset Note Note
12594 status collapsed
12595
12596 \begin_layout Plain Layout
12597
12598 \series bold
12599
12600 \backslash
12601 raisebox
12602 \series default
12603  dient nur als Abstandhalter.
12604 \end_layout
12605
12606 \end_inset
12607
12608
12609 \end_layout
12610
12611 \end_inset
12612 </cell>
12613 </row>
12614 <row>
12615 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12616 \begin_inset Text
12617
12618 \begin_layout Plain Layout
12619
12620 \backslash
12621 fbox
12622 \begin_inset ERT
12623 status collapsed
12624
12625 \begin_layout Plain Layout
12626
12627
12628 \backslash
12629 leer 
12630 \end_layout
12631
12632 \end_inset
12633
12634
12635 \family sans
12636 Strg+M
12637 \family default
12638  
12639 \backslash
12640 int
12641 \begin_inset ERT
12642 status collapsed
12643
12644 \begin_layout Plain Layout
12645
12646
12647 \backslash
12648 leer 
12649 \end_layout
12650
12651 \end_inset
12652
12653 A=B
12654 \end_layout
12655
12656 \end_inset
12657 </cell>
12658 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12659 \begin_inset Text
12660
12661 \begin_layout Plain Layout
12662 \begin_inset Formula $\raisebox{6mm}{}\fbox{\ensuremath{\int A=B}}\raisebox{-4mm}{}$
12663 \end_inset
12664
12665
12666 \end_layout
12667
12668 \end_inset
12669 </cell>
12670 </row>
12671 <row>
12672 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12673 \begin_inset Text
12674
12675 \begin_layout Plain Layout
12676
12677 \backslash
12678 boxed
12679 \begin_inset ERT
12680 status collapsed
12681
12682 \begin_layout Plain Layout
12683
12684
12685 \backslash
12686 leer 
12687 \end_layout
12688
12689 \end_inset
12690
12691
12692 \backslash
12693 int
12694 \begin_inset ERT
12695 status collapsed
12696
12697 \begin_layout Plain Layout
12698
12699
12700 \backslash
12701 leer 
12702 \end_layout
12703
12704 \end_inset
12705
12706 A=B
12707 \end_layout
12708
12709 \end_inset
12710 </cell>
12711 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12712 \begin_inset Text
12713
12714 \begin_layout Plain Layout
12715 \begin_inset Formula $\raisebox{8.5mm}{}\boxed{\int A=B}\raisebox{-6.5mm}{}$
12716 \end_inset
12717
12718
12719 \end_layout
12720
12721 \end_inset
12722 </cell>
12723 </row>
12724 <row>
12725 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12726 \begin_inset Text
12727
12728 \begin_layout Plain Layout
12729 A+
12730 \backslash
12731 fbox
12732 \begin_inset ERT
12733 status collapsed
12734
12735 \begin_layout Plain Layout
12736
12737
12738 \backslash
12739 leer 
12740 \end_layout
12741
12742 \end_inset
12743
12744 B
12745 \end_layout
12746
12747 \end_inset
12748 </cell>
12749 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12750 \begin_inset Text
12751
12752 \begin_layout Plain Layout
12753 \begin_inset Formula $\raisebox{6mm}{}A+\fbox{B}\raisebox{-3mm}{}$
12754 \end_inset
12755
12756
12757 \end_layout
12758
12759 \end_inset
12760 </cell>
12761 </row>
12762 <row>
12763 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
12764 \begin_inset Text
12765
12766 \begin_layout Plain Layout
12767
12768 \backslash
12769 framebox
12770 \begin_inset ERT
12771 status collapsed
12772
12773 \begin_layout Plain Layout
12774
12775
12776 \backslash
12777 leer 
12778 \end_layout
12779
12780 \end_inset
12781
12782 20mm
12783 \begin_inset Formula $\to$
12784 \end_inset
12785
12786
12787 \begin_inset Formula $\to$
12788 \end_inset
12789
12790
12791 \family sans
12792 Strg+M
12793 \family default
12794  
12795 \backslash
12796 frac
12797 \begin_inset ERT
12798 status collapsed
12799
12800 \begin_layout Plain Layout
12801
12802
12803 \backslash
12804 leer 
12805 \end_layout
12806
12807 \end_inset
12808
12809 A
12810 \begin_inset Formula $\downarrow$
12811 \end_inset
12812
12813 B
12814 \end_layout
12815
12816 \end_inset
12817 </cell>
12818 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
12819 \begin_inset Text
12820
12821 \begin_layout Plain Layout
12822 \begin_inset Formula $\raisebox{6mm}{}$
12823 \end_inset
12824
12825
12826 \begin_inset Formula $\framebox[20mm][]{\ensuremath{\frac{A}{B}}}$
12827 \end_inset
12828
12829
12830 \begin_inset Formula $\raisebox{-4mm}{}$
12831 \end_inset
12832
12833
12834 \end_layout
12835
12836 \end_inset
12837 </cell>
12838 </row>
12839 </lyxtabular>
12840
12841 \end_inset
12842
12843
12844 \end_layout
12845
12846 \begin_layout Standard
12847 Die Rahmendicke kann ebenfalls eingestellt werden.
12848  Dazu müssen vor der Formel im TeX-Modus die Befehle
12849 \end_layout
12850
12851 \begin_layout Standard
12852
12853 \series bold
12854
12855 \backslash
12856 fboxrule
12857 \series default
12858  
12859 \series bold
12860
12861 \begin_inset Quotes gld
12862 \end_inset
12863
12864 Dicke
12865 \begin_inset Quotes grd
12866 \end_inset
12867
12868
12869 \series default
12870  
12871 \series bold
12872
12873 \backslash
12874 fboxsep
12875 \series default
12876  
12877 \series bold
12878
12879 \begin_inset Quotes gld
12880 \end_inset
12881
12882 Abstand
12883 \begin_inset Quotes grd
12884 \end_inset
12885
12886
12887 \end_layout
12888
12889 \begin_layout Standard
12890 eingegeben werden.
12891  
12892 \begin_inset Quotes gld
12893 \end_inset
12894
12895 Abstand
12896 \begin_inset Quotes grd
12897 \end_inset
12898
12899  legt dabei den minimalen Abstand zwischen Rahmen und dem ersten Zeichen
12900  in der Box fest.
12901  Ein Beispiel dafür ist folgende umrandete Formel:
12902 \begin_inset ERT
12903 status collapsed
12904
12905 \begin_layout Plain Layout
12906
12907
12908 \backslash
12909 fboxrule 2mm 
12910 \backslash
12911 fboxsep 3mm
12912 \end_layout
12913
12914 \end_inset
12915
12916
12917 \begin_inset Formula 
12918 \[
12919 \boxed{A+B=C}
12920 \]
12921
12922 \end_inset
12923
12924 Vor dieser Formel wurde im TeX-Modus
12925 \end_layout
12926
12927 \begin_layout Standard
12928
12929 \series bold
12930
12931 \backslash
12932 fboxrule
12933 \series default
12934  
12935 \series bold
12936 2mm
12937 \series default
12938  
12939 \series bold
12940
12941 \backslash
12942 fboxsep
12943 \series default
12944  
12945 \series bold
12946 3mm
12947 \end_layout
12948
12949 \begin_layout Standard
12950 eingegeben.
12951  Diese angegeben Werte werden für alle folgenden Boxen verwendet.
12952 \end_layout
12953
12954 \begin_layout Standard
12955 Möchte man wieder zur Standardrahmengröße zurückkehren, gibt man vor der
12956  nächsten Formel im TeX-Modus folgende Befehle ein:
12957 \end_layout
12958
12959 \begin_layout Standard
12960
12961 \series bold
12962
12963 \backslash
12964 fboxrule
12965 \series default
12966  
12967 \series bold
12968 0.4pt
12969 \series default
12970  
12971 \series bold
12972
12973 \backslash
12974 fboxsep
12975 \series default
12976  
12977 \series bold
12978 3pt
12979 \series default
12980
12981 \begin_inset ERT
12982 status collapsed
12983
12984 \begin_layout Plain Layout
12985
12986
12987 \backslash
12988 fboxrule 0.4pt 
12989 \backslash
12990 fboxsep 3pt
12991 \end_layout
12992
12993 \end_inset
12994
12995
12996 \end_layout
12997
12998 \begin_layout Subsection
12999 Boxen ohne Rahmen
13000 \begin_inset CommandInset label
13001 LatexCommand label
13002 name "sub:Boxen-ohne-Rahmen"
13003
13004 \end_inset
13005
13006
13007 \begin_inset Index idx
13008 status collapsed
13009
13010 \begin_layout Plain Layout
13011 Boxen ! ohne Rahmen
13012 \end_layout
13013
13014 \end_inset
13015
13016
13017 \end_layout
13018
13019 \begin_layout Standard
13020 Für Boxen ohne Rahmen gibt es folgende Box-Befehle: 
13021 \series bold
13022
13023 \backslash
13024 mbox
13025 \series default
13026
13027 \begin_inset Index idx
13028 status collapsed
13029
13030 \begin_layout Plain Layout
13031 Befehle ! M ! 
13032 \backslash
13033 mbox
13034 \end_layout
13035
13036 \end_inset
13037
13038
13039 \series bold
13040
13041 \backslash
13042 makebox
13043 \series default
13044
13045 \begin_inset Index idx
13046 status collapsed
13047
13048 \begin_layout Plain Layout
13049 Befehle ! M ! 
13050 \backslash
13051 makebox
13052 \end_layout
13053
13054 \end_inset
13055
13056  und
13057 \begin_inset Newline linebreak
13058 \end_inset
13059
13060
13061 \series bold
13062
13063 \backslash
13064 raisebox
13065 \series default
13066
13067 \begin_inset Index idx
13068 status collapsed
13069
13070 \begin_layout Plain Layout
13071 Befehle ! R ! 
13072 \backslash
13073 raisebox
13074 \end_layout
13075
13076 \end_inset
13077
13078
13079 \end_layout
13080
13081 \begin_layout Standard
13082 Mit 
13083 \series bold
13084
13085 \backslash
13086 raisebox
13087 \series default
13088  kann man eine Box hoch- oder tiefstellen.
13089  Allerdings behalten die Zeichen in der Box im Gegensatz zum normalen Hochstelle
13090 n die Schriftgröße bei.
13091  
13092 \series bold
13093
13094 \backslash
13095 raisebox
13096 \series default
13097  wird dabei mit folgendem Schema benutzt:
13098 \end_layout
13099
13100 \begin_layout Standard
13101
13102 \series bold
13103
13104 \backslash
13105 raisebox{Höhe}{Boxinhalt}
13106 \end_layout
13107
13108 \begin_layout Standard
13109 Soll in der Box eine Formel stehen, muss man wie bei 
13110 \series bold
13111
13112 \backslash
13113 fbox
13114 \series default
13115  eine weitere Formel erstellen.
13116  
13117 \begin_inset Note Greyedout
13118 status open
13119
13120 \begin_layout Plain Layout
13121
13122 \series bold
13123 Achtung:
13124 \series default
13125  Für 
13126 \series bold
13127
13128 \backslash
13129 raisebox
13130 \series default
13131  wird diese weitere Formel durch zweimaliges statt einmaliges Drücken von
13132  
13133 \family sans
13134 Strg+M
13135 \family default
13136  erstellt, denn LyX unterstützt 
13137 \series bold
13138
13139 \backslash
13140 raisebox
13141 \series default
13142  noch nicht direkt.
13143 \end_layout
13144
13145 \end_inset
13146
13147
13148 \end_layout
13149
13150 \begin_layout Standard
13151 \align center
13152 \begin_inset Tabular
13153 <lyxtabular version="3" rows="4" columns="2">
13154 <features rotate="0" tabularvalignment="middle">
13155 <column alignment="center" valignment="top">
13156 <column alignment="center" valignment="top">
13157 <row>
13158 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
13159 \begin_inset Text
13160
13161 \begin_layout Plain Layout
13162 Befehl
13163 \end_layout
13164
13165 \end_inset
13166 </cell>
13167 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
13168 \begin_inset Text
13169
13170 \begin_layout Plain Layout
13171 Ergebnis
13172 \end_layout
13173
13174 \end_inset
13175 </cell>
13176 </row>
13177 <row>
13178 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13179 \begin_inset Text
13180
13181 \begin_layout Plain Layout
13182 H
13183 \backslash
13184 raisebox{2mm
13185 \begin_inset Formula $\to$
13186 \end_inset
13187
13188
13189 \backslash
13190 {al
13191 \begin_inset Formula $\to$
13192 \end_inset
13193
13194  lo
13195 \end_layout
13196
13197 \end_inset
13198 </cell>
13199 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13200 \begin_inset Text
13201
13202 \begin_layout Plain Layout
13203 \begin_inset Formula $H\raisebox{2mm}{al}lo$
13204 \end_inset
13205
13206
13207 \end_layout
13208
13209 \end_inset
13210 </cell>
13211 </row>
13212 <row>
13213 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
13214 \begin_inset Text
13215
13216 \begin_layout Plain Layout
13217 H
13218 \backslash
13219 raisebox{-2mm
13220 \begin_inset Formula $\to$
13221 \end_inset
13222
13223
13224 \backslash
13225 {al
13226 \begin_inset Formula $\to$
13227 \end_inset
13228
13229 lo
13230 \end_layout
13231
13232 \end_inset
13233 </cell>
13234 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
13235 \begin_inset Text
13236
13237 \begin_layout Plain Layout
13238 \begin_inset Formula $H\raisebox{-2mm}{al}lo$
13239 \end_inset
13240
13241
13242 \end_layout
13243
13244 \end_inset
13245 </cell>
13246 </row>
13247 <row>
13248 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
13249 \begin_inset Text
13250
13251 \begin_layout Plain Layout
13252 A=
13253 \backslash
13254 raisebox{-2mm
13255 \begin_inset Formula $\to$
13256 \end_inset
13257
13258
13259 \backslash
13260 {
13261 \family sans
13262 Strg+M Strg+M
13263 \family default
13264  
13265 \backslash
13266 sqrt
13267 \begin_inset ERT
13268 status collapsed
13269
13270 \begin_layout Plain Layout
13271
13272
13273 \backslash
13274 leer 
13275 \end_layout
13276
13277 \end_inset
13278
13279
13280 \end_layout
13281
13282 \end_inset
13283 </cell>
13284 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
13285 \begin_inset Text
13286
13287 \begin_layout Plain Layout
13288 \begin_inset Formula $A=\raisebox{-2mm}{\mbox{\ensuremath{\sqrt{B}}}}$
13289 \end_inset
13290
13291
13292 \end_layout
13293
13294 \end_inset
13295 </cell>
13296 </row>
13297 </lyxtabular>
13298
13299 \end_inset
13300
13301
13302 \end_layout
13303
13304 \begin_layout Standard
13305 Der Befehl 
13306 \series bold
13307
13308 \backslash
13309 mbox
13310 \series default
13311  ist äquivalent zu 
13312 \series bold
13313
13314 \backslash
13315 fbox
13316 \series default
13317  und 
13318 \series bold
13319
13320 \backslash
13321 makebox
13322 \series default
13323  ist äquivalent zu 
13324 \series bold
13325
13326 \backslash
13327 framebox
13328 \series default
13329 , nur dass es keinen Rahmen gibt.
13330 \end_layout
13331
13332 \begin_layout Subsection
13333 Farbige Boxen
13334 \begin_inset CommandInset label
13335 LatexCommand label
13336 name "sub:Farbige-Boxen"
13337
13338 \end_inset
13339
13340
13341 \begin_inset Index idx
13342 status collapsed
13343
13344 \begin_layout Plain Layout
13345 Boxen ! farbige
13346 \end_layout
13347
13348 \end_inset
13349
13350
13351 \end_layout
13352
13353 \begin_layout Standard
13354 Damit die in diesem Kapitel angegebenen Befehle benutzt werden können, muss
13355  im LaTeX-Vorspann das LaTeX-Paket 
13356 \series bold
13357 color
13358 \series default
13359
13360 \begin_inset Foot
13361 status collapsed
13362
13363 \begin_layout Plain Layout
13364 Das Paket 
13365 \series bold
13366 color
13367 \series default
13368  ist Teil jeder LaTeX-Standardinstallation.
13369 \end_layout
13370
13371 \end_inset
13372
13373
13374 \begin_inset Index idx
13375 status collapsed
13376
13377 \begin_layout Plain Layout
13378 Pakete ! color
13379 \end_layout
13380
13381 \end_inset
13382
13383  mit der Zeile
13384 \end_layout
13385
13386 \begin_layout Standard
13387
13388 \series bold
13389
13390 \backslash
13391 usepackage{color}
13392 \end_layout
13393
13394 \begin_layout Standard
13395 geladen werden
13396 \begin_inset Foot
13397 status collapsed
13398
13399 \begin_layout Plain Layout
13400 Wird irgendwo im Dokument Text mit einer vordefinierten Farbe gefärbt, lädt
13401  LyX das LaTeX-Paket 
13402 \series bold
13403 color
13404 \series default
13405  automatisch.
13406  Dadurch kann es vorkommen, dass das Paket doppelt geladen wird, was aber
13407  keine Probleme hervorruft.
13408 \end_layout
13409
13410 \end_inset
13411
13412
13413 \begin_inset Note Note
13414 status collapsed
13415
13416 \begin_layout Plain Layout
13417 Damit das Paket nicht doppelt geladen werden kann, wurde im LaTeX-Vorspann
13418  ein Makro eingefügt.
13419 \end_layout
13420
13421 \end_inset
13422
13423 .
13424 \end_layout
13425
13426 \begin_layout Standard
13427 \begin_inset VSpace medskip
13428 \end_inset
13429
13430 Um Boxen einzufärben, verwendet man den Befehl 
13431 \series bold
13432
13433 \backslash
13434 colorbox
13435 \series default
13436
13437 \begin_inset Index idx
13438 status collapsed
13439
13440 \begin_layout Plain Layout
13441 Befehle ! C ! 
13442 \backslash
13443 colorbox
13444 \end_layout
13445
13446 \end_inset
13447
13448  nach folgendem Schema:
13449 \end_layout
13450
13451 \begin_layout Standard
13452
13453 \series bold
13454
13455 \backslash
13456 colorbox{Farbe}{Boxinhalt}
13457 \end_layout
13458
13459 \begin_layout Standard
13460 Der Boxinhalt kann auch wieder eine Box sein und eine 
13461 \series bold
13462
13463 \backslash
13464 colorbox
13465 \series default
13466  kann auch ein Teil einer anderen Box sein (siehe 2.
13467  und 3.
13468  Beispiel).
13469  Soll in der Box eine Formel stehen, muss wie bei 
13470 \series bold
13471
13472 \backslash
13473 raisebox
13474 \series default
13475  eine weitere Formel erstellt werden.
13476 \begin_inset Foot
13477 status collapsed
13478
13479 \begin_layout Plain Layout
13480 Das gilt auch für den Befehl 
13481 \series bold
13482
13483 \backslash
13484 fcolorbox
13485 \series default
13486 .
13487 \end_layout
13488
13489 \end_inset
13490
13491
13492 \end_layout
13493
13494 \begin_layout Standard
13495 Aus folgenden vordefinierten Farben kann gewählt werden:
13496 \end_layout
13497
13498 \begin_layout Standard
13499
13500 \series bold
13501 black
13502 \series default
13503
13504 \series bold
13505 blue
13506 \series default
13507
13508 \series bold
13509 cyan
13510 \series default
13511
13512 \series bold
13513 green
13514 \series default
13515
13516 \series bold
13517 magenta
13518 \series default
13519
13520 \series bold
13521 red
13522 \series default
13523
13524 \series bold
13525 white
13526 \series default
13527  und 
13528 \series bold
13529 yellow
13530 \end_layout
13531
13532 \begin_layout Standard
13533 \align center
13534 \begin_inset Tabular
13535 <lyxtabular version="3" rows="4" columns="2">
13536 <features rotate="0" tabularvalignment="middle">
13537 <column alignment="center" valignment="top">
13538 <column alignment="center" valignment="top">
13539 <row>
13540 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
13541 \begin_inset Text
13542
13543 \begin_layout Plain Layout
13544 Befehl
13545 \end_layout
13546
13547 \end_inset
13548 </cell>
13549 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
13550 \begin_inset Text
13551
13552 \begin_layout Plain Layout
13553 Ergebnis
13554 \begin_inset Note Note
13555 status collapsed
13556
13557 \begin_layout Plain Layout
13558
13559 \series bold
13560
13561 \backslash
13562 raisebox
13563 \series default
13564  dient nur als Abstandhalter.
13565 \end_layout
13566
13567 \end_inset
13568
13569
13570 \end_layout
13571
13572 \end_inset
13573 </cell>
13574 </row>
13575 <row>
13576 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13577 \begin_inset Text
13578
13579 \begin_layout Plain Layout
13580
13581 \backslash
13582 colorbox{yellow
13583 \begin_inset Formula $\to$
13584 \end_inset
13585
13586
13587 \backslash
13588 {A=B
13589 \end_layout
13590
13591 \end_inset
13592 </cell>
13593 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13594 \begin_inset Text
13595
13596 \begin_layout Plain Layout
13597 \begin_inset Formula $\raisebox{6mm}{}\colorbox{yellow}{A=B}\raisebox{-3mm}{}$
13598 \end_inset
13599
13600
13601 \end_layout
13602
13603 \end_inset
13604 </cell>
13605 </row>
13606 <row>
13607 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13608 \begin_inset Text
13609
13610 \begin_layout Plain Layout
13611
13612 \backslash
13613 colorbox{green
13614 \begin_inset Formula $\to$
13615 \end_inset
13616
13617
13618 \backslash
13619 {
13620 \backslash
13621 fbox
13622 \begin_inset ERT
13623 status collapsed
13624
13625 \begin_layout Plain Layout
13626
13627
13628 \backslash
13629 leer 
13630 \end_layout
13631
13632 \end_inset
13633
13634 A=B
13635 \end_layout
13636
13637 \end_inset
13638 </cell>
13639 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13640 \begin_inset Text
13641
13642 \begin_layout Plain Layout
13643 \begin_inset Formula $\raisebox{6mm}{}\colorbox{green}{\fbox{A=B}}\raisebox{-3mm}{}$
13644 \end_inset
13645
13646
13647 \end_layout
13648
13649 \end_inset
13650 </cell>
13651 </row>
13652 <row>
13653 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
13654 \begin_inset Text
13655
13656 \begin_layout Plain Layout
13657
13658 \backslash
13659 fbox
13660 \begin_inset ERT
13661 status collapsed
13662
13663 \begin_layout Plain Layout
13664
13665
13666 \backslash
13667 leer 
13668 \end_layout
13669
13670 \end_inset
13671
13672
13673 \backslash
13674 colorbox{green
13675 \begin_inset Formula $\to$
13676 \end_inset
13677
13678
13679 \backslash
13680 {
13681 \family sans
13682 Strg+M Strg+M
13683 \family default
13684  
13685 \backslash
13686 int
13687 \begin_inset ERT
13688 status collapsed
13689
13690 \begin_layout Plain Layout
13691
13692
13693 \backslash
13694 leer 
13695 \end_layout
13696
13697 \end_inset
13698
13699 C=D
13700 \end_layout
13701
13702 \end_inset
13703 </cell>
13704 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
13705 \begin_inset Text
13706
13707 \begin_layout Plain Layout
13708 \begin_inset Formula $\raisebox{7mm}{}\fbox{\colorbox{green}{\mbox{\ensuremath{\int C=D}}}}\raisebox{-5mm}{}$
13709 \end_inset
13710
13711
13712 \end_layout
13713
13714 \end_inset
13715 </cell>
13716 </row>
13717 </lyxtabular>
13718
13719 \end_inset
13720
13721
13722 \end_layout
13723
13724 \begin_layout Standard
13725
13726 \series bold
13727
13728 \backslash
13729 colorbox
13730 \series default
13731  färbt nur die Box, nicht aber die Zeichen in der Box ein.
13732  Um alle Zeichen zu färben, markiert man die ganze Formel und wählt im Dialog
13733  
13734 \family sans
13735 Textstil
13736 \family default
13737  die gewünschte Farbe aus.
13738  Der Dialog kann mit dem Werkzeugleistenknopf 
13739 \begin_inset Graphics
13740         filename ../../images/dialog-show_character.png
13741         scale 85
13742
13743 \end_inset
13744
13745  oder dem Menü 
13746 \family sans
13747 Bearbeiten\SpecialChar \menuseparator
13748 Textstil\SpecialChar \menuseparator
13749 Benutzerdefiniert
13750 \family default
13751  aufgerufen werden.
13752  Die Formelnummer hat dann dieselbe Farbe wie die Formel.
13753  Soll die Formelnummer eine andere Farbe als die Formelzeichen haben, muss
13754  innerhalb der Formel die Farbe geändert werden.
13755 \end_layout
13756
13757 \begin_layout Standard
13758 Ein Beispiel:
13759 \end_layout
13760
13761 \begin_layout Standard
13762
13763 \color red
13764 \begin_inset Formula 
13765 \begin{equation}
13766 \int A=B\label{eq:rot}
13767 \end{equation}
13768
13769 \end_inset
13770
13771
13772 \color green
13773
13774 \begin_inset Formula 
13775 \begin{equation}
13776 \textcolor{red}{\int A=B}\label{eq:rotgruen}
13777 \end{equation}
13778
13779 \end_inset
13780
13781
13782 \end_layout
13783
13784 \begin_layout Standard
13785 Formel 
13786 \begin_inset CommandInset ref
13787 LatexCommand eqref
13788 reference "eq:rot"
13789
13790 \end_inset
13791
13792  ist komplett rot gefärbt.
13793 \begin_inset Newline newline
13794 \end_inset
13795
13796 Formel 
13797 \begin_inset CommandInset ref
13798 LatexCommand eqref
13799 reference "eq:rotgruen"
13800
13801 \end_inset
13802
13803  wurde zuerst komplett grün gefärbt, um die Farbe der Formelnummer festzulegen.
13804  Anschließend wurden die Formelzeichen rot gefärbt.
13805 \end_layout
13806
13807 \begin_layout Standard
13808 \begin_inset VSpace bigskip
13809 \end_inset
13810
13811 Möchte man den Rahmen anders als den Rest der Box färben, verwendet man
13812  den Befehl 
13813 \series bold
13814
13815 \backslash
13816 fcolorbox
13817 \series default
13818
13819 \begin_inset Index idx
13820 status collapsed
13821
13822 \begin_layout Plain Layout
13823 Befehle ! F ! 
13824 \backslash
13825 fcolorbox
13826 \end_layout
13827
13828 \end_inset
13829
13830  nach folgendem Schema:
13831 \end_layout
13832
13833 \begin_layout Standard
13834
13835 \series bold
13836
13837 \backslash
13838 fcolorbox{Rahmenfarbe}{Farbe}{Boxinhalt}
13839 \end_layout
13840
13841 \begin_layout Standard
13842
13843 \series bold
13844
13845 \backslash
13846 fcolorbox
13847 \series default
13848  stellt also eine Erweiterung des Befehls 
13849 \series bold
13850
13851 \backslash
13852 colorbox
13853 \series default
13854  dar.
13855  Die Rahmenbreite wird, wie bei 
13856 \series bold
13857
13858 \backslash
13859 framebox
13860 \series default
13861 , mit 
13862 \series bold
13863
13864 \backslash
13865 fboxrule
13866 \series default
13867  und 
13868 \series bold
13869
13870 \backslash
13871 fboxsep
13872 \series default
13873  festgelegt.
13874  Ein Beispiel:
13875 \begin_inset ERT
13876 status collapsed
13877
13878 \begin_layout Plain Layout
13879
13880
13881 \backslash
13882 fboxrule 1mm 
13883 \backslash
13884 fboxsep 1mm
13885 \end_layout
13886
13887 \end_inset
13888
13889
13890 \begin_inset Formula 
13891 \[
13892 \fcolorbox{cyan}{magenta}{A=B}
13893 \]
13894
13895 \end_inset
13896
13897
13898 \begin_inset ERT
13899 status collapsed
13900
13901 \begin_layout Plain Layout
13902
13903
13904 \backslash
13905 fboxrule 0.4pt 
13906 \backslash
13907 fboxsep 3pt
13908 \end_layout
13909
13910 \end_inset
13911
13912
13913 \end_layout
13914
13915 \begin_layout Standard
13916 Diese Formel wurde mit folgendem Befehl erstellt:
13917 \begin_inset Newline newline
13918 \end_inset
13919
13920
13921 \series bold
13922
13923 \backslash
13924 fcolorbox{cyan
13925 \begin_inset Formula $\to$
13926 \end_inset
13927
13928
13929 \backslash
13930 {magenta
13931 \begin_inset Formula $\to$
13932 \end_inset
13933
13934
13935 \backslash
13936 {A=B
13937 \end_layout
13938
13939 \begin_layout Standard
13940 \begin_inset VSpace bigskip
13941 \end_inset
13942
13943 Um andere als die vordefinierten Farben zu verwenden, muss man diese zuerst
13944  selbst definieren.
13945 \end_layout
13946
13947 \begin_layout Standard
13948 Man kann z.
13949 \begin_inset space \thinspace{}
13950 \end_inset
13951
13952 B.
13953  mit folgender LaTeX-Vorspannzeile die Farbe 
13954 \begin_inset Quotes gld
13955 \end_inset
13956
13957
13958 \series bold
13959 dunkelgruen
13960 \series default
13961
13962 \begin_inset Quotes grd
13963 \end_inset
13964
13965
13966 \begin_inset Foot
13967 status collapsed
13968
13969 \begin_layout Plain Layout
13970 In Befehlen darf kein Umlaut stehen, siehe 
13971 \begin_inset CommandInset ref
13972 LatexCommand ref
13973 reference "sec:Benutzerdefinierte-Befehle"
13974
13975 \end_inset
13976
13977 .
13978 \end_layout
13979
13980 \end_inset
13981
13982  definieren:
13983 \end_layout
13984
13985 \begin_layout Standard
13986
13987 \series bold
13988
13989 \backslash
13990 definecolor{dunkelgruen}{cmyk}{0.5,
13991 \series default
13992  
13993 \series bold
13994 0,
13995 \series default
13996  
13997 \series bold
13998 1,
13999 \series default
14000  
14001 \series bold
14002 0.5}
14003 \series default
14004
14005 \begin_inset Index idx
14006 status collapsed
14007
14008 \begin_layout Plain Layout
14009 Befehle ! D ! 
14010 \backslash
14011 definecolor
14012 \end_layout
14013
14014 \end_inset
14015
14016
14017 \end_layout
14018
14019 \begin_layout Standard
14020
14021 \series bold
14022 cmyk
14023 \series default
14024  ist der Farbraum und steht für die Farben 
14025 \series bold
14026 cyan
14027 \series default
14028
14029 \series bold
14030 magenta
14031 \series default
14032
14033 \series bold
14034 yellow
14035 \series default
14036  und 
14037 \series bold
14038 black
14039 \series default
14040 .
14041  Die vier Zahlen geben der Reihe nach den Anteil der vier Farben an.
14042  Für den Anteil kann man Werte im Bereich 0
14043 \begin_inset space \thinspace{}
14044 \end_inset
14045
14046 -
14047 \begin_inset space \thinspace{}
14048 \end_inset
14049
14050 1 angeben.
14051  Anstelle von 
14052 \series bold
14053 cmyk
14054 \series default
14055  kann man zur Definition auch den Farbraum 
14056 \series bold
14057 rgb
14058 \series default
14059  verwenden.
14060  
14061 \series bold
14062 rgb
14063 \series default
14064  steht für 
14065 \series bold
14066 red
14067 \series default
14068
14069 \series bold
14070 green
14071 \series default
14072  und 
14073 \series bold
14074 blue
14075 \series default
14076 , so dass man dann mit drei Zahlen die Anteile dieser Farben festlegen kann.
14077  Des Weiteren gibt es noch den Farbraum 
14078 \series bold
14079 gray
14080 \series default
14081 , bei dem man mit einer Zahl den Graustufenanteil festlegen kann.
14082 \end_layout
14083
14084 \begin_layout Standard
14085 Als Beispiel eine gerahmte Box mit der neu definierten Farbe 
14086 \series bold
14087 darkgreen
14088 \series default
14089 , bei der die Zeichenfarbe 
14090 \series bold
14091 yellow
14092 \series default
14093  gewählt wurde:
14094 \begin_inset Formula 
14095 \begin{equation}
14096 \colorbox{dunkelgruen}{\color{yellow}\boxed{\int A\,\mathrm{d}x=\frac{\sqrt[5]{B}}{\ln\left(\frac{1}{3}\right)}}}
14097 \end{equation}
14098
14099 \end_inset
14100
14101
14102 \end_layout
14103
14104 \begin_layout Standard
14105 Selbst definierte Farben können mit dem Befehl 
14106 \series bold
14107
14108 \backslash
14109 textcolor
14110 \series default
14111  auch für Text
14112 \begin_inset Index idx
14113 status collapsed
14114
14115 \begin_layout Plain Layout
14116 Text ! farbiger
14117 \end_layout
14118
14119 \end_inset
14120
14121  verwendet werden:
14122 \end_layout
14123
14124 \begin_layout Standard
14125 \begin_inset ERT
14126 status collapsed
14127
14128 \begin_layout Plain Layout
14129
14130
14131 \backslash
14132 textcolor{dunkelgruen}{
14133 \end_layout
14134
14135 \end_inset
14136
14137 Dieser Satz ist 
14138 \begin_inset Quotes gld
14139 \end_inset
14140
14141 dunkelgruen
14142 \begin_inset Quotes grd
14143 \end_inset
14144
14145 .
14146 \begin_inset ERT
14147 status collapsed
14148
14149 \begin_layout Plain Layout
14150
14151 }
14152 \end_layout
14153
14154 \end_inset
14155
14156
14157 \end_layout
14158
14159 \begin_layout Standard
14160
14161 \series bold
14162
14163 \backslash
14164 textcolor
14165 \series default
14166
14167 \begin_inset Index idx
14168 status collapsed
14169
14170 \begin_layout Plain Layout
14171 Befehle ! T ! 
14172 \backslash
14173 textcolor
14174 \end_layout
14175
14176 \end_inset
14177
14178  wird nach dem Schema 
14179 \series bold
14180
14181 \backslash
14182 textcolor{Farbe}{zu
14183 \series default
14184  
14185 \series bold
14186 färbende
14187 \series default
14188  
14189 \series bold
14190 Zeichen}
14191 \series default
14192  verwendet.
14193 \end_layout
14194
14195 \begin_layout Subsection
14196 Absatzboxen
14197 \begin_inset CommandInset label
14198 LatexCommand label
14199 name "sub:Absatzboxen"
14200
14201 \end_inset
14202
14203
14204 \begin_inset Index idx
14205 status collapsed
14206
14207 \begin_layout Plain Layout
14208 Boxen ! Absatz-
14209 \end_layout
14210
14211 \end_inset
14212
14213
14214 \end_layout
14215
14216 \begin_layout Standard
14217 Mit dem Menü 
14218 \family sans
14219 Einfügen\SpecialChar \menuseparator
14220 Box
14221 \family default
14222  oder dem Werkzeugleistenknopf 
14223 \begin_inset Graphics
14224         filename ../../images/box-insert.png
14225         scale 85
14226
14227 \end_inset
14228
14229  kann man eine Box erstellen, die mehrere Zeilen und Absätze enthalten kann,
14230  eine so genannte 
14231 \emph on
14232 Parbox
14233 \emph default
14234  (Absatzbox).
14235 \end_layout
14236
14237 \begin_layout Standard
14238 Das folgende Beispiel zeigt eine umrahmte Absatzbox in einer Zeile:
14239 \end_layout
14240
14241 \begin_layout Standard
14242 \begin_inset VSpace medskip
14243 \end_inset
14244
14245 Dies ist eine Zeile 
14246 \begin_inset Box Boxed
14247 position "c"
14248 hor_pos "c"
14249 has_inner_box 1
14250 inner_pos "t"
14251 use_parbox 1
14252 use_makebox 0
14253 width "5cm"
14254 special "none"
14255 height "1in"
14256 height_special "totalheight"
14257 status open
14258
14259 \begin_layout Plain Layout
14260 Dies ist die Absatzbox.
14261  Sie ist genau 5
14262 \begin_inset space \thinspace{}
14263 \end_inset
14264
14265 cm lang und kann auch Formeln enthalten: 
14266 \begin_inset Formula $\int A\,\mathrm{d}s=C$
14267 \end_inset
14268
14269
14270 \end_layout
14271
14272 \end_inset
14273
14274  mit einer Absatzbox.
14275 \begin_inset VSpace medskip
14276 \end_inset
14277
14278
14279 \end_layout
14280
14281 \begin_layout Standard
14282 Solch eine Box wird erstellt, indem man mit der rechten Maustaste auf die
14283  graue Box mit dem Namen 
14284 \begin_inset Quotes gld
14285 \end_inset
14286
14287 Box(Gerahmt)
14288 \begin_inset Quotes grd
14289 \end_inset
14290
14291  klickt.
14292  Es erscheint dann ein Fenster in dem man die Boxeigenschaften festlegt.
14293  In diesem Fall: 
14294 \emph on
14295 Verzierung
14296 \emph default
14297 : Rechteckige Box, 
14298 \emph on
14299 Innere Box
14300 \emph default
14301 : Parbox, 
14302 \emph on
14303 Breite
14304 \emph default
14305 : 5
14306 \begin_inset space \thinspace{}
14307 \end_inset
14308
14309 cm, 
14310 \emph on
14311 Vertikale Box Ausrichtung
14312 \emph default
14313 : Mitte
14314 \end_layout
14315
14316 \begin_layout Standard
14317 \begin_inset VSpace medskip
14318 \end_inset
14319
14320 In LaTeX wird eine Absatzbox mit dem Befehl 
14321 \series bold
14322
14323 \backslash
14324 parbox
14325 \series default
14326
14327 \begin_inset Index idx
14328 status collapsed
14329
14330 \begin_layout Plain Layout
14331 Befehle ! P ! 
14332 \backslash
14333 parbox
14334 \end_layout
14335
14336 \end_inset
14337
14338  erstellt, welcher folgendes Schema besitzt:
14339 \end_layout
14340
14341 \begin_layout Standard
14342
14343 \series bold
14344
14345 \backslash
14346 parbox[Position]{Breite}{Boxinhalt}
14347 \end_layout
14348
14349 \begin_layout Standard
14350 Die Positionen 
14351 \emph on
14352 b
14353 \emph default
14354  und 
14355 \emph on
14356 t
14357 \emph default
14358  sind möglich.
14359  
14360 \emph on
14361 b
14362 \emph default
14363  steht für 
14364 \begin_inset Quotes gld
14365 \end_inset
14366
14367 bottom
14368 \begin_inset Quotes grd
14369 \end_inset
14370
14371  (unten) und bedeutet, dass die letzte Absatzzeile in den umstehenden Text
14372  eingepasst wird.
14373  Bei 
14374 \emph on
14375 t
14376 \emph default
14377  wie 
14378 \begin_inset Quotes gld
14379 \end_inset
14380
14381 top
14382 \begin_inset Quotes grd
14383 \end_inset
14384
14385  (oben) geschieht dies für die erste Zeile.
14386  Wird keine Position angegeben, wird der Absatz in mittlerer Höhe eingepasst,
14387  siehe das Kapitel 
14388 \emph on
14389 Boxen
14390 \emph default
14391  des Handbuchs
14392 \emph on
14393  Eingebettete
14394 \begin_inset space ~
14395 \end_inset
14396
14397 Objekte
14398 \emph default
14399  für Beispiele.
14400 \end_layout
14401
14402 \begin_layout Standard
14403 \begin_inset VSpace bigskip
14404 \end_inset
14405
14406 Möchte man Formeln komplett mit Formelnummer umranden, muss man die Formel
14407  in eine Absatzbox setzen.
14408  Dazu schreibt man im TeX-Modus vor die Formel den Befehl 
14409 \series bold
14410
14411 \backslash
14412 fbox{
14413 \backslash
14414 parbox{
14415 \backslash
14416 linewidth-2
14417 \backslash
14418 fboxsep-2
14419 \backslash
14420 fboxrule}{
14421 \series default
14422 .
14423  Hierbei steht 
14424 \series bold
14425
14426 \backslash
14427 linewidth
14428 \series default
14429
14430 \begin_inset Index idx
14431 status collapsed
14432
14433 \begin_layout Plain Layout
14434 Befehle ! L ! 
14435 \backslash
14436 linewidth
14437 \end_layout
14438
14439 \end_inset
14440
14441  für die im Dokument eingestellte Zeilenbreite.
14442  Da sich der Rahmen außerhalb der Absatzbox befindet, muss man von der Zeilenbre
14443 ite zweimal die Rahmendicke und den Rahmenabstand abziehen.
14444  Da dies LyX aufgrund eines Fehlers
14445 \begin_inset Foot
14446 status collapsed
14447
14448 \begin_layout Plain Layout
14449 \begin_inset CommandInset href
14450 LatexCommand href
14451 name "LyX-Fehler #4483"
14452 target "http://www.lyx.org/trac/ticket/4483"
14453
14454 \end_inset
14455
14456
14457 \end_layout
14458
14459 \end_inset
14460
14461  nicht automatisch macht, muss der TeX-Modus verwendet werden.
14462  Damit man in Argumenten multiplizieren und subtrahieren kann, muss im LaTeX-Vor
14463 spann das LaTeX-Paket 
14464 \series bold
14465 calc
14466 \series default
14467
14468 \begin_inset Foot
14469 status collapsed
14470
14471 \begin_layout Plain Layout
14472
14473 \series bold
14474 calc
14475 \series default
14476  ist Teil jeder LaTeX-Standardinstallation.
14477 \end_layout
14478
14479 \end_inset
14480
14481
14482 \begin_inset Index idx
14483 status collapsed
14484
14485 \begin_layout Plain Layout
14486 Pakete ! calc
14487 \end_layout
14488
14489 \end_inset
14490
14491  mit der Zeile
14492 \end_layout
14493
14494 \begin_layout Standard
14495
14496 \series bold
14497
14498 \backslash
14499 usepackage{calc}
14500 \end_layout
14501
14502 \begin_layout Standard
14503 geladen werden.
14504  Nach der Formel werden beide Boxen geschlossen, indem man 
14505 \series bold
14506 }}
14507 \series default
14508  im TeX-Modus eingibt.
14509  Dazu ein Beispiel:
14510 \begin_inset ERT
14511 status collapsed
14512
14513 \begin_layout Plain Layout
14514
14515
14516 \backslash
14517 fboxsep 5mm 
14518 \backslash
14519 fboxrule 5mm
14520 \end_layout
14521
14522 \end_inset
14523
14524
14525 \end_layout
14526
14527 \begin_layout Standard
14528 \begin_inset ERT
14529 status collapsed
14530
14531 \begin_layout Plain Layout
14532
14533
14534 \backslash
14535 fbox{
14536 \backslash
14537 parbox{
14538 \backslash
14539 linewidth-2
14540 \backslash
14541 fboxsep-2
14542 \backslash
14543 fboxrule}{
14544 \end_layout
14545
14546 \end_inset
14547
14548
14549 \begin_inset Formula 
14550 \begin{equation}
14551 \int A\,\mathrm{d}x=\frac{\sqrt[5]{B}}{\ln\left(\frac{1}{3}\right)}
14552 \end{equation}
14553
14554 \end_inset
14555
14556
14557 \begin_inset ERT
14558 status collapsed
14559
14560 \begin_layout Plain Layout
14561
14562 }}
14563 \end_layout
14564
14565 \end_inset
14566
14567
14568 \begin_inset ERT
14569 status collapsed
14570
14571 \begin_layout Plain Layout
14572
14573
14574 \backslash
14575 fboxrule 0.4pt 
14576 \backslash
14577 fboxsep 3pt
14578 \end_layout
14579
14580 \end_inset
14581
14582
14583 \end_layout
14584
14585 \begin_layout Standard
14586 \begin_inset VSpace medskip
14587 \end_inset
14588
14589 Da im Argument von 
14590 \series bold
14591
14592 \backslash
14593 fbox
14594 \series default
14595  eine Absatzbox verwendet wird, gibt es in diesem Fall bei der Formelgröße
14596  keinen Unterschied zwischen 
14597 \series bold
14598
14599 \backslash
14600 fbox
14601 \series default
14602  und 
14603 \series bold
14604
14605 \backslash
14606 boxed
14607 \series default
14608 .
14609 \end_layout
14610
14611 \begin_layout Standard
14612 \begin_inset VSpace bigskip
14613 \end_inset
14614
14615 Sehr nützlich sind Absatzboxen, wenn man Formeln direkt kommentieren möchte.
14616  Dazu verwendet man 
14617 \series bold
14618
14619 \backslash
14620 parbox
14621 \series default
14622  in Verbindung mit dem Befehl 
14623 \series bold
14624
14625 \backslash
14626 tag
14627 \series default
14628 .
14629  (mehr zu 
14630 \series bold
14631
14632 \backslash
14633 tag
14634 \series default
14635  siehe 
14636 \begin_inset CommandInset ref
14637 LatexCommand ref
14638 reference "sub:Benutzerdefinierte-Nummerierung"
14639
14640 \end_inset
14641
14642 )
14643 \end_layout
14644
14645 \begin_layout Standard
14646 Ein Beispiel einer mit Hilfe von 
14647 \series bold
14648
14649 \backslash
14650 parbox
14651 \series default
14652  kommentierten Formel:
14653 \end_layout
14654
14655 \begin_layout Standard
14656 \begin_inset ERT
14657 status collapsed
14658
14659 \begin_layout Plain Layout
14660
14661
14662 \backslash
14663 [5x-7b=3b
14664 \backslash
14665 tag*{
14666 \backslash
14667 parbox{5cm}{
14668 \end_layout
14669
14670 \end_inset
14671
14672 Dies ist eine Beschreibung.
14673  Sie ist deutlich von der Formel getrennt und mehrzeilig.
14674 \begin_inset ERT
14675 status collapsed
14676
14677 \begin_layout Plain Layout
14678
14679 }}
14680 \backslash
14681 ]
14682 \end_layout
14683
14684 \end_inset
14685
14686
14687 \end_layout
14688
14689 \begin_layout Standard
14690 So eine Formel muss komplett im TeX-Modus eingegeben werden, da LyX den
14691  Befehl 
14692 \series bold
14693
14694 \backslash
14695 parbox
14696 \series default
14697  in Formeln noch nicht unterstützt.
14698  Die Formel wird mit folgender Befehlssequenz erstellt:
14699 \end_layout
14700
14701 \begin_layout Standard
14702 Der Befehl 
14703 \series bold
14704
14705 \backslash
14706 [5x-7b=3b
14707 \backslash
14708 tag*
14709 \backslash
14710 {
14711 \backslash
14712 parbox{5cm}{
14713 \series default
14714  wird im TeX-Modus eingegeben.
14715 \begin_inset Foot
14716 status collapsed
14717
14718 \begin_layout Plain Layout
14719 Ist der Formelstil 
14720 \series bold
14721 Eingerückt
14722 \series default
14723  aktiviert, kann 
14724 \series bold
14725
14726 \backslash
14727 tag*
14728 \backslash
14729 {
14730 \series default
14731  auch durch 
14732 \series bold
14733
14734 \backslash
14735 hfill
14736 \series default
14737  ersetzt werden.
14738  (Formelstile siehe 
14739 \begin_inset CommandInset ref
14740 LatexCommand ref
14741 reference "sec:Formelstile"
14742
14743 \end_inset
14744
14745 )
14746 \end_layout
14747
14748 \end_inset
14749
14750  Dann folgt die Beschreibung als normaler Text und zuletzt gibt man 
14751 \series bold
14752 }}
14753 \backslash
14754 ]
14755 \series default
14756  im TeX-Modus ein.
14757  Die Befehle 
14758 \series bold
14759
14760 \backslash
14761 [
14762 \series default
14763  und 
14764 \series bold
14765
14766 \backslash
14767 ]
14768 \series default
14769  erstellen hierbei eine abgesetzte Formel.
14770 \end_layout
14771
14772 \begin_layout Standard
14773 Die Vorteile von 
14774 \series bold
14775
14776 \backslash
14777 parbox
14778 \series default
14779  erkennt man an folgendem Beispiel, in dem mit Hilfe des mathematischen
14780  Textmodus 
14781 \begin_inset Quotes gld
14782 \end_inset
14783
14784 kommentiert
14785 \begin_inset Quotes grd
14786 \end_inset
14787
14788  wurde:
14789 \begin_inset Formula 
14790 \[
14791 5x-7b=3b\textrm{Dies ist eine Beschreibung. Sie ist nicht von der Formel getrennt ...}
14792 \]
14793
14794 \end_inset
14795
14796
14797 \end_layout
14798
14799 \begin_layout Standard
14800 \begin_inset Newpage newpage
14801 \end_inset
14802
14803
14804 \end_layout
14805
14806 \begin_layout Section
14807 Operatoren
14808 \begin_inset Index idx
14809 status collapsed
14810
14811 \begin_layout Plain Layout
14812 Operatoren
14813 \end_layout
14814
14815 \end_inset
14816
14817
14818 \end_layout
14819
14820 \begin_layout Subsection
14821 Große Operatoren
14822 \begin_inset CommandInset label
14823 LatexCommand label
14824 name "sub:Große-Operatoren"
14825
14826 \end_inset
14827
14828
14829 \begin_inset Index idx
14830 status collapsed
14831
14832 \begin_layout Plain Layout
14833 Operatoren ! große
14834 \end_layout
14835
14836 \end_inset
14837
14838
14839 \begin_inset Index idx
14840 status collapsed
14841
14842 \begin_layout Plain Layout
14843 Summen
14844 \end_layout
14845
14846 \end_inset
14847
14848
14849 \begin_inset Index idx
14850 status collapsed
14851
14852 \begin_layout Plain Layout
14853 Integrale
14854 \end_layout
14855
14856 \end_inset
14857
14858
14859 \end_layout
14860
14861 \begin_layout Standard
14862 Um alle großen Integraloperatoren nutzen zu können, die im Folgenden aufgelistet
14863  sind, muss die Option 
14864 \family sans
14865 esint-Paket automatisch verwenden
14866 \family default
14867  in den Dokumenteinstellungen unter 
14868 \family sans
14869 Mathe-Optionen
14870 \family default
14871  gewählt sein.
14872 \end_layout
14873
14874 \begin_layout Standard
14875 \begin_inset space \hfill{}
14876 \end_inset
14877
14878
14879 \begin_inset Tabular
14880 <lyxtabular version="3" rows="11" columns="2">
14881 <features rotate="0" tabularvalignment="middle">
14882 <column alignment="center" valignment="top" width="0pt">
14883 <column alignment="center" valignment="top" width="0pt">
14884 <row>
14885 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
14886 \begin_inset Text
14887
14888 \begin_layout Plain Layout
14889 Befehl
14890 \end_layout
14891
14892 \end_inset
14893 </cell>
14894 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
14895 \begin_inset Text
14896
14897 \begin_layout Plain Layout
14898 Ergebnis
14899 \end_layout
14900
14901 \end_inset
14902 </cell>
14903 </row>
14904 <row>
14905 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14906 \begin_inset Text
14907
14908 \begin_layout Plain Layout
14909
14910 \backslash
14911 int
14912 \begin_inset Index idx
14913 status collapsed
14914
14915 \begin_layout Plain Layout
14916 Befehle ! I ! 
14917 \backslash
14918 int
14919 \end_layout
14920
14921 \end_inset
14922
14923
14924 \end_layout
14925
14926 \end_inset
14927 </cell>
14928 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14929 \begin_inset Text
14930
14931 \begin_layout Plain Layout
14932 \begin_inset Formula $\int$
14933 \end_inset
14934
14935
14936 \end_layout
14937
14938 \end_inset
14939 </cell>
14940 </row>
14941 <row>
14942 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14943 \begin_inset Text
14944
14945 \begin_layout Plain Layout
14946
14947 \backslash
14948 oint
14949 \end_layout
14950
14951 \end_inset
14952 </cell>
14953 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14954 \begin_inset Text
14955
14956 \begin_layout Plain Layout
14957 \begin_inset Formula $\oint$
14958 \end_inset
14959
14960
14961 \end_layout
14962
14963 \end_inset
14964 </cell>
14965 </row>
14966 <row>
14967 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14968 \begin_inset Text
14969
14970 \begin_layout Plain Layout
14971
14972 \backslash
14973 ointctrclockwise
14974 \end_layout
14975
14976 \end_inset
14977 </cell>
14978 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
14979 \begin_inset Text
14980
14981 \begin_layout Plain Layout
14982 \begin_inset Formula $\ointctrclockwise$
14983 \end_inset
14984
14985
14986 \end_layout
14987
14988 \end_inset
14989 </cell>
14990 </row>
14991 <row>
14992 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
14993 \begin_inset Text
14994
14995 \begin_layout Plain Layout
14996
14997 \backslash
14998 ointclockwise
14999 \end_layout
15000
15001 \end_inset
15002 </cell>
15003 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15004 \begin_inset Text
15005
15006 \begin_layout Plain Layout
15007 \begin_inset Formula $\ointclockwise$
15008 \end_inset
15009
15010
15011 \end_layout
15012
15013 \end_inset
15014 </cell>
15015 </row>
15016 <row>
15017 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15018 \begin_inset Text
15019
15020 \begin_layout Plain Layout
15021
15022 \backslash
15023 sqint
15024 \end_layout
15025
15026 \end_inset
15027 </cell>
15028 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15029 \begin_inset Text
15030
15031 \begin_layout Plain Layout
15032 \begin_inset Formula $\sqint$
15033 \end_inset
15034
15035
15036 \end_layout
15037
15038 \end_inset
15039 </cell>
15040 </row>
15041 <row>
15042 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15043 \begin_inset Text
15044
15045 \begin_layout Plain Layout
15046
15047 \backslash
15048 fint
15049 \end_layout
15050
15051 \end_inset
15052 </cell>
15053 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15054 \begin_inset Text
15055
15056 \begin_layout Plain Layout
15057  
15058 \begin_inset Formula $\fint$
15059 \end_inset
15060
15061
15062 \end_layout
15063
15064 \end_inset
15065 </cell>
15066 </row>
15067 <row>
15068 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15069 \begin_inset Text
15070
15071 \begin_layout Plain Layout
15072
15073 \backslash
15074 landupint
15075 \end_layout
15076
15077 \end_inset
15078 </cell>
15079 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15080 \begin_inset Text
15081
15082 \begin_layout Plain Layout
15083  
15084 \begin_inset Formula $\landupint$
15085 \end_inset
15086
15087
15088 \end_layout
15089
15090 \end_inset
15091 </cell>
15092 </row>
15093 <row>
15094 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15095 \begin_inset Text
15096
15097 \begin_layout Plain Layout
15098
15099 \backslash
15100 landdownint
15101 \end_layout
15102
15103 \end_inset
15104 </cell>
15105 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15106 \begin_inset Text
15107
15108 \begin_layout Plain Layout
15109  
15110 \begin_inset Formula $\landdownint$
15111 \end_inset
15112
15113
15114 \end_layout
15115
15116 \end_inset
15117 </cell>
15118 </row>
15119 <row>
15120 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15121 \begin_inset Text
15122
15123 \begin_layout Plain Layout
15124
15125 \backslash
15126 bigcap
15127 \end_layout
15128
15129 \end_inset
15130 </cell>
15131 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15132 \begin_inset Text
15133
15134 \begin_layout Plain Layout
15135 \begin_inset Formula $\bigcap$
15136 \end_inset
15137
15138
15139 \end_layout
15140
15141 \end_inset
15142 </cell>
15143 </row>
15144 <row>
15145 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
15146 \begin_inset Text
15147
15148 \begin_layout Plain Layout
15149
15150 \backslash
15151 bigcup
15152 \end_layout
15153
15154 \end_inset
15155 </cell>
15156 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
15157 \begin_inset Text
15158
15159 \begin_layout Plain Layout
15160 \begin_inset Formula $\bigcup$
15161 \end_inset
15162
15163
15164 \end_layout
15165
15166 \end_inset
15167 </cell>
15168 </row>
15169 </lyxtabular>
15170
15171 \end_inset
15172
15173
15174 \begin_inset space \hfill{}
15175 \end_inset
15176
15177
15178 \begin_inset Tabular
15179 <lyxtabular version="3" rows="11" columns="2">
15180 <features rotate="0" tabularvalignment="middle">
15181 <column alignment="center" valignment="top" width="0pt">
15182 <column alignment="center" valignment="top" width="0pt">
15183 <row>
15184 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
15185 \begin_inset Text
15186
15187 \begin_layout Plain Layout
15188 Befehl
15189 \end_layout
15190
15191 \end_inset
15192 </cell>
15193 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
15194 \begin_inset Text
15195
15196 \begin_layout Plain Layout
15197 Ergebnis
15198 \end_layout
15199
15200 \end_inset
15201 </cell>
15202 </row>
15203 <row>
15204 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15205 \begin_inset Text
15206
15207 \begin_layout Plain Layout
15208
15209 \backslash
15210 sum
15211 \begin_inset Index idx
15212 status collapsed
15213
15214 \begin_layout Plain Layout
15215 Befehle ! S ! 
15216 \backslash
15217 sum
15218 \end_layout
15219
15220 \end_inset
15221
15222
15223 \end_layout
15224
15225 \end_inset
15226 </cell>
15227 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
15228 \begin_inset Text
15229
15230 \begin_layout Plain Layout
15231 \begin_inset Formula $\sum$
15232 \end_inset
15233
15234
15235 \end_layout
15236
15237 \end_inset
15238 </cell>
15239 </row>
15240 <row>
15241 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15242 \begin_inset Text
15243
15244 \begin_layout Plain Layout
15245
15246 \backslash
15247 prod
15248 \begin_inset Index idx
15249 status collapsed
15250
15251 \begin_layout Plain Layout
15252 Befehle ! P ! 
15253 \backslash
15254 prod
15255 \end_layout
15256
15257 \end_inset
15258
15259
15260 \end_layout
15261
15262 \end_inset
15263 </cell>
15264 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15265 \begin_inset Text
15266
15267 \begin_layout Plain Layout
15268 \begin_inset Formula $\prod$
15269 \end_inset
15270
15271
15272 \end_layout
15273
15274 \end_inset
15275 </cell>
15276 </row>
15277 <row>
15278 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15279 \begin_inset Text
15280
15281 \begin_layout Plain Layout
15282
15283 \backslash
15284 coprod
15285 \end_layout
15286
15287 \end_inset
15288 </cell>
15289 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15290 \begin_inset Text
15291
15292 \begin_layout Plain Layout
15293 \begin_inset Formula $\coprod$
15294 \end_inset
15295
15296
15297 \end_layout
15298
15299 \end_inset
15300 </cell>
15301 </row>
15302 <row>
15303 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15304 \begin_inset Text
15305
15306 \begin_layout Plain Layout
15307
15308 \backslash
15309 bigodot
15310 \end_layout
15311
15312 \end_inset
15313 </cell>
15314 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15315 \begin_inset Text
15316
15317 \begin_layout Plain Layout
15318 \begin_inset Formula $\bigodot$
15319 \end_inset
15320
15321
15322 \end_layout
15323
15324 \end_inset
15325 </cell>
15326 </row>
15327 <row>
15328 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15329 \begin_inset Text
15330
15331 \begin_layout Plain Layout
15332
15333 \backslash
15334 bigotimes
15335 \end_layout
15336
15337 \end_inset
15338 </cell>
15339 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15340 \begin_inset Text
15341
15342 \begin_layout Plain Layout
15343 \begin_inset Formula $\bigotimes$
15344 \end_inset
15345
15346
15347 \end_layout
15348
15349 \end_inset
15350 </cell>
15351 </row>
15352 <row>
15353 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15354 \begin_inset Text
15355
15356 \begin_layout Plain Layout
15357
15358 \backslash
15359 bigoplus
15360 \end_layout
15361
15362 \end_inset
15363 </cell>
15364 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15365 \begin_inset Text
15366
15367 \begin_layout Plain Layout
15368 \begin_inset Formula $\bigoplus$
15369 \end_inset
15370
15371
15372 \end_layout
15373
15374 \end_inset
15375 </cell>
15376 </row>
15377 <row>
15378 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15379 \begin_inset Text
15380
15381 \begin_layout Plain Layout
15382
15383 \backslash
15384 bigwedge
15385 \end_layout
15386
15387 \end_inset
15388 </cell>
15389 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15390 \begin_inset Text
15391
15392 \begin_layout Plain Layout
15393 \begin_inset Formula $\bigwedge$
15394 \end_inset
15395
15396
15397 \end_layout
15398
15399 \end_inset
15400 </cell>
15401 </row>
15402 <row>
15403 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15404 \begin_inset Text
15405
15406 \begin_layout Plain Layout
15407
15408 \backslash
15409 bigvee
15410 \end_layout
15411
15412 \end_inset
15413 </cell>
15414 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15415 \begin_inset Text
15416
15417 \begin_layout Plain Layout
15418 \begin_inset Formula $\bigvee$
15419 \end_inset
15420
15421
15422 \end_layout
15423
15424 \end_inset
15425 </cell>
15426 </row>
15427 <row>
15428 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15429 \begin_inset Text
15430
15431 \begin_layout Plain Layout
15432
15433 \backslash
15434 bigsqcup
15435 \end_layout
15436
15437 \end_inset
15438 </cell>
15439 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15440 \begin_inset Text
15441
15442 \begin_layout Plain Layout
15443 \begin_inset Formula $\bigsqcup$
15444 \end_inset
15445
15446
15447 \end_layout
15448
15449 \end_inset
15450 </cell>
15451 </row>
15452 <row>
15453 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
15454 \begin_inset Text
15455
15456 \begin_layout Plain Layout
15457
15458 \backslash
15459 biguplus
15460 \end_layout
15461
15462 \end_inset
15463 </cell>
15464 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
15465 \begin_inset Text
15466
15467 \begin_layout Plain Layout
15468 \begin_inset Formula $\biguplus$
15469 \end_inset
15470
15471
15472 \end_layout
15473
15474 \end_inset
15475 </cell>
15476 </row>
15477 </lyxtabular>
15478
15479 \end_inset
15480
15481
15482 \begin_inset space \hfill{}
15483 \end_inset
15484
15485
15486 \end_layout
15487
15488 \begin_layout Standard
15489 Alle großen Operatoren können auch über den Mathe-Werkzeugleistenknopf 
15490 \begin_inset Graphics
15491         filename ../../images/math/intop.png
15492         scale 85
15493
15494 \end_inset
15495
15496  eingefügt werden.
15497 \end_layout
15498
15499 \begin_layout Standard
15500 Die Operatoren werden als groß bezeichnet, da sie größer sind als die zum
15501  Teil gleich aussehenden binären Operatoren.
15502  Zu allen großen Operatoren kann man Grenzen angeben, wie im nächsten Abschnitt
15503  beschrieben.
15504 \end_layout
15505
15506 \begin_layout Standard
15507 Für alle Integrale gibt es Befehle, die auf 
15508 \series bold
15509 op
15510 \series default
15511  enden: 
15512 \series bold
15513
15514 \backslash
15515 intop
15516 \series default
15517
15518 \series bold
15519
15520 \backslash
15521 ointop
15522 \series default
15523  usw..
15524  Diese unterscheiden sich von 
15525 \series bold
15526
15527 \backslash
15528 int
15529 \series default
15530  usw.
15531 \begin_inset space \space{}
15532 \end_inset
15533
15534 in der Art wie die Operatorgrenzen dargestellt werden, siehe 
15535 \begin_inset CommandInset ref
15536 LatexCommand ref
15537 reference "sub:Operatorgrenzen"
15538
15539 \end_inset
15540
15541 .
15542  
15543 \end_layout
15544
15545 \begin_layout Subsubsection*
15546 Hinweise zu Integralen
15547 \end_layout
15548
15549 \begin_layout Standard
15550 Der Buchstabe 
15551 \emph on
15552 d
15553 \emph default
15554  in einer Integralen ist ein Operator, der deswegen aufrecht erscheinen
15555  muss.
15556  Dazu markiert man das 
15557 \emph on
15558 d
15559 \emph default
15560  und wandelt es mit der Tastenkombination 
15561 \family sans
15562 Alt+Z
15563 \begin_inset space ~
15564 \end_inset
15565
15566 R
15567 \family default
15568
15569 \begin_inset Foot
15570 status collapsed
15571
15572 \begin_layout Plain Layout
15573 Schriftstile siehe 
15574 \begin_inset CommandInset ref
15575 LatexCommand ref
15576 reference "sub:Schriftstile"
15577
15578 \end_inset
15579
15580
15581 \end_layout
15582
15583 \end_inset
15584
15585  um.
15586  Anschließend fügt man vor dem 
15587 \emph on
15588 d
15589 \emph default
15590 , wie bei Operatoren üblich, den kleinsten Leerraum ein.
15591  Dazu ein Beispiel:
15592 \end_layout
15593
15594 \begin_layout Standard
15595 inkorrekt: 
15596 \begin_inset Formula $\int A(x)dx$
15597 \end_inset
15598
15599
15600 \begin_inset Newline newline
15601 \end_inset
15602
15603
15604 \begin_inset Phantom HPhantom
15605 status open
15606
15607 \begin_layout Plain Layout
15608 in
15609 \end_layout
15610
15611 \end_inset
15612
15613 korrekt: 
15614 \begin_inset Formula $\int A(x)\,\mathrm{d}x$
15615 \end_inset
15616
15617
15618 \end_layout
15619
15620 \begin_layout Standard
15621 \begin_inset VSpace medskip
15622 \end_inset
15623
15624 Für Mehrfachintegrale gibt es folgende Befehle:
15625 \begin_inset VSpace medskip
15626 \end_inset
15627
15628
15629 \end_layout
15630
15631 \begin_layout Standard
15632 \begin_inset space \hfill{}
15633 \end_inset
15634
15635
15636 \begin_inset Tabular
15637 <lyxtabular version="3" rows="4" columns="2">
15638 <features rotate="0" tabularvalignment="middle">
15639 <column alignment="center" valignment="top">
15640 <column alignment="center" valignment="top">
15641 <row>
15642 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
15643 \begin_inset Text
15644
15645 \begin_layout Plain Layout
15646 Befehl
15647 \end_layout
15648
15649 \end_inset
15650 </cell>
15651 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
15652 \begin_inset Text
15653
15654 \begin_layout Plain Layout
15655 Ergebnis
15656 \begin_inset Note Note
15657 status collapsed
15658
15659 \begin_layout Plain Layout
15660
15661 \series bold
15662
15663 \backslash
15664 raisebox
15665 \series default
15666  dient nur als Abstandhalter.
15667 \end_layout
15668
15669 \end_inset
15670
15671
15672 \end_layout
15673
15674 \end_inset
15675 </cell>
15676 </row>
15677 <row>
15678 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15679 \begin_inset Text
15680
15681 \begin_layout Plain Layout
15682
15683 \backslash
15684 iint
15685 \end_layout
15686
15687 \end_inset
15688 </cell>
15689 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15690 \begin_inset Text
15691
15692 \begin_layout Plain Layout
15693 \begin_inset Formula $\raisebox{4.5mm}{}\iint\raisebox{-2.5mm}{}$
15694 \end_inset
15695
15696
15697 \end_layout
15698
15699 \end_inset
15700 </cell>
15701 </row>
15702 <row>
15703 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15704 \begin_inset Text
15705
15706 \begin_layout Plain Layout
15707
15708 \backslash
15709 oiint
15710 \end_layout
15711
15712 \end_inset
15713 </cell>
15714 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15715 \begin_inset Text
15716
15717 \begin_layout Plain Layout
15718 \begin_inset Formula $\raisebox{4.5mm}{}\oiint\raisebox{-2.5mm}{}$
15719 \end_inset
15720
15721
15722 \end_layout
15723
15724 \end_inset
15725 </cell>
15726 </row>
15727 <row>
15728 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
15729 \begin_inset Text
15730
15731 \begin_layout Plain Layout
15732
15733 \backslash
15734 sqiint
15735 \end_layout
15736
15737 \end_inset
15738 </cell>
15739 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
15740 \begin_inset Text
15741
15742 \begin_layout Plain Layout
15743 \begin_inset Formula $\raisebox{4.5mm}{}\sqiint\raisebox{-2.5mm}{}$
15744 \end_inset
15745
15746
15747 \end_layout
15748
15749 \end_inset
15750 </cell>
15751 </row>
15752 </lyxtabular>
15753
15754 \end_inset
15755
15756
15757 \begin_inset space \hfill{}
15758 \end_inset
15759
15760
15761 \begin_inset Tabular
15762 <lyxtabular version="3" rows="4" columns="2">
15763 <features rotate="0" tabularvalignment="middle">
15764 <column alignment="center" valignment="top">
15765 <column alignment="center" valignment="top">
15766 <row>
15767 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
15768 \begin_inset Text
15769
15770 \begin_layout Plain Layout
15771 Befehl
15772 \end_layout
15773
15774 \end_inset
15775 </cell>
15776 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
15777 \begin_inset Text
15778
15779 \begin_layout Plain Layout
15780 Ergebnis
15781 \end_layout
15782
15783 \end_inset
15784 </cell>
15785 </row>
15786 <row>
15787 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15788 \begin_inset Text
15789
15790 \begin_layout Plain Layout
15791
15792 \backslash
15793 iiint
15794 \end_layout
15795
15796 \end_inset
15797 </cell>
15798 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15799 \begin_inset Text
15800
15801 \begin_layout Plain Layout
15802 \begin_inset Formula $\raisebox{4.5mm}{}\iiint\raisebox{-2.5mm}{}$
15803 \end_inset
15804
15805
15806 \end_layout
15807
15808 \end_inset
15809 </cell>
15810 </row>
15811 <row>
15812 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15813 \begin_inset Text
15814
15815 \begin_layout Plain Layout
15816
15817 \backslash
15818 iiiint
15819 \end_layout
15820
15821 \end_inset
15822 </cell>
15823 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15824 \begin_inset Text
15825
15826 \begin_layout Plain Layout
15827 \begin_inset Formula $\raisebox{4.5mm}{}\iiiint\raisebox{-2.5mm}{}$
15828 \end_inset
15829
15830
15831 \end_layout
15832
15833 \end_inset
15834 </cell>
15835 </row>
15836 <row>
15837 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
15838 \begin_inset Text
15839
15840 \begin_layout Plain Layout
15841
15842 \backslash
15843 dotsint
15844 \end_layout
15845
15846 \end_inset
15847 </cell>
15848 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
15849 \begin_inset Text
15850
15851 \begin_layout Plain Layout
15852 \begin_inset Formula $\raisebox{4.5mm}{}\dotsint\raisebox{-2.5mm}{}$
15853 \end_inset
15854
15855
15856 \end_layout
15857
15858 \end_inset
15859 </cell>
15860 </row>
15861 </lyxtabular>
15862
15863 \end_inset
15864
15865
15866 \begin_inset space \hfill{}
15867 \end_inset
15868
15869
15870 \end_layout
15871
15872 \begin_layout Subsection
15873 Operatorgrenzen
15874 \begin_inset CommandInset label
15875 LatexCommand label
15876 name "sub:Operatorgrenzen"
15877
15878 \end_inset
15879
15880
15881 \begin_inset Index idx
15882 status collapsed
15883
15884 \begin_layout Plain Layout
15885 Operatoren ! Grenzen
15886 \end_layout
15887
15888 \end_inset
15889
15890
15891 \end_layout
15892
15893 \begin_layout Standard
15894 Grenzen werden durch Hoch- bzw.
15895 \begin_inset space \space{}
15896 \end_inset
15897
15898 Tiefstellen erzeugt:
15899 \end_layout
15900
15901 \begin_layout Standard
15902 \align center
15903 \begin_inset Tabular
15904 <lyxtabular version="3" rows="2" columns="2">
15905 <features rotate="0" tabularvalignment="middle">
15906 <column alignment="center" valignment="top" width="0pt">
15907 <column alignment="center" valignment="top" width="0pt">
15908 <row>
15909 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
15910 \begin_inset Text
15911
15912 \begin_layout Plain Layout
15913 Befehl
15914 \end_layout
15915
15916 \end_inset
15917 </cell>
15918 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
15919 \begin_inset Text
15920
15921 \begin_layout Plain Layout
15922 Ergebnis
15923 \begin_inset Note Note
15924 status collapsed
15925
15926 \begin_layout Plain Layout
15927
15928 \series bold
15929
15930 \backslash
15931 raisebox
15932 \series default
15933  dient nur als Abstandhalter.
15934 \end_layout
15935
15936 \end_inset
15937
15938
15939 \end_layout
15940
15941 \end_inset
15942 </cell>
15943 </row>
15944 <row>
15945 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
15946 \begin_inset Text
15947
15948 \begin_layout Plain Layout
15949
15950 \backslash
15951 prod^
15952 \backslash
15953 infty
15954 \begin_inset ERT
15955 status collapsed
15956
15957 \begin_layout Plain Layout
15958
15959
15960 \backslash
15961 leer 
15962 \end_layout
15963
15964 \end_inset
15965
15966
15967 \begin_inset Formula $\to$
15968 \end_inset
15969
15970 _0
15971 \begin_inset Formula $\to$
15972 \end_inset
15973
15974 A(x)
15975 \end_layout
15976
15977 \end_inset
15978 </cell>
15979 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
15980 \begin_inset Text
15981
15982 \begin_layout Plain Layout
15983 \begin_inset Formula $\raisebox{5mm}{}\prod_{0}^{\infty}A(x)\raisebox{-2.5mm}{}$
15984 \end_inset
15985
15986
15987 \end_layout
15988
15989 \end_inset
15990 </cell>
15991 </row>
15992 </lyxtabular>
15993
15994 \end_inset
15995
15996
15997 \end_layout
15998
15999 \begin_layout Standard
16000 Bei einer Formel in einer Textzeile werden die Grenzen rechts neben den
16001  Operator gesetzt.
16002  In einer abgesetzten Formel werden, außer bei Integralen, die Grenzen über
16003  bzw.
16004 \begin_inset space \space{}
16005 \end_inset
16006
16007 unter den Operator gesetzt.
16008 \end_layout
16009
16010 \begin_layout Standard
16011 Um zu erzwingen, dass die Grenzen neben den Operator gesetzt werden, setzt
16012  man den Cursor direkt hinter den Operator und setzt über das Menü 
16013 \family sans
16014 Bearbeiten\SpecialChar \menuseparator
16015 Mathe\SpecialChar \menuseparator
16016 Art der Operatorgrenzen ändern
16017 \family default
16018  die Grenzen auf 
16019 \series bold
16020 Eingebettet
16021 \series default
16022  (Tastenkombination 
16023 \family sans
16024 Alt+M
16025 \begin_inset space ~
16026 \end_inset
16027
16028 L
16029 \family default
16030 ).
16031  Dazu folgendes Beispiel:
16032 \end_layout
16033
16034 \begin_layout Standard
16035 Die normalen Grenzen sehen so aus:
16036 \begin_inset Formula 
16037 \[
16038 \sum_{x=0}^{\infty}\frac{1}{x^{2}}
16039 \]
16040
16041 \end_inset
16042
16043 So sieht die Formel aus, wenn man die Grenzen neben das Summenzeichen setzt:
16044 \begin_inset Formula 
16045 \[
16046 \sum\nolimits _{x=0}^{\infty}\frac{1}{x^{2}}
16047 \]
16048
16049 \end_inset
16050
16051 Bei Integralen werden mit Ausnahme von denen, die auf 
16052 \series bold
16053 op
16054 \series default
16055  enden (
16056 \series bold
16057
16058 \backslash
16059 intop
16060 \series default
16061
16062 \series bold
16063
16064 \backslash
16065 ointop
16066 \series default
16067  usw.), die Grenzen standardmäßig neben den Operator gesetzt.
16068  Bei Mehrfachintegralen werden die Grenzen jedoch meistens unter den Operator
16069  gesetzt.
16070  Im folgenden Beispiel wurde die Grenze deswegen auf 
16071 \series bold
16072 Anzeige
16073 \series default
16074  gesetzt und damit unter die Integrale geschrieben:
16075 \begin_inset Formula 
16076 \begin{equation}
16077 \iiint\limits _{V}X\,\mathrm{d}V=U\label{eq:VolInt}
16078 \end{equation}
16079
16080 \end_inset
16081
16082
16083 \end_layout
16084
16085 \begin_layout Standard
16086 \begin_inset VSpace medskip
16087 \end_inset
16088
16089 Um Bedingungen für Grenzen anzugeben, gibt es die Befehle 
16090 \series bold
16091
16092 \backslash
16093 subarray
16094 \series default
16095
16096 \begin_inset Index idx
16097 status collapsed
16098
16099 \begin_layout Plain Layout
16100 Befehle ! S ! 
16101 \backslash
16102 subarray
16103 \end_layout
16104
16105 \end_inset
16106
16107  und 
16108 \series bold
16109
16110 \backslash
16111 substack
16112 \series default
16113
16114 \begin_inset Index idx
16115 status collapsed
16116
16117 \begin_layout Plain Layout
16118 Befehle ! S ! 
16119 \backslash
16120 substack
16121 \end_layout
16122
16123 \end_inset
16124
16125 .
16126  Um z.
16127 \begin_inset space \thinspace{}
16128 \end_inset
16129
16130 B.
16131  diesen Ausdruck 
16132 \begin_inset Formula 
16133 \begin{equation}
16134 \sum_{\begin{subarray}{c}
16135 0<k<1000\\
16136 \\
16137 k\,\in\,\mathbb{N}
16138 \end{subarray}}^{n}k^{-2}\label{eq:substack}
16139 \end{equation}
16140
16141 \end_inset
16142
16143 zu erstellen, muss man Folgendes tun:
16144 \begin_inset Newline newline
16145 \end_inset
16146
16147 Zuerst gibt man den Befehl 
16148 \series bold
16149
16150 \backslash
16151 sum
16152 \series default
16153 ^
16154 \series bold
16155 n
16156 \begin_inset ERT
16157 status collapsed
16158
16159 \begin_layout Plain Layout
16160
16161
16162 \backslash
16163 leer 
16164 \end_layout
16165
16166 \end_inset
16167
16168 _
16169 \series default
16170  ein.
16171  Man befindet sich nun in einem blauen Kästchen unter dem Summenzeichen.
16172  In dieses gibt man den Befehl 
16173 \series bold
16174
16175 \backslash
16176 subarray
16177 \begin_inset ERT
16178 status collapsed
16179
16180 \begin_layout Plain Layout
16181
16182
16183 \backslash
16184 leer 
16185 \end_layout
16186
16187 \end_inset
16188
16189
16190 \series default
16191  ein.
16192  Das blaue Kästchen hat nun eine lila Umrandung und man kann jetzt mehrere
16193  Zeilen untereinander schreiben.
16194  Mit Eingabe des Zeilenumbruchs (
16195 \family sans
16196 Strg+Enter
16197 \family default
16198 ) wird eine neue Zeile erstellt.
16199  Gibt man
16200 \begin_inset Newline newline
16201 \end_inset
16202
16203
16204 \series bold
16205 0<k<1000 Strg+Enter
16206 \begin_inset Newline newline
16207 \end_inset
16208
16209
16210 \series default
16211 ein, erscheint darunter ein Kästchen für die neue Zeile.
16212 \end_layout
16213
16214 \begin_layout Standard
16215 Die Ausrichtung der Zeilen kann mit der 
16216 \family sans
16217 Tabellen-Werkzeugleiste
16218 \family default
16219  oder dem Menü 
16220 \family sans
16221 Bearbeiten\SpecialChar \menuseparator
16222 Zeilen & Spalten
16223 \family default
16224  auf links geändert werden.
16225  Um rechts ausgerichtete Zeilen zu erhalten, wird am Anfang der Zeile 
16226 \series bold
16227
16228 \backslash
16229 hfill
16230 \begin_inset ERT
16231 status collapsed
16232
16233 \begin_layout Plain Layout
16234
16235
16236 \backslash
16237 leer 
16238 \end_layout
16239
16240 \end_inset
16241
16242
16243 \series default
16244  eingegeben.
16245 \end_layout
16246
16247 \begin_layout Standard
16248 Der Befehl 
16249 \series bold
16250
16251 \backslash
16252 substack
16253 \series default
16254  ist äquivalent zu 
16255 \series bold
16256
16257 \backslash
16258 subarray
16259 \series default
16260 , mit dem Unterschied dass die Zeilen immer zentriert ausgerichtet sind.
16261 \end_layout
16262
16263 \begin_layout Standard
16264 \begin_inset VSpace bigskip
16265 \end_inset
16266
16267 Wie bei Formel 
16268 \begin_inset CommandInset ref
16269 LatexCommand eqref
16270 reference "eq:substack"
16271
16272 \end_inset
16273
16274  kann es vorkommen, dass sich neben dem Operator zu viel Leerraum befindet,
16275  denn das dem Operator folgende Zeichen wird neben die Grenzen gesetzt.
16276 \end_layout
16277
16278 \begin_layout Standard
16279 Um das zu verhindern, kann man folgendes Makro in den LaTeX-Vorspann einfügen:
16280 \end_layout
16281
16282 \begin_layout Standard
16283
16284 \series bold
16285
16286 \backslash
16287 def
16288 \backslash
16289 clap#1{
16290 \backslash
16291 hbox to 0pt{
16292 \backslash
16293 hss #1
16294 \backslash
16295 hss}}
16296 \begin_inset Newline newline
16297 \end_inset
16298
16299
16300 \backslash
16301 def
16302 \backslash
16303 mathclap {
16304 \backslash
16305 mathpalette 
16306 \backslash
16307 mathclapinternal}
16308 \begin_inset Newline newline
16309 \end_inset
16310
16311
16312 \backslash
16313 def
16314 \backslash
16315 mathclapinternal #1#2{
16316 \backslash
16317 clap{$
16318 \backslash
16319 mathsurround =0pt #1{#2}$}}
16320 \end_layout
16321
16322 \begin_layout Standard
16323 Dadurch wird der Befehl 
16324 \series bold
16325
16326 \backslash
16327 mathclap
16328 \series default
16329
16330 \begin_inset Index idx
16331 status collapsed
16332
16333 \begin_layout Plain Layout
16334 Befehle ! M ! 
16335 \backslash
16336 mathclap
16337 \end_layout
16338
16339 \end_inset
16340
16341  definiert, der die Breite der Grenze auf 0
16342 \begin_inset space \thinspace{}
16343 \end_inset
16344
16345 pt setzt.
16346  Das Befehlsschema lautet
16347 \end_layout
16348
16349 \begin_layout Standard
16350
16351 \series bold
16352
16353 \backslash
16354 mathclap{Grenze}
16355 \end_layout
16356
16357 \begin_layout Standard
16358 wobei die Grenze auch aus mehreren Bedingungen bestehen kann.
16359 \end_layout
16360
16361 \begin_layout Standard
16362 Auf Formel 
16363 \begin_inset CommandInset ref
16364 LatexCommand eqref
16365 reference "eq:substack"
16366
16367 \end_inset
16368
16369  angewandt, gibt man also den Befehl
16370 \end_layout
16371
16372 \begin_layout Standard
16373
16374 \series bold
16375
16376 \backslash
16377 sum_
16378 \backslash
16379 mathclap{
16380 \backslash
16381 substack
16382 \begin_inset ERT
16383 status collapsed
16384
16385 \begin_layout Plain Layout
16386
16387
16388 \backslash
16389 leer 
16390 \end_layout
16391
16392 \end_inset
16393
16394 0<k<1000 Strg+Enter
16395 \end_layout
16396
16397 \begin_layout Standard
16398 ein, um die untere Grenze zu erstellen.
16399  Der Summand befindet sich nun direkt hinter dem Summenzeichen:
16400 \begin_inset Formula 
16401 \[
16402 \sum_{\mathclap{\substack{0<k<1000\\
16403 \\
16404 k\,\in\,\mathbb{N}
16405 }
16406 }}^{n}k^{-2}
16407 \]
16408
16409 \end_inset
16410
16411
16412 \end_layout
16413
16414 \begin_layout Standard
16415 \begin_inset VSpace bigskip
16416 \end_inset
16417
16418 In 
16419 \begin_inset CommandInset ref
16420 LatexCommand ref
16421 reference "sub:Selbstdefinierte-Operatoren"
16422
16423 \end_inset
16424
16425  ist beschrieben, wie man eine Grenze für mehrere Operatoren verwenden kann.
16426 \end_layout
16427
16428 \begin_layout Subsection
16429 Dekoration für Operatoren
16430 \begin_inset Index idx
16431 status collapsed
16432
16433 \begin_layout Plain Layout
16434 Operatoren ! Dekoration
16435 \end_layout
16436
16437 \end_inset
16438
16439
16440 \end_layout
16441
16442 \begin_layout Standard
16443 Zum Dekorieren von Operatoren gibt es die Befehle 
16444 \series bold
16445
16446 \backslash
16447 overset
16448 \series default
16449
16450 \begin_inset Index idx
16451 status collapsed
16452
16453 \begin_layout Plain Layout
16454 Befehle ! O ! 
16455 \backslash
16456 overset
16457 \end_layout
16458
16459 \end_inset
16460
16461  und 
16462 \series bold
16463
16464 \backslash
16465 underset
16466 \series default
16467
16468 \begin_inset Index idx
16469 status collapsed
16470
16471 \begin_layout Plain Layout
16472 Befehle ! U ! 
16473 \backslash
16474 underset
16475 \end_layout
16476
16477 \end_inset
16478
16479 , mit denen man Zeichen über bzw.
16480 \begin_inset space \space{}
16481 \end_inset
16482
16483 unter einen Operator setzen kann.
16484  Mit dem Befehl 
16485 \series bold
16486
16487 \backslash
16488 sideset
16489 \series default
16490
16491 \begin_inset Index idx
16492 status collapsed
16493
16494 \begin_layout Plain Layout
16495 Befehle ! S ! 
16496 \backslash
16497 sideset
16498 \end_layout
16499
16500 \end_inset
16501
16502  können Zeichen vor und nach einen großen Operator gesetzt werden.
16503  Das Befehlsschema lautet:
16504 \end_layout
16505
16506 \begin_layout Standard
16507
16508 \series bold
16509
16510 \backslash
16511 sideset{Zeichen
16512 \series default
16513  
16514 \series bold
16515 davor}{Zeichen
16516 \series default
16517  
16518 \series bold
16519 dahinter}
16520 \end_layout
16521
16522 \begin_layout Standard
16523
16524 \series bold
16525
16526 \backslash
16527 sideset
16528 \series default
16529  muss immer vor dem Operator stehen.
16530  Es kann auch mit mehreren Zeichen und sogar mit anderen Operatoren und
16531  Symbolen dekoriert werden.
16532  Will man mit 
16533 \series bold
16534
16535 \backslash
16536 sideset
16537 \series default
16538  z.
16539 \begin_inset space \thinspace{}
16540 \end_inset
16541
16542 B.
16543  nur Zeichen hinter einen großen Operator setzen, schreibt man nichts zwischen
16544  die ersten geschweiften Klammern, lässt die Klammern aber nicht weg.
16545 \end_layout
16546
16547 \begin_layout Standard
16548 Z.
16549 \begin_inset space \thinspace{}
16550 \end_inset
16551
16552 B.
16553  ergibt der Befehl 
16554 \series bold
16555
16556 \backslash
16557 sideset{
16558 \begin_inset Formula $\to$
16559 \end_inset
16560
16561
16562 \backslash
16563 {
16564 \series default
16565 '
16566 \series bold
16567
16568 \begin_inset Formula $\to$
16569 \end_inset
16570
16571
16572 \backslash
16573 sum_k=1
16574 \begin_inset ERT
16575 status collapsed
16576
16577 \begin_layout Plain Layout
16578
16579
16580 \backslash
16581 leer 
16582 \end_layout
16583
16584 \end_inset
16585
16586
16587 \series default
16588 ^
16589 \series bold
16590 n
16591 \series default
16592  :
16593 \begin_inset Formula 
16594 \[
16595 \sideset{}{'}\sum_{k=1}^{n}
16596 \]
16597
16598 \end_inset
16599
16600
16601 \end_layout
16602
16603 \begin_layout Standard
16604 \begin_inset Note Greyedout
16605 status open
16606
16607 \begin_layout Plain Layout
16608
16609 \series bold
16610 Achtung: 
16611 \backslash
16612 sideset
16613 \series default
16614  kann nur für die Dekoration von großen Operatoren verwendet werden, binäre
16615  Operatoren sind nicht erlaubt.
16616 \end_layout
16617
16618 \end_inset
16619
16620
16621 \end_layout
16622
16623 \begin_layout Standard
16624 Mit 
16625 \series bold
16626
16627 \backslash
16628 overset
16629 \series default
16630  bzw.
16631 \begin_inset space \space{}
16632 \end_inset
16633
16634
16635 \series bold
16636
16637 \backslash
16638 underset
16639 \series default
16640  kann man auch Symbole und Zeichen dekorieren.
16641  Beispielsweise ergibt der Befehl 
16642 \series bold
16643
16644 \backslash
16645 overset
16646 \begin_inset ERT
16647 status collapsed
16648
16649 \begin_layout Plain Layout
16650
16651
16652 \backslash
16653 leer 
16654 \end_layout
16655
16656 \end_inset
16657
16658
16659 \backslash
16660 maltese
16661 \begin_inset ERT
16662 status collapsed
16663
16664 \begin_layout Plain Layout
16665
16666
16667 \backslash
16668 leer 
16669 \end_layout
16670
16671 \end_inset
16672
16673
16674 \series default
16675
16676 \begin_inset Formula $\uparrow$
16677 \end_inset
16678
16679
16680 \series bold
16681 a
16682 \series default
16683  :
16684 \begin_inset Formula 
16685 \[
16686 \overset{a}{\maltese}
16687 \]
16688
16689 \end_inset
16690
16691
16692 \end_layout
16693
16694 \begin_layout Subsection
16695 Binäre Operatoren
16696 \begin_inset CommandInset label
16697 LatexCommand label
16698 name "sub:Binäre-Operatoren"
16699
16700 \end_inset
16701
16702
16703 \begin_inset Index idx
16704 status collapsed
16705
16706 \begin_layout Plain Layout
16707 Operatoren ! binäre
16708 \end_layout
16709
16710 \end_inset
16711
16712
16713 \end_layout
16714
16715 \begin_layout Standard
16716 Binäre Operatoren sind von Leerraum umgeben, wenn sich vor und hinter ihnen
16717  ein Zeichen befindet.
16718 \begin_inset VSpace medskip
16719 \end_inset
16720
16721
16722 \end_layout
16723
16724 \begin_layout Standard
16725 \begin_inset space \hfill{}
16726 \end_inset
16727
16728
16729 \begin_inset Tabular
16730 <lyxtabular version="3" rows="13" columns="2">
16731 <features rotate="0" tabularvalignment="middle">
16732 <column alignment="center" valignment="top" width="0pt">
16733 <column alignment="center" valignment="top" width="0pt">
16734 <row>
16735 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
16736 \begin_inset Text
16737
16738 \begin_layout Plain Layout
16739 Befehl
16740 \begin_inset Note Note
16741 status collapsed
16742
16743 \begin_layout Plain Layout
16744
16745 \series bold
16746
16747 \backslash
16748 raisebox
16749 \series default
16750  dient nur als Abstandhalter.
16751 \end_layout
16752
16753 \end_inset
16754
16755
16756 \end_layout
16757
16758 \end_inset
16759 </cell>
16760 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
16761 \begin_inset Text
16762
16763 \begin_layout Plain Layout
16764 Ergebnis
16765 \end_layout
16766
16767 \end_inset
16768 </cell>
16769 </row>
16770 <row>
16771 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16772 \begin_inset Text
16773
16774 \begin_layout Plain Layout
16775 +
16776 \end_layout
16777
16778 \end_inset
16779 </cell>
16780 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16781 \begin_inset Text
16782
16783 \begin_layout Plain Layout
16784 \begin_inset Formula $+$
16785 \end_inset
16786
16787
16788 \end_layout
16789
16790 \end_inset
16791 </cell>
16792 </row>
16793 <row>
16794 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16795 \begin_inset Text
16796
16797 \begin_layout Plain Layout
16798 -
16799 \end_layout
16800
16801 \end_inset
16802 </cell>
16803 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16804 \begin_inset Text
16805
16806 \begin_layout Plain Layout
16807 \begin_inset Formula $-$
16808 \end_inset
16809
16810
16811 \end_layout
16812
16813 \end_inset
16814 </cell>
16815 </row>
16816 <row>
16817 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16818 \begin_inset Text
16819
16820 \begin_layout Plain Layout
16821
16822 \backslash
16823 pm
16824 \end_layout
16825
16826 \end_inset
16827 </cell>
16828 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16829 \begin_inset Text
16830
16831 \begin_layout Plain Layout
16832 \begin_inset Formula $\pm$
16833 \end_inset
16834
16835
16836 \end_layout
16837
16838 \end_inset
16839 </cell>
16840 </row>
16841 <row>
16842 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16843 \begin_inset Text
16844
16845 \begin_layout Plain Layout
16846
16847 \backslash
16848 mp
16849 \end_layout
16850
16851 \end_inset
16852 </cell>
16853 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16854 \begin_inset Text
16855
16856 \begin_layout Plain Layout
16857 \begin_inset Formula $\mp$
16858 \end_inset
16859
16860
16861 \end_layout
16862
16863 \end_inset
16864 </cell>
16865 </row>
16866 <row>
16867 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16868 \begin_inset Text
16869
16870 \begin_layout Plain Layout
16871
16872 \backslash
16873 cdot
16874 \end_layout
16875
16876 \end_inset
16877 </cell>
16878 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16879 \begin_inset Text
16880
16881 \begin_layout Plain Layout
16882 \begin_inset Formula $\cdot$
16883 \end_inset
16884
16885
16886 \end_layout
16887
16888 \end_inset
16889 </cell>
16890 </row>
16891 <row>
16892 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16893 \begin_inset Text
16894
16895 \begin_layout Plain Layout
16896
16897 \backslash
16898 times
16899 \end_layout
16900
16901 \end_inset
16902 </cell>
16903 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16904 \begin_inset Text
16905
16906 \begin_layout Plain Layout
16907 \begin_inset Formula $\times$
16908 \end_inset
16909
16910
16911 \end_layout
16912
16913 \end_inset
16914 </cell>
16915 </row>
16916 <row>
16917 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16918 \begin_inset Text
16919
16920 \begin_layout Plain Layout
16921
16922 \backslash
16923 div
16924 \end_layout
16925
16926 \end_inset
16927 </cell>
16928 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16929 \begin_inset Text
16930
16931 \begin_layout Plain Layout
16932 \begin_inset Formula $\div$
16933 \end_inset
16934
16935
16936 \end_layout
16937
16938 \end_inset
16939 </cell>
16940 </row>
16941 <row>
16942 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16943 \begin_inset Text
16944
16945 \begin_layout Plain Layout
16946 \begin_inset ERT
16947 status collapsed
16948
16949 \begin_layout Plain Layout
16950
16951
16952 \backslash
16953 raisebox{-1.2mm}{
16954 \end_layout
16955
16956 \end_inset
16957
16958 *
16959 \begin_inset ERT
16960 status collapsed
16961
16962 \begin_layout Plain Layout
16963
16964 }
16965 \end_layout
16966
16967 \end_inset
16968
16969
16970 \end_layout
16971
16972 \end_inset
16973 </cell>
16974 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16975 \begin_inset Text
16976
16977 \begin_layout Plain Layout
16978 \begin_inset Formula $*$
16979 \end_inset
16980
16981
16982 \end_layout
16983
16984 \end_inset
16985 </cell>
16986 </row>
16987 <row>
16988 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16989 \begin_inset Text
16990
16991 \begin_layout Plain Layout
16992
16993 \backslash
16994 star
16995 \end_layout
16996
16997 \end_inset
16998 </cell>
16999 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17000 \begin_inset Text
17001
17002 \begin_layout Plain Layout
17003 \begin_inset Formula $\star$
17004 \end_inset
17005
17006
17007 \end_layout
17008
17009 \end_inset
17010 </cell>
17011 </row>
17012 <row>
17013 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17014 \begin_inset Text
17015
17016 \begin_layout Plain Layout
17017
17018 \backslash
17019 circ
17020 \end_layout
17021
17022 \end_inset
17023 </cell>
17024 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17025 \begin_inset Text
17026
17027 \begin_layout Plain Layout
17028 \begin_inset Formula $\circ$
17029 \end_inset
17030
17031
17032 \end_layout
17033
17034 \end_inset
17035 </cell>
17036 </row>
17037 <row>
17038 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17039 \begin_inset Text
17040
17041 \begin_layout Plain Layout
17042
17043 \backslash
17044 diamond
17045 \end_layout
17046
17047 \end_inset
17048 </cell>
17049 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17050 \begin_inset Text
17051
17052 \begin_layout Plain Layout
17053 \begin_inset Formula $\diamond$
17054 \end_inset
17055
17056
17057 \end_layout
17058
17059 \end_inset
17060 </cell>
17061 </row>
17062 <row>
17063 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
17064 \begin_inset Text
17065
17066 \begin_layout Plain Layout
17067
17068 \backslash
17069 bullet
17070 \end_layout
17071
17072 \end_inset
17073 </cell>
17074 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
17075 \begin_inset Text
17076
17077 \begin_layout Plain Layout
17078 \begin_inset Formula $\bullet$
17079 \end_inset
17080
17081
17082 \end_layout
17083
17084 \end_inset
17085 </cell>
17086 </row>
17087 </lyxtabular>
17088
17089 \end_inset
17090
17091
17092 \begin_inset space \hfill{}
17093 \end_inset
17094
17095
17096 \begin_inset Tabular
17097 <lyxtabular version="3" rows="13" columns="2">
17098 <features rotate="0" tabularvalignment="middle">
17099 <column alignment="center" valignment="top" width="0pt">
17100 <column alignment="center" valignment="top" width="0pt">
17101 <row>
17102 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
17103 \begin_inset Text
17104
17105 \begin_layout Plain Layout
17106 Befehl
17107 \end_layout
17108
17109 \end_inset
17110 </cell>
17111 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
17112 \begin_inset Text
17113
17114 \begin_layout Plain Layout
17115 Ergebnis
17116 \end_layout
17117
17118 \end_inset
17119 </cell>
17120 </row>
17121 <row>
17122 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17123 \begin_inset Text
17124
17125 \begin_layout Plain Layout
17126
17127 \backslash
17128 nabla
17129 \end_layout
17130
17131 \end_inset
17132 </cell>
17133 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17134 \begin_inset Text
17135
17136 \begin_layout Plain Layout
17137 \begin_inset Formula $\nabla$
17138 \end_inset
17139
17140
17141 \end_layout
17142
17143 \end_inset
17144 </cell>
17145 </row>
17146 <row>
17147 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17148 \begin_inset Text
17149
17150 \begin_layout Plain Layout
17151
17152 \backslash
17153 bigtriangledown
17154 \end_layout
17155
17156 \end_inset
17157 </cell>
17158 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17159 \begin_inset Text
17160
17161 \begin_layout Plain Layout
17162 \begin_inset Formula $\bigtriangledown$
17163 \end_inset
17164
17165
17166 \end_layout
17167
17168 \end_inset
17169 </cell>
17170 </row>
17171 <row>
17172 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17173 \begin_inset Text
17174
17175 \begin_layout Plain Layout
17176
17177 \backslash
17178 bigtriangleup
17179 \end_layout
17180
17181 \end_inset
17182 </cell>
17183 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17184 \begin_inset Text
17185
17186 \begin_layout Plain Layout
17187 \begin_inset Formula $\bigtriangleup$
17188 \end_inset
17189
17190
17191 \end_layout
17192
17193 \end_inset
17194 </cell>
17195 </row>
17196 <row>
17197 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17198 \begin_inset Text
17199
17200 \begin_layout Plain Layout
17201
17202 \backslash
17203 Box
17204 \end_layout
17205
17206 \end_inset
17207 </cell>
17208 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17209 \begin_inset Text
17210
17211 \begin_layout Plain Layout
17212 \begin_inset Formula $\Box$
17213 \end_inset
17214
17215
17216 \end_layout
17217
17218 \end_inset
17219 </cell>
17220 </row>
17221 <row>
17222 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17223 \begin_inset Text
17224
17225 \begin_layout Plain Layout
17226
17227 \backslash
17228 cap 
17229 \end_layout
17230
17231 \end_inset
17232 </cell>
17233 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17234 \begin_inset Text
17235
17236 \begin_layout Plain Layout
17237 \begin_inset Formula $\cap$
17238 \end_inset
17239
17240
17241 \end_layout
17242
17243 \end_inset
17244 </cell>
17245 </row>
17246 <row>
17247 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17248 \begin_inset Text
17249
17250 \begin_layout Plain Layout
17251
17252 \backslash
17253 cup
17254 \end_layout
17255
17256 \end_inset
17257 </cell>
17258 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17259 \begin_inset Text
17260
17261 \begin_layout Plain Layout
17262 \begin_inset Formula $\cup$
17263 \end_inset
17264
17265
17266 \end_layout
17267
17268 \end_inset
17269 </cell>
17270 </row>
17271 <row>
17272 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17273 \begin_inset Text
17274
17275 \begin_layout Plain Layout
17276
17277 \backslash
17278 dagger
17279 \end_layout
17280
17281 \end_inset
17282 </cell>
17283 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17284 \begin_inset Text
17285
17286 \begin_layout Plain Layout
17287 \begin_inset Formula $\dagger$
17288 \end_inset
17289
17290
17291 \end_layout
17292
17293 \end_inset
17294 </cell>
17295 </row>
17296 <row>
17297 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17298 \begin_inset Text
17299
17300 \begin_layout Plain Layout
17301
17302 \backslash
17303 ddagger
17304 \end_layout
17305
17306 \end_inset
17307 </cell>
17308 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17309 \begin_inset Text
17310
17311 \begin_layout Plain Layout
17312 \begin_inset Formula $\ddagger$
17313 \end_inset
17314
17315
17316 \end_layout
17317
17318 \end_inset
17319 </cell>
17320 </row>
17321 <row>
17322 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17323 \begin_inset Text
17324
17325 \begin_layout Plain Layout
17326
17327 \backslash
17328 wr
17329 \end_layout
17330
17331 \end_inset
17332 </cell>
17333 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17334 \begin_inset Text
17335
17336 \begin_layout Plain Layout
17337 \begin_inset Formula $\wr$
17338 \end_inset
17339
17340
17341 \end_layout
17342
17343 \end_inset
17344 </cell>
17345 </row>
17346 <row>
17347 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17348 \begin_inset Text
17349
17350 \begin_layout Plain Layout
17351
17352 \backslash
17353 bigcirc
17354 \end_layout
17355
17356 \end_inset
17357 </cell>
17358 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17359 \begin_inset Text
17360
17361 \begin_layout Plain Layout
17362 \begin_inset Formula $\bigcirc$
17363 \end_inset
17364
17365
17366 \end_layout
17367
17368 \end_inset
17369 </cell>
17370 </row>
17371 <row>
17372 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17373 \begin_inset Text
17374
17375 \begin_layout Plain Layout
17376
17377 \backslash
17378 wedge
17379 \end_layout
17380
17381 \end_inset
17382 </cell>
17383 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17384 \begin_inset Text
17385
17386 \begin_layout Plain Layout
17387 \begin_inset Formula $\wedge$
17388 \end_inset
17389
17390
17391 \end_layout
17392
17393 \end_inset
17394 </cell>
17395 </row>
17396 <row>
17397 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
17398 \begin_inset Text
17399
17400 \begin_layout Plain Layout
17401
17402 \backslash
17403 vee
17404 \end_layout
17405
17406 \end_inset
17407 </cell>
17408 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
17409 \begin_inset Text
17410
17411 \begin_layout Plain Layout
17412 \begin_inset Formula $\vee$
17413 \end_inset
17414
17415
17416 \end_layout
17417
17418 \end_inset
17419 </cell>
17420 </row>
17421 </lyxtabular>
17422
17423 \end_inset
17424
17425
17426 \begin_inset space \hfill{}
17427 \end_inset
17428
17429
17430 \begin_inset Tabular
17431 <lyxtabular version="3" rows="13" columns="2">
17432 <features rotate="0" tabularvalignment="middle">
17433 <column alignment="center" valignment="top" width="0pt">
17434 <column alignment="center" valignment="top" width="0pt">
17435 <row>
17436 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
17437 \begin_inset Text
17438
17439 \begin_layout Plain Layout
17440 Befehl
17441 \end_layout
17442
17443 \end_inset
17444 </cell>
17445 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
17446 \begin_inset Text
17447
17448 \begin_layout Plain Layout
17449 Ergebnis
17450 \end_layout
17451
17452 \end_inset
17453 </cell>
17454 </row>
17455 <row>
17456 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17457 \begin_inset Text
17458
17459 \begin_layout Plain Layout
17460
17461 \backslash
17462 oplus
17463 \end_layout
17464
17465 \end_inset
17466 </cell>
17467 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17468 \begin_inset Text
17469
17470 \begin_layout Plain Layout
17471 \begin_inset Formula $\oplus$
17472 \end_inset
17473
17474
17475 \end_layout
17476
17477 \end_inset
17478 </cell>
17479 </row>
17480 <row>
17481 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17482 \begin_inset Text
17483
17484 \begin_layout Plain Layout
17485
17486 \backslash
17487 ominus
17488 \end_layout
17489
17490 \end_inset
17491 </cell>
17492 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17493 \begin_inset Text
17494
17495 \begin_layout Plain Layout
17496 \begin_inset Formula $\ominus$
17497 \end_inset
17498
17499
17500 \end_layout
17501
17502 \end_inset
17503 </cell>
17504 </row>
17505 <row>
17506 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17507 \begin_inset Text
17508
17509 \begin_layout Plain Layout
17510
17511 \backslash
17512 otimes
17513 \end_layout
17514
17515 \end_inset
17516 </cell>
17517 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17518 \begin_inset Text
17519
17520 \begin_layout Plain Layout
17521 \begin_inset Formula $\otimes$
17522 \end_inset
17523
17524
17525 \end_layout
17526
17527 \end_inset
17528 </cell>
17529 </row>
17530 <row>
17531 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17532 \begin_inset Text
17533
17534 \begin_layout Plain Layout
17535
17536 \backslash
17537 oslash
17538 \end_layout
17539
17540 \end_inset
17541 </cell>
17542 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17543 \begin_inset Text
17544
17545 \begin_layout Plain Layout
17546 \begin_inset Formula $\oslash$
17547 \end_inset
17548
17549
17550 \end_layout
17551
17552 \end_inset
17553 </cell>
17554 </row>
17555 <row>
17556 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17557 \begin_inset Text
17558
17559 \begin_layout Plain Layout
17560
17561 \backslash
17562 odot
17563 \end_layout
17564
17565 \end_inset
17566 </cell>
17567 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17568 \begin_inset Text
17569
17570 \begin_layout Plain Layout
17571 \begin_inset Formula $\odot$
17572 \end_inset
17573
17574
17575 \end_layout
17576
17577 \end_inset
17578 </cell>
17579 </row>
17580 <row>
17581 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17582 \begin_inset Text
17583
17584 \begin_layout Plain Layout
17585
17586 \backslash
17587 amalg
17588 \end_layout
17589
17590 \end_inset
17591 </cell>
17592 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17593 \begin_inset Text
17594
17595 \begin_layout Plain Layout
17596 \begin_inset Formula $\amalg$
17597 \end_inset
17598
17599
17600 \end_layout
17601
17602 \end_inset
17603 </cell>
17604 </row>
17605 <row>
17606 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17607 \begin_inset Text
17608
17609 \begin_layout Plain Layout
17610
17611 \backslash
17612 uplus
17613 \end_layout
17614
17615 \end_inset
17616 </cell>
17617 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17618 \begin_inset Text
17619
17620 \begin_layout Plain Layout
17621 \begin_inset Formula $\uplus$
17622 \end_inset
17623
17624
17625 \end_layout
17626
17627 \end_inset
17628 </cell>
17629 </row>
17630 <row>
17631 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17632 \begin_inset Text
17633
17634 \begin_layout Plain Layout
17635
17636 \backslash
17637 setminus
17638 \end_layout
17639
17640 \end_inset
17641 </cell>
17642 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17643 \begin_inset Text
17644
17645 \begin_layout Plain Layout
17646 \begin_inset Formula $\setminus$
17647 \end_inset
17648
17649
17650 \end_layout
17651
17652 \end_inset
17653 </cell>
17654 </row>
17655 <row>
17656 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17657 \begin_inset Text
17658
17659 \begin_layout Plain Layout
17660
17661 \backslash
17662 sqcap
17663 \end_layout
17664
17665 \end_inset
17666 </cell>
17667 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17668 \begin_inset Text
17669
17670 \begin_layout Plain Layout
17671 \begin_inset Formula $\sqcap$
17672 \end_inset
17673
17674
17675 \end_layout
17676
17677 \end_inset
17678 </cell>
17679 </row>
17680 <row>
17681 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17682 \begin_inset Text
17683
17684 \begin_layout Plain Layout
17685
17686 \backslash
17687 sqcup
17688 \end_layout
17689
17690 \end_inset
17691 </cell>
17692 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17693 \begin_inset Text
17694
17695 \begin_layout Plain Layout
17696 \begin_inset Formula $\sqcup$
17697 \end_inset
17698
17699
17700 \end_layout
17701
17702 \end_inset
17703 </cell>
17704 </row>
17705 <row>
17706 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17707 \begin_inset Text
17708
17709 \begin_layout Plain Layout
17710
17711 \backslash
17712 triangleleft
17713 \end_layout
17714
17715 \end_inset
17716 </cell>
17717 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17718 \begin_inset Text
17719
17720 \begin_layout Plain Layout
17721 \begin_inset Formula $\triangleleft$
17722 \end_inset
17723
17724
17725 \end_layout
17726
17727 \end_inset
17728 </cell>
17729 </row>
17730 <row>
17731 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
17732 \begin_inset Text
17733
17734 \begin_layout Plain Layout
17735
17736 \backslash
17737 triangleright
17738 \end_layout
17739
17740 \end_inset
17741 </cell>
17742 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
17743 \begin_inset Text
17744
17745 \begin_layout Plain Layout
17746 \begin_inset Formula $\triangleright$
17747 \end_inset
17748
17749
17750 \end_layout
17751
17752 \end_inset
17753 </cell>
17754 </row>
17755 </lyxtabular>
17756
17757 \end_inset
17758
17759
17760 \begin_inset space \hfill{}
17761 \end_inset
17762
17763
17764 \end_layout
17765
17766 \begin_layout Standard
17767 Alle binären Operatoren können auch über den Mathe-Werkzeugleistenknopf
17768  
17769 \begin_inset Graphics
17770         filename ../../images/math/pm.png
17771         scale 85
17772
17773 \end_inset
17774
17775  eingefügt werden.
17776 \end_layout
17777
17778 \begin_layout Standard
17779 Um den Laplace-Operator darzustellen, kann man statt 
17780 \series bold
17781
17782 \backslash
17783 bigtriangleup
17784 \series default
17785  auch 
17786 \series bold
17787
17788 \backslash
17789 Delta
17790 \series default
17791  verwenden oder man benutzt 
17792 \series bold
17793
17794 \backslash
17795 nabla
17796 \series default
17797 ^
17798 \series bold
17799 2
17800 \series default
17801  (
17802 \begin_inset Formula $\nabla^{2}$
17803 \end_inset
17804
17805 ).
17806 \end_layout
17807
17808 \begin_layout Standard
17809 Das Zeichen 
17810 \family sans
17811 Menütrenner
17812 \family default
17813  im Menü 
17814 \family sans
17815 Einfügen\SpecialChar \menuseparator
17816 Sonderzeichen
17817 \family default
17818  ist der Operator 
17819 \series bold
17820
17821 \backslash
17822 triangleright
17823 \series default
17824 .
17825 \end_layout
17826
17827 \begin_layout Subsection
17828 Selbst definierte Operatoren
17829 \begin_inset CommandInset label
17830 LatexCommand label
17831 name "sub:Selbstdefinierte-Operatoren"
17832
17833 \end_inset
17834
17835
17836 \begin_inset Index idx
17837 status collapsed
17838
17839 \begin_layout Plain Layout
17840 Operatoren ! selbstdefinierte
17841 \end_layout
17842
17843 \end_inset
17844
17845
17846 \end_layout
17847
17848 \begin_layout Standard
17849 Mit Hilfe des Befehls 
17850 \series bold
17851
17852 \backslash
17853 DeclareMathOperator
17854 \series default
17855
17856 \begin_inset Index idx
17857 status collapsed
17858
17859 \begin_layout Plain Layout
17860 Befehle ! D ! 
17861 \backslash
17862 dbinom@
17863 \backslash
17864 DeclareMathOperator
17865 \end_layout
17866
17867 \end_inset
17868
17869  kann man im LaTeX-Vorspann eigene Operatoren definieren.
17870  Das Befehlsschema dazu lautet:
17871 \end_layout
17872
17873 \begin_layout Standard
17874
17875 \series bold
17876
17877 \backslash
17878 DeclareMathOperator{neuer Befehl}{Anzeige}
17879 \end_layout
17880
17881 \begin_layout Standard
17882 Anzeige können Zeichen und Symbole sein, die festlegen, wie der Operator
17883  im Ausdruck aussieht.
17884  Will man einen großen Operator definieren, setzt man hinter den Befehl
17885  ein 
17886 \series bold
17887 *
17888 \series default
17889 .
17890  Zu allen selbst definierten großen Operatoren kann man Grenzen angeben,
17891  wie in 
17892 \begin_inset CommandInset ref
17893 LatexCommand ref
17894 reference "sub:Operatorgrenzen"
17895
17896 \end_inset
17897
17898  beschrieben.
17899 \end_layout
17900
17901 \begin_layout Standard
17902 Beispielsweise definiert die LaTeX-Vorspannzeile
17903 \end_layout
17904
17905 \begin_layout Standard
17906
17907 \series bold
17908
17909 \backslash
17910 DeclareMathOperator*{
17911 \backslash
17912 Raute}{
17913 \backslash
17914 blacklozenge}
17915 \end_layout
17916
17917 \begin_layout Standard
17918 den Befehl 
17919 \series bold
17920
17921 \backslash
17922 Raute
17923 \series default
17924 , mit dem man einen großen Operator aufrufen kann, der aus dem Raute Symbol
17925  aus 
17926 \begin_inset CommandInset ref
17927 LatexCommand ref
17928 reference "sub:Sonstige-Symbole"
17929
17930 \end_inset
17931
17932  besteht:
17933 \begin_inset Formula 
17934 \[
17935 \Raute_{n=1}^{\infty}
17936 \]
17937
17938 \end_inset
17939
17940 Der Befehl für diese Formel lautet: 
17941 \series bold
17942
17943 \backslash
17944 Raute
17945 \series default
17946 ^
17947 \series bold
17948
17949 \backslash
17950 infty
17951 \begin_inset Formula $\to$
17952 \end_inset
17953
17954 _n=1
17955 \end_layout
17956
17957 \begin_layout Standard
17958 \begin_inset VSpace bigskip
17959 \end_inset
17960
17961 Benötigt man eigene Operatoren nicht mehrfach im Dokument, kann man diese
17962  auch mit den Befehlen 
17963 \series bold
17964
17965 \backslash
17966 mathop
17967 \series default
17968
17969 \begin_inset Index idx
17970 status collapsed
17971
17972 \begin_layout Plain Layout
17973 Befehle ! M ! 
17974 \backslash
17975 mathop
17976 \end_layout
17977
17978 \end_inset
17979
17980  und 
17981 \series bold
17982
17983 \backslash
17984 mathbin
17985 \series default
17986
17987 \begin_inset Index idx
17988 status collapsed
17989
17990 \begin_layout Plain Layout
17991 Befehle ! M ! 
17992 \backslash
17993 mathbin
17994 \end_layout
17995
17996 \end_inset
17997
17998  definieren, die folgendes Schema besitzen:
17999 \end_layout
18000
18001 \begin_layout Standard
18002
18003 \series bold
18004
18005 \backslash
18006 mathop{Anzeige}
18007 \series default
18008  bzw.
18009 \begin_inset space \space{}
18010 \end_inset
18011
18012
18013 \series bold
18014
18015 \backslash
18016 mathbin{Anzeige}
18017 \end_layout
18018
18019 \begin_layout Standard
18020
18021 \series bold
18022
18023 \backslash
18024 mathop
18025 \series default
18026  definiert große, 
18027 \series bold
18028
18029 \backslash
18030 mathbin
18031 \series default
18032  binäre Operatoren.
18033 \end_layout
18034
18035 \begin_layout Standard
18036
18037 \series bold
18038
18039 \backslash
18040 mathop
18041 \series default
18042  lässt sich z.
18043 \begin_inset space \thinspace{}
18044 \end_inset
18045
18046 B.
18047  nutzen, um eine Grenze für mehrere Operatoren zu verwenden:
18048 \begin_inset Formula 
18049 \[
18050 \mathop{\sum\negmedspace\sum}_{i,j=1}^{N}
18051 \]
18052
18053 \end_inset
18054
18055
18056 \end_layout
18057
18058 \begin_layout Standard
18059 Der Befehl für obige Formel lautet:
18060 \begin_inset Newline newline
18061 \end_inset
18062
18063  
18064 \series bold
18065
18066 \backslash
18067 mathop{
18068 \backslash
18069 sum
18070 \backslash
18071 negmedspace
18072 \backslash
18073 sum
18074 \series default
18075
18076 \begin_inset ERT
18077 status collapsed
18078
18079 \begin_layout Plain Layout
18080
18081
18082 \backslash
18083 leer 
18084 \end_layout
18085
18086 \end_inset
18087
18088
18089 \series bold
18090
18091 \begin_inset Formula $\to$
18092 \end_inset
18093
18094 ^N
18095 \series default
18096
18097 \begin_inset ERT
18098 status collapsed
18099
18100 \begin_layout Plain Layout
18101
18102
18103 \backslash
18104 leer 
18105 \end_layout
18106
18107 \end_inset
18108
18109
18110 \series bold
18111 _i,j=1
18112 \end_layout
18113
18114 \begin_layout Standard
18115 \begin_inset Newpage newpage
18116 \end_inset
18117
18118
18119 \end_layout
18120
18121 \begin_layout Section
18122 Schriften
18123 \begin_inset Index idx
18124 status collapsed
18125
18126 \begin_layout Plain Layout
18127 Schriften
18128 \end_layout
18129
18130 \end_inset
18131
18132
18133 \end_layout
18134
18135 \begin_layout Subsection
18136 Schriftstile
18137 \begin_inset CommandInset label
18138 LatexCommand label
18139 name "sub:Schriftstile"
18140
18141 \end_inset
18142
18143
18144 \begin_inset Index idx
18145 status collapsed
18146
18147 \begin_layout Plain Layout
18148 Schriften ! Schriftstile
18149 \end_layout
18150
18151 \end_inset
18152
18153
18154 \end_layout
18155
18156 \begin_layout Standard
18157 Lateinische Buchstaben in einer Formel können in folgenden Schriftstilen
18158  gesetzt werden:
18159 \begin_inset VSpace -2mm
18160 \end_inset
18161
18162
18163 \end_layout
18164
18165 \begin_layout Standard
18166 \align center
18167 \begin_inset Tabular
18168 <lyxtabular version="3" rows="7" columns="3">
18169 <features rotate="0" tabularvalignment="middle">
18170 <column alignment="center" valignment="top">
18171 <column alignment="center" valignment="top">
18172 <column alignment="center" valignment="top">
18173 <row>
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 Befehl
18179 \end_layout
18180
18181 \end_inset
18182 </cell>
18183 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
18184 \begin_inset Text
18185
18186 \begin_layout Plain Layout
18187 Ergebnis
18188 \end_layout
18189
18190 \end_inset
18191 </cell>
18192 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
18193 \begin_inset Text
18194
18195 \begin_layout Plain Layout
18196 Tastenkürzel
18197 \end_layout
18198
18199 \end_inset
18200 </cell>
18201 </row>
18202 <row>
18203 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18204 \begin_inset Text
18205
18206 \begin_layout Plain Layout
18207
18208 \backslash
18209 mathbb
18210 \series bold
18211
18212 \begin_inset ERT
18213 status collapsed
18214
18215 \begin_layout Plain Layout
18216
18217
18218 \backslash
18219 leer 
18220 \end_layout
18221
18222 \end_inset
18223
18224
18225 \series default
18226 ABC
18227 \end_layout
18228
18229 \end_inset
18230 </cell>
18231 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18232 \begin_inset Text
18233
18234 \begin_layout Plain Layout
18235 \begin_inset Formula $\mathbb{ABC}$
18236 \end_inset
18237
18238
18239 \end_layout
18240
18241 \end_inset
18242 </cell>
18243 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
18244 \begin_inset Text
18245
18246 \begin_layout Plain Layout
18247 Alt+Z K
18248 \end_layout
18249
18250 \end_inset
18251 </cell>
18252 </row>
18253 <row>
18254 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18255 \begin_inset Text
18256
18257 \begin_layout Plain Layout
18258
18259 \backslash
18260 mathbf
18261 \series bold
18262
18263 \begin_inset ERT
18264 status collapsed
18265
18266 \begin_layout Plain Layout
18267
18268
18269 \backslash
18270 leer 
18271 \end_layout
18272
18273 \end_inset
18274
18275
18276 \series default
18277 AbC
18278 \end_layout
18279
18280 \end_inset
18281 </cell>
18282 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18283 \begin_inset Text
18284
18285 \begin_layout Plain Layout
18286 \begin_inset Formula $\mathbf{AbC}$
18287 \end_inset
18288
18289
18290 \end_layout
18291
18292 \end_inset
18293 </cell>
18294 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
18295 \begin_inset Text
18296
18297 \begin_layout Plain Layout
18298 Strg+B
18299 \end_layout
18300
18301 \end_inset
18302 </cell>
18303 </row>
18304 <row>
18305 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18306 \begin_inset Text
18307
18308 \begin_layout Plain Layout
18309
18310 \backslash
18311 boldsymbol
18312 \series bold
18313
18314 \begin_inset ERT
18315 status collapsed
18316
18317 \begin_layout Plain Layout
18318
18319
18320 \backslash
18321 leer 
18322 \end_layout
18323
18324 \end_inset
18325
18326
18327 \series default
18328 AbC
18329 \end_layout
18330
18331 \end_inset
18332 </cell>
18333 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18334 \begin_inset Text
18335
18336 \begin_layout Plain Layout
18337 \begin_inset Formula $\boldsymbol{AbC}$
18338 \end_inset
18339
18340
18341 \end_layout
18342
18343 \end_inset
18344 </cell>
18345 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
18346 \begin_inset Text
18347
18348 \begin_layout Plain Layout
18349 Alt+Z F oder Strg+Alt+B
18350 \end_layout
18351
18352 \end_inset
18353 </cell>
18354 </row>
18355 <row>
18356 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18357 \begin_inset Text
18358
18359 \begin_layout Plain Layout
18360
18361 \backslash
18362 mathcal
18363 \series bold
18364
18365 \begin_inset ERT
18366 status collapsed
18367
18368 \begin_layout Plain Layout
18369
18370
18371 \backslash
18372 leer 
18373 \end_layout
18374
18375 \end_inset
18376
18377
18378 \series default
18379 ABC
18380 \end_layout
18381
18382 \end_inset
18383 </cell>
18384 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18385 \begin_inset Text
18386
18387 \begin_layout Plain Layout
18388 \begin_inset Formula $\mathcal{ABC}$
18389 \end_inset
18390
18391
18392 \end_layout
18393
18394 \end_inset
18395 </cell>
18396 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
18397 \begin_inset Text
18398
18399 \begin_layout Plain Layout
18400 Alt+Z H
18401 \end_layout
18402
18403 \end_inset
18404 </cell>
18405 </row>
18406 <row>
18407 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18408 \begin_inset Text
18409
18410 \begin_layout Plain Layout
18411
18412 \backslash
18413 mathfrak
18414 \series bold
18415
18416 \begin_inset ERT
18417 status collapsed
18418
18419 \begin_layout Plain Layout
18420
18421
18422 \backslash
18423 leer 
18424 \end_layout
18425
18426 \end_inset
18427
18428
18429 \series default
18430 AbC
18431 \end_layout
18432
18433 \end_inset
18434 </cell>
18435 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18436 \begin_inset Text
18437
18438 \begin_layout Plain Layout
18439 \begin_inset Formula $\mathfrak{AbC}$
18440 \end_inset
18441
18442
18443 \end_layout
18444
18445 \end_inset
18446 </cell>
18447 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
18448 \begin_inset Text
18449
18450 \begin_layout Plain Layout
18451 -
18452 \end_layout
18453
18454 \end_inset
18455 </cell>
18456 </row>
18457 <row>
18458 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
18459 \begin_inset Text
18460
18461 \begin_layout Plain Layout
18462
18463 \backslash
18464 mathscr
18465 \series bold
18466
18467 \begin_inset ERT
18468 status collapsed
18469
18470 \begin_layout Plain Layout
18471
18472
18473 \backslash
18474 leer 
18475 \end_layout
18476
18477 \end_inset
18478
18479
18480 \series default
18481 AbC
18482 \end_layout
18483
18484 \end_inset
18485 </cell>
18486 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
18487 \begin_inset Text
18488
18489 \begin_layout Plain Layout
18490 \begin_inset Formula $\mathscr{AbC}$
18491 \end_inset
18492
18493
18494 \end_layout
18495
18496 \end_inset
18497 </cell>
18498 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
18499 \begin_inset Text
18500
18501 \begin_layout Plain Layout
18502 -
18503 \end_layout
18504
18505 \end_inset
18506 </cell>
18507 </row>
18508 </lyxtabular>
18509
18510 \end_inset
18511
18512
18513 \end_layout
18514
18515 \begin_layout Standard
18516 \align center
18517 \begin_inset Tabular
18518 <lyxtabular version="3" rows="5" columns="3">
18519 <features rotate="0" tabularvalignment="middle">
18520 <column alignment="center" valignment="top">
18521 <column alignment="center" valignment="top">
18522 <column alignment="center" valignment="top">
18523 <row>
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 Befehl
18529 \end_layout
18530
18531 \end_inset
18532 </cell>
18533 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
18534 \begin_inset Text
18535
18536 \begin_layout Plain Layout
18537 Ergebnis
18538 \end_layout
18539
18540 \end_inset
18541 </cell>
18542 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
18543 \begin_inset Text
18544
18545 \begin_layout Plain Layout
18546 Tastenkürzel
18547 \end_layout
18548
18549 \end_inset
18550 </cell>
18551 </row>
18552 <row>
18553 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18554 \begin_inset Text
18555
18556 \begin_layout Plain Layout
18557
18558 \backslash
18559 mathit
18560 \series bold
18561
18562 \begin_inset ERT
18563 status collapsed
18564
18565 \begin_layout Plain Layout
18566
18567
18568 \backslash
18569 leer 
18570 \end_layout
18571
18572 \end_inset
18573
18574
18575 \series default
18576 AbC
18577 \end_layout
18578
18579 \end_inset
18580 </cell>
18581 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18582 \begin_inset Text
18583
18584 \begin_layout Plain Layout
18585 \begin_inset Formula $\mathit{AbC}$
18586 \end_inset
18587
18588
18589 \end_layout
18590
18591 \end_inset
18592 </cell>
18593 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
18594 \begin_inset Text
18595
18596 \begin_layout Plain Layout
18597 -
18598 \end_layout
18599
18600 \end_inset
18601 </cell>
18602 </row>
18603 <row>
18604 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18605 \begin_inset Text
18606
18607 \begin_layout Plain Layout
18608
18609 \backslash
18610 mathrm
18611 \series bold
18612
18613 \begin_inset ERT
18614 status collapsed
18615
18616 \begin_layout Plain Layout
18617
18618
18619 \backslash
18620 leer 
18621 \end_layout
18622
18623 \end_inset
18624
18625
18626 \series default
18627 AbC
18628 \end_layout
18629
18630 \end_inset
18631 </cell>
18632 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18633 \begin_inset Text
18634
18635 \begin_layout Plain Layout
18636 \begin_inset Formula $\mathrm{AbC}$
18637 \end_inset
18638
18639
18640 \end_layout
18641
18642 \end_inset
18643 </cell>
18644 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
18645 \begin_inset Text
18646
18647 \begin_layout Plain Layout
18648 Alt+Z R
18649 \end_layout
18650
18651 \end_inset
18652 </cell>
18653 </row>
18654 <row>
18655 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18656 \begin_inset Text
18657
18658 \begin_layout Plain Layout
18659
18660 \backslash
18661 mathsf
18662 \series bold
18663
18664 \begin_inset ERT
18665 status collapsed
18666
18667 \begin_layout Plain Layout
18668
18669
18670 \backslash
18671 leer 
18672 \end_layout
18673
18674 \end_inset
18675
18676
18677 \series default
18678 AbC
18679 \end_layout
18680
18681 \end_inset
18682 </cell>
18683 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18684 \begin_inset Text
18685
18686 \begin_layout Plain Layout
18687 \begin_inset Formula $\mathsf{AbC}$
18688 \end_inset
18689
18690
18691 \end_layout
18692
18693 \end_inset
18694 </cell>
18695 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
18696 \begin_inset Text
18697
18698 \begin_layout Plain Layout
18699 Alt+Z S
18700 \end_layout
18701
18702 \end_inset
18703 </cell>
18704 </row>
18705 <row>
18706 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
18707 \begin_inset Text
18708
18709 \begin_layout Plain Layout
18710
18711 \backslash
18712 mathtt
18713 \series bold
18714
18715 \begin_inset ERT
18716 status collapsed
18717
18718 \begin_layout Plain Layout
18719
18720
18721 \backslash
18722 leer 
18723 \end_layout
18724
18725 \end_inset
18726
18727
18728 \series default
18729 AbC
18730 \end_layout
18731
18732 \end_inset
18733 </cell>
18734 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
18735 \begin_inset Text
18736
18737 \begin_layout Plain Layout
18738 \begin_inset Formula $\mathtt{AbC}$
18739 \end_inset
18740
18741
18742 \end_layout
18743
18744 \end_inset
18745 </cell>
18746 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
18747 \begin_inset Text
18748
18749 \begin_layout Plain Layout
18750 Alt+Z C
18751 \end_layout
18752
18753 \end_inset
18754 </cell>
18755 </row>
18756 </lyxtabular>
18757
18758 \end_inset
18759
18760
18761 \end_layout
18762
18763 \begin_layout Standard
18764 \begin_inset Note Greyedout
18765 status open
18766
18767 \begin_layout Plain Layout
18768
18769 \series bold
18770 Achtung:
18771 \series default
18772  Die Stile 
18773 \series bold
18774
18775 \backslash
18776 mathbb
18777 \series default
18778  und 
18779 \series bold
18780
18781 \backslash
18782 mathcal
18783 \series default
18784  können nur für Großbuchstaben verwendet werden.
18785 \end_layout
18786
18787 \end_inset
18788
18789
18790 \end_layout
18791
18792 \begin_layout Standard
18793 Voreingestellt ist der Stil 
18794 \series bold
18795
18796 \backslash
18797 mathnormal
18798 \series default
18799 .
18800 \end_layout
18801
18802 \begin_layout Standard
18803 Die Stilbefehle wirken auch auf Buchstaben in mathematischen Konstruktionen:
18804 \begin_inset Formula 
18805 \[
18806 \mathfrak{A=\frac{b}{C}}
18807 \]
18808
18809 \end_inset
18810
18811
18812 \end_layout
18813
18814 \begin_layout Standard
18815 Zeichen im mathematischen Textmodus erscheinen nicht in einem der Matheschriftst
18816 ile, sondern in dem Textschriftstil 
18817 \series bold
18818
18819 \backslash
18820 textrm
18821 \series default
18822 .
18823  Dass deren Stil nicht über den Textstil Dialog geändert werden kann ist
18824  ein Fehler in LyX.
18825 \begin_inset Foot
18826 status collapsed
18827
18828 \begin_layout Plain Layout
18829 \begin_inset CommandInset href
18830 LatexCommand href
18831 name "LyX-Fehler #4629"
18832 target "http://www.lyx.org/trac/ticket/4629"
18833
18834 \end_inset
18835
18836
18837 \end_layout
18838
18839 \end_inset
18840
18841
18842 \end_layout
18843
18844 \begin_layout Standard
18845 Anstelle der Stilbefehle kann man auch den Dialog 
18846 \family sans
18847 Bearbeiten\SpecialChar \menuseparator
18848 Mathe\SpecialChar \menuseparator
18849 Text-Stil
18850 \family default
18851  oder den Mathe-Werkzeugleistenknopf 
18852 \begin_inset Graphics
18853         filename ../../images/math/font.png
18854         scale 85
18855
18856 \end_inset
18857
18858  verwenden.
18859 \end_layout
18860
18861 \begin_layout Subsection
18862 Fett gedruckte Formeln
18863 \begin_inset CommandInset label
18864 LatexCommand label
18865 name "sub:Fett-gedruckte-Formeln"
18866
18867 \end_inset
18868
18869
18870 \begin_inset Index idx
18871 status collapsed
18872
18873 \begin_layout Plain Layout
18874 Formel ! fett gedruckte
18875 \end_layout
18876
18877 \end_inset
18878
18879
18880 \end_layout
18881
18882 \begin_layout Standard
18883 Möchte man komplette Formeln fett setzen, kann man nicht den im vorigen
18884  Kapitel angegebenen Befehl 
18885 \series bold
18886
18887 \backslash
18888 mathbf
18889 \series default
18890  verwenden, denn dieser wirkt nicht auf kleine griechische Buchstaben.
18891  Außerdem setzt er lateinische Buchstaben immer aufrecht, was man an folgender
18892  Formel gut erkennt:
18893 \end_layout
18894
18895 \begin_layout Standard
18896 \begin_inset Formula 
18897 \[
18898 \mathbf{\int_{n}^{2}f(\theta)=\Gamma}\qquad\textrm{Formel mit \textbackslash mathbf}
18899 \]
18900
18901 \end_inset
18902
18903
18904 \end_layout
18905
18906 \begin_layout Standard
18907 Um die Formel korrekt darzustellen, verwendet man den Befehl 
18908 \series bold
18909
18910 \backslash
18911 boldsymbol
18912 \series default
18913 :
18914 \begin_inset Formula 
18915 \[
18916 \boldsymbol{\int_{n}^{2}f(\theta)=\Gamma\qquad\textrm{Formel mit \textbackslash boldsymbol}}
18917 \]
18918
18919 \end_inset
18920
18921 Es gibt auch die Möglichkeit die Formel in eine 
18922 \series bold
18923 boldmath-Umgebung
18924 \series default
18925  zu setzen.
18926  Diese Umgebung wird erzeugt, indem man im TeX-Modus den Befehl 
18927 \series bold
18928
18929 \backslash
18930 boldmath
18931 \series default
18932
18933 \begin_inset Index idx
18934 status collapsed
18935
18936 \begin_layout Plain Layout
18937 Befehle ! B ! 
18938 \backslash
18939 boldmath
18940 \end_layout
18941
18942 \end_inset
18943
18944  eingibt.
18945  Um die Umgebung wieder zu beenden, gibt man im TeX-Modus den Befehl 
18946 \series bold
18947
18948 \backslash
18949 unboldmath
18950 \series default
18951
18952 \begin_inset Index idx
18953 status collapsed
18954
18955 \begin_layout Plain Layout
18956 Befehle ! U ! 
18957 \backslash
18958 unboldmath
18959 \end_layout
18960
18961 \end_inset
18962
18963  ein.
18964 \begin_inset ERT
18965 status collapsed
18966
18967 \begin_layout Plain Layout
18968
18969
18970 \backslash
18971 boldmath 
18972 \end_layout
18973
18974 \end_inset
18975
18976
18977 \begin_inset Formula 
18978 \[
18979 \int_{n}^{2}f(\theta)=\Gamma\qquad\textrm{Formel in boldmath-Umgebung}
18980 \]
18981
18982 \end_inset
18983
18984
18985 \begin_inset ERT
18986 status collapsed
18987
18988 \begin_layout Plain Layout
18989
18990
18991 \backslash
18992 unboldmath 
18993 \end_layout
18994
18995 \end_inset
18996
18997
18998 \end_layout
18999
19000 \begin_layout Subsection
19001 Farbige Formeln
19002 \begin_inset Index idx
19003 status collapsed
19004
19005 \begin_layout Plain Layout
19006 Formel ! farbige
19007 \end_layout
19008
19009 \end_inset
19010
19011
19012 \end_layout
19013
19014 \begin_layout Standard
19015 Formeln können wie normaler Text gefärbt werden: Markieren Sie eine Formel
19016  oder Formelteile und verwenden dann den 
19017 \family sans
19018 Textstil
19019 \family default
19020  Dialog.
19021  Hier ist eine Formel in Magenta:
19022 \begin_inset Formula 
19023 \[
19024 {\color{magenta}\int A\,\mathrm{d}x=\frac{\sqrt[5]{B}}{\ln\left(\frac{1}{3}\right)}}
19025 \]
19026
19027 \end_inset
19028
19029
19030 \end_layout
19031
19032 \begin_layout Standard
19033 Man kann auch eigene Farben definieren, wie in 
19034 \begin_inset CommandInset ref
19035 LatexCommand ref
19036 reference "sub:Farbige-Boxen"
19037
19038 \end_inset
19039
19040  erklärt ist.
19041  Diese können dann mit dem TeX-Code Befehl 
19042 \series bold
19043
19044 \backslash
19045 textcolor
19046 \series default
19047
19048 \begin_inset Index idx
19049 status collapsed
19050
19051 \begin_layout Plain Layout
19052 Befehle! T ! 
19053 \backslash
19054 textcolor
19055 \end_layout
19056
19057 \end_inset
19058
19059  verwendet werden, dass folgendes Schema besitzt:
19060 \end_layout
19061
19062 \begin_layout Standard
19063
19064 \series bold
19065
19066 \backslash
19067 textcolor{Farbe}{Zeichen oder Formel}
19068 \end_layout
19069
19070 \begin_layout Standard
19071 Das folgende Beispiel wurde komplett dunkelgrün und teilweise rot eingefärbt:
19072 \end_layout
19073
19074 \begin_layout Standard
19075 \begin_inset ERT
19076 status collapsed
19077
19078 \begin_layout Plain Layout
19079
19080
19081 \backslash
19082 textcolor{dunkelgruen}{
19083 \end_layout
19084
19085 \end_inset
19086
19087
19088 \begin_inset Formula 
19089 \[
19090 \int A\,\mathrm{d}x=\frac{{\color{red}\sqrt[5]{B}}}{\ln\left(\frac{1}{3}\right)}
19091 \]
19092
19093 \end_inset
19094
19095
19096 \begin_inset ERT
19097 status collapsed
19098
19099 \begin_layout Plain Layout
19100
19101 }
19102 \end_layout
19103
19104 \end_inset
19105
19106
19107 \end_layout
19108
19109 \begin_layout Standard
19110 Aufgrund eines Fehlers in LyX können nur komplette Formeln mit selbst definierte
19111 n Farben gefärbt werden.
19112 \begin_inset Foot
19113 status collapsed
19114
19115 \begin_layout Plain Layout
19116 \begin_inset CommandInset href
19117 LatexCommand href
19118 name "LyX-bug #5269"
19119 target "http://www.lyx.org/trac/ticket/5269"
19120
19121 \end_inset
19122
19123
19124 \end_layout
19125
19126 \end_inset
19127
19128
19129 \end_layout
19130
19131 \begin_layout Subsection
19132 Schriftgrößen
19133 \begin_inset CommandInset label
19134 LatexCommand label
19135 name "sub:Schriftgrößen"
19136
19137 \end_inset
19138
19139
19140 \begin_inset Index idx
19141 status collapsed
19142
19143 \begin_layout Plain Layout
19144 Schriften ! Schriftgrößen
19145 \end_layout
19146
19147 \end_inset
19148
19149
19150 \end_layout
19151
19152 \begin_layout Standard
19153 Für Zeichen in einer Formel gibt es, analog zu Textzeichen, folgende Größenbefeh
19154 le:
19155 \end_layout
19156
19157 \begin_layout Standard
19158
19159 \series bold
19160
19161 \backslash
19162 Huge
19163 \series default
19164
19165 \series bold
19166
19167 \backslash
19168 huge
19169 \series default
19170
19171 \series bold
19172
19173 \backslash
19174 LARGE
19175 \series default
19176
19177 \series bold
19178
19179 \backslash
19180 Large
19181 \series default
19182
19183 \series bold
19184
19185 \backslash
19186 large
19187 \series default
19188
19189 \series bold
19190
19191 \backslash
19192 normalsize
19193 \series default
19194
19195 \series bold
19196
19197 \backslash
19198 small
19199 \series default
19200
19201 \series bold
19202
19203 \backslash
19204 footnotesize
19205 \series default
19206 ,
19207 \begin_inset Newline linebreak
19208 \end_inset
19209
19210
19211 \series bold
19212
19213 \backslash
19214 scriptsize
19215 \series default
19216  und 
19217 \series bold
19218
19219 \backslash
19220 tiny
19221 \end_layout
19222
19223 \begin_layout Standard
19224 Welche Größe die Befehle produzieren, hängt von der Dokumentschriftgröße
19225  ab, die dem Befehl 
19226 \series bold
19227
19228 \backslash
19229 normalsize
19230 \series default
19231  entspricht.
19232  Die anderen Befehle produzieren kleinere oder größere Schriften als 
19233 \series bold
19234
19235 \backslash
19236 normalsize
19237 \series default
19238 .
19239  Die Schriftgröße kann jedoch einen bestimmten Wert nicht übertreffen.
19240  Beträgt z.
19241 \begin_inset space \thinspace{}
19242 \end_inset
19243
19244 B.
19245  die Dokumentschriftgröße 12
19246 \begin_inset space \thinspace{}
19247 \end_inset
19248
19249 pt, produziert der Befehl 
19250 \series bold
19251
19252 \backslash
19253 Huge
19254 \series default
19255  dasselbe wie 
19256 \series bold
19257
19258 \backslash
19259 huge
19260 \series default
19261 .
19262  
19263 \end_layout
19264
19265 \begin_layout Standard
19266 Ein Größenbefehl wird im TeX-Modus vor der Formel eingegeben und legt die
19267  Größe aller nachfolgenden Formel- und Textzeichen fest.
19268  Um wieder zur Ausgangsgröße zurückzukehren, gibt man nach der Formel im
19269  TeX-Modus den Befehl 
19270 \series bold
19271
19272 \backslash
19273 normalsize
19274 \series default
19275  ein.
19276 \end_layout
19277
19278 \begin_layout Standard
19279 Innerhalb einer Formel kann die Größe mit den folgenden Größenbefehlen geändert
19280  werden:
19281 \end_layout
19282
19283 \begin_layout Standard
19284 \noindent
19285 \align center
19286 \begin_inset Tabular
19287 <lyxtabular version="3" rows="5" columns="2">
19288 <features rotate="0" tabularvalignment="middle">
19289 <column alignment="center" valignment="top">
19290 <column alignment="center" valignment="top">
19291 <row>
19292 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
19293 \begin_inset Text
19294
19295 \begin_layout Plain Layout
19296 Befehl
19297 \end_layout
19298
19299 \end_inset
19300 </cell>
19301 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
19302 \begin_inset Text
19303
19304 \begin_layout Plain Layout
19305 Ergebnis
19306 \begin_inset Note Note
19307 status collapsed
19308
19309 \begin_layout Plain Layout
19310
19311 \series bold
19312
19313 \backslash
19314 raisebox
19315 \series default
19316  dient nur als Abstandhalter.
19317 \end_layout
19318
19319 \end_inset
19320
19321
19322 \end_layout
19323
19324 \end_inset
19325 </cell>
19326 </row>
19327 <row>
19328 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19329 \begin_inset Text
19330
19331 \begin_layout Plain Layout
19332
19333 \backslash
19334 displaystyle
19335 \begin_inset Index idx
19336 status collapsed
19337
19338 \begin_layout Plain Layout
19339 Befehle ! D ! 
19340 \backslash
19341 displaystyle
19342 \end_layout
19343
19344 \end_inset
19345
19346
19347 \end_layout
19348
19349 \end_inset
19350 </cell>
19351 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19352 \begin_inset Text
19353
19354 \begin_layout Plain Layout
19355 \begin_inset Formula $\raisebox{6.5mm}{}{\displaystyle E_{\mathrm{pot_{1}}}=\frac{K}{l+\frac{m}{n_{2}}}}\raisebox{-5.5mm}{}$
19356 \end_inset
19357
19358
19359 \end_layout
19360
19361 \end_inset
19362 </cell>
19363 </row>
19364 <row>
19365 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19366 \begin_inset Text
19367
19368 \begin_layout Plain Layout
19369
19370 \backslash
19371 textstyle
19372 \end_layout
19373
19374 \end_inset
19375 </cell>
19376 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19377 \begin_inset Text
19378
19379 \begin_layout Plain Layout
19380 \begin_inset Formula $\raisebox{4.5mm}{}{\textstyle E_{\mathrm{pot_{1}}}=\frac{K}{l+\frac{m}{n_{2}}}}\raisebox{-4mm}{}$
19381 \end_inset
19382
19383
19384 \end_layout
19385
19386 \end_inset
19387 </cell>
19388 </row>
19389 <row>
19390 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19391 \begin_inset Text
19392
19393 \begin_layout Plain Layout
19394
19395 \backslash
19396 scriptstyle
19397 \end_layout
19398
19399 \end_inset
19400 </cell>
19401 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19402 \begin_inset Text
19403
19404 \begin_layout Plain Layout
19405 \begin_inset Formula $\raisebox{4.5mm}{}{\scriptstyle E_{\mathrm{pot_{1}}}=\frac{K}{l+\frac{m}{n_{2}}}}\raisebox{-3.5mm}{}$
19406 \end_inset
19407
19408
19409 \end_layout
19410
19411 \end_inset
19412 </cell>
19413 </row>
19414 <row>
19415 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
19416 \begin_inset Text
19417
19418 \begin_layout Plain Layout
19419
19420 \backslash
19421 scriptscriptstyle
19422 \end_layout
19423
19424 \end_inset
19425 </cell>
19426 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
19427 \begin_inset Text
19428
19429 \begin_layout Plain Layout
19430 \begin_inset Formula $\raisebox{4.5mm}{}{\scriptscriptstyle E_{\mathrm{pot_{1}}}=\frac{K}{l+\frac{m}{n_{2}}}}\raisebox{-3.5mm}{}$
19431 \end_inset
19432
19433
19434 \end_layout
19435
19436 \end_inset
19437 </cell>
19438 </row>
19439 </lyxtabular>
19440
19441 \end_inset
19442
19443
19444 \end_layout
19445
19446 \begin_layout Standard
19447 Nachdem diese Befehle eingegeben wurden, erscheint eine blaues Kästchen
19448  in das die Formelteile eingegeben werden.
19449 \end_layout
19450
19451 \begin_layout Standard
19452 Es gibt eine weitere Möglichkeit die Schriftgröße zu ändern, die allerdings
19453  nur für Symbole oder Buchstaben im mathematischen Text funktioniert.
19454  Dazu wird einer der obigen Textgrößenbefehle im mathematischen Textmodus
19455  eingegeben.
19456  Alle diesem Befehl folgenden Zeichen bis zum Ende des mathematischen Textes
19457  oder bis zu einem anderen Größenbefehl haben dann die angegebene Größe.
19458  Dazu zwei Beispiele:
19459 \begin_inset VSpace -2mm
19460 \end_inset
19461
19462
19463 \end_layout
19464
19465 \begin_layout Standard
19466 \begin_inset ERT
19467 status collapsed
19468
19469 \begin_layout Plain Layout
19470
19471
19472 \backslash
19473 huge 
19474 \end_layout
19475
19476 \end_inset
19477
19478
19479 \begin_inset Formula 
19480 \[
19481 A=\frac{B}{c}\cdot\maltese
19482 \]
19483
19484 \end_inset
19485
19486
19487 \begin_inset Formula 
19488 \[
19489 \maltese A\textrm{\Large\maltese\textit{A}}\textrm{\tiny\maltese\textit{A}}
19490 \]
19491
19492 \end_inset
19493
19494
19495 \begin_inset ERT
19496 status collapsed
19497
19498 \begin_layout Plain Layout
19499
19500
19501 \backslash
19502 normalsize 
19503 \end_layout
19504
19505 \end_inset
19506
19507
19508 \end_layout
19509
19510 \begin_layout Standard
19511 \begin_inset VSpace medskip
19512 \end_inset
19513
19514 Vor beiden Formeln wurde der Befehl 
19515 \series bold
19516
19517 \backslash
19518 huge
19519 \series default
19520  eingegeben.
19521  Der Befehl für die zweite Formel lautet:
19522 \begin_inset Newline newline
19523 \end_inset
19524
19525
19526 \series bold
19527
19528 \backslash
19529 maltese
19530 \begin_inset ERT
19531 status collapsed
19532
19533 \begin_layout Plain Layout
19534
19535
19536 \backslash
19537 leer 
19538 \end_layout
19539
19540 \end_inset
19541
19542 A M-m m 
19543 \backslash
19544 Large
19545 \begin_inset ERT
19546 status collapsed
19547
19548 \begin_layout Plain Layout
19549
19550
19551 \backslash
19552 leer 
19553 \end_layout
19554
19555 \end_inset
19556
19557
19558 \backslash
19559 maltese
19560 \begin_inset ERT
19561 status collapsed
19562
19563 \begin_layout Plain Layout
19564
19565
19566 \backslash
19567 leer 
19568 \end_layout
19569
19570 \end_inset
19571
19572
19573 \backslash
19574 textit
19575 \begin_inset ERT
19576 status collapsed
19577
19578 \begin_layout Plain Layout
19579
19580
19581 \backslash
19582 leer 
19583 \end_layout
19584
19585 \end_inset
19586
19587 A
19588 \begin_inset Formula $\to$
19589 \end_inset
19590
19591
19592 \begin_inset Formula $\to$
19593 \end_inset
19594
19595
19596 \begin_inset Newline newline
19597 \end_inset
19598
19599
19600 \begin_inset space \hspace*{}
19601 \length 1cm
19602 \end_inset
19603
19604 M-m
19605 \series default
19606  
19607 \series bold
19608
19609 \backslash
19610 tiny
19611 \begin_inset ERT
19612 status collapsed
19613
19614 \begin_layout Plain Layout
19615
19616
19617 \backslash
19618 leer 
19619 \end_layout
19620
19621 \end_inset
19622
19623
19624 \backslash
19625 maltese
19626 \begin_inset ERT
19627 status collapsed
19628
19629 \begin_layout Plain Layout
19630
19631
19632 \backslash
19633 leer 
19634 \end_layout
19635
19636 \end_inset
19637
19638
19639 \backslash
19640 textit
19641 \begin_inset ERT
19642 status collapsed
19643
19644 \begin_layout Plain Layout
19645
19646
19647 \backslash
19648 leer 
19649 \end_layout
19650
19651 \end_inset
19652
19653 A
19654 \end_layout
19655
19656 \begin_layout Standard
19657 Kann ein Symbol nicht in verschiedenen Größen dargestellt werden, wird es
19658  immer in der Standardgröße dargestellt.
19659 \end_layout
19660
19661 \begin_layout Section
19662 Griechische Buchstaben
19663 \begin_inset Index idx
19664 status collapsed
19665
19666 \begin_layout Plain Layout
19667 griechische Buchstaben
19668 \end_layout
19669
19670 \end_inset
19671
19672
19673 \end_layout
19674
19675 \begin_layout Standard
19676 Griechischen Buchstaben können auch über den Mathe-Werkzeugleistenknopf
19677  
19678 \begin_inset Graphics
19679         filename ../../images/math/alpha.png
19680         scale 85
19681
19682 \end_inset
19683
19684  eingefügt werden.
19685  Alle internationalen Schriftsatz-Normen geben vor, dass griechische Buchstaben
19686  in Formeln aufrecht gesetzt werden.
19687  In einigen Sprachen, wie z.
19688 \begin_inset space \thinspace{}
19689 \end_inset
19690
19691 B: Französisch oder Russisch, werden sie dennoch manchmal aufrecht gesetzt.
19692 \end_layout
19693
19694 \begin_layout Subsection
19695 Kleine Buchstaben
19696 \begin_inset Index idx
19697 status collapsed
19698
19699 \begin_layout Plain Layout
19700 griechische Buchstaben ! kleine
19701 \end_layout
19702
19703 \end_inset
19704
19705
19706 \end_layout
19707
19708 \begin_layout Standard
19709 \begin_inset space \hfill{}
19710 \end_inset
19711
19712
19713 \begin_inset Tabular
19714 <lyxtabular version="3" rows="11" columns="2">
19715 <features rotate="0" tabularvalignment="middle">
19716 <column alignment="center" valignment="top" width="0pt">
19717 <column alignment="center" valignment="top" width="0pt">
19718 <row>
19719 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
19720 \begin_inset Text
19721
19722 \begin_layout Plain Layout
19723 Befehl
19724 \end_layout
19725
19726 \end_inset
19727 </cell>
19728 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
19729 \begin_inset Text
19730
19731 \begin_layout Plain Layout
19732 Ergebnis
19733 \end_layout
19734
19735 \end_inset
19736 </cell>
19737 </row>
19738 <row>
19739 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19740 \begin_inset Text
19741
19742 \begin_layout Plain Layout
19743
19744 \backslash
19745 alpha
19746 \end_layout
19747
19748 \end_inset
19749 </cell>
19750 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19751 \begin_inset Text
19752
19753 \begin_layout Plain Layout
19754 \begin_inset Formula $\alpha$
19755 \end_inset
19756
19757
19758 \end_layout
19759
19760 \end_inset
19761 </cell>
19762 </row>
19763 <row>
19764 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19765 \begin_inset Text
19766
19767 \begin_layout Plain Layout
19768
19769 \backslash
19770 beta
19771 \end_layout
19772
19773 \end_inset
19774 </cell>
19775 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19776 \begin_inset Text
19777
19778 \begin_layout Plain Layout
19779 \begin_inset Formula $\beta$
19780 \end_inset
19781
19782
19783 \end_layout
19784
19785 \end_inset
19786 </cell>
19787 </row>
19788 <row>
19789 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19790 \begin_inset Text
19791
19792 \begin_layout Plain Layout
19793
19794 \backslash
19795 gamma
19796 \end_layout
19797
19798 \end_inset
19799 </cell>
19800 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19801 \begin_inset Text
19802
19803 \begin_layout Plain Layout
19804 \begin_inset Formula $\gamma$
19805 \end_inset
19806
19807
19808 \end_layout
19809
19810 \end_inset
19811 </cell>
19812 </row>
19813 <row>
19814 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19815 \begin_inset Text
19816
19817 \begin_layout Plain Layout
19818
19819 \backslash
19820 delta
19821 \end_layout
19822
19823 \end_inset
19824 </cell>
19825 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19826 \begin_inset Text
19827
19828 \begin_layout Plain Layout
19829 \begin_inset Formula $\delta$
19830 \end_inset
19831
19832
19833 \end_layout
19834
19835 \end_inset
19836 </cell>
19837 </row>
19838 <row>
19839 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19840 \begin_inset Text
19841
19842 \begin_layout Plain Layout
19843
19844 \backslash
19845 epsilon
19846 \end_layout
19847
19848 \end_inset
19849 </cell>
19850 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19851 \begin_inset Text
19852
19853 \begin_layout Plain Layout
19854 \begin_inset Formula $\epsilon$
19855 \end_inset
19856
19857
19858 \end_layout
19859
19860 \end_inset
19861 </cell>
19862 </row>
19863 <row>
19864 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19865 \begin_inset Text
19866
19867 \begin_layout Plain Layout
19868
19869 \backslash
19870 varepsilon
19871 \end_layout
19872
19873 \end_inset
19874 </cell>
19875 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19876 \begin_inset Text
19877
19878 \begin_layout Plain Layout
19879 \begin_inset Formula $\varepsilon$
19880 \end_inset
19881
19882
19883 \end_layout
19884
19885 \end_inset
19886 </cell>
19887 </row>
19888 <row>
19889 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19890 \begin_inset Text
19891
19892 \begin_layout Plain Layout
19893
19894 \backslash
19895 zeta
19896 \end_layout
19897
19898 \end_inset
19899 </cell>
19900 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19901 \begin_inset Text
19902
19903 \begin_layout Plain Layout
19904 \begin_inset Formula $\zeta$
19905 \end_inset
19906
19907
19908 \end_layout
19909
19910 \end_inset
19911 </cell>
19912 </row>
19913 <row>
19914 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19915 \begin_inset Text
19916
19917 \begin_layout Plain Layout
19918
19919 \backslash
19920 eta
19921 \end_layout
19922
19923 \end_inset
19924 </cell>
19925 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19926 \begin_inset Text
19927
19928 \begin_layout Plain Layout
19929 \begin_inset Formula $\eta$
19930 \end_inset
19931
19932
19933 \end_layout
19934
19935 \end_inset
19936 </cell>
19937 </row>
19938 <row>
19939 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19940 \begin_inset Text
19941
19942 \begin_layout Plain Layout
19943
19944 \backslash
19945 theta
19946 \end_layout
19947
19948 \end_inset
19949 </cell>
19950 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19951 \begin_inset Text
19952
19953 \begin_layout Plain Layout
19954 \begin_inset Formula $\theta$
19955 \end_inset
19956
19957
19958 \end_layout
19959
19960 \end_inset
19961 </cell>
19962 </row>
19963 <row>
19964 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
19965 \begin_inset Text
19966
19967 \begin_layout Plain Layout
19968
19969 \backslash
19970 vartheta
19971 \end_layout
19972
19973 \end_inset
19974 </cell>
19975 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
19976 \begin_inset Text
19977
19978 \begin_layout Plain Layout
19979 \begin_inset Formula $\vartheta$
19980 \end_inset
19981
19982
19983 \end_layout
19984
19985 \end_inset
19986 </cell>
19987 </row>
19988 </lyxtabular>
19989
19990 \end_inset
19991
19992
19993 \begin_inset space \hfill{}
19994 \end_inset
19995
19996
19997 \begin_inset Tabular
19998 <lyxtabular version="3" rows="12" columns="2">
19999 <features rotate="0" tabularvalignment="middle">
20000 <column alignment="center" valignment="top" width="0pt">
20001 <column alignment="center" valignment="top" width="0pt">
20002 <row>
20003 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
20004 \begin_inset Text
20005
20006 \begin_layout Plain Layout
20007 Befehl
20008 \end_layout
20009
20010 \end_inset
20011 </cell>
20012 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
20013 \begin_inset Text
20014
20015 \begin_layout Plain Layout
20016 Ergebnis
20017 \end_layout
20018
20019 \end_inset
20020 </cell>
20021 </row>
20022 <row>
20023 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20024 \begin_inset Text
20025
20026 \begin_layout Plain Layout
20027
20028 \backslash
20029 iota
20030 \end_layout
20031
20032 \end_inset
20033 </cell>
20034 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20035 \begin_inset Text
20036
20037 \begin_layout Plain Layout
20038 \begin_inset Formula $\iota$
20039 \end_inset
20040
20041
20042 \end_layout
20043
20044 \end_inset
20045 </cell>
20046 </row>
20047 <row>
20048 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20049 \begin_inset Text
20050
20051 \begin_layout Plain Layout
20052
20053 \backslash
20054 kappa
20055 \end_layout
20056
20057 \end_inset
20058 </cell>
20059 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20060 \begin_inset Text
20061
20062 \begin_layout Plain Layout
20063 \begin_inset Formula $\kappa$
20064 \end_inset
20065
20066
20067 \end_layout
20068
20069 \end_inset
20070 </cell>
20071 </row>
20072 <row>
20073 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20074 \begin_inset Text
20075
20076 \begin_layout Plain Layout
20077
20078 \backslash
20079 varkappa
20080 \end_layout
20081
20082 \end_inset
20083 </cell>
20084 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20085 \begin_inset Text
20086
20087 \begin_layout Plain Layout
20088 \begin_inset Formula $\varkappa$
20089 \end_inset
20090
20091
20092 \end_layout
20093
20094 \end_inset
20095 </cell>
20096 </row>
20097 <row>
20098 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20099 \begin_inset Text
20100
20101 \begin_layout Plain Layout
20102
20103 \backslash
20104 lambda
20105 \end_layout
20106
20107 \end_inset
20108 </cell>
20109 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20110 \begin_inset Text
20111
20112 \begin_layout Plain Layout
20113 \begin_inset Formula $\lambda$
20114 \end_inset
20115
20116
20117 \end_layout
20118
20119 \end_inset
20120 </cell>
20121 </row>
20122 <row>
20123 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20124 \begin_inset Text
20125
20126 \begin_layout Plain Layout
20127
20128 \backslash
20129 mu
20130 \end_layout
20131
20132 \end_inset
20133 </cell>
20134 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20135 \begin_inset Text
20136
20137 \begin_layout Plain Layout
20138 \begin_inset Formula $\mu$
20139 \end_inset
20140
20141
20142 \end_layout
20143
20144 \end_inset
20145 </cell>
20146 </row>
20147 <row>
20148 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20149 \begin_inset Text
20150
20151 \begin_layout Plain Layout
20152
20153 \backslash
20154 nu
20155 \end_layout
20156
20157 \end_inset
20158 </cell>
20159 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20160 \begin_inset Text
20161
20162 \begin_layout Plain Layout
20163 \begin_inset Formula $\nu$
20164 \end_inset
20165
20166
20167 \end_layout
20168
20169 \end_inset
20170 </cell>
20171 </row>
20172 <row>
20173 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20174 \begin_inset Text
20175
20176 \begin_layout Plain Layout
20177
20178 \backslash
20179 xi
20180 \end_layout
20181
20182 \end_inset
20183 </cell>
20184 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20185 \begin_inset Text
20186
20187 \begin_layout Plain Layout
20188 \begin_inset Formula $\xi$
20189 \end_inset
20190
20191
20192 \end_layout
20193
20194 \end_inset
20195 </cell>
20196 </row>
20197 <row>
20198 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20199 \begin_inset Text
20200
20201 \begin_layout Plain Layout
20202 o
20203 \end_layout
20204
20205 \end_inset
20206 </cell>
20207 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20208 \begin_inset Text
20209
20210 \begin_layout Plain Layout
20211 \begin_inset Formula $o$
20212 \end_inset
20213
20214
20215 \end_layout
20216
20217 \end_inset
20218 </cell>
20219 </row>
20220 <row>
20221 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20222 \begin_inset Text
20223
20224 \begin_layout Plain Layout
20225
20226 \backslash
20227 pi
20228 \end_layout
20229
20230 \end_inset
20231 </cell>
20232 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20233 \begin_inset Text
20234
20235 \begin_layout Plain Layout
20236 \begin_inset Formula $\pi$
20237 \end_inset
20238
20239
20240 \end_layout
20241
20242 \end_inset
20243 </cell>
20244 </row>
20245 <row>
20246 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20247 \begin_inset Text
20248
20249 \begin_layout Plain Layout
20250
20251 \backslash
20252 varpi
20253 \end_layout
20254
20255 \end_inset
20256 </cell>
20257 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20258 \begin_inset Text
20259
20260 \begin_layout Plain Layout
20261 \begin_inset Formula $\varpi$
20262 \end_inset
20263
20264
20265 \end_layout
20266
20267 \end_inset
20268 </cell>
20269 </row>
20270 <row>
20271 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
20272 \begin_inset Text
20273
20274 \begin_layout Plain Layout
20275
20276 \backslash
20277 rho
20278 \end_layout
20279
20280 \end_inset
20281 </cell>
20282 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
20283 \begin_inset Text
20284
20285 \begin_layout Plain Layout
20286 \begin_inset Formula $\rho$
20287 \end_inset
20288
20289
20290 \end_layout
20291
20292 \end_inset
20293 </cell>
20294 </row>
20295 </lyxtabular>
20296
20297 \end_inset
20298
20299
20300 \begin_inset space \hfill{}
20301 \end_inset
20302
20303
20304 \begin_inset Tabular
20305 <lyxtabular version="3" rows="11" columns="2">
20306 <features rotate="0" tabularvalignment="middle">
20307 <column alignment="center" valignment="top" width="0pt">
20308 <column alignment="center" valignment="top" width="0pt">
20309 <row>
20310 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
20311 \begin_inset Text
20312
20313 \begin_layout Plain Layout
20314 Befehl
20315 \end_layout
20316
20317 \end_inset
20318 </cell>
20319 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
20320 \begin_inset Text
20321
20322 \begin_layout Plain Layout
20323 Ergebnis
20324 \end_layout
20325
20326 \end_inset
20327 </cell>
20328 </row>
20329 <row>
20330 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20331 \begin_inset Text
20332
20333 \begin_layout Plain Layout
20334
20335 \backslash
20336 varrho
20337 \end_layout
20338
20339 \end_inset
20340 </cell>
20341 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20342 \begin_inset Text
20343
20344 \begin_layout Plain Layout
20345 \begin_inset Formula $\varrho$
20346 \end_inset
20347
20348
20349 \end_layout
20350
20351 \end_inset
20352 </cell>
20353 </row>
20354 <row>
20355 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20356 \begin_inset Text
20357
20358 \begin_layout Plain Layout
20359
20360 \backslash
20361 sigma
20362 \end_layout
20363
20364 \end_inset
20365 </cell>
20366 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20367 \begin_inset Text
20368
20369 \begin_layout Plain Layout
20370 \begin_inset Formula $\sigma$
20371 \end_inset
20372
20373
20374 \end_layout
20375
20376 \end_inset
20377 </cell>
20378 </row>
20379 <row>
20380 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20381 \begin_inset Text
20382
20383 \begin_layout Plain Layout
20384
20385 \backslash
20386 varsigma
20387 \end_layout
20388
20389 \end_inset
20390 </cell>
20391 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20392 \begin_inset Text
20393
20394 \begin_layout Plain Layout
20395 \begin_inset Formula $\varsigma$
20396 \end_inset
20397
20398
20399 \end_layout
20400
20401 \end_inset
20402 </cell>
20403 </row>
20404 <row>
20405 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20406 \begin_inset Text
20407
20408 \begin_layout Plain Layout
20409
20410 \backslash
20411 tau
20412 \end_layout
20413
20414 \end_inset
20415 </cell>
20416 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20417 \begin_inset Text
20418
20419 \begin_layout Plain Layout
20420 \begin_inset Formula $\tau$
20421 \end_inset
20422
20423
20424 \end_layout
20425
20426 \end_inset
20427 </cell>
20428 </row>
20429 <row>
20430 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20431 \begin_inset Text
20432
20433 \begin_layout Plain Layout
20434
20435 \backslash
20436 upsilon
20437 \end_layout
20438
20439 \end_inset
20440 </cell>
20441 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20442 \begin_inset Text
20443
20444 \begin_layout Plain Layout
20445 \begin_inset Formula $\upsilon$
20446 \end_inset
20447
20448
20449 \end_layout
20450
20451 \end_inset
20452 </cell>
20453 </row>
20454 <row>
20455 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20456 \begin_inset Text
20457
20458 \begin_layout Plain Layout
20459
20460 \backslash
20461 phi
20462 \end_layout
20463
20464 \end_inset
20465 </cell>
20466 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20467 \begin_inset Text
20468
20469 \begin_layout Plain Layout
20470 \begin_inset Formula $\phi$
20471 \end_inset
20472
20473
20474 \end_layout
20475
20476 \end_inset
20477 </cell>
20478 </row>
20479 <row>
20480 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20481 \begin_inset Text
20482
20483 \begin_layout Plain Layout
20484
20485 \backslash
20486 varphi
20487 \end_layout
20488
20489 \end_inset
20490 </cell>
20491 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20492 \begin_inset Text
20493
20494 \begin_layout Plain Layout
20495 \begin_inset Formula $\varphi$
20496 \end_inset
20497
20498
20499 \end_layout
20500
20501 \end_inset
20502 </cell>
20503 </row>
20504 <row>
20505 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20506 \begin_inset Text
20507
20508 \begin_layout Plain Layout
20509
20510 \backslash
20511 chi
20512 \end_layout
20513
20514 \end_inset
20515 </cell>
20516 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20517 \begin_inset Text
20518
20519 \begin_layout Plain Layout
20520 \begin_inset Formula $\chi$
20521 \end_inset
20522
20523
20524 \end_layout
20525
20526 \end_inset
20527 </cell>
20528 </row>
20529 <row>
20530 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20531 \begin_inset Text
20532
20533 \begin_layout Plain Layout
20534
20535 \backslash
20536 psi
20537 \end_layout
20538
20539 \end_inset
20540 </cell>
20541 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20542 \begin_inset Text
20543
20544 \begin_layout Plain Layout
20545 \begin_inset Formula $\psi$
20546 \end_inset
20547
20548
20549 \end_layout
20550
20551 \end_inset
20552 </cell>
20553 </row>
20554 <row>
20555 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
20556 \begin_inset Text
20557
20558 \begin_layout Plain Layout
20559
20560 \backslash
20561 omega
20562 \end_layout
20563
20564 \end_inset
20565 </cell>
20566 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
20567 \begin_inset Text
20568
20569 \begin_layout Plain Layout
20570 \begin_inset Formula $\omega$
20571 \end_inset
20572
20573
20574 \end_layout
20575
20576 \end_inset
20577 </cell>
20578 </row>
20579 </lyxtabular>
20580
20581 \end_inset
20582
20583
20584 \begin_inset space \hfill{}
20585 \end_inset
20586
20587
20588 \end_layout
20589
20590 \begin_layout Standard
20591 \begin_inset VSpace medskip
20592 \end_inset
20593
20594 Wie man spezielle, aufrechte griechische Buchstaben erstellt, ist in 
20595 \begin_inset CommandInset ref
20596 LatexCommand ref
20597 reference "sub:Aufrechte-kleine-griechische"
20598
20599 \end_inset
20600
20601  beschrieben.
20602 \end_layout
20603
20604 \begin_layout Subsection
20605 Große Buchstaben
20606 \begin_inset Index idx
20607 status collapsed
20608
20609 \begin_layout Plain Layout
20610 griechische Buchstaben ! große
20611 \end_layout
20612
20613 \end_inset
20614
20615
20616 \end_layout
20617
20618 \begin_layout Standard
20619 \begin_inset space \hfill{}
20620 \end_inset
20621
20622
20623 \begin_inset Tabular
20624 <lyxtabular version="3" rows="7" columns="2">
20625 <features rotate="0" tabularvalignment="middle">
20626 <column alignment="center" valignment="top" width="0pt">
20627 <column alignment="center" valignment="top" width="0pt">
20628 <row>
20629 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
20630 \begin_inset Text
20631
20632 \begin_layout Plain Layout
20633 Befehl
20634 \end_layout
20635
20636 \end_inset
20637 </cell>
20638 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
20639 \begin_inset Text
20640
20641 \begin_layout Plain Layout
20642 Ergebnis
20643 \end_layout
20644
20645 \end_inset
20646 </cell>
20647 </row>
20648 <row>
20649 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20650 \begin_inset Text
20651
20652 \begin_layout Plain Layout
20653
20654 \backslash
20655 Gamma
20656 \end_layout
20657
20658 \end_inset
20659 </cell>
20660 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20661 \begin_inset Text
20662
20663 \begin_layout Plain Layout
20664 \begin_inset Formula $\Gamma$
20665 \end_inset
20666
20667
20668 \end_layout
20669
20670 \end_inset
20671 </cell>
20672 </row>
20673 <row>
20674 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20675 \begin_inset Text
20676
20677 \begin_layout Plain Layout
20678
20679 \backslash
20680 Delta
20681 \end_layout
20682
20683 \end_inset
20684 </cell>
20685 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20686 \begin_inset Text
20687
20688 \begin_layout Plain Layout
20689 \begin_inset Formula $\Delta$
20690 \end_inset
20691
20692
20693 \end_layout
20694
20695 \end_inset
20696 </cell>
20697 </row>
20698 <row>
20699 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20700 \begin_inset Text
20701
20702 \begin_layout Plain Layout
20703
20704 \backslash
20705 Theta
20706 \end_layout
20707
20708 \end_inset
20709 </cell>
20710 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20711 \begin_inset Text
20712
20713 \begin_layout Plain Layout
20714 \begin_inset Formula $\Theta$
20715 \end_inset
20716
20717
20718 \end_layout
20719
20720 \end_inset
20721 </cell>
20722 </row>
20723 <row>
20724 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20725 \begin_inset Text
20726
20727 \begin_layout Plain Layout
20728
20729 \backslash
20730 Lambda
20731 \end_layout
20732
20733 \end_inset
20734 </cell>
20735 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20736 \begin_inset Text
20737
20738 \begin_layout Plain Layout
20739 \begin_inset Formula $\Lambda$
20740 \end_inset
20741
20742
20743 \end_layout
20744
20745 \end_inset
20746 </cell>
20747 </row>
20748 <row>
20749 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20750 \begin_inset Text
20751
20752 \begin_layout Plain Layout
20753
20754 \backslash
20755 Xi
20756 \end_layout
20757
20758 \end_inset
20759 </cell>
20760 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20761 \begin_inset Text
20762
20763 \begin_layout Plain Layout
20764 \begin_inset Formula $\Xi$
20765 \end_inset
20766
20767
20768 \end_layout
20769
20770 \end_inset
20771 </cell>
20772 </row>
20773 <row>
20774 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
20775 \begin_inset Text
20776
20777 \begin_layout Plain Layout
20778
20779 \backslash
20780 Pi
20781 \end_layout
20782
20783 \end_inset
20784 </cell>
20785 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
20786 \begin_inset Text
20787
20788 \begin_layout Plain Layout
20789 \begin_inset Formula $\Pi$
20790 \end_inset
20791
20792
20793 \end_layout
20794
20795 \end_inset
20796 </cell>
20797 </row>
20798 </lyxtabular>
20799
20800 \end_inset
20801
20802
20803 \begin_inset space \hfill{}
20804 \end_inset
20805
20806
20807 \begin_inset Tabular
20808 <lyxtabular version="3" rows="6" columns="2">
20809 <features rotate="0" tabularvalignment="middle">
20810 <column alignment="center" valignment="top" width="0pt">
20811 <column alignment="center" valignment="top" width="0pt">
20812 <row>
20813 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
20814 \begin_inset Text
20815
20816 \begin_layout Plain Layout
20817 Befehl
20818 \end_layout
20819
20820 \end_inset
20821 </cell>
20822 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
20823 \begin_inset Text
20824
20825 \begin_layout Plain Layout
20826 Ergebnis
20827 \end_layout
20828
20829 \end_inset
20830 </cell>
20831 </row>
20832 <row>
20833 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20834 \begin_inset Text
20835
20836 \begin_layout Plain Layout
20837
20838 \backslash
20839 Sigma
20840 \end_layout
20841
20842 \end_inset
20843 </cell>
20844 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20845 \begin_inset Text
20846
20847 \begin_layout Plain Layout
20848 \begin_inset Formula $\Sigma$
20849 \end_inset
20850
20851
20852 \end_layout
20853
20854 \end_inset
20855 </cell>
20856 </row>
20857 <row>
20858 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20859 \begin_inset Text
20860
20861 \begin_layout Plain Layout
20862
20863 \backslash
20864 Upsilon
20865 \end_layout
20866
20867 \end_inset
20868 </cell>
20869 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20870 \begin_inset Text
20871
20872 \begin_layout Plain Layout
20873 \begin_inset Formula $\Upsilon$
20874 \end_inset
20875
20876
20877 \end_layout
20878
20879 \end_inset
20880 </cell>
20881 </row>
20882 <row>
20883 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20884 \begin_inset Text
20885
20886 \begin_layout Plain Layout
20887
20888 \backslash
20889 Phi
20890 \end_layout
20891
20892 \end_inset
20893 </cell>
20894 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20895 \begin_inset Text
20896
20897 \begin_layout Plain Layout
20898 \begin_inset Formula $\Phi$
20899 \end_inset
20900
20901
20902 \end_layout
20903
20904 \end_inset
20905 </cell>
20906 </row>
20907 <row>
20908 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20909 \begin_inset Text
20910
20911 \begin_layout Plain Layout
20912
20913 \backslash
20914 Psi
20915 \end_layout
20916
20917 \end_inset
20918 </cell>
20919 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20920 \begin_inset Text
20921
20922 \begin_layout Plain Layout
20923 \begin_inset Formula $\Psi$
20924 \end_inset
20925
20926
20927 \end_layout
20928
20929 \end_inset
20930 </cell>
20931 </row>
20932 <row>
20933 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
20934 \begin_inset Text
20935
20936 \begin_layout Plain Layout
20937
20938 \backslash
20939 Omega
20940 \end_layout
20941
20942 \end_inset
20943 </cell>
20944 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
20945 \begin_inset Text
20946
20947 \begin_layout Plain Layout
20948 \begin_inset Formula $\Omega$
20949 \end_inset
20950
20951
20952 \end_layout
20953
20954 \end_inset
20955 </cell>
20956 </row>
20957 </lyxtabular>
20958
20959 \end_inset
20960
20961
20962 \begin_inset space \hfill{}
20963 \end_inset
20964
20965
20966 \end_layout
20967
20968 \begin_layout Standard
20969 \begin_inset VSpace medskip
20970 \end_inset
20971
20972 Dass die großen griechischen Buchstaben aufrecht erscheinen, ist einem Fehler
20973  geschuldet, der während der Entwicklung von TeX gemacht wurde.
20974  Um korrekte kursive Großbuchstaben zu erhalten, beginnt man einen Befehl
20975  mit 
20976 \series bold
20977 var
20978 \series default
20979 .
20980  So ergibt z.
20981 \begin_inset space \thinspace{}
20982 \end_inset
20983
20984 B.
20985  der Befehl 
20986 \series bold
20987
20988 \backslash
20989 varGamma
20990 \series default
20991  
20992 \begin_inset Formula $\varGamma$
20993 \end_inset
20994
20995 .
20996  Eine andere Methode ist das Laden des Pakets 
20997 \series bold
20998 fixmath
20999 \series default
21000
21001 \begin_inset Foot
21002 status collapsed
21003
21004 \begin_layout Plain Layout
21005
21006 \series bold
21007 fixmath
21008 \series default
21009  ist Teil des LaTeX-Paketes 
21010 \series bold
21011 was
21012 \series default
21013
21014 \begin_inset Index idx
21015 status collapsed
21016
21017 \begin_layout Plain Layout
21018 Pakete ! was
21019 \begin_inset ERT
21020 status collapsed
21021
21022 \begin_layout Plain Layout
21023
21024
21025 \backslash
21026 vspace{4mm}
21027 \end_layout
21028
21029 \end_inset
21030
21031
21032 \end_layout
21033
21034 \end_inset
21035
21036 .
21037 \end_layout
21038
21039 \end_inset
21040
21041
21042 \begin_inset Index idx
21043 status collapsed
21044
21045 \begin_layout Plain Layout
21046 Pakete ! fixmath
21047 \end_layout
21048
21049 \end_inset
21050
21051  mit der LaTeX-Vorspannzeile
21052 \end_layout
21053
21054 \begin_layout Standard
21055
21056 \series bold
21057
21058 \backslash
21059 usepackage{fixmath}
21060 \end_layout
21061
21062 \begin_layout Standard
21063 Dann werden alle großen griechischen Buchstaben im Dokument automatisch
21064  kursiv ausgegeben.
21065 \end_layout
21066
21067 \begin_layout Subsection
21068 Fett gedruckte Buchstaben
21069 \begin_inset Index idx
21070 status collapsed
21071
21072 \begin_layout Plain Layout
21073 griechische Buchstaben ! fett gedruckte
21074 \end_layout
21075
21076 \end_inset
21077
21078
21079 \end_layout
21080
21081 \begin_layout Standard
21082 Griechische lassen sich nicht wie lateinische Buchstaben in verschiedenen
21083  Schriftstilen darstellen.
21084  Es besteht nur die Möglichkeit, sie mit dem Befehl 
21085 \series bold
21086
21087 \backslash
21088 boldsymbol
21089 \series default
21090
21091 \begin_inset Index idx
21092 status collapsed
21093
21094 \begin_layout Plain Layout
21095 Befehle ! B ! 
21096 \backslash
21097 boldsymbol
21098 \end_layout
21099
21100 \end_inset
21101
21102  fett gedruckt auszugeben.
21103 \end_layout
21104
21105 \begin_layout Standard
21106 \align center
21107 \begin_inset Tabular
21108 <lyxtabular version="3" rows="3" columns="2">
21109 <features rotate="0" tabularvalignment="middle">
21110 <column alignment="center" valignment="top">
21111 <column alignment="center" valignment="top">
21112 <row>
21113 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
21114 \begin_inset Text
21115
21116 \begin_layout Plain Layout
21117 Befehl
21118 \end_layout
21119
21120 \end_inset
21121 </cell>
21122 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
21123 \begin_inset Text
21124
21125 \begin_layout Plain Layout
21126 Ergebnis
21127 \end_layout
21128
21129 \end_inset
21130 </cell>
21131 </row>
21132 <row>
21133 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21134 \begin_inset Text
21135
21136 \begin_layout Plain Layout
21137
21138 \backslash
21139 Upsilon
21140 \backslash
21141 boldsymbol
21142 \backslash
21143 Upsilon
21144 \end_layout
21145
21146 \end_inset
21147 </cell>
21148 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21149 \begin_inset Text
21150
21151 \begin_layout Plain Layout
21152 \begin_inset Formula $\Upsilon\boldsymbol{\Upsilon}$
21153 \end_inset
21154
21155
21156 \end_layout
21157
21158 \end_inset
21159 </cell>
21160 </row>
21161 <row>
21162 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
21163 \begin_inset Text
21164
21165 \begin_layout Plain Layout
21166
21167 \backslash
21168 theta
21169 \backslash
21170 boldsymbol
21171 \backslash
21172 theta
21173 \end_layout
21174
21175 \end_inset
21176 </cell>
21177 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
21178 \begin_inset Text
21179
21180 \begin_layout Plain Layout
21181 \begin_inset Formula $\theta\boldsymbol{\theta}$
21182 \end_inset
21183
21184
21185 \end_layout
21186
21187 \end_inset
21188 </cell>
21189 </row>
21190 </lyxtabular>
21191
21192 \end_inset
21193
21194
21195 \end_layout
21196
21197 \begin_layout Section
21198 Symbole
21199 \begin_inset ERT
21200 status collapsed
21201
21202 \begin_layout Plain Layout
21203
21204
21205 \backslash
21206 texorpdfstring{
21207 \end_layout
21208
21209 \end_inset
21210
21211
21212 \begin_inset Foot
21213 status collapsed
21214
21215 \begin_layout Plain Layout
21216 Eine Liste mit sämtlichen Symbolen der meisten LaTeX-Pakete findet man in
21217  
21218 \begin_inset CommandInset citation
21219 LatexCommand cite
21220 key "Symbole"
21221
21222 \end_inset
21223
21224 .
21225 \end_layout
21226
21227 \end_inset
21228
21229
21230 \begin_inset ERT
21231 status collapsed
21232
21233 \begin_layout Plain Layout
21234
21235 }{}
21236 \end_layout
21237
21238 \end_inset
21239
21240
21241 \begin_inset Note Note
21242 status collapsed
21243
21244 \begin_layout Plain Layout
21245
21246 \series bold
21247
21248 \backslash
21249 texorpdfstring
21250 \series default
21251  dient dazu, dass die Fußnote nicht mit im pdf-Lesezeichen erscheint.
21252 \end_layout
21253
21254 \begin_layout Plain Layout
21255 Näheres zu 
21256 \series bold
21257
21258 \backslash
21259 texorpdfstring
21260 \series default
21261  steht in Kapitel 
21262 \begin_inset CommandInset ref
21263 LatexCommand ref
21264 reference "sub:Formeln-in-Überschriften"
21265
21266 \end_inset
21267
21268 .
21269 \end_layout
21270
21271 \end_inset
21272
21273
21274 \begin_inset Index idx
21275 status collapsed
21276
21277 \begin_layout Plain Layout
21278 Symbole
21279 \end_layout
21280
21281 \end_inset
21282
21283
21284 \end_layout
21285
21286 \begin_layout Standard
21287 Viele der im Folgenden aufgelisteten Symbole können auch über die Mathe-Werkzeug\SpecialChar \-
21288
21289 leistenknöpfe 
21290 \begin_inset Graphics
21291         filename ../../images/math/nabla.png
21292         scale 85
21293
21294 \end_inset
21295
21296  und 
21297 \begin_inset Graphics
21298         filename ../../images/math/digamma.png
21299         scale 85
21300
21301 \end_inset
21302
21303  eingefügt werden.
21304 \end_layout
21305
21306 \begin_layout Subsection
21307 Mathematische Symbole
21308 \begin_inset CommandInset label
21309 LatexCommand label
21310 name "sub:Mathematische-Symbole"
21311
21312 \end_inset
21313
21314
21315 \begin_inset Index idx
21316 status collapsed
21317
21318 \begin_layout Plain Layout
21319 Symbole ! mathematische
21320 \end_layout
21321
21322 \end_inset
21323
21324
21325 \end_layout
21326
21327 \begin_layout Standard
21328 \begin_inset space \hfill{}
21329 \end_inset
21330
21331
21332 \begin_inset Tabular
21333 <lyxtabular version="3" rows="10" columns="2">
21334 <features rotate="0" tabularvalignment="middle">
21335 <column alignment="center" valignment="top" width="0pt">
21336 <column alignment="center" valignment="top" width="0pt">
21337 <row>
21338 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
21339 \begin_inset Text
21340
21341 \begin_layout Plain Layout
21342 Befehl
21343 \end_layout
21344
21345 \end_inset
21346 </cell>
21347 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
21348 \begin_inset Text
21349
21350 \begin_layout Plain Layout
21351 Ergebnis
21352 \end_layout
21353
21354 \end_inset
21355 </cell>
21356 </row>
21357 <row>
21358 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21359 \begin_inset Text
21360
21361 \begin_layout Plain Layout
21362
21363 \backslash
21364 neg
21365 \end_layout
21366
21367 \end_inset
21368 </cell>
21369 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21370 \begin_inset Text
21371
21372 \begin_layout Plain Layout
21373 \begin_inset Formula $\neg$
21374 \end_inset
21375
21376
21377 \end_layout
21378
21379 \end_inset
21380 </cell>
21381 </row>
21382 <row>
21383 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21384 \begin_inset Text
21385
21386 \begin_layout Plain Layout
21387
21388 \backslash
21389 Im
21390 \end_layout
21391
21392 \end_inset
21393 </cell>
21394 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21395 \begin_inset Text
21396
21397 \begin_layout Plain Layout
21398 \begin_inset Formula $\Im$
21399 \end_inset
21400
21401
21402 \end_layout
21403
21404 \end_inset
21405 </cell>
21406 </row>
21407 <row>
21408 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21409 \begin_inset Text
21410
21411 \begin_layout Plain Layout
21412
21413 \backslash
21414 Re
21415 \end_layout
21416
21417 \end_inset
21418 </cell>
21419 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21420 \begin_inset Text
21421
21422 \begin_layout Plain Layout
21423 \begin_inset Formula $\Re$
21424 \end_inset
21425
21426
21427 \end_layout
21428
21429 \end_inset
21430 </cell>
21431 </row>
21432 <row>
21433 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21434 \begin_inset Text
21435
21436 \begin_layout Plain Layout
21437
21438 \backslash
21439 aleph
21440 \end_layout
21441
21442 \end_inset
21443 </cell>
21444 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21445 \begin_inset Text
21446
21447 \begin_layout Plain Layout
21448 \begin_inset Formula $\aleph$
21449 \end_inset
21450
21451
21452 \end_layout
21453
21454 \end_inset
21455 </cell>
21456 </row>
21457 <row>
21458 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21459 \begin_inset Text
21460
21461 \begin_layout Plain Layout
21462
21463 \backslash
21464 partial
21465 \end_layout
21466
21467 \end_inset
21468 </cell>
21469 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21470 \begin_inset Text
21471
21472 \begin_layout Plain Layout
21473 \begin_inset Formula $\partial$
21474 \end_inset
21475
21476
21477 \end_layout
21478
21479 \end_inset
21480 </cell>
21481 </row>
21482 <row>
21483 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21484 \begin_inset Text
21485
21486 \begin_layout Plain Layout
21487
21488 \backslash
21489 infty
21490 \end_layout
21491
21492 \end_inset
21493 </cell>
21494 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21495 \begin_inset Text
21496
21497 \begin_layout Plain Layout
21498 \begin_inset Formula $\infty$
21499 \end_inset
21500
21501
21502 \end_layout
21503
21504 \end_inset
21505 </cell>
21506 </row>
21507 <row>
21508 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
21509 \begin_inset Text
21510
21511 \begin_layout Plain Layout
21512
21513 \backslash
21514 wp
21515 \end_layout
21516
21517 \end_inset
21518 </cell>
21519 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
21520 \begin_inset Text
21521
21522 \begin_layout Plain Layout
21523 \begin_inset Formula $\wp$
21524 \end_inset
21525
21526
21527 \end_layout
21528
21529 \end_inset
21530 </cell>
21531 </row>
21532 <row>
21533 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
21534 \begin_inset Text
21535
21536 \begin_layout Plain Layout
21537
21538 \backslash
21539 imath
21540 \end_layout
21541
21542 \end_inset
21543 </cell>
21544 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
21545 \begin_inset Text
21546
21547 \begin_layout Plain Layout
21548 \begin_inset Formula $\imath$
21549 \end_inset
21550
21551
21552 \end_layout
21553
21554 \end_inset
21555 </cell>
21556 </row>
21557 <row>
21558 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
21559 \begin_inset Text
21560
21561 \begin_layout Plain Layout
21562
21563 \backslash
21564 jmath
21565 \end_layout
21566
21567 \end_inset
21568 </cell>
21569 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
21570 \begin_inset Text
21571
21572 \begin_layout Plain Layout
21573 \begin_inset Formula $\jmath$
21574 \end_inset
21575
21576
21577 \end_layout
21578
21579 \end_inset
21580 </cell>
21581 </row>
21582 </lyxtabular>
21583
21584 \end_inset
21585
21586
21587 \begin_inset space \hfill{}
21588 \end_inset
21589
21590
21591 \begin_inset Tabular
21592 <lyxtabular version="3" rows="10" columns="2">
21593 <features rotate="0" tabularvalignment="middle">
21594 <column alignment="center" valignment="top" width="0pt">
21595 <column alignment="center" valignment="top" width="0pt">
21596 <row>
21597 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
21598 \begin_inset Text
21599
21600 \begin_layout Plain Layout
21601 Befehl
21602 \end_layout
21603
21604 \end_inset
21605 </cell>
21606 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
21607 \begin_inset Text
21608
21609 \begin_layout Plain Layout
21610 Ergebnis
21611 \begin_inset Note Note
21612 status collapsed
21613
21614 \begin_layout Plain Layout
21615
21616 \series bold
21617
21618 \backslash
21619 raisebox
21620 \series default
21621  dient nur als Abstandhalter.
21622 \end_layout
21623
21624 \end_inset
21625
21626
21627 \end_layout
21628
21629 \end_inset
21630 </cell>
21631 </row>
21632 <row>
21633 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21634 \begin_inset Text
21635
21636 \begin_layout Plain Layout
21637
21638 \backslash
21639 forall
21640 \end_layout
21641
21642 \end_inset
21643 </cell>
21644 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21645 \begin_inset Text
21646
21647 \begin_layout Plain Layout
21648 \begin_inset Formula $\forall$
21649 \end_inset
21650
21651
21652 \end_layout
21653
21654 \end_inset
21655 </cell>
21656 </row>
21657 <row>
21658 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21659 \begin_inset Text
21660
21661 \begin_layout Plain Layout
21662
21663 \backslash
21664 exists
21665 \end_layout
21666
21667 \end_inset
21668 </cell>
21669 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21670 \begin_inset Text
21671
21672 \begin_layout Plain Layout
21673 \begin_inset Formula $\exists$
21674 \end_inset
21675
21676
21677 \end_layout
21678
21679 \end_inset
21680 </cell>
21681 </row>
21682 <row>
21683 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21684 \begin_inset Text
21685
21686 \begin_layout Plain Layout
21687
21688 \backslash
21689 nexists
21690 \end_layout
21691
21692 \end_inset
21693 </cell>
21694 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21695 \begin_inset Text
21696
21697 \begin_layout Plain Layout
21698 \begin_inset Formula $\nexists$
21699 \end_inset
21700
21701
21702 \end_layout
21703
21704 \end_inset
21705 </cell>
21706 </row>
21707 <row>
21708 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21709 \begin_inset Text
21710
21711 \begin_layout Plain Layout
21712
21713 \backslash
21714 emptyset
21715 \end_layout
21716
21717 \end_inset
21718 </cell>
21719 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21720 \begin_inset Text
21721
21722 \begin_layout Plain Layout
21723 \begin_inset Formula $\emptyset$
21724 \end_inset
21725
21726
21727 \end_layout
21728
21729 \end_inset
21730 </cell>
21731 </row>
21732 <row>
21733 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21734 \begin_inset Text
21735
21736 \begin_layout Plain Layout
21737
21738 \backslash
21739 varnothing
21740 \end_layout
21741
21742 \end_inset
21743 </cell>
21744 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21745 \begin_inset Text
21746
21747 \begin_layout Plain Layout
21748 \begin_inset Formula $\varnothing$
21749 \end_inset
21750
21751
21752 \end_layout
21753
21754 \end_inset
21755 </cell>
21756 </row>
21757 <row>
21758 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21759 \begin_inset Text
21760
21761 \begin_layout Plain Layout
21762
21763 \backslash
21764 dag
21765 \end_layout
21766
21767 \end_inset
21768 </cell>
21769 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21770 \begin_inset Text
21771
21772 \begin_layout Plain Layout
21773 \begin_inset Formula $\dag$
21774 \end_inset
21775
21776
21777 \end_layout
21778
21779 \end_inset
21780 </cell>
21781 </row>
21782 <row>
21783 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
21784 \begin_inset Text
21785
21786 \begin_layout Plain Layout
21787
21788 \backslash
21789 ddag
21790 \end_layout
21791
21792 \end_inset
21793 </cell>
21794 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
21795 \begin_inset Text
21796
21797 \begin_layout Plain Layout
21798 \begin_inset Formula $\ddag$
21799 \end_inset
21800
21801
21802 \end_layout
21803
21804 \end_inset
21805 </cell>
21806 </row>
21807 <row>
21808 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
21809 \begin_inset Text
21810
21811 \begin_layout Plain Layout
21812
21813 \backslash
21814 complement
21815 \end_layout
21816
21817 \end_inset
21818 </cell>
21819 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
21820 \begin_inset Text
21821
21822 \begin_layout Plain Layout
21823 \begin_inset ERT
21824 status collapsed
21825
21826 \begin_layout Plain Layout
21827
21828
21829 \backslash
21830 raisebox{-0.8mm}{
21831 \end_layout
21832
21833 \end_inset
21834
21835
21836 \begin_inset Formula $\complement$
21837 \end_inset
21838
21839
21840 \begin_inset ERT
21841 status collapsed
21842
21843 \begin_layout Plain Layout
21844
21845 }
21846 \end_layout
21847
21848 \end_inset
21849
21850
21851 \end_layout
21852
21853 \end_inset
21854 </cell>
21855 </row>
21856 <row>
21857 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
21858 \begin_inset Text
21859
21860 \begin_layout Plain Layout
21861
21862 \backslash
21863 Bbbk
21864 \end_layout
21865
21866 \end_inset
21867 </cell>
21868 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
21869 \begin_inset Text
21870
21871 \begin_layout Plain Layout
21872 \begin_inset Formula $\Bbbk$
21873 \end_inset
21874
21875
21876 \end_layout
21877
21878 \end_inset
21879 </cell>
21880 </row>
21881 </lyxtabular>
21882
21883 \end_inset
21884
21885
21886 \begin_inset space \hfill{}
21887 \end_inset
21888
21889
21890 \begin_inset Tabular
21891 <lyxtabular version="3" rows="10" columns="2">
21892 <features rotate="0" tabularvalignment="middle">
21893 <column alignment="center" valignment="top" width="0pt">
21894 <column alignment="center" valignment="top" width="0pt">
21895 <row>
21896 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
21897 \begin_inset Text
21898
21899 \begin_layout Plain Layout
21900 Befehl
21901 \end_layout
21902
21903 \end_inset
21904 </cell>
21905 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
21906 \begin_inset Text
21907
21908 \begin_layout Plain Layout
21909 Ergebnis
21910 \end_layout
21911
21912 \end_inset
21913 </cell>
21914 </row>
21915 <row>
21916 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21917 \begin_inset Text
21918
21919 \begin_layout Plain Layout
21920
21921 \backslash
21922 prime
21923 \end_layout
21924
21925 \end_inset
21926 </cell>
21927 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21928 \begin_inset Text
21929
21930 \begin_layout Plain Layout
21931 \begin_inset Formula $\prime$
21932 \end_inset
21933
21934
21935 \end_layout
21936
21937 \end_inset
21938 </cell>
21939 </row>
21940 <row>
21941 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21942 \begin_inset Text
21943
21944 \begin_layout Plain Layout
21945
21946 \backslash
21947 backprime
21948 \end_layout
21949
21950 \end_inset
21951 </cell>
21952 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21953 \begin_inset Text
21954
21955 \begin_layout Plain Layout
21956 \begin_inset Formula $\backprime$
21957 \end_inset
21958
21959
21960 \end_layout
21961
21962 \end_inset
21963 </cell>
21964 </row>
21965 <row>
21966 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21967 \begin_inset Text
21968
21969 \begin_layout Plain Layout
21970
21971 \backslash
21972 mho
21973 \end_layout
21974
21975 \end_inset
21976 </cell>
21977 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21978 \begin_inset Text
21979
21980 \begin_layout Plain Layout
21981 \begin_inset Formula $\mho$
21982 \end_inset
21983
21984
21985 \end_layout
21986
21987 \end_inset
21988 </cell>
21989 </row>
21990 <row>
21991 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21992 \begin_inset Text
21993
21994 \begin_layout Plain Layout
21995
21996 \backslash
21997 triangle
21998 \end_layout
21999
22000 \end_inset
22001 </cell>
22002 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22003 \begin_inset Text
22004
22005 \begin_layout Plain Layout
22006 \begin_inset Formula $\triangle$
22007 \end_inset
22008
22009
22010 \end_layout
22011
22012 \end_inset
22013 </cell>
22014 </row>
22015 <row>
22016 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22017 \begin_inset Text
22018
22019 \begin_layout Plain Layout
22020
22021 \backslash
22022 angle
22023 \end_layout
22024
22025 \end_inset
22026 </cell>
22027 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22028 \begin_inset Text
22029
22030 \begin_layout Plain Layout
22031 \begin_inset Formula $\angle$
22032 \end_inset
22033
22034
22035 \end_layout
22036
22037 \end_inset
22038 </cell>
22039 </row>
22040 <row>
22041 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22042 \begin_inset Text
22043
22044 \begin_layout Plain Layout
22045
22046 \backslash
22047 measuredangle
22048 \end_layout
22049
22050 \end_inset
22051 </cell>
22052 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22053 \begin_inset Text
22054
22055 \begin_layout Plain Layout
22056 \begin_inset Formula $\measuredangle$
22057 \end_inset
22058
22059
22060 \end_layout
22061
22062 \end_inset
22063 </cell>
22064 </row>
22065 <row>
22066 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
22067 \begin_inset Text
22068
22069 \begin_layout Plain Layout
22070
22071 \backslash
22072 sphericalangle
22073 \end_layout
22074
22075 \end_inset
22076 </cell>
22077 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
22078 \begin_inset Text
22079
22080 \begin_layout Plain Layout
22081 \begin_inset Formula $\sphericalangle$
22082 \end_inset
22083
22084
22085 \end_layout
22086
22087 \end_inset
22088 </cell>
22089 </row>
22090 <row>
22091 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
22092 \begin_inset Text
22093
22094 \begin_layout Plain Layout
22095
22096 \backslash
22097 top
22098 \end_layout
22099
22100 \end_inset
22101 </cell>
22102 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
22103 \begin_inset Text
22104
22105 \begin_layout Plain Layout
22106 \begin_inset Formula $\top$
22107 \end_inset
22108
22109
22110 \end_layout
22111
22112 \end_inset
22113 </cell>
22114 </row>
22115 <row>
22116 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
22117 \begin_inset Text
22118
22119 \begin_layout Plain Layout
22120
22121 \backslash
22122 bot
22123 \end_layout
22124
22125 \end_inset
22126 </cell>
22127 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
22128 \begin_inset Text
22129
22130 \begin_layout Plain Layout
22131 \begin_inset Formula $\bot$
22132 \end_inset
22133
22134
22135 \end_layout
22136
22137 \end_inset
22138 </cell>
22139 </row>
22140 </lyxtabular>
22141
22142 \end_inset
22143
22144
22145 \begin_inset space \hfill{}
22146 \end_inset
22147
22148
22149 \end_layout
22150
22151 \begin_layout Subsection
22152 Sonstige Symbole
22153 \begin_inset CommandInset label
22154 LatexCommand label
22155 name "sub:Sonstige-Symbole"
22156
22157 \end_inset
22158
22159
22160 \begin_inset Index idx
22161 status collapsed
22162
22163 \begin_layout Plain Layout
22164 Symbole ! sonstige
22165 \end_layout
22166
22167 \end_inset
22168
22169
22170 \end_layout
22171
22172 \begin_layout Standard
22173 \begin_inset VSpace -7mm
22174 \end_inset
22175
22176
22177 \end_layout
22178
22179 \begin_layout Standard
22180 \noindent
22181 \align center
22182 \begin_inset Tabular
22183 <lyxtabular version="3" rows="10" columns="2">
22184 <features rotate="0" tabularvalignment="middle">
22185 <column alignment="center" valignment="top" width="0pt">
22186 <column alignment="center" valignment="top" width="0pt">
22187 <row>
22188 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
22189 \begin_inset Text
22190
22191 \begin_layout Plain Layout
22192 Befehl
22193 \end_layout
22194
22195 \end_inset
22196 </cell>
22197 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
22198 \begin_inset Text
22199
22200 \begin_layout Plain Layout
22201 Ergebnis
22202 \end_layout
22203
22204 \end_inset
22205 </cell>
22206 </row>
22207 <row>
22208 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22209 \begin_inset Text
22210
22211 \begin_layout Plain Layout
22212
22213 \backslash
22214 flat
22215 \end_layout
22216
22217 \end_inset
22218 </cell>
22219 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22220 \begin_inset Text
22221
22222 \begin_layout Plain Layout
22223 \begin_inset Formula $\flat$
22224 \end_inset
22225
22226
22227 \end_layout
22228
22229 \end_inset
22230 </cell>
22231 </row>
22232 <row>
22233 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22234 \begin_inset Text
22235
22236 \begin_layout Plain Layout
22237
22238 \backslash
22239 natural
22240 \end_layout
22241
22242 \end_inset
22243 </cell>
22244 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22245 \begin_inset Text
22246
22247 \begin_layout Plain Layout
22248 \begin_inset Formula $\natural$
22249 \end_inset
22250
22251
22252 \end_layout
22253
22254 \end_inset
22255 </cell>
22256 </row>
22257 <row>
22258 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22259 \begin_inset Text
22260
22261 \begin_layout Plain Layout
22262
22263 \backslash
22264 sharp
22265 \end_layout
22266
22267 \end_inset
22268 </cell>
22269 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22270 \begin_inset Text
22271
22272 \begin_layout Plain Layout
22273 \begin_inset Formula $\sharp$
22274 \end_inset
22275
22276
22277 \end_layout
22278
22279 \end_inset
22280 </cell>
22281 </row>
22282 <row>
22283 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
22284 \begin_inset Text
22285
22286 \begin_layout Plain Layout
22287
22288 \backslash
22289 surd
22290 \end_layout
22291
22292 \end_inset
22293 </cell>
22294 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
22295 \begin_inset Text
22296
22297 \begin_layout Plain Layout
22298 \begin_inset Formula $\surd$
22299 \end_inset
22300
22301
22302 \end_layout
22303
22304 \end_inset
22305 </cell>
22306 </row>
22307 <row>
22308 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
22309 \begin_inset Text
22310
22311 \begin_layout Plain Layout
22312
22313 \backslash
22314 checkmark
22315 \end_layout
22316
22317 \end_inset
22318 </cell>
22319 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
22320 \begin_inset Text
22321
22322 \begin_layout Plain Layout
22323 \begin_inset Formula $\checkmark$
22324 \end_inset
22325
22326
22327 \end_layout
22328
22329 \end_inset
22330 </cell>
22331 </row>
22332 <row>
22333 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
22334 \begin_inset Text
22335
22336 \begin_layout Plain Layout
22337
22338 \backslash
22339 yen
22340 \end_layout
22341
22342 \end_inset
22343 </cell>
22344 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
22345 \begin_inset Text
22346
22347 \begin_layout Plain Layout
22348 \begin_inset Formula $\yen$
22349 \end_inset
22350
22351
22352 \end_layout
22353
22354 \end_inset
22355 </cell>
22356 </row>
22357 <row>
22358 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
22359 \begin_inset Text
22360
22361 \begin_layout Plain Layout
22362
22363 \backslash
22364 pounds
22365 \end_layout
22366
22367 \end_inset
22368 </cell>
22369 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
22370 \begin_inset Text
22371
22372 \begin_layout Plain Layout
22373 \begin_inset Formula $\pounds$
22374 \end_inset
22375
22376
22377 \end_layout
22378
22379 \end_inset
22380 </cell>
22381 </row>
22382 <row>
22383 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
22384 \begin_inset Text
22385
22386 \begin_layout Plain Layout
22387 $
22388 \end_layout
22389
22390 \end_inset
22391 </cell>
22392 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
22393 \begin_inset Text
22394
22395 \begin_layout Plain Layout
22396 \begin_inset Formula $\$$
22397 \end_inset
22398
22399
22400 \end_layout
22401
22402 \end_inset
22403 </cell>
22404 </row>
22405 <row>
22406 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
22407 \begin_inset Text
22408
22409 \begin_layout Plain Layout
22410 §
22411 \end_layout
22412
22413 \end_inset
22414 </cell>
22415 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
22416 \begin_inset Text
22417
22418 \begin_layout Plain Layout
22419 \begin_inset Formula $§$
22420 \end_inset
22421
22422
22423 \end_layout
22424
22425 \end_inset
22426 </cell>
22427 </row>
22428 </lyxtabular>
22429
22430 \end_inset
22431
22432
22433 \begin_inset Tabular
22434 <lyxtabular version="3" rows="10" columns="2">
22435 <features rotate="0" tabularvalignment="middle">
22436 <column alignment="center" valignment="top">
22437 <column alignment="center" valignment="top">
22438 <row>
22439 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
22440 \begin_inset Text
22441
22442 \begin_layout Plain Layout
22443 Befehl
22444 \end_layout
22445
22446 \end_inset
22447 </cell>
22448 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
22449 \begin_inset Text
22450
22451 \begin_layout Plain Layout
22452 Ergebnis
22453 \end_layout
22454
22455 \end_inset
22456 </cell>
22457 </row>
22458 <row>
22459 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22460 \begin_inset Text
22461
22462 \begin_layout Plain Layout
22463
22464 \backslash
22465 hbar
22466 \end_layout
22467
22468 \end_inset
22469 </cell>
22470 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22471 \begin_inset Text
22472
22473 \begin_layout Plain Layout
22474 \begin_inset Formula $\hbar$
22475 \end_inset
22476
22477
22478 \end_layout
22479
22480 \end_inset
22481 </cell>
22482 </row>
22483 <row>
22484 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22485 \begin_inset Text
22486
22487 \begin_layout Plain Layout
22488
22489 \backslash
22490 hslash
22491 \end_layout
22492
22493 \end_inset
22494 </cell>
22495 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22496 \begin_inset Text
22497
22498 \begin_layout Plain Layout
22499 \begin_inset Formula $\hslash$
22500 \end_inset
22501
22502
22503 \end_layout
22504
22505 \end_inset
22506 </cell>
22507 </row>
22508 <row>
22509 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22510 \begin_inset Text
22511
22512 \begin_layout Plain Layout
22513
22514 \backslash
22515 clubsuit
22516 \end_layout
22517
22518 \end_inset
22519 </cell>
22520 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22521 \begin_inset Text
22522
22523 \begin_layout Plain Layout
22524 \begin_inset Formula $\clubsuit$
22525 \end_inset
22526
22527
22528 \end_layout
22529
22530 \end_inset
22531 </cell>
22532 </row>
22533 <row>
22534 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22535 \begin_inset Text
22536
22537 \begin_layout Plain Layout
22538
22539 \backslash
22540 spadesuit
22541 \end_layout
22542
22543 \end_inset
22544 </cell>
22545 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22546 \begin_inset Text
22547
22548 \begin_layout Plain Layout
22549 \begin_inset Formula $\spadesuit$
22550 \end_inset
22551
22552
22553 \end_layout
22554
22555 \end_inset
22556 </cell>
22557 </row>
22558 <row>
22559 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22560 \begin_inset Text
22561
22562 \begin_layout Plain Layout
22563
22564 \backslash
22565 bigstar
22566 \end_layout
22567
22568 \end_inset
22569 </cell>
22570 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22571 \begin_inset Text
22572
22573 \begin_layout Plain Layout
22574 \begin_inset Formula $\bigstar$
22575 \end_inset
22576
22577
22578 \end_layout
22579
22580 \end_inset
22581 </cell>
22582 </row>
22583 <row>
22584 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22585 \begin_inset Text
22586
22587 \begin_layout Plain Layout
22588
22589 \backslash
22590 blacklozenge
22591 \end_layout
22592
22593 \end_inset
22594 </cell>
22595 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22596 \begin_inset Text
22597
22598 \begin_layout Plain Layout
22599 \begin_inset Formula $\blacklozenge$
22600 \end_inset
22601
22602
22603 \end_layout
22604
22605 \end_inset
22606 </cell>
22607 </row>
22608 <row>
22609 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22610 \begin_inset Text
22611
22612 \begin_layout Plain Layout
22613
22614 \backslash
22615 blacktriangle
22616 \end_layout
22617
22618 \end_inset
22619 </cell>
22620 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22621 \begin_inset Text
22622
22623 \begin_layout Plain Layout
22624 \begin_inset Formula $\blacktriangle$
22625 \end_inset
22626
22627
22628 \end_layout
22629
22630 \end_inset
22631 </cell>
22632 </row>
22633 <row>
22634 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22635 \begin_inset Text
22636
22637 \begin_layout Plain Layout
22638
22639 \backslash
22640 blacktiangledown
22641 \end_layout
22642
22643 \end_inset
22644 </cell>
22645 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22646 \begin_inset Text
22647
22648 \begin_layout Plain Layout
22649 \begin_inset Formula $\blacktriangledown$
22650 \end_inset
22651
22652
22653 \end_layout
22654
22655 \end_inset
22656 </cell>
22657 </row>
22658 <row>
22659 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
22660 \begin_inset Text
22661
22662 \begin_layout Plain Layout
22663
22664 \backslash
22665 bullet
22666 \end_layout
22667
22668 \end_inset
22669 </cell>
22670 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
22671 \begin_inset Text
22672
22673 \begin_layout Plain Layout
22674 \begin_inset Formula $\bullet$
22675 \end_inset
22676
22677
22678 \end_layout
22679
22680 \end_inset
22681 </cell>
22682 </row>
22683 </lyxtabular>
22684
22685 \end_inset
22686
22687
22688 \begin_inset Tabular
22689 <lyxtabular version="3" rows="10" columns="2">
22690 <features rotate="0" tabularvalignment="middle">
22691 <column alignment="center" valignment="top" width="0pt">
22692 <column alignment="center" valignment="top" width="0pt">
22693 <row>
22694 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
22695 \begin_inset Text
22696
22697 \begin_layout Plain Layout
22698 Befehl
22699 \end_layout
22700
22701 \end_inset
22702 </cell>
22703 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
22704 \begin_inset Text
22705
22706 \begin_layout Plain Layout
22707 Ergebnis
22708 \end_layout
22709
22710 \end_inset
22711 </cell>
22712 </row>
22713 <row>
22714 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22715 \begin_inset Text
22716
22717 \begin_layout Plain Layout
22718
22719 \backslash
22720 diamondsuit
22721 \end_layout
22722
22723 \end_inset
22724 </cell>
22725 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22726 \begin_inset Text
22727
22728 \begin_layout Plain Layout
22729 \begin_inset Formula $\diamondsuit$
22730 \end_inset
22731
22732
22733 \end_layout
22734
22735 \end_inset
22736 </cell>
22737 </row>
22738 <row>
22739 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22740 \begin_inset Text
22741
22742 \begin_layout Plain Layout
22743
22744 \backslash
22745 Diamond
22746 \end_layout
22747
22748 \end_inset
22749 </cell>
22750 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22751 \begin_inset Text
22752
22753 \begin_layout Plain Layout
22754 \begin_inset Formula $\Diamond$
22755 \end_inset
22756
22757
22758 \end_layout
22759
22760 \end_inset
22761 </cell>
22762 </row>
22763 <row>
22764 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22765 \begin_inset Text
22766
22767 \begin_layout Plain Layout
22768
22769 \backslash
22770 heartsuit
22771 \end_layout
22772
22773 \end_inset
22774 </cell>
22775 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22776 \begin_inset Text
22777
22778 \begin_layout Plain Layout
22779 \begin_inset Formula $\heartsuit$
22780 \end_inset
22781
22782
22783 \end_layout
22784
22785 \end_inset
22786 </cell>
22787 </row>
22788 <row>
22789 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
22790 \begin_inset Text
22791
22792 \begin_layout Plain Layout
22793
22794 \backslash
22795 P
22796 \end_layout
22797
22798 \end_inset
22799 </cell>
22800 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
22801 \begin_inset Text
22802
22803 \begin_layout Plain Layout
22804 \begin_inset Formula $\P$
22805 \end_inset
22806
22807
22808 \end_layout
22809
22810 \end_inset
22811 </cell>
22812 </row>
22813 <row>
22814 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
22815 \begin_inset Text
22816
22817 \begin_layout Plain Layout
22818
22819 \backslash
22820 copyright
22821 \end_layout
22822
22823 \end_inset
22824 </cell>
22825 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
22826 \begin_inset Text
22827
22828 \begin_layout Plain Layout
22829 \begin_inset Formula $\copyright$
22830 \end_inset
22831
22832
22833 \end_layout
22834
22835 \end_inset
22836 </cell>
22837 </row>
22838 <row>
22839 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
22840 \begin_inset Text
22841
22842 \begin_layout Plain Layout
22843
22844 \backslash
22845 circledR
22846 \end_layout
22847
22848 \end_inset
22849 </cell>
22850 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
22851 \begin_inset Text
22852
22853 \begin_layout Plain Layout
22854 \begin_inset Formula $\circledR$
22855 \end_inset
22856
22857
22858 \end_layout
22859
22860 \end_inset
22861 </cell>
22862 </row>
22863 <row>
22864 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
22865 \begin_inset Text
22866
22867 \begin_layout Plain Layout
22868
22869 \backslash
22870 maltese
22871 \end_layout
22872
22873 \end_inset
22874 </cell>
22875 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
22876 \begin_inset Text
22877
22878 \begin_layout Plain Layout
22879 \begin_inset Formula $\maltese$
22880 \end_inset
22881
22882
22883 \end_layout
22884
22885 \end_inset
22886 </cell>
22887 </row>
22888 <row>
22889 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
22890 \begin_inset Text
22891
22892 \begin_layout Plain Layout
22893
22894 \backslash
22895 diagup
22896 \end_layout
22897
22898 \end_inset
22899 </cell>
22900 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
22901 \begin_inset Text
22902
22903 \begin_layout Plain Layout
22904 \begin_inset Formula $\diagup$
22905 \end_inset
22906
22907
22908 \end_layout
22909
22910 \end_inset
22911 </cell>
22912 </row>
22913 <row>
22914 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
22915 \begin_inset Text
22916
22917 \begin_layout Plain Layout
22918
22919 \backslash
22920 diagdown
22921 \end_layout
22922
22923 \end_inset
22924 </cell>
22925 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
22926 \begin_inset Text
22927
22928 \begin_layout Plain Layout
22929 \begin_inset Formula $\diagdown$
22930 \end_inset
22931
22932
22933 \end_layout
22934
22935 \end_inset
22936 </cell>
22937 </row>
22938 </lyxtabular>
22939
22940 \end_inset
22941
22942
22943 \end_layout
22944
22945 \begin_layout Standard
22946 \begin_inset VSpace medskip
22947 \end_inset
22948
22949 Weitere Symbole sind in 
22950 \begin_inset CommandInset ref
22951 LatexCommand ref
22952 reference "sub:Sonstige-Sonderzeichen"
22953
22954 \end_inset
22955
22956  aufgelistet.
22957 \end_layout
22958
22959 \begin_layout Standard
22960 Einige Symbole können in unterschiedlicher Größe dargestellt werden, siehe
22961  
22962 \begin_inset CommandInset ref
22963 LatexCommand ref
22964 reference "sub:Schriftgrößen"
22965
22966 \end_inset
22967
22968 .
22969 \end_layout
22970
22971 \begin_layout Subsection
22972 Das Euro-Symbol €
22973 \begin_inset Index idx
22974 status collapsed
22975
22976 \begin_layout Plain Layout
22977 Symbole ! Euro-Symbol
22978 \end_layout
22979
22980 \end_inset
22981
22982
22983 \begin_inset Index idx
22984 status collapsed
22985
22986 \begin_layout Plain Layout
22987
22988 \backslash
22989 @
22990 \begin_inset ERT
22991 status collapsed
22992
22993 \begin_layout Plain Layout
22994
22995
22996 \backslash
22997 officialeuro
22998 \end_layout
22999
23000 \end_inset
23001
23002
23003 \end_layout
23004
23005 \end_inset
23006
23007
23008 \end_layout
23009
23010 \begin_layout Standard
23011 Wenn man in einer Formel das Euro-Symbol verwenden will, muss man das LaTeX-Pake
23012
23013 \series bold
23014 eurosym
23015 \series default
23016
23017 \begin_inset Index idx
23018 status collapsed
23019
23020 \begin_layout Plain Layout
23021 Pakete ! eurosym
23022 \end_layout
23023
23024 \end_inset
23025
23026  installieren und dieses mit der LaTeX-Vorspannzeile
23027 \end_layout
23028
23029 \begin_layout Standard
23030
23031 \series bold
23032
23033 \backslash
23034 usepackage[gennarrow]{eurosym}
23035 \end_layout
23036
23037 \begin_layout Standard
23038 aktivieren.
23039  Das Euro-Symbol kann man nun mit dem Befehl 
23040 \series bold
23041
23042 \backslash
23043 euro
23044 \series default
23045
23046 \begin_inset Index idx
23047 status collapsed
23048
23049 \begin_layout Plain Layout
23050 Befehle ! E ! 
23051 \backslash
23052 euro
23053 \end_layout
23054
23055 \end_inset
23056
23057  aufrufen.
23058 \end_layout
23059
23060 \begin_layout Standard
23061 Das Euro-Symbol kann man direkt über die Tastatur in mathematischen Text
23062  eingeben, ohne 
23063 \series bold
23064 eurosym
23065 \series default
23066  installiert zu haben.
23067  Ist 
23068 \series bold
23069 eurosym
23070 \series default
23071  installiert, kann man 
23072 \series bold
23073
23074 \backslash
23075 euro
23076 \series default
23077  auch im TeX-Modus eingeben.
23078  Das offizielle Währungssymbol erhält man dann über den Befehl 
23079 \series bold
23080
23081 \backslash
23082 officialeuro
23083 \series default
23084
23085 \begin_inset Index idx
23086 status collapsed
23087
23088 \begin_layout Plain Layout
23089 Befehle ! O ! 
23090 \backslash
23091 officialeuro
23092 \end_layout
23093
23094 \end_inset
23095
23096 , der nur im TeX-Modus verfügbar ist.
23097 \end_layout
23098
23099 \begin_layout Standard
23100 \begin_inset ERT
23101 status collapsed
23102
23103 \begin_layout Plain Layout
23104
23105
23106 \backslash
23107 ifeurosym 
23108 \end_layout
23109
23110 \end_inset
23111
23112
23113 \begin_inset Note Note
23114 status open
23115
23116 \begin_layout Plain Layout
23117 Die folgende Tabelle erscheint nur im Ausdruck wenn das LaTeX-Paket 
23118 \series bold
23119 eurosym
23120 \series default
23121  installiert ist:
23122 \end_layout
23123
23124 \end_inset
23125
23126
23127 \end_layout
23128
23129 \begin_layout Standard
23130 Eine Übersicht der verschiedenen Euro-Symbole:
23131 \end_layout
23132
23133 \begin_layout Standard
23134 \align center
23135 \begin_inset Tabular
23136 <lyxtabular version="3" rows="4" columns="3">
23137 <features rotate="0" tabularvalignment="middle">
23138 <column alignment="center" valignment="top" width="0pt">
23139 <column alignment="center" valignment="top" width="0pt">
23140 <column alignment="center" valignment="top" width="0pt">
23141 <row>
23142 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" usebox="none">
23143 \begin_inset Text
23144
23145 \begin_layout Plain Layout
23146
23147 \end_layout
23148
23149 \end_inset
23150 </cell>
23151 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
23152 \begin_inset Text
23153
23154 \begin_layout Plain Layout
23155 Befehl 
23156 \end_layout
23157
23158 \end_inset
23159 </cell>
23160 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
23161 \begin_inset Text
23162
23163 \begin_layout Plain Layout
23164 Ergebnis
23165 \end_layout
23166
23167 \end_inset
23168 </cell>
23169 </row>
23170 <row>
23171 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23172 \begin_inset Text
23173
23174 \begin_layout Plain Layout
23175 Formel
23176 \end_layout
23177
23178 \end_inset
23179 </cell>
23180 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23181 \begin_inset Text
23182
23183 \begin_layout Plain Layout
23184
23185 \backslash
23186 euro
23187 \end_layout
23188
23189 \end_inset
23190 </cell>
23191 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23192 \begin_inset Text
23193
23194 \begin_layout Plain Layout
23195 \begin_inset Formula $\euro$
23196 \end_inset
23197
23198
23199 \end_layout
23200
23201 \end_inset
23202 </cell>
23203 </row>
23204 <row>
23205 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23206 \begin_inset Text
23207
23208 \begin_layout Plain Layout
23209 mathematischer Text
23210 \end_layout
23211
23212 \end_inset
23213 </cell>
23214 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23215 \begin_inset Text
23216
23217 \begin_layout Plain Layout
23218
23219 \end_layout
23220
23221 \end_inset
23222 </cell>
23223 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23224 \begin_inset Text
23225
23226 \begin_layout Plain Layout
23227 \begin_inset Formula $\mbox{€}$
23228 \end_inset
23229
23230
23231 \end_layout
23232
23233 \end_inset
23234 </cell>
23235 </row>
23236 <row>
23237 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
23238 \begin_inset Text
23239
23240 \begin_layout Plain Layout
23241 TeX-Modus
23242 \end_layout
23243
23244 \end_inset
23245 </cell>
23246 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
23247 \begin_inset Text
23248
23249 \begin_layout Plain Layout
23250
23251 \backslash
23252 officialeuro
23253 \end_layout
23254
23255 \end_inset
23256 </cell>
23257 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
23258 \begin_inset Text
23259
23260 \begin_layout Plain Layout
23261 \begin_inset ERT
23262 status collapsed
23263
23264 \begin_layout Plain Layout
23265
23266
23267 \backslash
23268 officialeuro
23269 \end_layout
23270
23271 \end_inset
23272
23273
23274 \end_layout
23275
23276 \end_inset
23277 </cell>
23278 </row>
23279 </lyxtabular>
23280
23281 \end_inset
23282
23283
23284 \end_layout
23285
23286 \begin_layout Standard
23287 \begin_inset ERT
23288 status collapsed
23289
23290 \begin_layout Plain Layout
23291
23292
23293 \backslash
23294 else 
23295 \end_layout
23296
23297 \end_inset
23298
23299
23300 \begin_inset Note Note
23301 status open
23302
23303 \begin_layout Plain Layout
23304 Folgendes erscheint im Ausdruck wenn das LaTeX-Paket 
23305 \series bold
23306 eurosym
23307 \series default
23308  nicht installiert ist:
23309 \end_layout
23310
23311 \end_inset
23312
23313
23314 \end_layout
23315
23316 \begin_layout Standard
23317 Das LaTeX-Paket 
23318 \series bold
23319 eurosym 
23320 \series default
23321 muss installiert sein, um den Rest dieses Abschnitts im Ausdruck zu sehen.
23322 \end_layout
23323
23324 \begin_layout Standard
23325 \begin_inset ERT
23326 status collapsed
23327
23328 \begin_layout Plain Layout
23329
23330
23331 \backslash
23332 fi 
23333 \end_layout
23334
23335 \end_inset
23336
23337
23338 \end_layout
23339
23340 \begin_layout Section
23341 Relationen
23342 \begin_inset CommandInset label
23343 LatexCommand label
23344 name "sec:Relationen"
23345
23346 \end_inset
23347
23348
23349 \begin_inset Index idx
23350 status collapsed
23351
23352 \begin_layout Plain Layout
23353 Relationen
23354 \end_layout
23355
23356 \end_inset
23357
23358
23359 \begin_inset Index idx
23360 status collapsed
23361
23362 \begin_layout Plain Layout
23363 Vergleiche|see
23364 \begin_inset ERT
23365 status collapsed
23366
23367 \begin_layout Plain Layout
23368
23369 {
23370 \end_layout
23371
23372 \end_inset
23373
23374 Relationen
23375 \begin_inset ERT
23376 status collapsed
23377
23378 \begin_layout Plain Layout
23379
23380 }
23381 \end_layout
23382
23383 \end_inset
23384
23385
23386 \end_layout
23387
23388 \end_inset
23389
23390
23391 \end_layout
23392
23393 \begin_layout Standard
23394 Alle griechischen Buchstaben können auch über den Mathe-Werkzeugleistenknopf
23395  
23396 \begin_inset Graphics
23397         filename ../../images/math/leq.png
23398         scale 85
23399
23400 \end_inset
23401
23402  eingefügt werden.
23403 \end_layout
23404
23405 \begin_layout Standard
23406 \begin_inset space \hfill{}
23407 \end_inset
23408
23409
23410 \begin_inset Tabular
23411 <lyxtabular version="3" rows="17" columns="2">
23412 <features rotate="0" tabularvalignment="middle">
23413 <column alignment="center" valignment="top" width="0pt">
23414 <column alignment="center" valignment="top" width="0pt">
23415 <row>
23416 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
23417 \begin_inset Text
23418
23419 \begin_layout Plain Layout
23420 Befehl
23421 \end_layout
23422
23423 \end_inset
23424 </cell>
23425 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
23426 \begin_inset Text
23427
23428 \begin_layout Plain Layout
23429 Ergebnis
23430 \end_layout
23431
23432 \end_inset
23433 </cell>
23434 </row>
23435 <row>
23436 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23437 \begin_inset Text
23438
23439 \begin_layout Plain Layout
23440 <
23441 \end_layout
23442
23443 \end_inset
23444 </cell>
23445 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23446 \begin_inset Text
23447
23448 \begin_layout Plain Layout
23449 \begin_inset Formula $<$
23450 \end_inset
23451
23452
23453 \end_layout
23454
23455 \end_inset
23456 </cell>
23457 </row>
23458 <row>
23459 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23460 \begin_inset Text
23461
23462 \begin_layout Plain Layout
23463
23464 \backslash
23465 le
23466 \end_layout
23467
23468 \end_inset
23469 </cell>
23470 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23471 \begin_inset Text
23472
23473 \begin_layout Plain Layout
23474 \begin_inset Formula $\le$
23475 \end_inset
23476
23477
23478 \end_layout
23479
23480 \end_inset
23481 </cell>
23482 </row>
23483 <row>
23484 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23485 \begin_inset Text
23486
23487 \begin_layout Plain Layout
23488
23489 \backslash
23490 ll
23491 \end_layout
23492
23493 \end_inset
23494 </cell>
23495 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23496 \begin_inset Text
23497
23498 \begin_layout Plain Layout
23499 \begin_inset Formula $\ll$
23500 \end_inset
23501
23502
23503 \end_layout
23504
23505 \end_inset
23506 </cell>
23507 </row>
23508 <row>
23509 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23510 \begin_inset Text
23511
23512 \begin_layout Plain Layout
23513
23514 \backslash
23515 prec
23516 \end_layout
23517
23518 \end_inset
23519 </cell>
23520 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23521 \begin_inset Text
23522
23523 \begin_layout Plain Layout
23524 \begin_inset Formula $\prec$
23525 \end_inset
23526
23527
23528 \end_layout
23529
23530 \end_inset
23531 </cell>
23532 </row>
23533 <row>
23534 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23535 \begin_inset Text
23536
23537 \begin_layout Plain Layout
23538
23539 \backslash
23540 preceq
23541 \end_layout
23542
23543 \end_inset
23544 </cell>
23545 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23546 \begin_inset Text
23547
23548 \begin_layout Plain Layout
23549 \begin_inset Formula $\preceq$
23550 \end_inset
23551
23552
23553 \end_layout
23554
23555 \end_inset
23556 </cell>
23557 </row>
23558 <row>
23559 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23560 \begin_inset Text
23561
23562 \begin_layout Plain Layout
23563
23564 \backslash
23565 subset
23566 \end_layout
23567
23568 \end_inset
23569 </cell>
23570 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23571 \begin_inset Text
23572
23573 \begin_layout Plain Layout
23574 \begin_inset Formula $\subset$
23575 \end_inset
23576
23577
23578 \end_layout
23579
23580 \end_inset
23581 </cell>
23582 </row>
23583 <row>
23584 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23585 \begin_inset Text
23586
23587 \begin_layout Plain Layout
23588
23589 \backslash
23590 subseteq
23591 \end_layout
23592
23593 \end_inset
23594 </cell>
23595 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23596 \begin_inset Text
23597
23598 \begin_layout Plain Layout
23599 \begin_inset Formula $\subseteq$
23600 \end_inset
23601
23602
23603 \end_layout
23604
23605 \end_inset
23606 </cell>
23607 </row>
23608 <row>
23609 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23610 \begin_inset Text
23611
23612 \begin_layout Plain Layout
23613
23614 \backslash
23615 sqsubseteq
23616 \end_layout
23617
23618 \end_inset
23619 </cell>
23620 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23621 \begin_inset Text
23622
23623 \begin_layout Plain Layout
23624 \begin_inset Formula $\sqsubseteq$
23625 \end_inset
23626
23627
23628 \end_layout
23629
23630 \end_inset
23631 </cell>
23632 </row>
23633 <row>
23634 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23635 \begin_inset Text
23636
23637 \begin_layout Plain Layout
23638
23639 \backslash
23640 in
23641 \end_layout
23642
23643 \end_inset
23644 </cell>
23645 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23646 \begin_inset Text
23647
23648 \begin_layout Plain Layout
23649 \begin_inset Formula $\in$
23650 \end_inset
23651
23652
23653 \end_layout
23654
23655 \end_inset
23656 </cell>
23657 </row>
23658 <row>
23659 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23660 \begin_inset Text
23661
23662 \begin_layout Plain Layout
23663
23664 \backslash
23665 vdash
23666 \end_layout
23667
23668 \end_inset
23669 </cell>
23670 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23671 \begin_inset Text
23672
23673 \begin_layout Plain Layout
23674 \begin_inset Formula $\vdash$
23675 \end_inset
23676
23677
23678 \end_layout
23679
23680 \end_inset
23681 </cell>
23682 </row>
23683 <row>
23684 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23685 \begin_inset Text
23686
23687 \begin_layout Plain Layout
23688
23689 \backslash
23690 smile
23691 \end_layout
23692
23693 \end_inset
23694 </cell>
23695 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23696 \begin_inset Text
23697
23698 \begin_layout Plain Layout
23699 \begin_inset Formula $\smile$
23700 \end_inset
23701
23702
23703 \end_layout
23704
23705 \end_inset
23706 </cell>
23707 </row>
23708 <row>
23709 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23710 \begin_inset Text
23711
23712 \begin_layout Plain Layout
23713
23714 \backslash
23715 lhd
23716 \end_layout
23717
23718 \end_inset
23719 </cell>
23720 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23721 \begin_inset Text
23722
23723 \begin_layout Plain Layout
23724 \begin_inset Formula $\lhd$
23725 \end_inset
23726
23727
23728 \end_layout
23729
23730 \end_inset
23731 </cell>
23732 </row>
23733 <row>
23734 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23735 \begin_inset Text
23736
23737 \begin_layout Plain Layout
23738
23739 \backslash
23740 unlhd
23741 \end_layout
23742
23743 \end_inset
23744 </cell>
23745 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23746 \begin_inset Text
23747
23748 \begin_layout Plain Layout
23749 \begin_inset Formula $\unlhd$
23750 \end_inset
23751
23752
23753 \end_layout
23754
23755 \end_inset
23756 </cell>
23757 </row>
23758 <row>
23759 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23760 \begin_inset Text
23761
23762 \begin_layout Plain Layout
23763
23764 \backslash
23765 gtrless
23766 \end_layout
23767
23768 \end_inset
23769 </cell>
23770 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23771 \begin_inset Text
23772
23773 \begin_layout Plain Layout
23774 \begin_inset Formula $\gtrless$
23775 \end_inset
23776
23777
23778 \end_layout
23779
23780 \end_inset
23781 </cell>
23782 </row>
23783 <row>
23784 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23785 \begin_inset Text
23786
23787 \begin_layout Plain Layout
23788
23789 \backslash
23790 mid
23791 \end_layout
23792
23793 \end_inset
23794 </cell>
23795 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23796 \begin_inset Text
23797
23798 \begin_layout Plain Layout
23799 \begin_inset Formula $\mid$
23800 \end_inset
23801
23802
23803 \end_layout
23804
23805 \end_inset
23806 </cell>
23807 </row>
23808 <row>
23809 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
23810 \begin_inset Text
23811
23812 \begin_layout Plain Layout
23813
23814 \backslash
23815 nmid
23816 \end_layout
23817
23818 \end_inset
23819 </cell>
23820 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
23821 \begin_inset Text
23822
23823 \begin_layout Plain Layout
23824 \begin_inset Formula $\nmid$
23825 \end_inset
23826
23827
23828 \end_layout
23829
23830 \end_inset
23831 </cell>
23832 </row>
23833 </lyxtabular>
23834
23835 \end_inset
23836
23837
23838 \begin_inset space \hfill{}
23839 \end_inset
23840
23841
23842 \begin_inset Tabular
23843 <lyxtabular version="3" rows="17" columns="2">
23844 <features rotate="0" tabularvalignment="middle">
23845 <column alignment="center" valignment="top" width="0pt">
23846 <column alignment="center" valignment="top" width="0pt">
23847 <row>
23848 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
23849 \begin_inset Text
23850
23851 \begin_layout Plain Layout
23852 Befehl
23853 \end_layout
23854
23855 \end_inset
23856 </cell>
23857 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
23858 \begin_inset Text
23859
23860 \begin_layout Plain Layout
23861 Ergebnis
23862 \end_layout
23863
23864 \end_inset
23865 </cell>
23866 </row>
23867 <row>
23868 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23869 \begin_inset Text
23870
23871 \begin_layout Plain Layout
23872 =
23873 \end_layout
23874
23875 \end_inset
23876 </cell>
23877 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23878 \begin_inset Text
23879
23880 \begin_layout Plain Layout
23881 \begin_inset Formula $=$
23882 \end_inset
23883
23884
23885 \end_layout
23886
23887 \end_inset
23888 </cell>
23889 </row>
23890 <row>
23891 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23892 \begin_inset Text
23893
23894 \begin_layout Plain Layout
23895
23896 \backslash
23897 not=
23898 \end_layout
23899
23900 \end_inset
23901 </cell>
23902 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23903 \begin_inset Text
23904
23905 \begin_layout Plain Layout
23906 \begin_inset Formula $\not=$
23907 \end_inset
23908
23909
23910 \end_layout
23911
23912 \end_inset
23913 </cell>
23914 </row>
23915 <row>
23916 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23917 \begin_inset Text
23918
23919 \begin_layout Plain Layout
23920
23921 \backslash
23922 equiv
23923 \end_layout
23924
23925 \end_inset
23926 </cell>
23927 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23928 \begin_inset Text
23929
23930 \begin_layout Plain Layout
23931 \begin_inset Formula $\equiv$
23932 \end_inset
23933
23934
23935 \end_layout
23936
23937 \end_inset
23938 </cell>
23939 </row>
23940 <row>
23941 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23942 \begin_inset Text
23943
23944 \begin_layout Plain Layout
23945
23946 \backslash
23947 sim
23948 \end_layout
23949
23950 \end_inset
23951 </cell>
23952 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23953 \begin_inset Text
23954
23955 \begin_layout Plain Layout
23956 \begin_inset Formula $\sim$
23957 \end_inset
23958
23959
23960 \end_layout
23961
23962 \end_inset
23963 </cell>
23964 </row>
23965 <row>
23966 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23967 \begin_inset Text
23968
23969 \begin_layout Plain Layout
23970
23971 \backslash
23972 simeq
23973 \end_layout
23974
23975 \end_inset
23976 </cell>
23977 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23978 \begin_inset Text
23979
23980 \begin_layout Plain Layout
23981 \begin_inset Formula $\simeq$
23982 \end_inset
23983
23984
23985 \end_layout
23986
23987 \end_inset
23988 </cell>
23989 </row>
23990 <row>
23991 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23992 \begin_inset Text
23993
23994 \begin_layout Plain Layout
23995
23996 \backslash
23997 approx
23998 \end_layout
23999
24000 \end_inset
24001 </cell>
24002 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24003 \begin_inset Text
24004
24005 \begin_layout Plain Layout
24006 \begin_inset Formula $\approx$
24007 \end_inset
24008
24009
24010 \end_layout
24011
24012 \end_inset
24013 </cell>
24014 </row>
24015 <row>
24016 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24017 \begin_inset Text
24018
24019 \begin_layout Plain Layout
24020
24021 \backslash
24022 cong
24023 \end_layout
24024
24025 \end_inset
24026 </cell>
24027 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24028 \begin_inset Text
24029
24030 \begin_layout Plain Layout
24031 \begin_inset Formula $\cong$
24032 \end_inset
24033
24034
24035 \end_layout
24036
24037 \end_inset
24038 </cell>
24039 </row>
24040 <row>
24041 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24042 \begin_inset Text
24043
24044 \begin_layout Plain Layout
24045
24046 \backslash
24047 bowtie
24048 \end_layout
24049
24050 \end_inset
24051 </cell>
24052 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24053 \begin_inset Text
24054
24055 \begin_layout Plain Layout
24056 \begin_inset Formula $\bowtie$
24057 \end_inset
24058
24059
24060 \end_layout
24061
24062 \end_inset
24063 </cell>
24064 </row>
24065 <row>
24066 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24067 \begin_inset Text
24068
24069 \begin_layout Plain Layout
24070
24071 \backslash
24072 notin
24073 \end_layout
24074
24075 \end_inset
24076 </cell>
24077 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24078 \begin_inset Text
24079
24080 \begin_layout Plain Layout
24081 \begin_inset Formula $\notin$
24082 \end_inset
24083
24084
24085 \end_layout
24086
24087 \end_inset
24088 </cell>
24089 </row>
24090 <row>
24091 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24092 \begin_inset Text
24093
24094 \begin_layout Plain Layout
24095
24096 \backslash
24097 perp
24098 \end_layout
24099
24100 \end_inset
24101 </cell>
24102 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24103 \begin_inset Text
24104
24105 \begin_layout Plain Layout
24106 \begin_inset Formula $\perp$
24107 \end_inset
24108
24109
24110 \end_layout
24111
24112 \end_inset
24113 </cell>
24114 </row>
24115 <row>
24116 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24117 \begin_inset Text
24118
24119 \begin_layout Plain Layout
24120
24121 \backslash
24122 propto
24123 \end_layout
24124
24125 \end_inset
24126 </cell>
24127 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24128 \begin_inset Text
24129
24130 \begin_layout Plain Layout
24131 \begin_inset Formula $\propto$
24132 \end_inset
24133
24134
24135 \end_layout
24136
24137 \end_inset
24138 </cell>
24139 </row>
24140 <row>
24141 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24142 \begin_inset Text
24143
24144 \begin_layout Plain Layout
24145
24146 \backslash
24147 asymp
24148 \end_layout
24149
24150 \end_inset
24151 </cell>
24152 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24153 \begin_inset Text
24154
24155 \begin_layout Plain Layout
24156 \begin_inset Formula $\asymp$
24157 \end_inset
24158
24159
24160 \end_layout
24161
24162 \end_inset
24163 </cell>
24164 </row>
24165 <row>
24166 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24167 \begin_inset Text
24168
24169 \begin_layout Plain Layout
24170
24171 \backslash
24172 doteq
24173 \end_layout
24174
24175 \end_inset
24176 </cell>
24177 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24178 \begin_inset Text
24179
24180 \begin_layout Plain Layout
24181 \begin_inset Formula $\doteq$
24182 \end_inset
24183
24184
24185 \end_layout
24186
24187 \end_inset
24188 </cell>
24189 </row>
24190 <row>
24191 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24192 \begin_inset Text
24193
24194 \begin_layout Plain Layout
24195
24196 \backslash
24197 circeq
24198 \end_layout
24199
24200 \end_inset
24201 </cell>
24202 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24203 \begin_inset Text
24204
24205 \begin_layout Plain Layout
24206 \begin_inset Formula $\circeq$
24207 \end_inset
24208
24209
24210 \end_layout
24211
24212 \end_inset
24213 </cell>
24214 </row>
24215 <row>
24216 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24217 \begin_inset Text
24218
24219 \begin_layout Plain Layout
24220
24221 \backslash
24222 models
24223 \end_layout
24224
24225 \end_inset
24226 </cell>
24227 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24228 \begin_inset Text
24229
24230 \begin_layout Plain Layout
24231 \begin_inset Formula $\models$
24232 \end_inset
24233
24234
24235 \end_layout
24236
24237 \end_inset
24238 </cell>
24239 </row>
24240 <row>
24241 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24242 \begin_inset Text
24243
24244 \begin_layout Plain Layout
24245
24246 \backslash
24247 widehat=
24248 \end_layout
24249
24250 \end_inset
24251 </cell>
24252 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
24253 \begin_inset Text
24254
24255 \begin_layout Plain Layout
24256 \begin_inset Formula $\widehat{=}$
24257 \end_inset
24258
24259
24260 \end_layout
24261
24262 \end_inset
24263 </cell>
24264 </row>
24265 </lyxtabular>
24266
24267 \end_inset
24268
24269
24270 \begin_inset space \hfill{}
24271 \end_inset
24272
24273
24274 \begin_inset Tabular
24275 <lyxtabular version="3" rows="17" columns="2">
24276 <features rotate="0" tabularvalignment="middle">
24277 <column alignment="center" valignment="top" width="0pt">
24278 <column alignment="center" valignment="top" width="0pt">
24279 <row>
24280 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24281 \begin_inset Text
24282
24283 \begin_layout Plain Layout
24284 Befehl
24285 \end_layout
24286
24287 \end_inset
24288 </cell>
24289 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
24290 \begin_inset Text
24291
24292 \begin_layout Plain Layout
24293 Ergebnis
24294 \end_layout
24295
24296 \end_inset
24297 </cell>
24298 </row>
24299 <row>
24300 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24301 \begin_inset Text
24302
24303 \begin_layout Plain Layout
24304 >
24305 \end_layout
24306
24307 \end_inset
24308 </cell>
24309 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24310 \begin_inset Text
24311
24312 \begin_layout Plain Layout
24313 \begin_inset Formula $>$
24314 \end_inset
24315
24316
24317 \end_layout
24318
24319 \end_inset
24320 </cell>
24321 </row>
24322 <row>
24323 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24324 \begin_inset Text
24325
24326 \begin_layout Plain Layout
24327
24328 \backslash
24329 ge
24330 \end_layout
24331
24332 \end_inset
24333 </cell>
24334 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24335 \begin_inset Text
24336
24337 \begin_layout Plain Layout
24338 \begin_inset Formula $\ge$
24339 \end_inset
24340
24341
24342 \end_layout
24343
24344 \end_inset
24345 </cell>
24346 </row>
24347 <row>
24348 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24349 \begin_inset Text
24350
24351 \begin_layout Plain Layout
24352
24353 \backslash
24354 gg
24355 \end_layout
24356
24357 \end_inset
24358 </cell>
24359 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24360 \begin_inset Text
24361
24362 \begin_layout Plain Layout
24363 \begin_inset Formula $\gg$
24364 \end_inset
24365
24366
24367 \end_layout
24368
24369 \end_inset
24370 </cell>
24371 </row>
24372 <row>
24373 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24374 \begin_inset Text
24375
24376 \begin_layout Plain Layout
24377
24378 \backslash
24379 succ
24380 \end_layout
24381
24382 \end_inset
24383 </cell>
24384 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24385 \begin_inset Text
24386
24387 \begin_layout Plain Layout
24388 \begin_inset Formula $\succ$
24389 \end_inset
24390
24391
24392 \end_layout
24393
24394 \end_inset
24395 </cell>
24396 </row>
24397 <row>
24398 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24399 \begin_inset Text
24400
24401 \begin_layout Plain Layout
24402
24403 \backslash
24404 succeq
24405 \end_layout
24406
24407 \end_inset
24408 </cell>
24409 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24410 \begin_inset Text
24411
24412 \begin_layout Plain Layout
24413 \begin_inset Formula $\succeq$
24414 \end_inset
24415
24416
24417 \end_layout
24418
24419 \end_inset
24420 </cell>
24421 </row>
24422 <row>
24423 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24424 \begin_inset Text
24425
24426 \begin_layout Plain Layout
24427
24428 \backslash
24429 supset
24430 \end_layout
24431
24432 \end_inset
24433 </cell>
24434 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24435 \begin_inset Text
24436
24437 \begin_layout Plain Layout
24438 \begin_inset Formula $\supset$
24439 \end_inset
24440
24441
24442 \end_layout
24443
24444 \end_inset
24445 </cell>
24446 </row>
24447 <row>
24448 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24449 \begin_inset Text
24450
24451 \begin_layout Plain Layout
24452
24453 \backslash
24454 supseteq
24455 \end_layout
24456
24457 \end_inset
24458 </cell>
24459 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24460 \begin_inset Text
24461
24462 \begin_layout Plain Layout
24463 \begin_inset Formula $\supseteq$
24464 \end_inset
24465
24466
24467 \end_layout
24468
24469 \end_inset
24470 </cell>
24471 </row>
24472 <row>
24473 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24474 \begin_inset Text
24475
24476 \begin_layout Plain Layout
24477
24478 \backslash
24479 sqsupseteq
24480 \end_layout
24481
24482 \end_inset
24483 </cell>
24484 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24485 \begin_inset Text
24486
24487 \begin_layout Plain Layout
24488 \begin_inset Formula $\sqsupseteq$
24489 \end_inset
24490
24491
24492 \end_layout
24493
24494 \end_inset
24495 </cell>
24496 </row>
24497 <row>
24498 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24499 \begin_inset Text
24500
24501 \begin_layout Plain Layout
24502
24503 \backslash
24504 ni
24505 \end_layout
24506
24507 \end_inset
24508 </cell>
24509 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24510 \begin_inset Text
24511
24512 \begin_layout Plain Layout
24513 \begin_inset Formula $\ni$
24514 \end_inset
24515
24516
24517 \end_layout
24518
24519 \end_inset
24520 </cell>
24521 </row>
24522 <row>
24523 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24524 \begin_inset Text
24525
24526 \begin_layout Plain Layout
24527
24528 \backslash
24529 dashv
24530 \end_layout
24531
24532 \end_inset
24533 </cell>
24534 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24535 \begin_inset Text
24536
24537 \begin_layout Plain Layout
24538 \begin_inset Formula $\dashv$
24539 \end_inset
24540
24541
24542 \end_layout
24543
24544 \end_inset
24545 </cell>
24546 </row>
24547 <row>
24548 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24549 \begin_inset Text
24550
24551 \begin_layout Plain Layout
24552
24553 \backslash
24554 frown
24555 \end_layout
24556
24557 \end_inset
24558 </cell>
24559 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24560 \begin_inset Text
24561
24562 \begin_layout Plain Layout
24563 \begin_inset Formula $\frown$
24564 \end_inset
24565
24566
24567 \end_layout
24568
24569 \end_inset
24570 </cell>
24571 </row>
24572 <row>
24573 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24574 \begin_inset Text
24575
24576 \begin_layout Plain Layout
24577
24578 \backslash
24579 rhd
24580 \end_layout
24581
24582 \end_inset
24583 </cell>
24584 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24585 \begin_inset Text
24586
24587 \begin_layout Plain Layout
24588 \begin_inset Formula $\rhd$
24589 \end_inset
24590
24591
24592 \end_layout
24593
24594 \end_inset
24595 </cell>
24596 </row>
24597 <row>
24598 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24599 \begin_inset Text
24600
24601 \begin_layout Plain Layout
24602
24603 \backslash
24604 unrhd
24605 \end_layout
24606
24607 \end_inset
24608 </cell>
24609 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24610 \begin_inset Text
24611
24612 \begin_layout Plain Layout
24613 \begin_inset Formula $\unrhd$
24614 \end_inset
24615
24616
24617 \end_layout
24618
24619 \end_inset
24620 </cell>
24621 </row>
24622 <row>
24623 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24624 \begin_inset Text
24625
24626 \begin_layout Plain Layout
24627
24628 \backslash
24629 lessgtr
24630 \end_layout
24631
24632 \end_inset
24633 </cell>
24634 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24635 \begin_inset Text
24636
24637 \begin_layout Plain Layout
24638 \begin_inset Formula $\lessgtr$
24639 \end_inset
24640
24641
24642 \end_layout
24643
24644 \end_inset
24645 </cell>
24646 </row>
24647 <row>
24648 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24649 \begin_inset Text
24650
24651 \begin_layout Plain Layout
24652
24653 \backslash
24654 parallel
24655 \end_layout
24656
24657 \end_inset
24658 </cell>
24659 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24660 \begin_inset Text
24661
24662 \begin_layout Plain Layout
24663 \begin_inset Formula $\parallel$
24664 \end_inset
24665
24666
24667 \end_layout
24668
24669 \end_inset
24670 </cell>
24671 </row>
24672 <row>
24673 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24674 \begin_inset Text
24675
24676 \begin_layout Plain Layout
24677
24678 \backslash
24679 nparallel
24680 \end_layout
24681
24682 \end_inset
24683 </cell>
24684 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
24685 \begin_inset Text
24686
24687 \begin_layout Plain Layout
24688 \begin_inset Formula $\nparallel$
24689 \end_inset
24690
24691
24692 \end_layout
24693
24694 \end_inset
24695 </cell>
24696 </row>
24697 </lyxtabular>
24698
24699 \end_inset
24700
24701
24702 \begin_inset space \hfill{}
24703 \end_inset
24704
24705
24706 \end_layout
24707
24708 \begin_layout Standard
24709 \begin_inset VSpace medskip
24710 \end_inset
24711
24712 Die Zeichen 
24713 \series bold
24714
24715 \backslash
24716 lhd
24717 \series default
24718  bzw.
24719 \begin_inset space \space{}
24720 \end_inset
24721
24722
24723 \series bold
24724
24725 \backslash
24726 rhd
24727 \series default
24728  sind größer als die gleich aussehenden Operatoren
24729 \begin_inset Newline linebreak
24730 \end_inset
24731
24732
24733 \series bold
24734
24735 \backslash
24736 triangleleft
24737 \series default
24738  bzw.
24739 \begin_inset space \space{}
24740 \end_inset
24741
24742
24743 \series bold
24744
24745 \backslash
24746 triangleright
24747 \series default
24748 .
24749 \end_layout
24750
24751 \begin_layout Standard
24752 Relationen sind im Gegensatz zu Symbolen immer von Leerraum umgeben.
24753 \end_layout
24754
24755 \begin_layout Standard
24756 Relationen mit Beschriftungen können mit Hilfe des Befehls 
24757 \series bold
24758
24759 \backslash
24760 stackrel
24761 \series default
24762
24763 \begin_inset Index idx
24764 status collapsed
24765
24766 \begin_layout Plain Layout
24767 Befehle ! S ! 
24768 \backslash
24769 stackrel
24770 \end_layout
24771
24772 \end_inset
24773
24774  erstellt werden:
24775 \end_layout
24776
24777 \begin_layout Standard
24778 \align center
24779 \begin_inset Tabular
24780 <lyxtabular version="3" rows="2" columns="2">
24781 <features rotate="0" tabularvalignment="middle">
24782 <column alignment="center" valignment="top">
24783 <column alignment="center" valignment="top">
24784 <row>
24785 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24786 \begin_inset Text
24787
24788 \begin_layout Plain Layout
24789 Befehl
24790 \end_layout
24791
24792 \end_inset
24793 </cell>
24794 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
24795 \begin_inset Text
24796
24797 \begin_layout Plain Layout
24798 Ergebnis
24799 \begin_inset Note Note
24800 status collapsed
24801
24802 \begin_layout Plain Layout
24803
24804 \series bold
24805
24806 \backslash
24807 raisebox
24808 \series default
24809  dient nur als Abstandhalter.
24810 \end_layout
24811
24812 \end_inset
24813
24814
24815 \end_layout
24816
24817 \end_inset
24818 </cell>
24819 </row>
24820 <row>
24821 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24822 \begin_inset Text
24823
24824 \begin_layout Plain Layout
24825 A(r)
24826 \backslash
24827 stackrel
24828 \begin_inset ERT
24829 status collapsed
24830
24831 \begin_layout Plain Layout
24832
24833
24834 \backslash
24835 leer 
24836 \end_layout
24837
24838 \end_inset
24839
24840 r
24841 \backslash
24842 to
24843 \backslash
24844 infty
24845 \begin_inset ERT
24846 status collapsed
24847
24848 \begin_layout Plain Layout
24849
24850
24851 \backslash
24852 leer 
24853 \end_layout
24854
24855 \end_inset
24856
24857
24858 \begin_inset Formula $\downarrow$
24859 \end_inset
24860
24861
24862 \backslash
24863 approx
24864 \begin_inset ERT
24865 status collapsed
24866
24867 \begin_layout Plain Layout
24868
24869
24870 \backslash
24871 leer 
24872 \end_layout
24873
24874 \end_inset
24875
24876
24877 \begin_inset ERT
24878 status collapsed
24879
24880 \begin_layout Plain Layout
24881
24882
24883 \backslash
24884 leer 
24885 \end_layout
24886
24887 \end_inset
24888
24889 B
24890 \end_layout
24891
24892 \end_inset
24893 </cell>
24894 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
24895 \begin_inset Text
24896
24897 \begin_layout Plain Layout
24898 \begin_inset Formula $\raisebox{5mm}{}A(r)\stackrel{r\to\infty}{\approx}B$
24899 \end_inset
24900
24901
24902 \end_layout
24903
24904 \end_inset
24905 </cell>
24906 </row>
24907 </lyxtabular>
24908
24909 \end_inset
24910
24911
24912 \end_layout
24913
24914 \begin_layout Section
24915 Funktionen
24916 \end_layout
24917
24918 \begin_layout Subsection
24919 Vordefinierte Funktionen
24920 \begin_inset CommandInset label
24921 LatexCommand label
24922 name "sub:Vordefinierte-Funktionen"
24923
24924 \end_inset
24925
24926
24927 \begin_inset Index idx
24928 status collapsed
24929
24930 \begin_layout Plain Layout
24931 Funktionen ! vordefinierte
24932 \end_layout
24933
24934 \end_inset
24935
24936
24937 \end_layout
24938
24939 \begin_layout Standard
24940 Allgemein werden in mathematischen Ausdrücken Variablen 
24941 \shape italic
24942 kursiv
24943 \shape default
24944  gesetzt, Funktionsnamen hingegen nicht, denn 
24945 \begin_inset Formula $sin$
24946 \end_inset
24947
24948  könnte als 
24949 \begin_inset Formula $s\cdot i\cdot n$
24950 \end_inset
24951
24952  missverstanden werden.
24953  Aus diesem Grund gibt es vordefinierte Funktionen, die zusätzlich von Vorfaktor
24954 en etwas abgesetzt sind.
24955  Sie werden als Befehle mit einem Backslash vor dem Funktionsnamen eingefügt.
24956 \end_layout
24957
24958 \begin_layout Standard
24959 \align center
24960 \begin_inset Tabular
24961 <lyxtabular version="3" rows="2" columns="4">
24962 <features rotate="0" tabularvalignment="middle">
24963 <column alignment="center" valignment="top" width="0pt">
24964 <column alignment="center" valignment="top" width="0pt">
24965 <column alignment="center" valignment="top" width="0pt">
24966 <column alignment="center" valignment="top" width="0pt">
24967 <row>
24968 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24969 \begin_inset Text
24970
24971 \begin_layout Plain Layout
24972 Befehl
24973 \end_layout
24974
24975 \end_inset
24976 </cell>
24977 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
24978 \begin_inset Text
24979
24980 \begin_layout Plain Layout
24981 Ergebnis
24982 \end_layout
24983
24984 \end_inset
24985 </cell>
24986 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24987 \begin_inset Text
24988
24989 \begin_layout Plain Layout
24990 Befehl
24991 \end_layout
24992
24993 \end_inset
24994 </cell>
24995 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
24996 \begin_inset Text
24997
24998 \begin_layout Plain Layout
24999 Ergebnis
25000 \end_layout
25001
25002 \end_inset
25003 </cell>
25004 </row>
25005 <row>
25006 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25007 \begin_inset Text
25008
25009 \begin_layout Plain Layout
25010 Asin(x)+B
25011 \end_layout
25012
25013 \end_inset
25014 </cell>
25015 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
25016 \begin_inset Text
25017
25018 \begin_layout Plain Layout
25019 \begin_inset Formula $Asin(x)+B$
25020 \end_inset
25021
25022
25023 \end_layout
25024
25025 \end_inset
25026 </cell>
25027 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25028 \begin_inset Text
25029
25030 \begin_layout Plain Layout
25031 A
25032 \backslash
25033 sin(x)+B
25034 \end_layout
25035
25036 \end_inset
25037 </cell>
25038 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
25039 \begin_inset Text
25040
25041 \begin_layout Plain Layout
25042 \begin_inset Formula $A\sin(x)+B$
25043 \end_inset
25044
25045
25046 \end_layout
25047
25048 \end_inset
25049 </cell>
25050 </row>
25051 </lyxtabular>
25052
25053 \end_inset
25054
25055
25056 \end_layout
25057
25058 \begin_layout Standard
25059 Folgende Funktionen sind vordefiniert:
25060 \end_layout
25061
25062 \begin_layout Standard
25063 \begin_inset VSpace -2mm
25064 \end_inset
25065
25066
25067 \end_layout
25068
25069 \begin_layout Standard
25070 \align center
25071 \begin_inset Tabular
25072 <lyxtabular version="3" rows="9" columns="4">
25073 <features rotate="0" tabularvalignment="middle">
25074 <column alignment="center" valignment="top" width="0pt">
25075 <column alignment="center" valignment="top" width="0pt">
25076 <column alignment="center" valignment="top" width="0pt">
25077 <column alignment="center" valignment="top" width="0pt">
25078 <row>
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" usebox="none">
25098 \begin_inset Text
25099
25100 \begin_layout Plain Layout
25101 Befehl
25102 \end_layout
25103
25104 \end_inset
25105 </cell>
25106 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
25107 \begin_inset Text
25108
25109 \begin_layout Plain Layout
25110 Befehl
25111 \end_layout
25112
25113 \end_inset
25114 </cell>
25115 </row>
25116 <row>
25117 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25118 \begin_inset Text
25119
25120 \begin_layout Plain Layout
25121
25122 \backslash
25123 sin
25124 \end_layout
25125
25126 \end_inset
25127 </cell>
25128 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25129 \begin_inset Text
25130
25131 \begin_layout Plain Layout
25132
25133 \backslash
25134 sinh
25135 \end_layout
25136
25137 \end_inset
25138 </cell>
25139 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25140 \begin_inset Text
25141
25142 \begin_layout Plain Layout
25143
25144 \backslash
25145 arcsin
25146 \end_layout
25147
25148 \end_inset
25149 </cell>
25150 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25151 \begin_inset Text
25152
25153 \begin_layout Plain Layout
25154
25155 \backslash
25156 sup
25157 \end_layout
25158
25159 \end_inset
25160 </cell>
25161 </row>
25162 <row>
25163 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25164 \begin_inset Text
25165
25166 \begin_layout Plain Layout
25167
25168 \backslash
25169 cos
25170 \end_layout
25171
25172 \end_inset
25173 </cell>
25174 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25175 \begin_inset Text
25176
25177 \begin_layout Plain Layout
25178
25179 \backslash
25180 cosh
25181 \end_layout
25182
25183 \end_inset
25184 </cell>
25185 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25186 \begin_inset Text
25187
25188 \begin_layout Plain Layout
25189
25190 \backslash
25191 arccos
25192 \end_layout
25193
25194 \end_inset
25195 </cell>
25196 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25197 \begin_inset Text
25198
25199 \begin_layout Plain Layout
25200
25201 \backslash
25202 inf
25203 \end_layout
25204
25205 \end_inset
25206 </cell>
25207 </row>
25208 <row>
25209 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25210 \begin_inset Text
25211
25212 \begin_layout Plain Layout
25213
25214 \backslash
25215 tan
25216 \end_layout
25217
25218 \end_inset
25219 </cell>
25220 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25221 \begin_inset Text
25222
25223 \begin_layout Plain Layout
25224
25225 \backslash
25226 tanh
25227 \end_layout
25228
25229 \end_inset
25230 </cell>
25231 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25232 \begin_inset Text
25233
25234 \begin_layout Plain Layout
25235
25236 \backslash
25237 arctan
25238 \end_layout
25239
25240 \end_inset
25241 </cell>
25242 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25243 \begin_inset Text
25244
25245 \begin_layout Plain Layout
25246
25247 \backslash
25248 lim
25249 \end_layout
25250
25251 \end_inset
25252 </cell>
25253 </row>
25254 <row>
25255 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25256 \begin_inset Text
25257
25258 \begin_layout Plain Layout
25259
25260 \backslash
25261 cot
25262 \end_layout
25263
25264 \end_inset
25265 </cell>
25266 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25267 \begin_inset Text
25268
25269 \begin_layout Plain Layout
25270
25271 \backslash
25272 coth
25273 \end_layout
25274
25275 \end_inset
25276 </cell>
25277 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25278 \begin_inset Text
25279
25280 \begin_layout Plain Layout
25281
25282 \backslash
25283 arg
25284 \end_layout
25285
25286 \end_inset
25287 </cell>
25288 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25289 \begin_inset Text
25290
25291 \begin_layout Plain Layout
25292
25293 \backslash
25294 liminf
25295 \end_layout
25296
25297 \end_inset
25298 </cell>
25299 </row>
25300 <row>
25301 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25302 \begin_inset Text
25303
25304 \begin_layout Plain Layout
25305
25306 \backslash
25307 sec
25308 \end_layout
25309
25310 \end_inset
25311 </cell>
25312 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25313 \begin_inset Text
25314
25315 \begin_layout Plain Layout
25316
25317 \backslash
25318 min
25319 \end_layout
25320
25321 \end_inset
25322 </cell>
25323 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25324 \begin_inset Text
25325
25326 \begin_layout Plain Layout
25327
25328 \backslash
25329 deg
25330 \end_layout
25331
25332 \end_inset
25333 </cell>
25334 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25335 \begin_inset Text
25336
25337 \begin_layout Plain Layout
25338
25339 \backslash
25340 limsup
25341 \end_layout
25342
25343 \end_inset
25344 </cell>
25345 </row>
25346 <row>
25347 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25348 \begin_inset Text
25349
25350 \begin_layout Plain Layout
25351
25352 \backslash
25353 csc
25354 \end_layout
25355
25356 \end_inset
25357 </cell>
25358 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25359 \begin_inset Text
25360
25361 \begin_layout Plain Layout
25362
25363 \backslash
25364 max
25365 \end_layout
25366
25367 \end_inset
25368 </cell>
25369 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25370 \begin_inset Text
25371
25372 \begin_layout Plain Layout
25373
25374 \backslash
25375 det
25376 \end_layout
25377
25378 \end_inset
25379 </cell>
25380 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25381 \begin_inset Text
25382
25383 \begin_layout Plain Layout
25384
25385 \backslash
25386 Pr
25387 \end_layout
25388
25389 \end_inset
25390 </cell>
25391 </row>
25392 <row>
25393 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25394 \begin_inset Text
25395
25396 \begin_layout Plain Layout
25397
25398 \backslash
25399 ln
25400 \end_layout
25401
25402 \end_inset
25403 </cell>
25404 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25405 \begin_inset Text
25406
25407 \begin_layout Plain Layout
25408
25409 \backslash
25410 exp
25411 \end_layout
25412
25413 \end_inset
25414 </cell>
25415 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25416 \begin_inset Text
25417
25418 \begin_layout Plain Layout
25419
25420 \backslash
25421 dim
25422 \end_layout
25423
25424 \end_inset
25425 </cell>
25426 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25427 \begin_inset Text
25428
25429 \begin_layout Plain Layout
25430
25431 \backslash
25432 hom
25433 \end_layout
25434
25435 \end_inset
25436 </cell>
25437 </row>
25438 <row>
25439 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25440 \begin_inset Text
25441
25442 \begin_layout Plain Layout
25443
25444 \backslash
25445 lg
25446 \end_layout
25447
25448 \end_inset
25449 </cell>
25450 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25451 \begin_inset Text
25452
25453 \begin_layout Plain Layout
25454
25455 \backslash
25456 log
25457 \end_layout
25458
25459 \end_inset
25460 </cell>
25461 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25462 \begin_inset Text
25463
25464 \begin_layout Plain Layout
25465
25466 \backslash
25467 ker
25468 \end_layout
25469
25470 \end_inset
25471 </cell>
25472 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
25473 \begin_inset Text
25474
25475 \begin_layout Plain Layout
25476
25477 \backslash
25478 gcd
25479 \end_layout
25480
25481 \end_inset
25482 </cell>
25483 </row>
25484 </lyxtabular>
25485
25486 \end_inset
25487
25488
25489 \end_layout
25490
25491 \begin_layout Standard
25492 Sie können auch über den Mathe-Werkzeugleistenknopf 
25493 \begin_inset Graphics
25494         filename ../../images/math/functions.png
25495         scale 85
25496
25497 \end_inset
25498
25499  eingefügt werden.
25500 \end_layout
25501
25502 \begin_layout Subsection
25503 Selbst definierte Funktionen
25504 \begin_inset Index idx
25505 status collapsed
25506
25507 \begin_layout Plain Layout
25508 Funktionen ! selbstdefinierte
25509 \end_layout
25510
25511 \end_inset
25512
25513
25514 \end_layout
25515
25516 \begin_layout Standard
25517 Will man eine Funktion verwenden, die nicht vordefiniert ist, wie z.
25518 \begin_inset space \thinspace{}
25519 \end_inset
25520
25521 B.
25522  die Signumfunktion sgn(x), hat man zwei Möglichkeiten:
25523 \end_layout
25524
25525 \begin_layout Itemize
25526 Man definiert die Funktion selbst.
25527  Dazu gibt man im LaTeX-Vorspann die Zeile
25528 \begin_inset Newline newline
25529 \end_inset
25530
25531
25532 \begin_inset VSpace -3mm
25533 \end_inset
25534
25535
25536 \begin_inset Newline newline
25537 \end_inset
25538
25539
25540 \series bold
25541
25542 \backslash
25543 DeclareMathOperator{
25544 \backslash
25545 sgn}{sgn}
25546 \series default
25547
25548 \begin_inset Index idx
25549 status collapsed
25550
25551 \begin_layout Plain Layout
25552 Befehle ! D ! 
25553 \backslash
25554 dbinom@
25555 \backslash
25556 DeclareMathOperator
25557 \end_layout
25558
25559 \end_inset
25560
25561
25562 \begin_inset Newline newline
25563 \end_inset
25564
25565
25566 \begin_inset VSpace -2mm
25567 \end_inset
25568
25569
25570 \begin_inset Newline newline
25571 \end_inset
25572
25573 ein
25574 \begin_inset Foot
25575 status collapsed
25576
25577 \begin_layout Plain Layout
25578 Näheres zu 
25579 \series bold
25580
25581 \backslash
25582 DeclareMathOperator
25583 \series default
25584  siehe 
25585 \begin_inset CommandInset ref
25586 LatexCommand ref
25587 reference "sub:Selbstdefinierte-Operatoren"
25588
25589 \end_inset
25590
25591 .
25592 \end_layout
25593
25594 \end_inset
25595
25596 .
25597  Nun kann man mit dem Befehl 
25598 \series bold
25599
25600 \backslash
25601 sgn
25602 \series default
25603  die neu definierte Funktion aufrufen.
25604 \end_layout
25605
25606 \begin_layout Itemize
25607 Man schreibt die Formel wie gewohnt, markiert den Formelnamen, also in unserem
25608  Beispiel die Buchstaben 
25609 \emph on
25610 sgn
25611 \emph default
25612 , und wandelt ihn in in mathematischen Text um.
25613  Zwischen Vorfaktor und Funktion fügt man einen kleinen Leerraum ein.
25614 \end_layout
25615
25616 \begin_layout Standard
25617 Das Ergebnis ist bei beiden Methoden dasselbe wie bei einer vordefinierten
25618  Funktion
25619 \begin_inset Foot
25620 status collapsed
25621
25622 \begin_layout Plain Layout
25623 Selbst definierte Funktionen werden in LyX rot, vordefinierte schwarz angezeigt.
25624 \end_layout
25625
25626 \end_inset
25627
25628 :
25629 \end_layout
25630
25631 \begin_layout Standard
25632 \align center
25633 \begin_inset Tabular
25634 <lyxtabular version="3" rows="3" columns="2">
25635 <features rotate="0" tabularvalignment="middle">
25636 <column alignment="center" valignment="top" width="0pt">
25637 <column alignment="center" valignment="top" width="0pt">
25638 <row>
25639 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25640 \begin_inset Text
25641
25642 \begin_layout Plain Layout
25643 Befehl
25644 \end_layout
25645
25646 \end_inset
25647 </cell>
25648 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
25649 \begin_inset Text
25650
25651 \begin_layout Plain Layout
25652 Ergebnis
25653 \end_layout
25654
25655 \end_inset
25656 </cell>
25657 </row>
25658 <row>
25659 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25660 \begin_inset Text
25661
25662 \begin_layout Plain Layout
25663 A
25664 \backslash
25665 sgn(x)+B
25666 \end_layout
25667
25668 \end_inset
25669 </cell>
25670 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
25671 \begin_inset Text
25672
25673 \begin_layout Plain Layout
25674 \begin_inset Formula $A\sgn(x)+B$
25675 \end_inset
25676
25677
25678 \end_layout
25679
25680 \end_inset
25681 </cell>
25682 </row>
25683 <row>
25684 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25685 \begin_inset Text
25686
25687 \begin_layout Plain Layout
25688 A
25689 \backslash
25690 ,
25691 \begin_inset Formula $\underbrace{\textrm{sgn}}_{\textrm{Alt-m}\,\textrm{m}}$
25692 \end_inset
25693
25694 (x)+B
25695 \end_layout
25696
25697 \end_inset
25698 </cell>
25699 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
25700 \begin_inset Text
25701
25702 \begin_layout Plain Layout
25703 \begin_inset Formula $A\,\textrm{sgn}(x)+B$
25704 \end_inset
25705
25706
25707 \end_layout
25708
25709 \end_inset
25710 </cell>
25711 </row>
25712 </lyxtabular>
25713
25714 \end_inset
25715
25716
25717 \end_layout
25718
25719 \begin_layout Standard
25720 Die erste Methode ist besser geeignet, wenn die selbst definierte Funktion
25721  mehrfach verwendet werden soll.
25722 \end_layout
25723
25724 \begin_layout Subsection
25725 Grenzwerte
25726 \begin_inset Index idx
25727 status collapsed
25728
25729 \begin_layout Plain Layout
25730 Grenzwerte
25731 \end_layout
25732
25733 \end_inset
25734
25735
25736 \end_layout
25737
25738 \begin_layout Standard
25739 Für Grenzwerte sind außer 
25740 \series bold
25741
25742 \backslash
25743 lim
25744 \series default
25745
25746 \begin_inset Index idx
25747 status collapsed
25748
25749 \begin_layout Plain Layout
25750 Befehle ! L ! 
25751 \backslash
25752 lim
25753 \end_layout
25754
25755 \end_inset
25756
25757
25758 \series bold
25759
25760 \backslash
25761 liminf
25762 \series default
25763  und 
25764 \series bold
25765
25766 \backslash
25767 limsup
25768 \series default
25769  noch folgende Funktionen definiert:
25770 \end_layout
25771
25772 \begin_layout Standard
25773 \align center
25774 \begin_inset Tabular
25775 <lyxtabular version="3" rows="5" columns="2">
25776 <features rotate="0" tabularvalignment="middle">
25777 <column alignment="center" valignment="top">
25778 <column alignment="center" valignment="top">
25779 <row>
25780 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25781 \begin_inset Text
25782
25783 \begin_layout Plain Layout
25784 Befehl
25785 \end_layout
25786
25787 \end_inset
25788 </cell>
25789 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
25790 \begin_inset Text
25791
25792 \begin_layout Plain Layout
25793 Ergebnis
25794 \begin_inset Note Note
25795 status collapsed
25796
25797 \begin_layout Plain Layout
25798
25799 \series bold
25800
25801 \backslash
25802 raisebox
25803 \series default
25804  dient nur als Abstandhalter.
25805 \end_layout
25806
25807 \end_inset
25808
25809
25810 \end_layout
25811
25812 \end_inset
25813 </cell>
25814 </row>
25815 <row>
25816 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25817 \begin_inset Text
25818
25819 \begin_layout Plain Layout
25820
25821 \backslash
25822 varliminf
25823 \end_layout
25824
25825 \end_inset
25826 </cell>
25827 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25828 \begin_inset Text
25829
25830 \begin_layout Plain Layout
25831 \begin_inset Formula $\varliminf$
25832 \end_inset
25833
25834
25835 \end_layout
25836
25837 \end_inset
25838 </cell>
25839 </row>
25840 <row>
25841 <cell alignment="center" valignment="top" leftline="true" usebox="none">
25842 \begin_inset Text
25843
25844 \begin_layout Plain Layout
25845
25846 \backslash
25847 varlimsup
25848 \end_layout
25849
25850 \end_inset
25851 </cell>
25852 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
25853 \begin_inset Text
25854
25855 \begin_layout Plain Layout
25856 \begin_inset Formula $\varlimsup$
25857 \end_inset
25858
25859
25860 \end_layout
25861
25862 \end_inset
25863 </cell>
25864 </row>
25865 <row>
25866 <cell alignment="center" valignment="top" leftline="true" usebox="none">
25867 \begin_inset Text
25868
25869 \begin_layout Plain Layout
25870
25871 \backslash
25872 varprojlim
25873 \end_layout
25874
25875 \end_inset
25876 </cell>
25877 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
25878 \begin_inset Text
25879
25880 \begin_layout Plain Layout
25881 \begin_inset Formula $\varprojlim$
25882 \end_inset
25883
25884
25885 \end_layout
25886
25887 \end_inset
25888 </cell>
25889 </row>
25890 <row>
25891 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
25892 \begin_inset Text
25893
25894 \begin_layout Plain Layout
25895
25896 \backslash
25897 varinjlim
25898 \end_layout
25899
25900 \end_inset
25901 </cell>
25902 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
25903 \begin_inset Text
25904
25905 \begin_layout Plain Layout
25906 \begin_inset Formula $\varinjlim$
25907 \end_inset
25908
25909
25910 \begin_inset Formula $\raisebox{-2.5mm}{}$
25911 \end_inset
25912
25913
25914 \end_layout
25915
25916 \end_inset
25917 </cell>
25918 </row>
25919 </lyxtabular>
25920
25921 \end_inset
25922
25923
25924 \end_layout
25925
25926 \begin_layout Standard
25927 \begin_inset VSpace medskip
25928 \end_inset
25929
25930 Der Grenzwert wird durch Tiefstellen erzeugt.
25931  Bei einer eingebetteten Formel wird er rechts neben die Funktion gesetzt:
25932 \end_layout
25933
25934 \begin_layout Standard
25935 \align center
25936 \begin_inset Tabular
25937 <lyxtabular version="3" rows="2" columns="2">
25938 <features rotate="0" tabularvalignment="middle">
25939 <column alignment="center" valignment="top" width="0pt">
25940 <column alignment="center" valignment="top" width="0pt">
25941 <row>
25942 <cell alignment="center" valignment="top" usebox="none">
25943 \begin_inset Text
25944
25945 \begin_layout Plain Layout
25946 Befehl
25947 \end_layout
25948
25949 \end_inset
25950 </cell>
25951 <cell alignment="center" valignment="top" usebox="none">
25952 \begin_inset Text
25953
25954 \begin_layout Plain Layout
25955 \begin_inset space \hspace{}
25956 \length 1cm
25957 \end_inset
25958
25959 Ergebnis
25960 \begin_inset Note Note
25961 status collapsed
25962
25963 \begin_layout Plain Layout
25964 Der Leerraum und 
25965 \series bold
25966
25967 \backslash
25968 raisebox
25969 \series default
25970  dienen nur als Abstandhalter.
25971 \end_layout
25972
25973 \end_inset
25974
25975
25976 \end_layout
25977
25978 \end_inset
25979 </cell>
25980 </row>
25981 <row>
25982 <cell alignment="center" valignment="top" usebox="none">
25983 \begin_inset Text
25984
25985 \begin_layout Plain Layout
25986
25987 \backslash
25988 lim_x
25989 \backslash
25990 to
25991 \begin_inset ERT
25992 status collapsed
25993
25994 \begin_layout Plain Layout
25995
25996
25997 \backslash
25998 leer 
25999 \end_layout
26000
26001 \end_inset
26002
26003 A
26004 \begin_inset ERT
26005 status collapsed
26006
26007 \begin_layout Plain Layout
26008
26009
26010 \backslash
26011 leer 
26012 \end_layout
26013
26014 \end_inset
26015
26016 x=B
26017 \end_layout
26018
26019 \end_inset
26020 </cell>
26021 <cell alignment="center" valignment="top" usebox="none">
26022 \begin_inset Text
26023
26024 \begin_layout Plain Layout
26025 \begin_inset Formula $\hspace{1cm}\raisebox{5mm}{}\lim_{x\to A}x=B$
26026 \end_inset
26027
26028
26029 \end_layout
26030
26031 \end_inset
26032 </cell>
26033 </row>
26034 </lyxtabular>
26035
26036 \end_inset
26037
26038
26039 \end_layout
26040
26041 \begin_layout Standard
26042 In einer abgesetzten Formel steht der Grenzwert wie gewohnt darunter:
26043 \begin_inset Formula 
26044 \[
26045 \lim_{x\to A}x=B
26046 \]
26047
26048 \end_inset
26049
26050
26051 \end_layout
26052
26053 \begin_layout Subsection
26054 Modulo-Funktionen
26055 \begin_inset Index idx
26056 status collapsed
26057
26058 \begin_layout Plain Layout
26059 Funktionen ! Modulo-
26060 \end_layout
26061
26062 \end_inset
26063
26064
26065 \end_layout
26066
26067 \begin_layout Standard
26068 Eine Besonderheit stellt die Modulo-Funktion dar, denn es gibt sie in vier
26069  Varianten.
26070 \end_layout
26071
26072 \begin_layout Standard
26073 Die Varianten in einer abgesetzten Formel:
26074 \begin_inset Formula 
26075 \begin{align*}
26076 \underline{\textrm{Befehl}\raisebox{-0.9mm}{}} &  & \underline{\textrm{Ergebnis}}\\
26077 \mathrm{a\backslash mod\textrm{\leer}b} &  & a\mod b\\
26078 \mathrm{a\backslash pmod\textrm{\leer}b} &  & a\pmod b\\
26079 \mathrm{a\backslash bmod\textrm{\leer}b} &  & a\bmod b\\
26080 \mathrm{a\backslash pod\textrm{\leer}b} &  & a\pod b
26081 \end{align*}
26082
26083 \end_inset
26084
26085
26086 \end_layout
26087
26088 \begin_layout Standard
26089 In einer eingebetteten Formel wird bei allen Varianten vor den Funktionsnamen
26090  weniger Leerraum gesetzt.
26091  Standardmäßig beachten die Modulo-Funktionen nur das erste, folgende Zeichen.
26092  Um mehrere Zeichen zu verwenden, muss man sie in TeX-Klammern setzen:
26093 \begin_inset Formula 
26094 \begin{align*}
26095 \underline{\textrm{Befehl}\raisebox{-0.9mm}{}} &  & \underline{\textrm{Ergebnis}}\\
26096 \mathrm{a\backslash pod\textrm{\leer}bcd} &  & a\pod bcd\\
26097 \mathrm{a\backslash pod\backslash\{bc\to d} &  & a\pod{bc}d
26098 \end{align*}
26099
26100 \end_inset
26101
26102
26103 \end_layout
26104
26105 \begin_layout Section
26106 Sonderzeichen
26107 \begin_inset Index idx
26108 status collapsed
26109
26110 \begin_layout Plain Layout
26111 Sonderzeichen
26112 \end_layout
26113
26114 \end_inset
26115
26116
26117 \end_layout
26118
26119 \begin_layout Subsection
26120 Sonderzeichen im mathematischen Text
26121 \end_layout
26122
26123 \begin_layout Standard
26124 Die folgenden Befehle können nur im mathematischen Textmodus oder im TeX-Modus
26125  verwendet werden:
26126 \end_layout
26127
26128 \begin_layout Standard
26129 \begin_inset space \hfill{}
26130 \end_inset
26131
26132
26133 \begin_inset Tabular
26134 <lyxtabular version="3" rows="8" columns="2">
26135 <features rotate="0" tabularvalignment="middle">
26136 <column alignment="block" valignment="top">
26137 <column alignment="block" valignment="top">
26138 <row>
26139 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
26140 \begin_inset Text
26141
26142 \begin_layout Plain Layout
26143 Befehl
26144 \end_layout
26145
26146 \end_inset
26147 </cell>
26148 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
26149 \begin_inset Text
26150
26151 \begin_layout Plain Layout
26152 Ergebnis
26153 \end_layout
26154
26155 \end_inset
26156 </cell>
26157 </row>
26158 <row>
26159 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26160 \begin_inset Text
26161
26162 \begin_layout Plain Layout
26163
26164 \backslash
26165 oe
26166 \end_layout
26167
26168 \end_inset
26169 </cell>
26170 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26171 \begin_inset Text
26172
26173 \begin_layout Plain Layout
26174 \begin_inset Formula $\textrm{œ}$
26175 \end_inset
26176
26177
26178 \end_layout
26179
26180 \end_inset
26181 </cell>
26182 </row>
26183 <row>
26184 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26185 \begin_inset Text
26186
26187 \begin_layout Plain Layout
26188
26189 \backslash
26190 OE
26191 \end_layout
26192
26193 \end_inset
26194 </cell>
26195 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26196 \begin_inset Text
26197
26198 \begin_layout Plain Layout
26199 \begin_inset Formula $\textrm{Œ}$
26200 \end_inset
26201
26202
26203 \end_layout
26204
26205 \end_inset
26206 </cell>
26207 </row>
26208 <row>
26209 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26210 \begin_inset Text
26211
26212 \begin_layout Plain Layout
26213
26214 \backslash
26215 ae
26216 \end_layout
26217
26218 \end_inset
26219 </cell>
26220 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26221 \begin_inset Text
26222
26223 \begin_layout Plain Layout
26224 \begin_inset Formula $\textrm{æ}$
26225 \end_inset
26226
26227
26228 \end_layout
26229
26230 \end_inset
26231 </cell>
26232 </row>
26233 <row>
26234 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26235 \begin_inset Text
26236
26237 \begin_layout Plain Layout
26238
26239 \backslash
26240 AE
26241 \end_layout
26242
26243 \end_inset
26244 </cell>
26245 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26246 \begin_inset Text
26247
26248 \begin_layout Plain Layout
26249 \begin_inset Formula $\textrm{Æ}$
26250 \end_inset
26251
26252
26253 \end_layout
26254
26255 \end_inset
26256 </cell>
26257 </row>
26258 <row>
26259 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26260 \begin_inset Text
26261
26262 \begin_layout Plain Layout
26263
26264 \backslash
26265 aa
26266 \end_layout
26267
26268 \end_inset
26269 </cell>
26270 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26271 \begin_inset Text
26272
26273 \begin_layout Plain Layout
26274 \begin_inset Formula $\textrm{\aa}$
26275 \end_inset
26276
26277
26278 \end_layout
26279
26280 \end_inset
26281 </cell>
26282 </row>
26283 <row>
26284 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
26285 \begin_inset Text
26286
26287 \begin_layout Plain Layout
26288
26289 \backslash
26290 AA
26291 \begin_inset Index idx
26292 status collapsed
26293
26294 \begin_layout Plain Layout
26295
26296 \backslash
26297 @
26298 \begin_inset ERT
26299 status collapsed
26300
26301 \begin_layout Plain Layout
26302
26303
26304 \backslash
26305 textrm{
26306 \backslash
26307 AA}
26308 \end_layout
26309
26310 \end_inset
26311
26312
26313 \end_layout
26314
26315 \end_inset
26316
26317
26318 \end_layout
26319
26320 \end_inset
26321 </cell>
26322 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
26323 \begin_inset Text
26324
26325 \begin_layout Plain Layout
26326 \begin_inset Formula $\textrm{Å}$
26327 \end_inset
26328
26329
26330 \end_layout
26331
26332 \end_inset
26333 </cell>
26334 </row>
26335 <row>
26336 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
26337 \begin_inset Text
26338
26339 \begin_layout Plain Layout
26340
26341 \backslash
26342 i
26343 \end_layout
26344
26345 \end_inset
26346 </cell>
26347 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
26348 \begin_inset Text
26349
26350 \begin_layout Plain Layout
26351 \begin_inset Formula $\textrm{ı}$
26352 \end_inset
26353
26354
26355 \end_layout
26356
26357 \end_inset
26358 </cell>
26359 </row>
26360 </lyxtabular>
26361
26362 \end_inset
26363
26364
26365 \begin_inset space \hfill{}
26366 \end_inset
26367
26368
26369 \begin_inset Tabular
26370 <lyxtabular version="3" rows="8" columns="2">
26371 <features rotate="0" tabularvalignment="middle">
26372 <column alignment="block" valignment="top">
26373 <column alignment="center" valignment="top">
26374 <row>
26375 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
26376 \begin_inset Text
26377
26378 \begin_layout Plain Layout
26379 Befehl
26380 \begin_inset Note Note
26381 status collapsed
26382
26383 \begin_layout Plain Layout
26384 Der Leerraum von 0
26385 \begin_inset space \thinspace{}
26386 \end_inset
26387
26388 mm dient nur zur Trennung,da sonst im Ausdruck ¡ bzw.
26389 \begin_inset space \space{}
26390 \end_inset
26391
26392 ¿ erscheinen würde.
26393 \end_layout
26394
26395 \end_inset
26396
26397
26398 \end_layout
26399
26400 \end_inset
26401 </cell>
26402 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
26403 \begin_inset Text
26404
26405 \begin_layout Plain Layout
26406 Ergebnis
26407 \end_layout
26408
26409 \end_inset
26410 </cell>
26411 </row>
26412 <row>
26413 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26414 \begin_inset Text
26415
26416 \begin_layout Plain Layout
26417
26418 \backslash
26419 o
26420 \end_layout
26421
26422 \end_inset
26423 </cell>
26424 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26425 \begin_inset Text
26426
26427 \begin_layout Plain Layout
26428 \begin_inset Formula $\textrm{ø}$
26429 \end_inset
26430
26431
26432 \end_layout
26433
26434 \end_inset
26435 </cell>
26436 </row>
26437 <row>
26438 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26439 \begin_inset Text
26440
26441 \begin_layout Plain Layout
26442
26443 \backslash
26444 O
26445 \end_layout
26446
26447 \end_inset
26448 </cell>
26449 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26450 \begin_inset Text
26451
26452 \begin_layout Plain Layout
26453 \begin_inset Formula $\textrm{Ø}$
26454 \end_inset
26455
26456
26457 \end_layout
26458
26459 \end_inset
26460 </cell>
26461 </row>
26462 <row>
26463 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26464 \begin_inset Text
26465
26466 \begin_layout Plain Layout
26467
26468 \backslash
26469 l
26470 \end_layout
26471
26472 \end_inset
26473 </cell>
26474 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26475 \begin_inset Text
26476
26477 \begin_layout Plain Layout
26478 \begin_inset Formula $\textrm{ł}$
26479 \end_inset
26480
26481
26482 \end_layout
26483
26484 \end_inset
26485 </cell>
26486 </row>
26487 <row>
26488 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26489 \begin_inset Text
26490
26491 \begin_layout Plain Layout
26492
26493 \backslash
26494 L
26495 \end_layout
26496
26497 \end_inset
26498 </cell>
26499 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26500 \begin_inset Text
26501
26502 \begin_layout Plain Layout
26503 \begin_inset Formula $\textrm{Ł}$
26504 \end_inset
26505
26506
26507 \end_layout
26508
26509 \end_inset
26510 </cell>
26511 </row>
26512 <row>
26513 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
26514 \begin_inset Text
26515
26516 \begin_layout Plain Layout
26517 !
26518 \begin_inset space \hspace{}
26519 \length 0mm
26520 \end_inset
26521
26522 `
26523 \begin_inset ERT
26524 status collapsed
26525
26526 \begin_layout Plain Layout
26527
26528
26529 \backslash
26530 leer 
26531 \end_layout
26532
26533 \end_inset
26534
26535
26536 \end_layout
26537
26538 \end_inset
26539 </cell>
26540 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
26541 \begin_inset Text
26542
26543 \begin_layout Plain Layout
26544 \begin_inset Formula $\textrm{!`}$
26545 \end_inset
26546
26547
26548 \end_layout
26549
26550 \end_inset
26551 </cell>
26552 </row>
26553 <row>
26554 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
26555 \begin_inset Text
26556
26557 \begin_layout Plain Layout
26558 ?
26559 \begin_inset space \hspace{}
26560 \length 0mm
26561 \end_inset
26562
26563 `
26564 \begin_inset ERT
26565 status collapsed
26566
26567 \begin_layout Plain Layout
26568
26569
26570 \backslash
26571 leer 
26572 \end_layout
26573
26574 \end_inset
26575
26576
26577 \end_layout
26578
26579 \end_inset
26580 </cell>
26581 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
26582 \begin_inset Text
26583
26584 \begin_layout Plain Layout
26585 \begin_inset Formula $\textrm{?`}$
26586 \end_inset
26587
26588
26589 \end_layout
26590
26591 \end_inset
26592 </cell>
26593 </row>
26594 <row>
26595 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
26596 \begin_inset Text
26597
26598 \begin_layout Plain Layout
26599
26600 \backslash
26601 j
26602 \end_layout
26603
26604 \end_inset
26605 </cell>
26606 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
26607 \begin_inset Text
26608
26609 \begin_layout Plain Layout
26610 \begin_inset Formula $\textrm{ȷ}$
26611 \end_inset
26612
26613
26614 \end_layout
26615
26616 \end_inset
26617 </cell>
26618 </row>
26619 </lyxtabular>
26620
26621 \end_inset
26622
26623
26624 \begin_inset space \hfill{}
26625 \end_inset
26626
26627
26628 \end_layout
26629
26630 \begin_layout Standard
26631 Die Zeichen 
26632 \begin_inset Formula $\textrm{\textrm{Å}}$
26633 \end_inset
26634
26635  und 
26636 \begin_inset Formula $\textrm{\textrm{Ø}}$
26637 \end_inset
26638
26639  können auch über den Mathe-Werkzeugleistenknopf 
26640 \begin_inset Graphics
26641         filename ../../images/math/digamma.png
26642         scale 85
26643
26644 \end_inset
26645
26646  eingefügt werden.
26647 \end_layout
26648
26649 \begin_layout Standard
26650 Eine Ausnahme bilden die Befehle 
26651 \series bold
26652 !
26653 \begin_inset space \hspace{}
26654 \length 0mm
26655 \end_inset
26656
26657 `
26658 \series default
26659  und 
26660 \series bold
26661 ?
26662 \begin_inset space \hspace{}
26663 \length 0mm
26664 \end_inset
26665
26666 `
26667 \series default
26668 , denn man kann sie in LyX direkt in den Text eingeben.
26669 \end_layout
26670
26671 \begin_layout Subsection
26672 Akzente im Text
26673 \begin_inset CommandInset label
26674 LatexCommand label
26675 name "sub:Sonderzeichen-Akzente"
26676
26677 \end_inset
26678
26679
26680 \begin_inset Index idx
26681 status collapsed
26682
26683 \begin_layout Plain Layout
26684 Akzente ! im Text
26685 \end_layout
26686
26687 \end_inset
26688
26689
26690 \end_layout
26691
26692 \begin_layout Standard
26693 Man kann mit den folgenden Befehlen sämtliche Buchstaben akzentuieren.
26694  Die Befehle müssen dazu im TeX-Modus eingegeben werden.
26695 \end_layout
26696
26697 \begin_layout Standard
26698 \begin_inset space \hfill{}
26699 \end_inset
26700
26701
26702 \begin_inset Tabular
26703 <lyxtabular version="3" rows="8" columns="2">
26704 <features rotate="0" tabularvalignment="middle">
26705 <column alignment="block" valignment="top">
26706 <column alignment="block" valignment="top">
26707 <row>
26708 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
26709 \begin_inset Text
26710
26711 \begin_layout Plain Layout
26712 Befehl
26713 \end_layout
26714
26715 \end_inset
26716 </cell>
26717 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
26718 \begin_inset Text
26719
26720 \begin_layout Plain Layout
26721 Ergebnis
26722 \end_layout
26723
26724 \end_inset
26725 </cell>
26726 </row>
26727 <row>
26728 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26729 \begin_inset Text
26730
26731 \begin_layout Plain Layout
26732
26733 \backslash
26734
26735 \begin_inset Quotes grd
26736 \end_inset
26737
26738 e
26739 \end_layout
26740
26741 \end_inset
26742 </cell>
26743 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26744 \begin_inset Text
26745
26746 \begin_layout Plain Layout
26747 \begin_inset ERT
26748 status collapsed
26749
26750 \begin_layout Plain Layout
26751
26752
26753 \backslash
26754 "e
26755 \end_layout
26756
26757 \end_inset
26758
26759
26760 \end_layout
26761
26762 \end_inset
26763 </cell>
26764 </row>
26765 <row>
26766 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26767 \begin_inset Text
26768
26769 \begin_layout Plain Layout
26770
26771 \backslash
26772 `e
26773 \end_layout
26774
26775 \end_inset
26776 </cell>
26777 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26778 \begin_inset Text
26779
26780 \begin_layout Plain Layout
26781 \begin_inset ERT
26782 status collapsed
26783
26784 \begin_layout Plain Layout
26785
26786
26787 \backslash
26788 `e
26789 \end_layout
26790
26791 \end_inset
26792
26793
26794 \end_layout
26795
26796 \end_inset
26797 </cell>
26798 </row>
26799 <row>
26800 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26801 \begin_inset Text
26802
26803 \begin_layout Plain Layout
26804
26805 \backslash
26806 ^
26807 \begin_inset ERT
26808 status collapsed
26809
26810 \begin_layout Plain Layout
26811
26812
26813 \backslash
26814 leer 
26815 \end_layout
26816
26817 \end_inset
26818
26819 e
26820 \end_layout
26821
26822 \end_inset
26823 </cell>
26824 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26825 \begin_inset Text
26826
26827 \begin_layout Plain Layout
26828 \begin_inset ERT
26829 status collapsed
26830
26831 \begin_layout Plain Layout
26832
26833
26834 \backslash
26835 ^e
26836 \end_layout
26837
26838 \end_inset
26839
26840
26841 \end_layout
26842
26843 \end_inset
26844 </cell>
26845 </row>
26846 <row>
26847 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26848 \begin_inset Text
26849
26850 \begin_layout Plain Layout
26851
26852 \backslash
26853 =e
26854 \end_layout
26855
26856 \end_inset
26857 </cell>
26858 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26859 \begin_inset Text
26860
26861 \begin_layout Plain Layout
26862 \begin_inset ERT
26863 status collapsed
26864
26865 \begin_layout Plain Layout
26866
26867
26868 \backslash
26869 =e
26870 \end_layout
26871
26872 \end_inset
26873
26874
26875 \end_layout
26876
26877 \end_inset
26878 </cell>
26879 </row>
26880 <row>
26881 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26882 \begin_inset Text
26883
26884 \begin_layout Plain Layout
26885
26886 \backslash
26887 u
26888 \begin_inset ERT
26889 status collapsed
26890
26891 \begin_layout Plain Layout
26892
26893
26894 \backslash
26895 leer 
26896 \end_layout
26897
26898 \end_inset
26899
26900 e
26901 \end_layout
26902
26903 \end_inset
26904 </cell>
26905 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26906 \begin_inset Text
26907
26908 \begin_layout Plain Layout
26909 \begin_inset ERT
26910 status collapsed
26911
26912 \begin_layout Plain Layout
26913
26914
26915 \backslash
26916 u e
26917 \end_layout
26918
26919 \end_inset
26920
26921
26922 \end_layout
26923
26924 \end_inset
26925 </cell>
26926 </row>
26927 <row>
26928 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
26929 \begin_inset Text
26930
26931 \begin_layout Plain Layout
26932
26933 \backslash
26934 b
26935 \begin_inset ERT
26936 status collapsed
26937
26938 \begin_layout Plain Layout
26939
26940
26941 \backslash
26942 leer 
26943 \end_layout
26944
26945 \end_inset
26946
26947 e
26948 \end_layout
26949
26950 \end_inset
26951 </cell>
26952 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
26953 \begin_inset Text
26954
26955 \begin_layout Plain Layout
26956 \begin_inset ERT
26957 status collapsed
26958
26959 \begin_layout Plain Layout
26960
26961
26962 \backslash
26963 b e
26964 \end_layout
26965
26966 \end_inset
26967
26968
26969 \end_layout
26970
26971 \end_inset
26972 </cell>
26973 </row>
26974 <row>
26975 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
26976 \begin_inset Text
26977
26978 \begin_layout Plain Layout
26979
26980 \backslash
26981 t
26982 \begin_inset ERT
26983 status collapsed
26984
26985 \begin_layout Plain Layout
26986
26987
26988 \backslash
26989 leer 
26990 \end_layout
26991
26992 \end_inset
26993
26994 ee
26995 \end_layout
26996
26997 \end_inset
26998 </cell>
26999 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
27000 \begin_inset Text
27001
27002 \begin_layout Plain Layout
27003 \begin_inset ERT
27004 status collapsed
27005
27006 \begin_layout Plain Layout
27007
27008
27009 \backslash
27010 t ee
27011 \end_layout
27012
27013 \end_inset
27014
27015
27016 \end_layout
27017
27018 \end_inset
27019 </cell>
27020 </row>
27021 </lyxtabular>
27022
27023 \end_inset
27024
27025
27026 \begin_inset space \hfill{}
27027 \end_inset
27028
27029
27030 \begin_inset Tabular
27031 <lyxtabular version="3" rows="8" columns="2">
27032 <features rotate="0" tabularvalignment="middle">
27033 <column alignment="block" valignment="top">
27034 <column alignment="center" valignment="top">
27035 <row>
27036 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
27037 \begin_inset Text
27038
27039 \begin_layout Plain Layout
27040 Befehl
27041 \end_layout
27042
27043 \end_inset
27044 </cell>
27045 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
27046 \begin_inset Text
27047
27048 \begin_layout Plain Layout
27049 Ergebnis
27050 \end_layout
27051
27052 \end_inset
27053 </cell>
27054 </row>
27055 <row>
27056 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27057 \begin_inset Text
27058
27059 \begin_layout Plain Layout
27060
27061 \backslash
27062 H
27063 \begin_inset ERT
27064 status collapsed
27065
27066 \begin_layout Plain Layout
27067
27068
27069 \backslash
27070 leer 
27071 \end_layout
27072
27073 \end_inset
27074
27075 e
27076 \end_layout
27077
27078 \end_inset
27079 </cell>
27080 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
27081 \begin_inset Text
27082
27083 \begin_layout Plain Layout
27084 \begin_inset ERT
27085 status collapsed
27086
27087 \begin_layout Plain Layout
27088
27089
27090 \backslash
27091 H e
27092 \end_layout
27093
27094 \end_inset
27095
27096
27097 \end_layout
27098
27099 \end_inset
27100 </cell>
27101 </row>
27102 <row>
27103 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27104 \begin_inset Text
27105
27106 \begin_layout Plain Layout
27107
27108 \backslash
27109 'e
27110 \end_layout
27111
27112 \end_inset
27113 </cell>
27114 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
27115 \begin_inset Text
27116
27117 \begin_layout Plain Layout
27118 \begin_inset ERT
27119 status collapsed
27120
27121 \begin_layout Plain Layout
27122
27123
27124 \backslash
27125 'e
27126 \end_layout
27127
27128 \end_inset
27129
27130
27131 \end_layout
27132
27133 \end_inset
27134 </cell>
27135 </row>
27136 <row>
27137 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27138 \begin_inset Text
27139
27140 \begin_layout Plain Layout
27141
27142 \backslash
27143 ~e
27144 \begin_inset Index idx
27145 status collapsed
27146
27147 \begin_layout Plain Layout
27148 Tilde
27149 \end_layout
27150
27151 \end_inset
27152
27153
27154 \end_layout
27155
27156 \end_inset
27157 </cell>
27158 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
27159 \begin_inset Text
27160
27161 \begin_layout Plain Layout
27162 \begin_inset ERT
27163 status collapsed
27164
27165 \begin_layout Plain Layout
27166
27167
27168 \backslash
27169 ~e
27170 \end_layout
27171
27172 \end_inset
27173
27174
27175 \end_layout
27176
27177 \end_inset
27178 </cell>
27179 </row>
27180 <row>
27181 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27182 \begin_inset Text
27183
27184 \begin_layout Plain Layout
27185
27186 \backslash
27187 .e
27188 \end_layout
27189
27190 \end_inset
27191 </cell>
27192 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
27193 \begin_inset Text
27194
27195 \begin_layout Plain Layout
27196 \begin_inset ERT
27197 status collapsed
27198
27199 \begin_layout Plain Layout
27200
27201
27202 \backslash
27203 .e
27204 \end_layout
27205
27206 \end_inset
27207
27208
27209 \end_layout
27210
27211 \end_inset
27212 </cell>
27213 </row>
27214 <row>
27215 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
27216 \begin_inset Text
27217
27218 \begin_layout Plain Layout
27219
27220 \backslash
27221 v
27222 \begin_inset ERT
27223 status collapsed
27224
27225 \begin_layout Plain Layout
27226
27227
27228 \backslash
27229 leer 
27230 \end_layout
27231
27232 \end_inset
27233
27234 e
27235 \end_layout
27236
27237 \end_inset
27238 </cell>
27239 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
27240 \begin_inset Text
27241
27242 \begin_layout Plain Layout
27243 \begin_inset ERT
27244 status collapsed
27245
27246 \begin_layout Plain Layout
27247
27248
27249 \backslash
27250 v e
27251 \end_layout
27252
27253 \end_inset
27254
27255
27256 \end_layout
27257
27258 \end_inset
27259 </cell>
27260 </row>
27261 <row>
27262 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
27263 \begin_inset Text
27264
27265 \begin_layout Plain Layout
27266
27267 \backslash
27268 d
27269 \begin_inset ERT
27270 status collapsed
27271
27272 \begin_layout Plain Layout
27273
27274
27275 \backslash
27276 leer 
27277 \end_layout
27278
27279 \end_inset
27280
27281 e
27282 \end_layout
27283
27284 \end_inset
27285 </cell>
27286 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
27287 \begin_inset Text
27288
27289 \begin_layout Plain Layout
27290 \begin_inset ERT
27291 status collapsed
27292
27293 \begin_layout Plain Layout
27294
27295
27296 \backslash
27297 d e
27298 \end_layout
27299
27300 \end_inset
27301
27302
27303 \end_layout
27304
27305 \end_inset
27306 </cell>
27307 </row>
27308 <row>
27309 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
27310 \begin_inset Text
27311
27312 \begin_layout Plain Layout
27313
27314 \backslash
27315 c
27316 \begin_inset ERT
27317 status collapsed
27318
27319 \begin_layout Plain Layout
27320
27321
27322 \backslash
27323 leer 
27324 \end_layout
27325
27326 \end_inset
27327
27328 e
27329 \end_layout
27330
27331 \end_inset
27332 </cell>
27333 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
27334 \begin_inset Text
27335
27336 \begin_layout Plain Layout
27337 \begin_inset ERT
27338 status collapsed
27339
27340 \begin_layout Plain Layout
27341
27342
27343 \backslash
27344 c e
27345 \end_layout
27346
27347 \end_inset
27348
27349
27350 \end_layout
27351
27352 \end_inset
27353 </cell>
27354 </row>
27355 </lyxtabular>
27356
27357 \end_inset
27358
27359
27360 \begin_inset space \hfill{}
27361 \end_inset
27362
27363
27364 \end_layout
27365
27366 \begin_layout Standard
27367 \begin_inset VSpace medskip
27368 \end_inset
27369
27370 Mit dem Befehl 
27371 \series bold
27372
27373 \backslash
27374 t
27375 \series default
27376  können auch zwei verschiedene Zeichen akzentuiert werden.
27377  Der Befehl 
27378 \series bold
27379
27380 \backslash
27381 t
27382 \begin_inset ERT
27383 status collapsed
27384
27385 \begin_layout Plain Layout
27386
27387
27388 \backslash
27389 leer 
27390 \end_layout
27391
27392 \end_inset
27393
27394 sz
27395 \series default
27396  ergibt: 
27397 \begin_inset ERT
27398 status collapsed
27399
27400 \begin_layout Plain Layout
27401
27402
27403 \backslash
27404 t sz
27405 \end_layout
27406
27407 \end_inset
27408
27409
27410 \end_layout
27411
27412 \begin_layout Standard
27413 Die Akzente 
27414 \series bold
27415 `
27416 \series default
27417  , 
27418 \series bold
27419 '
27420 \series default
27421  und 
27422 \series bold
27423 ^
27424 \series default
27425  können in Verbindung mit Selbstlauten auch direkt über die Tastatur eingegeben
27426  werden ohne den TeX-Modus zu benutzen.
27427  Dasselbe gilt für die Tilde
27428 \begin_inset Foot
27429 status collapsed
27430
27431 \begin_layout Plain Layout
27432 Gilt nur für Tastaturen, bei denen die Tilde als Akzent definiert ist.
27433 \end_layout
27434
27435 \end_inset
27436
27437  
27438 \series bold
27439 ~
27440 \series default
27441  in Verbindung mit 
27442 \emph on
27443 a
27444 \emph default
27445  , 
27446 \emph on
27447 n
27448 \emph default
27449  oder 
27450 \emph on
27451 o
27452 \emph default
27453 .
27454 \end_layout
27455
27456 \begin_layout Standard
27457 Die Befehle 
27458 \series bold
27459
27460 \backslash
27461 b
27462 \series default
27463  , 
27464 \series bold
27465
27466 \backslash
27467 c
27468 \series default
27469  , 
27470 \series bold
27471
27472 \backslash
27473 d
27474 \series default
27475  , 
27476 \series bold
27477
27478 \backslash
27479 H
27480 \series default
27481  , 
27482 \series bold
27483
27484 \backslash
27485 t
27486 \series default
27487  , 
27488 \series bold
27489
27490 \backslash
27491 u
27492 \series default
27493  , 
27494 \series bold
27495
27496 \backslash
27497 v
27498 \series default
27499  und direkt über die Tastatur eingegebene Akzente sind auch im mathematischen
27500  Textmodus verfügbar.
27501  Für die restlichen Akzente gibt es in Formeln spezielle Mathebefehle, siehe
27502  
27503 \begin_inset CommandInset ref
27504 LatexCommand ref
27505 reference "sub:Akzente-für-ein"
27506
27507 \end_inset
27508
27509 .
27510 \end_layout
27511
27512 \begin_layout Standard
27513 \begin_inset VSpace bigskip
27514 \end_inset
27515
27516 Des Weiteren kann man mit dem Befehl 
27517 \series bold
27518
27519 \backslash
27520 textcircled
27521 \series default
27522
27523 \begin_inset Index idx
27524 status collapsed
27525
27526 \begin_layout Plain Layout
27527 Befehle ! T ! 
27528 \backslash
27529 textcircled
27530 \end_layout
27531
27532 \end_inset
27533
27534 , ähnlich dem Copyrightsymbol, sämtliche Zahlen und Buchstaben in einen
27535  Kreis setzen, quasi mit einem Kreis akzentuieren.
27536 \end_layout
27537
27538 \begin_layout Standard
27539 \align center
27540 \begin_inset Tabular
27541 <lyxtabular version="3" rows="3" columns="2">
27542 <features rotate="0" tabularvalignment="middle">
27543 <column alignment="center" valignment="top">
27544 <column alignment="center" valignment="top">
27545 <row>
27546 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
27547 \begin_inset Text
27548
27549 \begin_layout Plain Layout
27550 Befehl
27551 \end_layout
27552
27553 \end_inset
27554 </cell>
27555 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
27556 \begin_inset Text
27557
27558 \begin_layout Plain Layout
27559 Ergebnis
27560 \begin_inset Note Note
27561 status collapsed
27562
27563 \begin_layout Plain Layout
27564
27565 \series bold
27566
27567 \backslash
27568 raisebox
27569 \series default
27570  in der Formel dient nur als Abstandhalter.
27571 \end_layout
27572
27573 \end_inset
27574
27575
27576 \end_layout
27577
27578 \end_inset
27579 </cell>
27580 </row>
27581 <row>
27582 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27583 \begin_inset Text
27584
27585 \begin_layout Plain Layout
27586
27587 \backslash
27588 textcircled{w}
27589 \end_layout
27590
27591 \end_inset
27592 </cell>
27593 <cell multicolumn="1" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
27594 \begin_inset Text
27595
27596 \begin_layout Plain Layout
27597 \begin_inset ERT
27598 status collapsed
27599
27600 \begin_layout Plain Layout
27601
27602
27603 \backslash
27604 textcircled{w}
27605 \end_layout
27606
27607 \end_inset
27608
27609
27610 \end_layout
27611
27612 \end_inset
27613 </cell>
27614 </row>
27615 <row>
27616 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
27617 \begin_inset Text
27618
27619 \begin_layout Plain Layout
27620
27621 \backslash
27622 Large 
27623 \backslash
27624 textcircled{
27625 \backslash
27626 normalsize
27627 \backslash
27628 protect
27629 \backslash
27630 raisebox{-1.5pt}{W}}
27631 \end_layout
27632
27633 \end_inset
27634 </cell>
27635 <cell multicolumn="1" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
27636 \begin_inset Text
27637
27638 \begin_layout Plain Layout
27639 \begin_inset Formula $\raisebox{4.5mm}{}$
27640 \end_inset
27641
27642
27643 \begin_inset ERT
27644 status collapsed
27645
27646 \begin_layout Plain Layout
27647
27648
27649 \backslash
27650 Large 
27651 \backslash
27652 textcircled{
27653 \backslash
27654 normalsize
27655 \backslash
27656 protect
27657 \backslash
27658 raisebox{-1.5pt}W}
27659 \end_layout
27660
27661 \end_inset
27662
27663
27664 \begin_inset Formula $\raisebox{-2mm}{}$
27665 \end_inset
27666
27667
27668 \end_layout
27669
27670 \end_inset
27671 </cell>
27672 </row>
27673 </lyxtabular>
27674
27675 \end_inset
27676
27677
27678 \end_layout
27679
27680 \begin_layout Standard
27681 Man muss darauf achten, dass das Zeichen in einen Kreis passt.
27682  
27683 \series bold
27684
27685 \backslash
27686 Large
27687 \series default
27688
27689 \begin_inset Foot
27690 status collapsed
27691
27692 \begin_layout Plain Layout
27693 siehe 
27694 \begin_inset CommandInset ref
27695 LatexCommand ref
27696 reference "sub:Schriftgrößen"
27697
27698 \end_inset
27699
27700
27701 \end_layout
27702
27703 \end_inset
27704
27705  bestimmt dabei die Größe des Kreises.
27706  Mit Hilfe von 
27707 \series bold
27708
27709 \backslash
27710 raisebox
27711 \series default
27712
27713 \begin_inset Foot
27714 status collapsed
27715
27716 \begin_layout Plain Layout
27717 siehe 
27718 \begin_inset CommandInset ref
27719 LatexCommand ref
27720 reference "sub:Boxen-ohne-Rahmen"
27721
27722 \end_inset
27723
27724
27725 \end_layout
27726
27727 \end_inset
27728
27729  kann man das Zeichen zentrieren.
27730 \end_layout
27731
27732 \begin_layout Subsection
27733 Minuskelziffern
27734 \begin_inset Index idx
27735 status collapsed
27736
27737 \begin_layout Plain Layout
27738 Minuskelziffern
27739 \end_layout
27740
27741 \end_inset
27742
27743
27744 \end_layout
27745
27746 \begin_layout Standard
27747 Minuskelziffern werden mit dem Befehl 
27748 \series bold
27749
27750 \backslash
27751 oldstylenums
27752 \series default
27753
27754 \begin_inset Index idx
27755 status collapsed
27756
27757 \begin_layout Plain Layout
27758 Befehle ! O ! 
27759 \backslash
27760 oldstylenums
27761 \end_layout
27762
27763 \end_inset
27764
27765  erzeugt.
27766  Der Befehl ist sowohl in einer Formel als auch im TeX-Modus verwendbar.
27767  Das Befehlsschema lautet:
27768 \end_layout
27769
27770 \begin_layout Standard
27771
27772 \series bold
27773
27774 \backslash
27775 oldstylenums{Ziffer}
27776 \end_layout
27777
27778 \begin_layout Standard
27779 Der Befehl 
27780 \series bold
27781
27782 \backslash
27783 oldstylenums{0123456789
27784 \series default
27785  ergibt: 
27786 \begin_inset Formula $\oldstylenums{0123456789}$
27787 \end_inset
27788
27789
27790 \end_layout
27791
27792 \begin_layout Subsection
27793 Sonstige Sonderzeichen
27794 \begin_inset CommandInset label
27795 LatexCommand label
27796 name "sub:Sonstige-Sonderzeichen"
27797
27798 \end_inset
27799
27800
27801 \begin_inset Index idx
27802 status collapsed
27803
27804 \begin_layout Plain Layout
27805 Sonderzeichen ! sonstige
27806 \end_layout
27807
27808 \end_inset
27809
27810
27811 \end_layout
27812
27813 \begin_layout Standard
27814 Folgende Zeichen können in eine Formel nur mit Befehlen eingegeben werden:
27815 \end_layout
27816
27817 \begin_layout Standard
27818 \align center
27819 \begin_inset Tabular
27820 <lyxtabular version="3" rows="4" columns="2">
27821 <features rotate="0" tabularvalignment="middle">
27822 <column alignment="center" valignment="top">
27823 <column alignment="center" valignment="top">
27824 <row>
27825 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
27826 \begin_inset Text
27827
27828 \begin_layout Plain Layout
27829 Befehl
27830 \end_layout
27831
27832 \end_inset
27833 </cell>
27834 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
27835 \begin_inset Text
27836
27837 \begin_layout Plain Layout
27838 Ergebnis
27839 \end_layout
27840
27841 \end_inset
27842 </cell>
27843 </row>
27844 <row>
27845 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27846 \begin_inset Text
27847
27848 \begin_layout Plain Layout
27849
27850 \backslash
27851 ^
27852 \begin_inset ERT
27853 status collapsed
27854
27855 \begin_layout Plain Layout
27856
27857
27858 \backslash
27859 leer 
27860 \end_layout
27861
27862 \end_inset
27863
27864
27865 \end_layout
27866
27867 \end_inset
27868 </cell>
27869 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
27870 \begin_inset Text
27871
27872 \begin_layout Plain Layout
27873 \begin_inset Formula $\mathcircumflex$
27874 \end_inset
27875
27876
27877 \end_layout
27878
27879 \end_inset
27880 </cell>
27881 </row>
27882 <row>
27883 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27884 \begin_inset Text
27885
27886 \begin_layout Plain Layout
27887
27888 \backslash
27889 _
27890 \end_layout
27891
27892 \end_inset
27893 </cell>
27894 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
27895 \begin_inset Text
27896
27897 \begin_layout Plain Layout
27898 \begin_inset Formula $\_$
27899 \end_inset
27900
27901
27902 \end_layout
27903
27904 \end_inset
27905 </cell>
27906 </row>
27907 <row>
27908 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
27909 \begin_inset Text
27910
27911 \begin_layout Plain Layout
27912 ^
27913 \begin_inset ERT
27914 status collapsed
27915
27916 \begin_layout Plain Layout
27917
27918
27919 \backslash
27920 leer 
27921 \end_layout
27922
27923 \end_inset
27924
27925
27926 \backslash
27927 circ
27928 \begin_inset Index idx
27929 status collapsed
27930
27931 \begin_layout Plain Layout
27932
27933 \backslash
27934
27935 \end_layout
27936
27937 \end_inset
27938
27939
27940 \end_layout
27941
27942 \end_inset
27943 </cell>
27944 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
27945 \begin_inset Text
27946
27947 \begin_layout Plain Layout
27948 \begin_inset Formula $^{\circ}$
27949 \end_inset
27950
27951
27952 \end_layout
27953
27954 \end_inset
27955 </cell>
27956 </row>
27957 </lyxtabular>
27958
27959 \end_inset
27960
27961
27962 \end_layout
27963
27964 \begin_layout Standard
27965 Das Gradzeichen ° kann dennoch direkt eingegeben werden, wenn der LaTeX-Vorspann
27966  folgende Zeile enthält
27967 \begin_inset Foot
27968 status collapsed
27969
27970 \begin_layout Plain Layout
27971 Mehr dazu ist in 
27972 \begin_inset CommandInset ref
27973 LatexCommand ref
27974 reference "sub:Textzeichen-in-Formeln"
27975
27976 \end_inset
27977
27978  beschrieben.
27979 \end_layout
27980
27981 \end_inset
27982
27983 :
27984 \end_layout
27985
27986 \begin_layout Standard
27987
27988 \series bold
27989
27990 \backslash
27991 DeclareInputText{176}{
27992 \backslash
27993 ifmmode^
27994 \backslash
27995 circ
27996 \backslash
27997 else
27998 \backslash
27999 textdegree
28000 \backslash
28001 fi}
28002 \end_layout
28003
28004 \begin_layout Section
28005 Formelstile
28006 \begin_inset CommandInset label
28007 LatexCommand label
28008 name "sec:Formelstile"
28009
28010 \end_inset
28011
28012
28013 \begin_inset Index idx
28014 status collapsed
28015
28016 \begin_layout Plain Layout
28017 Formel ! Stile
28018 \end_layout
28019
28020 \end_inset
28021
28022
28023 \end_layout
28024
28025 \begin_layout Itemize
28026 Für abgesetzte Formeln gibt es zwei verschiedene Anordnungsstile:
28027 \end_layout
28028
28029 \begin_deeper
28030 \begin_layout Description
28031 Zentriert ist der voreingestellte Standard
28032 \end_layout
28033
28034 \begin_layout Description
28035 Eingerückt dazu muss im Menü 
28036 \family sans
28037 Dokument\SpecialChar \menuseparator
28038 Einstellungen
28039 \family default
28040  unter 
28041 \family sans
28042 Dokumentklasse
28043 \family default
28044  die Option 
28045 \series bold
28046 fleqn
28047 \series default
28048  eingeben werden
28049 \end_layout
28050
28051 \begin_layout Standard
28052 Wird 
28053 \series bold
28054 Eingerückt
28055 \series default
28056  verwendet, kann mit der Länge 
28057 \series bold
28058
28059 \backslash
28060 mathindent
28061 \series default
28062
28063 \begin_inset Index idx
28064 status collapsed
28065
28066 \begin_layout Plain Layout
28067 Befehle ! M ! 
28068 \backslash
28069 mathindent
28070 \end_layout
28071
28072 \end_inset
28073
28074  die Einrückung eingestellt werden.
28075  Soll der Abstand 15
28076 \begin_inset space \thinspace{}
28077 \end_inset
28078
28079 mm betragen, gibt man im LaTeX-Vorspann die Zeile
28080 \end_layout
28081
28082 \begin_layout Standard
28083
28084 \series bold
28085
28086 \backslash
28087 setlength{
28088 \backslash
28089 mathindent}{15mm}
28090 \end_layout
28091
28092 \begin_layout Standard
28093 ein.
28094  Wenn keine Länge vorgegeben wird, wird der voreingestellte Wert von 30
28095 \begin_inset space \thinspace{}
28096 \end_inset
28097
28098 pt verwendet.
28099 \end_layout
28100
28101 \end_deeper
28102 \begin_layout Itemize
28103 Und zwei verschiedene Nummerierungsstile:
28104 \end_layout
28105
28106 \begin_deeper
28107 \begin_layout Description
28108 Rechts ist der voreingestellte Standard
28109 \end_layout
28110
28111 \begin_layout Description
28112 Links dazu muss im Menü 
28113 \family sans
28114 Dokument\SpecialChar \menuseparator
28115 Einstellungen
28116 \family default
28117  unter 
28118 \family sans
28119 Dokumentklasse
28120 \family default
28121  die Option 
28122 \series bold
28123 leqno
28124 \series default
28125  eingeben werden
28126 \end_layout
28127
28128 \end_deeper
28129 \begin_layout Standard
28130
28131 \series bold
28132 fleqn
28133 \series default
28134  und 
28135 \series bold
28136 leqno
28137 \series default
28138  können auch gemeinsam verwendet werden.
28139  Dazu werden beide Optionen, durch ein Komma getrennt, hintereinander geschriebe
28140 n.
28141 \end_layout
28142
28143 \begin_layout Standard
28144 Die eingestellten Stile gelten für alle abgesetzten Formeln eines Dokuments.
28145  Möchte man jedoch in einem Dokument sowohl zentrierte als auch eingerückte
28146  ausgerichtete Formeln setzen, verwendet man den Stil 
28147 \series bold
28148 Zentriert
28149 \series default
28150 .
28151  Die einzurückenden Formeln setzt man dann in eine flalign-Umgebung, siehe
28152  
28153 \begin_inset CommandInset ref
28154 LatexCommand ref
28155 reference "sub:Flalign-Umgebung"
28156
28157 \end_inset
28158
28159 .
28160 \end_layout
28161
28162 \begin_layout Section
28163 Mehrzeilige Formeln
28164 \begin_inset CommandInset label
28165 LatexCommand label
28166 name "sec:Mehrzeilige-Formeln"
28167
28168 \end_inset
28169
28170
28171 \begin_inset Index idx
28172 status collapsed
28173
28174 \begin_layout Plain Layout
28175 Formel ! mehrzeilige
28176 \end_layout
28177
28178 \end_inset
28179
28180
28181 \end_layout
28182
28183 \begin_layout Subsection
28184 Allgemeines
28185 \end_layout
28186
28187 \begin_layout Standard
28188 In LyX werden mehrzeilige Formeln erstellt, wenn man in einer Formel 
28189 \family sans
28190 \series bold
28191 Strg+Enter
28192 \family default
28193 \series default
28194  drückt.
28195  Dies erzeugt entweder eine 
28196 \series bold
28197 eqnarray-Umgebung
28198 \series default
28199 , die in 
28200 \begin_inset CommandInset ref
28201 LatexCommand ref
28202 reference "sub:Eqnarray-Umgebung"
28203
28204 \end_inset
28205
28206  beschrieben ist oder, wenn die Option 
28207 \family sans
28208 AMS-Mathe-Paket verwenden
28209 \family default
28210  in den Dokumenteinstellungen gewählt ist, eine 
28211 \series bold
28212 align-Umgebung
28213 \series default
28214 , die in 
28215 \begin_inset CommandInset ref
28216 LatexCommand ref
28217 reference "sub:Standard-align-Umgebung"
28218
28219 \end_inset
28220
28221  beschrieben ist.
28222  Es wird empfohlen die align-Umgebung zu verwenden, denn sie erscheint in
28223  jedem Fall typographisch korrekt in der Ausgabe.
28224 \end_layout
28225
28226 \begin_layout Standard
28227 Es gibt noch weitere mehrzeilige Formelumgebungen, die über das Menü 
28228 \family sans
28229 Einfügen\SpecialChar \menuseparator
28230 Mathe
28231 \family default
28232  erstellt werden können.
28233  Diese Umgebungen werden in den folgenden Kapiteln beschrieben.
28234 \end_layout
28235
28236 \begin_layout Standard
28237 In allen mehrzeiligen Formelumgebungen erstellt man eine neue Zeile, indem
28238  man 
28239 \family sans
28240 Strg+Enter
28241 \family default
28242  drückt.
28243  Um Spalten hinzuzufügen oder zu entfernen, können die Mathe-Werkzeugleistenknöp
28244 fe 
28245 \begin_inset Graphics
28246         filename ../../images/tabular-feature_append-row.png
28247         scale 85
28248
28249 \end_inset
28250
28251  bzw.
28252 \begin_inset space \space{}
28253 \end_inset
28254
28255
28256 \begin_inset Graphics
28257         filename ../../images/tabular-feature_delete-row.png
28258         scale 85
28259
28260 \end_inset
28261
28262  oder das Menü 
28263 \family sans
28264 Bearbeiten\SpecialChar \menuseparator
28265 Zeilen & Spalten
28266 \family default
28267  verwendet werden.
28268 \end_layout
28269
28270 \begin_layout Subsubsection
28271 Zeilenabstand
28272 \begin_inset CommandInset label
28273 LatexCommand label
28274 name "sub:Zeilenabstand"
28275
28276 \end_inset
28277
28278
28279 \begin_inset Index idx
28280 status collapsed
28281
28282 \begin_layout Plain Layout
28283 Formel ! mehrzeilige ! Zeilenabstand
28284 \end_layout
28285
28286 \end_inset
28287
28288
28289 \end_layout
28290
28291 \begin_layout Standard
28292 Bei mehrzeiligen Formeln fehlt manchmal etwas Platz zwischen den Zeilen:
28293 \begin_inset Formula 
28294 \begin{eqnarray*}
28295 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}\\
28296 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
28297 \end{eqnarray*}
28298
28299 \end_inset
28300
28301
28302 \end_layout
28303
28304 \begin_layout Standard
28305 In LaTeX wird zusätzlicher Zeilenabstand als optionales Argument des Zeilenumbru
28306 chbefehls angegeben.
28307  Dies ist in LyX aber nicht möglich
28308 \begin_inset Foot
28309 status collapsed
28310
28311 \begin_layout Plain Layout
28312 siehe 
28313 \begin_inset CommandInset href
28314 LatexCommand href
28315 name "LyX-Fehler #1505"
28316 target "http://www.lyx.org/trac/ticket/1505"
28317
28318 \end_inset
28319
28320
28321 \end_layout
28322
28323 \end_inset
28324
28325 , weshalb man die ganze Formel im TeX-Modus eingeben muss.
28326  Um für unser Beispiel Leerraum einzufügen, gibt man am Ende der ersten
28327  Zeile den Befehl 
28328 \series bold
28329
28330 \backslash
28331
28332 \backslash
28333 [3mm]
28334 \series default
28335  ein.
28336  Damit erhält man: 
28337 \begin_inset ERT
28338 status collapsed
28339
28340 \begin_layout Plain Layout
28341
28342
28343 \backslash
28344 begin{eqnarray*}
28345 \end_layout
28346
28347 \begin_layout Plain Layout
28348
28349 B^{2}(B^{2}-2r_{g}^{2}+2x_{0}^{2}-2r_{k}^{2})+4x_{0}^{2}x^{2}+4x_{0}xD &
28350  = & 
28351 \backslash
28352 textrm{-}4x^{2}B^{2}+4x_{0}xB^{2}
28353 \backslash
28354
28355 \backslash
28356 [3mm]
28357 \end_layout
28358
28359 \begin_layout Plain Layout
28360
28361 4x^{2}
28362 \backslash
28363 left(B^{2}+x_{0}^{2}
28364 \backslash
28365 right)+4x_{0}x
28366 \backslash
28367 left(D-B^{2}
28368 \backslash
28369 right)+B^{2}
28370 \backslash
28371 left(B^{2}-2r_{g}^{2}+2x_{0}^{2}-2r_{k}^{2}
28372 \backslash
28373 right) & = & 0
28374 \end_layout
28375
28376 \begin_layout Plain Layout
28377
28378
28379 \backslash
28380 end{eqnarray*}
28381 \end_layout
28382
28383 \end_inset
28384
28385
28386 \end_layout
28387
28388 \begin_layout Standard
28389 \begin_inset VSpace bigskip
28390 \end_inset
28391
28392 Möchte man den Zeilenabstand für alle Zeilen einer Formel festlegen, verändert
28393  man die Länge 
28394 \series bold
28395
28396 \backslash
28397 jot
28398 \series default
28399
28400 \begin_inset Index idx
28401 status collapsed
28402
28403 \begin_layout Plain Layout
28404 Befehle ! J ! 
28405 \backslash
28406 jot
28407 \end_layout
28408
28409 \end_inset
28410
28411 .
28412  Es gilt 
28413 \begin_inset Formula $\mbox{Zeilenabstand}=\mathrm{6\, pt+\backslash jot}$
28414 \end_inset
28415
28416 .
28417  Voreingestellt ist für 
28418 \series bold
28419
28420 \backslash
28421 jot
28422 \series default
28423  der Wert 3
28424 \begin_inset space \thinspace{}
28425 \end_inset
28426
28427 pt.
28428  Um wie im vorigen Beispiel 3
28429 \begin_inset space \thinspace{}
28430 \end_inset
28431
28432 mm zusätzlichen Zeilenabstand zu erzeugen, gibt man den Befehl
28433 \end_layout
28434
28435 \begin_layout Standard
28436
28437 \series bold
28438
28439 \backslash
28440 setlength{
28441 \backslash
28442 jot}{3mm+3pt}
28443 \end_layout
28444
28445 \begin_layout Standard
28446 im TeX-Modus vor der Formel ein.
28447  Das setzt voraus, dass das LaTeX-Paket 
28448 \series bold
28449 calc
28450 \series default
28451
28452 \begin_inset Foot
28453 status collapsed
28454
28455 \begin_layout Plain Layout
28456
28457 \series bold
28458 calc
28459 \series default
28460  ist Teil jeder LaTeX-Standardinstallation.
28461 \end_layout
28462
28463 \end_inset
28464
28465
28466 \begin_inset Index idx
28467 status collapsed
28468
28469 \begin_layout Plain Layout
28470 Pakete ! calc
28471 \end_layout
28472
28473 \end_inset
28474
28475  im LaTeX-Vorspann mit der Zeile
28476 \end_layout
28477
28478 \begin_layout Standard
28479
28480 \series bold
28481
28482 \backslash
28483 usepackage{calc}
28484 \end_layout
28485
28486 \begin_layout Standard
28487 geladen wurde.
28488 \end_layout
28489
28490 \begin_layout Standard
28491 Man erhält: 
28492 \begin_inset ERT
28493 status collapsed
28494
28495 \begin_layout Plain Layout
28496
28497
28498 \backslash
28499 setlength{
28500 \backslash
28501 jot}{3mm+3pt}
28502 \end_layout
28503
28504 \end_inset
28505
28506
28507 \begin_inset Formula 
28508 \begin{eqnarray*}
28509 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}\\
28510 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
28511 \end{eqnarray*}
28512
28513 \end_inset
28514
28515
28516 \end_layout
28517
28518 \begin_layout Standard
28519 \begin_inset ERT
28520 status collapsed
28521
28522 \begin_layout Plain Layout
28523
28524
28525 \backslash
28526 setlength{
28527 \backslash
28528 jot}{3pt}
28529 \end_layout
28530
28531 \end_inset
28532
28533  Um wieder zum voreingestellten Abstand zu wechseln, setzt man 
28534 \series bold
28535
28536 \backslash
28537 jot
28538 \series default
28539  auf den Wert 3
28540 \begin_inset space \thinspace{}
28541 \end_inset
28542
28543 pt.
28544 \end_layout
28545
28546 \begin_layout Subsubsection
28547 Spaltenabstand
28548 \begin_inset CommandInset label
28549 LatexCommand label
28550 name "sub:Spaltenabstand"
28551
28552 \end_inset
28553
28554
28555 \begin_inset Index idx
28556 status collapsed
28557
28558 \begin_layout Plain Layout
28559 Formel ! mehrzeilige ! Spaltenabstand
28560 \end_layout
28561
28562 \end_inset
28563
28564
28565 \end_layout
28566
28567 \begin_layout Standard
28568 Mehrzeilige Formeln bilden eine Matrix.
28569  Eine Formel in der Eqnarray-Umgebung ist z.
28570 \begin_inset space \thinspace{}
28571 \end_inset
28572
28573 B.
28574  eine dreispaltige Matrix.
28575  Durch Änderung des Spaltenabstands in dieser Umgebung, kann man den Leerraum
28576  neben den Relationszeichen ändern.
28577 \end_layout
28578
28579 \begin_layout Standard
28580 Der Spaltenabstand wird mit der Länge 
28581 \series bold
28582
28583 \backslash
28584 arraycolsep
28585 \series default
28586
28587 \begin_inset Index idx
28588 status collapsed
28589
28590 \begin_layout Plain Layout
28591 Befehle ! A ! 
28592 \backslash
28593 arraycolsep
28594 \end_layout
28595
28596 \end_inset
28597
28598  festgelegt, wobei gilt:
28599 \begin_inset Newline newline
28600 \end_inset
28601
28602 Spaltenabstand = 2
28603 \begin_inset space \thinspace{}
28604 \end_inset
28605
28606
28607 \series bold
28608
28609 \backslash
28610 arraycolsep
28611 \series default
28612 .
28613 \begin_inset Newline newline
28614 \end_inset
28615
28616 Der im TeX-Modus eingegebene Befehl
28617 \end_layout
28618
28619 \begin_layout Standard
28620
28621 \series bold
28622
28623 \backslash
28624 setlength{
28625 \backslash
28626 arraycolsep}{1cm}
28627 \end_layout
28628
28629 \begin_layout Standard
28630 bewirkt also für alle folgenden Formeln einen Spaltenabstand von 2
28631 \begin_inset space \thinspace{}
28632 \end_inset
28633
28634 cm.
28635  Um wieder zum voreingestellten Abstand zurückzukehren, setzt man 
28636 \series bold
28637
28638 \backslash
28639 arraycolsep
28640 \series default
28641  auf 5
28642 \begin_inset space \thinspace{}
28643 \end_inset
28644
28645 pt.
28646 \end_layout
28647
28648 \begin_layout Standard
28649 Eine Formel mit 2
28650 \begin_inset space \thinspace{}
28651 \end_inset
28652
28653 cm Spaltenabstand:
28654 \begin_inset ERT
28655 status collapsed
28656
28657 \begin_layout Plain Layout
28658
28659
28660 \backslash
28661 setlength{
28662 \backslash
28663 arraycolsep}{1cm}
28664 \end_layout
28665
28666 \end_inset
28667
28668
28669 \begin_inset Formula 
28670 \begin{eqnarray*}
28671 A & = & B\\
28672 C & \ne & A
28673 \end{eqnarray*}
28674
28675 \end_inset
28676
28677 Eine Formel mit dem für Matrizen voreingestellten Spaltenabstand von 10
28678 \begin_inset space \thinspace{}
28679 \end_inset
28680
28681 pt:
28682 \begin_inset ERT
28683 status collapsed
28684
28685 \begin_layout Plain Layout
28686
28687
28688 \backslash
28689 setlength{
28690 \backslash
28691 arraycolsep}{5pt}
28692 \end_layout
28693
28694 \end_inset
28695
28696
28697 \begin_inset Formula 
28698 \begin{eqnarray*}
28699 A & = & B\\
28700 C & \ne & A
28701 \end{eqnarray*}
28702
28703 \end_inset
28704
28705
28706 \end_layout
28707
28708 \begin_layout Subsubsection
28709 Lange Formeln
28710 \begin_inset Index idx
28711 status collapsed
28712
28713 \begin_layout Plain Layout
28714 Formel ! lange
28715 \end_layout
28716
28717 \end_inset
28718
28719
28720 \end_layout
28721
28722 \begin_layout Standard
28723 Lange Formeln kann man wie folgt setzen:
28724 \end_layout
28725
28726 \begin_layout Itemize
28727 Ist eine Seite der Gleichung deutlich kürzer als die Zeilenbreite, wählt
28728  man man diese als linke Seite und schreibt die rechte über zwei Zeilen:
28729 \begin_inset Formula 
28730 \begin{eqnarray}
28731 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 \\
28732  &  & -\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}
28733 \end{eqnarray}
28734
28735 \end_inset
28736
28737 Das Minuszeichen zu Beginn der zweiten Zeile erscheint eigentlich nicht
28738  als Operator, da es das erste Zeichen der Zeile ist.
28739  Deswegen wäre es nicht von Leerraum umgeben und ließe sich schlecht vom
28740  Bruchstrich unterscheiden.
28741  Um das zu verhindern, wurde mit dem Befehl 
28742 \series bold
28743
28744 \backslash
28745 hspace
28746 \series default
28747  3
28748 \begin_inset space \thinspace{}
28749 \end_inset
28750
28751 pt Leerraum hinter das Minuszeichen eingefügt.
28752 \begin_inset Foot
28753 status collapsed
28754
28755 \begin_layout Plain Layout
28756 mehr zu 
28757 \series bold
28758
28759 \backslash
28760 hspace
28761 \series default
28762  siehe 
28763 \begin_inset CommandInset ref
28764 LatexCommand ref
28765 reference "sub:Variabler-Leerraum"
28766
28767 \end_inset
28768
28769
28770 \end_layout
28771
28772 \end_inset
28773
28774
28775 \begin_inset Index idx
28776 status collapsed
28777
28778 \begin_layout Plain Layout
28779 Befehle ! H ! 
28780 \backslash
28781 hspace
28782 \end_layout
28783
28784 \end_inset
28785
28786
28787 \end_layout
28788
28789 \begin_layout Itemize
28790 Sind beide Seiten der Gleichung zu lang, verwendet man den Befehl 
28791 \series bold
28792
28793 \backslash
28794 lefteqn
28795 \series default
28796
28797 \begin_inset Index idx
28798 status collapsed
28799
28800 \begin_layout Plain Layout
28801 Befehle ! L ! 
28802 \backslash
28803 lefteqn
28804 \end_layout
28805
28806 \end_inset
28807
28808 .
28809  Dieser wird in die erste Spalte der ersten Zeile eingegeben und bewirkt,
28810  dass alle weiteren Eingaben die folgenden Spalten überschreiben:
28811 \begin_inset Formula 
28812 \begin{eqnarray}
28813 \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 \\
28814  &  & -\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 \\
28815  &  & =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}
28816 \end{eqnarray}
28817
28818 \end_inset
28819
28820 Nachdem man 
28821 \series bold
28822
28823 \backslash
28824 lefteqn
28825 \series default
28826  eingegeben hat, befindet sich der Cursor in einem pinkfarbenen Kästchen,
28827  das gegenüber dem blauen leicht verschoben ist.
28828  In dieses wird die Formel eingegeben.
28829 \begin_inset Newline newline
28830 \end_inset
28831
28832 Der Inhalt der weiteren Zeilen wird in die zweite oder eine andere Formelspalte
28833  eingegeben.
28834  Je größer die Spaltennummer in die eingegeben wurde, desto größer ist die
28835  Einrückung.
28836 \begin_inset VSpace medskip
28837 \end_inset
28838
28839
28840 \begin_inset Newline newline
28841 \end_inset
28842
28843
28844 \begin_inset Note Greyedout
28845 status open
28846
28847 \begin_layout Plain Layout
28848 Bei der Verwendung von 
28849 \series bold
28850
28851 \backslash
28852 lefteqn
28853 \series default
28854  ist Folgendes zu beachten:
28855 \end_layout
28856
28857 \begin_layout Itemize
28858 Die Formel nutzt nicht die gesamte Seitenbreite aus.
28859  Würde man in obigem Beispiel der ersten Zeile den Term 
28860 \begin_inset Formula $-B^{2}$
28861 \end_inset
28862
28863  anfügen, befände sich dieser außerhalb des Seitenrands.
28864  Um die Breite besser auszunutzen, kann man zu Beginn der ersten Zeile negativen
28865  Leerraum einfügen.
28866 \end_layout
28867
28868 \begin_layout Itemize
28869 Aufgrund eines Fehlers in LyX kann der Cursor nicht mit der Maus in die
28870  erste Zeile gesetzt werden.
28871 \begin_inset Foot
28872 status collapsed
28873
28874 \begin_layout Plain Layout
28875 \begin_inset CommandInset href
28876 LatexCommand href
28877 name "LyX-Fehler #1429"
28878 target "http://www.lyx.org/trac/ticket/1429"
28879
28880 \end_inset
28881
28882
28883 \end_layout
28884
28885 \end_inset
28886
28887  Man kann den Cursor nur an den Anfang der Zeile setzen und ihn mit den
28888  Pfeiltasten bewegen.
28889 \end_layout
28890
28891 \end_inset
28892
28893
28894 \end_layout
28895
28896 \begin_layout Itemize
28897 Weitere Möglichkeiten lange Formeln zu setzen, bieten die in 
28898 \begin_inset CommandInset ref
28899 LatexCommand ref
28900 reference "sub:Multline-Umgebung"
28901
28902 \end_inset
28903
28904  und 
28905 \begin_inset CommandInset ref
28906 LatexCommand ref
28907 reference "sub:Mehrzeilige-Formelteile"
28908
28909 \end_inset
28910
28911  beschriebenen Umgebungen.
28912 \end_layout
28913
28914 \begin_layout Subsubsection
28915 Mehrzeilige Klammern
28916 \begin_inset CommandInset label
28917 LatexCommand label
28918 name "sub:Mehrzeilige-Klammern"
28919
28920 \end_inset
28921
28922
28923 \begin_inset Index idx
28924 status collapsed
28925
28926 \begin_layout Plain Layout
28927 Klammern ! mehrzeilige
28928 \end_layout
28929
28930 \end_inset
28931
28932
28933 \end_layout
28934
28935 \begin_layout Standard
28936 Bei Klammern, die über mehrere Zeilen gehen, tritt folgendes Problem auf:
28937 \begin_inset Formula 
28938 \begin{eqnarray*}
28939 A & = & \sin(x)\left[\prod_{R=1}^{\infty}\frac{1}{R}+\cdots\right.\\
28940  &  & \left.\cdots+B-D\right]
28941 \end{eqnarray*}
28942
28943 \end_inset
28944
28945
28946 \end_layout
28947
28948 \begin_layout Standard
28949 Die schließende Klammer ist kleiner als die öffnende, denn Klammern variabler
28950  Größe dürfen nicht über mehrere Zeilen gehen.
28951 \end_layout
28952
28953 \begin_layout Standard
28954 Um die Größe für die Klammer der zweiten Zeile anzupassen, beendet man die
28955  erste Zeile mit 
28956 \series bold
28957
28958 \backslash
28959 right.
28960 \series default
28961
28962 \begin_inset Index idx
28963 status collapsed
28964
28965 \begin_layout Plain Layout
28966 Befehle ! R ! 
28967 \backslash
28968 right
28969 \end_layout
28970
28971 \end_inset
28972
28973  und beginnt die zweite Zeile mit 
28974 \series bold
28975
28976 \backslash
28977 left.
28978 \begin_inset Foot
28979 status collapsed
28980
28981 \begin_layout Plain Layout
28982 mehr zu 
28983 \series bold
28984
28985 \backslash
28986 left
28987 \series default
28988  und 
28989 \series bold
28990
28991 \backslash
28992 right
28993 \series default
28994  siehe 
28995 \begin_inset CommandInset ref
28996 LatexCommand ref
28997 reference "sub:Automatische-Klammergrößen"
28998
28999 \end_inset
29000
29001
29002 \end_layout
29003
29004 \end_inset
29005
29006
29007 \series default
29008
29009 \begin_inset Index idx
29010 status collapsed
29011
29012 \begin_layout Plain Layout
29013 Befehle ! L ! 
29014 \backslash
29015 left
29016 \end_layout
29017
29018 \end_inset
29019
29020 .
29021  Nach 
29022 \series bold
29023
29024 \backslash
29025 left.
29026
29027 \series default
29028  gibt man den Befehl 
29029 \series bold
29030
29031 \backslash
29032 vphantom
29033 \series default
29034
29035 \begin_inset ERT
29036 status collapsed
29037
29038 \begin_layout Plain Layout
29039
29040
29041 \backslash
29042 leer 
29043 \end_layout
29044
29045 \end_inset
29046
29047
29048 \series bold
29049
29050 \backslash
29051 prod
29052 \series default
29053 ^
29054 \begin_inset ERT
29055 status collapsed
29056
29057 \begin_layout Plain Layout
29058
29059
29060 \backslash
29061 leer 
29062 \end_layout
29063
29064 \end_inset
29065
29066
29067 \series bold
29068
29069 \backslash
29070 infty
29071 \series default
29072
29073 \begin_inset ERT
29074 status collapsed
29075
29076 \begin_layout Plain Layout
29077
29078
29079 \backslash
29080 leer 
29081 \end_layout
29082
29083 \end_inset
29084
29085
29086 \series bold
29087
29088 \begin_inset Formula $\downarrow$
29089 \end_inset
29090
29091 _R=1}
29092 \series default
29093
29094 \begin_inset Index idx
29095 status collapsed
29096
29097 \begin_layout Plain Layout
29098 Befehle ! V ! 
29099 \backslash
29100 vphantom
29101 \end_layout
29102
29103 \end_inset
29104
29105  ein, denn der Multiplikationsoperator mit seinen Grenzen ist das größte
29106  Symbol der ersten Zeile, und daran soll die zweite Klammer angepasst werden.
29107 \end_layout
29108
29109 \begin_layout Standard
29110 Das Ergebnis sieht so aus:
29111 \begin_inset Formula 
29112 \begin{eqnarray*}
29113 A & = & \sin(x)\left[\prod_{R=1}^{\infty}\frac{1}{R}+\cdots\right.\\
29114  &  & \left.\vphantom{\prod_{R=1}^{\infty}}\cdots+B-D\right]
29115 \end{eqnarray*}
29116
29117 \end_inset
29118
29119
29120 \end_layout
29121
29122 \begin_layout Subsection
29123 Align-Umgebungen
29124 \end_layout
29125
29126 \begin_layout Standard
29127 Align-Umgebungen können für jede Art von mehrzeiligen Formeln verwendet
29128  werden.
29129  Sie sind besonders geeignet um mehrere Formeln nebeneinander zu setzen.
29130 \end_layout
29131
29132 \begin_layout Standard
29133 Align-Umgebungen bestehen aus Spalten.
29134  Die ungeradzahligen Spalten sind rechts-, die geradzahligen linksbündig
29135  ausgerichtet.
29136  Jede Zeile einer Align-Umgebung kann nummeriert werden.
29137 \end_layout
29138
29139 \begin_layout Standard
29140 Align-Umgebung werden über das Menü 
29141 \family sans
29142 Einfügen\SpecialChar \menuseparator
29143 Mathe
29144 \family default
29145  erstellt.
29146  Über das Menü 
29147 \family sans
29148 Bearbeiten\SpecialChar \menuseparator
29149 Mathe\SpecialChar \menuseparator
29150 Formelart
29151 \begin_inset space ~
29152 \end_inset
29153
29154 ändern
29155 \family default
29156  können bereits existierende Formeln in Align-Umgebungen umgewandelt werden.
29157 \end_layout
29158
29159 \begin_layout Standard
29160 Um Spalten hinzuzufügen oder zu entfernen, können die Mathe-Werkzeugleistenknöpf
29161
29162 \begin_inset Graphics
29163         filename ../../images/tabular-feature_append-column.png
29164         scale 85
29165
29166 \end_inset
29167
29168  bzw.
29169 \begin_inset space \space{}
29170 \end_inset
29171
29172
29173 \begin_inset Graphics
29174         filename ../../images/tabular-feature_delete-column.png
29175         scale 85
29176
29177 \end_inset
29178
29179  oder das Menü 
29180 \family sans
29181 Bearbeiten\SpecialChar \menuseparator
29182 Zeilen & Spalten
29183 \family default
29184  verwendet werden.
29185 \end_layout
29186
29187 \begin_layout Subsubsection
29188 Standard align-Umgebung
29189 \begin_inset CommandInset label
29190 LatexCommand label
29191 name "sub:Standard-align-Umgebung"
29192
29193 \end_inset
29194
29195
29196 \begin_inset Index idx
29197 status collapsed
29198
29199 \begin_layout Plain Layout
29200 Formel ! mehrzeilige ! align-Umgebung
29201 \end_layout
29202
29203 \end_inset
29204
29205
29206 \end_layout
29207
29208 \begin_layout Standard
29209 Diese Align-Umgebung wird erstellt, indem man in einer Formel 
29210 \family sans
29211 Strg+Enter
29212 \family default
29213  drückt oder das Menü 
29214 \family sans
29215 Einfügen\SpecialChar \menuseparator
29216 Mathe\SpecialChar \menuseparator
29217 AMS align-Umge\SpecialChar \-
29218 bung
29219 \family default
29220  aufruft.
29221 \end_layout
29222
29223 \begin_layout Standard
29224 Ein Beispiel für zwei nebeneinander stehende Formeln, die mit einer vierspaltige
29225 n align-Umgebung erzeugt wurden:
29226 \begin_inset Formula 
29227 \begin{align*}
29228 A & =\sin(B) & C & =D\\
29229 C & \ne A & B & \ne D
29230 \end{align*}
29231
29232 \end_inset
29233
29234 Wie man sieht, werden die Formeln in dieser Umgebung so angeordnet, als
29235  würde sich vor der ersten und hinter jeder geraden Spalte ein 
29236 \series bold
29237
29238 \backslash
29239 hfill
29240 \begin_inset Foot
29241 status collapsed
29242
29243 \begin_layout Plain Layout
29244 mehr zu 
29245 \series bold
29246
29247 \backslash
29248 hfill
29249 \series default
29250  siehe 
29251 \begin_inset CommandInset ref
29252 LatexCommand ref
29253 reference "sub:Variabler-Leerraum"
29254
29255 \end_inset
29256
29257
29258 \end_layout
29259
29260 \end_inset
29261
29262
29263 \series default
29264  befinden.
29265  Ist der Formelstil 
29266 \series bold
29267 Eingerückt
29268 \begin_inset Foot
29269 status collapsed
29270
29271 \begin_layout Plain Layout
29272 Formelstile siehe 
29273 \begin_inset CommandInset ref
29274 LatexCommand ref
29275 reference "sec:Formelstile"
29276
29277 \end_inset
29278
29279
29280 \end_layout
29281
29282 \end_inset
29283
29284
29285 \series default
29286  gewählt, wird die Formel ohne den 
29287 \series bold
29288
29289 \backslash
29290 hfill
29291 \series default
29292  vor der ersten Spalte gesetzt.
29293 \end_layout
29294
29295 \begin_layout Subsubsection
29296 Alignat-Umgebung
29297 \begin_inset Index idx
29298 status collapsed
29299
29300 \begin_layout Plain Layout
29301 Formel ! mehrzeilige ! alignat-Umgebung
29302 \end_layout
29303
29304 \end_inset
29305
29306
29307 \end_layout
29308
29309 \begin_layout Standard
29310 In der alignat-Umgebung gibt es keinen vordefinierten Spaltenabstand.
29311  Man kann ihn manuell durch die in 
29312 \begin_inset CommandInset ref
29313 LatexCommand ref
29314 reference "sub:Leerraum"
29315
29316 \end_inset
29317
29318  beschriebenen Leerräume einfügen.
29319 \end_layout
29320
29321 \begin_layout Standard
29322 Das vorige Beispiel in der alignat-Umgebung, bei dem zu Beginn der zweiten
29323  Formel 1
29324 \begin_inset space \thinspace{}
29325 \end_inset
29326
29327 cm Leerraum eingefügt wurde:
29328 \begin_inset Formula 
29329 \begin{alignat*}{2}
29330 A & =\sin(B) & \hspace{1cm}C & =D\\
29331 C & \ne A & B & \ne D
29332 \end{alignat*}
29333
29334 \end_inset
29335
29336 Weil man den Spaltenabstand für jede Spalte einzeln einstellen kann, eignet
29337  sich diese Umgebung besonders für drei und mehr nebeneinander gesetzte
29338  Formeln.
29339 \end_layout
29340
29341 \begin_layout Subsubsection
29342 Flalign-Umgebung
29343 \begin_inset CommandInset label
29344 LatexCommand label
29345 name "sub:Flalign-Umgebung"
29346
29347 \end_inset
29348
29349
29350 \begin_inset Index idx
29351 status collapsed
29352
29353 \begin_layout Plain Layout
29354 Formel ! mehrzeilige ! flalign-Umgebung
29355 \end_layout
29356
29357 \end_inset
29358
29359
29360 \end_layout
29361
29362 \begin_layout Standard
29363 Bei dieser Umgebung werden die ersten beiden Spalten immer so weit links
29364  und die letzten beiden Spalten so weit rechts wie möglich gesetzt.
29365  Dazu ein Beispiel:
29366 \begin_inset Formula 
29367 \begin{flalign*}
29368 A & =1 & B & =2 & C & =3\\
29369 X & =\textrm{-}1 & Y & =\textrm{-}2 & Z & =4
29370 \end{flalign*}
29371
29372 \end_inset
29373
29374
29375 \end_layout
29376
29377 \begin_layout Standard
29378 Erzeugt man eine flalign-Umgebung mit ungerader Spaltenanzahl und gibt in
29379  die letzte Spalte eine leere TeX-Klammer ein, kann man einzelne Formeln
29380  im Dokument links setzen obwohl der Formelstil 
29381 \series bold
29382 Zentriert
29383 \series default
29384  eingestellt ist.
29385  Als Beispiel die eingerückte ausgerichtete Formel 
29386 \begin_inset CommandInset ref
29387 LatexCommand eqref
29388 reference "eq:VolInt"
29389
29390 \end_inset
29391
29392 :
29393 \begin_inset Formula 
29394 \begin{flalign}
29395 \hspace{30pt}\iiint\limits _{V}X\,\mathrm{d}V & =U & {}
29396 \end{flalign}
29397
29398 \end_inset
29399
29400 In den ersten beiden Spalten befindet sich die Formel.
29401  Damit sie wie beim Formelstil 
29402 \series bold
29403 Eingerückt
29404 \series default
29405  vom Rand etwas abgesetzt ist, wurde zu Beginn der ersten Spalte 30
29406 \begin_inset space \thinspace{}
29407 \end_inset
29408
29409 pt Leerraum eingefügt.
29410 \end_layout
29411
29412 \begin_layout Subsection
29413 Eqnarray-Umgebung
29414 \begin_inset CommandInset label
29415 LatexCommand label
29416 name "sub:Eqnarray-Umgebung"
29417
29418 \end_inset
29419
29420
29421 \begin_inset Index idx
29422 status collapsed
29423
29424 \begin_layout Plain Layout
29425 Formel ! mehrzeilige ! Eqnarray-Umgebung
29426 \end_layout
29427
29428 \end_inset
29429
29430
29431 \end_layout
29432
29433 \begin_layout Standard
29434 Hat man diese Umgebung erzeugt, erscheinen drei blaue Kästchen.
29435  Der Inhalt des ersten Kästchens wird rechtsbündig, der des letzten linksbündig
29436  ausgerichtet.
29437  Der Inhalt des mittleren Kästchens erscheint zentriert und etwas kleiner,
29438  da dieses Kästchen nur für Relationzeichen gedacht ist.
29439 \begin_inset Formula 
29440 \begin{eqnarray*}
29441 \frac{ABC}{D} & \frac{ABC}{D} & \frac{ABC}{D}\\
29442 AB & AB & AB\\
29443 A & = & A
29444 \end{eqnarray*}
29445
29446 \end_inset
29447
29448
29449 \end_layout
29450
29451 \begin_layout Subsection
29452 Gather-Umgebung
29453 \begin_inset Index idx
29454 status collapsed
29455
29456 \begin_layout Plain Layout
29457 Formel ! mehrzeilige ! Gather-Umgebung
29458 \end_layout
29459
29460 \end_inset
29461
29462
29463 \end_layout
29464
29465 \begin_layout Standard
29466 Diese Umgebung besteht nur aus einer Spalte, deren Inhalt zentriert ist.
29467  Jede Zeile kann nummeriert werden.
29468 \begin_inset Formula 
29469 \begin{gather}
29470 A=1\\
29471 X=\textrm{-}1
29472 \end{gather}
29473
29474 \end_inset
29475
29476
29477 \end_layout
29478
29479 \begin_layout Subsection
29480 Multline-Umgebung
29481 \begin_inset CommandInset label
29482 LatexCommand label
29483 name "sub:Multline-Umgebung"
29484
29485 \end_inset
29486
29487
29488 \begin_inset Index idx
29489 status collapsed
29490
29491 \begin_layout Plain Layout
29492 Formel ! mehrzeilige ! Multline-Umgebung
29493 \end_layout
29494
29495 \end_inset
29496
29497
29498 \end_layout
29499
29500 \begin_layout Standard
29501 Die multline-Umgebung besteht wie die Gather-Umgebung nur aus einer Spalte.
29502  Jedoch ist die erste Zeile links, die letzte rechts ausgerichtet.
29503  Alle anderen Zeilen sind zentriert.
29504  Dadurch eignet sich diese Umgebung besonders für lange Formeln.
29505  Als Beispiel Formel 
29506 \begin_inset CommandInset ref
29507 LatexCommand eqref
29508 reference "eq:lefteqn"
29509
29510 \end_inset
29511
29512  in der multline-Umgebung:
29513 \begin_inset Formula 
29514 \begin{multline}
29515 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}\\
29516 -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}\\
29517 =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}}
29518 \end{multline}
29519
29520 \end_inset
29521
29522
29523 \end_layout
29524
29525 \begin_layout Standard
29526 In der Ausgabe erscheint nur die letzte (erste) Zeile einer multline-Umgebung
29527  nummeriert, wenn rechts (links) nummeriert wird.
29528 \begin_inset Foot
29529 status collapsed
29530
29531 \begin_layout Plain Layout
29532 Nummerierungsstile siehe 
29533 \begin_inset CommandInset ref
29534 LatexCommand ref
29535 reference "sec:Formelstile"
29536
29537 \end_inset
29538
29539
29540 \end_layout
29541
29542 \end_inset
29543
29544
29545 \end_layout
29546
29547 \begin_layout Standard
29548 Mit den Befehlen 
29549 \series bold
29550
29551 \backslash
29552 shoveright
29553 \series default
29554
29555 \begin_inset Index idx
29556 status collapsed
29557
29558 \begin_layout Plain Layout
29559 Befehle ! S ! 
29560 \backslash
29561 shoveright
29562 \end_layout
29563
29564 \end_inset
29565
29566  und 
29567 \series bold
29568
29569 \backslash
29570 shoveleft
29571 \series default
29572
29573 \begin_inset Index idx
29574 status collapsed
29575
29576 \begin_layout Plain Layout
29577 Befehle ! S ! 
29578 \backslash
29579 shoveleft
29580 \end_layout
29581
29582 \end_inset
29583
29584  kann eine zentrierte Zeile rechts bzw.
29585 \begin_inset space \space{}
29586 \end_inset
29587
29588 links ausgerichtet werden.
29589  Die Befehle werden folgendermaßen verwendet:
29590 \end_layout
29591
29592 \begin_layout Standard
29593
29594 \series bold
29595
29596 \backslash
29597 shoveright{Zeileninhalt}
29598 \series default
29599  bzw.
29600 \begin_inset space \space{}
29601 \end_inset
29602
29603
29604 \series bold
29605
29606 \backslash
29607 shoveleft{Zeileninhalt}
29608 \end_layout
29609
29610 \begin_layout Standard
29611 \begin_inset VSpace medskip
29612 \end_inset
29613
29614 Die Länge 
29615 \series bold
29616
29617 \backslash
29618 multlinegap
29619 \series default
29620
29621 \begin_inset Index idx
29622 status collapsed
29623
29624 \begin_layout Plain Layout
29625 Befehle ! M ! 
29626 \backslash
29627 multlinegap
29628 \end_layout
29629
29630 \end_inset
29631
29632  legt den Abstand der ersten Zeile vom linken Seitenrand fest.
29633  Voreingestellt ist die Länge 0
29634 \begin_inset space \thinspace{}
29635 \end_inset
29636
29637 pt.
29638 \end_layout
29639
29640 \begin_layout Standard
29641 Als Beispiel obige Formel, vor der im TeX-Modus der Befehl
29642 \end_layout
29643
29644 \begin_layout Standard
29645
29646 \series bold
29647
29648 \backslash
29649 setlength{
29650 \backslash
29651 multlinegap}{2cm}
29652 \end_layout
29653
29654 \begin_layout Standard
29655 eingegeben wurde:
29656 \begin_inset ERT
29657 status collapsed
29658
29659 \begin_layout Plain Layout
29660
29661
29662 \backslash
29663 setlength{
29664 \backslash
29665 multlinegap}{2cm}
29666 \end_layout
29667
29668 \end_inset
29669
29670
29671 \begin_inset Formula 
29672 \begin{multline}
29673 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}\\
29674 \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}}\\
29675 =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}}
29676 \end{multline}
29677
29678 \end_inset
29679
29680
29681 \begin_inset ERT
29682 status collapsed
29683
29684 \begin_layout Plain Layout
29685
29686
29687 \backslash
29688 setlength{
29689 \backslash
29690 multlinegap}{0pt}
29691 \end_layout
29692
29693 \end_inset
29694
29695
29696 \end_layout
29697
29698 \begin_layout Standard
29699 Die zweite Zeile wurde mit 
29700 \series bold
29701
29702 \backslash
29703 shoveleft
29704 \series default
29705  linksbündig ausgerichtet.
29706 \end_layout
29707
29708 \begin_layout Subsection
29709 Mehrzeilige Formelteile
29710 \begin_inset CommandInset label
29711 LatexCommand label
29712 name "sub:Mehrzeilige-Formelteile"
29713
29714 \end_inset
29715
29716
29717 \begin_inset Index idx
29718 status collapsed
29719
29720 \begin_layout Plain Layout
29721 Formel ! mehrzeilige ! Formelteile
29722 \end_layout
29723
29724 \end_inset
29725
29726
29727 \end_layout
29728
29729 \begin_layout Standard
29730 Möchte man nur Teile einer Formel mehrzeilig darstellen, verwendet man eine
29731  der folgenden Umgebungen: 
29732 \series bold
29733 aligned
29734 \series default
29735
29736 \series bold
29737 alignedat
29738 \series default
29739
29740 \series bold
29741 gathered
29742 \series default
29743  oder 
29744 \series bold
29745 split
29746 \series default
29747 .
29748  Sie können über das Menü 
29749 \family sans
29750 Einfügen\SpecialChar \menuseparator
29751 Mathe
29752 \family default
29753  oder mit Befehlen eingefügt werden, wie in diesem Abschnitt beschrieben.
29754 \end_layout
29755
29756 \begin_layout Standard
29757 Die ersten drei haben dieselben Eigenschaften wie die entsprechenden mehrzeilige
29758 n Formel\SpecialChar \-
29759 umgebungen.
29760  Man kann jedoch zusätzlich weitere Formelteile daneben setzen.
29761  Dazu ein Beispiel:
29762 \begin_inset Formula 
29763 \[
29764 \left.\begin{aligned}\Delta x\Delta p & \ge\frac{\hbar}{2}\\
29765 \Delta E\Delta t & \ge\frac{\hbar}{2}
29766 \end{aligned}
29767 \right\} \textrm{Unbestimmtheitsrelationen}
29768 \]
29769
29770 \end_inset
29771
29772
29773 \end_layout
29774
29775 \begin_layout Standard
29776 Um diese Formel zu erhalten, wird eine abgesetzte Formel erstellt, in die
29777  der Befehl 
29778 \series bold
29779
29780 \backslash
29781 aligned
29782 \series default
29783
29784 \begin_inset Index idx
29785 status collapsed
29786
29787 \begin_layout Plain Layout
29788 Befehle ! A ! 
29789 \backslash
29790 aligned
29791 \end_layout
29792
29793 \end_inset
29794
29795  eingegeben wird.
29796  Es erscheint eine lila Box um das blaue Formelkästchen in der man nun Spalten
29797  und Zeilen hinzufügen kann.
29798  Außerhalb der mehrzeiligen Umgebung können Formelteile, wie die Klammer,
29799  gesetzt werden.
29800 \end_layout
29801
29802 \begin_layout Standard
29803 Die aligned-Umgebung eignet sich auch für lange Formeln, deren Zeilen horizontal
29804  ausgerichtet sind.
29805  Verwendet man aligned in einer abgesetzten Formel, hat das den Vorteil,
29806  dass die Formelnummer vertikal mittig hinter den Zeilen steht.
29807  Als Beispiel Formel 
29808 \begin_inset CommandInset ref
29809 LatexCommand eqref
29810 reference "eq:kurzlang"
29811
29812 \end_inset
29813
29814  in der aligned-Umgebung:
29815 \begin_inset Formula 
29816 \begin{equation}
29817 \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}|}\\
29818  & -\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}|}
29819 \end{aligned}
29820 \end{equation}
29821
29822 \end_inset
29823
29824
29825 \end_layout
29826
29827 \begin_layout Standard
29828 Möchte man die Umgebung 
29829 \series bold
29830 alignedat
29831 \series default
29832
29833 \series bold
29834 gathered
29835 \series default
29836  oder 
29837 \series bold
29838 split
29839 \series default
29840  verwenden, gibt man den Befehl 
29841 \series bold
29842
29843 \backslash
29844 alignedat
29845 \series default
29846 ,
29847 \begin_inset Index idx
29848 status collapsed
29849
29850 \begin_layout Plain Layout
29851 Befehle ! A ! 
29852 \backslash
29853 alignedat
29854 \end_layout
29855
29856 \end_inset
29857
29858  
29859 \series bold
29860
29861 \backslash
29862 gathered
29863 \series default
29864
29865 \begin_inset Index idx
29866 status collapsed
29867
29868 \begin_layout Plain Layout
29869 Befehle ! G ! 
29870 \backslash
29871 gathered
29872 \end_layout
29873
29874 \end_inset
29875
29876  bzw.
29877 \begin_inset space \space{}
29878 \end_inset
29879
29880
29881 \series bold
29882
29883 \backslash
29884 split
29885 \series default
29886
29887 \begin_inset Index idx
29888 status collapsed
29889
29890 \begin_layout Plain Layout
29891 Befehle ! S ! 
29892 \backslash
29893 split
29894 \end_layout
29895
29896 \end_inset
29897
29898  ein.
29899  Die split-Umgebung hat dieselben Eigenschaften wie die aligned-Umgebung,
29900  jedoch darf sie nur zwei Spalten enthalten.
29901 \end_layout
29902
29903 \begin_layout Subsection
29904 Text in mehrzeiligen Formeln
29905 \begin_inset CommandInset label
29906 LatexCommand label
29907 name "sub:Text-in-mehrzeiligen"
29908
29909 \end_inset
29910
29911
29912 \begin_inset Index idx
29913 status collapsed
29914
29915 \begin_layout Plain Layout
29916 Text ! in Formeln
29917 \end_layout
29918
29919 \end_inset
29920
29921
29922 \begin_inset Index idx
29923 status collapsed
29924
29925 \begin_layout Plain Layout
29926 Formel ! mehrzeilige ! Text
29927 \end_layout
29928
29929 \end_inset
29930
29931
29932 \end_layout
29933
29934 \begin_layout Standard
29935 Bei den Align-Umgebungen sowie der multline- und gather-Umgebung besteht
29936  die Möglichkeit Text einzufügen, der in einer eigenen Zeile erscheint und
29937  die Ausrichtung der Spalten nicht beeinflusst.
29938  Dazu wird der Befehl 
29939 \series bold
29940
29941 \backslash
29942 intertext
29943 \begin_inset Index idx
29944 status collapsed
29945
29946 \begin_layout Plain Layout
29947 Befehle ! I ! 
29948 \backslash
29949 intertext
29950 \end_layout
29951
29952 \end_inset
29953
29954
29955 \series default
29956  nach folgendem Schema benutzt:
29957 \end_layout
29958
29959 \begin_layout Standard
29960
29961 \series bold
29962
29963 \backslash
29964 intertext{Text}
29965 \end_layout
29966
29967 \begin_layout Standard
29968 Der Text sollte nicht länger als eine Zeile sein, da er nicht umgebrochen
29969  werden kann.
29970  Weil LyX 
29971 \series bold
29972
29973 \backslash
29974 intertext
29975 \series default
29976  noch nicht direkt unterstützt, schreibt man den Text als mathematischen
29977  Text.
29978  
29979 \series bold
29980
29981 \backslash
29982 intertext
29983 \series default
29984  muss dabei zu Beginn einer Zeile stehen und erscheint in der Ausgabe über
29985  dieser Zeile.
29986  Ein Beispiel bei dem der Text zu Beginn der zweiten Zeile eingegeben wurde:
29987 \begin_inset Formula 
29988 \begin{align}
29989 I & =a\sqrt{2}\int_{0}^{2\pi}\sqrt{1+\cos(\phi)}\;\mathrm{d}\phi\\
29990 \intertext{\text{Integrand ist symmetrisch zu \ensuremath{\phi=\pi}, daher}} & =2a\sqrt{2}\int_{0}^{\pi}\sqrt{1+\cos(\phi)}\;\mathrm{d}\phi
29991 \end{align}
29992
29993 \end_inset
29994
29995
29996 \end_layout
29997
29998 \begin_layout Section
29999 Formelnummerierung
30000 \begin_inset Index idx
30001 status collapsed
30002
30003 \begin_layout Plain Layout
30004 Formelnummerierung
30005 \end_layout
30006
30007 \end_inset
30008
30009
30010 \begin_inset Index idx
30011 status collapsed
30012
30013 \begin_layout Plain Layout
30014 Formel ! Nummerierung|see
30015 \begin_inset ERT
30016 status collapsed
30017
30018 \begin_layout Plain Layout
30019
30020 {
30021 \end_layout
30022
30023 \end_inset
30024
30025 Formelnummerierung
30026 \begin_inset ERT
30027 status collapsed
30028
30029 \begin_layout Plain Layout
30030
30031 }
30032 \end_layout
30033
30034 \end_inset
30035
30036
30037 \end_layout
30038
30039 \end_inset
30040
30041
30042 \end_layout
30043
30044 \begin_layout Subsection
30045 Allgemeines
30046 \end_layout
30047
30048 \begin_layout Standard
30049 Nummerierte Formeln können mit dem Menü 
30050 \family sans
30051 Einfügen\SpecialChar \menuseparator
30052 Mathe\SpecialChar \menuseparator
30053 Nummerierte
30054 \begin_inset space ~
30055 \end_inset
30056
30057 Formel
30058 \family default
30059  (Tastenkürzel 
30060 \family sans
30061 Strg+Alt
30062 \begin_inset space ~
30063 \end_inset
30064
30065 N
30066 \family default
30067 ) erstellt, bestehende Formeln über das Menü 
30068 \family sans
30069 Bearbeiten\SpecialChar \menuseparator
30070 Mathe\SpecialChar \menuseparator
30071 Nummerierung
30072 \begin_inset space ~
30073 \end_inset
30074
30075 an/aus
30076 \family default
30077  (Tastenkürzel 
30078 \family sans
30079 Alt+M
30080 \begin_inset space ~
30081 \end_inset
30082
30083 N
30084 \family default
30085 ) nummeriert werden.
30086  Die Formelnummer erscheint in LyX hinter der Formel als Raute in runden
30087  Klammern.
30088  Im Ausdruck erscheint anstelle der Raute die Formelnummer.
30089 \end_layout
30090
30091 \begin_layout Standard
30092 Wird in mehrzeiligen Formeln die Nummerierung angeschaltet, werden alle
30093  Zeilen nummeriert.
30094  Man kann jedoch über das Menü 
30095 \family sans
30096 Bearbeiten\SpecialChar \menuseparator
30097 Mathe\SpecialChar \menuseparator
30098 Zeilennummerierung an/aus
30099 \family default
30100  (Tastenkürzel 
30101 \family sans
30102 Alt+M
30103 \begin_inset space ~
30104 \end_inset
30105
30106 Shift+N
30107 \family default
30108 ) für jede Zeile die Nummerierung festlegen.
30109 \end_layout
30110
30111 \begin_layout Standard
30112 Außer eingebetteten können alle Formeln in zwei verschiedenen Stilen nummeriert
30113  werden, siehe 
30114 \begin_inset CommandInset ref
30115 LatexCommand ref
30116 reference "sec:Formelstile"
30117
30118 \end_inset
30119
30120 .
30121 \end_layout
30122
30123 \begin_layout Subsection
30124 Querverweise
30125 \begin_inset Index idx
30126 status collapsed
30127
30128 \begin_layout Plain Layout
30129 Querverweise ! auf Formeln
30130 \end_layout
30131
30132 \end_inset
30133
30134
30135 \end_layout
30136
30137 \begin_layout Standard
30138 Es kann auf alle Formeln verwiesen werden, die eine Marke besitzen.
30139  Eine Marke wird mit dem Menü 
30140 \family sans
30141 Einfügen\SpecialChar \menuseparator
30142 Marke
30143 \family default
30144  oder dem Werkzeugleistenknopf 
30145 \begin_inset Graphics
30146         filename ../../images/label-insert.png
30147         scale 85
30148
30149 \end_inset
30150
30151  gesetzt.
30152  Dabei muss sich der Cursor in einer abgesetzten Formel befinden.
30153  Alternativ klickt man mit rechts auf die Formel und wählt 
30154 \family sans
30155 Formelmarke
30156 \family default
30157 .
30158  Es erscheint ein Eingabefeld mit dem voreingestellten Eintrag 
30159 \series bold
30160 eq:
30161 \series default
30162 , nachdem der eigentliche Markenname eingegeben wird.
30163  Der voreingestellte Eintrag steht für 
30164 \begin_inset Quotes gld
30165 \end_inset
30166
30167 equation
30168 \begin_inset Quotes grd
30169 \end_inset
30170
30171  und erleichtert bei größeren Dokumenten die Zuordnung, dass die Marke zu
30172  einer Formel und nicht zu einem Kapitel gehört.
30173  Um eine Marke zu ändern, wählt man wieder das Menü 
30174 \family sans
30175 Einfügen\SpecialChar \menuseparator
30176 Marke
30177 \family default
30178  oder man klickt mit rechts auf eine Formel und dann auf 
30179 \family sans
30180 Formelmarke
30181 \family default
30182 .
30183 \end_layout
30184
30185 \begin_layout Standard
30186 Der Name der Marke erscheint in LyX in zwei runden Klammern hinter der Formel.
30187  Eine Formel mit Marke wird immer nummeriert.
30188 \end_layout
30189
30190 \begin_layout Standard
30191 Querverweise werden mit dem Menü 
30192 \family sans
30193 Einfügen\SpecialChar \menuseparator
30194 Querverweis
30195 \family default
30196  oder dem Werkzeugleistenknopf 
30197 \begin_inset Graphics
30198         filename ../../images/dialog-show-new-inset_ref.png
30199         scale 85
30200
30201 \end_inset
30202
30203  eingefügt.
30204  Ein Querverweis auf Formeln erscheint im Ausdruck als Formelnummer.
30205  Wenn man im Querverweis Dialogfenster das Format 
30206 \series bold
30207 (<Querverweis>)
30208 \series default
30209  wählt, erscheint der Querverweis als Formelnummer in Klammern.
30210 \begin_inset Newline newline
30211 \end_inset
30212
30213 Drückt man in LyX mit der rechten Maustaste auf einen Querverweis, gelangt
30214  man zur Formel auf die verwiesen wird.
30215 \end_layout
30216
30217 \begin_layout Standard
30218 Als Beispiel folgen Querverweise zu Formeln aus diesem Kapitel:
30219 \begin_inset Note Note
30220 status open
30221
30222 \begin_layout Plain Layout
30223 Man beachte die unterschiedlichen Querverweistypen.
30224 \end_layout
30225
30226 \end_inset
30227
30228
30229 \end_layout
30230
30231 \begin_layout Standard
30232 Die Gleichungen 
30233 \begin_inset CommandInset ref
30234 LatexCommand eqref
30235 reference "eq:tag"
30236
30237 \end_inset
30238
30239  und 
30240 \begin_inset CommandInset ref
30241 LatexCommand eqref
30242 reference "eq:c"
30243
30244 \end_inset
30245
30246  sind äquivalent.
30247  In (
30248 \begin_inset CommandInset ref
30249 LatexCommand ref
30250 reference "eq:Lat"
30251
30252 \end_inset
30253
30254 ) werden im Gegensatz zu (
30255 \begin_inset CommandInset ref
30256 LatexCommand ref
30257 reference "eq:Roem"
30258
30259 \end_inset
30260
30261 ) große lateinische Buchstaben zur Nummerierung verwendet.
30262 \end_layout
30263
30264 \begin_layout Standard
30265 \begin_inset VSpace medskip
30266 \end_inset
30267
30268 Ist im Argument von 
30269 \series bold
30270
30271 \backslash
30272 tag
30273 \begin_inset Foot
30274 status collapsed
30275
30276 \begin_layout Plain Layout
30277
30278 \series bold
30279
30280 \backslash
30281 tag
30282 \series default
30283  ist in 
30284 \begin_inset CommandInset ref
30285 LatexCommand ref
30286 reference "sub:Benutzerdefinierte-Nummerierung"
30287
30288 \end_inset
30289
30290  beschrieben.
30291 \end_layout
30292
30293 \end_inset
30294
30295
30296 \series default
30297  wie in 
30298 \begin_inset CommandInset ref
30299 LatexCommand ref
30300 reference "sub:Absatzboxen"
30301
30302 \end_inset
30303
30304  eine Box angegeben, kann nicht auf die Formel verwiesen werden.
30305 \end_layout
30306
30307 \begin_layout Subsection
30308 Unternummerierung
30309 \begin_inset Index idx
30310 status collapsed
30311
30312 \begin_layout Plain Layout
30313 Formelnummerierung ! Unternummerierung
30314 \end_layout
30315
30316 \end_inset
30317
30318
30319 \end_layout
30320
30321 \begin_layout Standard
30322 Möchte man Formeln weiter untergliedern, kann man das mit Hilfe der Befehle
30323  
30324 \begin_inset Newline newline
30325 \end_inset
30326
30327
30328 \series bold
30329
30330 \backslash
30331 begin{subequations}
30332 \series default
30333  und 
30334 \series bold
30335
30336 \backslash
30337 end{subequations}
30338 \series default
30339  erreichen.
30340  Beide Befehle werden im TeX-Modus eingegeben.
30341 \end_layout
30342
30343 \begin_layout Standard
30344 Dazu ein Beispiel:
30345 \begin_inset Formula 
30346 \begin{equation}
30347 A=C-B\label{eq:a}
30348 \end{equation}
30349
30350 \end_inset
30351
30352
30353 \begin_inset ERT
30354 status collapsed
30355
30356 \begin_layout Plain Layout
30357
30358
30359 \backslash
30360 addtocounter{equation}{-1}
30361 \end_layout
30362
30363 \end_inset
30364
30365
30366 \begin_inset ERT
30367 status collapsed
30368
30369 \begin_layout Plain Layout
30370
30371
30372 \backslash
30373 begin{subequations}
30374 \end_layout
30375
30376 \end_inset
30377
30378
30379 \begin_inset VSpace -5mm
30380 \end_inset
30381
30382
30383 \begin_inset Formula 
30384 \begin{equation}
30385 B=C-A\label{eq:b}
30386 \end{equation}
30387
30388 \end_inset
30389
30390
30391 \begin_inset Formula 
30392 \begin{equation}
30393 C=A+B\label{eq:c}
30394 \end{equation}
30395
30396 \end_inset
30397
30398
30399 \end_layout
30400
30401 \begin_layout Standard
30402 \begin_inset ERT
30403 status collapsed
30404
30405 \begin_layout Plain Layout
30406
30407
30408 \backslash
30409 end{subequations}
30410 \end_layout
30411
30412 \end_inset
30413
30414
30415 \end_layout
30416
30417 \begin_layout Standard
30418 Um das Beispiel zu erstellen, geht man folgendermaßen vor:
30419 \end_layout
30420
30421 \begin_layout Enumerate
30422 erste Formel eingeben
30423 \end_layout
30424
30425 \begin_layout Enumerate
30426
30427 \series bold
30428
30429 \backslash
30430 addtocounter{equation}{-1} 
30431 \backslash
30432 begin{subequations}
30433 \begin_inset Index idx
30434 status collapsed
30435
30436 \begin_layout Plain Layout
30437 Befehle ! A ! 
30438 \backslash
30439 addtocounter
30440 \end_layout
30441
30442 \end_inset
30443
30444
30445 \begin_inset Newline newline
30446 \end_inset
30447
30448
30449 \series default
30450 nach der ersten Formel einfügen
30451 \end_layout
30452
30453 \begin_layout Enumerate
30454 zweite Formel eingeben
30455 \end_layout
30456
30457 \begin_layout Enumerate
30458 dritte Formel eingeben
30459 \end_layout
30460
30461 \begin_layout Enumerate
30462
30463 \series bold
30464
30465 \backslash
30466 end{subequations}
30467 \series default
30468  nach der dritten Formel einfügen
30469 \end_layout
30470
30471 \begin_layout Standard
30472 Jede Formel, die zwischen den Befehlen 
30473 \series bold
30474
30475 \backslash
30476 begin
30477 \series default
30478  und 
30479 \series bold
30480
30481 \backslash
30482 end
30483 \series default
30484  steht, wird mit a, b, c, \SpecialChar \ldots{}
30485  untergliedert.
30486  Bei mehrzeiligen Formeln wird jede Zeile untergliedert.
30487  Alle untergliederten Formeln gelten als 
30488 \emph on
30489 eine
30490 \emph default
30491  nummerierte Formel.
30492  Da jede nummerierte Formel den Formelzähler 
30493 \series bold
30494 equation
30495 \series default
30496  um Eins erhöht, ist der Befehl 
30497 \series bold
30498
30499 \backslash
30500 addtocounter
30501 \series default
30502  notwendig um den Zähler wieder zu erniedrigen.
30503  Ansonsten würden die Formeln 
30504 \begin_inset CommandInset ref
30505 LatexCommand eqref
30506 reference "eq:a"
30507
30508 \end_inset
30509
30510
30511 \begin_inset CommandInset ref
30512 LatexCommand eqref
30513 reference "eq:b"
30514
30515 \end_inset
30516
30517
30518 \begin_inset CommandInset ref
30519 LatexCommand eqref
30520 reference "eq:c"
30521
30522 \end_inset
30523
30524  als 
30525 \begin_inset CommandInset ref
30526 LatexCommand eqref
30527 reference "eq:a"
30528
30529 \end_inset
30530
30531
30532 \begin_inset CommandInset ref
30533 LatexCommand eqref
30534 reference "eq:d"
30535
30536 \end_inset
30537
30538
30539 \begin_inset CommandInset ref
30540 LatexCommand eqref
30541 reference "eq:f"
30542
30543 \end_inset
30544
30545  nummeriert werden.
30546 \end_layout
30547
30548 \begin_layout Standard
30549 Durch die Eingabe der Befehle im TeX-Modus wird zwischen den ersten beiden
30550  Formeln automatisch etwas Leerraum erstellt.
30551  Um dies rückgängig zu machen, fügt man nach dem Befehl 
30552 \series bold
30553
30554 \backslash
30555 begin{subequations}
30556 \series default
30557  -5
30558 \begin_inset space \thinspace{}
30559 \end_inset
30560
30561 mm vertikalen Leerraum ein.
30562  Ist der Formelstil 
30563 \series bold
30564 Eingerückt
30565 \begin_inset Foot
30566 status collapsed
30567
30568 \begin_layout Plain Layout
30569 Formelstile siehe 
30570 \begin_inset CommandInset ref
30571 LatexCommand ref
30572 reference "sec:Formelstile"
30573
30574 \end_inset
30575
30576
30577 \end_layout
30578
30579 \end_inset
30580
30581
30582 \series default
30583  gewählt, fügt man -7
30584 \begin_inset space \thinspace{}
30585 \end_inset
30586
30587 mm Leerraum ein.
30588 \end_layout
30589
30590 \begin_layout Standard
30591 Hier ist ein Beispiel für mehrzeilige Formeln, bei dem die Nummerierung
30592  der zweiten Zeile abgeschaltet wurde:
30593 \begin_inset ERT
30594 status collapsed
30595
30596 \begin_layout Plain Layout
30597
30598
30599 \backslash
30600 begin{subequations}
30601 \end_layout
30602
30603 \end_inset
30604
30605
30606 \begin_inset Formula 
30607 \begin{eqnarray}
30608 A & = & (B-Z)^{2}=(B-Z)(B-Z)\label{eq:d}\\
30609  & = & B^{2}-ZB-BZ+Z^{²}\nonumber \\
30610  & = & B^{2}-2BZ+Z^{2}\label{eq:f}
30611 \end{eqnarray}
30612
30613 \end_inset
30614
30615
30616 \begin_inset ERT
30617 status collapsed
30618
30619 \begin_layout Plain Layout
30620
30621
30622 \backslash
30623 end{subequations}
30624 \end_layout
30625
30626 \end_inset
30627
30628
30629 \end_layout
30630
30631 \begin_layout Subsection
30632 Benutzerdefinierte Nummerierung
30633 \begin_inset CommandInset label
30634 LatexCommand label
30635 name "sub:Benutzerdefinierte-Nummerierung"
30636
30637 \end_inset
30638
30639
30640 \begin_inset Index idx
30641 status collapsed
30642
30643 \begin_layout Plain Layout
30644 Formelnummerierung ! benutzerdefinierte
30645 \end_layout
30646
30647 \end_inset
30648
30649
30650 \end_layout
30651
30652 \begin_layout Standard
30653 \begin_inset Index idx
30654 status collapsed
30655
30656 \begin_layout Plain Layout
30657 Formelnummerierung ! eigene Klammern
30658 \end_layout
30659
30660 \end_inset
30661
30662 Bei der Standardnummerierung werden um die Formelnummern runde Klammern
30663  gesetzt.
30664  Will man diese Klammern z.
30665 \begin_inset space \thinspace{}
30666 \end_inset
30667
30668 B.
30669  durch senkrechte Striche ersetzen, gibt man im LaTeX-Vorspann Folgendes
30670  an:
30671 \end_layout
30672
30673 \begin_layout Standard
30674
30675 \series bold
30676
30677 \backslash
30678 def
30679 \backslash
30680 tagform@#1{
30681 \backslash
30682 maketag@@@{|#1|}}
30683 \series default
30684
30685 \begin_inset Note Note
30686 status collapsed
30687
30688 \begin_layout Plain Layout
30689 Dieses Makro ist zum Testen bereits im LaTeX-Vorspann angegeben.
30690  Damit es wirksam wird, muss das Prozentzeichen am Zeilenbeginn entfernt
30691  werden.
30692 \end_layout
30693
30694 \end_inset
30695
30696
30697 \end_layout
30698
30699 \begin_layout Standard
30700 Möchte man andere Zeichen haben, ersetzt man die Striche neben 
30701 \series bold
30702 #1
30703 \series default
30704  durch ein oder mehrere gewünschte Zeichen.
30705  Möchte man nur die Formelnummer haben, lässt man die Striche weg.
30706 \end_layout
30707
30708 \begin_layout Standard
30709 \begin_inset VSpace bigskip
30710 \end_inset
30711
30712 Soll statt einer fortlaufenden Nummer ein beliebiger Ausdruck in den Klammern
30713  hinter der Formel stehen, benutzt man den Befehl 
30714 \series bold
30715
30716 \backslash
30717 tag
30718 \series default
30719
30720 \begin_inset Index idx
30721 status collapsed
30722
30723 \begin_layout Plain Layout
30724 Befehle ! T ! 
30725 \backslash
30726 tag
30727 \end_layout
30728
30729 \end_inset
30730
30731 :
30732 \begin_inset Formula 
30733 \begin{equation}
30734 A+B=C\tag{etwas}\label{eq:tag}
30735 \end{equation}
30736
30737 \end_inset
30738
30739  In diesem Beispiel wurde in der Formel der Befehl 
30740 \series bold
30741
30742 \backslash
30743 tag
30744 \series default
30745
30746 \begin_inset ERT
30747 status collapsed
30748
30749 \begin_layout Plain Layout
30750
30751
30752 \backslash
30753 leer 
30754 \end_layout
30755
30756 \end_inset
30757
30758
30759 \series bold
30760 etwas
30761 \series default
30762  eingegeben.
30763 \end_layout
30764
30765 \begin_layout Standard
30766 Gibt man stattdessen 
30767 \series bold
30768
30769 \backslash
30770 tag*
30771 \series default
30772
30773 \begin_inset ERT
30774 status collapsed
30775
30776 \begin_layout Plain Layout
30777
30778
30779 \backslash
30780 leer 
30781 \end_layout
30782
30783 \end_inset
30784
30785
30786 \series bold
30787 etwas
30788 \series default
30789  ein, verhindert der Stern die Klammern um den Ausdruck:
30790 \begin_inset Formula 
30791 \[
30792 A+B=C\tag*{etwas}
30793 \]
30794
30795 \end_inset
30796
30797
30798 \end_layout
30799
30800 \begin_layout Standard
30801 \begin_inset VSpace bigskip
30802 \end_inset
30803
30804 Möchte man die Formelnummerierung neu starten wenn ein neuer Dokumentteil
30805  oder 
30806 \begin_inset ERT
30807 status collapsed
30808
30809 \begin_layout Plain Layout
30810
30811
30812 \backslash
30813 mbox{
30814 \end_layout
30815
30816 \end_inset
30817
30818 -abschnitt
30819 \begin_inset ERT
30820 status collapsed
30821
30822 \begin_layout Plain Layout
30823
30824 }
30825 \end_layout
30826
30827 \end_inset
30828
30829
30830 \begin_inset Note Note
30831 status collapsed
30832
30833 \begin_layout Plain Layout
30834 Der Befehl 
30835 \series bold
30836
30837 \backslash
30838 mbox
30839 \series default
30840  verhindert, dass am Bindestrich umgebrochen wird.
30841 \end_layout
30842
30843 \end_inset
30844
30845  beginnt, verwendet man folgende LaTeX-Vorspannzeile:
30846 \end_layout
30847
30848 \begin_layout Standard
30849
30850 \series bold
30851
30852 \backslash
30853 @addtoreset{equation}{part}
30854 \series default
30855
30856 \begin_inset Index idx
30857 status collapsed
30858
30859 \begin_layout Plain Layout
30860 Befehle ! 
30861 \begin_inset ERT
30862 status collapsed
30863
30864 \begin_layout Plain Layout
30865
30866 "
30867 \end_layout
30868
30869 \end_inset
30870
30871 @
30872 \begin_inset ERT
30873 status collapsed
30874
30875 \begin_layout Plain Layout
30876
30877 "
30878 \end_layout
30879
30880 \end_inset
30881
30882  ! 
30883 \backslash
30884
30885 \begin_inset ERT
30886 status collapsed
30887
30888 \begin_layout Plain Layout
30889
30890 "
30891 \end_layout
30892
30893 \end_inset
30894
30895 @
30896 \begin_inset ERT
30897 status collapsed
30898
30899 \begin_layout Plain Layout
30900
30901 "
30902 \end_layout
30903
30904 \end_inset
30905
30906 addtoreset
30907 \end_layout
30908
30909 \end_inset
30910
30911
30912 \begin_inset Newline newline
30913 \end_inset
30914
30915 bzw.
30916 \begin_inset Newline newline
30917 \end_inset
30918
30919
30920 \series bold
30921
30922 \backslash
30923 @addtoreset{equation}{section}
30924 \end_layout
30925
30926 \begin_layout Standard
30927 Um diese Befehle im TeX-Modus benutzen zu können, muss das 
30928 \begin_inset Quotes gld
30929 \end_inset
30930
30931 @
30932 \begin_inset Quotes grd
30933 \end_inset
30934
30935  Zeichen für LaTeX mit dem Befehl 
30936 \series bold
30937
30938 \backslash
30939 makeatletter
30940 \series default
30941  
30942 \begin_inset Quotes gld
30943 \end_inset
30944
30945 aktiv
30946 \begin_inset Quotes grd
30947 \end_inset
30948
30949  gemacht werden.
30950  Der Befehl 
30951 \series bold
30952
30953 \backslash
30954 makeatother
30955 \series default
30956  macht dies wieder rückgängig.
30957  Daher ist die Befehlssequenz im TeX-Modus:
30958 \end_layout
30959
30960 \begin_layout Standard
30961
30962 \series bold
30963
30964 \backslash
30965 makeatletter
30966 \begin_inset Newline newline
30967 \end_inset
30968
30969
30970 \backslash
30971 @addtoreset{equation}{section}
30972 \begin_inset Newline newline
30973 \end_inset
30974
30975
30976 \backslash
30977 makeatother
30978 \end_layout
30979
30980 \begin_layout Standard
30981 Im LaTeX-Vorspann können 
30982 \series bold
30983
30984 \backslash
30985 makeatletter
30986 \series default
30987  und 
30988 \series bold
30989
30990 \backslash
30991 makeatother
30992 \series default
30993  weggelassen werden, da LyX sie automatisch intern einfügt.
30994 \end_layout
30995
30996 \begin_layout Standard
30997 Um 
30998 \series bold
30999
31000 \backslash
31001 @addtoreset
31002 \series default
31003  rückgängig zu machen, muss die Datei 
31004 \series bold
31005 remreset.sty
31006 \series default
31007
31008 \begin_inset Foot
31009 status collapsed
31010
31011 \begin_layout Plain Layout
31012
31013 \series bold
31014 remreset
31015 \series default
31016  ist Teil des LaTeX-Paketes 
31017 \series bold
31018 carlisle
31019 \series default
31020
31021 \begin_inset Index idx
31022 status collapsed
31023
31024 \begin_layout Plain Layout
31025 Pakete ! carlisle
31026 \end_layout
31027
31028 \end_inset
31029
31030 , das Teil jeder LaTeX-Standardinstallation ist.
31031 \end_layout
31032
31033 \end_inset
31034
31035
31036 \begin_inset Index idx
31037 status collapsed
31038
31039 \begin_layout Plain Layout
31040 Pakete ! remreset
31041 \end_layout
31042
31043 \end_inset
31044
31045  im LaTeX-Vorspann mit der Zeile
31046 \end_layout
31047
31048 \begin_layout Standard
31049
31050 \series bold
31051
31052 \backslash
31053 usepackage{remreset}
31054 \end_layout
31055
31056 \begin_layout Standard
31057 geladen werden.
31058  Dann kann der Befehl 
31059 \series bold
31060
31061 \backslash
31062 @removefromreset
31063 \series default
31064
31065 \begin_inset Index idx
31066 status collapsed
31067
31068 \begin_layout Plain Layout
31069 Befehle ! 
31070 \begin_inset ERT
31071 status collapsed
31072
31073 \begin_layout Plain Layout
31074
31075 "
31076 \end_layout
31077
31078 \end_inset
31079
31080 @
31081 \begin_inset ERT
31082 status collapsed
31083
31084 \begin_layout Plain Layout
31085
31086 "
31087 \end_layout
31088
31089 \end_inset
31090
31091  ! 
31092 \backslash
31093
31094 \begin_inset ERT
31095 status collapsed
31096
31097 \begin_layout Plain Layout
31098
31099 "
31100 \end_layout
31101
31102 \end_inset
31103
31104 @
31105 \begin_inset ERT
31106 status collapsed
31107
31108 \begin_layout Plain Layout
31109
31110 "
31111 \end_layout
31112
31113 \end_inset
31114
31115 removefromreset
31116 \end_layout
31117
31118 \end_inset
31119
31120  mit dem selben Schema wie 
31121 \series bold
31122
31123 \backslash
31124 @addtoreset
31125 \series default
31126  benutzt werden.
31127 \end_layout
31128
31129 \begin_layout Standard
31130 \begin_inset VSpace bigskip
31131 \end_inset
31132
31133 Oftmals möchte man Formeln in folgender Art nummerieren:
31134 \end_layout
31135
31136 \begin_layout Standard
31137
31138 \family typewriter
31139 (Kapitelnummer.Formelnummer)
31140 \end_layout
31141
31142 \begin_layout Standard
31143 Dabei soll die Formelnummer bei jedem Kapitel wieder mit Eins beginnen.
31144 \end_layout
31145
31146 \begin_layout Standard
31147 Für diesen Fall gibt es den Befehl 
31148 \series bold
31149
31150 \backslash
31151 numberwithin
31152 \series default
31153
31154 \begin_inset Index idx
31155 status collapsed
31156
31157 \begin_layout Plain Layout
31158 Befehle ! N ! 
31159 \backslash
31160 numberwithin
31161 \end_layout
31162
31163 \end_inset
31164
31165 , der nach folgendem Schema benutzt wird:
31166 \end_layout
31167
31168 \begin_layout Standard
31169
31170 \series bold
31171
31172 \backslash
31173 numberwithin{Zähler}{Gliederung}
31174 \end_layout
31175
31176 \begin_layout Standard
31177 Zähler gibt an, welche Nummerierung betroffen ist.
31178  Gliederung gibt an, welche Nummer vor dem Punkt steht.
31179 \end_layout
31180
31181 \begin_layout Standard
31182 In unserem Fall gibt man demnach folgende LaTeX-Vorspann- oder TeX-Code-Zeile
31183  ein:
31184 \end_layout
31185
31186 \begin_layout Standard
31187
31188 \series bold
31189
31190 \backslash
31191 numberwithin{equation}{section}
31192 \end_layout
31193
31194 \begin_layout Standard
31195 Das ist das Ergebnis:
31196 \begin_inset ERT
31197 status collapsed
31198
31199 \begin_layout Plain Layout
31200
31201
31202 \backslash
31203 numberwithin{equation}{section}
31204 \end_layout
31205
31206 \end_inset
31207
31208
31209 \begin_inset Formula 
31210 \begin{equation}
31211 A+B=C
31212 \end{equation}
31213
31214 \end_inset
31215
31216
31217 \end_layout
31218
31219 \begin_layout Standard
31220 Möchte man z.
31221 \begin_inset space \thinspace{}
31222 \end_inset
31223
31224 B.
31225  Tabellen nummerieren, so dass die Nummer des Teils vor dem Punkt steht,
31226  gibt man 
31227 \series bold
31228
31229 \backslash
31230 numberwithin{table}{part}
31231 \series default
31232  ein.
31233 \end_layout
31234
31235 \begin_layout Standard
31236 Um wieder auf Standardnummerierung umzuschalten oder um diese Art der Nummerieru
31237 ng zu vermeiden wenn sie von der Dokumentklasse vorgegeben ist, gibt man
31238  folgenden Befehl als TeX-Code oder als LaTeX-Vorspannzeile ein:
31239 \end_layout
31240
31241 \begin_layout Standard
31242
31243 \series bold
31244
31245 \backslash
31246 renewcommand{
31247 \backslash
31248 theequation}{
31249 \backslash
31250 arabic{equation}}
31251 \begin_inset Index idx
31252 status collapsed
31253
31254 \begin_layout Plain Layout
31255 Befehle ! A ! 
31256 \backslash
31257 arabic
31258 \end_layout
31259
31260 \end_inset
31261
31262
31263 \series default
31264
31265 \begin_inset ERT
31266 status collapsed
31267
31268 \begin_layout Plain Layout
31269
31270
31271 \backslash
31272 renewcommand{
31273 \backslash
31274 theequation}{
31275 \backslash
31276 arabic{equation}}
31277 \end_layout
31278
31279 \end_inset
31280
31281
31282 \series bold
31283
31284 \begin_inset Newline newline
31285 \end_inset
31286
31287
31288 \series default
31289 bzw.
31290 \series bold
31291
31292 \begin_inset Newline newline
31293 \end_inset
31294
31295
31296 \backslash
31297 renewcommand{
31298 \backslash
31299 thetable}{
31300 \backslash
31301 arabic{table}}
31302 \end_layout
31303
31304 \begin_layout Standard
31305
31306 \series bold
31307
31308 \backslash
31309 numberwithin
31310 \series default
31311  benutzt intern den oben beschriebenen Befehl 
31312 \series bold
31313
31314 \backslash
31315 @addtoreset
31316 \series default
31317 , der ebenfalls rückgängig gemacht werden muss.
31318 \begin_inset ERT
31319 status collapsed
31320
31321 \begin_layout Plain Layout
31322
31323
31324 \backslash
31325 makeatletter
31326 \end_layout
31327
31328 \begin_layout Plain Layout
31329
31330
31331 \backslash
31332 @removefromreset{equation}{section}
31333 \end_layout
31334
31335 \begin_layout Plain Layout
31336
31337
31338 \backslash
31339 makeatother
31340 \end_layout
31341
31342 \end_inset
31343
31344
31345 \end_layout
31346
31347 \begin_layout Subsection
31348 Nummerierung mit römischen Zahlen und Buchstaben
31349 \begin_inset Index idx
31350 status collapsed
31351
31352 \begin_layout Plain Layout
31353 Formelnummerierung ! mit Buchstaben
31354 \end_layout
31355
31356 \end_inset
31357
31358
31359 \begin_inset Index idx
31360 status collapsed
31361
31362 \begin_layout Plain Layout
31363 Formelnummerierung ! mit römischen Zahlen
31364 \end_layout
31365
31366 \end_inset
31367
31368
31369 \end_layout
31370
31371 \begin_layout Standard
31372 Formeln können auch mit römischen Zahlen und lateinischen Buchstaben nummeriert
31373  werden.
31374  Um z.
31375 \begin_inset space \thinspace{}
31376 \end_inset
31377
31378 B.
31379  mit kleinen römischen Zahlen zu nummerieren, gibt man vor der Formel im
31380  TeX-Modus den Befehl
31381 \end_layout
31382
31383 \begin_layout Standard
31384
31385 \series bold
31386
31387 \backslash
31388 renewcommand{
31389 \backslash
31390 theequation}{
31391 \backslash
31392 roman{equation}}
31393 \end_layout
31394
31395 \begin_layout Standard
31396 ein.
31397  
31398 \series bold
31399
31400 \backslash
31401 renewcommand
31402 \series default
31403
31404 \begin_inset Index idx
31405 status collapsed
31406
31407 \begin_layout Plain Layout
31408 Befehle ! R ! 
31409 \backslash
31410 renewcommand
31411 \end_layout
31412
31413 \end_inset
31414
31415  weist dem vordefinierten Befehl 
31416 \series bold
31417
31418 \backslash
31419 theequation
31420 \series default
31421  den Befehl
31422 \begin_inset Newline linebreak
31423 \end_inset
31424
31425
31426 \series bold
31427
31428 \backslash
31429 roman{equation}
31430 \series default
31431  zu.
31432 \begin_inset Foot
31433 status collapsed
31434
31435 \begin_layout Plain Layout
31436 Der Befehl 
31437 \series bold
31438
31439 \backslash
31440 renewcommand
31441 \series default
31442  besitzt dasselbe Schema wie der in 
31443 \begin_inset CommandInset ref
31444 LatexCommand ref
31445 reference "sub:Der-Befehl-newcommand"
31446
31447 \end_inset
31448
31449  beschriebene Befehl
31450 \begin_inset Newline newline
31451 \end_inset
31452
31453
31454 \series bold
31455
31456 \backslash
31457 newcommand
31458 \series default
31459 .
31460 \end_layout
31461
31462 \end_inset
31463
31464  
31465 \series bold
31466 equation
31467 \series default
31468  ist der Formelzähler.
31469  Stellt man einem Zähler den Befehl 
31470 \series bold
31471
31472 \backslash
31473 the
31474 \series default
31475  voran, bewirkt dies, dass der Wert des Zählers als arabische Zahl ausgegeben
31476  wird.
31477  Gibt man an, dass eine Formel nummeriert wird, setzt LaTeX intern den Befehl
31478  
31479 \series bold
31480
31481 \backslash
31482 theequation
31483 \series default
31484  hinter die Formel.
31485  
31486 \series bold
31487
31488 \backslash
31489 roman{equation}
31490 \begin_inset Index idx
31491 status collapsed
31492
31493 \begin_layout Plain Layout
31494 Befehle ! R ! 
31495 \backslash
31496 roman
31497 \end_layout
31498
31499 \end_inset
31500
31501
31502 \series default
31503  bewirkt, dass der Formelzähler als kleine römische Zahl erscheint.
31504 \end_layout
31505
31506 \begin_layout Standard
31507 Alle Formeln nach dem 
31508 \series bold
31509
31510 \backslash
31511 renewcommand
31512 \series default
31513 -Befehl werden nun römisch nummeriert.
31514  Um auf Nummerierung mit großen römischen Zahlen umzuschalten, gibt man
31515  den Befehl erneut ein, ersetzt aber 
31516 \series bold
31517
31518 \backslash
31519 roman
31520 \series default
31521  durch 
31522 \series bold
31523
31524 \backslash
31525 Roman
31526 \series default
31527
31528 \begin_inset Index idx
31529 status collapsed
31530
31531 \begin_layout Plain Layout
31532 Befehle ! R ! 
31533 \backslash
31534 roman@
31535 \backslash
31536 Roman
31537 \end_layout
31538
31539 \end_inset
31540
31541 .
31542  Für die 
31543 \begin_inset Quotes gld
31544 \end_inset
31545
31546 Nummerierung
31547 \begin_inset Quotes grd
31548 \end_inset
31549
31550  mit lateinischen Buchstaben gibt es den Befehl 
31551 \series bold
31552
31553 \backslash
31554 alph
31555 \series default
31556
31557 \begin_inset Index idx
31558 status collapsed
31559
31560 \begin_layout Plain Layout
31561 Befehle ! A ! 
31562 \backslash
31563 alph
31564 \end_layout
31565
31566 \end_inset
31567
31568  für kleine und 
31569 \series bold
31570
31571 \backslash
31572 Alph
31573 \series default
31574
31575 \begin_inset Index idx
31576 status collapsed
31577
31578 \begin_layout Plain Layout
31579 Befehle ! A ! 
31580 \backslash
31581 alph@
31582 \backslash
31583 Alph
31584 \end_layout
31585
31586 \end_inset
31587
31588  für große Buchstaben.
31589 \end_layout
31590
31591 \begin_layout Standard
31592 \begin_inset Note Greyedout
31593 status open
31594
31595 \begin_layout Plain Layout
31596
31597 \series bold
31598 \color none
31599 Achtung:
31600 \series default
31601  Es können nur maximal 26
31602 \begin_inset space ~
31603 \end_inset
31604
31605 Formeln in einem Dokument mit lateinischen Buchstaben nummeriert werden.
31606 \end_layout
31607
31608 \end_inset
31609
31610
31611 \end_layout
31612
31613 \begin_layout Standard
31614 \begin_inset ERT
31615 status collapsed
31616
31617 \begin_layout Plain Layout
31618
31619
31620 \backslash
31621 renewcommand{
31622 \backslash
31623 theequation}{
31624 \backslash
31625 roman{equation}}
31626 \end_layout
31627
31628 \end_inset
31629
31630
31631 \end_layout
31632
31633 \begin_layout Standard
31634 \begin_inset Formula 
31635 \begin{equation}
31636 A=\textrm{römisch}
31637 \end{equation}
31638
31639 \end_inset
31640
31641
31642 \begin_inset ERT
31643 status collapsed
31644
31645 \begin_layout Plain Layout
31646
31647
31648 \backslash
31649 renewcommand{
31650 \backslash
31651 theequation}{
31652 \backslash
31653 Roman{equation}}
31654 \end_layout
31655
31656 \end_inset
31657
31658
31659 \begin_inset Formula 
31660 \begin{equation}
31661 B=\textrm{Römisch}\label{eq:Roem}
31662 \end{equation}
31663
31664 \end_inset
31665
31666
31667 \begin_inset ERT
31668 status collapsed
31669
31670 \begin_layout Plain Layout
31671
31672
31673 \backslash
31674 renewcommand{
31675 \backslash
31676 theequation}{
31677 \backslash
31678 alph{equation}}
31679 \end_layout
31680
31681 \end_inset
31682
31683
31684 \begin_inset Formula 
31685 \begin{equation}
31686 C=\textrm{lateinisch}
31687 \end{equation}
31688
31689 \end_inset
31690
31691
31692 \begin_inset ERT
31693 status collapsed
31694
31695 \begin_layout Plain Layout
31696
31697
31698 \backslash
31699 renewcommand{
31700 \backslash
31701 theequation}{
31702 \backslash
31703 Alph{equation}}
31704 \end_layout
31705
31706 \end_inset
31707
31708
31709 \begin_inset Formula 
31710 \begin{equation}
31711 D=\textrm{Lateinisch}\label{eq:Lat}
31712 \end{equation}
31713
31714 \end_inset
31715
31716
31717 \end_layout
31718
31719 \begin_layout Standard
31720 Um wieder auf Standardnummerierung umzuschalten, gibt man folgenden Befehl
31721  ein:
31722 \end_layout
31723
31724 \begin_layout Standard
31725
31726 \series bold
31727
31728 \backslash
31729 renewcommand{
31730 \backslash
31731 theequation}{
31732 \backslash
31733 arabic{equation}}
31734 \begin_inset Index idx
31735 status collapsed
31736
31737 \begin_layout Plain Layout
31738 Befehle ! A ! 
31739 \backslash
31740 arabic
31741 \end_layout
31742
31743 \end_inset
31744
31745
31746 \end_layout
31747
31748 \begin_layout Standard
31749 \begin_inset ERT
31750 status collapsed
31751
31752 \begin_layout Plain Layout
31753
31754
31755 \backslash
31756 renewcommand{
31757 \backslash
31758 theequation}{
31759 \backslash
31760 arabic{equation}}
31761 \end_layout
31762
31763 \end_inset
31764
31765
31766 \begin_inset Formula 
31767 \begin{equation}
31768 E=\textrm{arabisch}
31769 \end{equation}
31770
31771 \end_inset
31772
31773
31774 \end_layout
31775
31776 \begin_layout Standard
31777 \begin_inset VSpace medskip
31778 \end_inset
31779
31780 Wie man sieht, werden die Formeln unabhängig von der Nummerierungsart durchnumme
31781 riert.
31782  Soll beim Wechsel der Nummerierungsart die Nummerierung wieder mit Eins
31783  beginnen, müssen neue Formelzähler angelegt werden.
31784  Eine Beschreibung dazu findet man in der Datei 
31785 \begin_inset CommandInset href
31786 LatexCommand href
31787 name "Formelnummerierung.lyx"
31788 target "run:Formelnummerierung.lyx"
31789
31790 \end_inset
31791
31792 .
31793 \end_layout
31794
31795 \begin_layout Section
31796 Chemische Symbole und Reaktionsgleichungen
31797 \begin_inset CommandInset label
31798 LatexCommand label
31799 name "sub:Chemische-Symbole-und"
31800
31801 \end_inset
31802
31803
31804 \begin_inset Index idx
31805 status collapsed
31806
31807 \begin_layout Plain Layout
31808 chemische Zeichen ! Symbole
31809 \end_layout
31810
31811 \end_inset
31812
31813
31814 \begin_inset Index idx
31815 status collapsed
31816
31817 \begin_layout Plain Layout
31818 Reaktionsgleichungen
31819 \end_layout
31820
31821 \end_inset
31822
31823
31824 \begin_inset Index idx
31825 status collapsed
31826
31827 \begin_layout Plain Layout
31828 Symbole ! chemische
31829 \end_layout
31830
31831 \end_inset
31832
31833
31834 \end_layout
31835
31836 \begin_layout Standard
31837 Ein Beispieltext aus der Chemie:
31838 \end_layout
31839
31840 \begin_layout Quote
31841 Das 
31842 \begin_inset Formula $\mathrm{SO_{4}^{2-}}$
31843 \end_inset
31844
31845 -Ion verbindet sich mit zwei 
31846 \begin_inset Formula $\mathrm{Na^{+}}$
31847 \end_inset
31848
31849 -Ionen zu Natriumsulfat 
31850 \begin_inset Formula $\left(\mathrm{Na_{2}SO_{4}}\right)$
31851 \end_inset
31852
31853 .
31854  Die Reaktionsgleichung dazu lautet:
31855 \begin_inset Formula 
31856 \begin{equation}
31857 \mathrm{2\, Na^{+}+SO_{4}^{2-}\longrightarrow Na_{2}SO_{4}}\label{eq:chemische-Reaktion}
31858 \end{equation}
31859
31860 \end_inset
31861
31862
31863 \end_layout
31864
31865 \begin_layout Standard
31866 Diese Reaktionsgleichung kann direkt als Formel erstellt werden.
31867  Damit die Symbole nicht kursiv erscheinen, markiert man sämtliche Zeichen
31868  in der Formel und wandelt diese mit der Tastenkombination 
31869 \family sans
31870 Alt+Z
31871 \begin_inset space ~
31872 \end_inset
31873
31874 R
31875 \family default
31876  in den aufrechten Schriftstil um.
31877 \begin_inset Foot
31878 status collapsed
31879
31880 \begin_layout Plain Layout
31881 Schriftstile siehe 
31882 \begin_inset CommandInset ref
31883 LatexCommand ref
31884 reference "sub:Schriftstile"
31885
31886 \end_inset
31887
31888
31889 \end_layout
31890
31891 \end_inset
31892
31893
31894 \end_layout
31895
31896 \begin_layout Standard
31897 Eine komfortablerer Weg chemische Formeln zu setzen, ist es den Befehl
31898 \series bold
31899  
31900 \backslash
31901 ce
31902 \series default
31903
31904 \begin_inset Index idx
31905 status collapsed
31906
31907 \begin_layout Plain Layout
31908 Befehle ! C ! 
31909 \backslash
31910 ce
31911 \end_layout
31912
31913 \end_inset
31914
31915  zu benutzen.
31916  Dieser ist verfügbar, wenn das LaTeX-Paket 
31917 \series bold
31918 mhchem
31919 \series default
31920
31921 \begin_inset Index idx
31922 status collapsed
31923
31924 \begin_layout Plain Layout
31925 Pakete ! mhchem
31926 \end_layout
31927
31928 \end_inset
31929
31930  installiert ist.
31931  Nachdem 
31932 \series bold
31933
31934 \backslash
31935 ce
31936 \series default
31937  in eine Formel eingefügt wurde, erscheint eine neue blaue Box in die chemische
31938  Formeln in intuitiver Weise eingegeben werden können.
31939 \end_layout
31940
31941 \begin_layout Standard
31942 \align center
31943 \begin_inset Tabular
31944 <lyxtabular version="3" rows="9" columns="2">
31945 <features rotate="0" tabularvalignment="middle">
31946 <column alignment="center" valignment="top">
31947 <column alignment="center" valignment="top">
31948 <row>
31949 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
31950 \begin_inset Text
31951
31952 \begin_layout Plain Layout
31953 Befehl
31954 \end_layout
31955
31956 \end_inset
31957 </cell>
31958 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
31959 \begin_inset Text
31960
31961 \begin_layout Plain Layout
31962 Ergebnis
31963 \begin_inset Note Note
31964 status collapsed
31965
31966 \begin_layout Plain Layout
31967
31968 \series bold
31969
31970 \backslash
31971 raisebox
31972 \series default
31973  dient nur als Abstandhalter.
31974 \end_layout
31975
31976 \end_inset
31977
31978
31979 \end_layout
31980
31981 \end_inset
31982 </cell>
31983 </row>
31984 <row>
31985 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
31986 \begin_inset Text
31987
31988 \begin_layout Plain Layout
31989
31990 \backslash
31991 ce
31992 \begin_inset ERT
31993 status collapsed
31994
31995 \begin_layout Plain Layout
31996
31997
31998 \backslash
31999 leer 
32000 \end_layout
32001
32002 \end_inset
32003
32004 H2CO3
32005 \end_layout
32006
32007 \end_inset
32008 </cell>
32009 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
32010 \begin_inset Text
32011
32012 \begin_layout Plain Layout
32013 \begin_inset Formula $\raisebox{4.5mm}{}\ce{H2CO3}\raisebox{-2mm}{}$
32014 \end_inset
32015
32016
32017 \end_layout
32018
32019 \end_inset
32020 </cell>
32021 </row>
32022 <row>
32023 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
32024 \begin_inset Text
32025
32026 \begin_layout Plain Layout
32027
32028 \backslash
32029 ce
32030 \begin_inset ERT
32031 status collapsed
32032
32033 \begin_layout Plain Layout
32034
32035
32036 \backslash
32037 leer 
32038 \end_layout
32039
32040 \end_inset
32041
32042 SO4^2-
32043 \end_layout
32044
32045 \end_inset
32046 </cell>
32047 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
32048 \begin_inset Text
32049
32050 \begin_layout Plain Layout
32051 \begin_inset Formula $\raisebox{5mm}{}\ce{SO4^{2-}}\raisebox{-2mm}{}$
32052 \end_inset
32053
32054
32055 \end_layout
32056
32057 \end_inset
32058 </cell>
32059 </row>
32060 <row>
32061 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
32062 \begin_inset Text
32063
32064 \begin_layout Plain Layout
32065
32066 \backslash
32067 ce
32068 \begin_inset ERT
32069 status collapsed
32070
32071 \begin_layout Plain Layout
32072
32073
32074 \backslash
32075 leer 
32076 \end_layout
32077
32078 \end_inset
32079
32080 (NH4)2S
32081 \end_layout
32082
32083 \end_inset
32084 </cell>
32085 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
32086 \begin_inset Text
32087
32088 \begin_layout Plain Layout
32089 \begin_inset Formula $\raisebox{4.5mm}{}\ce{(NH4)2S}\raisebox{-2mm}{}$
32090 \end_inset
32091
32092
32093 \end_layout
32094
32095 \end_inset
32096 </cell>
32097 </row>
32098 <row>
32099 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
32100 \begin_inset Text
32101
32102 \begin_layout Plain Layout
32103
32104 \backslash
32105 ce
32106 \begin_inset ERT
32107 status collapsed
32108
32109 \begin_layout Plain Layout
32110
32111
32112 \backslash
32113 leer 
32114 \end_layout
32115
32116 \end_inset
32117
32118 KCr(SO4)2.12H2O
32119 \end_layout
32120
32121 \end_inset
32122 </cell>
32123 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
32124 \begin_inset Text
32125
32126 \begin_layout Plain Layout
32127 \begin_inset Formula $\raisebox{4.5mm}{}\ce{KCr(SO4)2.12H2O}\raisebox{-2mm}{}$
32128 \end_inset
32129
32130
32131 \end_layout
32132
32133 \end_inset
32134 </cell>
32135 </row>
32136 <row>
32137 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
32138 \begin_inset Text
32139
32140 \begin_layout Plain Layout
32141
32142 \backslash
32143 ce
32144 \begin_inset ERT
32145 status collapsed
32146
32147 \begin_layout Plain Layout
32148
32149
32150 \backslash
32151 leer 
32152 \end_layout
32153
32154 \end_inset
32155
32156 A-B
32157 \backslash
32158 dbond
32159 \begin_inset ERT
32160 status collapsed
32161
32162 \begin_layout Plain Layout
32163
32164
32165 \backslash
32166 leer 
32167 \end_layout
32168
32169 \end_inset
32170
32171 C
32172 \backslash
32173 tbond
32174 \begin_inset ERT
32175 status collapsed
32176
32177 \begin_layout Plain Layout
32178
32179
32180 \backslash
32181 leer 
32182 \end_layout
32183
32184 \end_inset
32185
32186 D
32187 \end_layout
32188
32189 \end_inset
32190 </cell>
32191 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
32192 \begin_inset Text
32193
32194 \begin_layout Plain Layout
32195 \begin_inset Formula $\raisebox{4.5mm}{}\ce{A-B\dbond C\tbond D}\raisebox{-2mm}{}$
32196 \end_inset
32197
32198
32199 \end_layout
32200
32201 \end_inset
32202 </cell>
32203 </row>
32204 <row>
32205 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
32206 \begin_inset Text
32207
32208 \begin_layout Plain Layout
32209
32210 \backslash
32211 ce
32212 \begin_inset ERT
32213 status collapsed
32214
32215 \begin_layout Plain Layout
32216
32217
32218 \backslash
32219 leer 
32220 \end_layout
32221
32222 \end_inset
32223
32224 ^227
32225 \begin_inset Formula $\downarrow$
32226 \end_inset
32227
32228 _90
32229 \begin_inset Formula $\to$
32230 \end_inset
32231
32232 Th+
32233 \end_layout
32234
32235 \end_inset
32236 </cell>
32237 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
32238 \begin_inset Text
32239
32240 \begin_layout Plain Layout
32241 \begin_inset Formula $\raisebox{5mm}{}\ce{_{90}^{227}Th+}\raisebox{-2mm}{}$
32242 \end_inset
32243
32244
32245 \end_layout
32246
32247 \end_inset
32248 </cell>
32249 </row>
32250 <row>
32251 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
32252 \begin_inset Text
32253
32254 \begin_layout Plain Layout
32255
32256 \backslash
32257 ce
32258 \begin_inset ERT
32259 status collapsed
32260
32261 \begin_layout Plain Layout
32262
32263
32264 \backslash
32265 leer 
32266 \end_layout
32267
32268 \end_inset
32269
32270 CO2
32271 \begin_inset ERT
32272 status collapsed
32273
32274 \begin_layout Plain Layout
32275
32276
32277 \backslash
32278 leer 
32279 \end_layout
32280
32281 \end_inset
32282
32283 +
32284 \begin_inset ERT
32285 status collapsed
32286
32287 \begin_layout Plain Layout
32288
32289
32290 \backslash
32291 leer 
32292 \end_layout
32293
32294 \end_inset
32295
32296 C
32297 \begin_inset ERT
32298 status collapsed
32299
32300 \begin_layout Plain Layout
32301
32302
32303 \backslash
32304 leer 
32305 \end_layout
32306
32307 \end_inset
32308
32309 <=>
32310 \begin_inset ERT
32311 status collapsed
32312
32313 \begin_layout Plain Layout
32314
32315
32316 \backslash
32317 leer 
32318 \end_layout
32319
32320 \end_inset
32321
32322 2CO
32323 \end_layout
32324
32325 \end_inset
32326 </cell>
32327 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
32328 \begin_inset Text
32329
32330 \begin_layout Plain Layout
32331 \begin_inset Formula $\raisebox{4.5mm}{}\ce{CO2 + C <=> 2CO}\raisebox{-2mm}{}$
32332 \end_inset
32333
32334
32335 \end_layout
32336
32337 \end_inset
32338 </cell>
32339 </row>
32340 <row>
32341 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
32342 \begin_inset Text
32343
32344 \begin_layout Plain Layout
32345
32346 \backslash
32347 ce
32348 \begin_inset ERT
32349 status collapsed
32350
32351 \begin_layout Plain Layout
32352
32353
32354 \backslash
32355 leer 
32356 \end_layout
32357
32358 \end_inset
32359
32360 CO2
32361 \begin_inset ERT
32362 status collapsed
32363
32364 \begin_layout Plain Layout
32365
32366
32367 \backslash
32368 leer 
32369 \end_layout
32370
32371 \end_inset
32372
32373 +
32374 \begin_inset ERT
32375 status collapsed
32376
32377 \begin_layout Plain Layout
32378
32379
32380 \backslash
32381 leer 
32382 \end_layout
32383
32384 \end_inset
32385
32386 C
32387 \begin_inset ERT
32388 status collapsed
32389
32390 \begin_layout Plain Layout
32391
32392
32393 \backslash
32394 leer 
32395 \end_layout
32396
32397 \end_inset
32398
32399 ->[
32400 \backslash
32401 alpha][
32402 \backslash
32403 beta]
32404 \begin_inset ERT
32405 status collapsed
32406
32407 \begin_layout Plain Layout
32408
32409
32410 \backslash
32411 leer 
32412 \end_layout
32413
32414 \end_inset
32415
32416 2CO}
32417 \end_layout
32418
32419 \end_inset
32420 </cell>
32421 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
32422 \begin_inset Text
32423
32424 \begin_layout Plain Layout
32425 \begin_inset Formula $\raisebox{5mm}{}\ce{CO2 + C ->[\alpha][\beta] 2CO}\raisebox{-4mm}{}$
32426 \end_inset
32427
32428
32429 \end_layout
32430
32431 \end_inset
32432 </cell>
32433 </row>
32434 </lyxtabular>
32435
32436 \end_inset
32437
32438
32439 \end_layout
32440
32441 \begin_layout Standard
32442 \begin_inset Note Greyedout
32443 status open
32444
32445 \begin_layout Plain Layout
32446
32447 \series bold
32448 \color none
32449 Achtung:
32450 \series default
32451  Wenn eine Formel in eine 
32452 \series bold
32453
32454 \backslash
32455 ce
32456 \series default
32457 -Box eingefügt wird, führt dies zu LaTeX-Fehlern.
32458  In diesem Fall muss daher TeX-Code verwendet werden, wie z.
32459 \begin_inset space \thinspace{}
32460 \end_inset
32461
32462 B.
32463  für
32464 \begin_inset Newline newline
32465 \end_inset
32466
32467
32468 \series bold
32469
32470 \backslash
32471 ce{$
32472 \backslash
32473 mu
32474 \backslash
32475 hyphen$Cl}
32476 \series default
32477
32478 \begin_inset ERT
32479 status collapsed
32480
32481 \begin_layout Plain Layout
32482
32483
32484 \backslash
32485 ce{$
32486 \backslash
32487 mu
32488 \backslash
32489 hyphen$Cl}
32490 \end_layout
32491
32492 \end_inset
32493
32494  
32495 \end_layout
32496
32497 \end_inset
32498
32499
32500 \end_layout
32501
32502 \begin_layout Standard
32503 \begin_inset Note Greyedout
32504 status open
32505
32506 \begin_layout Plain Layout
32507
32508 \series bold
32509 \color none
32510 Achtung:
32511 \series default
32512  Es ist nicht möglich in LyX das Zeichen ^ zu verwenden um einen Pfeil nach
32513  oben zu bekommen, wie es im 
32514 \series bold
32515 mhchem
32516 \series default
32517 -Handbuch steht.
32518  Man verwendet stattdessen einen kleinen negativen Leerraum gefolgt vom
32519  Befehl 
32520 \series bold
32521
32522 \backslash
32523 uparrow
32524 \series default
32525 :
32526 \begin_inset Newline newline
32527 \end_inset
32528
32529
32530 \begin_inset Formula $\ce{Fe + 2H+ -> Fe^{2+} + H2\negthinspace\uparrow}$
32531 \end_inset
32532
32533
32534 \end_layout
32535
32536 \end_inset
32537
32538
32539 \end_layout
32540
32541 \begin_layout Standard
32542 Wird 
32543 \series bold
32544
32545 \backslash
32546 ce
32547 \series default
32548  benutzt, lautet der Befehl für Gleichung
32549 \begin_inset space ~
32550 \end_inset
32551
32552
32553 \begin_inset CommandInset ref
32554 LatexCommand eqref
32555 reference "eq:chemische-Reaktion"
32556
32557 \end_inset
32558
32559 :
32560 \begin_inset Newline newline
32561 \end_inset
32562
32563
32564 \series bold
32565  
32566 \backslash
32567 ce
32568 \series default
32569
32570 \begin_inset ERT
32571 status collapsed
32572
32573 \begin_layout Plain Layout
32574
32575
32576 \backslash
32577 leer 
32578 \end_layout
32579
32580 \end_inset
32581
32582
32583 \series bold
32584 2Na+
32585 \series default
32586
32587 \begin_inset ERT
32588 status collapsed
32589
32590 \begin_layout Plain Layout
32591
32592
32593 \backslash
32594 leer 
32595 \end_layout
32596
32597 \end_inset
32598
32599
32600 \series bold
32601 +
32602 \series default
32603
32604 \begin_inset ERT
32605 status collapsed
32606
32607 \begin_layout Plain Layout
32608
32609
32610 \backslash
32611 leer 
32612 \end_layout
32613
32614 \end_inset
32615
32616
32617 \series bold
32618 SO4^2-
32619 \series default
32620
32621 \begin_inset ERT
32622 status collapsed
32623
32624 \begin_layout Plain Layout
32625
32626
32627 \backslash
32628 leer 
32629 \end_layout
32630
32631 \end_inset
32632
32633
32634 \begin_inset ERT
32635 status collapsed
32636
32637 \begin_layout Plain Layout
32638
32639
32640 \backslash
32641 leer 
32642 \end_layout
32643
32644 \end_inset
32645
32646
32647 \series bold
32648 ->
32649 \series default
32650
32651 \begin_inset ERT
32652 status collapsed
32653
32654 \begin_layout Plain Layout
32655
32656
32657 \backslash
32658 leer 
32659 \end_layout
32660
32661 \end_inset
32662
32663
32664 \series bold
32665 Na2SO4
32666 \end_layout
32667
32668 \begin_layout Standard
32669 Um mehrzeilige chemische Gleichungen zu erzeugen, wird zuerst eine mehrzeilige
32670  Formel erstellt, wie in 
32671 \begin_inset CommandInset ref
32672 LatexCommand ref
32673 reference "sec:Mehrzeilige-Formeln"
32674
32675 \end_inset
32676
32677  beschrieben.
32678  Anschließend wird in jeder kleinen blauen Box der Formel der Befehl 
32679 \series bold
32680
32681 \backslash
32682 ce
32683 \series default
32684  verwendet.
32685  
32686 \begin_inset CommandInset ref
32687 LatexCommand eqref
32688 reference "eq:TEOS-Reaktion-1"
32689
32690 \end_inset
32691
32692  und 
32693 \begin_inset CommandInset ref
32694 LatexCommand eqref
32695 reference "eq:TEOS-Reaktion-2"
32696
32697 \end_inset
32698
32699  sind ein Beispiel für eine mehrstufige chemische Reaktion, bei der jede
32700  Gleichung eine eigene Nummer hat.
32701 \begin_inset Formula 
32702 \begin{eqnarray}
32703 \ce{TEOS + 4O} & \ce{->} & \ce{Si(OH)4 + 4C2H4O}\label{eq:TEOS-Reaktion-1}\\
32704 \ce{Si(OH)4} & \ce{->} & \ce{SiO2 + 2H2O}\label{eq:TEOS-Reaktion-2}
32705 \end{eqnarray}
32706
32707 \end_inset
32708
32709
32710 \end_layout
32711
32712 \begin_layout Standard
32713 Außer 
32714 \series bold
32715
32716 \backslash
32717 ce
32718 \series default
32719  bietet das Paket 
32720 \series bold
32721 mhchem
32722 \series default
32723  noch den Befehl 
32724 \series bold
32725
32726 \backslash
32727 cf
32728 \series default
32729
32730 \begin_inset Index idx
32731 status collapsed
32732
32733 \begin_layout Plain Layout
32734 Befehle ! C ! 
32735 \backslash
32736 cf
32737 \end_layout
32738
32739 \end_inset
32740
32741  für spezielle Fälle.
32742  Mehr über 
32743 \series bold
32744
32745 \backslash
32746 cf
32747 \series default
32748  und weitere Beispiele sind in der Dokumentation von 
32749 \series bold
32750 mhchem
32751 \series default
32752  zu finden, 
32753 \begin_inset CommandInset citation
32754 LatexCommand cite
32755 key "mhchem"
32756
32757 \end_inset
32758
32759 .
32760 \end_layout
32761
32762 \begin_layout Section
32763 Diagramme
32764 \end_layout
32765
32766 \begin_layout Standard
32767 LyX unterstützt zwei Typen kommutativer Diagramme: 
32768 \series bold
32769 amscd
32770 \series default
32771  und 
32772 \series bold
32773 xymatrix
32774 \series default
32775 , die im Folgenden erläutert sind.
32776 \end_layout
32777
32778 \begin_layout Subsection
32779 amscd Diagramme
32780 \begin_inset Index idx
32781 status collapsed
32782
32783 \begin_layout Plain Layout
32784 Diagramme ! amscd
32785 \end_layout
32786
32787 \end_inset
32788
32789
32790 \end_layout
32791
32792 \begin_layout Standard
32793 Diagramme dieses Typs stellen Beziehungen mittels horizontaler und vertikaler
32794  Linien oder Pfeilen dar:
32795 \begin_inset Formula 
32796 \[
32797 \begin{CD}A@>>>B@>>>C\\
32798 @AAA@.@VVV\\
32799 F@<<<E@<<<D
32800 \end{CD}
32801 \]
32802
32803 \end_inset
32804
32805
32806 \end_layout
32807
32808 \begin_layout Standard
32809 Um sie zu erstellen, gibt man in einer Formel den Befehl 
32810 \series bold
32811
32812 \backslash
32813 CD
32814 \begin_inset Index idx
32815 status collapsed
32816
32817 \begin_layout Plain Layout
32818 Befehle ! C ! 
32819 \backslash
32820 CD
32821 \end_layout
32822
32823 \end_inset
32824
32825
32826 \series default
32827  ein.
32828  Es erscheint ein blaues Kästchen mit zwei gestrichelten Linien, in das
32829  man die weiteren Befehle eingibt.
32830  Mit 
32831 \series bold
32832
32833 \begin_inset ERT
32834 status collapsed
32835
32836 \begin_layout Plain Layout
32837
32838
32839 \backslash
32840 mbox{
32841 \end_layout
32842
32843 \end_inset
32844
32845
32846 \family sans
32847 \series default
32848 Strg+Enter
32849 \family default
32850 \series bold
32851
32852 \begin_inset ERT
32853 status collapsed
32854
32855 \begin_layout Plain Layout
32856
32857 }
32858 \end_layout
32859
32860 \end_inset
32861
32862
32863 \series default
32864  wird eine neue Zeile erstellt.
32865  Horizontale Beziehungen werden in ungerade Zeilen, vertikale in gerade
32866  Zeilen der Formel eingegeben.
32867 \end_layout
32868
32869 \begin_layout Standard
32870 Zum Erstellen der Beziehungen gibt es folgende Befehle:
32871 \end_layout
32872
32873 \begin_layout Itemize
32874
32875 \series bold
32876 @<<<
32877 \series default
32878  erstellt einen Linkspfeil, 
32879 \series bold
32880 @>>>
32881 \series default
32882  einen Rechtspfeil und 
32883 \series bold
32884 @=
32885 \series default
32886  ein langes Gleichheitszeichen
32887 \end_layout
32888
32889 \begin_layout Itemize
32890
32891 \series bold
32892 @AAA
32893 \series default
32894  erstellt einen Pfeil nach oben, 
32895 \series bold
32896 @VVV
32897 \series default
32898  einen Pfeil nach unten und 
32899 \series bold
32900 @|
32901 \series default
32902  ein senkrechtes Gleichheitszeichen
32903 \end_layout
32904
32905 \begin_layout Itemize
32906
32907 \series bold
32908 @.
32909
32910 \series default
32911  dient als Platzhalter für nicht vorhandene Beziehungen
32912 \end_layout
32913
32914 \begin_layout Standard
32915 Alle Pfeile sind wie folgt beschriftbar:
32916 \end_layout
32917
32918 \begin_layout Itemize
32919 Wird bei horizontalen Pfeilen zwischen dem ersten und zweiten < bzw.
32920 \begin_inset space \space{}
32921 \end_inset
32922
32923 > Text eingegeben, erscheint er über dem Pfeil.
32924  Wird der Text zwischen dem zweiten und dritten < bzw.
32925 \begin_inset space \space{}
32926 \end_inset
32927
32928 > eingegeben, erscheint er unter dem Pfeil.
32929 \end_layout
32930
32931 \begin_layout Itemize
32932 Wird bei vertikalen Pfeilen Text zwischen erstem und zweitem A bzw.
32933 \begin_inset space \space{}
32934 \end_inset
32935
32936 V eingegeben, erscheint er links neben dem Pfeil.
32937  Bei Eingabe zwischen zweitem und drittem A bzw.
32938 \begin_inset space \space{}
32939 \end_inset
32940
32941 V erscheint er rechts daneben.
32942  Enthält der Text ein A oder V, müssen diese Buchstaben in eine TeX-Klammer
32943  gesetzt werden.
32944 \end_layout
32945
32946 \begin_layout Standard
32947 Als Beispiel ein Diagramm mit allen möglichen Beziehungen:
32948 \end_layout
32949
32950 \begin_layout Standard
32951 \begin_inset Formula 
32952 \[
32953 \begin{CD}A@>j>>B@>>k>C@=F\\
32954 @AmAA@.@VV{V}V@|\\
32955 D@<<j<E@>k>>F@=C
32956 \end{CD}
32957 \]
32958
32959 \end_inset
32960
32961
32962 \end_layout
32963
32964 \begin_layout Standard
32965 Der Befehl dazu lautet:
32966 \begin_inset Newline newline
32967 \end_inset
32968
32969
32970 \series bold
32971
32972 \backslash
32973 CD
32974 \begin_inset ERT
32975 status collapsed
32976
32977 \begin_layout Plain Layout
32978
32979
32980 \backslash
32981 leer 
32982 \end_layout
32983
32984 \end_inset
32985
32986 A@>j>>B@>>k>C@=F Strg+Enter
32987 \begin_inset Newline newline
32988 \end_inset
32989
32990
32991 \begin_inset Phantom HPhantom
32992 status open
32993
32994 \begin_layout Plain Layout
32995
32996 \series bold
32997
32998 \backslash
32999 CD
33000 \begin_inset ERT
33001 status collapsed
33002
33003 \begin_layout Plain Layout
33004
33005
33006 \backslash
33007 leer 
33008 \end_layout
33009
33010 \end_inset
33011
33012
33013 \end_layout
33014
33015 \end_inset
33016
33017 @AmAA@.@VV
33018 \backslash
33019 {V
33020 \series default
33021
33022 \begin_inset Formula $\to$
33023 \end_inset
33024
33025
33026 \series bold
33027 V@| Strg+Enter
33028 \begin_inset Newline newline
33029 \end_inset
33030
33031
33032 \begin_inset Phantom HPhantom
33033 status open
33034
33035 \begin_layout Plain Layout
33036
33037 \series bold
33038
33039 \backslash
33040 CD
33041 \begin_inset ERT
33042 status collapsed
33043
33044 \begin_layout Plain Layout
33045
33046
33047 \backslash
33048 leer 
33049 \end_layout
33050
33051 \end_inset
33052
33053
33054 \end_layout
33055
33056 \end_inset
33057
33058 D@<<j<E@>k>>F@=C
33059 \end_layout
33060
33061 \begin_layout Subsection
33062 xymatrix Diagramme
33063 \begin_inset Index idx
33064 status collapsed
33065
33066 \begin_layout Plain Layout
33067 Diagramme ! xymatrix
33068 \end_layout
33069
33070 \end_inset
33071
33072
33073 \end_layout
33074
33075 \begin_layout Standard
33076 Um Xymatrizen nutzen zu können, muss das LaTeX-Paket 
33077 \series bold
33078 xypic
33079 \series default
33080  installiert sein.
33081  Eine Xymatrix wird erstellt, indem der Befehl 
33082 \series bold
33083
33084 \backslash
33085 xymatrix
33086 \series default
33087  in eine Formel eingegeben wird.
33088  Dann können Sie neue Matrixspalten und -zeilen wie bei normalen Matrizen
33089  hinzufügen, siehe 
33090 \begin_inset CommandInset ref
33091 LatexCommand ref
33092 reference "sec:Matrizen"
33093
33094 \end_inset
33095
33096 .
33097 \end_layout
33098
33099 \begin_layout Standard
33100 Im Gegensatz zu amscd Diagrammen, unterstützen Xymatrixen diagonale und
33101  gekrümmte Pfeile und vieles mehr.
33102  Alle Möglichkeiten kommutative Diagramme und Dekorationen zu erzeugen,
33103  sind im Detail im 
33104 \emph on
33105 XY-pic-Handbuch
33106 \emph default
33107  erklärt, dass im Menü 
33108 \family sans
33109 Hilfe\SpecialChar \menuseparator
33110 Spezielle
33111 \begin_inset space ~
33112 \end_inset
33113
33114 Handbücher
33115 \family default
33116  zu finden ist.
33117 \end_layout
33118
33119 \begin_layout Subsection
33120
33121 \noun on
33122 Feynman
33123 \noun default
33124  Diagramme
33125 \begin_inset Index idx
33126 status collapsed
33127
33128 \begin_layout Plain Layout
33129 Diagramme ! Feynman
33130 \end_layout
33131
33132 \end_inset
33133
33134
33135 \end_layout
33136
33137 \begin_layout Standard
33138 Um 
33139 \noun on
33140 Feynman-
33141 \noun default
33142 Diagrammen nutzen zu können, muss das LaTeX-Paket 
33143 \series bold
33144 feyn
33145 \series default
33146  installiert sein.
33147  Ein 
33148 \noun on
33149 Feynman-
33150 \noun default
33151 Diagramm wird erstellt, indem der Befehl 
33152 \series bold
33153
33154 \backslash
33155 Diagram
33156 \series default
33157  in eine Formel eingegeben wird.
33158  Dann können Sie neue Matrixspalten und -zeilen wie bei normalen Matrizen
33159  hinzufügen, siehe 
33160 \begin_inset CommandInset ref
33161 LatexCommand ref
33162 reference "sec:Matrizen"
33163
33164 \end_inset
33165
33166 .
33167 \end_layout
33168
33169 \begin_layout Standard
33170 Beispiele wie man in LyX 
33171 \noun on
33172 Feynman-
33173 \noun default
33174 Diagramme erstellt sind im 
33175 \emph on
33176 Feynman-Diagramm Handbuch
33177 \emph default
33178  gegeben, dass im Menü 
33179 \family sans
33180 Hilfe\SpecialChar \menuseparator
33181 Spezielle
33182 \begin_inset space ~
33183 \end_inset
33184
33185 Handbücher
33186 \family default
33187  zu finden ist.
33188 \end_layout
33189
33190 \begin_layout Standard
33191 \begin_inset Newpage newpage
33192 \end_inset
33193
33194
33195 \end_layout
33196
33197 \begin_layout Section
33198 Benutzerdefinierte Befehle
33199 \begin_inset CommandInset label
33200 LatexCommand label
33201 name "sec:Benutzerdefinierte-Befehle"
33202
33203 \end_inset
33204
33205
33206 \begin_inset Index idx
33207 status collapsed
33208
33209 \begin_layout Plain Layout
33210 benutzerdefinierte Befehle
33211 \end_layout
33212
33213 \end_inset
33214
33215
33216 \end_layout
33217
33218 \begin_layout Standard
33219 \begin_inset Note Greyedout
33220 status open
33221
33222 \begin_layout Plain Layout
33223
33224 \series bold
33225 Achtung: 
33226 \series default
33227 Die Namen von benutzerdefinierten Befehlen und Makros dürfen nur aus lateinische
33228 n Buchstaben bestehen.
33229 \end_layout
33230
33231 \end_inset
33232
33233
33234 \end_layout
33235
33236 \begin_layout Subsection
33237 Der Befehl 
33238 \backslash
33239 newcommand
33240 \begin_inset CommandInset label
33241 LatexCommand label
33242 name "sub:Der-Befehl-newcommand"
33243
33244 \end_inset
33245
33246
33247 \begin_inset Index idx
33248 status collapsed
33249
33250 \begin_layout Plain Layout
33251 benutzerdefinierte Befehle ! 
33252 \backslash
33253 newcommand
33254 \end_layout
33255
33256 \end_inset
33257
33258
33259 \begin_inset Index idx
33260 status collapsed
33261
33262 \begin_layout Plain Layout
33263 Befehle ! N ! 
33264 \backslash
33265 newcommand
33266 \end_layout
33267
33268 \end_inset
33269
33270
33271 \end_layout
33272
33273 \begin_layout Standard
33274 Viele der LaTeX-Befehle sind für den ständigen Gebrauch viel zu lang.
33275  Man kann sich aber mit dem Befehl 
33276 \series bold
33277
33278 \backslash
33279 newcommand
33280 \series default
33281  neue kürzere Befehle definieren.
33282 \end_layout
33283
33284 \begin_layout Standard
33285 Das Befehlsschema von 
33286 \series bold
33287
33288 \backslash
33289 newcommand
33290 \series default
33291  lautet:
33292 \end_layout
33293
33294 \begin_layout Standard
33295
33296 \series bold
33297
33298 \backslash
33299 newcommand{neuer Befehlsname}[Argumentanzahl][optionaler
33300 \series default
33301  
33302 \series bold
33303 Wert]
33304 \begin_inset Newline newline
33305 \end_inset
33306
33307
33308 \begin_inset Phantom HPhantom
33309 status open
33310
33311 \begin_layout Plain Layout
33312
33313 \series bold
33314
33315 \backslash
33316 newcommand
33317 \end_layout
33318
33319 \end_inset
33320
33321 {Befehlsdefinition}
33322 \end_layout
33323
33324 \begin_layout Standard
33325 \begin_inset Note Greyedout
33326 status open
33327
33328 \begin_layout Plain Layout
33329
33330 \series bold
33331 Achtung:
33332 \series default
33333  Es muss darauf geachtet werden, dass der Befehlsname nicht schon im Dokument
33334  oder von benutzten LaTeX-Paketen verwendet wird.
33335  Definiert man beispielsweise für 
33336 \series bold
33337
33338 \backslash
33339 Leftarrow
33340 \series default
33341  den Befehl 
33342 \series bold
33343
33344 \backslash
33345 le
33346 \series default
33347 , erhält man eine Fehlermeldung, denn 
33348 \series bold
33349
33350 \backslash
33351 le
33352 \series default
33353  ist schon für 
33354 \begin_inset Quotes gld
33355 \end_inset
33356
33357
33358 \begin_inset Formula $\le$
33359 \end_inset
33360
33361
33362 \begin_inset Quotes grd
33363 \end_inset
33364
33365  definiert.
33366 \end_layout
33367
33368 \end_inset
33369
33370
33371 \end_layout
33372
33373 \begin_layout Standard
33374 Die Argumentanzahl ist eine ganze Zahl im Bereich 0
33375 \begin_inset space \thinspace{}
33376 \end_inset
33377
33378 -
33379 \begin_inset space \thinspace{}
33380 \end_inset
33381
33382 9 und gibt an, wie viele Argumente der neue Befehl haben soll.
33383  Als optionalen Wert kann man den Wert für ein optionales Argument voreinstellen.
33384  Wenn man dies macht, bedeutet das gleichzeitig, dass das 
33385 \emph on
33386 erste
33387 \emph default
33388  Argument des neuen Befehls ein optionales ist.
33389 \end_layout
33390
33391 \begin_layout Standard
33392 Es folgen einige Beispiele:
33393 \end_layout
33394
33395 \begin_layout Itemize
33396 Will man für 
33397 \series bold
33398
33399 \backslash
33400 Longrightarrow
33401 \series default
33402  den Befehl 
33403 \series bold
33404
33405 \backslash
33406 gr
33407 \series default
33408  definieren, lautet die LaTeX-Vor\SpecialChar \-
33409 spannzeile:
33410 \begin_inset VSpace medskip
33411 \end_inset
33412
33413
33414 \begin_inset Newline newline
33415 \end_inset
33416
33417
33418 \series bold
33419
33420 \backslash
33421 newcommand{
33422 \backslash
33423 gr}{
33424 \backslash
33425 Longrightarrow}
33426 \end_layout
33427
33428 \begin_layout Itemize
33429 Um für den Befehl 
33430 \series bold
33431
33432 \backslash
33433 underline
33434 \series default
33435  den Befehl 
33436 \series bold
33437
33438 \backslash
33439 us
33440 \series default
33441  zu definieren, muss das Argument (was unterstrichen werden soll) berücksichtigt
33442  werden.
33443  Dazu sieht die Vorspannzeile wie folgt aus:
33444 \begin_inset VSpace medskip
33445 \end_inset
33446
33447
33448 \begin_inset Newline newline
33449 \end_inset
33450
33451
33452 \series bold
33453
33454 \backslash
33455 newcommand{
33456 \backslash
33457 us}[1]{
33458 \backslash
33459 underline{#1}}
33460 \series default
33461
33462 \begin_inset VSpace medskip
33463 \end_inset
33464
33465
33466 \begin_inset Newline newline
33467 \end_inset
33468
33469 Das Zeichen 
33470 \series bold
33471 #
33472 \series default
33473  fungiert als Argumentplatzhalter, die 
33474 \series bold
33475 1
33476 \series default
33477  dahinter gibt an, dass es der Platzhalter für das erste Argument ist.
33478 \end_layout
33479
33480 \begin_layout Itemize
33481 Für 
33482 \series bold
33483
33484 \backslash
33485 framebox
33486 \series default
33487  kann man z.
33488 \begin_inset space \thinspace{}
33489 \end_inset
33490
33491 B.
33492  den Befehl 
33493 \series bold
33494
33495 \backslash
33496 fb
33497 \series default
33498  definieren:
33499 \begin_inset VSpace medskip
33500 \end_inset
33501
33502
33503 \begin_inset Newline newline
33504 \end_inset
33505
33506
33507 \series bold
33508
33509 \backslash
33510 newcommand{
33511 \backslash
33512 fb}[3]{
33513 \backslash
33514 framebox#1#2{$#3$}}
33515 \series default
33516
33517 \begin_inset VSpace medskip
33518 \end_inset
33519
33520
33521 \begin_inset Newline newline
33522 \end_inset
33523
33524 Die beiden Dollarzeichen erstellen hierbei die für 
33525 \series bold
33526
33527 \backslash
33528 framebox
33529 \series default
33530  geforderte weitere Formel, siehe 
33531 \begin_inset CommandInset ref
33532 LatexCommand ref
33533 reference "sub:Boxen-mit-Rahmen"
33534
33535 \end_inset
33536
33537 .
33538 \end_layout
33539
33540 \begin_layout Itemize
33541 Um einen neuen Befehl für 
33542 \series bold
33543
33544 \backslash
33545 fcolorbox
33546 \series default
33547  zu erstellen, bei dem die Farbe der Box nicht mehr angegeben werden muss,
33548  definiert man das Argument für die Farbe als optional:
33549 \begin_inset VSpace medskip
33550 \end_inset
33551
33552
33553 \begin_inset Newline newline
33554 \end_inset
33555
33556
33557 \series bold
33558
33559 \backslash
33560 newcommand{
33561 \backslash
33562 cb}[3][white]{
33563 \backslash
33564 fcolorbox{#2}{#1}{$#3$}}
33565 \series default
33566
33567 \begin_inset VSpace medskip
33568 \end_inset
33569
33570
33571 \begin_inset Newline newline
33572 \end_inset
33573
33574 Gibt man bei der Verwendung von 
33575 \series bold
33576
33577 \backslash
33578 cb
33579 \series default
33580  die Farbe nicht an, wird die voreingestellte Farbe 
33581 \series bold
33582 white
33583 \series default
33584  verwendet.
33585 \end_layout
33586
33587 \begin_layout Standard
33588 Ein Test der neu definierten Befehle:
33589 \end_layout
33590
33591 \begin_layout Standard
33592 \align center
33593 \begin_inset Tabular
33594 <lyxtabular version="3" rows="6" columns="2">
33595 <features rotate="0" tabularvalignment="middle">
33596 <column alignment="center" valignment="top">
33597 <column alignment="center" valignment="top">
33598 <row>
33599 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
33600 \begin_inset Text
33601
33602 \begin_layout Plain Layout
33603 Befehl
33604 \end_layout
33605
33606 \end_inset
33607 </cell>
33608 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
33609 \begin_inset Text
33610
33611 \begin_layout Plain Layout
33612 Ergebnis
33613 \begin_inset Note Note
33614 status collapsed
33615
33616 \begin_layout Plain Layout
33617
33618 \series bold
33619
33620 \backslash
33621 raisebox
33622 \series default
33623  dient nur als Abstandhalter.
33624 \end_layout
33625
33626 \end_inset
33627
33628
33629 \end_layout
33630
33631 \end_inset
33632 </cell>
33633 </row>
33634 <row>
33635 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
33636 \begin_inset Text
33637
33638 \begin_layout Plain Layout
33639 A
33640 \backslash
33641 gr
33642 \begin_inset ERT
33643 status collapsed
33644
33645 \begin_layout Plain Layout
33646
33647
33648 \backslash
33649 leer 
33650 \end_layout
33651
33652 \end_inset
33653
33654 B
33655 \end_layout
33656
33657 \end_inset
33658 </cell>
33659 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
33660 \begin_inset Text
33661
33662 \begin_layout Plain Layout
33663 \begin_inset Formula $A\gr B$
33664 \end_inset
33665
33666
33667 \end_layout
33668
33669 \end_inset
33670 </cell>
33671 </row>
33672 <row>
33673 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
33674 \begin_inset Text
33675
33676 \begin_layout Plain Layout
33677
33678 \backslash
33679 us{ABcd
33680 \end_layout
33681
33682 \end_inset
33683 </cell>
33684 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
33685 \begin_inset Text
33686
33687 \begin_layout Plain Layout
33688 \begin_inset Formula $\raisebox{4.5mm}{}\us{ABcd}\raisebox{-2mm}{}$
33689 \end_inset
33690
33691
33692 \end_layout
33693
33694 \end_inset
33695 </cell>
33696 </row>
33697 <row>
33698 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
33699 \begin_inset Text
33700
33701 \begin_layout Plain Layout
33702
33703 \backslash
33704 fb{[2cm]
33705 \begin_inset Formula $\to$
33706 \end_inset
33707
33708
33709 \backslash
33710 {
33711 \begin_inset Formula $\to$
33712 \end_inset
33713
33714
33715 \backslash
33716 {
33717 \backslash
33718 int
33719 \begin_inset ERT
33720 status collapsed
33721
33722 \begin_layout Plain Layout
33723
33724
33725 \backslash
33726 leer 
33727 \end_layout
33728
33729 \end_inset
33730
33731 A=B
33732 \end_layout
33733
33734 \end_inset
33735 </cell>
33736 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
33737 \begin_inset Text
33738
33739 \begin_layout Plain Layout
33740 \begin_inset Formula $\raisebox{6mm}{}\fb{[2cm]}{}{\int A=B}\raisebox{-4mm}{}$
33741 \end_inset
33742
33743
33744 \end_layout
33745
33746 \end_inset
33747 </cell>
33748 </row>
33749 <row>
33750 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
33751 \begin_inset Text
33752
33753 \begin_layout Plain Layout
33754
33755 \backslash
33756 cb{red
33757 \begin_inset Formula $\to$
33758 \end_inset
33759
33760
33761 \backslash
33762 {
33763 \backslash
33764 int
33765 \begin_inset ERT
33766 status collapsed
33767
33768 \begin_layout Plain Layout
33769
33770
33771 \backslash
33772 leer 
33773 \end_layout
33774
33775 \end_inset
33776
33777 A=B
33778 \end_layout
33779
33780 \end_inset
33781 </cell>
33782 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
33783 \begin_inset Text
33784
33785 \begin_layout Plain Layout
33786 \begin_inset Formula $\raisebox{6mm}{}\cb{red}{\int A=B}\raisebox{-4mm}{}$
33787 \end_inset
33788
33789
33790 \end_layout
33791
33792 \end_inset
33793 </cell>
33794 </row>
33795 <row>
33796 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
33797 \begin_inset Text
33798
33799 \begin_layout Plain Layout
33800
33801 \backslash
33802 cb[green]
33803 \backslash
33804 {red
33805 \begin_inset Formula $\to$
33806 \end_inset
33807
33808
33809 \backslash
33810 {
33811 \backslash
33812 int
33813 \begin_inset ERT
33814 status collapsed
33815
33816 \begin_layout Plain Layout
33817
33818
33819 \backslash
33820 leer 
33821 \end_layout
33822
33823 \end_inset
33824
33825 A=B
33826 \end_layout
33827
33828 \end_inset
33829 </cell>
33830 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
33831 \begin_inset Text
33832
33833 \begin_layout Plain Layout
33834 \begin_inset Formula $\raisebox{6mm}{}\cb[green]{red}{\int A=B}\raisebox{-4mm}{}$
33835 \end_inset
33836
33837
33838 \end_layout
33839
33840 \end_inset
33841 </cell>
33842 </row>
33843 </lyxtabular>
33844
33845 \end_inset
33846
33847
33848 \end_layout
33849
33850 \begin_layout Subsection
33851 Mathe-Makros
33852 \begin_inset Index idx
33853 status collapsed
33854
33855 \begin_layout Plain Layout
33856 benutzerdefinierte Befehle ! Mathe-Makros
33857 \end_layout
33858
33859 \end_inset
33860
33861
33862 \begin_inset Index idx
33863 status collapsed
33864
33865 \begin_layout Plain Layout
33866 Makros
33867 \end_layout
33868
33869 \end_inset
33870
33871
33872 \end_layout
33873
33874 \begin_layout Standard
33875 Besonders praktisch sind eigene Befehle für komplexe Ausdrücke.
33876  Hat man es in einem Dokument z.
33877 \begin_inset space \thinspace{}
33878 \end_inset
33879
33880 B.
33881  häufiger mit quadratischen Gleichungen zu tun, tritt immer derselbe Lösungstyp
33882  auf.
33883  Die allgemeine Form einer quadratischen Gleichung ist
33884 \begin_inset Formula 
33885 \[
33886 0=\lambda^{2}+p\lambda+q
33887 \]
33888
33889 \end_inset
33890
33891 Die allgemeine Form der Lösung lautet
33892 \begin_inset Formula 
33893 \[
33894 \lambda_{1,2}=-\frac{p}{2}\pm\sqrt{\frac{p²}{4}-q}
33895 \]
33896
33897 \end_inset
33898
33899
33900 \end_layout
33901
33902 \begin_layout Standard
33903 Um für die Lösungsformel einen Befehl zu definieren, bei dem nur noch die
33904  drei Parameter 
33905 \begin_inset Formula $\lambda$
33906 \end_inset
33907
33908
33909 \begin_inset Formula $p$
33910 \end_inset
33911
33912  und 
33913 \begin_inset Formula $q$
33914 \end_inset
33915
33916  angegeben werden müssen und der Index von 
33917 \begin_inset Formula $\lambda$
33918 \end_inset
33919
33920  optional angeben werden kann, lautet die LaTeX-Vorspannzeile
33921 \begin_inset Newline newline
33922 \end_inset
33923
33924
33925 \series bold
33926
33927 \backslash
33928 newcommand{
33929 \backslash
33930 qG}[4][1,
33931 \backslash
33932 ,2]{#2_{#1}=-
33933 \backslash
33934 frac{#3}{2}
33935 \backslash
33936 pm
33937 \begin_inset Newline newline
33938 \end_inset
33939
33940
33941 \begin_inset Phantom HPhantom
33942 status open
33943
33944 \begin_layout Plain Layout
33945
33946 \series bold
33947
33948 \backslash
33949 newcommand
33950 \end_layout
33951
33952 \end_inset
33953
33954
33955 \backslash
33956 sqrt{
33957 \backslash
33958 frac{#3^{2}}{4}-#4}}
33959 \end_layout
33960
33961 \begin_layout Standard
33962 Um damit die Lösungsformel zu erstellen, gibt man in einer Formel den Befehl
33963  
33964 \begin_inset Newline newline
33965 \end_inset
33966
33967
33968 \series bold
33969
33970 \backslash
33971 qG{
33972 \backslash
33973 lambda
33974 \begin_inset Formula $\to$
33975 \end_inset
33976
33977
33978 \backslash
33979 {p
33980 \begin_inset Formula $\to$
33981 \end_inset
33982
33983
33984 \backslash
33985 {q 
33986 \series default
33987 ein.
33988 \end_layout
33989
33990 \begin_layout Standard
33991 Die Definition des neuen Befehls ist unintuitiv, denn man muss die Schemata
33992  aller verwendeten LaTeX-Befehle kennen, z.
33993 \begin_inset space \thinspace{}
33994 \end_inset
33995
33996 B.
33997  dass ein Bruch in LaTeX mit 
33998 \series bold
33999
34000 \backslash
34001 frac{Zähler}
34002 \begin_inset Newline linebreak
34003 \end_inset
34004
34005 {Nenner}
34006 \series default
34007  eingegeben wird.
34008  Außerdem kann man leicht eine geschweifte Klammer vergessen und man kann
34009  in LyX nicht sehen, was der neue Befehl macht.
34010  Um diesen Problemen aus dem Weg zu gehen, gibt es in LyX die Möglichkeit
34011  Mathe-Makros statt den Befehl 
34012 \series bold
34013
34014 \backslash
34015 newcommand
34016 \series default
34017  zu verwenden.
34018 \end_layout
34019
34020 \begin_layout Standard
34021 Ein Mathe-Makro wird erstellt, indem man das Menü 
34022 \family sans
34023 Einfügen\SpecialChar \menuseparator
34024 Mathe\SpecialChar \menuseparator
34025 Makro
34026 \family default
34027  oder den Werkzeugleistenknopf 
34028 \begin_inset Graphics
34029         filename ../../images/math-macro_newmacroname_newcommand.png
34030         scale 85
34031
34032 \end_inset
34033
34034  verwendet.
34035  Es erscheint die Mathe-Makro-Werkzeugleiste und folgende Box, in der das
34036  Makro definiert wird:
34037 \begin_inset Newline newline
34038 \end_inset
34039
34040
34041 \begin_inset space \hspace*{\fill}
34042 \end_inset
34043
34044
34045 \begin_inset Graphics
34046         filename ../clipart/macrobox.png
34047
34048 \end_inset
34049
34050
34051 \begin_inset space \hspace*{\fill}
34052 \end_inset
34053
34054
34055 \begin_inset Newline newline
34056 \end_inset
34057
34058
34059 \begin_inset FormulaMacro
34060 \newcommand{\qG}[4][1,\,2]{#2_{#1}=-\frac{#3}{2}\pm\sqrt{\frac{#3^{2}}{4}-#4}}
34061 \end_inset
34062
34063
34064 \backslash
34065 newmacroname ist der voreingestellte Makroname, der auf etwas sinnvolles
34066  geändert werden sollte.
34067  In das erste blaue Kästchen gibt man die gewünschte Formel ein.
34068  Einen Argumentplatzhalter fügt man mit dem Befehl 
34069 \series bold
34070
34071 \backslash
34072 #Argumentnummer
34073 \series default
34074  ein, z.
34075 \begin_inset space \thinspace{}
34076 \end_inset
34077
34078 B.
34079  
34080 \series bold
34081
34082 \backslash
34083 #1
34084 \series default
34085  oder man verwendet den Makro-Werkzeugleistenknopf 
34086 \begin_inset Graphics
34087         filename ../../images/math-macro-add-param.png
34088         scale 85
34089
34090 \end_inset
34091
34092 .
34093  Argumentplatzhalter werden rot dargestellt.
34094  Es sind maximal 9
34095 \begin_inset space ~
34096 \end_inset
34097
34098 Argumente möglich.
34099  Optionale Argumente werden mit dem Werkzeugleistenknopf 
34100 \begin_inset Graphics
34101         filename ../../images/math-macro-add-optional-param.png
34102         scale 85
34103
34104 \end_inset
34105
34106  erstellt.
34107  Mit dem Werkzeugleistenknopf 
34108 \begin_inset Graphics
34109         filename ../../images/math-macro-make-optional.png
34110         scale 85
34111
34112 \end_inset
34113
34114  kann das erste nicht-optionale Argument in ein optionales verwandelt werden.
34115  Im zweiten Kästchen kann man definieren wie das Makro in LyX angezeigt
34116  werden soll.
34117  Normalerweise will man es so sehen, wie es definiert wurde, wozu man das
34118  Kästchen leer lässt.
34119  Hat man hingegen ein Makro erstellt, der auf dem Bildschirm viel Platz
34120  einnimmt, kann man in das Kästchen z.
34121 \begin_inset space \thinspace{}
34122 \end_inset
34123
34124 B.
34125 \begin_inset Newline newline
34126 \end_inset
34127
34128
34129 \series bold
34130 qG: 
34131 \backslash
34132 #1
34133 \series default
34134  
34135 \series bold
34136 ,
34137 \series default
34138  
34139 \series bold
34140
34141 \backslash
34142 #2
34143 \series default
34144  
34145 \series bold
34146 ,
34147 \series default
34148  
34149 \series bold
34150
34151 \backslash
34152 #3, 
34153 \backslash
34154 #4
34155 \begin_inset Newline newline
34156 \end_inset
34157
34158
34159 \series default
34160 eingeben.
34161  Für das Makro werden dann in LyX nur die Argumente mit dem davor stehenden
34162  Makronamen angezeigt, was für mehr Überblick im Dokument sorgt.
34163  Im Ausdruck erscheint die Formel so, wie sie im ersten Kästchen definiert
34164  wurde.
34165 \begin_inset Newline newline
34166 \end_inset
34167
34168 Das Erscheinungsbild von Makros in Formeln lässt sich außerdem für einzelne
34169  Makros ändern, indem man den Cursor in das Makro setzt und das Menü 
34170 \family sans
34171 Ansicht\SpecialChar \menuseparator
34172 Mathe-Makro
34173 \begin_inset space ~
34174 \end_inset
34175
34176 auf/zuklappen
34177 \family default
34178  verwendet.
34179 \end_layout
34180
34181 \begin_layout Standard
34182 Um ein Makro zu verwenden, gibt man in eine Formel den Makronamen als Befehl
34183  ein, in unserem Fall 
34184 \series bold
34185
34186 \backslash
34187 qG
34188 \series default
34189 .
34190  Unser Makro sieht in LyX folgendermaßen aus:
34191 \begin_inset Newline newline
34192 \end_inset
34193
34194
34195 \begin_inset space \hspace*{\fill}
34196 \end_inset
34197
34198
34199 \begin_inset Graphics
34200         filename ../clipart/macrouse.png
34201
34202 \end_inset
34203
34204
34205 \begin_inset space \hspace*{\fill}
34206 \end_inset
34207
34208
34209 \begin_inset Newline newline
34210 \end_inset
34211
34212 Hier ist unser Makro-Beispiel mit den Argumenten 
34213 \begin_inset Formula $x$
34214 \end_inset
34215
34216
34217 \begin_inset Formula $\ln(x)$
34218 \end_inset
34219
34220  und 
34221 \begin_inset Formula $B$
34222 \end_inset
34223
34224 :
34225 \end_layout
34226
34227 \begin_layout Standard
34228 \begin_inset Formula 
34229 \[
34230 \qG x{\ln(x)}B
34231 \]
34232
34233 \end_inset
34234
34235
34236 \end_layout
34237
34238 \begin_layout Standard
34239 LyX bietet im Menü 
34240 \family sans
34241 Werkzeuge\SpecialChar \menuseparator
34242 Einstellungen\SpecialChar \menuseparator
34243 Bearbeiten\SpecialChar \menuseparator
34244 Kontrolle
34245 \family default
34246  verschiedene Bearbeitungsstile für Makros an.
34247  Um den Stil zu finden, der für Sie am angenehmsten ist, wählen Sie einen
34248  Stil aus und setzen den Cursor in eine Makro-Formel um den Unterschied
34249  zu sehen.
34250 \end_layout
34251
34252 \begin_layout Standard
34253 Ein Mathe-Makro wird beim Exportieren des Dokuments intern in einen 
34254 \series bold
34255
34256 \backslash
34257 new\SpecialChar \-
34258 command
34259 \series default
34260 -Befehl umgewandelt.
34261  Der 
34262 \series bold
34263
34264 \backslash
34265 newcommand
34266 \series default
34267 -Befehl wird dabei nicht in den LaTeX-Vorspann gesetzt, so dass man daher
34268  Makros nur in Formeln verwenden kann, die sich im Dokument unterhalb der
34269  Makrodefinitionsbox befinden.
34270 \end_layout
34271
34272 \begin_layout Standard
34273 Mathe-Makros können auch direkt aus einem 
34274 \series bold
34275
34276 \backslash
34277 newcommand
34278 \series default
34279 -Befehl erstellt werden.
34280  Schreibt man z.
34281 \begin_inset space \thinspace{}
34282 \end_inset
34283
34284 B.
34285  den Befehl
34286 \series bold
34287
34288 \begin_inset Newline newline
34289 \end_inset
34290
34291
34292 \backslash
34293 newcommand{
34294 \backslash
34295 larrow}[2]{
34296 \backslash
34297 xleftarrow[#2]{#1}}
34298 \begin_inset Newline newline
34299 \end_inset
34300
34301
34302 \series default
34303 in LyX als normalen Text, markiert ihn komplett und verwendet dann das Tastenkür
34304 zel 
34305 \family sans
34306 Strg+M
34307 \family default
34308 , wird der Befehl in ein Mathe-Makro umgewandelt.
34309  Bei dieser Methode muss man jedoch aufpassen, dass der 
34310 \series bold
34311
34312 \backslash
34313 newcommand
34314 \series default
34315 -Befehl richtig geschrieben wurde, ansonsten wird ein fehlerhaftes Makro
34316  erstellt, dass später LaTeX-Fehler hervorruft.
34317 \end_layout
34318
34319 \begin_layout Standard
34320 Mathe-Makros haben im Moment noch das Problem, dass weitere Formeln in einer
34321  Makrodefinition fehlerhaft behandelt werden.
34322  Dadurch kann das Beispiel 
34323 \series bold
34324
34325 \backslash
34326 fb
34327 \series default
34328  aus 
34329 \begin_inset CommandInset ref
34330 LatexCommand ref
34331 reference "sub:Der-Befehl-newcommand"
34332
34333 \end_inset
34334
34335  nicht als Makro erzeugt werden.
34336 \end_layout
34337
34338 \begin_layout Standard
34339 Wenn der Cursor in einer Makrodefinitionsbox ist, wird die Makro-Werkzeugleiste
34340  in LyX angezeigt:
34341 \end_layout
34342
34343 \begin_layout Standard
34344 \begin_inset VSpace defskip
34345 \end_inset
34346
34347
34348 \end_layout
34349
34350 \begin_layout Standard
34351 \begin_inset Graphics
34352         filename ../clipart/MacroToolbar.png
34353
34354 \end_inset
34355
34356
34357 \begin_inset Index idx
34358 status collapsed
34359
34360 \begin_layout Plain Layout
34361 Makros ! Werkzeugleiste
34362 \end_layout
34363
34364 \end_inset
34365
34366
34367 \end_layout
34368
34369 \begin_layout Standard
34370 \begin_inset VSpace defskip
34371 \end_inset
34372
34373
34374 \end_layout
34375
34376 \begin_layout Standard
34377 Die Makro-Werkzeugleiste enthält von links nach rechts die folgenden Knöpfe:
34378 \end_layout
34379
34380 \begin_layout Standard
34381 \begin_inset VSpace defskip
34382 \end_inset
34383
34384
34385 \end_layout
34386
34387 \begin_layout Standard
34388 \begin_inset Tabular
34389 <lyxtabular version="3" rows="9" columns="2">
34390 <features rotate="0" islongtable="true" longtabularalignment="center">
34391 <column alignment="left" valignment="top">
34392 <column alignment="left" valignment="top" width="85col%">
34393 <row interlinespace="2.5mm">
34394 <cell alignment="center" valignment="top" usebox="none">
34395 \begin_inset Text
34396
34397 \begin_layout Plain Layout
34398 \begin_inset Graphics
34399         filename ../../images/math-macro-remove-param.png
34400         rotateOrigin center
34401
34402 \end_inset
34403
34404
34405 \end_layout
34406
34407 \end_inset
34408 </cell>
34409 <cell alignment="center" valignment="top" usebox="none">
34410 \begin_inset Text
34411
34412 \begin_layout Plain Layout
34413
34414 \family sans
34415 Bearbeiten\SpecialChar \menuseparator
34416 Mathe\SpecialChar \menuseparator
34417 Makro-Definition\SpecialChar \menuseparator
34418 Letztes Argument entfernen
34419 \end_layout
34420
34421 \end_inset
34422 </cell>
34423 </row>
34424 <row interlinespace="2.5mm">
34425 <cell alignment="center" valignment="top" usebox="none">
34426 \begin_inset Text
34427
34428 \begin_layout Plain Layout
34429 \begin_inset Graphics
34430         filename ../../images/math-macro-add-param.png
34431         rotateOrigin center
34432
34433 \end_inset
34434
34435
34436 \end_layout
34437
34438 \end_inset
34439 </cell>
34440 <cell alignment="center" valignment="top" usebox="none">
34441 \begin_inset Text
34442
34443 \begin_layout Plain Layout
34444
34445 \family sans
34446 Bearbeiten\SpecialChar \menuseparator
34447 Mathe\SpecialChar \menuseparator
34448 Makro-Definition\SpecialChar \menuseparator
34449 Argument hinzufügen
34450 \end_layout
34451
34452 \end_inset
34453 </cell>
34454 </row>
34455 <row interlinespace="2.5mm">
34456 <cell alignment="center" valignment="top" usebox="none">
34457 \begin_inset Text
34458
34459 \begin_layout Plain Layout
34460 \begin_inset Graphics
34461         filename ../../images/math-macro-make-optional.png
34462         rotateOrigin center
34463
34464 \end_inset
34465
34466
34467 \end_layout
34468
34469 \end_inset
34470 </cell>
34471 <cell alignment="center" valignment="top" usebox="none">
34472 \begin_inset Text
34473
34474 \begin_layout Plain Layout
34475
34476 \family sans
34477 Bearbeiten\SpecialChar \menuseparator
34478 Mathe\SpecialChar \menuseparator
34479 Makro-Definition\SpecialChar \menuseparator
34480 Das erste nicht-optionale
34481 \begin_inset Newline newline
34482 \end_inset
34483
34484
34485 \begin_inset Phantom HPhantom
34486 status open
34487
34488 \begin_layout Plain Layout
34489
34490 \family sans
34491 Bearbeiten\SpecialChar \menuseparator
34492 Mathe\SpecialChar \menuseparator
34493 Makro-Definition\SpecialChar \menuseparator
34494
34495 \end_layout
34496
34497 \end_inset
34498
34499 Argument in einen optionales
34500 \begin_inset Newline newline
34501 \end_inset
34502
34503
34504 \begin_inset Phantom HPhantom
34505 status open
34506
34507 \begin_layout Plain Layout
34508
34509 \family sans
34510 Bearbeiten\SpecialChar \menuseparator
34511 Mathe\SpecialChar \menuseparator
34512 Makro-Definition\SpecialChar \menuseparator
34513
34514 \end_layout
34515
34516 \end_inset
34517
34518 ändern
34519 \end_layout
34520
34521 \end_inset
34522 </cell>
34523 </row>
34524 <row interlinespace="2.5mm">
34525 <cell alignment="center" valignment="top" usebox="none">
34526 \begin_inset Text
34527
34528 \begin_layout Plain Layout
34529 \begin_inset Graphics
34530         filename ../../images/math-macro-make-nonoptional.png
34531         rotateOrigin center
34532
34533 \end_inset
34534
34535
34536 \end_layout
34537
34538 \end_inset
34539 </cell>
34540 <cell alignment="center" valignment="top" usebox="none">
34541 \begin_inset Text
34542
34543 \begin_layout Plain Layout
34544
34545 \family sans
34546 Bearbeiten\SpecialChar \menuseparator
34547 Mathe\SpecialChar \menuseparator
34548 Makro-Definition\SpecialChar \menuseparator
34549 Das letzte optionale Argument in
34550 \begin_inset Newline newline
34551 \end_inset
34552
34553
34554 \begin_inset Phantom HPhantom
34555 status open
34556
34557 \begin_layout Plain Layout
34558
34559 \family sans
34560 Bearbeiten\SpecialChar \menuseparator
34561 Mathe\SpecialChar \menuseparator
34562 Makro-Definition\SpecialChar \menuseparator
34563
34564 \end_layout
34565
34566 \end_inset
34567
34568 einen nicht-optionales ändern
34569 \end_layout
34570
34571 \end_inset
34572 </cell>
34573 </row>
34574 <row interlinespace="2.5mm">
34575 <cell alignment="center" valignment="top" usebox="none">
34576 \begin_inset Text
34577
34578 \begin_layout Plain Layout
34579 \begin_inset Graphics
34580         filename ../../images/math-macro-remove-optional-param.png
34581         rotateOrigin center
34582
34583 \end_inset
34584
34585
34586 \end_layout
34587
34588 \end_inset
34589 </cell>
34590 <cell alignment="center" valignment="top" usebox="none">
34591 \begin_inset Text
34592
34593 \begin_layout Plain Layout
34594
34595 \family sans
34596 Bearbeiten\SpecialChar \menuseparator
34597 Mathe\SpecialChar \menuseparator
34598 Makro-Definition\SpecialChar \menuseparator
34599 Optionales Argument entfernen
34600 \end_layout
34601
34602 \end_inset
34603 </cell>
34604 </row>
34605 <row interlinespace="2.5mm">
34606 <cell alignment="center" valignment="top" usebox="none">
34607 \begin_inset Text
34608
34609 \begin_layout Plain Layout
34610 \begin_inset Graphics
34611         filename ../../images/math-macro-add-optional-param.png
34612         rotateOrigin center
34613
34614 \end_inset
34615
34616
34617 \end_layout
34618
34619 \end_inset
34620 </cell>
34621 <cell alignment="center" valignment="top" usebox="none">
34622 \begin_inset Text
34623
34624 \begin_layout Plain Layout
34625
34626 \family sans
34627 Bearbeiten\SpecialChar \menuseparator
34628 Mathe\SpecialChar \menuseparator
34629 Makro-Definition\SpecialChar \menuseparator
34630 Optionales Argument einfügen
34631 \end_layout
34632
34633 \end_inset
34634 </cell>
34635 </row>
34636 <row interlinespace="2.5mm">
34637 <cell alignment="center" valignment="top" usebox="none">
34638 \begin_inset Text
34639
34640 \begin_layout Plain Layout
34641 \begin_inset Graphics
34642         filename ../../images/math-macro-remove-greedy-param.png
34643         rotateOrigin center
34644
34645 \end_inset
34646
34647
34648 \end_layout
34649
34650 \end_inset
34651 </cell>
34652 <cell alignment="center" valignment="top" usebox="none">
34653 \begin_inset Text
34654
34655 \begin_layout Plain Layout
34656
34657 \family sans
34658 Bearbeiten\SpecialChar \menuseparator
34659 Mathe\SpecialChar \menuseparator
34660 Makro-Definition\SpecialChar \menuseparator
34661 Letztes Argument rechts entfernen
34662 \end_layout
34663
34664 \end_inset
34665 </cell>
34666 </row>
34667 <row interlinespace="2.5mm">
34668 <cell alignment="center" valignment="top" usebox="none">
34669 \begin_inset Text
34670
34671 \begin_layout Plain Layout
34672 \begin_inset Graphics
34673         filename ../../images/math-macro-append-greedy-param.png
34674         rotateOrigin center
34675
34676 \end_inset
34677
34678
34679 \end_layout
34680
34681 \end_inset
34682 </cell>
34683 <cell alignment="center" valignment="top" usebox="none">
34684 \begin_inset Text
34685
34686 \begin_layout Plain Layout
34687
34688 \family sans
34689 Bearbeiten\SpecialChar \menuseparator
34690 Mathe\SpecialChar \menuseparator
34691 Makro-Definition\SpecialChar \menuseparator
34692 Argument von rechts hinzufügen
34693 \end_layout
34694
34695 \end_inset
34696 </cell>
34697 </row>
34698 <row interlinespace="2.5mm">
34699 <cell alignment="center" valignment="top" usebox="none">
34700 \begin_inset Text
34701
34702 \begin_layout Plain Layout
34703 \begin_inset Graphics
34704         filename ../../images/math-macro-add-greedy-optional-param.png
34705         rotateOrigin center
34706
34707 \end_inset
34708
34709
34710 \end_layout
34711
34712 \end_inset
34713 </cell>
34714 <cell alignment="center" valignment="top" usebox="none">
34715 \begin_inset Text
34716
34717 \begin_layout Plain Layout
34718
34719 \family sans
34720 Bearbeiten\SpecialChar \menuseparator
34721 Mathe\SpecialChar \menuseparator
34722 Makro-Definition\SpecialChar \menuseparator
34723 Optionales Argument von rechts
34724 \begin_inset Newline newline
34725 \end_inset
34726
34727
34728 \begin_inset Phantom HPhantom
34729 status open
34730
34731 \begin_layout Plain Layout
34732
34733 \family sans
34734 Bearbeiten\SpecialChar \menuseparator
34735 Mathe\SpecialChar \menuseparator
34736 Makro-Definition\SpecialChar \menuseparator
34737
34738 \end_layout
34739
34740 \end_inset
34741
34742 hinzufügen
34743 \end_layout
34744
34745 \end_inset
34746 </cell>
34747 </row>
34748 </lyxtabular>
34749
34750 \end_inset
34751
34752
34753 \end_layout
34754
34755 \begin_layout Section
34756 Computeralgebrasysteme
34757 \end_layout
34758
34759 \begin_layout Standard
34760 Mit LyX ist es möglich, mathematische Ausdrücke mit externen Anwendungen
34761  oder benutzerdefinierten Skripten auszutauschen.
34762  Momentan werden folgende Anwendungen unterstützt: 
34763 \family typewriter
34764 Maple
34765 \family default
34766
34767 \family typewriter
34768 Mathematica
34769 \family default
34770
34771 \family typewriter
34772 Maxima
34773 \family default
34774  und 
34775 \family typewriter
34776 Octave
34777 \family default
34778 .
34779  Beachten Sie aber, dass die unterstützten mathematischen Ausdrücke auf
34780  sehr einfache Fälle beschränkt sind.
34781 \end_layout
34782
34783 \begin_layout Subsection
34784 Verwendung
34785 \end_layout
34786
34787 \begin_layout Standard
34788 Schreiben Sie einen Ausdruck in eine Formel, öffnen Sie das Menü 
34789 \family sans
34790 Bearbeiten\SpecialChar \menuseparator
34791 Mathe\SpecialChar \menuseparator
34792 Computer-Algebra-System verwenden
34793 \family default
34794  und wählen Sie die Anwendung, die Sie auf ihrem Computer installiert haben.
34795  Danach sollte das Ergebnis der Berechnung auf der rechten Seite zusammen
34796  mit dem 
34797 \begin_inset Quotes gld
34798 \end_inset
34799
34800 =
34801 \begin_inset Quotes grd
34802 \end_inset
34803
34804  Operator erscheinen.
34805 \end_layout
34806
34807 \begin_layout Standard
34808 Hier sind ein paar einfache Beispiele (mit Resultaten von 
34809 \family typewriter
34810 Maxima
34811 \family default
34812 ) um zu zeigen, welche Berechnungen durchgeführt werden können:
34813 \end_layout
34814
34815 \begin_layout Itemize
34816 \begin_inset Formula $\frac{37}{3}*2-\sum_{i=1}^{3}i^{i}=-\frac{22}{3}$
34817 \end_inset
34818
34819
34820 \end_layout
34821
34822 \begin_layout Itemize
34823 \begin_inset Formula $\frac{37.0}{3}=12.33333333333333$
34824 \end_inset
34825
34826
34827 \end_layout
34828
34829 \begin_layout Itemize
34830 \begin_inset Formula $\int_{1}^{2}\sin(x)dx=\cos1-\cos2$
34831 \end_inset
34832
34833
34834 \end_layout
34835
34836 \begin_layout Itemize
34837 \begin_inset Formula $\det\left[\begin{array}{ccc}
34838 1 & 6 & 7\\
34839 2 & 5 & 8\\
34840 3 & 4 & 17
34841 \end{array}\right]=-56$
34842 \end_inset
34843
34844
34845 \end_layout
34846
34847 \begin_layout Itemize
34848 \begin_inset Formula $\lim_{x\rightarrow0}\left(\frac{\sin(x)}{x}\right)=1$
34849 \end_inset
34850
34851
34852 \end_layout
34853
34854 \begin_layout Subsection
34855 Tastenkürzel
34856 \end_layout
34857
34858 \begin_layout Standard
34859 Momentan gibt es kein Tastenkürzel um Computeralgebrasysteme aufzurufen.
34860  Sie können aber einfach ein Tastenkürzel mit der LyX-Funktion 
34861 \family sans
34862 math-extern
34863 \family default
34864  verknüpfen (siehe das 
34865 \emph on
34866 LyX-Funktionen
34867 \emph default
34868  Handbuch).
34869  Man kann z.
34870 \begin_inset space \thinspace{}
34871 \end_inset
34872
34873 B.
34874  die 
34875 \family sans
34876 Enter
34877 \family default
34878 -Taste in Formeln verknüpfen.
34879  Um sie mit 
34880 \family typewriter
34881 Maxima
34882 \family default
34883  zu verknüpfen, würde man diesen Tastenkürzel-Definitionsbefehl verwenden:
34884 \end_layout
34885
34886 \begin_layout Standard
34887
34888 \series bold
34889 command-alternatives break-paragraph;math-extern maxima
34890 \end_layout
34891
34892 \begin_layout Section
34893 Verschiedenes
34894 \begin_inset Index idx
34895 status collapsed
34896
34897 \begin_layout Plain Layout
34898 Verschiedenes
34899 \end_layout
34900
34901 \end_inset
34902
34903
34904 \end_layout
34905
34906 \begin_layout Subsection
34907 Negative Zahlen
34908 \begin_inset Index idx
34909 status collapsed
34910
34911 \begin_layout Plain Layout
34912 Zahlen ! negative
34913 \end_layout
34914
34915 \end_inset
34916
34917
34918 \end_layout
34919
34920 \begin_layout Standard
34921 Negative Zahlen sehen im Formelmodus oft schlecht aus, denn das Minuszeichen
34922  vor der Ziffer wird mit der gleichen Länge wie das Zeichen der Minus-Operation
34923  dargestellt.
34924  Schreibt man dagegen eine negative Zahl im normalen Text, erscheint das
34925  Minuszeichen korrekt.
34926 \end_layout
34927
34928 \begin_layout Standard
34929 Wandelt man also das Minuszeichen in mathematischen Text um, tritt das Problem
34930  nicht mehr auf.
34931 \end_layout
34932
34933 \begin_layout Standard
34934 Ein Beispiel zur Veranschaulichung der Problematik:
34935 \end_layout
34936
34937 \begin_layout Standard
34938 \align center
34939 \begin_inset Tabular
34940 <lyxtabular version="3" rows="3" columns="2">
34941 <features rotate="0" tabularvalignment="middle">
34942 <column alignment="right" valignment="top">
34943 <column alignment="left" valignment="top">
34944 <row>
34945 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
34946 \begin_inset Text
34947
34948 \begin_layout Plain Layout
34949 normaler Text:
34950 \end_layout
34951
34952 \end_inset
34953 </cell>
34954 <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
34955 \begin_inset Text
34956
34957 \begin_layout Plain Layout
34958 x = -2
34959 \end_layout
34960
34961 \end_inset
34962 </cell>
34963 </row>
34964 <row>
34965 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
34966 \begin_inset Text
34967
34968 \begin_layout Plain Layout
34969 Formelmodus:
34970 \end_layout
34971
34972 \end_inset
34973 </cell>
34974 <cell alignment="center" valignment="top" topline="true" bottomline="true" rightline="true" usebox="none">
34975 \begin_inset Text
34976
34977 \begin_layout Plain Layout
34978 \begin_inset Formula $x=-2$
34979 \end_inset
34980
34981
34982 \end_layout
34983
34984 \end_inset
34985 </cell>
34986 </row>
34987 <row>
34988 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
34989 \begin_inset Text
34990
34991 \begin_layout Plain Layout
34992 Lösung:
34993 \end_layout
34994
34995 \end_inset
34996 </cell>
34997 <cell alignment="center" valignment="top" topline="true" bottomline="true" rightline="true" usebox="none">
34998 \begin_inset Text
34999
35000 \begin_layout Plain Layout
35001 \begin_inset Formula $x=\textrm{-}2$
35002 \end_inset
35003
35004
35005 \end_layout
35006
35007 \end_inset
35008 </cell>
35009 </row>
35010 </lyxtabular>
35011
35012 \end_inset
35013
35014
35015 \end_layout
35016
35017 \begin_layout Subsection
35018 Komma als Dezimaltrennzeichen
35019 \begin_inset Index idx
35020 status collapsed
35021
35022 \begin_layout Plain Layout
35023 Komma
35024 \end_layout
35025
35026 \end_inset
35027
35028
35029 \end_layout
35030
35031 \begin_layout Standard
35032 In LaTeX fungiert das Komma in einer Formel, gemäß englischer Konvention,
35033  als Gruppentrennzeichen.
35034  Es wird demnach automatisch hinter allen Kommas in Formeln ein Leerraum
35035  eingefügt.
35036 \end_layout
35037
35038 \begin_layout Standard
35039 Um dies zu verhindern, markiert man das Komma und wandelt es in mathematischen
35040  Text um (Tastenkürzel 
35041 \family sans
35042 Alt+M
35043 \begin_inset space ~
35044 \end_inset
35045
35046 M
35047 \family default
35048 ).
35049 \end_layout
35050
35051 \begin_layout Standard
35052 Um hingegen alle Formelkommas des Dokuments als Dezimaltrennzeichen zu setzen,
35053  lädt man die Datei 
35054 \series bold
35055 icomma.sty
35056 \series default
35057
35058 \begin_inset Foot
35059 status collapsed
35060
35061 \begin_layout Plain Layout
35062
35063 \series bold
35064 icomma
35065 \series default
35066  ist Teil des LaTeX-Paketes 
35067 \series bold
35068 was
35069 \series default
35070
35071 \begin_inset Index idx
35072 status collapsed
35073
35074 \begin_layout Plain Layout
35075 Pakete ! was
35076 \begin_inset ERT
35077 status collapsed
35078
35079 \begin_layout Plain Layout
35080
35081
35082 \backslash
35083 vspace{4mm}
35084 \end_layout
35085
35086 \end_inset
35087
35088
35089 \end_layout
35090
35091 \end_inset
35092
35093 .
35094 \end_layout
35095
35096 \end_inset
35097
35098
35099 \begin_inset Index idx
35100 status collapsed
35101
35102 \begin_layout Plain Layout
35103 Pakete ! icomma
35104 \end_layout
35105
35106 \end_inset
35107
35108  mit der LaTeX-Vorspannzeile
35109 \end_layout
35110
35111 \begin_layout Standard
35112
35113 \series bold
35114
35115 \backslash
35116 usepackage{icomma}
35117 \end_layout
35118
35119 \begin_layout Subsection
35120 Physikalische Vektoren
35121 \begin_inset CommandInset label
35122 LatexCommand label
35123 name "sub:Physikalische-Vektoren"
35124
35125 \end_inset
35126
35127
35128 \begin_inset Index idx
35129 status collapsed
35130
35131 \begin_layout Plain Layout
35132 Vektoren ! physikalische
35133 \end_layout
35134
35135 \end_inset
35136
35137
35138 \end_layout
35139
35140 \begin_layout Standard
35141 Vordefinierte Vektoren bietet das LaTeX-Paket 
35142 \series bold
35143 braket
35144 \series default
35145
35146 \begin_inset Index idx
35147 status collapsed
35148
35149 \begin_layout Plain Layout
35150 Pakete ! braket
35151 \end_layout
35152
35153 \end_inset
35154
35155 , das mit der LaTeX-Vorspannzeile
35156 \end_layout
35157
35158 \begin_layout Standard
35159
35160 \series bold
35161
35162 \backslash
35163 usepackage{braket}
35164 \end_layout
35165
35166 \begin_layout Standard
35167 geladen wird.
35168 \begin_inset ERT
35169 status collapsed
35170
35171 \begin_layout Plain Layout
35172
35173
35174 \backslash
35175 ifbraket 
35176 \end_layout
35177
35178 \end_inset
35179
35180
35181 \begin_inset Note Note
35182 status open
35183
35184 \begin_layout Plain Layout
35185 Die folgende Tabelle erscheint nur im Ausdruck wenn das LaTeX-Paket 
35186 \series bold
35187 braket
35188 \series default
35189  installiert ist:
35190 \end_layout
35191
35192 \end_inset
35193
35194
35195 \end_layout
35196
35197 \begin_layout Standard
35198 Folgende Befehle sind definiert:
35199 \end_layout
35200
35201 \begin_layout Standard
35202 \align center
35203 \begin_inset Tabular
35204 <lyxtabular version="3" rows="4" columns="2">
35205 <features rotate="0" tabularvalignment="middle">
35206 <column alignment="center" valignment="top">
35207 <column alignment="center" valignment="top">
35208 <row>
35209 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
35210 \begin_inset Text
35211
35212 \begin_layout Plain Layout
35213 Befehl
35214 \end_layout
35215
35216 \end_inset
35217 </cell>
35218 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
35219 \begin_inset Text
35220
35221 \begin_layout Plain Layout
35222 Ergebnis
35223 \end_layout
35224
35225 \end_inset
35226 </cell>
35227 </row>
35228 <row>
35229 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
35230 \begin_inset Text
35231
35232 \begin_layout Plain Layout
35233
35234 \backslash
35235 Bra{
35236 \backslash
35237 psi
35238 \end_layout
35239
35240 \end_inset
35241 </cell>
35242 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
35243 \begin_inset Text
35244
35245 \begin_layout Plain Layout
35246 \begin_inset Formula $\Bra{\psi}$
35247 \end_inset
35248
35249
35250 \end_layout
35251
35252 \end_inset
35253 </cell>
35254 </row>
35255 <row>
35256 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
35257 \begin_inset Text
35258
35259 \begin_layout Plain Layout
35260
35261 \backslash
35262 Ket{
35263 \backslash
35264 psi
35265 \end_layout
35266
35267 \end_inset
35268 </cell>
35269 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
35270 \begin_inset Text
35271
35272 \begin_layout Plain Layout
35273 \begin_inset Formula $\Ket{\psi}$
35274 \end_inset
35275
35276
35277 \end_layout
35278
35279 \end_inset
35280 </cell>
35281 </row>
35282 <row>
35283 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
35284 \begin_inset Text
35285
35286 \begin_layout Plain Layout
35287
35288 \backslash
35289 Braket{
35290 \backslash
35291 psi|
35292 \backslash
35293 phi
35294 \end_layout
35295
35296 \end_inset
35297 </cell>
35298 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
35299 \begin_inset Text
35300
35301 \begin_layout Plain Layout
35302 \begin_inset Formula $\Braket{\psi|\phi}$
35303 \end_inset
35304
35305
35306 \end_layout
35307
35308 \end_inset
35309 </cell>
35310 </row>
35311 </lyxtabular>
35312
35313 \end_inset
35314
35315
35316 \end_layout
35317
35318 \begin_layout Standard
35319 Der Befehl 
35320 \series bold
35321
35322 \backslash
35323 Braket
35324 \series default
35325  stellt sicher, dass alle senkrechten Striche in der Größe der umgebenden
35326  Klammern gesetzt werden:
35327 \begin_inset Formula 
35328 \[
35329 \Braket{\phi|J=\frac{3}{2}\,,\, M_{J}}
35330 \]
35331
35332 \end_inset
35333
35334
35335 \begin_inset ERT
35336 status collapsed
35337
35338 \begin_layout Plain Layout
35339
35340
35341 \backslash
35342 else 
35343 \end_layout
35344
35345 \end_inset
35346
35347
35348 \begin_inset Note Note
35349 status open
35350
35351 \begin_layout Plain Layout
35352 Folgendes erscheint im Ausdruck wenn das LaTeX-Paket 
35353 \series bold
35354 braket
35355 \series default
35356  nicht installiert ist:
35357 \end_layout
35358
35359 \end_inset
35360
35361
35362 \end_layout
35363
35364 \begin_layout Standard
35365 Das LaTeX-Paket 
35366 \series bold
35367 braket 
35368 \series default
35369 muss installiert sein, um den Rest dieses Abschnitts im Ausdruck zu sehen.
35370 \end_layout
35371
35372 \begin_layout Standard
35373 \begin_inset ERT
35374 status collapsed
35375
35376 \begin_layout Plain Layout
35377
35378
35379 \backslash
35380 fi 
35381 \end_layout
35382
35383 \end_inset
35384
35385
35386 \end_layout
35387
35388 \begin_layout Standard
35389 Der Effekt von 
35390 \series bold
35391
35392 \backslash
35393 Braket
35394 \series default
35395  kann auch mit dem Befehl 
35396 \series bold
35397
35398 \backslash
35399 middle
35400 \series default
35401  erzielt werden, der in 
35402 \begin_inset CommandInset ref
35403 LatexCommand ref
35404 reference "sub:Automatische-Klammergrößen"
35405
35406 \end_inset
35407
35408  beschrieben ist.
35409 \end_layout
35410
35411 \begin_layout Subsection
35412 Selbst definierte Brüche
35413 \begin_inset CommandInset label
35414 LatexCommand label
35415 name "sub:Selbstdefinierte-Brüche"
35416
35417 \end_inset
35418
35419
35420 \begin_inset Index idx
35421 status collapsed
35422
35423 \begin_layout Plain Layout
35424 Brüche ! selbstdefinierte
35425 \end_layout
35426
35427 \end_inset
35428
35429
35430 \end_layout
35431
35432 \begin_layout Standard
35433 Um eigene Befehle für Brüche zu definieren, verwendet man den Befehl 
35434 \series bold
35435
35436 \backslash
35437 genfrac
35438 \series default
35439
35440 \begin_inset Index idx
35441 status collapsed
35442
35443 \begin_layout Plain Layout
35444 Befehle ! G ! 
35445 \backslash
35446 genfrac
35447 \end_layout
35448
35449 \end_inset
35450
35451  in folgendem Schema:
35452 \end_layout
35453
35454 \begin_layout Standard
35455
35456 \series bold
35457
35458 \backslash
35459 genfrac{linke
35460 \series default
35461  
35462 \series bold
35463 Klammer}{rechte
35464 \series default
35465  
35466 \series bold
35467 Klammer}{Bruchstrichdicke}{Ansichtsstil}
35468 \begin_inset Newline newline
35469 \end_inset
35470
35471
35472 \begin_inset Phantom HPhantom
35473 status open
35474
35475 \begin_layout Plain Layout
35476
35477 \series bold
35478
35479 \backslash
35480 genfrac
35481 \end_layout
35482
35483 \end_inset
35484
35485 {Zähler}{Nenner}
35486 \end_layout
35487
35488 \begin_layout Standard
35489 Der Ansichtsstil wird mit einer ganzen Zahl im Bereich 0
35490 \begin_inset space \thinspace{}
35491 \end_inset
35492
35493 -
35494 \begin_inset space \thinspace{}
35495 \end_inset
35496
35497 3 angegeben.
35498 \end_layout
35499
35500 \begin_layout Standard
35501 \align center
35502 \begin_inset Tabular
35503 <lyxtabular version="3" rows="5" columns="2">
35504 <features rotate="0" tabularvalignment="middle">
35505 <column alignment="center" valignment="top">
35506 <column alignment="center" valignment="top">
35507 <row>
35508 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
35509 \begin_inset Text
35510
35511 \begin_layout Plain Layout
35512 Nummer
35513 \end_layout
35514
35515 \end_inset
35516 </cell>
35517 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
35518 \begin_inset Text
35519
35520 \begin_layout Plain Layout
35521 Ansichtsstil
35522 \end_layout
35523
35524 \end_inset
35525 </cell>
35526 </row>
35527 <row>
35528 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
35529 \begin_inset Text
35530
35531 \begin_layout Plain Layout
35532 0
35533 \end_layout
35534
35535 \end_inset
35536 </cell>
35537 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
35538 \begin_inset Text
35539
35540 \begin_layout Plain Layout
35541 abgesetzte Formel
35542 \end_layout
35543
35544 \end_inset
35545 </cell>
35546 </row>
35547 <row>
35548 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
35549 \begin_inset Text
35550
35551 \begin_layout Plain Layout
35552 1
35553 \end_layout
35554
35555 \end_inset
35556 </cell>
35557 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
35558 \begin_inset Text
35559
35560 \begin_layout Plain Layout
35561 eingebettete Formel
35562 \end_layout
35563
35564 \end_inset
35565 </cell>
35566 </row>
35567 <row>
35568 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
35569 \begin_inset Text
35570
35571 \begin_layout Plain Layout
35572 2
35573 \end_layout
35574
35575 \end_inset
35576 </cell>
35577 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
35578 \begin_inset Text
35579
35580 \begin_layout Plain Layout
35581 klein
35582 \end_layout
35583
35584 \end_inset
35585 </cell>
35586 </row>
35587 <row>
35588 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
35589 \begin_inset Text
35590
35591 \begin_layout Plain Layout
35592 3
35593 \end_layout
35594
35595 \end_inset
35596 </cell>
35597 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
35598 \begin_inset Text
35599
35600 \begin_layout Plain Layout
35601 winzig
35602 \end_layout
35603
35604 \end_inset
35605 </cell>
35606 </row>
35607 </lyxtabular>
35608
35609 \end_inset
35610
35611
35612 \end_layout
35613
35614 \begin_layout Standard
35615 Wird nichts für den Ansichtsstil angegeben, passt sich die Größe wie bei
35616  
35617 \series bold
35618
35619 \backslash
35620 frac
35621 \series default
35622  der Umgebung an.
35623 \end_layout
35624
35625 \begin_layout Standard
35626 Wird keine Bruchstrichdicke angegeben, wird der voreingestellte Wert von
35627  0.4
35628 \begin_inset space \thinspace{}
35629 \end_inset
35630
35631 pt verwendet.
35632 \end_layout
35633
35634 \begin_layout Standard
35635 \begin_inset VSpace medskip
35636 \end_inset
35637
35638 Zum Beispiel sind die Befehle 
35639 \series bold
35640
35641 \backslash
35642 dfrac
35643 \series default
35644  und 
35645 \series bold
35646
35647 \backslash
35648 tbinom
35649 \series default
35650  aus 
35651 \begin_inset CommandInset ref
35652 LatexCommand ref
35653 reference "sub:Brüche"
35654
35655 \end_inset
35656
35657  folgendermaßen definiert:
35658 \end_layout
35659
35660 \begin_layout Standard
35661
35662 \series bold
35663
35664 \backslash
35665 newcommand{
35666 \backslash
35667 dfrac}[2]{
35668 \backslash
35669 genfrac{}{}{}{0}{#1}{#2}}
35670 \end_layout
35671
35672 \begin_layout Standard
35673 und
35674 \end_layout
35675
35676 \begin_layout Standard
35677
35678 \series bold
35679
35680 \backslash
35681 newcommand{
35682 \backslash
35683 tbinom}[2]{
35684 \backslash
35685 genfrac{(}{)}{0pt}{1}{#1}{#2}}
35686 \end_layout
35687
35688 \begin_layout Standard
35689 \begin_inset VSpace medskip
35690 \end_inset
35691
35692 Um einen Bruch zu definieren, bei dem man die Bruchstrichdicke als optionales
35693  Argument angeben kann, gibt man im LaTeX-Vorspann folgenden Befehl ein:
35694 \end_layout
35695
35696 \begin_layout Standard
35697
35698 \series bold
35699
35700 \backslash
35701 newcommand{
35702 \backslash
35703 fracS}[3][]{
35704 \backslash
35705 genfrac{}{}{#1}{}{#2}{#3}}
35706 \end_layout
35707
35708 \begin_layout Standard
35709 Dazu ein Test:
35710 \begin_inset Formula 
35711 \begin{align*}
35712 \text{Befehl} &  & \mathrm{\backslash fracS[1mm]\backslash\{A\to\backslash\{B} &  & \mathrm{\backslash fracS[5mm]\backslash\{A\to\backslash\{B}\\
35713 \text{Ergebnis} &  & \fracS[1mm]{A}{B} &  & \fracS[5mm]{A}{B}
35714 \end{align*}
35715
35716 \end_inset
35717
35718 Wie man sieht, entspricht der Abstand des Zählers und Nenners vom Strich
35719  in etwa der dreifachen Strichdicke.
35720 \end_layout
35721
35722 \begin_layout Subsection
35723 Durchgestrichene Formeln
35724 \begin_inset Index idx
35725 status collapsed
35726
35727 \begin_layout Plain Layout
35728 Formel ! durchgestrichene
35729 \end_layout
35730
35731 \end_inset
35732
35733
35734 \end_layout
35735
35736 \begin_layout Standard
35737 Um Formeln oder Formelteile durchzustreichen, muss das LaTeX-Paket 
35738 \series bold
35739 cancel
35740 \series default
35741
35742 \begin_inset Index idx
35743 status collapsed
35744
35745 \begin_layout Plain Layout
35746 Pakete ! cancel
35747 \end_layout
35748
35749 \end_inset
35750
35751  mit der LaTeX-Vorspannzeile
35752 \end_layout
35753
35754 \begin_layout Standard
35755
35756 \series bold
35757
35758 \backslash
35759 usepackage{cancel}
35760 \end_layout
35761
35762 \begin_layout Standard
35763 geladen werden.
35764 \end_layout
35765
35766 \begin_layout Standard
35767 \begin_inset ERT
35768 status collapsed
35769
35770 \begin_layout Plain Layout
35771
35772
35773 \backslash
35774 ifcancel 
35775 \end_layout
35776
35777 \end_inset
35778
35779
35780 \begin_inset Note Note
35781 status open
35782
35783 \begin_layout Plain Layout
35784 Die folgende Tabelle erscheint nur im Ausdruck wenn das LaTeX-Paket 
35785 \series bold
35786 cancel
35787 \series default
35788  installiert ist:
35789 \end_layout
35790
35791 \end_inset
35792
35793
35794 \end_layout
35795
35796 \begin_layout Standard
35797 Es gibt vier verschiedene Arten durchzustreichen:
35798 \end_layout
35799
35800 \begin_layout Standard
35801 \align center
35802 \begin_inset Tabular
35803 <lyxtabular version="3" rows="5" columns="2">
35804 <features rotate="0" tabularvalignment="middle">
35805 <column alignment="center" valignment="top">
35806 <column alignment="center" valignment="top">
35807 <row>
35808 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
35809 \begin_inset Text
35810
35811 \begin_layout Plain Layout
35812 Befehl
35813 \end_layout
35814
35815 \end_inset
35816 </cell>
35817 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
35818 \begin_inset Text
35819
35820 \begin_layout Plain Layout
35821 Ergebnis
35822 \begin_inset Note Note
35823 status collapsed
35824
35825 \begin_layout Plain Layout
35826 Der Leerraum und 
35827 \series bold
35828
35829 \backslash
35830 raisebox
35831 \series default
35832  dienen nur als Abstandhalter.
35833 \end_layout
35834
35835 \end_inset
35836
35837
35838 \end_layout
35839
35840 \end_inset
35841 </cell>
35842 </row>
35843 <row>
35844 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
35845 \begin_inset Text
35846
35847 \begin_layout Plain Layout
35848
35849 \backslash
35850 cancel{
35851 \backslash
35852 int
35853 \begin_inset ERT
35854 status collapsed
35855
35856 \begin_layout Plain Layout
35857
35858
35859 \backslash
35860 leer 
35861 \end_layout
35862
35863 \end_inset
35864
35865 A=B
35866 \end_layout
35867
35868 \end_inset
35869 </cell>
35870 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
35871 \begin_inset Text
35872
35873 \begin_layout Plain Layout
35874 \begin_inset Formula $\raisebox{4.5mm}{}\cancel{\int A=B}\raisebox{-2.5mm}{}$
35875 \end_inset
35876
35877
35878 \end_layout
35879
35880 \end_inset
35881 </cell>
35882 </row>
35883 <row>
35884 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
35885 \begin_inset Text
35886
35887 \begin_layout Plain Layout
35888
35889 \backslash
35890 bcancel{
35891 \backslash
35892 int
35893 \begin_inset ERT
35894 status collapsed
35895
35896 \begin_layout Plain Layout
35897
35898
35899 \backslash
35900 leer 
35901 \end_layout
35902
35903 \end_inset
35904
35905 A=B
35906 \end_layout
35907
35908 \end_inset
35909 </cell>
35910 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
35911 \begin_inset Text
35912
35913 \begin_layout Plain Layout
35914 \begin_inset Formula $\raisebox{4.5mm}{}\bcancel{\int A=B}\raisebox{-2.5mm}{}$
35915 \end_inset
35916
35917
35918 \end_layout
35919
35920 \end_inset
35921 </cell>
35922 </row>
35923 <row>
35924 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
35925 \begin_inset Text
35926
35927 \begin_layout Plain Layout
35928
35929 \backslash
35930 xcancel{
35931 \backslash
35932 int
35933 \begin_inset ERT
35934 status collapsed
35935
35936 \begin_layout Plain Layout
35937
35938
35939 \backslash
35940 leer 
35941 \end_layout
35942
35943 \end_inset
35944
35945 A=B
35946 \end_layout
35947
35948 \end_inset
35949 </cell>
35950 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
35951 \begin_inset Text
35952
35953 \begin_layout Plain Layout
35954 \begin_inset Formula $\raisebox{4.5mm}{}\xcancel{\int A=B}\raisebox{-2.5mm}{}$
35955 \end_inset
35956
35957
35958 \end_layout
35959
35960 \end_inset
35961 </cell>
35962 </row>
35963 <row>
35964 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
35965 \begin_inset Text
35966
35967 \begin_layout Plain Layout
35968
35969 \backslash
35970 cancelto{1
35971 \begin_inset Formula $\to$
35972 \end_inset
35973
35974
35975 \backslash
35976 {
35977 \backslash
35978 int
35979 \begin_inset ERT
35980 status collapsed
35981
35982 \begin_layout Plain Layout
35983
35984
35985 \backslash
35986 leer 
35987 \end_layout
35988
35989 \end_inset
35990
35991 A=B
35992 \end_layout
35993
35994 \end_inset
35995 </cell>
35996 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
35997 \begin_inset Text
35998
35999 \begin_layout Plain Layout
36000 \begin_inset Formula $\raisebox{7mm}{}\cancelto{1}{\int A=B}\raisebox{-2.5mm}{}\hspace{3mm}$
36001 \end_inset
36002
36003
36004 \end_layout
36005
36006 \end_inset
36007 </cell>
36008 </row>
36009 </lyxtabular>
36010
36011 \end_inset
36012
36013
36014 \end_layout
36015
36016 \begin_layout Standard
36017
36018 \series bold
36019
36020 \backslash
36021 cancelto
36022 \series default
36023  eignet sich besonders, wenn man das Kürzen innerhalb einer Formel darstellen
36024  will:
36025 \begin_inset Formula 
36026 \[
36027 \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}}}
36028 \]
36029
36030 \end_inset
36031
36032
36033 \end_layout
36034
36035 \begin_layout Standard
36036 Um die Größe des 
36037 \begin_inset Quotes gld
36038 \end_inset
36039
36040 hochgestellten
36041 \begin_inset Quotes grd
36042 \end_inset
36043
36044  Werts von 
36045 \series bold
36046
36047 \backslash
36048 cancelto
36049 \series default
36050  zu ändern, kann man das Paket 
36051 \series bold
36052 cancel
36053 \series default
36054  entweder mit der Option 
36055 \series bold
36056 samesize
36057 \series default
36058 , die zur selben Größe wie die der durchgestrichenen Zeichen führt, oder
36059  mit der Option 
36060 \series bold
36061 Smaller
36062 \series default
36063 , die zu einer etwas kleineren Größe führt als es ohne Option der Fall ist.
36064  In diesem Dokument wurde 
36065 \series bold
36066 cancel
36067 \series default
36068  mit der Zeile
36069 \end_layout
36070
36071 \begin_layout Standard
36072
36073 \series bold
36074
36075 \backslash
36076 usepackage[samesize]{cancel}
36077 \end_layout
36078
36079 \begin_layout Standard
36080 geladen.
36081  Um den Durchstrich zu färben, verwendet man den Befehl
36082 \end_layout
36083
36084 \begin_layout Standard
36085
36086 \series bold
36087
36088 \backslash
36089 renewcommand{
36090 \backslash
36091 CancelColor}{
36092 \backslash
36093 color{red}}
36094 \end_layout
36095
36096 \begin_layout Standard
36097 als TeX-Code.
36098  
36099 \series bold
36100 red
36101 \series default
36102  kann durch eine Farbe der Wahl ersetzt werden.
36103 \end_layout
36104
36105 \begin_layout Standard
36106 \begin_inset ERT
36107 status collapsed
36108
36109 \begin_layout Plain Layout
36110
36111
36112 \backslash
36113 renewcommand{
36114 \backslash
36115 CancelColor}{
36116 \backslash
36117 color{red}}
36118 \end_layout
36119
36120 \end_inset
36121
36122
36123 \end_layout
36124
36125 \begin_layout Standard
36126 \begin_inset Formula 
36127 \[
36128 \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}}}
36129 \]
36130
36131 \end_inset
36132
36133
36134 \end_layout
36135
36136 \begin_layout Standard
36137 \begin_inset ERT
36138 status collapsed
36139
36140 \begin_layout Plain Layout
36141
36142
36143 \backslash
36144 renewcommand{
36145 \backslash
36146 CancelColor}{
36147 \backslash
36148 color{black}}
36149 \end_layout
36150
36151 \end_inset
36152
36153
36154 \begin_inset Note Note
36155 status open
36156
36157 \begin_layout Plain Layout
36158 Farbe zurücksetzen
36159 \end_layout
36160
36161 \end_inset
36162
36163
36164 \end_layout
36165
36166 \begin_layout Standard
36167 Für weitere Anpassungen siehe die Dokumentation des Pakets 
36168 \series bold
36169 cancel
36170 \series default
36171
36172 \begin_inset CommandInset citation
36173 LatexCommand cite
36174 key "cancel"
36175
36176 \end_inset
36177
36178 .
36179 \end_layout
36180
36181 \begin_layout Standard
36182 \begin_inset ERT
36183 status collapsed
36184
36185 \begin_layout Plain Layout
36186
36187
36188 \backslash
36189 else 
36190 \end_layout
36191
36192 \end_inset
36193
36194
36195 \begin_inset Note Note
36196 status open
36197
36198 \begin_layout Plain Layout
36199 Folgendes erscheint im Ausdruck wenn das LaTeX-Paket 
36200 \series bold
36201 cancel
36202 \series default
36203  nicht installiert ist:
36204 \end_layout
36205
36206 \end_inset
36207
36208
36209 \end_layout
36210
36211 \begin_layout Standard
36212 Das LaTeX-Paket 
36213 \series bold
36214 cancel 
36215 \series default
36216 muss installiert sein, um den Rest dieses Abschnitts im Ausdruck zu sehen.
36217 \end_layout
36218
36219 \begin_layout Standard
36220 \begin_inset ERT
36221 status collapsed
36222
36223 \begin_layout Plain Layout
36224
36225
36226 \backslash
36227 fi 
36228 \end_layout
36229
36230 \end_inset
36231
36232
36233 \end_layout
36234
36235 \begin_layout Subsection
36236 Formeln in Überschriften
36237 \begin_inset CommandInset label
36238 LatexCommand label
36239 name "sub:Formeln-in-Überschriften"
36240
36241 \end_inset
36242
36243
36244 \begin_inset Index idx
36245 status collapsed
36246
36247 \begin_layout Plain Layout
36248 Formel ! in Überschriften
36249 \end_layout
36250
36251 \end_inset
36252
36253
36254 \end_layout
36255
36256 \begin_layout Standard
36257 Benutzt man Formeln in Überschriften, ist auf Folgendes zu achten:
36258 \end_layout
36259
36260 \begin_layout Standard
36261 \begin_inset Note Greyedout
36262 status open
36263
36264 \begin_layout Plain Layout
36265 Verwendet man 
36266 \series bold
36267 hyperref
36268 \series default
36269
36270 \begin_inset Index idx
36271 status collapsed
36272
36273 \begin_layout Plain Layout
36274 Pakete ! hyperref
36275 \end_layout
36276
36277 \end_inset
36278
36279  Unterstützung im den Dokumenteinstellungen unter 
36280 \family sans
36281 PDF-Eigenschaften
36282 \family default
36283 , werden PDF-Lesezeichen für jede Überschrift aus dem Inhaltsverzeichnis
36284  erzeugt.
36285  Enthält eine Überschrift Formeln, werden diese im Lesezeichentext falsch
36286  dargestellt.
36287  Denn Formeln in Lesezeichen verstoßen gegen die PDF-Konventionen.
36288 \end_layout
36289
36290 \end_inset
36291
36292
36293 \end_layout
36294
36295 \begin_layout Standard
36296 Beide Probleme lassen sich lösen, indem man am Ende der Überschrift einen
36297  Kurztitel über das Menü 
36298 \family sans
36299 Einfügen\SpecialChar \menuseparator
36300 Kurztitel
36301 \family default
36302  einfügt.
36303  Kurztitel werden als Alternative für mehrzeilige Überschriften verwendet,
36304  um das Inhaltsverzeichnis übersichtlich zu halten.
36305  Nur der Kurztitel erscheint im Inhaltsverzeichnis und damit auch im PDF-Lesezei
36306 chen.
36307 \end_layout
36308
36309 \begin_layout Standard
36310 Möchte man im Inhaltsverzeichnis eine Formel verwenden, benutzt aber 
36311 \series bold
36312 hyperref
36313 \series default
36314 , verwendet man im TeX-Modus den Befehl
36315 \end_layout
36316
36317 \begin_layout Standard
36318
36319 \series bold
36320
36321 \backslash
36322 texorpdfstring{Teil}{Alternative}
36323 \begin_inset Index idx
36324 status collapsed
36325
36326 \begin_layout Plain Layout
36327 Befehle ! T ! 
36328 \backslash
36329 texorpdfstring
36330 \end_layout
36331
36332 \end_inset
36333
36334
36335 \end_layout
36336
36337 \begin_layout Standard
36338 Teil ist der Überschriftsteil, der nicht im PDF-Lesezeichen erscheinen solle.
36339  Das können Zeichen, Formeln, Fußnoten aber auch Querverweise sein.
36340  Als Alternative kann man angeben, was stattdessen im Lesezeichen erscheinen
36341  soll.
36342 \end_layout
36343
36344 \begin_layout Standard
36345 Es folgen zwei Beispielüberschriften:
36346 \begin_inset VSpace -3mm
36347 \end_inset
36348
36349
36350 \begin_inset ERT
36351 status collapsed
36352
36353 \begin_layout Plain Layout
36354
36355
36356 \backslash
36357 boldmath 
36358 \end_layout
36359
36360 \end_inset
36361
36362
36363 \end_layout
36364
36365 \begin_layout Subsubsection
36366 Überschrift ohne Formel im Inhaltsverzeichnis 
36367 \begin_inset Formula $\sqrt{-1}=\mathrm{i}$
36368 \end_inset
36369
36370
36371 \begin_inset Argument 1
36372 status collapsed
36373
36374 \begin_layout Plain Layout
36375 Überschrift ohne Formel im Inhaltsverzeichnis
36376 \end_layout
36377
36378 \end_inset
36379
36380
36381 \end_layout
36382
36383 \begin_layout Subsubsection
36384 Überschrift mit Formel im Inhaltsverzeichnis
36385 \begin_inset ERT
36386 status collapsed
36387
36388 \begin_layout Plain Layout
36389
36390
36391 \backslash
36392 texorpdfstring{
36393 \end_layout
36394
36395 \end_inset
36396
36397  
36398 \begin_inset Formula $\sqrt{-1}=\mathrm{i}$
36399 \end_inset
36400
36401
36402 \begin_inset ERT
36403 status collapsed
36404
36405 \begin_layout Plain Layout
36406
36407 }{}
36408 \end_layout
36409
36410 \end_inset
36411
36412
36413 \end_layout
36414
36415 \begin_layout Standard
36416 \begin_inset ERT
36417 status collapsed
36418
36419 \begin_layout Plain Layout
36420
36421
36422 \backslash
36423 unboldmath 
36424 \end_layout
36425
36426 \end_inset
36427
36428 In der ersten Überschrift wurde ein Kurztitel verwendet.
36429  In der zweiten 
36430 \series bold
36431
36432 \backslash
36433 texorpdfstring
36434 \series default
36435 .
36436 \end_layout
36437
36438 \begin_layout Standard
36439 Damit die Formeln so wie der Rest der Überschrift formatiert werden, wurde
36440  die komplette Überschrift in eine 
36441 \series bold
36442 boldmath
36443 \series default
36444 -Umgebung
36445 \begin_inset Foot
36446 status collapsed
36447
36448 \begin_layout Plain Layout
36449 siehe 
36450 \begin_inset CommandInset ref
36451 LatexCommand ref
36452 reference "sub:Fett-gedruckte-Formeln"
36453
36454 \end_inset
36455
36456
36457 \end_layout
36458
36459 \end_inset
36460
36461  gesetzt.
36462 \end_layout
36463
36464 \begin_layout Subsection
36465 Formeln im mehrspaltigen Text
36466 \begin_inset Index idx
36467 status collapsed
36468
36469 \begin_layout Plain Layout
36470 Formel ! im mehrspaltigen Text
36471 \end_layout
36472
36473 \end_inset
36474
36475
36476 \end_layout
36477
36478 \begin_layout Standard
36479 Formeln im mehrspaltigen Text sind oftmals zu breit für eine Spalte und
36480  müssen daher über die gesamte Seitenbreite gesetzt werden.
36481  Dazu verwendet man das LaTeX-Paket 
36482 \series bold
36483 multicol
36484 \series default
36485
36486 \begin_inset Foot
36487 status collapsed
36488
36489 \begin_layout Plain Layout
36490
36491 \series bold
36492 multicol
36493 \series default
36494  ist Teil jeder LaTeX-Standardinstallation.
36495 \end_layout
36496
36497 \end_inset
36498
36499
36500 \begin_inset Index idx
36501 status collapsed
36502
36503 \begin_layout Plain Layout
36504 Pakete ! multicol
36505 \end_layout
36506
36507 \end_inset
36508
36509 , das mit der LaTeX-Vorspannzeile
36510 \end_layout
36511
36512 \begin_layout Standard
36513
36514 \series bold
36515
36516 \backslash
36517 usepackage{multicol}
36518 \end_layout
36519
36520 \begin_layout Standard
36521 geladen wird.
36522 \end_layout
36523
36524 \begin_layout Standard
36525 \begin_inset Note Greyedout
36526 status open
36527
36528 \begin_layout Plain Layout
36529 Dabei ist zu beachten, dass im Menü 
36530 \family sans
36531 Dokument\SpecialChar \menuseparator
36532 Einstellungen
36533 \family default
36534  unter 
36535 \family sans
36536 Textformat
36537 \family default
36538  
36539 \emph on
36540 nicht
36541 \emph default
36542  
36543 \family sans
36544 Zweispaltiges
36545 \begin_inset space ~
36546 \end_inset
36547
36548 Dokument
36549 \family default
36550  ausgewählt sein darf.
36551 \end_layout
36552
36553 \end_inset
36554
36555
36556 \end_layout
36557
36558 \begin_layout Standard
36559 Vor den mehrspaltigen Text schreibt man im TeX-Modus den Befehl
36560 \end_layout
36561
36562 \begin_layout Standard
36563
36564 \series bold
36565
36566 \backslash
36567 begin{multicols}{Spaltenanzahl}
36568 \end_layout
36569
36570 \begin_layout Standard
36571 wobei die Spaltenanzahl eine Zahl im Bereich 2
36572 \begin_inset space \thinspace{}
36573 \end_inset
36574
36575 -
36576 \begin_inset space \thinspace{}
36577 \end_inset
36578
36579 10 ist.
36580  Vor der Formel beendet man den mehrspaltigen Text mit dem Befehl
36581 \end_layout
36582
36583 \begin_layout Standard
36584
36585 \series bold
36586
36587 \backslash
36588 end{multicols}
36589 \end_layout
36590
36591 \begin_layout Standard
36592 der im TeX-Modus eingegeben wird.
36593 \end_layout
36594
36595 \begin_layout Standard
36596 Durch den Befehl wird vor der Formel automatisch etwas Leerraum erstellt.
36597  Um dies rückgängig zu machen, fügt man vor der Formel -6
36598 \begin_inset space \thinspace{}
36599 \end_inset
36600
36601 mm vertikalen Leerraum ein.
36602  Ist der Formelstil 
36603 \series bold
36604 Eingerückt
36605 \begin_inset Foot
36606 status collapsed
36607
36608 \begin_layout Plain Layout
36609 Formelstile siehe 
36610 \begin_inset CommandInset ref
36611 LatexCommand ref
36612 reference "sec:Formelstile"
36613
36614 \end_inset
36615
36616
36617 \end_layout
36618
36619 \end_inset
36620
36621
36622 \series default
36623  gewählt, fügt man stattdessen -9
36624 \begin_inset space \thinspace{}
36625 \end_inset
36626
36627 mm Leerraum ein.
36628 \end_layout
36629
36630 \begin_layout Standard
36631 Als Beispiel ein mehrspaltiger Text mit einer abgesetzten Formel:
36632 \end_layout
36633
36634 \begin_layout Standard
36635 \begin_inset ERT
36636 status collapsed
36637
36638 \begin_layout Plain Layout
36639
36640
36641 \backslash
36642 begin{multicols}{2}
36643 \end_layout
36644
36645 \end_inset
36646
36647 Das Spektrum wird fouriertransformiert.
36648  Die Fouriertransformation wird verwendet, um die überlagerten Signale (Netzwerk
36649 , Lösungsmittel) zu trennen.
36650  Nachdem wir die Phasenverschiebung bestimmen konnten, interessiert uns
36651  nun das Aussehen des Ausgangssignals.
36652  Im Experiment haben wir es mit sehr vielen Teilchen zu tun, so dass man
36653  über alle Phasen integrieren muss.
36654  Sei nun 
36655 \begin_inset Formula $S$
36656 \end_inset
36657
36658  unser normiertes Ausgangssignal und 
36659 \begin_inset Formula $P$
36660 \end_inset
36661
36662  die Phasenverteilungsfunktion, so ergibt sich die Beziehung
36663 \begin_inset ERT
36664 status collapsed
36665
36666 \begin_layout Plain Layout
36667
36668
36669 \backslash
36670 end{multicols}
36671 \end_layout
36672
36673 \end_inset
36674
36675
36676 \begin_inset VSpace -6mm
36677 \end_inset
36678
36679
36680 \begin_inset Formula 
36681 \begin{equation}
36682 S(t)=S_{0}(t)\int_{-\infty}^{\infty}P(\phi,t)\mathrm{e}^{\mathrm{i}\phi}\,\mathrm{d}\phi
36683 \end{equation}
36684
36685 \end_inset
36686
36687
36688 \begin_inset ERT
36689 status collapsed
36690
36691 \begin_layout Plain Layout
36692
36693
36694 \backslash
36695 begin{multicols}{2}
36696 \end_layout
36697
36698 \end_inset
36699
36700 wobei 
36701 \begin_inset Formula $S_{0}$
36702 \end_inset
36703
36704  das Signal ohne Gradient ist und die Normierungsbedingung 
36705 \begin_inset Formula $\int_{-\infty}^{\infty}P(\phi,t)\,\mathrm{d}\phi=1$
36706 \end_inset
36707
36708  gilt.
36709  Nun dürfen wir aber nicht den Relaxationsprozess außer Acht lassen.
36710  Direkt nach dem 
36711 \begin_inset Formula $\nicefrac{\pi}{2}$
36712 \end_inset
36713
36714
36715 \begin_inset space \thinspace{}
36716 \end_inset
36717
36718 -rf-Puls beginnt sich die Magnetisierung zu entfokussieren, wodurch sich
36719  das Signal zusätzlich abschwächt.
36720  Diese Abschwächung verläuft exponentiell in Abhängigkeit der so genannten
36721  
36722 \begin_inset Formula $T_{2}$
36723 \end_inset
36724
36725 -Zeit.
36726 \end_layout
36727
36728 \begin_layout Standard
36729 \begin_inset ERT
36730 status collapsed
36731
36732 \begin_layout Plain Layout
36733
36734
36735 \backslash
36736 end{multicols}
36737 \end_layout
36738
36739 \end_inset
36740
36741  
36742 \end_layout
36743
36744 \begin_layout Subsection
36745 Formeln mit Beschreibung der Variablen
36746 \begin_inset Index idx
36747 status collapsed
36748
36749 \begin_layout Plain Layout
36750 Formel ! mit Variablenbeschreibung
36751 \end_layout
36752
36753 \end_inset
36754
36755
36756 \end_layout
36757
36758 \begin_layout Standard
36759 Möchte man wie in Formel 
36760 \begin_inset CommandInset ref
36761 LatexCommand eqref
36762 reference "eq:innerhalb"
36763
36764 \end_inset
36765
36766 , Variablen innerhalb einer Formel beschreiben, verwendet man eine 2
36767 \series bold
36768 ×
36769 \series default
36770
36771 \begin_inset Formula $n$
36772 \end_inset
36773
36774
36775 \begin_inset space ~
36776 \end_inset
36777
36778 Matrix mit links ausgerichteten Spalten für die verwendeten 
36779 \begin_inset Formula $n$
36780 \end_inset
36781
36782  Variablen.
36783 \begin_inset Foot
36784 status collapsed
36785
36786 \begin_layout Plain Layout
36787 Matrizen siehe 
36788 \begin_inset CommandInset ref
36789 LatexCommand ref
36790 reference "sec:Matrizen"
36791
36792 \end_inset
36793
36794
36795 \end_layout
36796
36797 \end_inset
36798
36799  Um die Beschreibung kleiner zu setzen, gibt man vor der Matrix z.
36800 \begin_inset space \thinspace{}
36801 \end_inset
36802
36803 B.
36804  den Befehl 
36805 \series bold
36806
36807 \backslash
36808 footnotesize
36809 \series default
36810  ein.
36811 \begin_inset Foot
36812 status collapsed
36813
36814 \begin_layout Plain Layout
36815 Schriftgrößen siehe 
36816 \begin_inset CommandInset ref
36817 LatexCommand ref
36818 reference "sub:Schriftgrößen"
36819
36820 \end_inset
36821
36822
36823 \end_layout
36824
36825 \end_inset
36826
36827
36828 \end_layout
36829
36830 \begin_layout Standard
36831 Wird der Formelstil 
36832 \series bold
36833 Eingerückt
36834 \begin_inset Foot
36835 status collapsed
36836
36837 \begin_layout Plain Layout
36838 Formelstile siehe 
36839 \begin_inset CommandInset ref
36840 LatexCommand ref
36841 reference "sec:Formelstile"
36842
36843 \end_inset
36844
36845
36846 \end_layout
36847
36848 \end_inset
36849
36850
36851 \series default
36852  verwendet, fügt man vor und nach der Matrix ein 
36853 \series bold
36854
36855 \backslash
36856 hfill
36857 \series default
36858
36859 \begin_inset Foot
36860 status collapsed
36861
36862 \begin_layout Plain Layout
36863
36864 \series bold
36865
36866 \backslash
36867 hfill
36868 \series default
36869  wirkt nur in Formeln mit dem Stil 
36870 \series bold
36871 Eingerückt
36872 \series default
36873 , siehe 
36874 \begin_inset CommandInset ref
36875 LatexCommand ref
36876 reference "sub:Variabler-Leerraum"
36877
36878 \end_inset
36879
36880 .
36881 \end_layout
36882
36883 \end_inset
36884
36885  ein, damit der Abstand der Matrix von der Gleichung und vom Seitenrand
36886  gleich ist.
36887 \end_layout
36888
36889 \begin_layout Standard
36890 Ist der Formelstil 
36891 \series bold
36892 Zentriert
36893 \series default
36894  gewählt, nutzt man die in 
36895 \begin_inset CommandInset ref
36896 LatexCommand ref
36897 reference "sub:Flalign-Umgebung"
36898
36899 \end_inset
36900
36901  beschriebene Möglichkeit, Formeln einzurücken.
36902  Formel 
36903 \begin_inset CommandInset ref
36904 LatexCommand eqref
36905 reference "eq:innerhalb"
36906
36907 \end_inset
36908
36909  besteht aus fünf Spalten, wobei in den ersten beiden die Gleichung, in
36910  der dritten die Matrix und in der letzten die leere TeX-Klammer steht.
36911 \begin_inset Formula 
36912 \begin{flalign}
36913 \hspace{30pt}F_{A} & =\rho·V·g & \footnotesize\begin{array}{ll}
36914 \rho & \textrm{Dichte}\\
36915 V & \textrm{Volumen}\\
36916 g & \textrm{Fallbeschleunigung}
36917 \end{array} &  & {}\label{eq:innerhalb}
36918 \end{flalign}
36919
36920 \end_inset
36921
36922
36923 \end_layout
36924
36925 \begin_layout Subsection
36926 Aufrechte kleine griechische Buchstaben
36927 \begin_inset CommandInset label
36928 LatexCommand label
36929 name "sub:Aufrechte-kleine-griechische"
36930
36931 \end_inset
36932
36933
36934 \begin_inset Index idx
36935 status collapsed
36936
36937 \begin_layout Plain Layout
36938 griechische Buchstaben ! aufrechte
36939 \end_layout
36940
36941 \end_inset
36942
36943
36944 \end_layout
36945
36946 \begin_layout Standard
36947 Die meisten Mathe-Schriften stellen nur kursive kleine griechische Buchstaben
36948  zur Verfügung.
36949  Für Symbole der Elementarteilchen, wie Pionen und Neutrinos werden jedoch
36950  aufrechte griechische Buchstaben benötigt.
36951  Die Datei 
36952 \series bold
36953 upgreek.sty
36954 \series default
36955
36956 \begin_inset Foot
36957 status collapsed
36958
36959 \begin_layout Plain Layout
36960
36961 \series bold
36962 upgreek
36963 \series default
36964  ist Teil des LaTeX-Paketes 
36965 \series bold
36966 was
36967 \series default
36968
36969 \begin_inset Index idx
36970 status collapsed
36971
36972 \begin_layout Plain Layout
36973 Pakete ! was
36974 \begin_inset ERT
36975 status collapsed
36976
36977 \begin_layout Plain Layout
36978
36979
36980 \backslash
36981 vspace{4mm}
36982 \end_layout
36983
36984 \end_inset
36985
36986
36987 \end_layout
36988
36989 \end_inset
36990
36991 .
36992 \end_layout
36993
36994 \end_inset
36995
36996
36997 \begin_inset Index idx
36998 status collapsed
36999
37000 \begin_layout Plain Layout
37001 Pakete ! upgreek
37002 \end_layout
37003
37004 \end_inset
37005
37006 , die mit der LaTeX-Vorspannzeile
37007 \end_layout
37008
37009 \begin_layout Standard
37010
37011 \series bold
37012
37013 \backslash
37014 usepackage{upgreek}
37015 \end_layout
37016
37017 \begin_layout Standard
37018 geladen wird, stellt diese Buchstaben zur Verfügung.
37019  
37020 \begin_inset ERT
37021 status collapsed
37022
37023 \begin_layout Plain Layout
37024
37025
37026 \backslash
37027 ifupgreek 
37028 \end_layout
37029
37030 \end_inset
37031
37032
37033 \begin_inset Note Note
37034 status open
37035
37036 \begin_layout Plain Layout
37037 Das Folgende erscheint nur im Ausdruck wenn das LaTeX-Paket 
37038 \series bold
37039 upgreek
37040 \series default
37041  installiert ist:
37042 \end_layout
37043
37044 \end_inset
37045
37046  Sie werden erzeugt, wenn der Befehl für einen griechischen Buchstaben mit
37047  
37048 \series bold
37049 up
37050 \series default
37051  begonnen wird.
37052  So erzeugt z.
37053 \begin_inset space \thinspace{}
37054 \end_inset
37055
37056 B.
37057  der Befehl 
37058 \series bold
37059
37060 \backslash
37061 uptau
37062 \series default
37063  dies: 
37064 \begin_inset Formula $\uptau$
37065 \end_inset
37066
37067
37068 \end_layout
37069
37070 \begin_layout Standard
37071 Damit kann man Elementarteilchenreaktionen erstellen:
37072 \begin_inset Formula 
37073 \[
37074 \uppi^{+}\to\upmu^{+}+\upnu_{\upmu}
37075 \]
37076
37077 \end_inset
37078
37079
37080 \end_layout
37081
37082 \begin_layout Standard
37083 Die aufrechten Buchstaben sind fetter und breiter als die kursiven.
37084  Sie sollten daher nicht für Einheiten wie 
37085 \begin_inset Quotes gld
37086 \end_inset
37087
37088 µm
37089 \begin_inset Quotes grd
37090 \end_inset
37091
37092  verwendet werden.
37093 \end_layout
37094
37095 \begin_layout Standard
37096 \begin_inset ERT
37097 status collapsed
37098
37099 \begin_layout Plain Layout
37100
37101
37102 \backslash
37103 else 
37104 \end_layout
37105
37106 \end_inset
37107
37108
37109 \begin_inset Note Note
37110 status open
37111
37112 \begin_layout Plain Layout
37113 Folgendes erscheint im Ausdruck wenn das LaTeX-Paket 
37114 \series bold
37115 upgreek
37116 \series default
37117  nicht installiert ist:
37118 \end_layout
37119
37120 \end_inset
37121
37122
37123 \end_layout
37124
37125 \begin_layout Standard
37126 Das LaTeX-Paket 
37127 \series bold
37128 upgreek 
37129 \series default
37130 muss installiert sein, um den Rest dieses Abschnitts im Ausdruck zu sehen.
37131 \end_layout
37132
37133 \begin_layout Standard
37134 \begin_inset ERT
37135 status collapsed
37136
37137 \begin_layout Plain Layout
37138
37139
37140 \backslash
37141 fi 
37142 \end_layout
37143
37144 \end_inset
37145
37146
37147 \end_layout
37148
37149 \begin_layout Subsection
37150 Textzeichen in Formeln
37151 \begin_inset CommandInset label
37152 LatexCommand label
37153 name "sub:Textzeichen-in-Formeln"
37154
37155 \end_inset
37156
37157
37158 \begin_inset Index idx
37159 status collapsed
37160
37161 \begin_layout Plain Layout
37162 Text ! in Formeln
37163 \end_layout
37164
37165 \end_inset
37166
37167
37168 \end_layout
37169
37170 \begin_layout Standard
37171 In einigen Fällen möchte man Textzeichen direkt in Formeln eingeben.
37172  Benötigt man z.
37173 \begin_inset space \thinspace{}
37174 \end_inset
37175
37176 B.
37177  den mittigen Punkt · in Formeln wie 
37178 \begin_inset Formula $\nu=5·10^{5}\,\mathrm{Hz}$
37179 \end_inset
37180
37181 , müsste man dafür jedes Mal den Befehl 
37182 \series bold
37183
37184 \backslash
37185 cdot
37186 \series default
37187  eingeben
37188 \begin_inset Foot
37189 status collapsed
37190
37191 \begin_layout Plain Layout
37192 siehe 
37193 \begin_inset CommandInset ref
37194 LatexCommand ref
37195 reference "sub:Binäre-Operatoren"
37196
37197 \end_inset
37198
37199
37200 \end_layout
37201
37202 \end_inset
37203
37204 , da dieses Zeichen in allen Kodierungen als Textzeichen definiert ist.
37205  Man kann jedoch die Kodierung mit folgender LaTeX-Vorspannzeile ändern:
37206 \end_layout
37207
37208 \begin_layout Standard
37209
37210 \series bold
37211
37212 \backslash
37213 DeclareInputText{183}{
37214 \backslash
37215 ifmmode
37216 \backslash
37217 cdot
37218 \backslash
37219 else
37220 \backslash
37221 textperiodcentered
37222 \backslash
37223 f\SpecialChar \textcompwordmark{}
37224 i}
37225 \end_layout
37226
37227 \begin_layout Standard
37228 Die Zeichenkodierung (Menü 
37229 \family sans
37230 Dokument\SpecialChar \menuseparator
37231 Einstellungen\SpecialChar \menuseparator
37232 Sprache
37233 \family default
37234 ) legt fest, welches Zeichen beim Druck einer bestimmten Taste erscheint.
37235  Wenn man die Taste für das Zeichen '·' drückt, wird intern der Befehl 
37236 \series bold
37237
37238 \backslash
37239 textperiodcentered
37240 \series default
37241  verwendet.
37242  Dieser Befehl ist in einer Formel jedoch nicht verfügbar, so dass es zu
37243  LaTeX-Fehlern kommen würde.
37244  Durch die geänderte Kodierung wird hingegen automatisch der richtige Befehl
37245  gewählt, je nachdem ob das Zeichen in eine Formel eingegeben wurde oder
37246  nicht.
37247 \end_layout
37248
37249 \begin_layout Standard
37250 Die Kodierung der einzelnen Zeichen ist in Definitionsdateien abgespeichert.
37251  Z.
37252 \begin_inset space \thinspace{}
37253 \end_inset
37254
37255 B.
37256  ist die Kodierung 
37257 \series bold
37258 latin9
37259 \series default
37260  in der Datei 
37261 \series bold
37262 latin9.def
37263 \series default
37264  definiert, die sich im Installationsverzeichnis von LaTeX befindet.
37265  Kodierungen sollten nur über den LaTeX-Vorspann und nicht in den Definitionsdat
37266 eien geändert werden.
37267  Ansonsten können eigene Dokumente von anderen LyX-Nutzern auf anderen Computern
37268  nicht ohne Weiteres bearbeitet werden.
37269 \end_layout
37270
37271 \begin_layout Standard
37272 \begin_inset VSpace medskip
37273 \end_inset
37274
37275 In diesem Dokument wurde außerdem mittigen Punkt noch das Gradzeichen °
37276  mit folgenden LaTeX-Vorspannzeilen so definiert, dass sie direkt in eine
37277  Formel eingegeben werden können:
37278 \end_layout
37279
37280 \begin_layout Standard
37281
37282 \series bold
37283
37284 \backslash
37285 DeclareInputText{176}{
37286 \backslash
37287 ifmmode^
37288 \backslash
37289 circ
37290 \backslash
37291 else
37292 \backslash
37293 textdegree
37294 \backslash
37295 f\SpecialChar \textcompwordmark{}
37296 i}
37297 \end_layout
37298
37299 \begin_layout Standard
37300 \begin_inset Newpage newpage
37301 \end_inset
37302
37303
37304 \end_layout
37305
37306 \begin_layout Section
37307 \start_of_appendix
37308 Typographische Hinweise
37309 \begin_inset Index idx
37310 status collapsed
37311
37312 \begin_layout Plain Layout
37313 Typographische Hinweise
37314 \end_layout
37315
37316 \end_inset
37317
37318
37319 \end_layout
37320
37321 \begin_layout Standard
37322 Dieses Kapitel ist eine Zusammenfassung der wichtigsten typographischen
37323  Regeln, die teilweise auch im Duden 
37324 \begin_inset CommandInset citation
37325 LatexCommand cite
37326 key "Duden"
37327
37328 \end_inset
37329
37330  unter 
37331 \family typewriter
37332 Textverarbeitung
37333 \family default
37334  aufgelistet sind.
37335  Weitere Regeln sind in 
37336 \begin_inset CommandInset citation
37337 LatexCommand cite
37338 key "Checklist"
37339
37340 \end_inset
37341
37342  zu finden.
37343 \end_layout
37344
37345 \begin_layout Itemize
37346 Physikalische Einheiten werden 
37347 \emph on
37348 immer
37349 \emph default
37350  aufrecht gesetzt
37351 \begin_inset Foot
37352 status collapsed
37353
37354 \begin_layout Plain Layout
37355 wird durch Schriftstile erreicht, siehe 
37356 \begin_inset CommandInset ref
37357 LatexCommand ref
37358 reference "sub:Schriftstile"
37359
37360 \end_inset
37361
37362
37363 \end_layout
37364
37365 \end_inset
37366
37367 , egal ob sie sich in einem kursiven Text befinden: 30
37368 \begin_inset space \thinspace{}
37369 \end_inset
37370
37371 km/h
37372 \begin_inset Newline newline
37373 \end_inset
37374
37375 Zwischen Wert und Einheit befindet sich der kleinste Leerraum, siehe 
37376 \begin_inset CommandInset ref
37377 LatexCommand ref
37378 reference "sub:Vordefinierter-Leerraum"
37379
37380 \end_inset
37381
37382 .
37383 \begin_inset Newline newline
37384 \end_inset
37385
37386 Diese Richtlinie wird automatisch eingehalten, wenn man den Befehl 
37387 \series bold
37388
37389 \backslash
37390 unittwo
37391 \series default
37392  verwendet.
37393  Gibt man ihn in eine Formel ein, erscheinen zwei Kästchen.
37394  In das Erste wird der Wert, in das Zweite die Einheit eingegeben und man
37395  erhält wie oben: 
37396 \begin_inset Formula $\unit[30]{km/h}$
37397 \end_inset
37398
37399
37400 \begin_inset space \thinspace{}
37401 \end_inset
37402
37403 .
37404  Zu beachten ist, dass 
37405 \series bold
37406
37407 \backslash
37408 unittwo
37409 \series default
37410  kein echter LaTeX-Befehl, sondern der Befehl 
37411 \series bold
37412
37413 \backslash
37414 unit[Wert]{Einheit}
37415 \series default
37416  ist, daher kann man ihn nicht im TeX-Code benutzen.
37417 \end_layout
37418
37419 \begin_layout Itemize
37420 Prozent- und Promillezeichen werden wie physikalische Einheiten gesetzt:
37421 \begin_inset Newline newline
37422 \end_inset
37423
37424 1,2
37425 \begin_inset space \thinspace{}
37426 \end_inset
37427
37428 ‰ Alkohol im Blut
37429 \begin_inset Newline newline
37430 \end_inset
37431
37432 Sie folgen jedoch direkt auf die Zahl, wenn sie in einer Zusammensetzung
37433  oder Ableitung stehen: 3%-ige Rendite, 20%-Grenze
37434 \end_layout
37435
37436 \begin_layout Itemize
37437 Das Grad-Symbol folgt immer unmittelbar auf die Zahl: 15°, es sei denn es
37438  wird in einer Einheit verwendet: 15
37439 \begin_inset space \thinspace{}
37440 \end_inset
37441
37442 °C
37443 \end_layout
37444
37445 \begin_layout Itemize
37446 In Zahlen mit mehr als vier Ziffern wird zur Gruppierung vor jeder dritten
37447  Ziffer der kleinste Leerraum eingefügt: 18
37448 \begin_inset space \thinspace{}
37449 \end_inset
37450
37451 473
37452 \begin_inset space \thinspace{}
37453 \end_inset
37454
37455 588
37456 \end_layout
37457
37458 \begin_layout Itemize
37459 Für Bemaßungen wie z.
37460 \begin_inset space \thinspace{}
37461 \end_inset
37462
37463 B.
37464  120×90×40
37465 \begin_inset space \thinspace{}
37466 \end_inset
37467
37468 cm, verwendet man das gelegte Kreuz 
37469 \begin_inset Quotes gld
37470 \end_inset
37471
37472 ×
37473 \begin_inset Quotes grd
37474 \end_inset
37475
37476 , dass entweder über den Befehl 
37477 \series bold
37478
37479 \backslash
37480 times
37481 \series default
37482  oder über das Menü 
37483 \family sans
37484 Einfügen\SpecialChar \menuseparator
37485 Sonderzeichen\SpecialChar \menuseparator
37486 Symbole
37487 \family default
37488  verfügbar ist.
37489 \end_layout
37490
37491 \begin_layout Itemize
37492 Bei Datumsangaben befindet sich zwischen Tag und Monat der kleinste Leerraum,
37493  zwischen Monat und Jahr ein geschütztes Leerzeichen: 23.
37494 \begin_inset space \thinspace{}
37495 \end_inset
37496
37497 6.
37498 \begin_inset space ~
37499 \end_inset
37500
37501 1979
37502 \end_layout
37503
37504 \begin_layout Itemize
37505 Funktionen, deren Name aus mehreren Buchstaben besteht, werden aufrecht
37506  gesetzt um Verwechslungen mit Variablen zu vermeiden, siehe 
37507 \begin_inset CommandInset ref
37508 LatexCommand ref
37509 reference "sub:Vordefinierte-Funktionen"
37510
37511 \end_inset
37512
37513 .
37514 \end_layout
37515
37516 \begin_layout Itemize
37517 Indizes, die aus mehreren Buchstaben bestehen, werden aufrecht gesetzt:
37518  
37519 \begin_inset Formula $E_{\mathrm{kin}}$
37520 \end_inset
37521
37522
37523 \begin_inset Newline newline
37524 \end_inset
37525
37526 Komponenten von Matrizen werden kursiv gesetzt: 
37527 \begin_inset Formula $\hat{H}_{kl}$
37528 \end_inset
37529
37530
37531 \end_layout
37532
37533 \begin_layout Itemize
37534 Der Ableitungs-/Integrationsoperator 'd', die Eulersche Zahl 'e' und die
37535  Imaginäre Zahl 'i' sollten aufrecht gesetzt werden, um sie nicht mit anderen
37536  Variablen zu verwechseln.
37537 \end_layout
37538
37539 \begin_layout Itemize
37540 Das Symbol für eine 
37541 \noun on
37542 Fourier
37543 \noun default
37544 -Transformation kann entweder mit dem Befehl 
37545 \series bold
37546
37547 \backslash
37548 mathscr
37549 \begin_inset ERT
37550 status collapsed
37551
37552 \begin_layout Plain Layout
37553
37554
37555 \backslash
37556 leer 
37557 \end_layout
37558
37559 \end_inset
37560
37561 F
37562 \series default
37563  oder über das Menü 
37564 \family sans
37565 Einfügen\SpecialChar \menuseparator
37566 Sonderzeichen\SpecialChar \menuseparator
37567 Symbole\SpecialChar \menuseparator
37568 Buchsta\SpecialChar \-
37569 benähnliche Symbole
37570 \family default
37571  eingefügt werden: 
37572 \begin_inset Formula $\mathscr{F}$
37573 \end_inset
37574
37575
37576 \end_layout
37577
37578 \begin_layout Standard
37579 \begin_inset Newpage newpage
37580 \end_inset
37581
37582
37583 \end_layout
37584
37585 \begin_layout Section
37586 Synonyme
37587 \begin_inset Index idx
37588 status collapsed
37589
37590 \begin_layout Plain Layout
37591 Synonyme
37592 \end_layout
37593
37594 \end_inset
37595
37596
37597 \end_layout
37598
37599 \begin_layout Standard
37600 Einige Zeichen und Symbole können mit mehreren Befehlen erstellt werden.
37601  Hier ist eine Übersicht der Synonymbefehle:
37602 \end_layout
37603
37604 \begin_layout Standard
37605 \begin_inset VSpace bigskip
37606 \end_inset
37607
37608
37609 \begin_inset space \hfill{}
37610 \end_inset
37611
37612
37613 \begin_inset Tabular
37614 <lyxtabular version="3" rows="12" columns="2">
37615 <features rotate="0" tabularvalignment="middle">
37616 <column alignment="center" valignment="top" width="0pt">
37617 <column alignment="center" valignment="top" width="0pt">
37618 <row>
37619 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
37620 \begin_inset Text
37621
37622 \begin_layout Plain Layout
37623 Befehl
37624 \end_layout
37625
37626 \end_inset
37627 </cell>
37628 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
37629 \begin_inset Text
37630
37631 \begin_layout Plain Layout
37632 äquivalent zu
37633 \begin_inset Note Note
37634 status collapsed
37635
37636 \begin_layout Plain Layout
37637
37638 \series bold
37639
37640 \backslash
37641 raisebox
37642 \series default
37643  dient nur als Abstandhalter.
37644 \end_layout
37645
37646 \end_inset
37647
37648
37649 \end_layout
37650
37651 \end_inset
37652 </cell>
37653 </row>
37654 <row>
37655 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37656 \begin_inset Text
37657
37658 \begin_layout Plain Layout
37659
37660 \backslash
37661 ast
37662 \end_layout
37663
37664 \end_inset
37665 </cell>
37666 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37667 \begin_inset Text
37668
37669 \begin_layout Plain Layout
37670 \begin_inset ERT
37671 status collapsed
37672
37673 \begin_layout Plain Layout
37674
37675
37676 \backslash
37677 raisebox{-1.2mm}{
37678 \end_layout
37679
37680 \end_inset
37681
37682 *
37683 \begin_inset ERT
37684 status collapsed
37685
37686 \begin_layout Plain Layout
37687
37688 }
37689 \end_layout
37690
37691 \end_inset
37692
37693
37694 \end_layout
37695
37696 \end_inset
37697 </cell>
37698 </row>
37699 <row>
37700 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37701 \begin_inset Text
37702
37703 \begin_layout Plain Layout
37704
37705 \backslash
37706 choose
37707 \end_layout
37708
37709 \end_inset
37710 </cell>
37711 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37712 \begin_inset Text
37713
37714 \begin_layout Plain Layout
37715
37716 \backslash
37717 binom
37718 \end_layout
37719
37720 \end_inset
37721 </cell>
37722 </row>
37723 <row>
37724 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37725 \begin_inset Text
37726
37727 \begin_layout Plain Layout
37728
37729 \backslash
37730 geq
37731 \end_layout
37732
37733 \end_inset
37734 </cell>
37735 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37736 \begin_inset Text
37737
37738 \begin_layout Plain Layout
37739
37740 \backslash
37741 ge
37742 \end_layout
37743
37744 \end_inset
37745 </cell>
37746 </row>
37747 <row>
37748 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37749 \begin_inset Text
37750
37751 \begin_layout Plain Layout
37752
37753 \backslash
37754 lbrace
37755 \end_layout
37756
37757 \end_inset
37758 </cell>
37759 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37760 \begin_inset Text
37761
37762 \begin_layout Plain Layout
37763 {
37764 \end_layout
37765
37766 \end_inset
37767 </cell>
37768 </row>
37769 <row>
37770 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37771 \begin_inset Text
37772
37773 \begin_layout Plain Layout
37774
37775 \backslash
37776 lbracket
37777 \end_layout
37778
37779 \end_inset
37780 </cell>
37781 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37782 \begin_inset Text
37783
37784 \begin_layout Plain Layout
37785 [
37786 \end_layout
37787
37788 \end_inset
37789 </cell>
37790 </row>
37791 <row>
37792 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37793 \begin_inset Text
37794
37795 \begin_layout Plain Layout
37796
37797 \backslash
37798 leftarrow
37799 \end_layout
37800
37801 \end_inset
37802 </cell>
37803 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37804 \begin_inset Text
37805
37806 \begin_layout Plain Layout
37807
37808 \backslash
37809 gets
37810 \end_layout
37811
37812 \end_inset
37813 </cell>
37814 </row>
37815 <row>
37816 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37817 \begin_inset Text
37818
37819 \begin_layout Plain Layout
37820
37821 \backslash
37822 leq
37823 \end_layout
37824
37825 \end_inset
37826 </cell>
37827 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37828 \begin_inset Text
37829
37830 \begin_layout Plain Layout
37831
37832 \backslash
37833 le
37834 \end_layout
37835
37836 \end_inset
37837 </cell>
37838 </row>
37839 <row>
37840 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37841 \begin_inset Text
37842
37843 \begin_layout Plain Layout
37844
37845 \backslash
37846 lor
37847 \end_layout
37848
37849 \end_inset
37850 </cell>
37851 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37852 \begin_inset Text
37853
37854 \begin_layout Plain Layout
37855
37856 \backslash
37857 vee
37858 \end_layout
37859
37860 \end_inset
37861 </cell>
37862 </row>
37863 <row>
37864 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37865 \begin_inset Text
37866
37867 \begin_layout Plain Layout
37868
37869 \backslash
37870 neq
37871 \end_layout
37872
37873 \end_inset
37874 </cell>
37875 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37876 \begin_inset Text
37877
37878 \begin_layout Plain Layout
37879
37880 \backslash
37881 not=
37882 \end_layout
37883
37884 \end_inset
37885 </cell>
37886 </row>
37887 <row>
37888 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37889 \begin_inset Text
37890
37891 \begin_layout Plain Layout
37892
37893 \backslash
37894 slash
37895 \end_layout
37896
37897 \end_inset
37898 </cell>
37899 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37900 \begin_inset Text
37901
37902 \begin_layout Plain Layout
37903 /
37904 \end_layout
37905
37906 \end_inset
37907 </cell>
37908 </row>
37909 <row>
37910 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
37911 \begin_inset Text
37912
37913 \begin_layout Plain Layout
37914
37915 \backslash
37916 vert
37917 \end_layout
37918
37919 \end_inset
37920 </cell>
37921 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
37922 \begin_inset Text
37923
37924 \begin_layout Plain Layout
37925 |
37926 \end_layout
37927
37928 \end_inset
37929 </cell>
37930 </row>
37931 </lyxtabular>
37932
37933 \end_inset
37934
37935
37936 \begin_inset space \hfill{}
37937 \end_inset
37938
37939
37940 \begin_inset Tabular
37941 <lyxtabular version="3" rows="12" columns="2">
37942 <features rotate="0" tabularvalignment="middle">
37943 <column alignment="center" valignment="top" width="0pt">
37944 <column alignment="center" valignment="top" width="0pt">
37945 <row>
37946 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
37947 \begin_inset Text
37948
37949 \begin_layout Plain Layout
37950 Befehl
37951 \end_layout
37952
37953 \end_inset
37954 </cell>
37955 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
37956 \begin_inset Text
37957
37958 \begin_layout Plain Layout
37959 äquivalent zu
37960 \end_layout
37961
37962 \end_inset
37963 </cell>
37964 </row>
37965 <row>
37966 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37967 \begin_inset Text
37968
37969 \begin_layout Plain Layout
37970
37971 \backslash
37972 backslash
37973 \end_layout
37974
37975 \end_inset
37976 </cell>
37977 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37978 \begin_inset Text
37979
37980 \begin_layout Plain Layout
37981
37982 \backslash
37983
37984 \backslash
37985
37986 \end_layout
37987
37988 \end_inset
37989 </cell>
37990 </row>
37991 <row>
37992 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37993 \begin_inset Text
37994
37995 \begin_layout Plain Layout
37996
37997 \backslash
37998 dasharrow
37999 \end_layout
38000
38001 \end_inset
38002 </cell>
38003 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
38004 \begin_inset Text
38005
38006 \begin_layout Plain Layout
38007
38008 \backslash
38009 dashrightarrow
38010 \end_layout
38011
38012 \end_inset
38013 </cell>
38014 </row>
38015 <row>
38016 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
38017 \begin_inset Text
38018
38019 \begin_layout Plain Layout
38020
38021 \backslash
38022 land
38023 \end_layout
38024
38025 \end_inset
38026 </cell>
38027 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
38028 \begin_inset Text
38029
38030 \begin_layout Plain Layout
38031
38032 \backslash
38033 wedge
38034 \end_layout
38035
38036 \end_inset
38037 </cell>
38038 </row>
38039 <row>
38040 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
38041 \begin_inset Text
38042
38043 \begin_layout Plain Layout
38044
38045 \backslash
38046 rbrace
38047 \end_layout
38048
38049 \end_inset
38050 </cell>
38051 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
38052 \begin_inset Text
38053
38054 \begin_layout Plain Layout
38055 }
38056 \end_layout
38057
38058 \end_inset
38059 </cell>
38060 </row>
38061 <row>
38062 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
38063 \begin_inset Text
38064
38065 \begin_layout Plain Layout
38066
38067 \backslash
38068 rbracket
38069 \end_layout
38070
38071 \end_inset
38072 </cell>
38073 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
38074 \begin_inset Text
38075
38076 \begin_layout Plain Layout
38077 ]
38078 \end_layout
38079
38080 \end_inset
38081 </cell>
38082 </row>
38083 <row>
38084 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
38085 \begin_inset Text
38086
38087 \begin_layout Plain Layout
38088
38089 \backslash
38090 rightarrow
38091 \end_layout
38092
38093 \end_inset
38094 </cell>
38095 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
38096 \begin_inset Text
38097
38098 \begin_layout Plain Layout
38099
38100 \backslash
38101 to
38102 \end_layout
38103
38104 \end_inset
38105 </cell>
38106 </row>
38107 <row>
38108 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
38109 \begin_inset Text
38110
38111 \begin_layout Plain Layout
38112
38113 \backslash
38114 lnot
38115 \end_layout
38116
38117 \end_inset
38118 </cell>
38119 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
38120 \begin_inset Text
38121
38122 \begin_layout Plain Layout
38123
38124 \backslash
38125 neg
38126 \end_layout
38127
38128 \end_inset
38129 </cell>
38130 </row>
38131 <row>
38132 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
38133 \begin_inset Text
38134
38135 \begin_layout Plain Layout
38136
38137 \backslash
38138 ne
38139 \end_layout
38140
38141 \end_inset
38142 </cell>
38143 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
38144 \begin_inset Text
38145
38146 \begin_layout Plain Layout
38147
38148 \backslash
38149 not=
38150 \end_layout
38151
38152 \end_inset
38153 </cell>
38154 </row>
38155 <row>
38156 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
38157 \begin_inset Text
38158
38159 \begin_layout Plain Layout
38160
38161 \backslash
38162 owns
38163 \end_layout
38164
38165 \end_inset
38166 </cell>
38167 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
38168 \begin_inset Text
38169
38170 \begin_layout Plain Layout
38171
38172 \backslash
38173 ni
38174 \end_layout
38175
38176 \end_inset
38177 </cell>
38178 </row>
38179 <row>
38180 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
38181 \begin_inset Text
38182
38183 \begin_layout Plain Layout
38184
38185 \backslash
38186 square
38187 \end_layout
38188
38189 \end_inset
38190 </cell>
38191 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
38192 \begin_inset Text
38193
38194 \begin_layout Plain Layout
38195
38196 \backslash
38197 Box
38198 \end_layout
38199
38200 \end_inset
38201 </cell>
38202 </row>
38203 <row>
38204 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
38205 \begin_inset Text
38206
38207 \begin_layout Plain Layout
38208
38209 \backslash
38210 Vert
38211 \end_layout
38212
38213 \end_inset
38214 </cell>
38215 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
38216 \begin_inset Text
38217
38218 \begin_layout Plain Layout
38219
38220 \backslash
38221 |
38222 \end_layout
38223
38224 \end_inset
38225 </cell>
38226 </row>
38227 </lyxtabular>
38228
38229 \end_inset
38230
38231
38232 \begin_inset space \hfill{}
38233 \end_inset
38234
38235
38236 \end_layout
38237
38238 \begin_layout Standard
38239 \begin_inset Newpage newpage
38240 \end_inset
38241
38242
38243 \end_layout
38244
38245 \begin_layout Bibliography
38246 \begin_inset CommandInset bibitem
38247 LatexCommand bibitem
38248 key "TLC2"
38249
38250 \end_inset
38251
38252
38253 \shape smallcaps
38254 Mittelbach, F.
38255  ; Goossens, M.
38256 \shape default
38257
38258 \shape italic
38259 The LaTeX Companion
38260 \shape default
38261 .
38262  Addison Wesley, 2004
38263 \end_layout
38264
38265 \begin_layout Bibliography
38266 \begin_inset CommandInset bibitem
38267 LatexCommand bibitem
38268 key "Mathmode"
38269
38270 \end_inset
38271
38272
38273 \begin_inset CommandInset href
38274 LatexCommand href
38275 name "Beschreibung"
38276 target "ftp://ftp.dante.de/tex-archive/info/math/voss/mathmode/Mathmode.pdf"
38277
38278 \end_inset
38279
38280  der mathematischen Fähigkeiten von LaTeX
38281 \end_layout
38282
38283 \begin_layout Bibliography
38284 \begin_inset CommandInset bibitem
38285 LatexCommand bibitem
38286 key "AMS"
38287
38288 \end_inset
38289
38290
38291 \begin_inset CommandInset href
38292 LatexCommand href
38293 name "Beschreibung"
38294 target "ftp://ftp.ams.org/pub/tex/doc/amsmath/amsldoc.pdf"
38295
38296 \end_inset
38297
38298  von 
38299 \begin_inset ERT
38300 status collapsed
38301
38302 \begin_layout Plain Layout
38303
38304
38305 \backslash
38306 AmS
38307 \end_layout
38308
38309 \end_inset
38310
38311 -LaTeX
38312 \end_layout
38313
38314 \begin_layout Bibliography
38315 \begin_inset CommandInset bibitem
38316 LatexCommand bibitem
38317 key "Symbole"
38318
38319 \end_inset
38320
38321
38322 \begin_inset CommandInset href
38323 LatexCommand href
38324 name "Auflistung"
38325 target "ftp://ftp.dante.de/tex-archive/info/symbols/comprehensive/symbols-a4.pdf"
38326
38327 \end_inset
38328
38329  aller über LaTeX-Pakete verfügbare Symbole
38330 \end_layout
38331
38332 \begin_layout Bibliography
38333 \begin_inset CommandInset bibitem
38334 LatexCommand bibitem
38335 key "cancel"
38336
38337 \end_inset
38338
38339
38340 \begin_inset CommandInset href
38341 LatexCommand href
38342 name "Dokumentation"
38343 target "http://mirrors.ctan.org/macros/latex/contrib/cancel/cancel.pdf"
38344
38345 \end_inset
38346
38347  des LaTeX-Pakets 
38348 \series bold
38349 cancel
38350 \series default
38351
38352 \begin_inset Index idx
38353 status collapsed
38354
38355 \begin_layout Plain Layout
38356 Pakete ! cancel
38357 \end_layout
38358
38359 \end_inset
38360
38361
38362 \end_layout
38363
38364 \begin_layout Bibliography
38365 \begin_inset CommandInset bibitem
38366 LatexCommand bibitem
38367 key "hyperref"
38368
38369 \end_inset
38370
38371
38372 \begin_inset CommandInset href
38373 LatexCommand href
38374 name "Dokumentation"
38375 target "http://www.tug.org/applications/hyperref/ftp/doc/manual.pdf"
38376
38377 \end_inset
38378
38379  des LaTeX-Pakets 
38380 \series bold
38381 hyperref
38382 \series default
38383
38384 \begin_inset Index idx
38385 status collapsed
38386
38387 \begin_layout Plain Layout
38388 Pakete ! hyperref
38389 \end_layout
38390
38391 \end_inset
38392
38393
38394 \end_layout
38395
38396 \begin_layout Bibliography
38397 \begin_inset CommandInset bibitem
38398 LatexCommand bibitem
38399 key "mhchem"
38400
38401 \end_inset
38402
38403
38404 \begin_inset CommandInset href
38405 LatexCommand href
38406 name "Dokumentation"
38407 target "http://www.ctan.org/tex-archive/macros/latex/contrib/mhchem/mhchem.pdf"
38408
38409 \end_inset
38410
38411  des LaTeX-Pakets 
38412 \series bold
38413 mhchem
38414 \series default
38415
38416 \begin_inset Index idx
38417 status collapsed
38418
38419 \begin_layout Plain Layout
38420 Pakete ! mhchem
38421 \end_layout
38422
38423 \end_inset
38424
38425
38426 \end_layout
38427
38428 \begin_layout Bibliography
38429 \begin_inset CommandInset bibitem
38430 LatexCommand bibitem
38431 key "Mathclap"
38432
38433 \end_inset
38434
38435
38436 \begin_inset CommandInset href
38437 LatexCommand href
38438 name "Beschreibung"
38439 target "http://www.tug.org/TUGboat/Articles/tb22-4/tb72perlS.pdf"
38440
38441 \end_inset
38442
38443  des in 
38444 \begin_inset CommandInset ref
38445 LatexCommand ref
38446 reference "sub:Operatorgrenzen"
38447
38448 \end_inset
38449
38450  vorgestellten Befehls 
38451 \series bold
38452
38453 \backslash
38454 mathclap
38455 \series default
38456
38457 \begin_inset Index idx
38458 status collapsed
38459
38460 \begin_layout Plain Layout
38461 Befehle ! M ! 
38462 \backslash
38463 mathclap
38464 \end_layout
38465
38466 \end_inset
38467
38468
38469 \end_layout
38470
38471 \begin_layout Bibliography
38472 \begin_inset CommandInset bibitem
38473 LatexCommand bibitem
38474 key "Duden"
38475
38476 \end_inset
38477
38478
38479 \emph on
38480 Duden Band 1
38481 \emph default
38482 .
38483  22.
38484  Auflage, Duden Verlag 2001
38485 \end_layout
38486
38487 \begin_layout Bibliography
38488 \begin_inset CommandInset bibitem
38489 LatexCommand bibitem
38490 key "Checklist"
38491
38492 \end_inset
38493
38494
38495 \begin_inset CommandInset href
38496 LatexCommand href
38497 name "Prüfliste"
38498 target "http://physics.nist.gov/Document/checklist.pdf"
38499
38500 \end_inset
38501
38502  für das Rezensieren von Manuskripten
38503 \end_layout
38504
38505 \begin_layout Standard
38506 \begin_inset Note Note
38507 status collapsed
38508
38509 \begin_layout Plain Layout
38510 Damit der Index den Namen 
38511 \begin_inset Quotes gld
38512 \end_inset
38513
38514 Stichwortverzeichnis
38515 \begin_inset Quotes grd
38516 \end_inset
38517
38518  erhält, wurde im LaTeX-Vorspann
38519 \end_layout
38520
38521 \begin_layout Plain Layout
38522
38523 \series bold
38524
38525 \backslash
38526 addto
38527 \backslash
38528 captionsngerman{
38529 \backslash
38530 renewcommand{
38531 \backslash
38532 indexname}{Stichwortverzeichnis}}
38533 \end_layout
38534
38535 \begin_layout Plain Layout
38536 eingefügt.
38537 \end_layout
38538
38539 \begin_layout Plain Layout
38540 Das Paket 
38541 \series bold
38542 babel
38543 \series default
38544  sorgt dafür, dass die Beschriftungen in der ausgewählten Sprache erscheinen.
38545  Ehe man Beschriftungen ändern kann, muss es geladen werden.
38546  Außerdem wird 
38547 \series bold
38548 babel
38549 \series default
38550  von LyX automatisch nach dem LaTeX-Vorspann geladen.
38551  Das ruft aber keine Probleme hervor, solange im LaTeX-Vorspann die Dokumentspra
38552 che verwendet wurde.
38553 \end_layout
38554
38555 \begin_layout Plain Layout
38556 Möchte man andere Beschriftungen ändern, ersetzt man 
38557 \series bold
38558
38559 \backslash
38560 indexname
38561 \series default
38562  durch 
38563 \series bold
38564
38565 \backslash
38566 <Beschriftungs>name
38567 \series default
38568 .
38569  Eine Auflistung der möglichen Namen findet man unter
38570 \end_layout
38571
38572 \begin_layout Plain Layout
38573
38574 \family typewriter
38575 http://www.tex.ac.uk/cgi-bin/texfaq2html?label=fixnam
38576 \end_layout
38577
38578 \begin_layout Plain Layout
38579 Möchte man Beschriftungen für andere Sprachen ändern, ersetzt man 
38580 \series bold
38581 ngerman
38582 \series default
38583  durch die Dokumentsprache und
38584 \end_layout
38585
38586 \begin_layout Plain Layout
38587
38588 \series bold
38589
38590 \backslash
38591 captionsgerman
38592 \series default
38593  durch 
38594 \series bold
38595
38596 \backslash
38597 captions<Dokumentsprache>
38598 \series default
38599 .
38600 \end_layout
38601
38602 \end_inset
38603
38604
38605 \begin_inset CommandInset index_print
38606 LatexCommand printindex
38607 type "idx"
38608
38609 \end_inset
38610
38611
38612 \end_layout
38613
38614 \end_body
38615 \end_document