]> git.lyx.org Git - features.git/blob - lib/doc/de/Math.lyx
Math.lyx: improve description of modulo-functions, fixes #7961
[features.git] / lib / doc / de / Math.lyx
1 #LyX 2.0 created this file. For more info see http://www.lyx.org/
2 \lyxformat 413
3 \begin_document
4 \begin_header
5 \textclass scrartcl
6 \begin_preamble
7 % DO NOT ALTER THIS PREAMBLE!!!
8 %
9 % This preamble is designed to ensure that the file prints
10 % out as advertised. If you mess with this preamble,
11 % parts of this document may not print out as expected.  If you
12 % have problems LaTeXing this file, please contact 
13 % the documentation team
14 % email: lyx-docs@lists.lyx.org
15
16 % if pdflatex is used
17 \usepackage{ifpdf}
18 \ifpdf
19
20 % set fonts for nicer pdf view
21 \IfFileExists{lmodern.sty}
22  {\usepackage{lmodern}}{}
23
24 \fi % end if pdflatex is used
25
26 % Folgendes Problem lösen:
27 % Besteht die Kapitelnummer aus zu vielen Ziffern, wird  die
28 % Kapitelüberschrift im Inhaltsverzeichnis direkt an oder über
29 % die Kapitelnummer geschrieben.
30 % Als Lösung wird mehr Platz zwischen Nummer und
31 % Überschrift eingefügt.
32 \renewcommand{\l@subsection}{\@dottedtocline{2}{1.5em}{2.8em}}
33 \renewcommand{\l@subsubsection}{\@dottedtocline{3}{4.3em}{3.6em}}
34
35 % Damit die Zeichen ° und · in LyX direkt eingegeben werden können,
36 % siehe Kap. 22.11
37 \DeclareInputText{176}{\ifmmode^\circ\else\textdegree\fi}
38 \DeclareInputText{183}{\ifmmode\cdot\else\textperiodcentered\fi}
39
40 % Linkfläche für Querverweise vergrößern und automatisch benennen,
41 \AtBeginDocument{\renewcommand{\ref}[1]{\mbox{\autoref{#1}}}}
42 \newlength{\abc}
43 \settowidth{\abc}{\space}
44 \AtBeginDocument{%
45 \addto\extrasngerman{
46  \renewcommand{\equationautorefname}{\hspace{-\abc}}
47  \renewcommand{\sectionautorefname}{Kap.\negthinspace}
48  \renewcommand{\subsectionautorefname}{Kap.\negthinspace}
49  \renewcommand{\subsubsectionautorefname}{Kap.\negthinspace}}
50 }
51
52 % Makros damit Pakete nicht doppelt geladen werden.
53 % siehe erste Fußnote in Kap. 9.3
54 \@ifundefined{textcolor}{\usepackage{color}}{}
55
56 % Die Seiten des Inhaltsverzeichnisses werden römisch numeriert,
57 % ein PDF-Lesezeichen für das Inhaltsverzeichnis wird hinzugefügt
58 \pagenumbering{roman}
59 \let\myTOC\tableofcontents
60 \renewcommand{\tableofcontents}{%
61  \vspace{1cm}
62  \pdfbookmark[1]{\contentsname}{}
63  \myTOC
64  \cleardoublepage
65  \pagenumbering{arabic}}
66
67 % Damit die Fußnoten einen zusätzlichen vertikalen Abstand von 1,5 mm haben,
68 \let\myFoot\footnote
69 \renewcommand{\footnote}[1]{\myFoot{#1\vspace{1.5mm}}}
70
71 % provides caption formatting
72 \setkomafont{captionlabel}{\bfseries}
73
74 % benutzt in Kap. 23.6
75 \usepackage[samesize]{cancel}
76
77 % enables calculation of values
78 \usepackage{calc}
79
80 % für Mehrfachzeilen, benutzt in Kap. 23.7
81 \usepackage{multicol}
82
83 % benutzt in Kap. 19.4
84 \usepackage{remreset}
85
86 % für das Fourier-Transformationssymbol
87 \usepackage{mathrsfs}
88
89 % Farbdefinition aus Kap. 9.3
90 \definecolor{dunkelgruen}{cmyk}{0.5, 0, 1, 0.5}
91
92 % Operatoren deklarieren (siehe Kap. 10.4 und 15.2)
93 \DeclareMathOperator*{\Raute}{\blacklozenge}
94 \DeclareMathOperator{\sgn}{sgn}
95
96 \newcommand{\leer}{\textvisiblespace}
97
98 % Beispielbefehle aus Kap. 20.1 
99 \newcommand{\gr}{\Longrightarrow}
100 \newcommand{\us}[1]{\underline{#1}}
101 \newcommand{\fb}[3]{\framebox#1#2{$#3$}}
102 \newcommand{\cb}[3][white]{\fcolorbox{#2}{#1}{$#3$}}
103 \newcommand{\fracS}[3][]{\genfrac{}{}{#1}{}{#2}{#3}}
104
105 % Beispielmakro aus Kap. 19.4
106 %\def\tagform@#1{\maketag@@@{|#1|}}
107
108 % Makro aus Kap. 10.2
109 \def\clap#1{\hbox to 0pt{\hss #1\hss}}
110 \def\mathclap {\mathpalette \mathclapinternal}
111 \def\mathclapinternal #1#2{\clap{$\mathsurround =0pt #1{#2}$}}
112
113 % Damit der Index einen anderen Namen erhält.
114 \addto\captionsngerman
115 {\renewcommand{\indexname}
116 {Stichwort- und Befehlsverzeichnis}}
117
118 % ------------------------------------
119 % used to check for needed LaTeX packages
120 \usepackage{ifthen}
121
122 % testen ob das Paket eurosym installiert ist
123 % wird benutzt für das Euro-Symbol
124 \newboolean{eurosym}
125 \IfFileExists{eurosym.sty}
126  {\usepackage[gennarrow]{eurosym}
127   \setboolean{eurosym}{true}}
128  {\setboolean{eurosym}{false}}
129
130 % testen ob Paket braket installiert ist
131 % benötigt für physikalische Vektoren
132 \newboolean{braket}
133 \IfFileExists{braket.sty}
134  {\usepackage{braket}
135   \setboolean{braket}{true}}
136  {\setboolean{braket}{false}}
137
138 % testen ob Paket cancel installiert ist
139 \newboolean{cancel}
140 \IfFileExists{cancel.sty}
141  {\usepackage{cancel}
142   \setboolean{cancel}{true}}
143  {\setboolean{cancel}{false}}
144
145 % testen ob Paket upgreek installiert ist
146 \newboolean{upgreek}
147 \IfFileExists{upgreek.sty}
148  {\usepackage{upgreek}
149   \setboolean{upgreek}{true}}
150  {\setboolean{upgreek}{false}}
151
152 % benötigt für Kommas in Formeln, siehe Kap. 22.3
153 \IfFileExists{icomma.sty}
154  {\usepackage{icomma}}{}
155 \end_preamble
156 \options bibliography=totoc,index=totoc,BCOR7.5mm,titlepage,captions=tableheading
157 \use_default_options false
158 \maintain_unincluded_children false
159 \language ngerman
160 \language_package default
161 \inputencoding auto
162 \fontencoding global
163 \font_roman default
164 \font_sans default
165 \font_typewriter default
166 \font_default_family default
167 \use_non_tex_fonts false
168 \font_sc false
169 \font_osf false
170 \font_sf_scale 100
171 \font_tt_scale 100
172
173 \graphics default
174 \default_output_format default
175 \output_sync 0
176 \bibtex_command default
177 \index_command default
178 \paperfontsize 12
179 \spacing single
180 \use_hyperref true
181 \pdf_title "LyXs Mathehandbuch"
182 \pdf_author "LyX Team, Uwe Stöhr"
183 \pdf_subject "LyX-Dokumentation der Mathefunktionen"
184 \pdf_keywords "LyX, Mathed"
185 \pdf_bookmarks true
186 \pdf_bookmarksnumbered true
187 \pdf_bookmarksopen true
188 \pdf_bookmarksopenlevel 1
189 \pdf_breaklinks false
190 \pdf_pdfborder false
191 \pdf_colorlinks true
192 \pdf_backref false
193 \pdf_pdfusetitle false
194 \pdf_quoted_options "linkcolor=black, citecolor=black, urlcolor=blue, filecolor=blue, pdfpagelayout=OneColumn, pdfnewwindow=true, pdfstartview=XYZ, plainpages=false"
195 \papersize a4paper
196 \use_geometry false
197 \use_amsmath 2
198 \use_esint 1
199 \use_mhchem 1
200 \use_mathdots 1
201 \cite_engine basic
202 \use_bibtopic false
203 \use_indices false
204 \paperorientation portrait
205 \suppress_date false
206 \use_refstyle 0
207 \notefontcolor #0000ff
208 \index Stichwortverzeichnis
209 \shortcut idx
210 \color #008000
211 \end_index
212 \secnumdepth 4
213 \tocdepth 3
214 \paragraph_separation skip
215 \defskip medskip
216 \quotes_language german
217 \papercolumns 1
218 \papersides 2
219 \paperpagestyle plain
220 \bullet 1 0 6 -1
221 \bullet 2 2 35 -1
222 \bullet 3 2 7 -1
223 \tracking_changes false
224 \output_changes false
225 \html_math_output 0
226 \html_css_as_file 0
227 \html_be_strict false
228 \end_header
229
230 \begin_body
231
232 \begin_layout Title
233 LyXs detailliertes Mathe Handbuch
234 \end_layout
235
236 \begin_layout Author
237 vom LyX Team
238 \begin_inset Foot
239 status collapsed
240
241 \begin_layout Plain Layout
242 \noindent
243 Für Anmerkungen oder Korrekturen senden sie bitte eine Email an LyXs Dokumentati
244 ons-Liste: 
245 \family typewriter
246
247 \begin_inset CommandInset href
248 LatexCommand href
249 name "lyx-docs@lists.lyx.org"
250 target "lyx-docs@lists.lyx.org?subject=LyXs Mathehandbuch"
251
252 \end_inset
253
254
255 \end_layout
256
257 \end_inset
258
259
260 \begin_inset Note Note
261 status collapsed
262
263 \begin_layout Plain Layout
264 Verfasser: Uwe Stöhr
265 \end_layout
266
267 \end_inset
268
269
270 \begin_inset Newline newline
271 \end_inset
272
273
274 \begin_inset Newline newline
275 \end_inset
276
277
278 \family sans
279 Version 2.0.x
280 \end_layout
281
282 \begin_layout Standard
283 \begin_inset CommandInset toc
284 LatexCommand tableofcontents
285
286 \end_inset
287
288
289 \end_layout
290
291 \begin_layout Standard
292 \begin_inset Note Note
293 status open
294
295 \begin_layout Plain Layout
296 Um diese Datei als PDF, PS oder DVI zu exportieren, sollten die LaTeX-Pakete
297  
298 \series bold
299 braket, cancel, eurosym, mathdots, mhchem
300 \series default
301  und 
302 \series bold
303 was
304 \series default
305  installiert sein.
306  Wenn diese nicht installiert sind, kann das Dokument zwar exportiert werden,
307  die Abschnitte in denen die Pakete benötigt werden, erscheinen dann aber
308  nicht im Ausdruck.
309  Eine Ausnahme ist 
310 \series bold
311 mhchem
312 \series default
313 ; wenn es nicht installiert ist, kann dieses Dokument nicht exportiert werden.
314 \end_layout
315
316 \begin_layout Plain Layout
317 Die neueste PDF-Version dieses Dokuments ist hier zu finden:
318 \begin_inset Newline newline
319 \end_inset
320
321
322 \series bold
323 http://wiki.lyx.org/LyX/DocumentationDevelopment#Math
324 \end_layout
325
326 \end_inset
327
328
329 \end_layout
330
331 \begin_layout Standard
332 \begin_inset Newpage newpage
333 \end_inset
334
335
336 \end_layout
337
338 \begin_layout Section
339 Einleitung
340 \end_layout
341
342 \begin_layout Standard
343 Dieses Dokument ist eine Zusammenstellung und Erläuterung der wichtigsten
344  LaTeX-Befehle für mathematische Zeichen und Konstruktionen.
345  Die Erläuterungen sind speziell auf die Benutzung der Befehle mit LyX zugeschni
346 tten.
347  Das setzt voraus, dass bereits das Kapitel 
348 \family typewriter
349 Mathematische
350 \family default
351  
352 \family typewriter
353 Formeln
354 \family default
355  des Benutzerhandbuchs gelesen worden ist.
356 \end_layout
357
358 \begin_layout Standard
359 Die meisten Zeichen und viele Konstruktionen sind auch über das Menü 
360 \family sans
361 Einfügen
362 \series bold
363 \SpecialChar \menuseparator
364
365 \series default
366 Mathe
367 \family default
368  oder die 
369 \family sans
370 Mathe-Werkzeugleiste
371 \family default
372  aufrufbar.
373  Wer viele Formeln zu schreiben hat, wird jedoch feststellen, dass man mit
374  den LaTeX-Befehlen viel schneller eine Formel setzen kann.
375  Daher wird in diesem Handbuch der Fokus auf Befehle gesetzt wobei entsprechende
376  Werkzeugleistenknöpfe, falls vorhanden, erwähnt werden.
377 \end_layout
378
379 \begin_layout Standard
380 Sofern nicht anders angegeben, sind Befehle nur in der Formel-Umgebung von
381  LyX verfügbar.
382  Um alle Befehle nutzen zu können, muss die Option 
383 \family sans
384 AMS-Mathe-Paket verwenden
385 \family default
386  im Menü 
387 \family sans
388 Dokument\SpecialChar \menuseparator
389 Einstellungen\SpecialChar \menuseparator
390 Mathe Optionen
391 \family default
392  aktiviert sein.
393 \begin_inset Foot
394 status collapsed
395
396 \begin_layout Plain Layout
397 Die 
398 \family sans
399 Option
400 \family default
401  
402 \family sans
403 AMS-Mathe-Paket automatisch verwenden
404 \family default
405  verwendet 
406 \begin_inset ERT
407 status collapsed
408
409 \begin_layout Plain Layout
410
411
412 \backslash
413 AmS 
414 \end_layout
415
416 \end_inset
417
418 -Mathe nur wenn im Dokument mathematische Konstrukte gefunden wurden die
419  LyX unterstützt.
420 \end_layout
421
422 \end_inset
423
424
425 \end_layout
426
427 \begin_layout Standard
428 Es wird in diesem Dokument der Übersichtlichkeit halber auf die Auf\SpecialChar \textcompwordmark{}
429 listung
430  aller 
431 \begin_inset ERT
432 status collapsed
433
434 \begin_layout Plain Layout
435
436
437 \backslash
438 AmS 
439 \end_layout
440
441 \end_inset
442
443 -Mathe Befehle
444 \begin_inset Foot
445 status collapsed
446
447 \begin_layout Plain Layout
448 Eine Liste mit allen 
449 \begin_inset ERT
450 status collapsed
451
452 \begin_layout Plain Layout
453
454
455 \backslash
456 AmS
457 \end_layout
458
459 \end_inset
460
461 -Mathe Befehlen findet sich in der Datei 
462 \family sans
463
464 \begin_inset CommandInset href
465 LatexCommand href
466 name "amsguide.ps"
467 target "ftp://ctan.tug.org/tex-archive/macros/amstex/doc/amsguide.ps"
468
469 \end_inset
470
471
472 \family default
473 , die Teil jeder LaTeX-Standardinstallation ist.
474 \end_layout
475
476 \end_inset
477
478  verzichtet.
479 \end_layout
480
481 \begin_layout Section
482 Allgemeine Hinweise
483 \end_layout
484
485 \begin_layout Standard
486 Um eine in einer Textzeile eingebettete Formel
487 \begin_inset Index idx
488 status collapsed
489
490 \begin_layout Plain Layout
491 Formel ! eingebettete
492 \end_layout
493
494 \end_inset
495
496  zu erstellen, drückt man 
497 \family sans
498 Strg+M
499 \family default
500  oder den Werkzeugleistenknopf 
501 \begin_inset Graphics
502         filename ../../images/math-mode.png
503         scale 85
504
505 \end_inset
506
507 .
508 \begin_inset Newline newline
509 \end_inset
510
511 Um eine abgesetzte Formel
512 \begin_inset Index idx
513 status collapsed
514
515 \begin_layout Plain Layout
516 Formel ! abgesetzte
517 \end_layout
518
519 \end_inset
520
521  zu erstellen, drückt man 
522 \family sans
523 Strg+Shift+M
524 \family default
525 .
526 \end_layout
527
528 \begin_layout Standard
529 Um eine abgesetzte Formel in eine eingebettete umzuwandeln, setzt man den
530  Cursor in die Formel und drückt 
531 \family sans
532 Strg+Shift+M
533 \family default
534  oder benutzt das Menü 
535 \family sans
536 Bearbeiten\SpecialChar \menuseparator
537 Mathe\SpecialChar \menuseparator
538
539 \begin_inset Newline linebreak
540 \end_inset
541
542 Formelart ändern
543 \family default
544 .
545  Auf die selbe Weise lässt sich eine eingebettete in eine abgesetzte Formel
546  umwandeln.
547 \end_layout
548
549 \begin_layout Standard
550 Um Teile einer eingebetteten Formel in der Größe einer abgesetzten darzustellen,
551  gibt man in die Formel den Befehl 
552 \series bold
553
554 \backslash
555 displaystyle
556 \series default
557
558 \begin_inset Index idx
559 status collapsed
560
561 \begin_layout Plain Layout
562 Befehle ! D ! 
563 \backslash
564 displaystyle
565 \end_layout
566
567 \end_inset
568
569  ein.
570  Es erscheint ein neues blaues Kästchen, in das dann der Formelteil eingegeben
571  wird.
572 \end_layout
573
574 \begin_layout Standard
575 In einer Tabelle dürfen nur eingebettete Formeln verwendet werden.
576 \end_layout
577
578 \begin_layout Standard
579 Die 
580 \family sans
581 Mathe-Werkzeugleiste
582 \family default
583  kann über das Menü 
584 \family sans
585 Ansicht\SpecialChar \menuseparator
586 Werkzeugleisten
587 \family default
588  eingeblendet werden.
589  Wenn dort auf 
590 \begin_inset Quotes eld
591 \end_inset
592
593 Mathe
594 \begin_inset Quotes erd
595 \end_inset
596
597  geklickt wird, wird die Werkzeugleiste permanent am unteren Rand eingeblendet;
598  diese Einstellung wird durch ein Häkchen im Menü 
599 \family sans
600 Werkzeugleisten
601 \family default
602  angezeigt.
603  Wenn nun im Menü 
604 \family sans
605 Werkzeugleisten
606 \family default
607  nochmal auf 
608 \begin_inset Quotes eld
609 \end_inset
610
611 Mathe
612 \begin_inset Quotes erd
613 \end_inset
614
615  geklickt wird, wird die Werkzeugleiste nur angezeigt, wenn sich der Cursor
616  in einer Formel befindet; diese Einstellung wird durch die Umbenennung
617  des Menüeintrags von 
618 \begin_inset Quotes eld
619 \end_inset
620
621 Mathe
622 \begin_inset Quotes erd
623 \end_inset
624
625  zu 
626 \begin_inset Quotes eld
627 \end_inset
628
629 Mathe
630 \begin_inset space ~
631 \end_inset
632
633 (automatisch)
634 \begin_inset Quotes erd
635 \end_inset
636
637  angezeigt.
638 \end_layout
639
640 \begin_layout Standard
641 In den TeX-Modus
642 \begin_inset Index idx
643 status collapsed
644
645 \begin_layout Plain Layout
646 T@TeX-Modus
647 \end_layout
648
649 \end_inset
650
651  gelangt man über den Werkzeugleistenknopf 
652 \begin_inset Graphics
653         filename ../../images/ert-insert.png
654         scale 85
655
656 \end_inset
657
658  oder das Menü 
659 \family sans
660 Einfügen\SpecialChar \menuseparator
661 Te
662 \begin_inset ERT
663 status collapsed
664
665 \begin_layout Plain Layout
666
667 {}
668 \end_layout
669
670 \end_inset
671
672 X
673 \begin_inset space ~
674 \end_inset
675
676 Code
677 \family default
678  (Tastenkürzel 
679 \family sans
680 Strg+L
681 \family default
682 ).
683 \begin_inset Note Note
684 status collapsed
685
686 \begin_layout Plain Layout
687 In LyX gibt es drei 
688 \begin_inset Quotes gld
689 \end_inset
690
691 Eigennamen
692 \begin_inset Quotes grd
693 \end_inset
694
695 , die im Ausdruck mit hoch bzw.
696  tief gestellten Großbuchstaben erscheinen: TeX, LaTeX und LyX
697 \end_layout
698
699 \begin_layout Plain Layout
700 Um zu verhindern, dass diese Wörter als Eigennamen erkannt werden, fügt
701  man ein TeX-Klammerpaar ein.
702 \end_layout
703
704 \end_inset
705
706
707 \end_layout
708
709 \begin_layout Standard
710 In den LaTeX-Vorspann
711 \begin_inset Index idx
712 status collapsed
713
714 \begin_layout Plain Layout
715 L@LaTeX-Vorspann
716 \end_layout
717
718 \end_inset
719
720  gelangt man über das Menü 
721 \family sans
722 Dokument\SpecialChar \menuseparator
723 Einstellungen\SpecialChar \menuseparator
724 LaT
725 \begin_inset ERT
726 status collapsed
727
728 \begin_layout Plain Layout
729
730 {}
731 \end_layout
732
733 \end_inset
734
735 eX-Vorspann
736 \family default
737 .
738 \end_layout
739
740 \begin_layout Standard
741 Zur nachträglichen Bearbeitung von Matrizen, Fallunterscheidungen und mehrzeilig
742 en Formeln kann man die Menüs 
743 \family sans
744 Bearbeiten\SpecialChar \menuseparator
745 Mathe
746 \family default
747  und 
748 \family sans
749 Bearbeiten\SpecialChar \menuseparator
750 Zeilen
751 \begin_inset space \thinspace{}
752 \end_inset
753
754 &
755 \begin_inset space \thinspace{}
756 \end_inset
757
758 Spalten
759 \family default
760  oder die 
761 \family sans
762 Tabellen-Werkzeugleiste
763 \family default
764  verwenden.
765  Beim Vertauschen von Zeilen und Spalten mit Hilfe dieses Menüs wird immer
766  die Spalte bzw.
767  Zeile, in der der Cursor steht, mit der rechts daneben stehenden Spalte
768  bzw.
769  darunter liegenden Zeile vertauscht.
770  Befindet sich der Cursor in der letzten Spalte bzw.
771  Zeile, wird mit der links daneben stehenden Spalte bzw.
772  darüber liegenden Zeile vertauscht.
773 \end_layout
774
775 \begin_layout Standard
776 Zum Schreiben von Text in einer Formel
777 \begin_inset Foot
778 status collapsed
779
780 \begin_layout Plain Layout
781 Bei mehrzeiligen Formeln wird der Befehl 
782 \series bold
783
784 \backslash
785 intertext
786 \series default
787  verwendet, siehe 
788 \begin_inset CommandInset ref
789 LatexCommand ref
790 reference "sub:Text-in-mehrzeiligen"
791
792 \end_inset
793
794 .
795 \end_layout
796
797 \end_inset
798
799  verwendet man den 
800 \emph on
801 mathematischen Textmodus
802 \emph default
803
804 \begin_inset Index idx
805 status collapsed
806
807 \begin_layout Plain Layout
808 Text ! in Formeln
809 \end_layout
810
811 \end_inset
812
813
814 \begin_inset Index idx
815 status collapsed
816
817 \begin_layout Plain Layout
818 Mathematischer Textmodus
819 \end_layout
820
821 \end_inset
822
823 , in den man mit dem Tastenkürzel 
824 \family sans
825 Alt+M
826 \begin_inset space ~
827 \end_inset
828
829 M
830 \family default
831  oder durch Eingabe des Befehls 
832 \series bold
833
834 \backslash
835 text
836 \begin_inset Index idx
837 status collapsed
838
839 \begin_layout Plain Layout
840 Befehle ! T ! 
841 \backslash
842 text
843 \end_layout
844
845 \end_inset
846
847
848 \series default
849  gelangt.
850  Der Text erscheint in LyX schwarz und lässt sich dadurch gut vom Rest der
851  Formel unterscheiden.
852  Im fertigen Dokument erscheint mathematischer Text im Gegensatz zu allen
853  anderen Zeichen einer Formel nicht kursiv.
854 \end_layout
855
856 \begin_layout Subsection*
857 Befehlsschema
858 \end_layout
859
860 \begin_layout Standard
861 Die meisten LaTeX-Befehle für mathematische Konstruktionen besitzen folgendes
862  Schema:
863 \end_layout
864
865 \begin_layout Standard
866
867 \series bold
868
869 \backslash
870 Befehlsname[optionales
871 \series default
872  
873 \series bold
874 Argument]{anzugebendes
875 \series default
876  
877 \series bold
878 Argument}
879 \end_layout
880
881 \begin_layout Standard
882 Ein Befehl muss immer mit einem Backslash 
883 \begin_inset Quotes gld
884 \end_inset
885
886
887 \series bold
888
889 \backslash
890
891 \series default
892
893 \begin_inset Quotes grd
894 \end_inset
895
896  beginnen.
897  Möchte man ein optionales Argument nicht angeben, müssen auch die zugehörigen
898  eckigen Klammern weggelassen werden.
899  Die geschweiften Klammern werden in diesem Dokument als TeX-Klammern
900 \begin_inset Index idx
901 status collapsed
902
903 \begin_layout Plain Layout
904 T@TeX-Klammern
905 \end_layout
906
907 \end_inset
908
909  bezeichnet.
910  Hängt man in einer Formel an Befehlsnamen eine linke geschweifte Klammer
911  an, erzeugt LyX automatisch eine TeX-Klammer.
912  Ansonsten werden sie in Formeln mit dem Befehl 
913 \series bold
914
915 \backslash
916 {
917 \series default
918  erzeugt.
919  TeX-Klammern erscheinen in LyX rot, im Gegensatz zu normalen geschweiften
920  Klammern, die blau erscheinen.
921  Im TeX-Modus sind für TeX-Klammern keine Befehle notwendig.
922  TeX-Klammern erscheinen nicht im Ausdruck.
923 \end_layout
924
925 \begin_layout Standard
926 Werden Befehle ohne Argumente, wie z.
927 \begin_inset space \thinspace{}
928 \end_inset
929
930 B.
931  Symbolbefehle, im TeX-Modus eingegeben, muss auf den Befehl 
932 \emph on
933 immer
934 \emph default
935  ein Leerzeichen folgen um ihn zu beenden.
936  Dieses Leerzeichen erscheint nicht im Ausdruck.
937  Soll das Leerzeichen auch im Ausdruck erscheinen, muss auf den Befehl im
938  normalen Text ein geschütztes Leerzeichen folgen.
939 \end_layout
940
941 \begin_layout Standard
942 Ein geschütztes Leerzeichen gibt man mit 
943 \family sans
944 Strg+Leertaste
945 \family default
946  ein.
947 \end_layout
948
949 \begin_layout Subsection*
950 Zeichenerklärung
951 \end_layout
952
953 \begin_layout Itemize
954 Das Symbol
955 \begin_inset Foot
956 status collapsed
957
958 \begin_layout Plain Layout
959 Dieses sichtbare Leerzeichen erhält man über den Befehl 
960 \series bold
961
962 \backslash
963 textvisiblespace
964 \series default
965
966 \begin_inset Index idx
967 status collapsed
968
969 \begin_layout Plain Layout
970 Befehle ! T ! 
971 \backslash
972 textvisiblespace
973 \end_layout
974
975 \end_inset
976
977 , der im TeX-Modus einzugeben ist.
978 \end_layout
979
980 \end_inset
981
982  
983 \begin_inset ERT
984 status collapsed
985
986 \begin_layout Plain Layout
987
988
989 \backslash
990 leer 
991 \end_layout
992
993 \end_inset
994
995
996 \begin_inset space ~
997 \end_inset
998
999 steht für ein einzugebendes Leerzeichen.
1000 \end_layout
1001
1002 \begin_layout Itemize
1003 Ein Pfeil wie z.
1004 \begin_inset space \thinspace{}
1005 \end_inset
1006
1007 B.
1008  
1009 \begin_inset Formula $\to$
1010 \end_inset
1011
1012  steht für den Druck der jeweiligen Pfeiltaste auf der Tastatur.
1013 \end_layout
1014
1015 \begin_layout Subsection*
1016 Verfügbare Einheiten
1017 \end_layout
1018
1019 \begin_layout Standard
1020 \align center
1021 \begin_inset Float table
1022 placement H
1023 wide false
1024 sideways false
1025 status open
1026
1027 \begin_layout Plain Layout
1028 \align center
1029 \begin_inset Caption
1030
1031 \begin_layout Plain Layout
1032 \begin_inset CommandInset label
1033 LatexCommand label
1034 name "tab:Verfügbare-Einheiten"
1035
1036 \end_inset
1037
1038 Verfügbare Einheiten
1039 \end_layout
1040
1041 \end_inset
1042
1043
1044 \end_layout
1045
1046 \begin_layout Plain Layout
1047 \align center
1048 \begin_inset Tabular
1049 <lyxtabular version="3" rows="13" columns="2">
1050 <features tabularvalignment="middle">
1051 <column alignment="center" valignment="top" width="0">
1052 <column alignment="center" valignment="top" width="0">
1053 <row>
1054 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1055 \begin_inset Text
1056
1057 \begin_layout Plain Layout
1058 Einheit
1059 \end_layout
1060
1061 \end_inset
1062 </cell>
1063 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
1064 \begin_inset Text
1065
1066 \begin_layout Plain Layout
1067 Name / Beschreibung
1068 \end_layout
1069
1070 \end_inset
1071 </cell>
1072 </row>
1073 <row>
1074 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1075 \begin_inset Text
1076
1077 \begin_layout Plain Layout
1078 mm
1079 \end_layout
1080
1081 \end_inset
1082 </cell>
1083 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1084 \begin_inset Text
1085
1086 \begin_layout Plain Layout
1087 Millimeter
1088 \end_layout
1089
1090 \end_inset
1091 </cell>
1092 </row>
1093 <row>
1094 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1095 \begin_inset Text
1096
1097 \begin_layout Plain Layout
1098 cm
1099 \end_layout
1100
1101 \end_inset
1102 </cell>
1103 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1104 \begin_inset Text
1105
1106 \begin_layout Plain Layout
1107 Zentimeter
1108 \end_layout
1109
1110 \end_inset
1111 </cell>
1112 </row>
1113 <row>
1114 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1115 \begin_inset Text
1116
1117 \begin_layout Plain Layout
1118 in
1119 \end_layout
1120
1121 \end_inset
1122 </cell>
1123 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1124 \begin_inset Text
1125
1126 \begin_layout Plain Layout
1127 Inch / Zoll (1
1128 \begin_inset space \thinspace{}
1129 \end_inset
1130
1131 in = 2,54
1132 \begin_inset space \thinspace{}
1133 \end_inset
1134
1135 cm)
1136 \end_layout
1137
1138 \end_inset
1139 </cell>
1140 </row>
1141 <row>
1142 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1143 \begin_inset Text
1144
1145 \begin_layout Plain Layout
1146 pt
1147 \end_layout
1148
1149 \end_inset
1150 </cell>
1151 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1152 \begin_inset Text
1153
1154 \begin_layout Plain Layout
1155 Punkt (72,27
1156 \begin_inset space \thinspace{}
1157 \end_inset
1158
1159 pt = 1
1160 \begin_inset space \thinspace{}
1161 \end_inset
1162
1163 in)
1164 \end_layout
1165
1166 \end_inset
1167 </cell>
1168 </row>
1169 <row>
1170 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1171 \begin_inset Text
1172
1173 \begin_layout Plain Layout
1174 pc
1175 \end_layout
1176
1177 \end_inset
1178 </cell>
1179 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1180 \begin_inset Text
1181
1182 \begin_layout Plain Layout
1183 Pica (1
1184 \begin_inset space \thinspace{}
1185 \end_inset
1186
1187 pc = 12
1188 \begin_inset space \thinspace{}
1189 \end_inset
1190
1191 pt)
1192 \end_layout
1193
1194 \end_inset
1195 </cell>
1196 </row>
1197 <row>
1198 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1199 \begin_inset Text
1200
1201 \begin_layout Plain Layout
1202 sp
1203 \end_layout
1204
1205 \end_inset
1206 </cell>
1207 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1208 \begin_inset Text
1209
1210 \begin_layout Plain Layout
1211 scaled point (65536
1212 \begin_inset space \thinspace{}
1213 \end_inset
1214
1215 sp = 1
1216 \begin_inset space \thinspace{}
1217 \end_inset
1218
1219 pt)
1220 \end_layout
1221
1222 \end_inset
1223 </cell>
1224 </row>
1225 <row>
1226 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1227 \begin_inset Text
1228
1229 \begin_layout Plain Layout
1230 bp
1231 \end_layout
1232
1233 \end_inset
1234 </cell>
1235 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1236 \begin_inset Text
1237
1238 \begin_layout Plain Layout
1239 big point (72
1240 \begin_inset space \thinspace{}
1241 \end_inset
1242
1243 bp = 1
1244 \begin_inset space \thinspace{}
1245 \end_inset
1246
1247 in)
1248 \end_layout
1249
1250 \end_inset
1251 </cell>
1252 </row>
1253 <row>
1254 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1255 \begin_inset Text
1256
1257 \begin_layout Plain Layout
1258 dd
1259 \end_layout
1260
1261 \end_inset
1262 </cell>
1263 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1264 \begin_inset Text
1265
1266 \begin_layout Plain Layout
1267 Didot (1
1268 \begin_inset space \thinspace{}
1269 \end_inset
1270
1271 dd 
1272 \begin_inset Formula $\approx$
1273 \end_inset
1274
1275  0,376
1276 \begin_inset space \thinspace{}
1277 \end_inset
1278
1279 mm)
1280 \end_layout
1281
1282 \end_inset
1283 </cell>
1284 </row>
1285 <row>
1286 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1287 \begin_inset Text
1288
1289 \begin_layout Plain Layout
1290 cc
1291 \end_layout
1292
1293 \end_inset
1294 </cell>
1295 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1296 \begin_inset Text
1297
1298 \begin_layout Plain Layout
1299 Cicero (1
1300 \begin_inset space \thinspace{}
1301 \end_inset
1302
1303 cc = 12
1304 \begin_inset space \thinspace{}
1305 \end_inset
1306
1307 dd)
1308 \end_layout
1309
1310 \end_inset
1311 </cell>
1312 </row>
1313 <row>
1314 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1315 \begin_inset Text
1316
1317 \begin_layout Plain Layout
1318 ex
1319 \end_layout
1320
1321 \end_inset
1322 </cell>
1323 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1324 \begin_inset Text
1325
1326 \begin_layout Plain Layout
1327 Höhe des Buchstabens 
1328 \emph on
1329 x
1330 \emph default
1331  in der aktuellen Schrift
1332 \end_layout
1333
1334 \end_inset
1335 </cell>
1336 </row>
1337 <row>
1338 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1339 \begin_inset Text
1340
1341 \begin_layout Plain Layout
1342 em
1343 \end_layout
1344
1345 \end_inset
1346 </cell>
1347 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1348 \begin_inset Text
1349
1350 \begin_layout Plain Layout
1351 Breite des Buchstabens 
1352 \emph on
1353 M
1354 \emph default
1355  in der aktuellen Schrift
1356 \end_layout
1357
1358 \end_inset
1359 </cell>
1360 </row>
1361 <row>
1362 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1363 \begin_inset Text
1364
1365 \begin_layout Plain Layout
1366 mu
1367 \end_layout
1368
1369 \end_inset
1370 </cell>
1371 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
1372 \begin_inset Text
1373
1374 \begin_layout Plain Layout
1375 math unit (1
1376 \begin_inset space \thinspace{}
1377 \end_inset
1378
1379 mu = 
1380 \begin_inset Formula $\nicefrac{1}{18}$
1381 \end_inset
1382
1383
1384 \begin_inset space \thinspace{}
1385 \end_inset
1386
1387 em)
1388 \end_layout
1389
1390 \end_inset
1391 </cell>
1392 </row>
1393 </lyxtabular>
1394
1395 \end_inset
1396
1397
1398 \end_layout
1399
1400 \end_inset
1401
1402
1403 \end_layout
1404
1405 \begin_layout Standard
1406 \begin_inset Newpage newpage
1407 \end_inset
1408
1409
1410 \end_layout
1411
1412 \begin_layout Section
1413 Grundlegende Funktionen
1414 \end_layout
1415
1416 \begin_layout Subsection
1417 Exponenten
1418 \begin_inset Index idx
1419 status collapsed
1420
1421 \begin_layout Plain Layout
1422 Exponenten
1423 \end_layout
1424
1425 \end_inset
1426
1427  und Indizes
1428 \begin_inset Index idx
1429 status collapsed
1430
1431 \begin_layout Plain Layout
1432 Indizes
1433 \end_layout
1434
1435 \end_inset
1436
1437
1438 \begin_inset Index idx
1439 status collapsed
1440
1441 \begin_layout Plain Layout
1442 Hochstellen|see
1443 \begin_inset ERT
1444 status collapsed
1445
1446 \begin_layout Plain Layout
1447
1448 {
1449 \end_layout
1450
1451 \end_inset
1452
1453 Exponenten
1454 \begin_inset ERT
1455 status collapsed
1456
1457 \begin_layout Plain Layout
1458
1459 }
1460 \end_layout
1461
1462 \end_inset
1463
1464
1465 \end_layout
1466
1467 \end_inset
1468
1469
1470 \begin_inset Index idx
1471 status collapsed
1472
1473 \begin_layout Plain Layout
1474 Tiefstellen|see
1475 \begin_inset ERT
1476 status collapsed
1477
1478 \begin_layout Plain Layout
1479
1480 {
1481 \end_layout
1482
1483 \end_inset
1484
1485 Indizes
1486 \begin_inset ERT
1487 status collapsed
1488
1489 \begin_layout Plain Layout
1490
1491 }
1492 \end_layout
1493
1494 \end_inset
1495
1496
1497 \end_layout
1498
1499 \end_inset
1500
1501
1502 \end_layout
1503
1504 \begin_layout Standard
1505 Indizes werden mit dem Unterstrich _ oder mit dem Mathe-Werkzeugleistenknopf
1506  
1507 \begin_inset Graphics
1508         filename ../../images/math-subscript.png
1509         scale 85
1510
1511 \end_inset
1512
1513 , Exponenten mit dem Zirkumflexzeichen ^ oder mit dem Mathe-Werkzeugleistenknopf
1514  
1515 \begin_inset Graphics
1516         filename ../../images/math-superscript.png
1517         scale 85
1518
1519 \end_inset
1520
1521  erzeugt.
1522 \end_layout
1523
1524 \begin_layout Standard
1525 \align center
1526 \begin_inset Tabular
1527 <lyxtabular version="3" rows="4" columns="2">
1528 <features tabularvalignment="middle">
1529 <column alignment="center" valignment="top" width="0pt">
1530 <column alignment="center" valignment="top" width="0pt">
1531 <row>
1532 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1533 \begin_inset Text
1534
1535 \begin_layout Plain Layout
1536 Befehl
1537 \end_layout
1538
1539 \end_inset
1540 </cell>
1541 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
1542 \begin_inset Text
1543
1544 \begin_layout Plain Layout
1545 Ergebnis
1546 \begin_inset Note Note
1547 status collapsed
1548
1549 \begin_layout Plain Layout
1550
1551 \series bold
1552
1553 \backslash
1554 raisebox
1555 \series default
1556  dient nur als Abstandhalter.
1557 \end_layout
1558
1559 \end_inset
1560
1561
1562 \end_layout
1563
1564 \end_inset
1565 </cell>
1566 </row>
1567 <row>
1568 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1569 \begin_inset Text
1570
1571 \begin_layout Plain Layout
1572 B_V
1573 \end_layout
1574
1575 \end_inset
1576 </cell>
1577 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1578 \begin_inset Text
1579
1580 \begin_layout Plain Layout
1581 \begin_inset Formula $B_{V}$
1582 \end_inset
1583
1584
1585 \end_layout
1586
1587 \end_inset
1588 </cell>
1589 </row>
1590 <row>
1591 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1592 \begin_inset Text
1593
1594 \begin_layout Plain Layout
1595 B^V
1596 \end_layout
1597
1598 \end_inset
1599 </cell>
1600 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
1601 \begin_inset Text
1602
1603 \begin_layout Plain Layout
1604 \begin_inset Formula $\raisebox{5mm}{}B^{V}$
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" bottomline="true" leftline="true" usebox="none">
1615 \begin_inset Text
1616
1617 \begin_layout Plain Layout
1618 B^
1619 \begin_inset ERT
1620 status collapsed
1621
1622 \begin_layout Plain Layout
1623
1624
1625 \backslash
1626 leer 
1627 \end_layout
1628
1629 \end_inset
1630
1631 A
1632 \end_layout
1633
1634 \end_inset
1635 </cell>
1636 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
1637 \begin_inset Text
1638
1639 \begin_layout Plain Layout
1640 \begin_inset Formula $\raisebox{5mm}{}B^{A}$
1641 \end_inset
1642
1643
1644 \end_layout
1645
1646 \end_inset
1647 </cell>
1648 </row>
1649 </lyxtabular>
1650
1651 \end_inset
1652
1653
1654 \end_layout
1655
1656 \begin_layout Standard
1657 Da der Zirkumflex ein Akzent ist, werden Selbstlaute akzentuiert statt hochgeste
1658 llt
1659 \begin_inset Foot
1660 status collapsed
1661
1662 \begin_layout Plain Layout
1663 Je nach Tastatureinstellung werden auch andere Buchstaben akzentuiert.
1664 \end_layout
1665
1666 \end_inset
1667
1668 .
1669  Um in diesem Fall Exponenten zu erzeugen, muss nach dem Zirkumflex ein
1670  Leerzeichen eingegeben werden, siehe letztes Beispiel.
1671 \end_layout
1672
1673 \begin_layout Subsection
1674 Brüche
1675 \begin_inset CommandInset label
1676 LatexCommand label
1677 name "sub:Brüche"
1678
1679 \end_inset
1680
1681
1682 \begin_inset Index idx
1683 status collapsed
1684
1685 \begin_layout Plain Layout
1686 Brüche
1687 \end_layout
1688
1689 \end_inset
1690
1691
1692 \end_layout
1693
1694 \begin_layout Standard
1695 Brüche werden mit dem Befehl 
1696 \series bold
1697
1698 \backslash
1699 frac
1700 \series default
1701
1702 \begin_inset Index idx
1703 status collapsed
1704
1705 \begin_layout Plain Layout
1706 Befehle ! F ! 
1707 \backslash
1708 frac
1709 \end_layout
1710
1711 \end_inset
1712
1713  oder mit dem Mathe-Werkzeugleistenknopf 
1714 \begin_inset Graphics
1715         filename ../../images/math/frac.png
1716         scale 50
1717
1718 \end_inset
1719
1720  erstellt.
1721  Die Zeichengröße wird automatisch angepasst, je nachdem, ob sich der Bruch
1722  in einer eingebetteten oder abgesetzten Formel befindet.
1723  Mit dem Mathe-Werkzeugleistenknopf 
1724 \begin_inset Graphics
1725         filename ../../images/math/frac-square.png
1726         scale 85
1727
1728 \end_inset
1729
1730  können verschieden Bruchtypen gewählt werden.
1731 \end_layout
1732
1733 \begin_layout Standard
1734 Mit dem Befehl 
1735 \series bold
1736
1737 \backslash
1738 dfrac
1739 \series default
1740
1741 \begin_inset Index idx
1742 status collapsed
1743
1744 \begin_layout Plain Layout
1745 Befehle ! D ! 
1746 \backslash
1747 dfrac
1748 \end_layout
1749
1750 \end_inset
1751
1752  kann man einen Bruch erzeugen, der immer in der Größe einer abgesetzten
1753  Formel erscheint.
1754  Mit 
1755 \series bold
1756
1757 \backslash
1758 tfrac
1759 \series default
1760
1761 \begin_inset Index idx
1762 status collapsed
1763
1764 \begin_layout Plain Layout
1765 Befehle ! T ! 
1766 \backslash
1767 tfrac
1768 \end_layout
1769
1770 \end_inset
1771
1772  erscheint der Bruch immer in der Größe einer eingebetteten Formel.
1773  Ein Beispiel:
1774 \end_layout
1775
1776 \begin_layout Standard
1777 Eine Zeile mit dem Bruch 
1778 \begin_inset Formula $\frac{1}{2}$
1779 \end_inset
1780
1781 , der mit dem Befehl 
1782 \series bold
1783
1784 \backslash
1785 frac
1786 \series default
1787  erstellt wurde.
1788 \end_layout
1789
1790 \begin_layout Standard
1791 Eine Zeile mit dem Bruch 
1792 \begin_inset Formula $\dfrac{1}{2}$
1793 \end_inset
1794
1795 , der mit dem Befehl 
1796 \series bold
1797
1798 \backslash
1799 dfrac
1800 \series default
1801  erstellt wurde.
1802 \end_layout
1803
1804 \begin_layout Standard
1805 \align center
1806 \begin_inset Tabular
1807 <lyxtabular version="3" rows="4" columns="2">
1808 <features tabularvalignment="middle">
1809 <column alignment="center" valignment="top" width="0pt">
1810 <column alignment="center" valignment="top" width="0pt">
1811 <row>
1812 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1813 \begin_inset Text
1814
1815 \begin_layout Plain Layout
1816 Befehl
1817 \end_layout
1818
1819 \end_inset
1820 </cell>
1821 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
1822 \begin_inset Text
1823
1824 \begin_layout Plain Layout
1825 Ergebnis
1826 \begin_inset Note Note
1827 status collapsed
1828
1829 \begin_layout Plain Layout
1830
1831 \series bold
1832
1833 \backslash
1834 raisebox
1835 \series default
1836  dient nur als Abstandhalter.
1837 \end_layout
1838
1839 \end_inset
1840
1841
1842 \end_layout
1843
1844 \end_inset
1845 </cell>
1846 </row>
1847 <row>
1848 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1849 \begin_inset Text
1850
1851 \begin_layout Plain Layout
1852
1853 \backslash
1854 frac
1855 \begin_inset ERT
1856 status collapsed
1857
1858 \begin_layout Plain Layout
1859
1860
1861 \backslash
1862 leer 
1863 \end_layout
1864
1865 \end_inset
1866
1867 A
1868 \begin_inset Formula $\downarrow$
1869 \end_inset
1870
1871 B
1872 \end_layout
1873
1874 \end_inset
1875 </cell>
1876 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1877 \begin_inset Text
1878
1879 \begin_layout Plain Layout
1880 \begin_inset Formula $\raisebox{4.5mm}{}\frac{A}{B}\raisebox{-2.5mm}{}$
1881 \end_inset
1882
1883
1884 \end_layout
1885
1886 \end_inset
1887 </cell>
1888 </row>
1889 <row>
1890 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1891 \begin_inset Text
1892
1893 \begin_layout Plain Layout
1894
1895 \backslash
1896 dfrac
1897 \begin_inset ERT
1898 status collapsed
1899
1900 \begin_layout Plain Layout
1901
1902
1903 \backslash
1904 leer 
1905 \end_layout
1906
1907 \end_inset
1908
1909 A
1910 \begin_inset Formula $\downarrow$
1911 \end_inset
1912
1913 B
1914 \end_layout
1915
1916 \end_inset
1917 </cell>
1918 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1919 \begin_inset Text
1920
1921 \begin_layout Plain Layout
1922 \begin_inset Formula $\raisebox{7mm}{}\dfrac{A}{B}\raisebox{-4mm}{}$
1923 \end_inset
1924
1925
1926 \end_layout
1927
1928 \end_inset
1929 </cell>
1930 </row>
1931 <row>
1932 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
1933 \begin_inset Text
1934
1935 \begin_layout Plain Layout
1936
1937 \backslash
1938 dfrac
1939 \begin_inset ERT
1940 status collapsed
1941
1942 \begin_layout Plain Layout
1943
1944
1945 \backslash
1946 leer 
1947 \end_layout
1948
1949 \end_inset
1950
1951 e^
1952 \begin_inset ERT
1953 status collapsed
1954
1955 \begin_layout Plain Layout
1956
1957
1958 \backslash
1959 leer 
1960 \end_layout
1961
1962 \end_inset
1963
1964
1965 \backslash
1966 frac
1967 \begin_inset ERT
1968 status collapsed
1969
1970 \begin_layout Plain Layout
1971
1972
1973 \backslash
1974 leer 
1975 \end_layout
1976
1977 \end_inset
1978
1979 1
1980 \begin_inset Formula $\downarrow$
1981 \end_inset
1982
1983 2
1984 \begin_inset Formula $\downarrow\downarrow$
1985 \end_inset
1986
1987 3
1988 \end_layout
1989
1990 \end_inset
1991 </cell>
1992 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
1993 \begin_inset Text
1994
1995 \begin_layout Plain Layout
1996 \begin_inset Formula $\raisebox{8mm}{}\dfrac{e^{\frac{1}{2}}}{3}\raisebox{-4mm}{}$
1997 \end_inset
1998
1999
2000 \end_layout
2001
2002 \end_inset
2003 </cell>
2004 </row>
2005 </lyxtabular>
2006
2007 \end_inset
2008
2009
2010 \end_layout
2011
2012 \begin_layout Standard
2013 \begin_inset VSpace bigskip
2014 \end_inset
2015
2016
2017 \begin_inset Newpage newpage
2018 \end_inset
2019
2020 Für Mehrfachbrüche gibt es den Befehl 
2021 \series bold
2022
2023 \backslash
2024 cfrac
2025 \series default
2026
2027 \begin_inset Index idx
2028 status collapsed
2029
2030 \begin_layout Plain Layout
2031 Befehle ! C ! 
2032 \backslash
2033 cfrac
2034 \end_layout
2035
2036 \end_inset
2037
2038 .
2039  Dazu ein Beispiel:
2040 \begin_inset VSpace -3mm
2041 \end_inset
2042
2043
2044 \end_layout
2045
2046 \begin_layout Standard
2047 \begin_inset Formula 
2048 \begin{align*}
2049 \textrm{mit \textbf{\textbackslash frac} erstellt} &  & \textrm{mit \textbf{\textbackslash cfrac} erstellt}\\
2050 \frac{A}{B+\frac{C+\frac{E}{F}}{D}} &  & \cfrac{A}{B+\cfrac{C+\cfrac{E}{F}}{D}}
2051 \end{align*}
2052
2053 \end_inset
2054
2055
2056 \end_layout
2057
2058 \begin_layout Standard
2059 Der Befehl für obiges Beispiel lautet:
2060 \end_layout
2061
2062 \begin_layout Standard
2063
2064 \series bold
2065
2066 \backslash
2067 cfrac
2068 \begin_inset ERT
2069 status collapsed
2070
2071 \begin_layout Plain Layout
2072
2073
2074 \backslash
2075 leer 
2076 \end_layout
2077
2078 \end_inset
2079
2080 A
2081 \begin_inset Formula $\downarrow$
2082 \end_inset
2083
2084 B+
2085 \backslash
2086 cfrac
2087 \begin_inset ERT
2088 status collapsed
2089
2090 \begin_layout Plain Layout
2091
2092
2093 \backslash
2094 leer 
2095 \end_layout
2096
2097 \end_inset
2098
2099 C+
2100 \backslash
2101 cfrac
2102 \begin_inset ERT
2103 status collapsed
2104
2105 \begin_layout Plain Layout
2106
2107
2108 \backslash
2109 leer 
2110 \end_layout
2111
2112 \end_inset
2113
2114 E
2115 \begin_inset Formula $\downarrow$
2116 \end_inset
2117
2118 F
2119 \begin_inset Formula $\downarrow$
2120 \end_inset
2121
2122 D
2123 \end_layout
2124
2125 \begin_layout Standard
2126 \begin_inset VSpace medskip
2127 \end_inset
2128
2129
2130 \end_layout
2131
2132 \begin_layout Standard
2133
2134 \series bold
2135
2136 \backslash
2137 cfrac
2138 \series default
2139  bewirkt, dass der Bruch immer in der Größe einer abgesetzten Formel erscheint,
2140  auch wenn er selbst Teil eines Bruches ist.
2141 \end_layout
2142
2143 \begin_layout Standard
2144 Es ist möglich die Ausrichtung des Zählers einzustellen.
2145  Der Befehl 
2146 \series bold
2147
2148 \backslash
2149 cfracleft
2150 \series default
2151  richtet ihn links, der Befehl 
2152 \series bold
2153
2154 \backslash
2155 cfracright
2156 \series default
2157  rechts aus.
2158  
2159 \series bold
2160
2161 \backslash
2162 cfrac
2163 \series default
2164  zentriert den Zähler.
2165  Diese Brüche demonstrieren die verschiedenen Ausrichtungen:
2166 \end_layout
2167
2168 \begin_layout Standard
2169
2170 \series bold
2171 \begin_inset Formula $\cfrac[l]{A}{B+C}$
2172 \end_inset
2173
2174
2175 \begin_inset Formula $\cfrac{A}{B+C}$
2176 \end_inset
2177
2178
2179 \begin_inset Formula $\cfrac[r]{A}{B+C}$
2180 \end_inset
2181
2182
2183 \end_layout
2184
2185 \begin_layout Standard
2186 \begin_inset Note Greyedout
2187 status open
2188
2189 \begin_layout Plain Layout
2190
2191 \series bold
2192 Achtung:
2193 \series default
2194  
2195 \series bold
2196
2197 \backslash
2198 cfracleft
2199 \series default
2200  und
2201 \series bold
2202  
2203 \backslash
2204 cfracright
2205 \series default
2206  sind keine echten LaTeX-Befehle, sondern stellen den Befehl 
2207 \series bold
2208
2209 \backslash
2210 cfrac[Ausrichtung]{Zähler}{Nenner}
2211 \series default
2212  dar.
2213  Daher kann man sie nicht im TeX-Code benutzen.
2214 \end_layout
2215
2216 \end_inset
2217
2218
2219 \end_layout
2220
2221 \begin_layout Standard
2222 \begin_inset VSpace medskip
2223 \end_inset
2224
2225 Oftmals ist es am günstigsten 
2226 \series bold
2227
2228 \backslash
2229 cfrac
2230 \series default
2231  und 
2232 \series bold
2233
2234 \backslash
2235 frac
2236 \series default
2237  zu kombinieren:
2238 \begin_inset Formula 
2239 \[
2240 \cfrac{A}{B+\cfrac{C+\frac{E}{F}}{D}}
2241 \]
2242
2243 \end_inset
2244
2245
2246 \end_layout
2247
2248 \begin_layout Standard
2249 Um Brüche mit schrägem Bruchstrich zu erzeugen, kann der Befehl 
2250 \series bold
2251
2252 \backslash
2253 nicefrac
2254 \series default
2255
2256 \begin_inset Index idx
2257 status collapsed
2258
2259 \begin_layout Plain Layout
2260 Befehle ! N ! 
2261 \backslash
2262 nicefrac
2263 \end_layout
2264
2265 \end_inset
2266
2267
2268 \begin_inset Formula $\nicefrac{5}{31}$
2269 \end_inset
2270
2271  oder 
2272 \series bold
2273
2274 \backslash
2275 unitfrac
2276 \series default
2277
2278 \begin_inset Index idx
2279 status collapsed
2280
2281 \begin_layout Plain Layout
2282 Befehle! U ! 
2283 \backslash
2284 unitfrac
2285 \end_layout
2286
2287 \end_inset
2288
2289
2290 \begin_inset Formula $\unitfrac{5}{31}$
2291 \end_inset
2292
2293  benutzt werden.
2294  Des Weiteren gibt es den Befehl 
2295 \series bold
2296
2297 \backslash
2298 unitfracthree
2299 \series default
2300  mit dem man einen Bruch in Kombination mit einer Zahl setzen kann: 
2301 \begin_inset Formula $\unitfrac[2]{1}{3}$
2302 \end_inset
2303
2304
2305 \end_layout
2306
2307 \begin_layout Standard
2308 \begin_inset Note Greyedout
2309 status open
2310
2311 \begin_layout Plain Layout
2312
2313 \series bold
2314 Achtung:
2315 \series default
2316  
2317 \series bold
2318
2319 \backslash
2320 unitfracthree
2321 \series default
2322  ist kein echter LaTeX-Befehl, sondern der Befehl
2323 \begin_inset Newline newline
2324 \end_inset
2325
2326
2327 \series bold
2328
2329 \backslash
2330 unitfrac[Zahl]{Zähler}{Nenner}
2331 \series default
2332  .
2333  Daher kann man ihn nicht im TeX-Code benutzen.
2334 \end_layout
2335
2336 \end_inset
2337
2338
2339 \end_layout
2340
2341 \begin_layout Standard
2342 Wie man eigene Brüche definiert, um die Bruchstrichdicke zu ändern, ist
2343  in 
2344 \begin_inset CommandInset ref
2345 LatexCommand ref
2346 reference "sub:Selbstdefinierte-Brüche"
2347
2348 \end_inset
2349
2350  erklärt.
2351 \end_layout
2352
2353 \begin_layout Subsection
2354 Wurzeln
2355 \begin_inset Index idx
2356 status collapsed
2357
2358 \begin_layout Plain Layout
2359 Wurzeln
2360 \end_layout
2361
2362 \end_inset
2363
2364
2365 \end_layout
2366
2367 \begin_layout Standard
2368 Quadratwurzeln werden mit 
2369 \series bold
2370
2371 \backslash
2372 sqrt
2373 \series default
2374
2375 \begin_inset Index idx
2376 status collapsed
2377
2378 \begin_layout Plain Layout
2379 Befehle ! S ! 
2380 \backslash
2381 sqrt
2382 \end_layout
2383
2384 \end_inset
2385
2386  oder dem Mathe-Werkzeugleistenknopf 
2387 \begin_inset Graphics
2388         filename ../../images/math/sqrt.png
2389         scale 85
2390
2391 \end_inset
2392
2393  gesetzt, alle anderen Wurzeln mit dem Befehl 
2394 \series bold
2395
2396 \backslash
2397 root
2398 \series default
2399
2400 \begin_inset Index idx
2401 status collapsed
2402
2403 \begin_layout Plain Layout
2404 Befehle ! R ! 
2405 \backslash
2406 root
2407 \end_layout
2408
2409 \end_inset
2410
2411  oder dem Mathe-Werkzeugleistenknopf 
2412 \begin_inset Graphics
2413         filename ../../images/math/root.png
2414         scale 85
2415
2416 \end_inset
2417
2418 .
2419 \end_layout
2420
2421 \begin_layout Standard
2422 \align center
2423 \begin_inset Tabular
2424 <lyxtabular version="3" rows="3" columns="2">
2425 <features tabularvalignment="middle">
2426 <column alignment="center" valignment="top" width="0pt">
2427 <column alignment="center" valignment="top" width="0pt">
2428 <row>
2429 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
2430 \begin_inset Text
2431
2432 \begin_layout Plain Layout
2433 Befehl
2434 \end_layout
2435
2436 \end_inset
2437 </cell>
2438 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2439 \begin_inset Text
2440
2441 \begin_layout Plain Layout
2442 Ergebnis
2443 \begin_inset Note Note
2444 status collapsed
2445
2446 \begin_layout Plain Layout
2447
2448 \series bold
2449
2450 \backslash
2451 raisebox
2452 \series default
2453  dient nur als Abstandhalter.
2454 \end_layout
2455
2456 \end_inset
2457
2458
2459 \end_layout
2460
2461 \end_inset
2462 </cell>
2463 </row>
2464 <row>
2465 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
2466 \begin_inset Text
2467
2468 \begin_layout Plain Layout
2469
2470 \backslash
2471 sqrt
2472 \begin_inset ERT
2473 status collapsed
2474
2475 \begin_layout Plain Layout
2476
2477
2478 \backslash
2479 leer 
2480 \end_layout
2481
2482 \end_inset
2483
2484 A-B
2485 \end_layout
2486
2487 \end_inset
2488 </cell>
2489 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2490 \begin_inset Text
2491
2492 \begin_layout Plain Layout
2493 \begin_inset Formula $\raisebox{4.5mm}{}\sqrt{A-B}$
2494 \end_inset
2495
2496
2497 \end_layout
2498
2499 \end_inset
2500 </cell>
2501 </row>
2502 <row>
2503 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
2504 \begin_inset Text
2505
2506 \begin_layout Plain Layout
2507
2508 \backslash
2509 root
2510 \begin_inset ERT
2511 status collapsed
2512
2513 \begin_layout Plain Layout
2514
2515
2516 \backslash
2517 leer 
2518 \end_layout
2519
2520 \end_inset
2521
2522 3
2523 \begin_inset Formula $\downarrow$
2524 \end_inset
2525
2526 A-B
2527 \end_layout
2528
2529 \end_inset
2530 </cell>
2531 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
2532 \begin_inset Text
2533
2534 \begin_layout Plain Layout
2535 \begin_inset Formula $\raisebox{4.5mm}{}\sqrt[3]{A-B}$
2536 \end_inset
2537
2538
2539 \end_layout
2540
2541 \end_inset
2542 </cell>
2543 </row>
2544 </lyxtabular>
2545
2546 \end_inset
2547
2548
2549 \end_layout
2550
2551 \begin_layout Standard
2552 Eine Quadratwurzel kann man auch mit 
2553 \series bold
2554
2555 \backslash
2556 root
2557 \series default
2558  erstellen, indem man das Feld über der Wurzel frei lässt.
2559 \end_layout
2560
2561 \begin_layout Standard
2562 Bei manchen Indizes ist der Abstand zur Wurzel zu gering, wie bei dieser
2563  Formel: 
2564 \begin_inset Formula $\sqrt[\beta]{B}$
2565 \end_inset
2566
2567
2568 \begin_inset Newline newline
2569 \end_inset
2570
2571 Das 
2572 \begin_inset Formula $\beta$
2573 \end_inset
2574
2575  berührt die Wurzel.
2576  Um dies zu verhindern, verwendet man die Befehle 
2577 \series bold
2578
2579 \backslash
2580 leftroot
2581 \series default
2582
2583 \begin_inset Index idx
2584 status collapsed
2585
2586 \begin_layout Plain Layout
2587 Befehle ! L ! 
2588 \backslash
2589 leftroot
2590 \end_layout
2591
2592 \end_inset
2593
2594  und 
2595 \series bold
2596
2597 \backslash
2598 uproot
2599 \series default
2600
2601 \begin_inset Index idx
2602 status collapsed
2603
2604 \begin_layout Plain Layout
2605 Befehle ! U ! 
2606 \backslash
2607 uproot
2608 \end_layout
2609
2610 \end_inset
2611
2612 , die folgendes Schema besitzen:
2613 \end_layout
2614
2615 \begin_layout Standard
2616
2617 \series bold
2618
2619 \backslash
2620 leftroot{Abstand}
2621 \series default
2622  bzw.
2623  
2624 \series bold
2625
2626 \backslash
2627 uproot{Abstand}
2628 \end_layout
2629
2630 \begin_layout Standard
2631 Abstand ist die Anzahl der Big Points (Einheit bp; 
2632 \begin_inset Formula $\mathrm{72\, bp=1\, inch}$
2633 \end_inset
2634
2635 ), um die der Index nach links bzw.
2636  nach oben verschoben werden soll.
2637  Die Befehle werden in den Index geschrieben.
2638  So ergibt der Befehl
2639 \begin_inset Newline newline
2640 \end_inset
2641
2642
2643 \series bold
2644
2645 \backslash
2646 root
2647 \backslash
2648 leftroot{-1
2649 \begin_inset Formula $\to$
2650 \end_inset
2651
2652
2653 \backslash
2654 uproot{2
2655 \begin_inset Formula $\to$
2656 \end_inset
2657
2658
2659 \backslash
2660 beta
2661 \begin_inset ERT
2662 status collapsed
2663
2664 \begin_layout Plain Layout
2665
2666
2667 \backslash
2668 leer 
2669 \end_layout
2670
2671 \end_inset
2672
2673
2674 \begin_inset Formula $\to$
2675 \end_inset
2676
2677 B
2678 \begin_inset Newline newline
2679 \end_inset
2680
2681
2682 \series default
2683 eine korrekt gesetzte Formel: 
2684 \begin_inset Formula $\sqrt[\leftroot{-1}\uproot{2}\beta]{B}$
2685 \end_inset
2686
2687
2688 \end_layout
2689
2690 \begin_layout Subsection
2691 Binomialkoeffizienten
2692 \begin_inset Index idx
2693 status collapsed
2694
2695 \begin_layout Plain Layout
2696 Binomialkoeffizienten
2697 \end_layout
2698
2699 \end_inset
2700
2701
2702 \end_layout
2703
2704 \begin_layout Standard
2705 Binomialkoeffizienten können mit dem Befehl 
2706 \series bold
2707
2708 \backslash
2709 binom
2710 \series default
2711
2712 \begin_inset Index idx
2713 status collapsed
2714
2715 \begin_layout Plain Layout
2716 Befehle ! B ! 
2717 \backslash
2718 binom
2719 \end_layout
2720
2721 \end_inset
2722
2723  oder über das Untermenü des Mathe-Werkzeugleistenknopfs 
2724 \begin_inset Graphics
2725         filename ../../images/math/frac-square.png
2726         scale 85
2727
2728 \end_inset
2729
2730 eingefügt werden.
2731  Analog zu Brüchen (
2732 \series bold
2733
2734 \backslash
2735 frac
2736 \series default
2737 ) gibt es außer 
2738 \series bold
2739
2740 \backslash
2741 binom
2742 \series default
2743  noch die Befehle 
2744 \series bold
2745
2746 \backslash
2747 dbinom
2748 \series default
2749
2750 \begin_inset Index idx
2751 status collapsed
2752
2753 \begin_layout Plain Layout
2754 Befehle ! D ! 
2755 \backslash
2756 dbinom
2757 \end_layout
2758
2759 \end_inset
2760
2761  und 
2762 \series bold
2763
2764 \backslash
2765 tbinom
2766 \series default
2767
2768 \begin_inset Index idx
2769 status collapsed
2770
2771 \begin_layout Plain Layout
2772 Befehle ! T ! 
2773 \backslash
2774 tbinom
2775 \end_layout
2776
2777 \end_inset
2778
2779 .
2780  Für andere Klammern um Binomialkoeffizienten gibt es die Befehle 
2781 \series bold
2782
2783 \backslash
2784 brace
2785 \series default
2786
2787 \begin_inset Index idx
2788 status collapsed
2789
2790 \begin_layout Plain Layout
2791 Befehle ! B ! 
2792 \backslash
2793 brace
2794 \end_layout
2795
2796 \end_inset
2797
2798  und 
2799 \series bold
2800
2801 \backslash
2802 brack
2803 \series default
2804
2805 \begin_inset Index idx
2806 status collapsed
2807
2808 \begin_layout Plain Layout
2809 Befehle ! B ! 
2810 \backslash
2811 brack
2812 \end_layout
2813
2814 \end_inset
2815
2816 .
2817 \end_layout
2818
2819 \begin_layout Standard
2820 \align center
2821 \begin_inset Tabular
2822 <lyxtabular version="3" rows="6" columns="2">
2823 <features tabularvalignment="middle">
2824 <column alignment="center" valignment="top" width="0pt">
2825 <column alignment="center" valignment="top" width="0pt">
2826 <row>
2827 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2828 \begin_inset Text
2829
2830 \begin_layout Plain Layout
2831 Befehl
2832 \end_layout
2833
2834 \end_inset
2835 </cell>
2836 <cell alignment="center" valignment="top" topline="true" bottomline="true" rightline="true" usebox="none">
2837 \begin_inset Text
2838
2839 \begin_layout Plain Layout
2840 Ergebnis
2841 \begin_inset Note Note
2842 status collapsed
2843
2844 \begin_layout Plain Layout
2845
2846 \series bold
2847
2848 \backslash
2849 raisebox
2850 \series default
2851  dient nur als Abstandhalter.
2852 \end_layout
2853
2854 \end_inset
2855
2856
2857 \end_layout
2858
2859 \end_inset
2860 </cell>
2861 </row>
2862 <row>
2863 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
2864 \begin_inset Text
2865
2866 \begin_layout Plain Layout
2867
2868 \backslash
2869 binom
2870 \begin_inset ERT
2871 status collapsed
2872
2873 \begin_layout Plain Layout
2874
2875
2876 \backslash
2877 leer 
2878 \end_layout
2879
2880 \end_inset
2881
2882 A
2883 \begin_inset Formula $\downarrow$
2884 \end_inset
2885
2886 B
2887 \end_layout
2888
2889 \end_inset
2890 </cell>
2891 <cell alignment="center" valignment="top" bottomline="true" rightline="true" usebox="none">
2892 \begin_inset Text
2893
2894 \begin_layout Plain Layout
2895 \begin_inset Formula $\raisebox{5mm}{}\binom{A}{B}\raisebox{-2.5mm}{}$
2896 \end_inset
2897
2898
2899 \end_layout
2900
2901 \end_inset
2902 </cell>
2903 </row>
2904 <row>
2905 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
2906 \begin_inset Text
2907
2908 \begin_layout Plain Layout
2909
2910 \backslash
2911 dbinom
2912 \begin_inset ERT
2913 status collapsed
2914
2915 \begin_layout Plain Layout
2916
2917
2918 \backslash
2919 leer 
2920 \end_layout
2921
2922 \end_inset
2923
2924 A
2925 \begin_inset Formula $\downarrow$
2926 \end_inset
2927
2928 B
2929 \end_layout
2930
2931 \end_inset
2932 </cell>
2933 <cell alignment="center" valignment="top" bottomline="true" rightline="true" usebox="none">
2934 \begin_inset Text
2935
2936 \begin_layout Plain Layout
2937 \begin_inset Formula $\raisebox{5mm}{}\dbinom{A}{B}\raisebox{-2.5mm}{}$
2938 \end_inset
2939
2940
2941 \end_layout
2942
2943 \end_inset
2944 </cell>
2945 </row>
2946 <row>
2947 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
2948 \begin_inset Text
2949
2950 \begin_layout Plain Layout
2951
2952 \backslash
2953 tbinom
2954 \begin_inset ERT
2955 status collapsed
2956
2957 \begin_layout Plain Layout
2958
2959
2960 \backslash
2961 leer 
2962 \end_layout
2963
2964 \end_inset
2965
2966 A
2967 \begin_inset Formula $\downarrow$
2968 \end_inset
2969
2970 B
2971 \end_layout
2972
2973 \end_inset
2974 </cell>
2975 <cell alignment="center" valignment="top" bottomline="true" rightline="true" usebox="none">
2976 \begin_inset Text
2977
2978 \begin_layout Plain Layout
2979 \begin_inset Formula $\raisebox{5mm}{}\tbinom{A}{B}\raisebox{-2.5mm}{}$
2980 \end_inset
2981
2982
2983 \end_layout
2984
2985 \end_inset
2986 </cell>
2987 </row>
2988 <row>
2989 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
2990 \begin_inset Text
2991
2992 \begin_layout Plain Layout
2993
2994 \backslash
2995 brack
2996 \begin_inset ERT
2997 status collapsed
2998
2999 \begin_layout Plain Layout
3000
3001
3002 \backslash
3003 leer 
3004 \end_layout
3005
3006 \end_inset
3007
3008 A
3009 \begin_inset Formula $\downarrow$
3010 \end_inset
3011
3012 B
3013 \end_layout
3014
3015 \end_inset
3016 </cell>
3017 <cell alignment="center" valignment="top" topline="true" bottomline="true" rightline="true" usebox="none">
3018 \begin_inset Text
3019
3020 \begin_layout Plain Layout
3021 \begin_inset Formula $\raisebox{5mm}{}{A \brack B}\raisebox{-2.5mm}{}$
3022 \end_inset
3023
3024
3025 \end_layout
3026
3027 \end_inset
3028 </cell>
3029 </row>
3030 <row>
3031 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
3032 \begin_inset Text
3033
3034 \begin_layout Plain Layout
3035
3036 \backslash
3037 brace
3038 \begin_inset ERT
3039 status collapsed
3040
3041 \begin_layout Plain Layout
3042
3043
3044 \backslash
3045 leer 
3046 \end_layout
3047
3048 \end_inset
3049
3050 A
3051 \begin_inset Formula $\downarrow$
3052 \end_inset
3053
3054 B
3055 \end_layout
3056
3057 \end_inset
3058 </cell>
3059 <cell alignment="center" valignment="top" bottomline="true" rightline="true" usebox="none">
3060 \begin_inset Text
3061
3062 \begin_layout Plain Layout
3063 \begin_inset Formula $\raisebox{5mm}{}{A \brace B}\raisebox{-2.5mm}{}$
3064 \end_inset
3065
3066
3067 \end_layout
3068
3069 \end_inset
3070 </cell>
3071 </row>
3072 </lyxtabular>
3073
3074 \end_inset
3075
3076
3077 \end_layout
3078
3079 \begin_layout Subsection
3080 Fallunterscheidungen
3081 \begin_inset Index idx
3082 status collapsed
3083
3084 \begin_layout Plain Layout
3085 Fallunterscheidungen
3086 \end_layout
3087
3088 \end_inset
3089
3090
3091 \end_layout
3092
3093 \begin_layout Standard
3094 \align center
3095 \begin_inset Tabular
3096 <lyxtabular version="3" rows="3" columns="2">
3097 <features tabularvalignment="middle">
3098 <column alignment="center" valignment="top" width="0pt">
3099 <column alignment="center" valignment="top" width="0pt">
3100 <row>
3101 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
3102 \begin_inset Text
3103
3104 \begin_layout Plain Layout
3105 Befehl
3106 \end_layout
3107
3108 \end_inset
3109 </cell>
3110 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
3111 \begin_inset Text
3112
3113 \begin_layout Plain Layout
3114 Ergebnis
3115 \end_layout
3116
3117 \end_inset
3118 </cell>
3119 </row>
3120 <row>
3121 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3122 \begin_inset Text
3123
3124 \begin_layout Plain Layout
3125
3126 \backslash
3127 cases
3128 \begin_inset ERT
3129 status collapsed
3130
3131 \begin_layout Plain Layout
3132
3133
3134 \backslash
3135 leer 
3136 \end_layout
3137
3138 \end_inset
3139
3140 A
3141 \begin_inset Formula $\to$
3142 \end_inset
3143
3144 B>0
3145 \begin_inset Index idx
3146 status collapsed
3147
3148 \begin_layout Plain Layout
3149 Befehle ! C ! 
3150 \backslash
3151 cases
3152 \end_layout
3153
3154 \end_inset
3155
3156
3157 \end_layout
3158
3159 \end_inset
3160 </cell>
3161 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3162 \begin_inset Text
3163
3164 \begin_layout Plain Layout
3165 \begin_inset Formula $\begin{cases}
3166 A & B>0\end{cases}$
3167 \end_inset
3168
3169
3170 \end_layout
3171
3172 \end_inset
3173 </cell>
3174 </row>
3175 <row>
3176 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
3177 \begin_inset Text
3178
3179 \begin_layout Plain Layout
3180
3181 \backslash
3182 cases
3183 \begin_inset ERT
3184 status collapsed
3185
3186 \begin_layout Plain Layout
3187
3188
3189 \backslash
3190 leer 
3191 \end_layout
3192
3193 \end_inset
3194
3195 Strg+Enter
3196 \end_layout
3197
3198 \end_inset
3199 </cell>
3200 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
3201 \begin_inset Text
3202
3203 \begin_layout Plain Layout
3204 \begin_inset Formula $\begin{cases}
3205 A & \textrm{für }x>0\\
3206 B & \textrm{für }x=0
3207 \end{cases}$
3208 \end_inset
3209
3210
3211 \end_layout
3212
3213 \end_inset
3214 </cell>
3215 </row>
3216 </lyxtabular>
3217
3218 \end_inset
3219
3220
3221 \end_layout
3222
3223 \begin_layout Standard
3224 Nach der Eingabe von 
3225 \series bold
3226
3227 \backslash
3228 cases
3229 \series default
3230  oder der Benutzung des Mathe-Werkzeugleistenknopfs 
3231 \begin_inset Graphics
3232         filename ../../images/math/cases.png
3233         scale 85
3234
3235 \end_inset
3236
3237  können mit 
3238 \family sans
3239 Strg+Enter
3240 \family default
3241  oder dem Tabellen-Werkzeugleistenknopf 
3242 \begin_inset Graphics
3243         filename ../../images/tabular-feature_append-row.png
3244         scale 85
3245
3246 \end_inset
3247
3248  neue Zeilen erstellt werden.
3249 \begin_inset Foot
3250 status collapsed
3251
3252 \begin_layout Plain Layout
3253 Umlaute in Formeln, wie in obiger Tabelle, sind in 
3254 \begin_inset CommandInset ref
3255 LatexCommand ref
3256 reference "sub:Akzente-für-ein"
3257
3258 \end_inset
3259
3260  beschrieben.
3261 \end_layout
3262
3263 \end_inset
3264
3265
3266 \end_layout
3267
3268 \begin_layout Standard
3269 Der Befehl 
3270 \series bold
3271
3272 \backslash
3273 cases
3274 \series default
3275  ist auch über das Menü 
3276 \family sans
3277 Einfügen\SpecialChar \menuseparator
3278 Mathe\SpecialChar \menuseparator
3279 Cases-Umgebung
3280 \family default
3281  verfügbar.
3282 \end_layout
3283
3284 \begin_layout Subsection
3285 Verneinungen
3286 \begin_inset Index idx
3287 status collapsed
3288
3289 \begin_layout Plain Layout
3290 Verneinungen
3291 \end_layout
3292
3293 \end_inset
3294
3295
3296 \end_layout
3297
3298 \begin_layout Standard
3299 Durch die Eingabe von 
3300 \series bold
3301
3302 \backslash
3303 not
3304 \series default
3305
3306 \begin_inset Index idx
3307 status collapsed
3308
3309 \begin_layout Plain Layout
3310 Befehle ! N ! 
3311 \backslash
3312 not
3313 \end_layout
3314
3315 \end_inset
3316
3317  kann jedes beliebige Zeichen durchgestrichen dargestellt werden.
3318  Die Zeichen werden quasi mit einem Schrägstrich akzentuiert.
3319 \end_layout
3320
3321 \begin_layout Standard
3322 \align center
3323 \begin_inset Tabular
3324 <lyxtabular version="3" rows="4" columns="2">
3325 <features tabularvalignment="middle">
3326 <column alignment="center" valignment="top" width="0pt">
3327 <column alignment="center" valignment="top" width="0pt">
3328 <row>
3329 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
3330 \begin_inset Text
3331
3332 \begin_layout Plain Layout
3333 Befehl
3334 \end_layout
3335
3336 \end_inset
3337 </cell>
3338 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
3339 \begin_inset Text
3340
3341 \begin_layout Plain Layout
3342 Ergebnis
3343 \end_layout
3344
3345 \end_inset
3346 </cell>
3347 </row>
3348 <row>
3349 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3350 \begin_inset Text
3351
3352 \begin_layout Plain Layout
3353
3354 \backslash
3355 not=
3356 \end_layout
3357
3358 \end_inset
3359 </cell>
3360 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3361 \begin_inset Text
3362
3363 \begin_layout Plain Layout
3364 \begin_inset Formula $\not=$
3365 \end_inset
3366
3367
3368 \end_layout
3369
3370 \end_inset
3371 </cell>
3372 </row>
3373 <row>
3374 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
3375 \begin_inset Text
3376
3377 \begin_layout Plain Layout
3378
3379 \backslash
3380 not 
3381 \backslash
3382 le
3383 \end_layout
3384
3385 \end_inset
3386 </cell>
3387 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
3388 \begin_inset Text
3389
3390 \begin_layout Plain Layout
3391 \begin_inset Formula $\not\le$
3392 \end_inset
3393
3394
3395 \end_layout
3396
3397 \end_inset
3398 </cell>
3399 </row>
3400 <row>
3401 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
3402 \begin_inset Text
3403
3404 \begin_layout Plain Layout
3405
3406 \backslash
3407 not 
3408 \backslash
3409 parallel
3410 \end_layout
3411
3412 \end_inset
3413 </cell>
3414 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
3415 \begin_inset Text
3416
3417 \begin_layout Plain Layout
3418 \begin_inset Formula $\not\parallel$
3419 \end_inset
3420
3421
3422 \end_layout
3423
3424 \end_inset
3425 </cell>
3426 </row>
3427 </lyxtabular>
3428
3429 \end_inset
3430
3431
3432 \end_layout
3433
3434 \begin_layout Standard
3435 Das letzte Beispiel zeigt, dass nicht alle Verneinungen gut aussehen.
3436  Deswegen gibt es für Einige spezielle Befehle (siehe 
3437 \begin_inset CommandInset ref
3438 LatexCommand ref
3439 reference "sub:Mathematische-Symbole"
3440
3441 \end_inset
3442
3443  und 
3444 \begin_inset CommandInset ref
3445 LatexCommand ref
3446 reference "sec:Relationen"
3447
3448 \end_inset
3449
3450 ).
3451 \end_layout
3452
3453 \begin_layout Subsection
3454 Platzhalter
3455 \begin_inset CommandInset label
3456 LatexCommand label
3457 name "sub:Platzhalter"
3458
3459 \end_inset
3460
3461
3462 \begin_inset Index idx
3463 status collapsed
3464
3465 \begin_layout Plain Layout
3466 Platzhalter
3467 \end_layout
3468
3469 \end_inset
3470
3471
3472 \begin_inset Index idx
3473 status collapsed
3474
3475 \begin_layout Plain Layout
3476 chemische Zeichen ! Isotope
3477 \end_layout
3478
3479 \end_inset
3480
3481
3482 \begin_inset Index idx
3483 status collapsed
3484
3485 \begin_layout Plain Layout
3486 Isotope|see
3487 \begin_inset ERT
3488 status collapsed
3489
3490 \begin_layout Plain Layout
3491
3492 {
3493 \end_layout
3494
3495 \end_inset
3496
3497 chemische Zeichen
3498 \begin_inset ERT
3499 status collapsed
3500
3501 \begin_layout Plain Layout
3502
3503 }
3504 \end_layout
3505
3506 \end_inset
3507
3508
3509 \end_layout
3510
3511 \end_inset
3512
3513
3514 \end_layout
3515
3516 \begin_layout Standard
3517 Möchte man z.
3518 \begin_inset space \thinspace{}
3519 \end_inset
3520
3521 B.
3522  Isotope
3523 \begin_inset Foot
3524 status collapsed
3525
3526 \begin_layout Plain Layout
3527 Wie Isotope und chemische Reaktionen erstellt werden, ist in 
3528 \begin_inset CommandInset ref
3529 LatexCommand ref
3530 reference "sub:Chemische-Symbole-und"
3531
3532 \end_inset
3533
3534  beschrieben.
3535 \end_layout
3536
3537 \end_inset
3538
3539  darstellen, tritt folgendes Problem auf:
3540 \end_layout
3541
3542 \begin_layout Standard
3543 \align center
3544 \begin_inset Tabular
3545 <lyxtabular version="3" rows="2" columns="2">
3546 <features tabularvalignment="middle">
3547 <column alignment="center" valignment="top" width="0pt">
3548 <column alignment="center" valignment="top" width="0pt">
3549 <row>
3550 <cell alignment="center" valignment="top" usebox="none">
3551 \begin_inset Text
3552
3553 \begin_layout Plain Layout
3554 durch Hoch- und Tiefstellen erzeugte Indizes:
3555 \end_layout
3556
3557 \end_inset
3558 </cell>
3559 <cell alignment="center" valignment="top" usebox="none">
3560 \begin_inset Text
3561
3562 \begin_layout Plain Layout
3563 \begin_inset Formula $_{9}^{19}\mathrm{F}\raisebox{-3mm}{}$
3564 \end_inset
3565
3566
3567 \end_layout
3568
3569 \end_inset
3570 </cell>
3571 </row>
3572 <row>
3573 <cell alignment="center" valignment="top" usebox="none">
3574 \begin_inset Text
3575
3576 \begin_layout Plain Layout
3577 korrekte Indizes:
3578 \end_layout
3579
3580 \end_inset
3581 </cell>
3582 <cell alignment="center" valignment="top" usebox="none">
3583 \begin_inset Text
3584
3585 \begin_layout Plain Layout
3586 \begin_inset Formula $_{\phantom{1}9}^{19}\mathrm{F}$
3587 \end_inset
3588
3589
3590 \end_layout
3591
3592 \end_inset
3593 </cell>
3594 </row>
3595 </lyxtabular>
3596
3597 \end_inset
3598
3599
3600 \begin_inset Note Note
3601 status collapsed
3602
3603 \begin_layout Plain Layout
3604
3605 \series bold
3606
3607 \backslash
3608 raisebox
3609 \series default
3610  dient nur
3611 \end_layout
3612
3613 \begin_layout Plain Layout
3614 als Abstandhalter.
3615 \end_layout
3616
3617 \end_inset
3618
3619
3620 \end_layout
3621
3622 \begin_layout Standard
3623 Der kürzere Index wird standardmäßig unter oder über das erste Zeichen des
3624  längeren Index gesetzt.
3625  Um das zu verhindern gibt es den Befehl 
3626 \series bold
3627
3628 \backslash
3629 phantom
3630 \series default
3631
3632 \begin_inset Index idx
3633 status collapsed
3634
3635 \begin_layout Plain Layout
3636 Befehle ! P ! 
3637 \backslash
3638 phantom
3639 \end_layout
3640
3641 \end_inset
3642
3643  oder den Mathe-Werkzeugleistenknopf
3644 \begin_inset space \thinspace{}
3645 \end_inset
3646
3647
3648 \begin_inset Foot
3649 status collapsed
3650
3651 \begin_layout Plain Layout
3652 zu finden im Untermenü des Mathe-Werkzeugleistenknopfs 
3653 \begin_inset Graphics
3654         filename ../../images/math/space.png
3655         scale 85
3656
3657 \end_inset
3658
3659
3660 \end_layout
3661
3662 \end_inset
3663
3664  
3665 \begin_inset Graphics
3666         filename ../../images/math/phantom.png
3667         scale 85
3668
3669 \end_inset
3670
3671 , der ein oder mehrere Phantomzeichen erstellt.
3672  Wenn 
3673 \series bold
3674
3675 \backslash
3676 phantom
3677 \series default
3678  eingegeben wird, erscheint ein kleines blaues Kästchen, dass von zwei roten
3679  Pfeilen überlagert wird.
3680  Die Pfeile geben an, dass die komplette Breite und Höhe des Kästcheninhalts
3681  als Leerraum erstellt wird.
3682  Phantomzeichen sind dementsprechend Platzhalter mit der Größe der angegebenen
3683  Zeichen.
3684 \end_layout
3685
3686 \begin_layout Standard
3687 \align center
3688 \begin_inset Tabular
3689 <lyxtabular version="3" rows="4" columns="2">
3690 <features tabularvalignment="middle">
3691 <column alignment="center" valignment="top" width="0">
3692 <column alignment="center" valignment="top" width="0">
3693 <row>
3694 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
3695 \begin_inset Text
3696
3697 \begin_layout Plain Layout
3698 Befehl
3699 \end_layout
3700
3701 \end_inset
3702 </cell>
3703 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
3704 \begin_inset Text
3705
3706 \begin_layout Plain Layout
3707 Ergebnis
3708 \begin_inset Note Note
3709 status collapsed
3710
3711 \begin_layout Plain Layout
3712
3713 \series bold
3714
3715 \backslash
3716 raisebox
3717 \series default
3718  dient nur als Abstandhalter.
3719 \end_layout
3720
3721 \end_inset
3722
3723
3724 \end_layout
3725
3726 \end_inset
3727 </cell>
3728 </row>
3729 <row>
3730 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
3731 \begin_inset Text
3732
3733 \begin_layout Plain Layout
3734 ^19
3735 \begin_inset ERT
3736 status collapsed
3737
3738 \begin_layout Plain Layout
3739
3740
3741 \backslash
3742 leer 
3743 \end_layout
3744
3745 \end_inset
3746
3747 _
3748 \backslash
3749 phantom
3750 \begin_inset ERT
3751 status collapsed
3752
3753 \begin_layout Plain Layout
3754
3755
3756 \backslash
3757 leer 
3758 \end_layout
3759
3760 \end_inset
3761
3762 1
3763 \begin_inset Formula $\to$
3764 \end_inset
3765
3766 9
3767 \begin_inset ERT
3768 status collapsed
3769
3770 \begin_layout Plain Layout
3771
3772
3773 \backslash
3774 leer 
3775 \end_layout
3776
3777 \end_inset
3778
3779 F
3780 \end_layout
3781
3782 \end_inset
3783 </cell>
3784 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
3785 \begin_inset Text
3786
3787 \begin_layout Plain Layout
3788 \begin_inset Formula $\raisebox{4.5mm}{}{}_{\phantom{1}9}^{19}\mathrm{F}\raisebox{-2.5mm}{}$
3789 \end_inset
3790
3791
3792 \end_layout
3793
3794 \end_inset
3795 </cell>
3796 </row>
3797 <row>
3798 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
3799 \begin_inset Text
3800
3801 \begin_layout Plain Layout
3802 ^235
3803 \begin_inset ERT
3804 status collapsed
3805
3806 \begin_layout Plain Layout
3807
3808
3809 \backslash
3810 leer 
3811 \end_layout
3812
3813 \end_inset
3814
3815 _
3816 \backslash
3817 phantom
3818 \begin_inset ERT
3819 status collapsed
3820
3821 \begin_layout Plain Layout
3822
3823
3824 \backslash
3825 leer 
3826 \end_layout
3827
3828 \end_inset
3829
3830 23
3831 \begin_inset Formula $\to$
3832 \end_inset
3833
3834 9
3835 \begin_inset ERT
3836 status collapsed
3837
3838 \begin_layout Plain Layout
3839
3840
3841 \backslash
3842 leer 
3843 \end_layout
3844
3845 \end_inset
3846
3847 F
3848 \end_layout
3849
3850 \end_inset
3851 </cell>
3852 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
3853 \begin_inset Text
3854
3855 \begin_layout Plain Layout
3856 \begin_inset Formula $\raisebox{4.5mm}{}{}_{\phantom{23}9}^{235}\mathrm{F}\raisebox{-2.5mm}{}$
3857 \end_inset
3858
3859
3860 \end_layout
3861
3862 \end_inset
3863 </cell>
3864 </row>
3865 <row>
3866 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
3867 \begin_inset Text
3868
3869 \begin_layout Plain Layout
3870
3871 \backslash
3872 Lambda^
3873 \begin_inset ERT
3874 status collapsed
3875
3876 \begin_layout Plain Layout
3877
3878
3879 \backslash
3880 leer 
3881 \end_layout
3882
3883 \end_inset
3884
3885
3886 \backslash
3887 phantom
3888 \begin_inset ERT
3889 status collapsed
3890
3891 \begin_layout Plain Layout
3892
3893
3894 \backslash
3895 leer 
3896 \end_layout
3897
3898 \end_inset
3899
3900 ii
3901 \begin_inset Formula $\to$
3902 \end_inset
3903
3904 t
3905 \begin_inset ERT
3906 status collapsed
3907
3908 \begin_layout Plain Layout
3909
3910
3911 \backslash
3912 leer 
3913 \end_layout
3914
3915 \end_inset
3916
3917 _MMt
3918 \end_layout
3919
3920 \end_inset
3921 </cell>
3922 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
3923 \begin_inset Text
3924
3925 \begin_layout Plain Layout
3926 \begin_inset Formula $\raisebox{4.5mm}{}\Lambda_{MMt}^{\phantom{ii}t}\raisebox{-2.5mm}{}$
3927 \end_inset
3928
3929
3930 \end_layout
3931
3932 \end_inset
3933 </cell>
3934 </row>
3935 </lyxtabular>
3936
3937 \end_inset
3938
3939
3940 \end_layout
3941
3942 \begin_layout Standard
3943 Des Weiteren gibt es noch die Befehle 
3944 \series bold
3945
3946 \backslash
3947 vphantom
3948 \series default
3949
3950 \begin_inset Index idx
3951 status collapsed
3952
3953 \begin_layout Plain Layout
3954 Befehle ! V ! 
3955 \backslash
3956 vphantom
3957 \end_layout
3958
3959 \end_inset
3960
3961  (Werkzeugleistenknopf 
3962 \begin_inset space ~
3963 \end_inset
3964
3965
3966 \begin_inset Graphics
3967         filename ../../images/math/vphantom.png
3968         scale 85
3969
3970 \end_inset
3971
3972 ) und 
3973 \series bold
3974
3975 \backslash
3976 hphantom
3977 \series default
3978
3979 \begin_inset Index idx
3980 status collapsed
3981
3982 \begin_layout Plain Layout
3983 Befehle ! H ! 
3984 \backslash
3985 hphantom
3986 \end_layout
3987
3988 \end_inset
3989
3990  (Werkzeugleistenknopf 
3991 \begin_inset space ~
3992 \end_inset
3993
3994
3995 \begin_inset Graphics
3996         filename ../../images/math/hphantom.png
3997         scale 85
3998
3999 \end_inset
4000
4001 ).
4002  
4003 \series bold
4004
4005 \backslash
4006 hphantom
4007 \series default
4008  erzeugt nur Platz für die maximale Höhe der im Kästchen angegebenen Zeichen,
4009  nicht jedoch für deren Breite.
4010  Bei 
4011 \series bold
4012
4013 \backslash
4014 vphantom
4015 \series default
4016  wird nur Platz mit der Breite des Kästchens erstellt.
4017  Daher haben die Kästchen der beiden Befehle nur einen roten Pfeil.
4018 \end_layout
4019
4020 \begin_layout Standard
4021 Zum Beispiel erzeugt 
4022 \series bold
4023
4024 \backslash
4025 vphantom
4026 \series default
4027
4028 \begin_inset ERT
4029 status collapsed
4030
4031 \begin_layout Plain Layout
4032
4033
4034 \backslash
4035 leer 
4036 \end_layout
4037
4038 \end_inset
4039
4040
4041 \series bold
4042 a
4043 \backslash
4044 int
4045 \series default
4046  Platz der Höhe des Integralzeichens,
4047 \begin_inset Foot
4048 status collapsed
4049
4050 \begin_layout Plain Layout
4051 Der Befehl 
4052 \series bold
4053
4054 \backslash
4055 int
4056 \series default
4057  erzeugt ein Integralzeichen, siehe 
4058 \begin_inset CommandInset ref
4059 LatexCommand ref
4060 reference "sub:Große-Operatoren"
4061
4062 \end_inset
4063
4064 .
4065 \end_layout
4066
4067 \end_inset
4068
4069  da dieses das größere Zeichen ist.
4070  Eine Beispielanwendung ist in 
4071 \begin_inset CommandInset ref
4072 LatexCommand ref
4073 reference "sub:Mehrzeilige-Klammern"
4074
4075 \end_inset
4076
4077  zu finden.
4078 \end_layout
4079
4080 \begin_layout Standard
4081 Platzhalter können auch für Text verwendet werden, wenn sie über das Menü
4082  
4083 \family sans
4084 Einfügen\SpecialChar \menuseparator
4085 Formatierung\SpecialChar \menuseparator
4086 Phantom
4087 \family default
4088  eingefügt werden:
4089 \end_layout
4090
4091 \begin_layout Standard
4092 Dies ist ein Satz.
4093 \begin_inset Newline newline
4094 \end_inset
4095
4096
4097 \begin_inset Phantom Phantom
4098 status open
4099
4100 \begin_layout Plain Layout
4101 Dies
4102 \end_layout
4103
4104 \end_inset
4105
4106  ist ein Satz.
4107 \end_layout
4108
4109 \begin_layout Subsection
4110 Linien
4111 \begin_inset Index idx
4112 status collapsed
4113
4114 \begin_layout Plain Layout
4115 Linien
4116 \end_layout
4117
4118 \end_inset
4119
4120
4121 \begin_inset Index idx
4122 status collapsed
4123
4124 \begin_layout Plain Layout
4125 Formel ! unterstrichene
4126 \end_layout
4127
4128 \end_inset
4129
4130
4131 \end_layout
4132
4133 \begin_layout Standard
4134 \align center
4135 \begin_inset Tabular
4136 <lyxtabular version="3" rows="4" columns="2">
4137 <features tabularvalignment="middle">
4138 <column alignment="center" valignment="top" width="0pt">
4139 <column alignment="center" valignment="top" width="0pt">
4140 <row>
4141 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
4142 \begin_inset Text
4143
4144 \begin_layout Plain Layout
4145 Befehl
4146 \end_layout
4147
4148 \end_inset
4149 </cell>
4150 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
4151 \begin_inset Text
4152
4153 \begin_layout Plain Layout
4154 Ergebnis
4155 \begin_inset Note Note
4156 status collapsed
4157
4158 \begin_layout Plain Layout
4159
4160 \series bold
4161
4162 \backslash
4163 raisebox
4164 \series default
4165  dient nur als Abstandhalter.
4166 \end_layout
4167
4168 \end_inset
4169
4170
4171 \end_layout
4172
4173 \end_inset
4174 </cell>
4175 </row>
4176 <row>
4177 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
4178 \begin_inset Text
4179
4180 \begin_layout Plain Layout
4181
4182 \backslash
4183 overline
4184 \begin_inset ERT
4185 status collapsed
4186
4187 \begin_layout Plain Layout
4188
4189
4190 \backslash
4191 leer 
4192 \end_layout
4193
4194 \end_inset
4195
4196 A+B
4197 \begin_inset Index idx
4198 status collapsed
4199
4200 \begin_layout Plain Layout
4201 Befehle ! O ! 
4202 \backslash
4203 overline
4204 \end_layout
4205
4206 \end_inset
4207
4208
4209 \end_layout
4210
4211 \end_inset
4212 </cell>
4213 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
4214 \begin_inset Text
4215
4216 \begin_layout Plain Layout
4217 \begin_inset Formula $\raisebox{5mm}{}\overline{A+B}$
4218 \end_inset
4219
4220
4221 \end_layout
4222
4223 \end_inset
4224 </cell>
4225 </row>
4226 <row>
4227 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
4228 \begin_inset Text
4229
4230 \begin_layout Plain Layout
4231
4232 \backslash
4233 underline
4234 \begin_inset ERT
4235 status collapsed
4236
4237 \begin_layout Plain Layout
4238
4239
4240 \backslash
4241 leer 
4242 \end_layout
4243
4244 \end_inset
4245
4246 A+B
4247 \begin_inset Index idx
4248 status collapsed
4249
4250 \begin_layout Plain Layout
4251 Befehle ! U ! 
4252 \backslash
4253 underline
4254 \end_layout
4255
4256 \end_inset
4257
4258
4259 \end_layout
4260
4261 \end_inset
4262 </cell>
4263 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
4264 \begin_inset Text
4265
4266 \begin_layout Plain Layout
4267 \begin_inset Formula $\underline{A+B}\raisebox{-2.5mm}{}$
4268 \end_inset
4269
4270
4271 \end_layout
4272
4273 \end_inset
4274 </cell>
4275 </row>
4276 <row>
4277 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
4278 \begin_inset Text
4279
4280 \begin_layout Plain Layout
4281
4282 \backslash
4283 overline
4284 \begin_inset ERT
4285 status collapsed
4286
4287 \begin_layout Plain Layout
4288
4289
4290 \backslash
4291 leer 
4292 \end_layout
4293
4294 \end_inset
4295
4296
4297 \backslash
4298 underline
4299 \begin_inset ERT
4300 status collapsed
4301
4302 \begin_layout Plain Layout
4303
4304
4305 \backslash
4306 leer 
4307 \end_layout
4308
4309 \end_inset
4310
4311 A+B
4312 \end_layout
4313
4314 \end_inset
4315 </cell>
4316 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
4317 \begin_inset Text
4318
4319 \begin_layout Plain Layout
4320 \begin_inset Formula $\raisebox{5mm}{}\overline{\underline{A+B}}\raisebox{-2.5mm}{}$
4321 \end_inset
4322
4323
4324 \end_layout
4325
4326 \end_inset
4327 </cell>
4328 </row>
4329 </lyxtabular>
4330
4331 \end_inset
4332
4333
4334 \end_layout
4335
4336 \begin_layout Standard
4337 Beim letzten Beispiel spielt es keine Rolle, ob man zuerst 
4338 \series bold
4339
4340 \backslash
4341 overline
4342 \series default
4343  oder 
4344 \series bold
4345
4346 \backslash
4347 underline
4348 \series default
4349  eingibt.
4350 \end_layout
4351
4352 \begin_layout Standard
4353 Will man Ergebnisse doppelt unterstreichen, verwendet man zweimal hintereinander
4354 \begin_inset Newline linebreak
4355 \end_inset
4356
4357
4358 \series bold
4359
4360 \backslash
4361 underline
4362 \series default
4363 .
4364 \end_layout
4365
4366 \begin_layout Standard
4367 Man kann bis zu 6 Striche über oder unter Zeichen setzen.
4368 \end_layout
4369
4370 \begin_layout Standard
4371 \begin_inset VSpace bigskip
4372 \end_inset
4373
4374 Benutzerdefinierte Linien können mit dem Befehl 
4375 \series bold
4376
4377 \backslash
4378 rule
4379 \series default
4380
4381 \begin_inset Index idx
4382 status collapsed
4383
4384 \begin_layout Plain Layout
4385 Befehle! R ! 
4386 \backslash
4387 rule
4388 \end_layout
4389
4390 \end_inset
4391
4392  erstellt werden, der folgendes Schema besitzt:
4393 \end_layout
4394
4395 \begin_layout Standard
4396
4397 \series bold
4398
4399 \backslash
4400 rule[vertikaler Versatz]{Länge}{Dicke}
4401 \end_layout
4402
4403 \begin_layout Standard
4404 Der optionale vertikale Versatz verschiebt die Linie nach oben (oder nach
4405  unten, wenn der Wert negativ ist).
4406  Die Einheiten, die in 
4407 \begin_inset CommandInset ref
4408 LatexCommand ref
4409 reference "tab:Verfügbare-Einheiten"
4410
4411 \end_inset
4412
4413  aufgelistet sind, können für die Werte benutzt werden.
4414  Hier sind zwei Beispiele, die mit den Befehlen
4415 \begin_inset Newline newline
4416 \end_inset
4417
4418
4419 \series bold
4420
4421 \backslash
4422 rule[-2ex]{3cm}{2pt}
4423 \series default
4424  und 
4425 \series bold
4426
4427 \backslash
4428 rule{2cm}{1pt}
4429 \series default
4430  erzeugt wurden:
4431 \end_layout
4432
4433 \begin_layout Standard
4434 Dies ist ein Satz 
4435 \begin_inset Formula $\rule[-2ex]{3cm}{2pt}\rule{2cm}{1pt}$
4436 \end_inset
4437
4438  mit zwei Linien.
4439 \end_layout
4440
4441 \begin_layout Standard
4442
4443 \series bold
4444
4445 \backslash
4446 rule
4447 \series default
4448  kann auch für Text verwendet werden, wenn eine Linie über das Menü 
4449 \family sans
4450 Einfügen\SpecialChar \menuseparator
4451 Formatierung\SpecialChar \menuseparator
4452 Horizontale
4453 \begin_inset space ~
4454 \end_inset
4455
4456 Line
4457 \family default
4458  eingefügt wird:
4459 \end_layout
4460
4461 \begin_layout Standard
4462 Dies ist ein Satz 
4463 \begin_inset CommandInset line
4464 LatexCommand rule
4465 offset "0.5ex"
4466 width "3cm"
4467 height "1pt"
4468
4469 \end_inset
4470
4471  mit einer Linie.
4472 \end_layout
4473
4474 \begin_layout Subsection
4475 Fortsetzungspunkte
4476 \begin_inset CommandInset label
4477 LatexCommand label
4478 name "sub:Fortsetzungspunkte"
4479
4480 \end_inset
4481
4482
4483 \begin_inset Index idx
4484 status collapsed
4485
4486 \begin_layout Plain Layout
4487 Fortsetzungspunkte
4488 \end_layout
4489
4490 \end_inset
4491
4492
4493 \end_layout
4494
4495 \begin_layout Standard
4496 Es gibt unterschiedliche Arten von Fortsetzungspunkten.
4497 \begin_inset Foot
4498 status collapsed
4499
4500 \begin_layout Plain Layout
4501 In der Mathe-Werkzeugleiste zu finden im Untermenü des Knopfs 
4502 \begin_inset Graphics
4503         filename ../../images/math/ldots.png
4504         scale 85
4505
4506 \end_inset
4507
4508
4509 \end_layout
4510
4511 \end_inset
4512
4513  Für Aufzählungen verwendet man unten sitzende Punkte (
4514 \series bold
4515
4516 \backslash
4517 ldots
4518 \series default
4519
4520 \begin_inset Index idx
4521 status collapsed
4522
4523 \begin_layout Plain Layout
4524 Befehle ! L ! 
4525 \backslash
4526 ldots
4527 \end_layout
4528
4529 \end_inset
4530
4531 ), während man für Operationen Punkte braucht, die auf der selben Höhe wie
4532  die Operatoren sind (
4533 \series bold
4534
4535 \backslash
4536 cdots
4537 \series default
4538
4539 \begin_inset Index idx
4540 status collapsed
4541
4542 \begin_layout Plain Layout
4543 Befehle ! C ! 
4544 \backslash
4545 cdots
4546 \end_layout
4547
4548 \end_inset
4549
4550 ).
4551  Verwendet man den Befehl 
4552 \series bold
4553
4554 \backslash
4555 dots
4556 \series default
4557
4558 \begin_inset Index idx
4559 status collapsed
4560
4561 \begin_layout Plain Layout
4562 Befehle ! D ! 
4563 \backslash
4564 dots
4565 \end_layout
4566
4567 \end_inset
4568
4569 , entscheidet LaTeX anhand des nachfolgenden Zeichens, welche Punktart verwendet
4570  wird.
4571 \end_layout
4572
4573 \begin_layout Standard
4574 \align center
4575 \begin_inset Tabular
4576 <lyxtabular version="3" rows="9" columns="2">
4577 <features tabularvalignment="middle">
4578 <column alignment="center" valignment="top" width="0pt">
4579 <column alignment="center" valignment="top" width="0pt">
4580 <row>
4581 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
4582 \begin_inset Text
4583
4584 \begin_layout Plain Layout
4585 Befehl
4586 \end_layout
4587
4588 \end_inset
4589 </cell>
4590 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
4591 \begin_inset Text
4592
4593 \begin_layout Plain Layout
4594 Ergebnis
4595 \end_layout
4596
4597 \end_inset
4598 </cell>
4599 </row>
4600 <row>
4601 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4602 \begin_inset Text
4603
4604 \begin_layout Plain Layout
4605 A_1
4606 \begin_inset ERT
4607 status collapsed
4608
4609 \begin_layout Plain Layout
4610
4611
4612 \backslash
4613 leer 
4614 \end_layout
4615
4616 \end_inset
4617
4618 ,
4619 \backslash
4620 dots
4621 \begin_inset ERT
4622 status collapsed
4623
4624 \begin_layout Plain Layout
4625
4626
4627 \backslash
4628 leer 
4629 \end_layout
4630
4631 \end_inset
4632
4633 ,A_n
4634 \end_layout
4635
4636 \end_inset
4637 </cell>
4638 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4639 \begin_inset Text
4640
4641 \begin_layout Plain Layout
4642 \begin_inset Formula $A_{1},\dots,A_{n}$
4643 \end_inset
4644
4645
4646 \end_layout
4647
4648 \end_inset
4649 </cell>
4650 </row>
4651 <row>
4652 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4653 \begin_inset Text
4654
4655 \begin_layout Plain Layout
4656 A_1
4657 \begin_inset ERT
4658 status collapsed
4659
4660 \begin_layout Plain Layout
4661
4662
4663 \backslash
4664 leer 
4665 \end_layout
4666
4667 \end_inset
4668
4669 +
4670 \backslash
4671 dots
4672 \begin_inset ERT
4673 status collapsed
4674
4675 \begin_layout Plain Layout
4676
4677
4678 \backslash
4679 leer 
4680 \end_layout
4681
4682 \end_inset
4683
4684 +A_n
4685 \end_layout
4686
4687 \end_inset
4688 </cell>
4689 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4690 \begin_inset Text
4691
4692 \begin_layout Plain Layout
4693 \begin_inset Formula $A_{1}+\dots+A_{n}$
4694 \end_inset
4695
4696
4697 \end_layout
4698
4699 \end_inset
4700 </cell>
4701 </row>
4702 <row>
4703 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4704 \begin_inset Text
4705
4706 \begin_layout Plain Layout
4707 A_1
4708 \begin_inset ERT
4709 status collapsed
4710
4711 \begin_layout Plain Layout
4712
4713
4714 \backslash
4715 leer 
4716 \end_layout
4717
4718 \end_inset
4719
4720 ,
4721 \backslash
4722 ldots
4723 \begin_inset ERT
4724 status collapsed
4725
4726 \begin_layout Plain Layout
4727
4728
4729 \backslash
4730 leer 
4731 \end_layout
4732
4733 \end_inset
4734
4735 ,A_n
4736 \end_layout
4737
4738 \end_inset
4739 </cell>
4740 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4741 \begin_inset Text
4742
4743 \begin_layout Plain Layout
4744 \begin_inset Formula $A_{1},\ldots,A_{n}$
4745 \end_inset
4746
4747
4748 \end_layout
4749
4750 \end_inset
4751 </cell>
4752 </row>
4753 <row>
4754 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
4755 \begin_inset Text
4756
4757 \begin_layout Plain Layout
4758 A_1
4759 \begin_inset ERT
4760 status collapsed
4761
4762 \begin_layout Plain Layout
4763
4764
4765 \backslash
4766 leer 
4767 \end_layout
4768
4769 \end_inset
4770
4771 +
4772 \backslash
4773 cdots
4774 \begin_inset ERT
4775 status collapsed
4776
4777 \begin_layout Plain Layout
4778
4779
4780 \backslash
4781 leer 
4782 \end_layout
4783
4784 \end_inset
4785
4786 +A_n
4787 \end_layout
4788
4789 \end_inset
4790 </cell>
4791 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
4792 \begin_inset Text
4793
4794 \begin_layout Plain Layout
4795 \begin_inset Formula $A_{1}+\cdots+A_{n}$
4796 \end_inset
4797
4798
4799 \end_layout
4800
4801 \end_inset
4802 </cell>
4803 </row>
4804 <row>
4805 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4806 \begin_inset Text
4807
4808 \begin_layout Plain Layout
4809
4810 \backslash
4811 vdots
4812 \end_layout
4813
4814 \end_inset
4815 </cell>
4816 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4817 \begin_inset Text
4818
4819 \begin_layout Plain Layout
4820 \begin_inset Formula $\vdots$
4821 \end_inset
4822
4823
4824 \end_layout
4825
4826 \end_inset
4827 </cell>
4828 </row>
4829 <row>
4830 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
4831 \begin_inset Text
4832
4833 \begin_layout Plain Layout
4834
4835 \backslash
4836 ddots
4837 \end_layout
4838
4839 \end_inset
4840 </cell>
4841 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
4842 \begin_inset Text
4843
4844 \begin_layout Plain Layout
4845 \begin_inset Formula $\ddots$
4846 \end_inset
4847
4848
4849 \end_layout
4850
4851 \end_inset
4852 </cell>
4853 </row>
4854 <row>
4855 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
4856 \begin_inset Text
4857
4858 \begin_layout Plain Layout
4859
4860 \backslash
4861 iddots
4862 \end_layout
4863
4864 \end_inset
4865 </cell>
4866 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
4867 \begin_inset Text
4868
4869 \begin_layout Plain Layout
4870 \begin_inset Formula $\iddots$
4871 \end_inset
4872
4873
4874 \end_layout
4875
4876 \end_inset
4877 </cell>
4878 </row>
4879 <row>
4880 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
4881 \begin_inset Text
4882
4883 \begin_layout Plain Layout
4884 3
4885 \series bold
4886 ×
4887 \series default
4888 3
4889 \begin_inset space \thinspace{}
4890 \end_inset
4891
4892 Matrix mit obigen Befehlen
4893 \end_layout
4894
4895 \end_inset
4896 </cell>
4897 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
4898 \begin_inset Text
4899
4900 \begin_layout Plain Layout
4901 \begin_inset Formula $\begin{array}{ccc}
4902 A_{11} & \cdots & A_{1m}\\
4903 \vdots & \ddots & \vdots\\
4904 A_{n1} & \cdots & A_{nm}
4905 \end{array}$
4906 \end_inset
4907
4908
4909 \end_layout
4910
4911 \end_inset
4912 </cell>
4913 </row>
4914 </lyxtabular>
4915
4916 \end_inset
4917
4918
4919 \end_layout
4920
4921 \begin_layout Standard
4922 Die im Menü 
4923 \family sans
4924 Einfügen\SpecialChar \menuseparator
4925 Sonderzeichen
4926 \family default
4927  verfügbaren Fortsetzungspunkte sind 
4928 \series bold
4929
4930 \backslash
4931 ldots
4932 \series default
4933 .
4934 \end_layout
4935
4936 \begin_layout Standard
4937
4938 \lang english
4939 \begin_inset VSpace medskip
4940 \end_inset
4941
4942
4943 \lang ngerman
4944 Um 
4945 \series bold
4946
4947 \backslash
4948 iddots
4949 \series default
4950  nutzen zu können, muss eine der Optionen 
4951 \family sans
4952 Mathdots Paket (automatisch) verwenden 
4953 \family default
4954 in den Dokumenteinstellungen unter 
4955 \family sans
4956 Mathe-Optionen
4957 \family default
4958  gewählt sein.
4959 \begin_inset Newline newline
4960 \end_inset
4961
4962 Die Option 
4963 \family sans
4964 Mathdots Paket verwenden
4965 \family default
4966  verbessert das Aussehen aller Fortsetzungspunkte des Dokuments wenn deren
4967  Schriftstil oder die Schriftgröße nicht Standard sind.
4968 \end_layout
4969
4970 \begin_layout Standard
4971 \begin_inset VSpace medskip
4972 \end_inset
4973
4974 Speziell für Matrizen gibt es Fortsetzungspunkte, die sich über mehrere
4975  Spalten erstrecken.
4976  Man erhält sie mit dem Befehl 
4977 \series bold
4978
4979 \backslash
4980 hdotsfor
4981 \series default
4982
4983 \begin_inset Index idx
4984 status collapsed
4985
4986 \begin_layout Plain Layout
4987 Befehle ! H ! 
4988 \backslash
4989 hdotsfor
4990 \end_layout
4991
4992 \end_inset
4993
4994 , der folgendes Schema besitzt:
4995 \end_layout
4996
4997 \begin_layout Standard
4998
4999 \series bold
5000
5001 \backslash
5002 hdotsfor[Abstand]{Anzahl der Spalten}
5003 \end_layout
5004
5005 \begin_layout Standard
5006 Anzahl der Spalten gibt an, über wie viele Spalten sich die Punkte erstrecken
5007  sollen.
5008  Abstand ist ein Faktor, der den Punktabstand festlegt.
5009 \end_layout
5010
5011 \begin_layout Standard
5012 In folgender Matrix wurde in das erste Kästchen der zweiten Zeile der Befehl
5013  
5014 \series bold
5015
5016 \backslash
5017 hdotsfor[2]{4}
5018 \series default
5019  eingegeben, um Fortsetzungspunkte mit doppelt so großem Punktabstand wie
5020  beim Befehl 
5021 \series bold
5022
5023 \backslash
5024 dots
5025 \series default
5026  zu erhalten:
5027 \begin_inset Formula 
5028 \[
5029 \left(\begin{array}{cccc}
5030 A & B & C & D\\
5031 \hdotsfor[2]{4}\\
5032 q & w & e & r
5033 \end{array}\right)
5034 \]
5035
5036 \end_inset
5037
5038 Es ist zu beachten, dass die Matrixfelder über die sich die Punkte erstrecken
5039  sollen leer sein müssen, ansonsten kommt es zu LaTeX-Fehlern.
5040 \end_layout
5041
5042 \begin_layout Standard
5043 \begin_inset VSpace bigskip
5044 \end_inset
5045
5046 Des Weiteren kann man mit dem Befehl 
5047 \series bold
5048
5049 \backslash
5050 dotfill
5051 \series default
5052
5053 \begin_inset Index idx
5054 status collapsed
5055
5056 \begin_layout Plain Layout
5057 Befehle ! D ! 
5058 \backslash
5059 dotfill
5060 \end_layout
5061
5062 \end_inset
5063
5064  den Rest einer Zeile mit Punkten füllen.
5065  Die Wirkungsweise des Befehls entspricht der von 
5066 \series bold
5067
5068 \backslash
5069 hfill
5070 \series default
5071 , siehe 
5072 \begin_inset CommandInset ref
5073 LatexCommand ref
5074 reference "sub:Variabler-Leerraum"
5075
5076 \end_inset
5077
5078 .
5079 \end_layout
5080
5081 \begin_layout Standard
5082 Z.
5083 \begin_inset space \thinspace{}
5084 \end_inset
5085
5086 B.
5087  ergibt der Befehl 
5088 \series bold
5089 A
5090 \backslash
5091 dotfill
5092 \begin_inset ERT
5093 status collapsed
5094
5095 \begin_layout Plain Layout
5096
5097
5098 \backslash
5099 leer 
5100 \end_layout
5101
5102 \end_inset
5103
5104 B
5105 \end_layout
5106
5107 \begin_layout Standard
5108 \begin_inset Formula $A\dotfill B$
5109 \end_inset
5110
5111
5112 \end_layout
5113
5114 \begin_layout Standard
5115 Analog dazu gibt es für eine Linie den Befehl 
5116 \series bold
5117
5118 \backslash
5119 hrulefill
5120 \series default
5121
5122 \begin_inset Index idx
5123 status collapsed
5124
5125 \begin_layout Plain Layout
5126 Befehle ! H ! 
5127 \backslash
5128 hrulefill
5129 \end_layout
5130
5131 \end_inset
5132
5133 :
5134 \end_layout
5135
5136 \begin_layout Standard
5137 \begin_inset Formula $A\hrulefill B$
5138 \end_inset
5139
5140
5141 \end_layout
5142
5143 \begin_layout Standard
5144 Um die Befehle für Text zu verwenden, müssen sie im TeX-Modus eingegeben
5145  werden.
5146 \end_layout
5147
5148 \begin_layout Section
5149 Matrizen
5150 \begin_inset CommandInset label
5151 LatexCommand label
5152 name "sec:Matrizen"
5153
5154 \end_inset
5155
5156
5157 \begin_inset Index idx
5158 status collapsed
5159
5160 \begin_layout Plain Layout
5161 Matrizen
5162 \end_layout
5163
5164 \end_inset
5165
5166
5167 \end_layout
5168
5169 \begin_layout Standard
5170 Matrizen können über den Mathe-Werkzeugleistenknopf
5171 \family sans
5172  
5173 \family default
5174
5175 \begin_inset Graphics
5176         filename ../../images/dialog-show_mathmatrix.png
5177         scale 85
5178
5179 \end_inset
5180
5181  oder das Menü 
5182 \family sans
5183 Einfügen\SpecialChar \menuseparator
5184 Mathe\SpecialChar \menuseparator
5185 Matrix
5186 \family default
5187  eingefügt werden.
5188  Sie werden nach der Spalten- und Zeilenanzahl, der Ausrichtung und der
5189  Verzierung gefragt.
5190  Die vertikale Ausrichtung ist dabei nur bei Matrizen in eingebetteten Formeln
5191  von Bedeutung:
5192 \end_layout
5193
5194 \begin_layout Standard
5195 Die erste Matrix ist oben 
5196 \begin_inset Formula $\begin{array}[t]{cccc}
5197 A & D & G & J\\
5198 B & E & H & K\\
5199 C & F & I & L
5200 \end{array}$
5201 \end_inset
5202
5203 , die zweite mittig 
5204 \begin_inset Formula $\begin{array}{cccc}
5205 A & D & G & J\\
5206 B & E & H & K\\
5207 C & F & I & L
5208 \end{array}$
5209 \end_inset
5210
5211  und die dritte unten 
5212 \begin_inset Formula $\begin{array}[b]{cccc}
5213 A & D & G & J\\
5214 B & E & H & K\\
5215 C & F & I & L
5216 \end{array}$
5217 \end_inset
5218
5219  ausgerichtet.
5220 \end_layout
5221
5222 \begin_layout Standard
5223 Die horizontale Ausrichtung gibt an, wie die Spalteneinträge ausgerichtet
5224  werden sollen.
5225  Dazu wird für jede Spalte ein Buchstabe eingegeben.
5226  
5227 \emph on
5228 l
5229 \emph default
5230  steht für linksbündig, 
5231 \emph on
5232 c
5233 \emph default
5234  für mittig und 
5235 \emph on
5236 r
5237 \emph default
5238  für rechtsbündig.
5239  Möchte man z.
5240 \begin_inset space \thinspace{}
5241 \end_inset
5242
5243 B.
5244  eine 4
5245 \series bold
5246 ×
5247 \series default
5248 4
5249 \begin_inset space ~
5250 \end_inset
5251
5252 Matrix erstellen, bei der der Inhalt der ersten Spalte linksbündig, der
5253  Inhalt der zweiten und dritten mittig und der Inhalt der letzten rechtsbündig
5254  ausgerichtet ist, gibt man für die horizontale Ausrichtung 
5255 \series bold
5256 lccr
5257 \series default
5258  an.
5259  Normalerweise sind in einer Matrix alle Spalteninhalte zentriert, weswegen
5260  die Voreinstellung für jede Spalte ein 
5261 \series bold
5262 c
5263 \series default
5264  ist.
5265 \end_layout
5266
5267 \begin_layout Standard
5268 Horizontale Ausrichtung:
5269 \end_layout
5270
5271 \begin_layout Standard
5272
5273 \series bold
5274 lll
5275 \series default
5276  : 
5277 \begin_inset Formula $\begin{array}{lll}
5278 10000 & D & G\\
5279 B & 10000 & H\\
5280 C & F & 10000
5281 \end{array}$
5282 \end_inset
5283
5284  , 
5285 \series bold
5286 ccc
5287 \series default
5288  : 
5289 \begin_inset Formula $\begin{array}{ccc}
5290 10000 & D & G\\
5291 B & 10000 & H\\
5292 C & F & 10000
5293 \end{array}$
5294 \end_inset
5295
5296  , 
5297 \series bold
5298 rrr
5299 \series default
5300  : 
5301 \begin_inset Formula $\begin{array}{rrr}
5302 10000 & D & G\\
5303 B & 10000 & H\\
5304 C & F & 10000
5305 \end{array}$
5306 \end_inset
5307
5308
5309 \end_layout
5310
5311 \begin_layout Standard
5312 Um nachträglich Zeilen und Spalten hinzuzufügen oder zu entfernen, kann
5313  man die Mathe-Werkzeugleistenknöpfe 
5314 \begin_inset Graphics
5315         filename ../../images/tabular-feature_append-row.png
5316         scale 85
5317
5318 \end_inset
5319
5320
5321 \begin_inset Graphics
5322         filename ../../images/tabular-feature_delete-row.png
5323         scale 85
5324
5325 \end_inset
5326
5327 , usw.
5328 \begin_inset space \space{}
5329 \end_inset
5330
5331 oder das Menü 
5332 \family sans
5333 Bearbeiten\SpecialChar \menuseparator
5334 Zeilen & Spalten
5335 \family default
5336  verwenden.
5337  Neue Zeilen können auch mit 
5338 \family sans
5339 Strg+Enter
5340 \family default
5341  erstellt werden.
5342 \end_layout
5343
5344 \begin_layout Standard
5345 \begin_inset VSpace bigskip
5346 \end_inset
5347
5348 Die 
5349 \family sans
5350 Verzierung
5351 \family default
5352  fügt Klammern um die Matrix in der ausgewählten Art hinzu.
5353  Alternativ können Klammern entweder mit den Befehlen 
5354 \series bold
5355
5356 \backslash
5357 left
5358 \series default
5359
5360 \begin_inset Index idx
5361 status collapsed
5362
5363 \begin_layout Plain Layout
5364 Befehle ! L ! 
5365 \backslash
5366 left
5367 \end_layout
5368
5369 \end_inset
5370
5371  und 
5372 \series bold
5373
5374 \backslash
5375 right
5376 \series default
5377
5378 \begin_inset Index idx
5379 status collapsed
5380
5381 \begin_layout Plain Layout
5382 Befehle ! R ! 
5383 \backslash
5384 right
5385 \end_layout
5386
5387 \end_inset
5388
5389  erstellt werden (Tastenkürzel 
5390 \family sans
5391 Alt+M
5392 \begin_inset space ~
5393 \end_inset
5394
5395 Klammer
5396 \family default
5397 ), siehe 
5398 \begin_inset CommandInset ref
5399 LatexCommand ref
5400 reference "sub:Automatische-Klammergrößen"
5401
5402 \end_inset
5403
5404 , oder man verwendet folgende Befehle:
5405 \begin_inset VSpace bigskip
5406 \end_inset
5407
5408
5409 \end_layout
5410
5411 \begin_layout Standard
5412 \begin_inset space \hfill{}
5413 \end_inset
5414
5415
5416 \begin_inset Tabular
5417 <lyxtabular version="3" rows="4" columns="2">
5418 <features tabularvalignment="middle">
5419 <column alignment="center" valignment="top" width="0">
5420 <column alignment="center" valignment="top" width="0">
5421 <row>
5422 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
5423 \begin_inset Text
5424
5425 \begin_layout Plain Layout
5426 Befehl
5427 \end_layout
5428
5429 \end_inset
5430 </cell>
5431 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
5432 \begin_inset Text
5433
5434 \begin_layout Plain Layout
5435 Ergebnis
5436 \end_layout
5437
5438 \end_inset
5439 </cell>
5440 </row>
5441 <row>
5442 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5443 \begin_inset Text
5444
5445 \begin_layout Plain Layout
5446
5447 \backslash
5448 bmatrix
5449 \begin_inset ERT
5450 status collapsed
5451
5452 \begin_layout Plain Layout
5453
5454
5455 \backslash
5456 leer 
5457 \end_layout
5458
5459 \end_inset
5460
5461 2
5462 \series bold
5463 ×
5464 \series default
5465 2
5466 \begin_inset space \thinspace{}
5467 \end_inset
5468
5469 Matrix
5470 \end_layout
5471
5472 \end_inset
5473 </cell>
5474 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5475 \begin_inset Text
5476
5477 \begin_layout Plain Layout
5478 \begin_inset Formula $\raisebox{7.5mm}{}\begin{bmatrix}\begin{array}{cc}
5479 0 & \textrm{-}\mathrm{i}\\
5480 \mathrm{i} & 0
5481 \end{array}\end{bmatrix}\raisebox{-5.3mm}{}$
5482 \end_inset
5483
5484
5485 \end_layout
5486
5487 \end_inset
5488 </cell>
5489 </row>
5490 <row>
5491 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5492 \begin_inset Text
5493
5494 \begin_layout Plain Layout
5495
5496 \backslash
5497 Bmatrix
5498 \begin_inset ERT
5499 status collapsed
5500
5501 \begin_layout Plain Layout
5502
5503
5504 \backslash
5505 leer 
5506 \end_layout
5507
5508 \end_inset
5509
5510 2
5511 \series bold
5512 ×
5513 \series default
5514 2
5515 \begin_inset space \thinspace{}
5516 \end_inset
5517
5518 Matrix
5519 \end_layout
5520
5521 \end_inset
5522 </cell>
5523 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5524 \begin_inset Text
5525
5526 \begin_layout Plain Layout
5527 \begin_inset Formula $\raisebox{7.5mm}{}\begin{Bmatrix}\begin{array}{cc}
5528 0 & \textrm{-}\mathrm{i}\\
5529 \mathrm{i} & 0
5530 \end{array}\end{Bmatrix}\raisebox{-5.3mm}{}$
5531 \end_inset
5532
5533
5534 \end_layout
5535
5536 \end_inset
5537 </cell>
5538 </row>
5539 <row>
5540 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
5541 \begin_inset Text
5542
5543 \begin_layout Plain Layout
5544
5545 \backslash
5546 pmatrix
5547 \begin_inset ERT
5548 status collapsed
5549
5550 \begin_layout Plain Layout
5551
5552
5553 \backslash
5554 leer 
5555 \end_layout
5556
5557 \end_inset
5558
5559 2
5560 \series bold
5561 ×
5562 \series default
5563 2
5564 \begin_inset space \thinspace{}
5565 \end_inset
5566
5567 Matrix
5568 \end_layout
5569
5570 \end_inset
5571 </cell>
5572 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
5573 \begin_inset Text
5574
5575 \begin_layout Plain Layout
5576 \begin_inset Formula $\raisebox{7.5mm}{}\begin{pmatrix}\begin{array}{cc}
5577 0 & \textrm{-}\mathrm{i}\\
5578 \mathrm{i} & 0
5579 \end{array}\end{pmatrix}\raisebox{-5.3mm}{}$
5580 \end_inset
5581
5582
5583 \end_layout
5584
5585 \end_inset
5586 </cell>
5587 </row>
5588 </lyxtabular>
5589
5590 \end_inset
5591
5592
5593 \begin_inset space \hfill{}
5594 \end_inset
5595
5596
5597 \begin_inset Tabular
5598 <lyxtabular version="3" rows="4" columns="2">
5599 <features tabularvalignment="middle">
5600 <column alignment="center" valignment="top" width="0">
5601 <column alignment="center" valignment="top" width="0">
5602 <row>
5603 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
5604 \begin_inset Text
5605
5606 \begin_layout Plain Layout
5607 Befehl
5608 \end_layout
5609
5610 \end_inset
5611 </cell>
5612 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
5613 \begin_inset Text
5614
5615 \begin_layout Plain Layout
5616 Ergebnis
5617 \end_layout
5618
5619 \end_inset
5620 </cell>
5621 </row>
5622 <row>
5623 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
5624 \begin_inset Text
5625
5626 \begin_layout Plain Layout
5627
5628 \backslash
5629 vmatrix
5630 \begin_inset ERT
5631 status collapsed
5632
5633 \begin_layout Plain Layout
5634
5635
5636 \backslash
5637 leer 
5638 \end_layout
5639
5640 \end_inset
5641
5642 2
5643 \series bold
5644 ×
5645 \series default
5646 2
5647 \begin_inset space \thinspace{}
5648 \end_inset
5649
5650 Matrix
5651 \end_layout
5652
5653 \end_inset
5654 </cell>
5655 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
5656 \begin_inset Text
5657
5658 \begin_layout Plain Layout
5659 \begin_inset Formula $\raisebox{7.5mm}{}\begin{vmatrix}\begin{array}{cc}
5660 0 & \textrm{-}\mathrm{i}\\
5661 \mathrm{i} & 0
5662 \end{array}\end{vmatrix}\raisebox{-5.3mm}{}$
5663 \end_inset
5664
5665
5666 \end_layout
5667
5668 \end_inset
5669 </cell>
5670 </row>
5671 <row>
5672 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
5673 \begin_inset Text
5674
5675 \begin_layout Plain Layout
5676
5677 \backslash
5678 Vmatrix
5679 \begin_inset ERT
5680 status collapsed
5681
5682 \begin_layout Plain Layout
5683
5684
5685 \backslash
5686 leer 
5687 \end_layout
5688
5689 \end_inset
5690
5691 2
5692 \series bold
5693 ×
5694 \series default
5695 2
5696 \begin_inset space \thinspace{}
5697 \end_inset
5698
5699 Matrix
5700 \end_layout
5701
5702 \end_inset
5703 </cell>
5704 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
5705 \begin_inset Text
5706
5707 \begin_layout Plain Layout
5708 \begin_inset Formula $\raisebox{7.5mm}{}\begin{Vmatrix}\begin{array}{cc}
5709 0 & \textrm{-}\mathrm{i}\\
5710 \mathrm{i} & 0
5711 \end{array}\end{Vmatrix}\raisebox{-5.3mm}{}$
5712 \end_inset
5713
5714
5715 \end_layout
5716
5717 \end_inset
5718 </cell>
5719 </row>
5720 <row>
5721 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
5722 \begin_inset Text
5723
5724 \begin_layout Plain Layout
5725
5726 \backslash
5727 matrix
5728 \begin_inset ERT
5729 status collapsed
5730
5731 \begin_layout Plain Layout
5732
5733
5734 \backslash
5735 leer 
5736 \end_layout
5737
5738 \end_inset
5739
5740 2
5741 \series bold
5742 ×
5743 \series default
5744 2
5745 \begin_inset space \thinspace{}
5746 \end_inset
5747
5748 Matrix
5749 \end_layout
5750
5751 \end_inset
5752 </cell>
5753 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
5754 \begin_inset Text
5755
5756 \begin_layout Plain Layout
5757 \begin_inset Formula $\raisebox{7.5mm}{}\begin{matrix}\begin{array}{cc}
5758 0 & \textrm{-}\mathrm{i}\\
5759 \mathrm{i} & 0
5760 \end{array}\end{matrix}\raisebox{-5.3mm}{}$
5761 \end_inset
5762
5763
5764 \end_layout
5765
5766 \end_inset
5767 </cell>
5768 </row>
5769 </lyxtabular>
5770
5771 \end_inset
5772
5773
5774 \begin_inset space \hfill{}
5775 \end_inset
5776
5777
5778 \end_layout
5779
5780 \begin_layout Standard
5781 \begin_inset VSpace medskip
5782 \end_inset
5783
5784 Wurde z.
5785 \begin_inset space \thinspace{}
5786 \end_inset
5787
5788 B.
5789  
5790 \series bold
5791
5792 \backslash
5793 vmatrix
5794 \series default
5795  eingegeben, erscheint ein blaues Kästchen zwischen zwei senkrechten Strichen,
5796  in das die Matrix eingefügt wird.
5797 \begin_inset Newline newline
5798 \end_inset
5799
5800 Man beachte, dass verzierte Matrizen die vertikale Ausrichtung ignorieren.
5801 \end_layout
5802
5803 \begin_layout Standard
5804 \begin_inset Note Greyedout
5805 status open
5806
5807 \begin_layout Plain Layout
5808
5809 \series bold
5810 Achtung:
5811 \series default
5812  LaTeX limitiert die Anzahl der Matrizenspalten auf 10.
5813  Wenn man mehr als 10
5814 \begin_inset space ~
5815 \end_inset
5816
5817 Spalten benötigt, muss folgende Zeile in die Dokument-Präambel eingefügt
5818  werden:
5819 \end_layout
5820
5821 \begin_layout Plain Layout
5822
5823 \series bold
5824
5825 \backslash
5826 setcounter{MaxMatrixCols}{Anzahl}
5827 \end_layout
5828
5829 \begin_layout Plain Layout
5830 wobei 
5831 \emph on
5832 Anzahl
5833 \emph default
5834  die Anzahl der Spalten zwischen 11 und 99 ist.
5835 \end_layout
5836
5837 \end_inset
5838
5839
5840 \end_layout
5841
5842 \begin_layout Standard
5843 \begin_inset VSpace bigskip
5844 \end_inset
5845
5846 Da alle mehrzeiligen Formeln Matrizen sind, kann man die in 
5847 \begin_inset CommandInset ref
5848 LatexCommand ref
5849 reference "sub:Spaltenabstand"
5850
5851 \end_inset
5852
5853  beschriebene Länge 
5854 \series bold
5855
5856 \backslash
5857 arraycolsep
5858 \series default
5859
5860 \begin_inset Index idx
5861 status collapsed
5862
5863 \begin_layout Plain Layout
5864 Befehle ! A ! 
5865 \backslash
5866 arraycolsep
5867 \end_layout
5868
5869 \end_inset
5870
5871  auch zur Änderung des Spaltenabstands von Matrizen verwenden.
5872 \end_layout
5873
5874 \begin_layout Standard
5875 Möchte man den Zeilenabstand ändern, verwendet man den Befehl 
5876 \series bold
5877
5878 \backslash
5879 arraystretch
5880 \series default
5881
5882 \begin_inset Index idx
5883 status collapsed
5884
5885 \begin_layout Plain Layout
5886 Befehle ! A ! 
5887 \backslash
5888 arraystretch
5889 \end_layout
5890
5891 \end_inset
5892
5893 .
5894  Dieser wird folgendermaßen benutzt:
5895 \end_layout
5896
5897 \begin_layout Standard
5898
5899 \series bold
5900
5901 \backslash
5902 renewcommand{
5903 \backslash
5904 arraystretch}{Dehnungsfaktor}
5905 \begin_inset Index idx
5906 status collapsed
5907
5908 \begin_layout Plain Layout
5909 Befehle ! R ! 
5910 \backslash
5911 renewcommand
5912 \end_layout
5913
5914 \end_inset
5915
5916
5917 \end_layout
5918
5919 \begin_layout Standard
5920 Der Befehl 
5921 \series bold
5922
5923 \backslash
5924 renewcommand
5925 \series default
5926  weist dabei dem vordefinierten Befehl 
5927 \series bold
5928
5929 \backslash
5930 arraystretch
5931 \series default
5932  den Dehnungsfaktor zu.
5933  Möchte man z.
5934 \begin_inset space \thinspace{}
5935 \end_inset
5936
5937 B.
5938  den Zeilenabstand verdoppeln, gibt man für den Faktor eine 2 an.
5939  Dieser wird dann für alle folgenden Matrizen verwendet.
5940  Um wieder zum ursprünglichen Abstand zurückzukehren, weist man 
5941 \series bold
5942
5943 \backslash
5944 arraystretch
5945 \series default
5946  den Faktor 1 zu.
5947 \end_layout
5948
5949 \begin_layout Standard
5950 Um Matrizen in eine Textzeile zu setzen, benutzt man den Befehl 
5951 \series bold
5952
5953 \backslash
5954 smallmatrix
5955 \series default
5956
5957 \begin_inset Index idx
5958 status collapsed
5959
5960 \begin_layout Plain Layout
5961 Befehle ! S ! 
5962 \backslash
5963 smallmatrix
5964 \end_layout
5965
5966 \end_inset
5967
5968 .
5969  Gibt man ihn in eine Formel ein, erscheint ein blaues Kästchen mit zwei
5970  gestrichelten Linien.
5971  In dieses Kästchen wird die Matrix eingegeben.
5972  Man verwendet stattdessen das Menü 
5973 \family sans
5974 Bearbeiten\SpecialChar \menuseparator
5975 Zeilen
5976 \begin_inset space ~
5977 \end_inset
5978
5979 &
5980 \begin_inset space ~
5981 \end_inset
5982
5983 Spalten
5984 \family default
5985  oder die Mathe-Werkzeugleiste um neue Spalten zu erstellen.
5986  Neue Zeilen können auch mit 
5987 \family sans
5988 Strg+Enter
5989 \family default
5990  erstellt werden.
5991 \end_layout
5992
5993 \begin_layout Standard
5994 Dies ist eine Matrix 
5995 \begin_inset Formula $\left(\begin{smallmatrix}A & B\\
5996 C & D
5997 \end{smallmatrix}\right)$
5998 \end_inset
5999
6000  in einer Textzeile.
6001 \end_layout
6002
6003 \begin_layout Section
6004 Klammern und Begrenzungszeichen
6005 \begin_inset Index idx
6006 status collapsed
6007
6008 \begin_layout Plain Layout
6009 Klammern
6010 \end_layout
6011
6012 \end_inset
6013
6014
6015 \begin_inset Index idx
6016 status collapsed
6017
6018 \begin_layout Plain Layout
6019 Begrenzungszeichen
6020 \end_layout
6021
6022 \end_inset
6023
6024
6025 \end_layout
6026
6027 \begin_layout Subsection
6028 Vertikale Klammern und Begrenzungszeichen
6029 \begin_inset Index idx
6030 status collapsed
6031
6032 \begin_layout Plain Layout
6033 Klammern ! vertikale
6034 \end_layout
6035
6036 \end_inset
6037
6038
6039 \end_layout
6040
6041 \begin_layout Standard
6042 \begin_inset space \hfill{}
6043 \end_inset
6044
6045
6046 \begin_inset Tabular
6047 <lyxtabular version="3" rows="9" columns="2">
6048 <features tabularvalignment="middle">
6049 <column alignment="center" valignment="top" width="0pt">
6050 <column alignment="center" valignment="top" width="0pt">
6051 <row>
6052 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
6053 \begin_inset Text
6054
6055 \begin_layout Plain Layout
6056 Befehl
6057 \end_layout
6058
6059 \end_inset
6060 </cell>
6061 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6062 \begin_inset Text
6063
6064 \begin_layout Plain Layout
6065 Ergebnis
6066 \end_layout
6067
6068 \end_inset
6069 </cell>
6070 </row>
6071 <row>
6072 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6073 \begin_inset Text
6074
6075 \begin_layout Plain Layout
6076 (
6077 \end_layout
6078
6079 \end_inset
6080 </cell>
6081 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6082 \begin_inset Text
6083
6084 \begin_layout Plain Layout
6085 \begin_inset Formula $($
6086 \end_inset
6087
6088
6089 \end_layout
6090
6091 \end_inset
6092 </cell>
6093 </row>
6094 <row>
6095 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6096 \begin_inset Text
6097
6098 \begin_layout Plain Layout
6099 {
6100 \end_layout
6101
6102 \end_inset
6103 </cell>
6104 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6105 \begin_inset Text
6106
6107 \begin_layout Plain Layout
6108 \begin_inset Formula $\{$
6109 \end_inset
6110
6111
6112 \end_layout
6113
6114 \end_inset
6115 </cell>
6116 </row>
6117 <row>
6118 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6119 \begin_inset Text
6120
6121 \begin_layout Plain Layout
6122 [
6123 \end_layout
6124
6125 \end_inset
6126 </cell>
6127 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6128 \begin_inset Text
6129
6130 \begin_layout Plain Layout
6131 \begin_inset Formula $[$
6132 \end_inset
6133
6134
6135 \end_layout
6136
6137 \end_inset
6138 </cell>
6139 </row>
6140 <row>
6141 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6142 \begin_inset Text
6143
6144 \begin_layout Plain Layout
6145
6146 \backslash
6147 langle
6148 \end_layout
6149
6150 \end_inset
6151 </cell>
6152 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6153 \begin_inset Text
6154
6155 \begin_layout Plain Layout
6156 \begin_inset Formula $\langle$
6157 \end_inset
6158
6159
6160 \end_layout
6161
6162 \end_inset
6163 </cell>
6164 </row>
6165 <row>
6166 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6167 \begin_inset Text
6168
6169 \begin_layout Plain Layout
6170
6171 \backslash
6172 lceil
6173 \end_layout
6174
6175 \end_inset
6176 </cell>
6177 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6178 \begin_inset Text
6179
6180 \begin_layout Plain Layout
6181 \begin_inset Formula $\lceil$
6182 \end_inset
6183
6184
6185 \end_layout
6186
6187 \end_inset
6188 </cell>
6189 </row>
6190 <row>
6191 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6192 \begin_inset Text
6193
6194 \begin_layout Plain Layout
6195
6196 \backslash
6197 lfloor
6198 \end_layout
6199
6200 \end_inset
6201 </cell>
6202 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6203 \begin_inset Text
6204
6205 \begin_layout Plain Layout
6206 \begin_inset Formula $\lfloor$
6207 \end_inset
6208
6209
6210 \end_layout
6211
6212 \end_inset
6213 </cell>
6214 </row>
6215 <row>
6216 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6217 \begin_inset Text
6218
6219 \begin_layout Plain Layout
6220 /
6221 \end_layout
6222
6223 \end_inset
6224 </cell>
6225 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6226 \begin_inset Text
6227
6228 \begin_layout Plain Layout
6229 \begin_inset Formula $/$
6230 \end_inset
6231
6232
6233 \end_layout
6234
6235 \end_inset
6236 </cell>
6237 </row>
6238 <row>
6239 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
6240 \begin_inset Text
6241
6242 \begin_layout Plain Layout
6243 |
6244 \end_layout
6245
6246 \end_inset
6247 </cell>
6248 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6249 \begin_inset Text
6250
6251 \begin_layout Plain Layout
6252 \begin_inset Formula $|$
6253 \end_inset
6254
6255
6256 \end_layout
6257
6258 \end_inset
6259 </cell>
6260 </row>
6261 </lyxtabular>
6262
6263 \end_inset
6264
6265
6266 \begin_inset space \hfill{}
6267 \end_inset
6268
6269
6270 \begin_inset Tabular
6271 <lyxtabular version="3" rows="9" columns="2">
6272 <features tabularvalignment="middle">
6273 <column alignment="center" valignment="top" width="0pt">
6274 <column alignment="center" valignment="top" width="0pt">
6275 <row>
6276 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
6277 \begin_inset Text
6278
6279 \begin_layout Plain Layout
6280 Befehl
6281 \end_layout
6282
6283 \end_inset
6284 </cell>
6285 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6286 \begin_inset Text
6287
6288 \begin_layout Plain Layout
6289 Ergebnis
6290 \end_layout
6291
6292 \end_inset
6293 </cell>
6294 </row>
6295 <row>
6296 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6297 \begin_inset Text
6298
6299 \begin_layout Plain Layout
6300 )
6301 \end_layout
6302
6303 \end_inset
6304 </cell>
6305 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6306 \begin_inset Text
6307
6308 \begin_layout Plain Layout
6309 \begin_inset Formula $)$
6310 \end_inset
6311
6312
6313 \end_layout
6314
6315 \end_inset
6316 </cell>
6317 </row>
6318 <row>
6319 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6320 \begin_inset Text
6321
6322 \begin_layout Plain Layout
6323 }
6324 \end_layout
6325
6326 \end_inset
6327 </cell>
6328 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6329 \begin_inset Text
6330
6331 \begin_layout Plain Layout
6332 \begin_inset Formula $\}$
6333 \end_inset
6334
6335
6336 \end_layout
6337
6338 \end_inset
6339 </cell>
6340 </row>
6341 <row>
6342 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6343 \begin_inset Text
6344
6345 \begin_layout Plain Layout
6346 ]
6347 \end_layout
6348
6349 \end_inset
6350 </cell>
6351 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6352 \begin_inset Text
6353
6354 \begin_layout Plain Layout
6355 \begin_inset Formula $]$
6356 \end_inset
6357
6358
6359 \end_layout
6360
6361 \end_inset
6362 </cell>
6363 </row>
6364 <row>
6365 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6366 \begin_inset Text
6367
6368 \begin_layout Plain Layout
6369
6370 \backslash
6371 rangle
6372 \end_layout
6373
6374 \end_inset
6375 </cell>
6376 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6377 \begin_inset Text
6378
6379 \begin_layout Plain Layout
6380 \begin_inset Formula $\rangle$
6381 \end_inset
6382
6383
6384 \end_layout
6385
6386 \end_inset
6387 </cell>
6388 </row>
6389 <row>
6390 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6391 \begin_inset Text
6392
6393 \begin_layout Plain Layout
6394
6395 \backslash
6396 rceil
6397 \end_layout
6398
6399 \end_inset
6400 </cell>
6401 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6402 \begin_inset Text
6403
6404 \begin_layout Plain Layout
6405 \begin_inset Formula $\rceil$
6406 \end_inset
6407
6408
6409 \end_layout
6410
6411 \end_inset
6412 </cell>
6413 </row>
6414 <row>
6415 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6416 \begin_inset Text
6417
6418 \begin_layout Plain Layout
6419
6420 \backslash
6421 rfloor
6422 \end_layout
6423
6424 \end_inset
6425 </cell>
6426 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6427 \begin_inset Text
6428
6429 \begin_layout Plain Layout
6430 \begin_inset Formula $\rfloor$
6431 \end_inset
6432
6433
6434 \end_layout
6435
6436 \end_inset
6437 </cell>
6438 </row>
6439 <row>
6440 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6441 \begin_inset Text
6442
6443 \begin_layout Plain Layout
6444
6445 \backslash
6446
6447 \backslash
6448
6449 \end_layout
6450
6451 \end_inset
6452 </cell>
6453 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6454 \begin_inset Text
6455
6456 \begin_layout Plain Layout
6457 \begin_inset Formula $\backslash$
6458 \end_inset
6459
6460
6461 \end_layout
6462
6463 \end_inset
6464 </cell>
6465 </row>
6466 <row>
6467 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
6468 \begin_inset Text
6469
6470 \begin_layout Plain Layout
6471
6472 \backslash
6473 |
6474 \end_layout
6475
6476 \end_inset
6477 </cell>
6478 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6479 \begin_inset Text
6480
6481 \begin_layout Plain Layout
6482 \begin_inset Formula $\|$
6483 \end_inset
6484
6485
6486 \end_layout
6487
6488 \end_inset
6489 </cell>
6490 </row>
6491 </lyxtabular>
6492
6493 \end_inset
6494
6495
6496 \begin_inset space \hfill{}
6497 \end_inset
6498
6499
6500 \end_layout
6501
6502 \begin_layout Standard
6503
6504 \series medium
6505 \begin_inset Note Greyedout
6506 status open
6507
6508 \begin_layout Plain Layout
6509
6510 \series bold
6511 Achtung:
6512 \series default
6513  Im TeX-Modus muss für den Backslash der Befehl 
6514 \series bold
6515
6516 \backslash
6517 textbackslash
6518 \series default
6519
6520 \begin_inset Index idx
6521 status collapsed
6522
6523 \begin_layout Plain Layout
6524 Befehle ! T ! 
6525 \backslash
6526 textbackslash
6527 \end_layout
6528
6529 \end_inset
6530
6531  verwendet werden, denn der Befehl 
6532 \series bold
6533
6534 \backslash
6535
6536 \backslash
6537
6538 \series default
6539  steht dort für einen Zeilenumbruch.
6540 \end_layout
6541
6542 \end_inset
6543
6544
6545 \end_layout
6546
6547 \begin_layout Standard
6548 Für alle oben aufgelisteten Zeichen kann die Größe mit den in den folgenden
6549  zwei Unterkapiteln beschriebenen Befehlen eingestellt werden.
6550  Dabei können dann statt den Befehlen 
6551 \series bold
6552
6553 \backslash
6554 langle
6555 \series default
6556  und 
6557 \series bold
6558
6559 \backslash
6560 rangle
6561 \series default
6562  direkt die Zeichen < und > verwendet werden.
6563 \end_layout
6564
6565 \begin_layout Subsubsection
6566 Manuelle Klammergrößen
6567 \begin_inset CommandInset label
6568 LatexCommand label
6569 name "sub:Manuelle-Klammergrößen"
6570
6571 \end_inset
6572
6573
6574 \begin_inset Index idx
6575 status collapsed
6576
6577 \begin_layout Plain Layout
6578 Klammergrößen ! manuelle
6579 \end_layout
6580
6581 \end_inset
6582
6583
6584 \end_layout
6585
6586 \begin_layout Standard
6587 Möchte man die Klammergröße manuell festlegen, kann man dies mittels der
6588  LaTeX-Befehle 
6589 \series bold
6590
6591 \backslash
6592 big
6593 \series default
6594
6595 \begin_inset Index idx
6596 status collapsed
6597
6598 \begin_layout Plain Layout
6599 Befehle ! B ! 
6600 \backslash
6601 big
6602 \end_layout
6603
6604 \end_inset
6605
6606
6607 \series bold
6608
6609 \backslash
6610 Big
6611 \series default
6612
6613 \series bold
6614
6615 \backslash
6616 bigg
6617 \series default
6618  und 
6619 \series bold
6620
6621 \backslash
6622 Bigg
6623 \series default
6624  tun.
6625  
6626 \series bold
6627
6628 \backslash
6629 big
6630 \series default
6631  steht hierbei für die kleinste und 
6632 \series bold
6633
6634 \backslash
6635 Bigg
6636 \series default
6637  für die größte Klammergröße.
6638 \end_layout
6639
6640 \begin_layout Standard
6641 Diese Befehle werden benutzt um Klammerebenen optisch hervorzuheben:
6642 \end_layout
6643
6644 \begin_layout Standard
6645 \align center
6646 \begin_inset Tabular
6647 <lyxtabular version="3" rows="2" columns="2">
6648 <features tabularvalignment="middle">
6649 <column alignment="center" valignment="top" width="0pt">
6650 <column alignment="center" valignment="top" width="0pt">
6651 <row>
6652 <cell alignment="center" valignment="top" usebox="none">
6653 \begin_inset Text
6654
6655 \begin_layout Plain Layout
6656 einheitliche Klammergröße:
6657 \end_layout
6658
6659 \end_inset
6660 </cell>
6661 <cell alignment="center" valignment="top" usebox="none">
6662 \begin_inset Text
6663
6664 \begin_layout Plain Layout
6665 \begin_inset Formula $((A+B)(A-B))^{C}\raisebox{-4mm}{}$
6666 \end_inset
6667
6668
6669 \end_layout
6670
6671 \end_inset
6672 </cell>
6673 </row>
6674 <row>
6675 <cell alignment="center" valignment="top" usebox="none">
6676 \begin_inset Text
6677
6678 \begin_layout Plain Layout
6679 besser sieht das so aus:
6680 \end_layout
6681
6682 \end_inset
6683 </cell>
6684 <cell alignment="center" valignment="top" usebox="none">
6685 \begin_inset Text
6686
6687 \begin_layout Plain Layout
6688 \begin_inset Formula $\Big((A+B)(A-B)\Big)^{C}$
6689 \end_inset
6690
6691
6692 \end_layout
6693
6694 \end_inset
6695 </cell>
6696 </row>
6697 </lyxtabular>
6698
6699 \end_inset
6700
6701
6702 \begin_inset Note Note
6703 status collapsed
6704
6705 \begin_layout Plain Layout
6706
6707 \series bold
6708
6709 \backslash
6710 raisebox
6711 \series default
6712  dient nur
6713 \end_layout
6714
6715 \begin_layout Plain Layout
6716 als Abstandhalter.
6717 \end_layout
6718
6719 \end_inset
6720
6721
6722 \end_layout
6723
6724 \begin_layout Standard
6725 Für die zweite Formel wurde der Befehl 
6726 \series bold
6727
6728 \backslash
6729 Big((A+B)(A-B)
6730 \backslash
6731 Big)^
6732 \begin_inset ERT
6733 status collapsed
6734
6735 \begin_layout Plain Layout
6736
6737
6738 \backslash
6739 leer 
6740 \end_layout
6741
6742 \end_inset
6743
6744 C
6745 \series default
6746  verwendet.
6747 \end_layout
6748
6749 \begin_layout Standard
6750 Hier alle Klammergrößen in der Übersicht:
6751 \end_layout
6752
6753 \begin_layout Standard
6754 \align center
6755
6756 \backslash
6757 Bigg(
6758 \backslash
6759 exp
6760 \backslash
6761 bigg<
6762 \backslash
6763 Big[
6764 \backslash
6765 big{
6766 \backslash
6767 ln(3x)
6768 \backslash
6769 big}^2
6770 \begin_inset ERT
6771 status collapsed
6772
6773 \begin_layout Plain Layout
6774
6775
6776 \backslash
6777 leer 
6778 \end_layout
6779
6780 \end_inset
6781
6782
6783 \backslash
6784 sin(x)
6785 \backslash
6786 Big]^
6787 \begin_inset ERT
6788 status collapsed
6789
6790 \begin_layout Plain Layout
6791
6792
6793 \backslash
6794 leer 
6795 \end_layout
6796
6797 \end_inset
6798
6799 A
6800 \begin_inset ERT
6801 status collapsed
6802
6803 \begin_layout Plain Layout
6804
6805
6806 \backslash
6807 leer 
6808 \end_layout
6809
6810 \end_inset
6811
6812
6813 \backslash
6814 bigg>
6815 \backslash
6816 Bigg)^0,5
6817 \end_layout
6818
6819 \begin_layout Standard
6820 \align center
6821 \begin_inset Formula $\Bigg(\exp\bigg<\Big[\big\{\ln(3x)\big\}^{2}\sin(x)\Big]^{A}\bigg>\Bigg)^{0,5}$
6822 \end_inset
6823
6824
6825 \end_layout
6826
6827 \begin_layout Standard
6828 Es gibt außer den 
6829 \series bold
6830
6831 \backslash
6832 big
6833 \series default
6834 -Befehlen noch die Variante 
6835 \series bold
6836
6837 \backslash
6838 bigm
6839 \series default
6840
6841 \begin_inset Index idx
6842 status collapsed
6843
6844 \begin_layout Plain Layout
6845 Befehle ! B ! 
6846 \backslash
6847 bigm
6848 \end_layout
6849
6850 \end_inset
6851
6852 , die etwas mehr Leerraum zwischen Klammer und Klammerinhalt erzeugt und
6853  die Variante 
6854 \series bold
6855
6856 \backslash
6857 bigl
6858 \series default
6859 -
6860 \series bold
6861
6862 \backslash
6863 bigr
6864 \series default
6865
6866 \begin_inset Index idx
6867 status collapsed
6868
6869 \begin_layout Plain Layout
6870 Befehle ! B ! 
6871 \backslash
6872 bigl - 
6873 \backslash
6874 bigr
6875 \end_layout
6876
6877 \end_inset
6878
6879 , die keinen zusätzlichen Leerraum erzeugt.
6880  Das 
6881 \emph on
6882 l
6883 \emph default
6884  am Ende des Befehls 
6885 \series bold
6886
6887 \backslash
6888 bigl
6889 \series default
6890  steht für eine linke Klammer; für eine rechte Klammer wird dieses durch
6891  ein 
6892 \emph on
6893 r
6894 \emph default
6895  ersetzt.
6896  Eine linke oder rechte Klammer kann je eine öffnende oder schließende Klammer
6897  sein.
6898 \end_layout
6899
6900 \begin_layout Standard
6901 In der folgenden Tabelle sind die Varianten miteinander verglichen:
6902 \end_layout
6903
6904 \begin_layout Standard
6905 \align center
6906 \begin_inset Tabular
6907 <lyxtabular version="3" rows="5" columns="2">
6908 <features tabularvalignment="middle">
6909 <column alignment="center" valignment="middle" width="0">
6910 <column alignment="center" valignment="middle" width="0">
6911 <row>
6912 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
6913 \begin_inset Text
6914
6915 \begin_layout Plain Layout
6916 Befehl
6917 \end_layout
6918
6919 \end_inset
6920 </cell>
6921 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
6922 \begin_inset Text
6923
6924 \begin_layout Plain Layout
6925 Ergebnis
6926 \begin_inset Note Note
6927 status collapsed
6928
6929 \begin_layout Plain Layout
6930
6931 \series bold
6932
6933 \backslash
6934 raisebox
6935 \series default
6936  dient nur als Abstandhalter.
6937 \end_layout
6938
6939 \end_inset
6940
6941
6942 \end_layout
6943
6944 \end_inset
6945 </cell>
6946 </row>
6947 <row>
6948 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6949 \begin_inset Text
6950
6951 \begin_layout Plain Layout
6952
6953 \backslash
6954 Bigm(
6955 \backslash
6956 bigm(
6957 \backslash
6958 ln(3x)
6959 \backslash
6960 bigm)^2
6961 \begin_inset ERT
6962 status collapsed
6963
6964 \begin_layout Plain Layout
6965
6966
6967 \backslash
6968 leer 
6969 \end_layout
6970
6971 \end_inset
6972
6973
6974 \backslash
6975 Bigm)
6976 \end_layout
6977
6978 \end_inset
6979 </cell>
6980 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
6981 \begin_inset Text
6982
6983 \begin_layout Plain Layout
6984 \begin_inset Formula $\raisebox{5.5mm}{}\Bigm(\bigm(\ln(3x)\bigm)^{2}\Bigm)\raisebox{-3.25mm}{}$
6985 \end_inset
6986
6987
6988 \end_layout
6989
6990 \end_inset
6991 </cell>
6992 </row>
6993 <row>
6994 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
6995 \begin_inset Text
6996
6997 \begin_layout Plain Layout
6998
6999 \backslash
7000 Big(
7001 \backslash
7002 big(
7003 \backslash
7004 ln(3x)
7005 \backslash
7006 big)^2
7007 \begin_inset ERT
7008 status collapsed
7009
7010 \begin_layout Plain Layout
7011
7012
7013 \backslash
7014 leer 
7015 \end_layout
7016
7017 \end_inset
7018
7019
7020 \backslash
7021 Big)
7022 \end_layout
7023
7024 \end_inset
7025 </cell>
7026 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7027 \begin_inset Text
7028
7029 \begin_layout Plain Layout
7030 \begin_inset Formula $\raisebox{5.5mm}{}\Big(\big(\ln(3x)\big)^{2}\Big)\raisebox{-3.25mm}{}$
7031 \end_inset
7032
7033
7034 \end_layout
7035
7036 \end_inset
7037 </cell>
7038 </row>
7039 <row>
7040 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
7041 \begin_inset Text
7042
7043 \begin_layout Plain Layout
7044
7045 \backslash
7046 Bigl(
7047 \backslash
7048 bigl(
7049 \backslash
7050 ln(3x)
7051 \backslash
7052 bigr)^2
7053 \begin_inset ERT
7054 status collapsed
7055
7056 \begin_layout Plain Layout
7057
7058
7059 \backslash
7060 leer 
7061 \end_layout
7062
7063 \end_inset
7064
7065
7066 \backslash
7067 Bigr)
7068 \end_layout
7069
7070 \end_inset
7071 </cell>
7072 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
7073 \begin_inset Text
7074
7075 \begin_layout Plain Layout
7076 \begin_inset Formula $\raisebox{5.5mm}{}\Bigl(\bigl(\ln(3x)\bigr)^{2}\Bigr)\raisebox{-3.25mm}{}$
7077 \end_inset
7078
7079
7080 \end_layout
7081
7082 \end_inset
7083 </cell>
7084 </row>
7085 <row>
7086 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
7087 \begin_inset Text
7088
7089 \begin_layout Plain Layout
7090
7091 \backslash
7092 bigl)
7093 \backslash
7094 ln(3x)
7095 \backslash
7096 bigr(
7097 \end_layout
7098
7099 \end_inset
7100 </cell>
7101 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
7102 \begin_inset Text
7103
7104 \begin_layout Plain Layout
7105 \begin_inset Formula $\raisebox{4.5mm}{}\bigl)\ln(3x)\bigr(\raisebox{-2mm}{}$
7106 \end_inset
7107
7108
7109 \end_layout
7110
7111 \end_inset
7112 </cell>
7113 </row>
7114 </lyxtabular>
7115
7116 \end_inset
7117
7118
7119 \end_layout
7120
7121 \begin_layout Subsubsection
7122 Automatische Klammergrößen
7123 \begin_inset CommandInset label
7124 LatexCommand label
7125 name "sub:Automatische-Klammergrößen"
7126
7127 \end_inset
7128
7129
7130 \begin_inset Index idx
7131 status collapsed
7132
7133 \begin_layout Plain Layout
7134 Klammergrößen ! automatische
7135 \end_layout
7136
7137 \end_inset
7138
7139
7140 \end_layout
7141
7142 \begin_layout Standard
7143 Klammern variabler Größe können mit den Befehlen 
7144 \series bold
7145
7146 \backslash
7147 left
7148 \series default
7149
7150 \begin_inset Index idx
7151 status collapsed
7152
7153 \begin_layout Plain Layout
7154 Befehle ! L ! 
7155 \backslash
7156 left
7157 \end_layout
7158
7159 \end_inset
7160
7161  und 
7162 \series bold
7163
7164 \backslash
7165 right
7166 \series default
7167
7168 \begin_inset Index idx
7169 status collapsed
7170
7171 \begin_layout Plain Layout
7172 Befehle ! R ! 
7173 \backslash
7174 right
7175 \end_layout
7176
7177 \end_inset
7178
7179  oder über den Mathe-Werkzeugleistenknopf
7180 \family sans
7181  
7182 \family default
7183
7184 \begin_inset Graphics
7185         filename ../../images/dialog-show_mathdelimiter.png
7186         scale 85
7187
7188 \end_inset
7189
7190  eingefügt werden.
7191  Auf 
7192 \series bold
7193
7194 \backslash
7195 left
7196 \series default
7197  und 
7198 \series bold
7199
7200 \backslash
7201 right
7202 \series default
7203  muss unmittelbar die gewünschte Klammer folgen.
7204  Die Klammergröße wird dann bei der Ausgabe automatisch berechnet.
7205 \end_layout
7206
7207 \begin_layout Standard
7208 \align center
7209 normale Klammer: Der Befehl 
7210 \series bold
7211
7212 \backslash
7213 ln(
7214 \backslash
7215 frac
7216 \begin_inset ERT
7217 status collapsed
7218
7219 \begin_layout Plain Layout
7220
7221
7222 \backslash
7223 leer 
7224 \end_layout
7225
7226 \end_inset
7227
7228 A
7229 \begin_inset Formula $\downarrow$
7230 \end_inset
7231
7232 C
7233 \begin_inset ERT
7234 status collapsed
7235
7236 \begin_layout Plain Layout
7237
7238
7239 \backslash
7240 leer 
7241 \end_layout
7242
7243 \end_inset
7244
7245 )
7246 \series default
7247  ergibt
7248 \begin_inset Formula 
7249 \[
7250 \ln(\frac{A}{C})
7251 \]
7252
7253 \end_inset
7254
7255
7256 \end_layout
7257
7258 \begin_layout Standard
7259 \align center
7260 mehrzeilige Klammer: Der Befehl 
7261 \series bold
7262
7263 \backslash
7264 ln
7265 \backslash
7266 left(
7267 \backslash
7268 frac
7269 \begin_inset ERT
7270 status collapsed
7271
7272 \begin_layout Plain Layout
7273
7274
7275 \backslash
7276 leer 
7277 \end_layout
7278
7279 \end_inset
7280
7281 A
7282 \begin_inset Formula $\downarrow$
7283 \end_inset
7284
7285 C
7286 \begin_inset ERT
7287 status collapsed
7288
7289 \begin_layout Plain Layout
7290
7291
7292 \backslash
7293 leer 
7294 \end_layout
7295
7296 \end_inset
7297
7298
7299 \backslash
7300 right)
7301 \series default
7302  ergibt
7303 \begin_inset Formula 
7304 \[
7305 \ln\left(\frac{A}{C}\right)
7306 \]
7307
7308 \end_inset
7309
7310
7311 \end_layout
7312
7313 \begin_layout Standard
7314 An Stelle von 
7315 \series bold
7316
7317 \backslash
7318 left
7319 \series default
7320  und 
7321 \series bold
7322
7323 \backslash
7324 right
7325 \series default
7326  kann man die Tastenkürzel 
7327 \family sans
7328 Alt+M
7329 \begin_inset space ~
7330 \end_inset
7331
7332 Klammer
7333 \family default
7334  verwenden.
7335  Das hat den Vorteil, dass man in LyX sofort die wahre Klammergröße sieht
7336  und dass die rechte Klammer gleich mit erstellt wird.
7337 \begin_inset Newline newline
7338 \end_inset
7339
7340 Der Befehl für das letzte Beispiel würde dann lauten: 
7341 \series bold
7342
7343 \backslash
7344 ln Alt+M
7345 \series default
7346  
7347 \series bold
7348 (
7349 \backslash
7350 frac
7351 \begin_inset ERT
7352 status collapsed
7353
7354 \begin_layout Plain Layout
7355
7356
7357 \backslash
7358 leer 
7359 \end_layout
7360
7361 \end_inset
7362
7363 A
7364 \begin_inset Formula $\downarrow$
7365 \end_inset
7366
7367 C
7368 \end_layout
7369
7370 \begin_layout Standard
7371 Will man nur eine Klammerhälfte erstellen, schreibt man für die weggelassene
7372  Klammer einen Punkt.
7373  So ergibt z.
7374 \begin_inset space \thinspace{}
7375 \end_inset
7376
7377 B.
7378  der Befehl 
7379 \series bold
7380
7381 \backslash
7382 left.
7383 \backslash
7384 frac
7385 \begin_inset ERT
7386 status collapsed
7387
7388 \begin_layout Plain Layout
7389
7390
7391 \backslash
7392 leer 
7393 \end_layout
7394
7395 \end_inset
7396
7397 A
7398 \begin_inset Formula $\downarrow$
7399 \end_inset
7400
7401 B
7402 \begin_inset ERT
7403 status collapsed
7404
7405 \begin_layout Plain Layout
7406
7407
7408 \backslash
7409 leer 
7410 \end_layout
7411
7412 \end_inset
7413
7414
7415 \backslash
7416 right}
7417 \series default
7418
7419 \begin_inset space \thinspace{}
7420 \end_inset
7421
7422 :
7423 \series bold
7424
7425 \begin_inset Formula 
7426 \[
7427 \left.\frac{A}{B}\right\} 
7428 \]
7429
7430 \end_inset
7431
7432
7433 \series default
7434 Die Befehle 
7435 \series bold
7436
7437 \backslash
7438 left
7439 \series default
7440  und 
7441 \series bold
7442
7443 \backslash
7444 right
7445 \series default
7446  werden beim Neu laden des Dokuments von LyX in Klammern der richtigen Größe
7447  umgewandelt.
7448  Für eine weggelassene Klammer erscheint in LyX eine gestrichelte Linie.
7449 \end_layout
7450
7451 \begin_layout Standard
7452 \begin_inset VSpace bigskip
7453 \end_inset
7454
7455 Da alle gängigen LaTeX-Distributionen eTeX, eine Erweiterung von LaTeX,
7456  verwenden, steht für alle Klammern und Begrenzungszeichen zusätzlich der
7457  Befehl 
7458 \series bold
7459
7460 \backslash
7461 middle
7462 \series default
7463
7464 \begin_inset Index idx
7465 status collapsed
7466
7467 \begin_layout Plain Layout
7468 Befehle ! M ! 
7469 \backslash
7470 middle
7471 \end_layout
7472
7473 \end_inset
7474
7475  zur Verfügung.
7476  Durch diesen wird das folgende Zeichen an die Höhe der umgebenden Klammern
7477  angepasst, was z.
7478 \begin_inset space \thinspace{}
7479 \end_inset
7480
7481 B.
7482  für physikalische Vektoren von Nutzen ist:
7483 \begin_inset Formula 
7484 \[
7485 \left\langle \phi\:\middle|\: J=\frac{3}{2}\,,\, M_{J}\right\rangle 
7486 \]
7487
7488 \end_inset
7489
7490 Für physikalische Vektoren gibt es ein spezielles LaTeX-Paket, das in 
7491 \begin_inset CommandInset ref
7492 LatexCommand ref
7493 reference "sub:Physikalische-Vektoren"
7494
7495 \end_inset
7496
7497  beschrieben ist.
7498 \end_layout
7499
7500 \begin_layout Subsection
7501 Horizontale Klammern
7502 \begin_inset Index idx
7503 status collapsed
7504
7505 \begin_layout Plain Layout
7506 Klammern ! horizontale
7507 \end_layout
7508
7509 \end_inset
7510
7511
7512 \end_layout
7513
7514 \begin_layout Standard
7515 \align center
7516 \begin_inset Tabular
7517 <lyxtabular version="3" rows="4" columns="2">
7518 <features tabularvalignment="middle">
7519 <column alignment="center" valignment="top" width="0pt">
7520 <column alignment="center" valignment="top" width="0pt">
7521 <row>
7522 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
7523 \begin_inset Text
7524
7525 \begin_layout Plain Layout
7526 Befehl
7527 \begin_inset Note Note
7528 status collapsed
7529
7530 \begin_layout Plain Layout
7531
7532 \series bold
7533
7534 \backslash
7535 raisebox
7536 \series default
7537  dient nur als Abstandhalter.
7538 \end_layout
7539
7540 \end_inset
7541
7542
7543 \end_layout
7544
7545 \end_inset
7546 </cell>
7547 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
7548 \begin_inset Text
7549
7550 \begin_layout Plain Layout
7551 Ergebnis
7552 \end_layout
7553
7554 \end_inset
7555 </cell>
7556 </row>
7557 <row>
7558 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
7559 \begin_inset Text
7560
7561 \begin_layout Plain Layout
7562 \begin_inset ERT
7563 status collapsed
7564
7565 \begin_layout Plain Layout
7566
7567
7568 \backslash
7569 raisebox{2.3mm}{
7570 \end_layout
7571
7572 \end_inset
7573
7574
7575 \backslash
7576 overbrace
7577 \begin_inset ERT
7578 status collapsed
7579
7580 \begin_layout Plain Layout
7581
7582
7583 \backslash
7584 leer 
7585 \end_layout
7586
7587 \end_inset
7588
7589 A+B
7590 \begin_inset ERT
7591 status collapsed
7592
7593 \begin_layout Plain Layout
7594
7595
7596 \backslash
7597 leer 
7598 \end_layout
7599
7600 \end_inset
7601
7602 ^
7603 \begin_inset ERT
7604 status collapsed
7605
7606 \begin_layout Plain Layout
7607
7608
7609 \backslash
7610 leer 
7611 \end_layout
7612
7613 \end_inset
7614
7615 3
7616 \begin_inset ERT
7617 status collapsed
7618
7619 \begin_layout Plain Layout
7620
7621 }
7622 \end_layout
7623
7624 \end_inset
7625
7626
7627 \begin_inset Index idx
7628 status collapsed
7629
7630 \begin_layout Plain Layout
7631 Befehle ! O ! 
7632 \backslash
7633 overbrace
7634 \end_layout
7635
7636 \end_inset
7637
7638
7639 \end_layout
7640
7641 \end_inset
7642 </cell>
7643 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
7644 \begin_inset Text
7645
7646 \begin_layout Plain Layout
7647 \begin_inset Formula $\overbrace{A+B}^{3}$
7648 \end_inset
7649
7650
7651 \end_layout
7652
7653 \end_inset
7654 </cell>
7655 </row>
7656 <row>
7657 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
7658 \begin_inset Text
7659
7660 \begin_layout Plain Layout
7661 \begin_inset ERT
7662 status collapsed
7663
7664 \begin_layout Plain Layout
7665
7666
7667 \backslash
7668 raisebox{-2.2mm}{
7669 \end_layout
7670
7671 \end_inset
7672
7673
7674 \backslash
7675 underbrace
7676 \begin_inset ERT
7677 status collapsed
7678
7679 \begin_layout Plain Layout
7680
7681
7682 \backslash
7683 leer 
7684 \end_layout
7685
7686 \end_inset
7687
7688 A+B
7689 \begin_inset ERT
7690 status collapsed
7691
7692 \begin_layout Plain Layout
7693
7694
7695 \backslash
7696 leer 
7697 \end_layout
7698
7699 \end_inset
7700
7701 _5
7702 \begin_inset ERT
7703 status collapsed
7704
7705 \begin_layout Plain Layout
7706
7707 }
7708 \end_layout
7709
7710 \end_inset
7711
7712
7713 \begin_inset Index idx
7714 status collapsed
7715
7716 \begin_layout Plain Layout
7717 Befehle ! U ! 
7718 \backslash
7719 underbrace
7720 \end_layout
7721
7722 \end_inset
7723
7724
7725 \end_layout
7726
7727 \end_inset
7728 </cell>
7729 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
7730 \begin_inset Text
7731
7732 \begin_layout Plain Layout
7733 \begin_inset Formula $\underbrace{A+B}_{5}$
7734 \end_inset
7735
7736
7737 \end_layout
7738
7739 \end_inset
7740 </cell>
7741 </row>
7742 <row>
7743 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
7744 \begin_inset Text
7745
7746 \begin_layout Plain Layout
7747
7748 \backslash
7749 overbrace
7750 \begin_inset ERT
7751 status collapsed
7752
7753 \begin_layout Plain Layout
7754
7755
7756 \backslash
7757 leer 
7758 \end_layout
7759
7760 \end_inset
7761
7762
7763 \backslash
7764 underbrace
7765 \begin_inset ERT
7766 status collapsed
7767
7768 \begin_layout Plain Layout
7769
7770
7771 \backslash
7772 leer 
7773 \end_layout
7774
7775 \end_inset
7776
7777 A+B_w
7778 \begin_inset ERT
7779 status collapsed
7780
7781 \begin_layout Plain Layout
7782
7783
7784 \backslash
7785 leer 
7786 \end_layout
7787
7788 \end_inset
7789
7790
7791 \begin_inset ERT
7792 status collapsed
7793
7794 \begin_layout Plain Layout
7795
7796
7797 \backslash
7798 leer 
7799 \end_layout
7800
7801 \end_inset
7802
7803 _7
7804 \begin_inset ERT
7805 status collapsed
7806
7807 \begin_layout Plain Layout
7808
7809
7810 \backslash
7811 leer 
7812 \end_layout
7813
7814 \end_inset
7815
7816
7817 \begin_inset ERT
7818 status collapsed
7819
7820 \begin_layout Plain Layout
7821
7822
7823 \backslash
7824 leer 
7825 \end_layout
7826
7827 \end_inset
7828
7829 ^
7830 \begin_inset ERT
7831 status collapsed
7832
7833 \begin_layout Plain Layout
7834
7835
7836 \backslash
7837 leer 
7838 \end_layout
7839
7840 \end_inset
7841
7842 C
7843 \end_layout
7844
7845 \end_inset
7846 </cell>
7847 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
7848 \begin_inset Text
7849
7850 \begin_layout Plain Layout
7851 \begin_inset Formula $\overbrace{\underbrace{A+B_{w}}_{7}}^{C}$
7852 \end_inset
7853
7854
7855 \end_layout
7856
7857 \end_inset
7858 </cell>
7859 </row>
7860 </lyxtabular>
7861
7862 \end_inset
7863
7864
7865 \end_layout
7866
7867 \begin_layout Standard
7868 Beim letzten Beispiel spielt es keine Rolle, ob man zuerst 
7869 \series bold
7870
7871 \backslash
7872 overbrace
7873 \series default
7874  oder 
7875 \series bold
7876
7877 \backslash
7878 underbrace
7879 \series default
7880  eingibt.
7881 \end_layout
7882
7883 \begin_layout Standard
7884 \begin_inset VSpace bigskip
7885 \end_inset
7886
7887 Benötigt man Klammern, die sich überschneiden, muss man die in 
7888 \begin_inset CommandInset ref
7889 LatexCommand ref
7890 reference "sec:Mehrzeilige-Formeln"
7891
7892 \end_inset
7893
7894  beschriebenen mehrzeiligen Formeln verwenden:
7895 \begin_inset Formula 
7896 \begin{eqnarray*}
7897 A & = & \underbrace{gggg+bbqq}_{r}+\: dddd\\
7898  &  & \hphantom{gggg+\:}\underbrace{\hphantom{bbqq+dddd}}_{s}
7899 \end{eqnarray*}
7900
7901 \end_inset
7902
7903 In die erste Zeile wird die Formel zusammen mit der ersten Klammer eingegeben.
7904  Dabei ist es wichtig, dass vor dem ersten 
7905 \begin_inset Formula $d$
7906 \end_inset
7907
7908  der Abstandsbefehl
7909 \begin_inset Foot
7910 status collapsed
7911
7912 \begin_layout Plain Layout
7913 Abstandsbefehle sind in 
7914 \begin_inset CommandInset ref
7915 LatexCommand ref
7916 reference "sub:Vordefinierter-Leerraum"
7917
7918 \end_inset
7919
7920  erklärt.
7921 \end_layout
7922
7923 \end_inset
7924
7925  
7926 \series bold
7927
7928 \backslash
7929 :
7930 \series default
7931  eingegeben wird, denn die nach dem 
7932 \begin_inset Formula $q$
7933 \end_inset
7934
7935  endende Klammer verhindert, dass das nachfolgende 
7936 \begin_inset Quotes gld
7937 \end_inset
7938
7939 +
7940 \begin_inset Quotes grd
7941 \end_inset
7942
7943  von Leerraum umgeben ist.
7944 \begin_inset Foot
7945 status collapsed
7946
7947 \begin_layout Plain Layout
7948 weil eine Klammer nicht als Zeichen gilt, siehe 
7949 \begin_inset CommandInset ref
7950 LatexCommand ref
7951 reference "sub:Binäre-Operatoren"
7952
7953 \end_inset
7954
7955
7956 \end_layout
7957
7958 \end_inset
7959
7960  In die zweite Zeile wird die zweite Klammer eingegeben.
7961  Da sie vor dem 
7962 \begin_inset Formula $b$
7963 \end_inset
7964
7965  beginnen soll, gibt man zuerst 
7966 \series bold
7967
7968 \backslash
7969 hphantom{gggg+
7970 \backslash
7971 :}
7972 \series default
7973  ein.
7974 \begin_inset Foot
7975 status collapsed
7976
7977 \begin_layout Plain Layout
7978 mehr zu 
7979 \series bold
7980
7981 \backslash
7982 hphantom
7983 \series default
7984  siehe 
7985 \begin_inset CommandInset ref
7986 LatexCommand ref
7987 reference "sub:Platzhalter"
7988
7989 \end_inset
7990
7991 .
7992 \end_layout
7993
7994 \end_inset
7995
7996  Dieser Leerraum wird benötigt, weil das 
7997 \begin_inset Quotes gld
7998 \end_inset
7999
8000 +
8001 \begin_inset Quotes grd
8002 \end_inset
8003
8004  in der Formel auch von Leerraum umgeben ist.
8005  Die Klammer wird unter den Befehl 
8006 \series bold
8007
8008 \backslash
8009 hphantom{bbqq+dddd}
8010 \series default
8011  gesetzt.
8012 \end_layout
8013
8014 \begin_layout Standard
8015 Komplizierter wird es, wenn sich Klammern über und unter der Formel überschneide
8016 n, wie in folgendem Beispiel:
8017 \begin_inset ERT
8018 status collapsed
8019
8020 \begin_layout Plain Layout
8021
8022
8023 \backslash
8024 setlength{
8025 \backslash
8026 jot}{-6pt}
8027 \end_layout
8028
8029 \end_inset
8030
8031
8032 \begin_inset Formula 
8033 \begin{eqnarray*}
8034  &  & \hphantom{gggg+\:}\overbrace{\hphantom{bbqq+dddd}}^{s}\\
8035 A & = & \underbrace{gggg+bbqq}_{r}+\: dddd
8036 \end{eqnarray*}
8037
8038 \end_inset
8039
8040
8041 \begin_inset ERT
8042 status collapsed
8043
8044 \begin_layout Plain Layout
8045
8046
8047 \backslash
8048 setlength{
8049 \backslash
8050 jot}{3pt}
8051 \end_layout
8052
8053 \end_inset
8054
8055 Die erste Formelzeile ist gleich der zweiten Zeile des vorigen Beispiels,
8056  mit dem Unterschied, dass sich die Klammer oben befindet.
8057  Die zweite Zeile enthält die Formel zusammen mit der zweiten Klammer.
8058  Damit sich zwischen oberer Klammer in der ersten Zeile und der Formel in
8059  der zweiten Zeile kein Leerraum befindet, muss der Zeilenabstand verändert
8060  werden.
8061  Aufgrund eines Fehlers in LyX ist dies nicht ohne Weiteres möglich
8062 \begin_inset Foot
8063 status collapsed
8064
8065 \begin_layout Plain Layout
8066 \begin_inset CommandInset href
8067 LatexCommand href
8068 name "LyX-Fehler #1505"
8069 target "http://www.lyx.org/trac/ticket/1505"
8070
8071 \end_inset
8072
8073
8074 \end_layout
8075
8076 \end_inset
8077
8078 .
8079  Es muss als Lösung des Problems der globale Formelzeilenabstand 
8080 \series bold
8081
8082 \backslash
8083 jot
8084 \series default
8085
8086 \begin_inset Index idx
8087 status collapsed
8088
8089 \begin_layout Plain Layout
8090 Befehle ! J ! 
8091 \backslash
8092 jot
8093 \end_layout
8094
8095 \end_inset
8096
8097  vor der Formel mit dem Befehl 
8098 \series bold
8099
8100 \backslash
8101 setlength{
8102 \backslash
8103 jot}{-6pt}
8104 \series default
8105  im TeX-Modus auf den Wert -6
8106 \begin_inset space \thinspace{}
8107 \end_inset
8108
8109 pt geändert.
8110  Nach der Formel wird 
8111 \series bold
8112
8113 \backslash
8114 jot
8115 \series default
8116  mit demselben Befehl wieder auf den Standardwert 3
8117 \begin_inset space \thinspace{}
8118 \end_inset
8119
8120 pt zurückgesetzt.
8121  Genaueres zum Zeilenabstand in Formeln ist in 
8122 \begin_inset CommandInset ref
8123 LatexCommand ref
8124 reference "sub:Zeilenabstand"
8125
8126 \end_inset
8127
8128  erklärt.
8129 \end_layout
8130
8131 \begin_layout Standard
8132 \begin_inset Newpage newpage
8133 \end_inset
8134
8135
8136 \end_layout
8137
8138 \begin_layout Section
8139 Pfeile
8140 \begin_inset Index idx
8141 status collapsed
8142
8143 \begin_layout Plain Layout
8144 Pfeile
8145 \end_layout
8146
8147 \end_inset
8148
8149
8150 \end_layout
8151
8152 \begin_layout Standard
8153 Pfeile können über den Mathe-Werkzeugleistenknopf 
8154 \begin_inset Graphics
8155         filename ../../images/math/leftarrow.png
8156         scale 85
8157
8158 \end_inset
8159
8160  oder mit den Befehlen eingefügt werden, die in den folgenden Unterkapiteln
8161  aufgelistet sind.
8162 \end_layout
8163
8164 \begin_layout Subsection
8165 Horizontale Pfeile
8166 \begin_inset Index idx
8167 status collapsed
8168
8169 \begin_layout Plain Layout
8170 Pfeile ! horizontale
8171 \end_layout
8172
8173 \end_inset
8174
8175
8176 \end_layout
8177
8178 \begin_layout Standard
8179 \begin_inset space \hfill{}
8180 \end_inset
8181
8182
8183 \begin_inset Tabular
8184 <lyxtabular version="3" rows="8" columns="2">
8185 <features tabularvalignment="middle">
8186 <column alignment="center" valignment="top" width="0pt">
8187 <column alignment="center" valignment="top" width="0pt">
8188 <row>
8189 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
8190 \begin_inset Text
8191
8192 \begin_layout Plain Layout
8193 Befehl
8194 \end_layout
8195
8196 \end_inset
8197 </cell>
8198 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8199 \begin_inset Text
8200
8201 \begin_layout Plain Layout
8202 Ergebnis
8203 \end_layout
8204
8205 \end_inset
8206 </cell>
8207 </row>
8208 <row>
8209 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8210 \begin_inset Text
8211
8212 \begin_layout Plain Layout
8213
8214 \backslash
8215 gets
8216 \end_layout
8217
8218 \end_inset
8219 </cell>
8220 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8221 \begin_inset Text
8222
8223 \begin_layout Plain Layout
8224 \begin_inset Formula $\gets$
8225 \end_inset
8226
8227
8228 \end_layout
8229
8230 \end_inset
8231 </cell>
8232 </row>
8233 <row>
8234 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8235 \begin_inset Text
8236
8237 \begin_layout Plain Layout
8238
8239 \backslash
8240 Leftarrow
8241 \end_layout
8242
8243 \end_inset
8244 </cell>
8245 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8246 \begin_inset Text
8247
8248 \begin_layout Plain Layout
8249 \begin_inset Formula $\Leftarrow$
8250 \end_inset
8251
8252
8253 \end_layout
8254
8255 \end_inset
8256 </cell>
8257 </row>
8258 <row>
8259 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
8260 \begin_inset Text
8261
8262 \begin_layout Plain Layout
8263
8264 \backslash
8265 longleftarrow
8266 \end_layout
8267
8268 \end_inset
8269 </cell>
8270 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8271 \begin_inset Text
8272
8273 \begin_layout Plain Layout
8274 \begin_inset Formula $\longleftarrow$
8275 \end_inset
8276
8277
8278 \end_layout
8279
8280 \end_inset
8281 </cell>
8282 </row>
8283 <row>
8284 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
8285 \begin_inset Text
8286
8287 \begin_layout Plain Layout
8288
8289 \backslash
8290 Longleftarrow
8291 \end_layout
8292
8293 \end_inset
8294 </cell>
8295 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
8296 \begin_inset Text
8297
8298 \begin_layout Plain Layout
8299 \begin_inset Formula $\Longleftarrow$
8300 \end_inset
8301
8302
8303 \end_layout
8304
8305 \end_inset
8306 </cell>
8307 </row>
8308 <row>
8309 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
8310 \begin_inset Text
8311
8312 \begin_layout Plain Layout
8313
8314 \backslash
8315 leftharpoonup
8316 \end_layout
8317
8318 \end_inset
8319 </cell>
8320 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
8321 \begin_inset Text
8322
8323 \begin_layout Plain Layout
8324 \begin_inset Formula $\leftharpoonup$
8325 \end_inset
8326
8327
8328 \end_layout
8329
8330 \end_inset
8331 </cell>
8332 </row>
8333 <row>
8334 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
8335 \begin_inset Text
8336
8337 \begin_layout Plain Layout
8338
8339 \backslash
8340 leftharpoondown
8341 \end_layout
8342
8343 \end_inset
8344 </cell>
8345 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
8346 \begin_inset Text
8347
8348 \begin_layout Plain Layout
8349 \begin_inset Formula $\leftharpoondown$
8350 \end_inset
8351
8352
8353 \end_layout
8354
8355 \end_inset
8356 </cell>
8357 </row>
8358 <row>
8359 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
8360 \begin_inset Text
8361
8362 \begin_layout Plain Layout
8363
8364 \backslash
8365 hookleftarrow
8366 \end_layout
8367
8368 \end_inset
8369 </cell>
8370 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
8371 \begin_inset Text
8372
8373 \begin_layout Plain Layout
8374 \begin_inset Formula $\hookleftarrow$
8375 \end_inset
8376
8377
8378 \end_layout
8379
8380 \end_inset
8381 </cell>
8382 </row>
8383 </lyxtabular>
8384
8385 \end_inset
8386
8387
8388 \begin_inset space \hfill{}
8389 \end_inset
8390
8391
8392 \begin_inset Tabular
8393 <lyxtabular version="3" rows="8" columns="2">
8394 <features tabularvalignment="middle">
8395 <column alignment="center" valignment="top" width="0pt">
8396 <column alignment="center" valignment="top" width="0pt">
8397 <row>
8398 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
8399 \begin_inset Text
8400
8401 \begin_layout Plain Layout
8402 Befehl
8403 \end_layout
8404
8405 \end_inset
8406 </cell>
8407 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8408 \begin_inset Text
8409
8410 \begin_layout Plain Layout
8411 Ergebnis
8412 \end_layout
8413
8414 \end_inset
8415 </cell>
8416 </row>
8417 <row>
8418 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8419 \begin_inset Text
8420
8421 \begin_layout Plain Layout
8422
8423 \backslash
8424 to
8425 \end_layout
8426
8427 \end_inset
8428 </cell>
8429 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8430 \begin_inset Text
8431
8432 \begin_layout Plain Layout
8433 \begin_inset Formula $\to$
8434 \end_inset
8435
8436
8437 \end_layout
8438
8439 \end_inset
8440 </cell>
8441 </row>
8442 <row>
8443 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8444 \begin_inset Text
8445
8446 \begin_layout Plain Layout
8447
8448 \backslash
8449 Rightarrow
8450 \end_layout
8451
8452 \end_inset
8453 </cell>
8454 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8455 \begin_inset Text
8456
8457 \begin_layout Plain Layout
8458 \begin_inset Formula $\Rightarrow$
8459 \end_inset
8460
8461
8462 \end_layout
8463
8464 \end_inset
8465 </cell>
8466 </row>
8467 <row>
8468 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8469 \begin_inset Text
8470
8471 \begin_layout Plain Layout
8472
8473 \backslash
8474 longrightarrow
8475 \end_layout
8476
8477 \end_inset
8478 </cell>
8479 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8480 \begin_inset Text
8481
8482 \begin_layout Plain Layout
8483 \begin_inset Formula $\longrightarrow$
8484 \end_inset
8485
8486
8487 \end_layout
8488
8489 \end_inset
8490 </cell>
8491 </row>
8492 <row>
8493 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8494 \begin_inset Text
8495
8496 \begin_layout Plain Layout
8497
8498 \backslash
8499 Longrightarrow
8500 \end_layout
8501
8502 \end_inset
8503 </cell>
8504 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8505 \begin_inset Text
8506
8507 \begin_layout Plain Layout
8508 \begin_inset Formula $\Longrightarrow$
8509 \end_inset
8510
8511
8512 \end_layout
8513
8514 \end_inset
8515 </cell>
8516 </row>
8517 <row>
8518 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8519 \begin_inset Text
8520
8521 \begin_layout Plain Layout
8522
8523 \backslash
8524 rightharpoonup
8525 \end_layout
8526
8527 \end_inset
8528 </cell>
8529 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8530 \begin_inset Text
8531
8532 \begin_layout Plain Layout
8533 \begin_inset Formula $\rightharpoonup$
8534 \end_inset
8535
8536
8537 \end_layout
8538
8539 \end_inset
8540 </cell>
8541 </row>
8542 <row>
8543 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
8544 \begin_inset Text
8545
8546 \begin_layout Plain Layout
8547
8548 \backslash
8549 rightharpoondown
8550 \end_layout
8551
8552 \end_inset
8553 </cell>
8554 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8555 \begin_inset Text
8556
8557 \begin_layout Plain Layout
8558 \begin_inset Formula $\rightharpoondown$
8559 \end_inset
8560
8561
8562 \end_layout
8563
8564 \end_inset
8565 </cell>
8566 </row>
8567 <row>
8568 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
8569 \begin_inset Text
8570
8571 \begin_layout Plain Layout
8572
8573 \backslash
8574 hookrightarrow
8575 \end_layout
8576
8577 \end_inset
8578 </cell>
8579 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
8580 \begin_inset Text
8581
8582 \begin_layout Plain Layout
8583 \begin_inset Formula $\hookrightarrow$
8584 \end_inset
8585
8586
8587 \end_layout
8588
8589 \end_inset
8590 </cell>
8591 </row>
8592 </lyxtabular>
8593
8594 \end_inset
8595
8596
8597 \begin_inset space \hfill{}
8598 \end_inset
8599
8600
8601 \end_layout
8602
8603 \begin_layout Standard
8604 \begin_inset space \hfill{}
8605 \end_inset
8606
8607
8608 \begin_inset Tabular
8609 <lyxtabular version="3" rows="6" columns="2">
8610 <features tabularvalignment="middle">
8611 <column alignment="center" valignment="top" width="0pt">
8612 <column alignment="center" valignment="top" width="0pt">
8613 <row>
8614 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
8615 \begin_inset Text
8616
8617 \begin_layout Plain Layout
8618 Befehl
8619 \end_layout
8620
8621 \end_inset
8622 </cell>
8623 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8624 \begin_inset Text
8625
8626 \begin_layout Plain Layout
8627 Ergebnis
8628 \end_layout
8629
8630 \end_inset
8631 </cell>
8632 </row>
8633 <row>
8634 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8635 \begin_inset Text
8636
8637 \begin_layout Plain Layout
8638
8639 \backslash
8640 leftrightarrow
8641 \end_layout
8642
8643 \end_inset
8644 </cell>
8645 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8646 \begin_inset Text
8647
8648 \begin_layout Plain Layout
8649 \begin_inset Formula $\leftrightarrow$
8650 \end_inset
8651
8652
8653 \end_layout
8654
8655 \end_inset
8656 </cell>
8657 </row>
8658 <row>
8659 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8660 \begin_inset Text
8661
8662 \begin_layout Plain Layout
8663
8664 \backslash
8665 Leftrightarrow
8666 \end_layout
8667
8668 \end_inset
8669 </cell>
8670 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8671 \begin_inset Text
8672
8673 \begin_layout Plain Layout
8674 \begin_inset Formula $\Leftrightarrow$
8675 \end_inset
8676
8677
8678 \end_layout
8679
8680 \end_inset
8681 </cell>
8682 </row>
8683 <row>
8684 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8685 \begin_inset Text
8686
8687 \begin_layout Plain Layout
8688
8689 \backslash
8690 longleftrightarrow
8691 \end_layout
8692
8693 \end_inset
8694 </cell>
8695 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8696 \begin_inset Text
8697
8698 \begin_layout Plain Layout
8699 \begin_inset Formula $\longleftrightarrow$
8700 \end_inset
8701
8702
8703 \end_layout
8704
8705 \end_inset
8706 </cell>
8707 </row>
8708 <row>
8709 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8710 \begin_inset Text
8711
8712 \begin_layout Plain Layout
8713
8714 \backslash
8715 Longleftrightarrow
8716 \end_layout
8717
8718 \end_inset
8719 </cell>
8720 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8721 \begin_inset Text
8722
8723 \begin_layout Plain Layout
8724 \begin_inset Formula $\Longleftrightarrow$
8725 \end_inset
8726
8727
8728 \end_layout
8729
8730 \end_inset
8731 </cell>
8732 </row>
8733 <row>
8734 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
8735 \begin_inset Text
8736
8737 \begin_layout Plain Layout
8738
8739 \backslash
8740 rightleftharpoons
8741 \end_layout
8742
8743 \end_inset
8744 </cell>
8745 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8746 \begin_inset Text
8747
8748 \begin_layout Plain Layout
8749 \begin_inset Formula $\rightleftharpoons$
8750 \end_inset
8751
8752
8753 \end_layout
8754
8755 \end_inset
8756 </cell>
8757 </row>
8758 </lyxtabular>
8759
8760 \end_inset
8761
8762
8763 \begin_inset space \hspace{}
8764 \length 25pt
8765 \end_inset
8766
8767
8768 \begin_inset space \hfill{}
8769 \end_inset
8770
8771
8772 \begin_inset Tabular
8773 <lyxtabular version="3" rows="5" columns="2">
8774 <features tabularvalignment="middle">
8775 <column alignment="center" valignment="top" width="0pt">
8776 <column alignment="center" valignment="top" width="0pt">
8777 <row>
8778 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
8779 \begin_inset Text
8780
8781 \begin_layout Plain Layout
8782 Befehl
8783 \end_layout
8784
8785 \end_inset
8786 </cell>
8787 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8788 \begin_inset Text
8789
8790 \begin_layout Plain Layout
8791 Ergebnis
8792 \end_layout
8793
8794 \end_inset
8795 </cell>
8796 </row>
8797 <row>
8798 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8799 \begin_inset Text
8800
8801 \begin_layout Plain Layout
8802
8803 \backslash
8804 mapsto
8805 \end_layout
8806
8807 \end_inset
8808 </cell>
8809 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8810 \begin_inset Text
8811
8812 \begin_layout Plain Layout
8813 \begin_inset Formula $\mapsto$
8814 \end_inset
8815
8816
8817 \end_layout
8818
8819 \end_inset
8820 </cell>
8821 </row>
8822 <row>
8823 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8824 \begin_inset Text
8825
8826 \begin_layout Plain Layout
8827
8828 \backslash
8829 longmapsto
8830 \end_layout
8831
8832 \end_inset
8833 </cell>
8834 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8835 \begin_inset Text
8836
8837 \begin_layout Plain Layout
8838 \begin_inset Formula $\longmapsto$
8839 \end_inset
8840
8841
8842 \end_layout
8843
8844 \end_inset
8845 </cell>
8846 </row>
8847 <row>
8848 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
8849 \begin_inset Text
8850
8851 \begin_layout Plain Layout
8852
8853 \backslash
8854 leadsto
8855 \end_layout
8856
8857 \end_inset
8858 </cell>
8859 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
8860 \begin_inset Text
8861
8862 \begin_layout Plain Layout
8863 \begin_inset Formula $\leadsto$
8864 \end_inset
8865
8866
8867 \end_layout
8868
8869 \end_inset
8870 </cell>
8871 </row>
8872 <row>
8873 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
8874 \begin_inset Text
8875
8876 \begin_layout Plain Layout
8877
8878 \backslash
8879 dasharrow
8880 \end_layout
8881
8882 \end_inset
8883 </cell>
8884 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
8885 \begin_inset Text
8886
8887 \begin_layout Plain Layout
8888 \begin_inset Formula $\dasharrow$
8889 \end_inset
8890
8891
8892 \end_layout
8893
8894 \end_inset
8895 </cell>
8896 </row>
8897 </lyxtabular>
8898
8899 \end_inset
8900
8901
8902 \begin_inset space \hfill{}
8903 \end_inset
8904
8905
8906 \end_layout
8907
8908 \begin_layout Standard
8909 \begin_inset VSpace medskip
8910 \end_inset
8911
8912 Als Akzent verwendete Pfeile, wie z.
8913 \begin_inset space \thinspace{}
8914 \end_inset
8915
8916 B.
8917  Vektorpfeile, sind in 
8918 \begin_inset CommandInset ref
8919 LatexCommand ref
8920 reference "sec:Akzente"
8921
8922 \end_inset
8923
8924  aufgelistet.
8925 \end_layout
8926
8927 \begin_layout Standard
8928 \begin_inset VSpace bigskip
8929 \end_inset
8930
8931 Des Weiteren gibt es die beschriftbaren Pfeile
8932 \begin_inset Index idx
8933 status collapsed
8934
8935 \begin_layout Plain Layout
8936 Pfeile ! beschriftbare
8937 \end_layout
8938
8939 \end_inset
8940
8941  
8942 \series bold
8943
8944 \backslash
8945 xleftarrow
8946 \series default
8947
8948 \begin_inset Index idx
8949 status collapsed
8950
8951 \begin_layout Plain Layout
8952 Befehle ! X ! 
8953 \backslash
8954 xleftarrow
8955 \end_layout
8956
8957 \end_inset
8958
8959  und 
8960 \series bold
8961
8962 \backslash
8963 xrightarrow
8964 \series default
8965
8966 \begin_inset Index idx
8967 status collapsed
8968
8969 \begin_layout Plain Layout
8970 Befehle ! X ! 
8971 \backslash
8972 xrightarrow
8973 \begin_inset ERT
8974 status collapsed
8975
8976 \begin_layout Plain Layout
8977
8978
8979 \backslash
8980 vspace{4mm}
8981 \end_layout
8982
8983 \end_inset
8984
8985
8986 \end_layout
8987
8988 \end_inset
8989
8990 .
8991  Gibt man einen dieser Befehle in eine Formel ein, erscheint ein Pfeil mit
8992  zwei blauen Kästchen, in die man die Beschriftung eingeben kann.
8993  Die Pfeillänge passt sich der Breite der Beschriftung an.
8994 \end_layout
8995
8996 \begin_layout Standard
8997 \align center
8998 \begin_inset Tabular
8999 <lyxtabular version="3" rows="3" columns="2">
9000 <features tabularvalignment="middle">
9001 <column alignment="center" valignment="top" width="0pt">
9002 <column alignment="center" valignment="top" width="0pt">
9003 <row>
9004 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
9005 \begin_inset Text
9006
9007 \begin_layout Plain Layout
9008 Befehl
9009 \end_layout
9010
9011 \end_inset
9012 </cell>
9013 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
9014 \begin_inset Text
9015
9016 \begin_layout Plain Layout
9017 Ergebnis
9018 \begin_inset Note Note
9019 status collapsed
9020
9021 \begin_layout Plain Layout
9022
9023 \series bold
9024
9025 \backslash
9026 raisebox
9027 \series default
9028  dient nur als Abstandhalter.
9029 \end_layout
9030
9031 \end_inset
9032
9033
9034 \end_layout
9035
9036 \end_inset
9037 </cell>
9038 </row>
9039 <row>
9040 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9041 \begin_inset Text
9042
9043 \begin_layout Plain Layout
9044 F(a)
9045 \backslash
9046 xleftarrow
9047 \begin_inset ERT
9048 status collapsed
9049
9050 \begin_layout Plain Layout
9051
9052
9053 \backslash
9054 leer 
9055 \end_layout
9056
9057 \end_inset
9058
9059 x=a
9060 \begin_inset Formula $\downarrow$
9061 \end_inset
9062
9063 x>0
9064 \begin_inset Formula $\to$
9065 \end_inset
9066
9067 F(x)
9068 \end_layout
9069
9070 \end_inset
9071 </cell>
9072 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9073 \begin_inset Text
9074
9075 \begin_layout Plain Layout
9076 \begin_inset Formula $\raisebox{5mm}{}F(a)\xleftarrow[x>0]{x=a}F(x)\raisebox{-4mm}{}$
9077 \end_inset
9078
9079
9080 \end_layout
9081
9082 \end_inset
9083 </cell>
9084 </row>
9085 <row>
9086 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
9087 \begin_inset Text
9088
9089 \begin_layout Plain Layout
9090 F(x)
9091 \backslash
9092 xrightarrow
9093 \begin_inset ERT
9094 status collapsed
9095
9096 \begin_layout Plain Layout
9097
9098
9099 \backslash
9100 leer 
9101 \end_layout
9102
9103 \end_inset
9104
9105 x=a
9106 \begin_inset Formula $\downarrow$
9107 \end_inset
9108
9109 x>0
9110 \begin_inset Formula $\to$
9111 \end_inset
9112
9113 F(a)
9114 \end_layout
9115
9116 \end_inset
9117 </cell>
9118 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
9119 \begin_inset Text
9120
9121 \begin_layout Plain Layout
9122 \begin_inset Formula $\raisebox{5mm}{}F(x)\xrightarrow[x>0]{x=a}F(a)\raisebox{-4mm}{}$
9123 \end_inset
9124
9125
9126 \end_layout
9127
9128 \end_inset
9129 </cell>
9130 </row>
9131 </lyxtabular>
9132
9133 \end_inset
9134
9135
9136 \end_layout
9137
9138 \begin_layout Standard
9139 \begin_inset Newpage newpage
9140 \end_inset
9141
9142
9143 \end_layout
9144
9145 \begin_layout Subsection
9146 Vertikale und diagonale Pfeile
9147 \begin_inset Index idx
9148 status collapsed
9149
9150 \begin_layout Plain Layout
9151 Pfeile ! diagonale
9152 \end_layout
9153
9154 \end_inset
9155
9156
9157 \begin_inset Index idx
9158 status collapsed
9159
9160 \begin_layout Plain Layout
9161 Pfeile ! vertikale
9162 \end_layout
9163
9164 \end_inset
9165
9166
9167 \end_layout
9168
9169 \begin_layout Standard
9170 \begin_inset space \hfill{}
9171 \end_inset
9172
9173
9174 \begin_inset Tabular
9175 <lyxtabular version="3" rows="7" columns="2">
9176 <features tabularvalignment="middle">
9177 <column alignment="center" valignment="top" width="0pt">
9178 <column alignment="center" valignment="top" width="0pt">
9179 <row>
9180 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
9181 \begin_inset Text
9182
9183 \begin_layout Plain Layout
9184 Befehl
9185 \end_layout
9186
9187 \end_inset
9188 </cell>
9189 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
9190 \begin_inset Text
9191
9192 \begin_layout Plain Layout
9193 Ergebnis
9194 \end_layout
9195
9196 \end_inset
9197 </cell>
9198 </row>
9199 <row>
9200 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9201 \begin_inset Text
9202
9203 \begin_layout Plain Layout
9204
9205 \backslash
9206 uparrow
9207 \end_layout
9208
9209 \end_inset
9210 </cell>
9211 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9212 \begin_inset Text
9213
9214 \begin_layout Plain Layout
9215 \begin_inset Formula $\uparrow$
9216 \end_inset
9217
9218
9219 \end_layout
9220
9221 \end_inset
9222 </cell>
9223 </row>
9224 <row>
9225 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9226 \begin_inset Text
9227
9228 \begin_layout Plain Layout
9229
9230 \backslash
9231 Uparrow
9232 \end_layout
9233
9234 \end_inset
9235 </cell>
9236 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9237 \begin_inset Text
9238
9239 \begin_layout Plain Layout
9240 \begin_inset Formula $\Uparrow$
9241 \end_inset
9242
9243
9244 \end_layout
9245
9246 \end_inset
9247 </cell>
9248 </row>
9249 <row>
9250 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9251 \begin_inset Text
9252
9253 \begin_layout Plain Layout
9254
9255 \backslash
9256 updownarrow
9257 \end_layout
9258
9259 \end_inset
9260 </cell>
9261 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9262 \begin_inset Text
9263
9264 \begin_layout Plain Layout
9265 \begin_inset Formula $\updownarrow$
9266 \end_inset
9267
9268
9269 \end_layout
9270
9271 \end_inset
9272 </cell>
9273 </row>
9274 <row>
9275 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9276 \begin_inset Text
9277
9278 \begin_layout Plain Layout
9279
9280 \backslash
9281 Updownarrow
9282 \end_layout
9283
9284 \end_inset
9285 </cell>
9286 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9287 \begin_inset Text
9288
9289 \begin_layout Plain Layout
9290 \begin_inset Formula $\Updownarrow$
9291 \end_inset
9292
9293
9294 \end_layout
9295
9296 \end_inset
9297 </cell>
9298 </row>
9299 <row>
9300 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
9301 \begin_inset Text
9302
9303 \begin_layout Plain Layout
9304
9305 \backslash
9306 Downarrow
9307 \end_layout
9308
9309 \end_inset
9310 </cell>
9311 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
9312 \begin_inset Text
9313
9314 \begin_layout Plain Layout
9315 \begin_inset Formula $\Downarrow$
9316 \end_inset
9317
9318
9319 \end_layout
9320
9321 \end_inset
9322 </cell>
9323 </row>
9324 <row>
9325 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9326 \begin_inset Text
9327
9328 \begin_layout Plain Layout
9329
9330 \backslash
9331 downarrow
9332 \end_layout
9333
9334 \end_inset
9335 </cell>
9336 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9337 \begin_inset Text
9338
9339 \begin_layout Plain Layout
9340 \begin_inset Formula $\downarrow$
9341 \end_inset
9342
9343
9344 \end_layout
9345
9346 \end_inset
9347 </cell>
9348 </row>
9349 </lyxtabular>
9350
9351 \end_inset
9352
9353
9354 \begin_inset space \hfill{}
9355 \end_inset
9356
9357
9358 \begin_inset Tabular
9359 <lyxtabular version="3" rows="5" columns="2">
9360 <features tabularvalignment="middle">
9361 <column alignment="center" valignment="top" width="0pt">
9362 <column alignment="center" valignment="top" width="0pt">
9363 <row>
9364 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
9365 \begin_inset Text
9366
9367 \begin_layout Plain Layout
9368 Befehl
9369 \end_layout
9370
9371 \end_inset
9372 </cell>
9373 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
9374 \begin_inset Text
9375
9376 \begin_layout Plain Layout
9377 Ergebnis
9378 \end_layout
9379
9380 \end_inset
9381 </cell>
9382 </row>
9383 <row>
9384 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9385 \begin_inset Text
9386
9387 \begin_layout Plain Layout
9388
9389 \backslash
9390 nearrow
9391 \end_layout
9392
9393 \end_inset
9394 </cell>
9395 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9396 \begin_inset Text
9397
9398 \begin_layout Plain Layout
9399 \begin_inset Formula $\nearrow$
9400 \end_inset
9401
9402
9403 \end_layout
9404
9405 \end_inset
9406 </cell>
9407 </row>
9408 <row>
9409 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
9410 \begin_inset Text
9411
9412 \begin_layout Plain Layout
9413
9414 \backslash
9415 searrow
9416 \end_layout
9417
9418 \end_inset
9419 </cell>
9420 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
9421 \begin_inset Text
9422
9423 \begin_layout Plain Layout
9424 \begin_inset Formula $\searrow$
9425 \end_inset
9426
9427
9428 \end_layout
9429
9430 \end_inset
9431 </cell>
9432 </row>
9433 <row>
9434 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
9435 \begin_inset Text
9436
9437 \begin_layout Plain Layout
9438
9439 \backslash
9440 swarrow
9441 \end_layout
9442
9443 \end_inset
9444 </cell>
9445 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
9446 \begin_inset Text
9447
9448 \begin_layout Plain Layout
9449 \begin_inset Formula $\swarrow$
9450 \end_inset
9451
9452
9453 \end_layout
9454
9455 \end_inset
9456 </cell>
9457 </row>
9458 <row>
9459 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9460 \begin_inset Text
9461
9462 \begin_layout Plain Layout
9463
9464 \backslash
9465 nwarrow
9466 \end_layout
9467
9468 \end_inset
9469 </cell>
9470 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9471 \begin_inset Text
9472
9473 \begin_layout Plain Layout
9474 \begin_inset Formula $\nwarrow$
9475 \end_inset
9476
9477
9478 \end_layout
9479
9480 \end_inset
9481 </cell>
9482 </row>
9483 </lyxtabular>
9484
9485 \end_inset
9486
9487
9488 \begin_inset space \hfill{}
9489 \end_inset
9490
9491
9492 \end_layout
9493
9494 \begin_layout Standard
9495 \begin_inset VSpace medskip
9496 \end_inset
9497
9498 Vertikale Pfeile können auch als Begrenzungszeichen zusammen mit den in
9499  
9500 \begin_inset CommandInset ref
9501 LatexCommand ref
9502 reference "sub:Manuelle-Klammergrößen"
9503
9504 \end_inset
9505
9506  und 
9507 \begin_inset CommandInset ref
9508 LatexCommand ref
9509 reference "sub:Automatische-Klammergrößen"
9510
9511 \end_inset
9512
9513  beschriebenen Befehlen verwendet werden.
9514 \end_layout
9515
9516 \begin_layout Section
9517 Akzente
9518 \begin_inset CommandInset label
9519 LatexCommand label
9520 name "sec:Akzente"
9521
9522 \end_inset
9523
9524
9525 \begin_inset Index idx
9526 status collapsed
9527
9528 \begin_layout Plain Layout
9529 Akzente
9530 \end_layout
9531
9532 \end_inset
9533
9534
9535 \end_layout
9536
9537 \begin_layout Standard
9538 Akzente können über den Mathe-Werkzeugleistenknopf 
9539 \begin_inset Graphics
9540         filename ../../images/math/hat.png
9541         scale 85
9542
9543 \end_inset
9544
9545  oder mit den Befehlen eingefügt werden, die in den folgenden Unterkapiteln
9546  aufgelistet sind.
9547 \end_layout
9548
9549 \begin_layout Subsection
9550 Akzente für ein Zeichen
9551 \begin_inset ERT
9552 status collapsed
9553
9554 \begin_layout Plain Layout
9555
9556
9557 \backslash
9558 texorpdfstring{
9559 \end_layout
9560
9561 \end_inset
9562
9563
9564 \begin_inset Foot
9565 status collapsed
9566
9567 \begin_layout Plain Layout
9568 Akzente im Text siehe 
9569 \begin_inset CommandInset ref
9570 LatexCommand ref
9571 reference "sub:Sonderzeichen-Akzente"
9572
9573 \end_inset
9574
9575
9576 \end_layout
9577
9578 \end_inset
9579
9580
9581 \begin_inset ERT
9582 status collapsed
9583
9584 \begin_layout Plain Layout
9585
9586 }{}
9587 \end_layout
9588
9589 \end_inset
9590
9591
9592 \begin_inset Note Note
9593 status collapsed
9594
9595 \begin_layout Plain Layout
9596
9597 \series bold
9598
9599 \backslash
9600 texorpdfstring
9601 \series default
9602  dient dazu, dass die Fußnote nicht im PDF-Lesezeichen erscheint.
9603 \end_layout
9604
9605 \begin_layout Plain Layout
9606 Näheres zu 
9607 \series bold
9608
9609 \backslash
9610 texorpdfstring
9611 \series default
9612  steht in Kapitel 
9613 \begin_inset CommandInset ref
9614 LatexCommand ref
9615 reference "sub:Formeln-in-Überschriften"
9616
9617 \end_inset
9618
9619 .
9620 \end_layout
9621
9622 \end_inset
9623
9624
9625 \begin_inset CommandInset label
9626 LatexCommand label
9627 name "sub:Akzente-für-ein"
9628
9629 \end_inset
9630
9631
9632 \begin_inset Index idx
9633 status collapsed
9634
9635 \begin_layout Plain Layout
9636 Akzente ! für ein Zeichen
9637 \end_layout
9638
9639 \end_inset
9640
9641
9642 \end_layout
9643
9644 \begin_layout Standard
9645 \begin_inset space \hfill{}
9646 \end_inset
9647
9648
9649 \begin_inset Tabular
9650 <lyxtabular version="3" rows="8" columns="2">
9651 <features tabularvalignment="middle">
9652 <column alignment="center" valignment="top" width="0pt">
9653 <column alignment="center" valignment="top" width="0pt">
9654 <row>
9655 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
9656 \begin_inset Text
9657
9658 \begin_layout Plain Layout
9659 Befehl
9660 \end_layout
9661
9662 \end_inset
9663 </cell>
9664 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
9665 \begin_inset Text
9666
9667 \begin_layout Plain Layout
9668 Ergebnis
9669 \begin_inset Note Note
9670 status collapsed
9671
9672 \begin_layout Plain Layout
9673
9674 \series bold
9675
9676 \backslash
9677 raisebox
9678 \series default
9679  dient nur als Abstandhalter.
9680 \end_layout
9681
9682 \end_inset
9683
9684
9685 \end_layout
9686
9687 \end_inset
9688 </cell>
9689 </row>
9690 <row>
9691 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
9692 \begin_inset Text
9693
9694 \begin_layout Plain Layout
9695
9696 \backslash
9697 dot
9698 \begin_inset ERT
9699 status collapsed
9700
9701 \begin_layout Plain Layout
9702
9703
9704 \backslash
9705 leer 
9706 \end_layout
9707
9708 \end_inset
9709
9710 A
9711 \end_layout
9712
9713 \end_inset
9714 </cell>
9715 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
9716 \begin_inset Text
9717
9718 \begin_layout Plain Layout
9719 \begin_inset Formula $\raisebox{5mm}{}\dot{A}$
9720 \end_inset
9721
9722
9723 \end_layout
9724
9725 \end_inset
9726 </cell>
9727 </row>
9728 <row>
9729 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9730 \begin_inset Text
9731
9732 \begin_layout Plain Layout
9733
9734 \backslash
9735 ddot
9736 \begin_inset ERT
9737 status collapsed
9738
9739 \begin_layout Plain Layout
9740
9741
9742 \backslash
9743 leer 
9744 \end_layout
9745
9746 \end_inset
9747
9748 A
9749 \end_layout
9750
9751 \end_inset
9752 </cell>
9753 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9754 \begin_inset Text
9755
9756 \begin_layout Plain Layout
9757 \begin_inset Formula $\raisebox{5mm}{}\ddot{A}$
9758 \end_inset
9759
9760
9761 \end_layout
9762
9763 \end_inset
9764 </cell>
9765 </row>
9766 <row>
9767 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9768 \begin_inset Text
9769
9770 \begin_layout Plain Layout
9771
9772 \backslash
9773 dddot
9774 \begin_inset ERT
9775 status collapsed
9776
9777 \begin_layout Plain Layout
9778
9779
9780 \backslash
9781 leer 
9782 \end_layout
9783
9784 \end_inset
9785
9786 A
9787 \end_layout
9788
9789 \end_inset
9790 </cell>
9791 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9792 \begin_inset Text
9793
9794 \begin_layout Plain Layout
9795 \begin_inset Formula $\raisebox{5mm}{}\dddot{A}$
9796 \end_inset
9797
9798
9799 \end_layout
9800
9801 \end_inset
9802 </cell>
9803 </row>
9804 <row>
9805 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9806 \begin_inset Text
9807
9808 \begin_layout Plain Layout
9809
9810 \backslash
9811 ddddot
9812 \begin_inset ERT
9813 status collapsed
9814
9815 \begin_layout Plain Layout
9816
9817
9818 \backslash
9819 leer 
9820 \end_layout
9821
9822 \end_inset
9823
9824 A
9825 \end_layout
9826
9827 \end_inset
9828 </cell>
9829 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9830 \begin_inset Text
9831
9832 \begin_layout Plain Layout
9833 \begin_inset Formula $\raisebox{5mm}{}\ddddot{A}$
9834 \end_inset
9835
9836
9837 \end_layout
9838
9839 \end_inset
9840 </cell>
9841 </row>
9842 <row>
9843 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9844 \begin_inset Text
9845
9846 \begin_layout Plain Layout
9847
9848 \backslash
9849 vec
9850 \begin_inset ERT
9851 status collapsed
9852
9853 \begin_layout Plain Layout
9854
9855
9856 \backslash
9857 leer 
9858 \end_layout
9859
9860 \end_inset
9861
9862 A
9863 \begin_inset Index idx
9864 status collapsed
9865
9866 \begin_layout Plain Layout
9867 Vektoren
9868 \end_layout
9869
9870 \end_inset
9871
9872
9873 \end_layout
9874
9875 \end_inset
9876 </cell>
9877 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9878 \begin_inset Text
9879
9880 \begin_layout Plain Layout
9881 \begin_inset Formula $\raisebox{5mm}{}\vec{A}$
9882 \end_inset
9883
9884
9885 \end_layout
9886
9887 \end_inset
9888 </cell>
9889 </row>
9890 <row>
9891 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9892 \begin_inset Text
9893
9894 \begin_layout Plain Layout
9895
9896 \backslash
9897 bar
9898 \begin_inset ERT
9899 status collapsed
9900
9901 \begin_layout Plain Layout
9902
9903
9904 \backslash
9905 leer 
9906 \end_layout
9907
9908 \end_inset
9909
9910 A
9911 \end_layout
9912
9913 \end_inset
9914 </cell>
9915 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9916 \begin_inset Text
9917
9918 \begin_layout Plain Layout
9919 \begin_inset Formula $\raisebox{5mm}{}\bar{A}$
9920 \end_inset
9921
9922
9923 \end_layout
9924
9925 \end_inset
9926 </cell>
9927 </row>
9928 <row>
9929 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
9930 \begin_inset Text
9931
9932 \begin_layout Plain Layout
9933
9934 \backslash
9935 mathring
9936 \begin_inset ERT
9937 status collapsed
9938
9939 \begin_layout Plain Layout
9940
9941
9942 \backslash
9943 leer 
9944 \end_layout
9945
9946 \end_inset
9947
9948 A
9949 \end_layout
9950
9951 \end_inset
9952 </cell>
9953 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
9954 \begin_inset Text
9955
9956 \begin_layout Plain Layout
9957 \begin_inset Formula $\raisebox{5mm}{}\mathring{A}$
9958 \end_inset
9959
9960
9961 \end_layout
9962
9963 \end_inset
9964 </cell>
9965 </row>
9966 </lyxtabular>
9967
9968 \end_inset
9969
9970
9971 \begin_inset space \hfill{}
9972 \end_inset
9973
9974
9975 \begin_inset Tabular
9976 <lyxtabular version="3" rows="7" columns="2">
9977 <features tabularvalignment="middle">
9978 <column alignment="center" valignment="top" width="0pt">
9979 <column alignment="center" valignment="top" width="0pt">
9980 <row>
9981 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
9982 \begin_inset Text
9983
9984 \begin_layout Plain Layout
9985 Befehl
9986 \end_layout
9987
9988 \end_inset
9989 </cell>
9990 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
9991 \begin_inset Text
9992
9993 \begin_layout Plain Layout
9994 Ergebnis
9995 \end_layout
9996
9997 \end_inset
9998 </cell>
9999 </row>
10000 <row>
10001 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
10002 \begin_inset Text
10003
10004 \begin_layout Plain Layout
10005
10006 \backslash
10007 tilde
10008 \begin_inset ERT
10009 status collapsed
10010
10011 \begin_layout Plain Layout
10012
10013
10014 \backslash
10015 leer 
10016 \end_layout
10017
10018 \end_inset
10019
10020 A
10021 \end_layout
10022
10023 \end_inset
10024 </cell>
10025 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
10026 \begin_inset Text
10027
10028 \begin_layout Plain Layout
10029 \begin_inset Formula $\raisebox{5mm}{}\tilde{A}$
10030 \end_inset
10031
10032
10033 \end_layout
10034
10035 \end_inset
10036 </cell>
10037 </row>
10038 <row>
10039 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10040 \begin_inset Text
10041
10042 \begin_layout Plain Layout
10043
10044 \backslash
10045 hat
10046 \begin_inset ERT
10047 status collapsed
10048
10049 \begin_layout Plain Layout
10050
10051
10052 \backslash
10053 leer 
10054 \end_layout
10055
10056 \end_inset
10057
10058 A
10059 \end_layout
10060
10061 \end_inset
10062 </cell>
10063 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
10064 \begin_inset Text
10065
10066 \begin_layout Plain Layout
10067 \begin_inset Formula $\raisebox{5mm}{}\hat{A}$
10068 \end_inset
10069
10070
10071 \end_layout
10072
10073 \end_inset
10074 </cell>
10075 </row>
10076 <row>
10077 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10078 \begin_inset Text
10079
10080 \begin_layout Plain Layout
10081
10082 \backslash
10083 check
10084 \begin_inset ERT
10085 status collapsed
10086
10087 \begin_layout Plain Layout
10088
10089
10090 \backslash
10091 leer 
10092 \end_layout
10093
10094 \end_inset
10095
10096 A
10097 \end_layout
10098
10099 \end_inset
10100 </cell>
10101 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
10102 \begin_inset Text
10103
10104 \begin_layout Plain Layout
10105 \begin_inset Formula $\raisebox{5mm}{}\check{A}$
10106 \end_inset
10107
10108
10109 \end_layout
10110
10111 \end_inset
10112 </cell>
10113 </row>
10114 <row>
10115 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10116 \begin_inset Text
10117
10118 \begin_layout Plain Layout
10119
10120 \backslash
10121 acute
10122 \begin_inset ERT
10123 status collapsed
10124
10125 \begin_layout Plain Layout
10126
10127
10128 \backslash
10129 leer 
10130 \end_layout
10131
10132 \end_inset
10133
10134 A
10135 \end_layout
10136
10137 \end_inset
10138 </cell>
10139 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
10140 \begin_inset Text
10141
10142 \begin_layout Plain Layout
10143 \begin_inset Formula $\raisebox{5mm}{}\acute{A}$
10144 \end_inset
10145
10146
10147 \end_layout
10148
10149 \end_inset
10150 </cell>
10151 </row>
10152 <row>
10153 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10154 \begin_inset Text
10155
10156 \begin_layout Plain Layout
10157
10158 \backslash
10159 grave
10160 \begin_inset ERT
10161 status collapsed
10162
10163 \begin_layout Plain Layout
10164
10165
10166 \backslash
10167 leer 
10168 \end_layout
10169
10170 \end_inset
10171
10172 A
10173 \end_layout
10174
10175 \end_inset
10176 </cell>
10177 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
10178 \begin_inset Text
10179
10180 \begin_layout Plain Layout
10181 \begin_inset Formula $\raisebox{5mm}{}\grave{A}$
10182 \end_inset
10183
10184
10185 \end_layout
10186
10187 \end_inset
10188 </cell>
10189 </row>
10190 <row>
10191 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10192 \begin_inset Text
10193
10194 \begin_layout Plain Layout
10195
10196 \backslash
10197 breve
10198 \begin_inset ERT
10199 status collapsed
10200
10201 \begin_layout Plain Layout
10202
10203
10204 \backslash
10205 leer 
10206 \end_layout
10207
10208 \end_inset
10209
10210 A
10211 \end_layout
10212
10213 \end_inset
10214 </cell>
10215 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
10216 \begin_inset Text
10217
10218 \begin_layout Plain Layout
10219 \begin_inset Formula $\raisebox{5mm}{}\breve{A}$
10220 \end_inset
10221
10222
10223 \end_layout
10224
10225 \end_inset
10226 </cell>
10227 </row>
10228 </lyxtabular>
10229
10230 \end_inset
10231
10232
10233 \begin_inset space \hfill{}
10234 \end_inset
10235
10236
10237 \end_layout
10238
10239 \begin_layout Standard
10240 \begin_inset VSpace bigskip
10241 \end_inset
10242
10243 Akzente wie z.B.
10244  é können direkt in Formeln eingegeben werden.
10245  LyX transformiert sie dann in den entsprechenden Akzentbefehl.
10246  Für Umlaute
10247 \begin_inset Index idx
10248 status collapsed
10249
10250 \begin_layout Plain Layout
10251 Umlaute
10252 \end_layout
10253
10254 \end_inset
10255
10256  ist es besser wenn man ein Anführungszeichen vor den Selbstlaut schreibt.
10257  Diese beiden Zeichen bilden dann für LaTeX 
10258 \emph on
10259 ein
10260 \emph default
10261  Zeichen.
10262  Im Gegensatz zu 
10263 \series bold
10264
10265 \backslash
10266 ddot
10267 \series default
10268  entstehen damit 
10269 \begin_inset Quotes gld
10270 \end_inset
10271
10272 echte
10273 \begin_inset Quotes grd
10274 \end_inset
10275
10276  Umlaute, was folgendes Beispiel zeigt:
10277 \end_layout
10278
10279 \begin_layout Standard
10280 \begin_inset VSpace -2mm
10281 \end_inset
10282
10283
10284 \end_layout
10285
10286 \begin_layout Standard
10287 \align center
10288 \begin_inset Tabular
10289 <lyxtabular version="3" rows="3" columns="2">
10290 <features tabularvalignment="middle">
10291 <column alignment="center" valignment="top" width="0">
10292 <column alignment="center" valignment="top" width="0">
10293 <row>
10294 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
10295 \begin_inset Text
10296
10297 \begin_layout Plain Layout
10298 Befehl
10299 \end_layout
10300
10301 \end_inset
10302 </cell>
10303 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
10304 \begin_inset Text
10305
10306 \begin_layout Plain Layout
10307 Ergebnis
10308 \begin_inset Note Note
10309 status collapsed
10310
10311 \begin_layout Plain Layout
10312
10313 \series bold
10314
10315 \backslash
10316 raisebox
10317 \series default
10318  dient nur als Abstandhalter.
10319 \end_layout
10320
10321 \end_inset
10322
10323
10324 \end_layout
10325
10326 \end_inset
10327 </cell>
10328 </row>
10329 <row>
10330 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
10331 \begin_inset Text
10332
10333 \begin_layout Plain Layout
10334 \begin_inset Quotes grd
10335 \end_inset
10336
10337 i
10338 \end_layout
10339
10340 \end_inset
10341 </cell>
10342 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
10343 \begin_inset Text
10344
10345 \begin_layout Plain Layout
10346 \begin_inset Formula $"i$
10347 \end_inset
10348
10349
10350 \end_layout
10351
10352 \end_inset
10353 </cell>
10354 </row>
10355 <row>
10356 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
10357 \begin_inset Text
10358
10359 \begin_layout Plain Layout
10360
10361 \backslash
10362 ddot
10363 \begin_inset ERT
10364 status collapsed
10365
10366 \begin_layout Plain Layout
10367
10368
10369 \backslash
10370 leer 
10371 \end_layout
10372
10373 \end_inset
10374
10375 i
10376 \end_layout
10377
10378 \end_inset
10379 </cell>
10380 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
10381 \begin_inset Text
10382
10383 \begin_layout Plain Layout
10384 \begin_inset Formula $\raisebox{5mm}{}\ddot{i}$
10385 \end_inset
10386
10387
10388 \end_layout
10389
10390 \end_inset
10391 </cell>
10392 </row>
10393 </lyxtabular>
10394
10395 \end_inset
10396
10397
10398 \end_layout
10399
10400 \begin_layout Standard
10401 Ein weiterer Vorteil gegenüber 
10402 \series bold
10403
10404 \backslash
10405 ddot
10406 \series default
10407  ist, dass man Umlaute direkt in mathematischen Text konvertieren kann,
10408  denn die obigen Akzentbefehle sind 
10409 \emph on
10410 im mathematischen Text\SpecialChar \-
10411 modus nicht erlaubt
10412 \emph default
10413 .
10414  Um ein akzentuiertes Zeichen in mathematischen Text zu überführen, darf
10415  nur das Zeichen unter dem Akzent umgewandelt werden.
10416  Das gilt auch für alle anderen Umwandlungen wie z.
10417 \begin_inset space \thinspace{}
10418 \end_inset
10419
10420 B.
10421  in kursiv oder fett.
10422 \end_layout
10423
10424 \begin_layout Standard
10425 Im mathematischen Textmodus können Umlaute und andere akzentuierten Zeichen
10426  direkt eingegeben werden.
10427 \end_layout
10428
10429 \begin_layout Subsection
10430 Akzente für Operatoren
10431 \begin_inset Index idx
10432 status collapsed
10433
10434 \begin_layout Plain Layout
10435 Akzente ! für Operatoren
10436 \end_layout
10437
10438 \end_inset
10439
10440
10441 \end_layout
10442
10443 \begin_layout Standard
10444 Zum Akzentuieren von Operatoren gibt es die Befehle 
10445 \series bold
10446
10447 \backslash
10448 overset
10449 \series default
10450
10451 \begin_inset Index idx
10452 status collapsed
10453
10454 \begin_layout Plain Layout
10455 Befehle ! O ! 
10456 \backslash
10457 overset
10458 \end_layout
10459
10460 \end_inset
10461
10462  und 
10463 \series bold
10464
10465 \backslash
10466 underset
10467 \series default
10468
10469 \begin_inset Index idx
10470 status collapsed
10471
10472 \begin_layout Plain Layout
10473 Befehle ! U ! 
10474 \backslash
10475 underset
10476 \end_layout
10477
10478 \end_inset
10479
10480 , mit denen man Zeichen über bzw.
10481  unter einen Operator setzen kann.
10482  Mit dem Befehl 
10483 \series bold
10484
10485 \backslash
10486 sideset
10487 \series default
10488
10489 \begin_inset Index idx
10490 status collapsed
10491
10492 \begin_layout Plain Layout
10493 Befehle ! S ! 
10494 \backslash
10495 sideset
10496 \end_layout
10497
10498 \end_inset
10499
10500  können Zeichen vor und nach einen Operator gesetzt werden.
10501  Das Befehlsschema lautet:
10502 \end_layout
10503
10504 \begin_layout Standard
10505
10506 \series bold
10507
10508 \backslash
10509 sideset{Zeichen
10510 \series default
10511  
10512 \series bold
10513 davor}{Zeichen
10514 \series default
10515  
10516 \series bold
10517 dahinter}
10518 \end_layout
10519
10520 \begin_layout Standard
10521
10522 \series bold
10523
10524 \backslash
10525 sideset
10526 \series default
10527  muss immer vor dem zu akzentuierenden Operator stehen.
10528  Es kann auch mit mehreren Zeichen und sogar mit anderen Operatoren und
10529  Symbolen akzentuiert werden.
10530  Will man mit 
10531 \series bold
10532
10533 \backslash
10534 sideset
10535 \series default
10536  z.
10537 \begin_inset space \thinspace{}
10538 \end_inset
10539
10540 B.
10541  nur Zeichen hinter einen Operator setzen, schreibt man nichts zwischen
10542  die ersten geschweiften Klammern, lässt die Klammern aber nicht weg.
10543 \end_layout
10544
10545 \begin_layout Standard
10546 Z.
10547 \begin_inset space \thinspace{}
10548 \end_inset
10549
10550 B.
10551  ergibt der Befehl 
10552 \series bold
10553
10554 \backslash
10555 sideset{
10556 \begin_inset Formula $\to$
10557 \end_inset
10558
10559
10560 \backslash
10561 {
10562 \series default
10563 '
10564 \series bold
10565
10566 \begin_inset Formula $\to$
10567 \end_inset
10568
10569
10570 \backslash
10571 sum_k=1
10572 \begin_inset ERT
10573 status collapsed
10574
10575 \begin_layout Plain Layout
10576
10577
10578 \backslash
10579 leer 
10580 \end_layout
10581
10582 \end_inset
10583
10584
10585 \series default
10586 ^
10587 \series bold
10588 n
10589 \series default
10590  :
10591 \begin_inset Formula 
10592 \[
10593 \sideset{}{'}\sum_{k=1}^{n}
10594 \]
10595
10596 \end_inset
10597
10598
10599 \end_layout
10600
10601 \begin_layout Standard
10602 Der Befehl 
10603 \series bold
10604
10605 \backslash
10606 overset
10607 \begin_inset ERT
10608 status collapsed
10609
10610 \begin_layout Plain Layout
10611
10612
10613 \backslash
10614 leer 
10615 \end_layout
10616
10617 \end_inset
10618
10619
10620 \backslash
10621 maltese
10622 \begin_inset ERT
10623 status collapsed
10624
10625 \begin_layout Plain Layout
10626
10627
10628 \backslash
10629 leer 
10630 \end_layout
10631
10632 \end_inset
10633
10634
10635 \series default
10636
10637 \begin_inset Formula $\uparrow$
10638 \end_inset
10639
10640
10641 \series bold
10642 a
10643 \series default
10644  ergibt:
10645 \begin_inset Formula 
10646 \[
10647 \overset{a}{\maltese}
10648 \]
10649
10650 \end_inset
10651
10652 Wie man am letzten Beispiel sieht, kann man mit 
10653 \series bold
10654
10655 \backslash
10656 overset
10657 \series default
10658  bzw.
10659  
10660 \series bold
10661
10662 \backslash
10663 underset
10664 \series default
10665  außer Operatoren auch Symbole und Zeichen akzentuieren; mit 
10666 \series bold
10667
10668 \backslash
10669 sideset
10670 \series default
10671  ist dies nicht möglich.
10672 \end_layout
10673
10674 \begin_layout Subsection
10675 Akzente für mehrere Zeichen
10676 \begin_inset Index idx
10677 status collapsed
10678
10679 \begin_layout Plain Layout
10680 Akzente ! für mehrere Zeichen
10681 \end_layout
10682
10683 \end_inset
10684
10685
10686 \end_layout
10687
10688 \begin_layout Standard
10689 \begin_inset space \hfill{}
10690 \end_inset
10691
10692
10693 \begin_inset Tabular
10694 <lyxtabular version="3" rows="5" columns="2">
10695 <features tabularvalignment="middle">
10696 <column alignment="center" valignment="top" width="0pt">
10697 <column alignment="center" valignment="top" width="0pt">
10698 <row>
10699 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
10700 \begin_inset Text
10701
10702 \begin_layout Plain Layout
10703 Befehl
10704 \end_layout
10705
10706 \end_inset
10707 </cell>
10708 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
10709 \begin_inset Text
10710
10711 \begin_layout Plain Layout
10712 Ergebnis
10713 \begin_inset Note Note
10714 status collapsed
10715
10716 \begin_layout Plain Layout
10717
10718 \series bold
10719
10720 \backslash
10721 raisebox
10722 \series default
10723  dient nur als Abstandhalter.
10724 \end_layout
10725
10726 \end_inset
10727
10728
10729 \end_layout
10730
10731 \end_inset
10732 </cell>
10733 </row>
10734 <row>
10735 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
10736 \begin_inset Text
10737
10738 \begin_layout Plain Layout
10739
10740 \backslash
10741 overleftarrow
10742 \begin_inset ERT
10743 status collapsed
10744
10745 \begin_layout Plain Layout
10746
10747
10748 \backslash
10749 leer 
10750 \end_layout
10751
10752 \end_inset
10753
10754 A=B
10755 \end_layout
10756
10757 \end_inset
10758 </cell>
10759 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
10760 \begin_inset Text
10761
10762 \begin_layout Plain Layout
10763 \begin_inset Formula $\raisebox{6mm}{}\overleftarrow{A=B}\raisebox{-2mm}{}$
10764 \end_inset
10765
10766
10767 \end_layout
10768
10769 \end_inset
10770 </cell>
10771 </row>
10772 <row>
10773 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10774 \begin_inset Text
10775
10776 \begin_layout Plain Layout
10777
10778 \backslash
10779 underleftarrow
10780 \begin_inset ERT
10781 status collapsed
10782
10783 \begin_layout Plain Layout
10784
10785
10786 \backslash
10787 leer 
10788 \end_layout
10789
10790 \end_inset
10791
10792 A=B
10793 \end_layout
10794
10795 \end_inset
10796 </cell>
10797 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
10798 \begin_inset Text
10799
10800 \begin_layout Plain Layout
10801 \begin_inset Formula $\raisebox{5mm}{}\underleftarrow{A=B}\raisebox{-3mm}{}$
10802 \end_inset
10803
10804
10805 \end_layout
10806
10807 \end_inset
10808 </cell>
10809 </row>
10810 <row>
10811 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10812 \begin_inset Text
10813
10814 \begin_layout Plain Layout
10815
10816 \backslash
10817 overleftrightarrow
10818 \begin_inset ERT
10819 status collapsed
10820
10821 \begin_layout Plain Layout
10822
10823
10824 \backslash
10825 leer 
10826 \end_layout
10827
10828 \end_inset
10829
10830 A=B
10831 \end_layout
10832
10833 \end_inset
10834 </cell>
10835 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
10836 \begin_inset Text
10837
10838 \begin_layout Plain Layout
10839 \begin_inset Formula $\raisebox{6mm}{}\overleftrightarrow{A=B}\raisebox{-2mm}{}$
10840 \end_inset
10841
10842
10843 \end_layout
10844
10845 \end_inset
10846 </cell>
10847 </row>
10848 <row>
10849 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10850 \begin_inset Text
10851
10852 \begin_layout Plain Layout
10853
10854 \backslash
10855 underleftrightarrow
10856 \begin_inset ERT
10857 status collapsed
10858
10859 \begin_layout Plain Layout
10860
10861
10862 \backslash
10863 leer 
10864 \end_layout
10865
10866 \end_inset
10867
10868 A=B
10869 \end_layout
10870
10871 \end_inset
10872 </cell>
10873 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
10874 \begin_inset Text
10875
10876 \begin_layout Plain Layout
10877 \begin_inset Formula $\raisebox{5mm}{}\underleftrightarrow{A=B}\raisebox{-3mm}{}$
10878 \end_inset
10879
10880
10881 \end_layout
10882
10883 \end_inset
10884 </cell>
10885 </row>
10886 </lyxtabular>
10887
10888 \end_inset
10889
10890
10891 \begin_inset space \hfill{}
10892 \end_inset
10893
10894
10895 \begin_inset Tabular
10896 <lyxtabular version="3" rows="5" columns="2">
10897 <features tabularvalignment="middle">
10898 <column alignment="center" valignment="top" width="0pt">
10899 <column alignment="center" valignment="top" width="0pt">
10900 <row>
10901 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
10902 \begin_inset Text
10903
10904 \begin_layout Plain Layout
10905 Befehl
10906 \end_layout
10907
10908 \end_inset
10909 </cell>
10910 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
10911 \begin_inset Text
10912
10913 \begin_layout Plain Layout
10914 Ergebnis
10915 \end_layout
10916
10917 \end_inset
10918 </cell>
10919 </row>
10920 <row>
10921 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
10922 \begin_inset Text
10923
10924 \begin_layout Plain Layout
10925
10926 \backslash
10927 overrightarrow
10928 \begin_inset ERT
10929 status collapsed
10930
10931 \begin_layout Plain Layout
10932
10933
10934 \backslash
10935 leer 
10936 \end_layout
10937
10938 \end_inset
10939
10940 A=B
10941 \end_layout
10942
10943 \end_inset
10944 </cell>
10945 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
10946 \begin_inset Text
10947
10948 \begin_layout Plain Layout
10949 \begin_inset Formula $\raisebox{6mm}{}\overrightarrow{A=B}\raisebox{-2mm}{}$
10950 \end_inset
10951
10952
10953 \end_layout
10954
10955 \end_inset
10956 </cell>
10957 </row>
10958 <row>
10959 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10960 \begin_inset Text
10961
10962 \begin_layout Plain Layout
10963
10964 \backslash
10965 underrightarrow
10966 \begin_inset ERT
10967 status collapsed
10968
10969 \begin_layout Plain Layout
10970
10971
10972 \backslash
10973 leer 
10974 \end_layout
10975
10976 \end_inset
10977
10978 A=B
10979 \end_layout
10980
10981 \end_inset
10982 </cell>
10983 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
10984 \begin_inset Text
10985
10986 \begin_layout Plain Layout
10987 \begin_inset Formula $\raisebox{5mm}{}\underrightarrow{A=B}\raisebox{-3mm}{}$
10988 \end_inset
10989
10990
10991 \end_layout
10992
10993 \end_inset
10994 </cell>
10995 </row>
10996 <row>
10997 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
10998 \begin_inset Text
10999
11000 \begin_layout Plain Layout
11001
11002 \backslash
11003 widetilde
11004 \begin_inset ERT
11005 status collapsed
11006
11007 \begin_layout Plain Layout
11008
11009
11010 \backslash
11011 leer 
11012 \end_layout
11013
11014 \end_inset
11015
11016 A=B
11017 \end_layout
11018
11019 \end_inset
11020 </cell>
11021 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
11022 \begin_inset Text
11023
11024 \begin_layout Plain Layout
11025 \begin_inset Formula $\raisebox{6mm}{}\widetilde{A=B}\raisebox{-2mm}{}$
11026 \end_inset
11027
11028
11029 \end_layout
11030
11031 \end_inset
11032 </cell>
11033 </row>
11034 <row>
11035 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11036 \begin_inset Text
11037
11038 \begin_layout Plain Layout
11039
11040 \backslash
11041 widehat
11042 \begin_inset ERT
11043 status collapsed
11044
11045 \begin_layout Plain Layout
11046
11047
11048 \backslash
11049 leer 
11050 \end_layout
11051
11052 \end_inset
11053
11054 A=B
11055 \end_layout
11056
11057 \end_inset
11058 </cell>
11059 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
11060 \begin_inset Text
11061
11062 \begin_layout Plain Layout
11063 \begin_inset Formula $\raisebox{6mm}{}\widehat{A=B}\raisebox{-2mm}{}$
11064 \end_inset
11065
11066
11067 \end_layout
11068
11069 \end_inset
11070 </cell>
11071 </row>
11072 </lyxtabular>
11073
11074 \end_inset
11075
11076
11077 \begin_inset space \hfill{}
11078 \end_inset
11079
11080
11081 \end_layout
11082
11083 \begin_layout Standard
11084 \begin_inset VSpace medskip
11085 \end_inset
11086
11087 Mit diesen Befehlen können beliebig viele Zeichen akzentuiert werden.
11088  Die Akzente
11089 \begin_inset Newline linebreak
11090 \end_inset
11091
11092
11093 \series bold
11094
11095 \backslash
11096 widetilde
11097 \series default
11098  und 
11099 \series bold
11100
11101 \backslash
11102 widehat
11103 \series default
11104  werden aber im Ausdruck nur mit einer Länge von etwa drei Zeichen gesetzt,
11105  was folgendes Beispiel verdeutlicht:
11106 \begin_inset Formula 
11107 \[
11108 \widetilde{A+B=C-D}
11109 \]
11110
11111 \end_inset
11112
11113
11114 \end_layout
11115
11116 \begin_layout Standard
11117 Mit den im vorigen Kapitel beschriebenen Befehlen 
11118 \series bold
11119
11120 \backslash
11121 overset
11122 \series default
11123
11124 \begin_inset Index idx
11125 status collapsed
11126
11127 \begin_layout Plain Layout
11128 Befehle ! O ! 
11129 \backslash
11130 overset
11131 \end_layout
11132
11133 \end_inset
11134
11135  und 
11136 \series bold
11137
11138 \backslash
11139 underset
11140 \series default
11141
11142 \begin_inset Index idx
11143 status collapsed
11144
11145 \begin_layout Plain Layout
11146 Befehle ! U ! 
11147 \backslash
11148 underset
11149 \end_layout
11150
11151 \end_inset
11152
11153  ist es auch möglich mehrere Zeichen zu akzentuieren.
11154  Der Befehl 
11155 \series bold
11156
11157 \backslash
11158 underset
11159 \begin_inset ERT
11160 status collapsed
11161
11162 \begin_layout Plain Layout
11163
11164
11165 \backslash
11166 leer 
11167 \end_layout
11168
11169 \end_inset
11170
11171 A=B
11172 \begin_inset Formula $\downarrow$
11173 \end_inset
11174
11175 ***
11176 \series default
11177  ergibt:
11178 \begin_inset Formula 
11179 \[
11180 \underset{***}{A=B}
11181 \]
11182
11183 \end_inset
11184
11185
11186 \end_layout
11187
11188 \begin_layout Section
11189 Leerraum
11190 \begin_inset CommandInset label
11191 LatexCommand label
11192 name "sub:Leerraum"
11193
11194 \end_inset
11195
11196
11197 \begin_inset Index idx
11198 status collapsed
11199
11200 \begin_layout Plain Layout
11201 Leerraum ! horizontaler
11202 \end_layout
11203
11204 \end_inset
11205
11206
11207 \end_layout
11208
11209 \begin_layout Subsection
11210 Vordefinierter Leerraum
11211 \begin_inset CommandInset label
11212 LatexCommand label
11213 name "sub:Vordefinierter-Leerraum"
11214
11215 \end_inset
11216
11217
11218 \begin_inset Index idx
11219 status collapsed
11220
11221 \begin_layout Plain Layout
11222 Leerraum ! horizontaler ! vordefiniert
11223 \end_layout
11224
11225 \end_inset
11226
11227
11228 \end_layout
11229
11230 \begin_layout Standard
11231 Ab und an ist es notwendig in einer Formel horizontalen Leerraum einzufügen.
11232  Dazu gibt man ein geschütztes Leerzeichen ein.
11233  Es erscheint ein 
11234 \begin_inset Quotes gld
11235 \end_inset
11236
11237
11238 \color blue
11239
11240 \begin_inset ERT
11241 status collapsed
11242
11243 \begin_layout Plain Layout
11244
11245
11246 \backslash
11247 leer 
11248 \end_layout
11249
11250 \end_inset
11251
11252
11253 \color inherit
11254
11255 \begin_inset Quotes grd
11256 \end_inset
11257
11258  und man kann durch mehrfaches Drücken der Leertaste aus acht verschiedenen
11259  Leerraum-Größen wählen.
11260  Man kann die Leerräume auch über den Mathe-Werkzeugleistenknopf 
11261 \begin_inset Graphics
11262         filename ../../images/math/space.png
11263         scale 85
11264
11265 \end_inset
11266
11267  oder mit einzelnen Befehlen aufrufen.
11268  Unabhängig vom eingegebenen Befehl kann man durch Drücken der Leertaste
11269  danach wieder aus allen Größen wählen.
11270 \end_layout
11271
11272 \begin_layout Standard
11273 \align center
11274 \begin_inset VSpace -5mm
11275 \end_inset
11276
11277
11278 \begin_inset Tabular
11279 <lyxtabular version="3" rows="3" columns="7">
11280 <features tabularvalignment="middle">
11281 <column alignment="center" valignment="middle" width="6.8cm">
11282 <column alignment="center" valignment="top" width="0pt">
11283 <column alignment="center" valignment="top" width="0pt">
11284 <column alignment="center" valignment="top" width="0pt">
11285 <column alignment="center" valignment="top" width="0pt">
11286 <column alignment="center" valignment="top" width="0pt">
11287 <column alignment="center" valignment="top" width="0pt">
11288 <row>
11289 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11290 \begin_inset Text
11291
11292 \begin_layout Plain Layout
11293 Befehl
11294 \end_layout
11295
11296 \end_inset
11297 </cell>
11298 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11299 \begin_inset Text
11300
11301 \begin_layout Plain Layout
11302
11303 \backslash
11304 ,
11305 \end_layout
11306
11307 \end_inset
11308 </cell>
11309 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11310 \begin_inset Text
11311
11312 \begin_layout Plain Layout
11313
11314 \backslash
11315 :
11316 \end_layout
11317
11318 \end_inset
11319 </cell>
11320 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11321 \begin_inset Text
11322
11323 \begin_layout Plain Layout
11324
11325 \backslash
11326 ;
11327 \end_layout
11328
11329 \end_inset
11330 </cell>
11331 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11332 \begin_inset Text
11333
11334 \begin_layout Plain Layout
11335
11336 \backslash
11337 quad
11338 \end_layout
11339
11340 \end_inset
11341 </cell>
11342 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11343 \begin_inset Text
11344
11345 \begin_layout Plain Layout
11346
11347 \backslash
11348 qquad
11349 \end_layout
11350
11351 \end_inset
11352 </cell>
11353 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
11354 \begin_inset Text
11355
11356 \begin_layout Plain Layout
11357
11358 \backslash
11359 !
11360 \end_layout
11361
11362 \end_inset
11363 </cell>
11364 </row>
11365 <row>
11366 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none" width="7cm">
11367 \begin_inset Text
11368
11369 \begin_layout Plain Layout
11370 Anzahl der Leertastendrücke nach Eingabe des geschützten Leerzeichens
11371 \end_layout
11372
11373 \end_inset
11374 </cell>
11375 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11376 \begin_inset Text
11377
11378 \begin_layout Plain Layout
11379 0
11380 \end_layout
11381
11382 \end_inset
11383 </cell>
11384 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11385 \begin_inset Text
11386
11387 \begin_layout Plain Layout
11388 1
11389 \end_layout
11390
11391 \end_inset
11392 </cell>
11393 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11394 \begin_inset Text
11395
11396 \begin_layout Plain Layout
11397 2
11398 \end_layout
11399
11400 \end_inset
11401 </cell>
11402 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11403 \begin_inset Text
11404
11405 \begin_layout Plain Layout
11406 3
11407 \end_layout
11408
11409 \end_inset
11410 </cell>
11411 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11412 \begin_inset Text
11413
11414 \begin_layout Plain Layout
11415 4
11416 \end_layout
11417
11418 \end_inset
11419 </cell>
11420 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
11421 \begin_inset Text
11422
11423 \begin_layout Plain Layout
11424 5
11425 \end_layout
11426
11427 \end_inset
11428 </cell>
11429 </row>
11430 <row>
11431 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11432 \begin_inset Text
11433
11434 \begin_layout Plain Layout
11435 Ergebnis
11436 \end_layout
11437
11438 \end_inset
11439 </cell>
11440 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11441 \begin_inset Text
11442
11443 \begin_layout Plain Layout
11444 \begin_inset Formula $A\, B$
11445 \end_inset
11446
11447
11448 \end_layout
11449
11450 \end_inset
11451 </cell>
11452 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11453 \begin_inset Text
11454
11455 \begin_layout Plain Layout
11456 \begin_inset Formula $A\: B$
11457 \end_inset
11458
11459
11460 \end_layout
11461
11462 \end_inset
11463 </cell>
11464 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11465 \begin_inset Text
11466
11467 \begin_layout Plain Layout
11468 \begin_inset Formula $A\; B$
11469 \end_inset
11470
11471
11472 \end_layout
11473
11474 \end_inset
11475 </cell>
11476 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11477 \begin_inset Text
11478
11479 \begin_layout Plain Layout
11480 \begin_inset Formula $A\quad B$
11481 \end_inset
11482
11483
11484 \end_layout
11485
11486 \end_inset
11487 </cell>
11488 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11489 \begin_inset Text
11490
11491 \begin_layout Plain Layout
11492 \begin_inset Formula $A\qquad B$
11493 \end_inset
11494
11495
11496 \end_layout
11497
11498 \end_inset
11499 </cell>
11500 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
11501 \begin_inset Text
11502
11503 \begin_layout Plain Layout
11504 \begin_inset Formula $A\! B$
11505 \end_inset
11506
11507
11508 \end_layout
11509
11510 \end_inset
11511 </cell>
11512 </row>
11513 </lyxtabular>
11514
11515 \end_inset
11516
11517
11518 \end_layout
11519
11520 \begin_layout Standard
11521 Die letzte Größe scheint überhaupt keinen Leerraum zu produzieren.
11522  In LyX ist diese allerdings auch im Gegensatz zu allen anderen rot eingefärbt,
11523  denn sie erstellt negativen Leerraum.
11524  Es gibt noch zwei weitere negative Leerräume:
11525 \end_layout
11526
11527 \begin_layout Standard
11528 \align center
11529 \begin_inset Tabular
11530 <lyxtabular version="3" rows="3" columns="3">
11531 <features tabularvalignment="middle">
11532 <column alignment="center" valignment="middle" width="6.8cm">
11533 <column alignment="center" valignment="top" width="0pt">
11534 <column alignment="center" valignment="top" width="0pt">
11535 <row>
11536 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11537 \begin_inset Text
11538
11539 \begin_layout Plain Layout
11540 Befehl
11541 \end_layout
11542
11543 \end_inset
11544 </cell>
11545 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11546 \begin_inset Text
11547
11548 \begin_layout Plain Layout
11549
11550 \backslash
11551 negmedspace
11552 \end_layout
11553
11554 \end_inset
11555 </cell>
11556 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
11557 \begin_inset Text
11558
11559 \begin_layout Plain Layout
11560
11561 \backslash
11562 negthickspace
11563 \end_layout
11564
11565 \end_inset
11566 </cell>
11567 </row>
11568 <row>
11569 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11570 \begin_inset Text
11571
11572 \begin_layout Plain Layout
11573 Anzahl der Leertastendrücke nach Eingabe des geschützten Leerzeichens
11574 \end_layout
11575
11576 \end_inset
11577 </cell>
11578 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11579 \begin_inset Text
11580
11581 \begin_layout Plain Layout
11582 6
11583 \end_layout
11584
11585 \end_inset
11586 </cell>
11587 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
11588 \begin_inset Text
11589
11590 \begin_layout Plain Layout
11591 7
11592 \end_layout
11593
11594 \end_inset
11595 </cell>
11596 </row>
11597 <row>
11598 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11599 \begin_inset Text
11600
11601 \begin_layout Plain Layout
11602 Ergebnis
11603 \end_layout
11604
11605 \end_inset
11606 </cell>
11607 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
11608 \begin_inset Text
11609
11610 \begin_layout Plain Layout
11611 \begin_inset Formula $A\negmedspace B$
11612 \end_inset
11613
11614
11615 \end_layout
11616
11617 \end_inset
11618 </cell>
11619 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
11620 \begin_inset Text
11621
11622 \begin_layout Plain Layout
11623 \begin_inset Formula $A\negthickspace B$
11624 \end_inset
11625
11626
11627 \end_layout
11628
11629 \end_inset
11630 </cell>
11631 </row>
11632 </lyxtabular>
11633
11634 \end_inset
11635
11636
11637 \end_layout
11638
11639 \begin_layout Standard
11640 Negative Leerräume bewirken, dass sich benachbarte Zeichen überschneiden.
11641  Man kann auf diese Weise Ligaturen erzwingen, was z.
11642 \begin_inset space \thinspace{}
11643 \end_inset
11644
11645 B.
11646  für Summenzeichen von Nutzen ist: 
11647 \end_layout
11648
11649 \begin_layout Standard
11650 \align center
11651 \begin_inset Tabular
11652 <lyxtabular version="3" rows="3" columns="2">
11653 <features tabularvalignment="middle">
11654 <column alignment="center" valignment="top" width="0">
11655 <column alignment="center" valignment="top" width="0">
11656 <row>
11657 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11658 \begin_inset Text
11659
11660 \begin_layout Plain Layout
11661 Befehl
11662 \end_layout
11663
11664 \end_inset
11665 </cell>
11666 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
11667 \begin_inset Text
11668
11669 \begin_layout Plain Layout
11670 Ergebnis
11671 \begin_inset Note Note
11672 status collapsed
11673
11674 \begin_layout Plain Layout
11675
11676 \series bold
11677
11678 \backslash
11679 raisebox
11680 \series default
11681  dient nur als Abstandhalter.
11682 \end_layout
11683
11684 \end_inset
11685
11686
11687 \end_layout
11688
11689 \end_inset
11690 </cell>
11691 </row>
11692 <row>
11693 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
11694 \begin_inset Text
11695
11696 \begin_layout Plain Layout
11697
11698 \backslash
11699 sum
11700 \backslash
11701 sum
11702 \begin_inset ERT
11703 status collapsed
11704
11705 \begin_layout Plain Layout
11706
11707
11708 \backslash
11709 leer 
11710 \end_layout
11711
11712 \end_inset
11713
11714 f_kl
11715 \end_layout
11716
11717 \end_inset
11718 </cell>
11719 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
11720 \begin_inset Text
11721
11722 \begin_layout Plain Layout
11723 \begin_inset Formula $\raisebox{4.5mm}{}\sum\sum f_{kl}\raisebox{-2.5mm}{}$
11724 \end_inset
11725
11726
11727 \end_layout
11728
11729 \end_inset
11730 </cell>
11731 </row>
11732 <row>
11733 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
11734 \begin_inset Text
11735
11736 \begin_layout Plain Layout
11737
11738 \backslash
11739 sum
11740 \backslash
11741 negmedspace
11742 \backslash
11743 sum
11744 \begin_inset ERT
11745 status collapsed
11746
11747 \begin_layout Plain Layout
11748
11749
11750 \backslash
11751 leer 
11752 \end_layout
11753
11754 \end_inset
11755
11756 f_kl
11757 \end_layout
11758
11759 \end_inset
11760 </cell>
11761 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
11762 \begin_inset Text
11763
11764 \begin_layout Plain Layout
11765 \begin_inset Formula $\raisebox{4.5mm}{}\sum\negmedspace\sum f_{kl}\raisebox{-2.5mm}{}$
11766 \end_inset
11767
11768
11769 \end_layout
11770
11771 \end_inset
11772 </cell>
11773 </row>
11774 </lyxtabular>
11775
11776 \end_inset
11777
11778
11779 \end_layout
11780
11781 \begin_layout Standard
11782 Relationen, wie z.
11783 \begin_inset space \thinspace{}
11784 \end_inset
11785
11786 B.
11787  Gleichheitszeichen, sind immer von Leerraum umgeben.
11788  Will man dies unterdrücken, schreibt man das Gleichheitszeichen in eine
11789  TeX-Klammer.
11790  Die Wirkung kann man an folgendem Beispiel gut erkennen:
11791 \end_layout
11792
11793 \begin_layout Standard
11794 \align center
11795 \begin_inset Tabular
11796 <lyxtabular version="3" rows="2" columns="2">
11797 <features tabularvalignment="middle">
11798 <column alignment="center" valignment="top" width="0pt">
11799 <column alignment="center" valignment="top" width="0pt">
11800 <row>
11801 <cell alignment="center" valignment="top" usebox="none">
11802 \begin_inset Text
11803
11804 \begin_layout Plain Layout
11805 normale Gleichung
11806 \end_layout
11807
11808 \end_inset
11809 </cell>
11810 <cell alignment="center" valignment="top" usebox="none">
11811 \begin_inset Text
11812
11813 \begin_layout Plain Layout
11814 \begin_inset Formula $A=B$
11815 \end_inset
11816
11817
11818 \end_layout
11819
11820 \end_inset
11821 </cell>
11822 </row>
11823 <row>
11824 <cell alignment="center" valignment="top" usebox="none">
11825 \begin_inset Text
11826
11827 \begin_layout Plain Layout
11828 \begin_inset Note Note
11829 status collapsed
11830
11831 \begin_layout Plain Layout
11832
11833 \series bold
11834
11835 \backslash
11836 raisebox
11837 \series default
11838  dient nur als Abstandhalter.
11839 \end_layout
11840
11841 \end_inset
11842
11843
11844 \begin_inset Formula $\raisebox{5mm}{}$
11845 \end_inset
11846
11847 Gleichung ohne Leerraum
11848 \end_layout
11849
11850 \end_inset
11851 </cell>
11852 <cell multicolumn="1" alignment="center" valignment="top" usebox="none">
11853 \begin_inset Text
11854
11855 \begin_layout Plain Layout
11856 \begin_inset Formula $A{=}B$
11857 \end_inset
11858
11859
11860 \end_layout
11861
11862 \end_inset
11863 </cell>
11864 </row>
11865 </lyxtabular>
11866
11867 \end_inset
11868
11869
11870 \end_layout
11871
11872 \begin_layout Standard
11873 Der Befehl für die letzte Formel lautet: 
11874 \series bold
11875 A
11876 \backslash
11877 {=
11878 \begin_inset Formula $\to$
11879 \end_inset
11880
11881 B
11882 \end_layout
11883
11884 \begin_layout Standard
11885 \begin_inset VSpace bigskip
11886 \end_inset
11887
11888 Leerräumen werden für physikalische Einheiten benötigt, denn zwischen Wert
11889  und Einheit ist der kleinste Leerraum und kein normales Leerzeichen.
11890  Bei Einheiten im Text fügt man den kleinsten Leerraum über das Menü 
11891 \family sans
11892 Einfügen\SpecialChar \menuseparator
11893 Formatierung\SpecialChar \menuseparator
11894 Kleiner
11895 \begin_inset space ~
11896 \end_inset
11897
11898 Abstand
11899 \family default
11900  (Tastenkürzel 
11901 \family sans
11902 Strg+Shift+Leertaste
11903 \family default
11904 ) ein.
11905 \end_layout
11906
11907 \begin_layout Standard
11908 Ein Beispiel zur Veranschaulichung:
11909 \end_layout
11910
11911 \begin_layout Standard
11912 \begin_inset Tabular
11913 <lyxtabular version="3" rows="2" columns="2">
11914 <features tabularvalignment="middle">
11915 <column alignment="left" valignment="top" width="0">
11916 <column alignment="left" valignment="top" width="0">
11917 <row>
11918 <cell alignment="center" valignment="top" usebox="none">
11919 \begin_inset Text
11920
11921 \begin_layout Plain Layout
11922 24 kW
11923 \begin_inset Formula $\cdot$
11924 \end_inset
11925
11926 h
11927 \end_layout
11928
11929 \end_inset
11930 </cell>
11931 <cell alignment="center" valignment="top" usebox="none">
11932 \begin_inset Text
11933
11934 \begin_layout Plain Layout
11935 Leerzeichen zwischen Wert und Einheit
11936 \end_layout
11937
11938 \end_inset
11939 </cell>
11940 </row>
11941 <row>
11942 <cell alignment="center" valignment="top" usebox="none">
11943 \begin_inset Text
11944
11945 \begin_layout Plain Layout
11946 24
11947 \begin_inset space \thinspace{}
11948 \end_inset
11949
11950 kW
11951 \begin_inset Formula $\cdot$
11952 \end_inset
11953
11954 h
11955 \end_layout
11956
11957 \end_inset
11958 </cell>
11959 <cell alignment="center" valignment="top" usebox="none">
11960 \begin_inset Text
11961
11962 \begin_layout Plain Layout
11963 kleinster Leerraum zwischen Wert und Einheit
11964 \end_layout
11965
11966 \end_inset
11967 </cell>
11968 </row>
11969 </lyxtabular>
11970
11971 \end_inset
11972
11973
11974 \end_layout
11975
11976 \begin_layout Subsection
11977 Variabler Leerraum
11978 \begin_inset ERT
11979 status collapsed
11980
11981 \begin_layout Plain Layout
11982
11983
11984 \backslash
11985 texorpdfstring{
11986 \end_layout
11987
11988 \end_inset
11989
11990
11991 \begin_inset Foot
11992 status collapsed
11993
11994 \begin_layout Plain Layout
11995 für vertikalen Leerraum in Formeln siehe 
11996 \begin_inset CommandInset ref
11997 LatexCommand ref
11998 reference "sub:Zeilenabstand"
11999
12000 \end_inset
12001
12002
12003 \end_layout
12004
12005 \end_inset
12006
12007
12008 \begin_inset ERT
12009 status collapsed
12010
12011 \begin_layout Plain Layout
12012
12013 }{}
12014 \end_layout
12015
12016 \end_inset
12017
12018
12019 \begin_inset Note Note
12020 status collapsed
12021
12022 \begin_layout Plain Layout
12023
12024 \series bold
12025
12026 \backslash
12027 texorpdfstring
12028 \series default
12029  dient dazu, dass die Fußnote nicht mit im PDF-Lesezeichen erscheint.
12030 \end_layout
12031
12032 \begin_layout Plain Layout
12033 Näheres zu 
12034 \series bold
12035
12036 \backslash
12037 texorpdfstring
12038 \series default
12039  steht in Kapitel 
12040 \begin_inset CommandInset ref
12041 LatexCommand ref
12042 reference "sub:Formeln-in-Überschriften"
12043
12044 \end_inset
12045
12046 .
12047 \end_layout
12048
12049 \end_inset
12050
12051
12052 \begin_inset CommandInset label
12053 LatexCommand label
12054 name "sub:Variabler-Leerraum"
12055
12056 \end_inset
12057
12058
12059 \begin_inset Index idx
12060 status collapsed
12061
12062 \begin_layout Plain Layout
12063 Leerraum ! horizontaler ! variabel
12064 \end_layout
12065
12066 \end_inset
12067
12068
12069 \end_layout
12070
12071 \begin_layout Standard
12072 Leerraum mit vorgegebener Länge lässt sich mit dem Befehl 
12073 \series bold
12074
12075 \backslash
12076 hspace
12077 \series default
12078
12079 \begin_inset Index idx
12080 status collapsed
12081
12082 \begin_layout Plain Layout
12083 Befehle ! H ! 
12084 \backslash
12085 hspace
12086 \end_layout
12087
12088 \end_inset
12089
12090  einfügen.
12091  Es erscheint ein langes 
12092 \begin_inset Quotes gld
12093 \end_inset
12094
12095
12096 \color blue
12097
12098 \begin_inset ERT
12099 status collapsed
12100
12101 \begin_layout Plain Layout
12102
12103
12104 \backslash
12105 leer 
12106 \end_layout
12107
12108 \end_inset
12109
12110
12111 \color inherit
12112
12113 \begin_inset Quotes grd
12114 \end_inset
12115
12116 .
12117  Die Länge kann eingestellt werden, indem man mit der linken Maustaste auf
12118  das 
12119 \begin_inset Quotes gld
12120 \end_inset
12121
12122
12123 \color blue
12124
12125 \begin_inset ERT
12126 status collapsed
12127
12128 \begin_layout Plain Layout
12129
12130
12131 \backslash
12132 leer 
12133 \end_layout
12134
12135 \end_inset
12136
12137
12138 \color inherit
12139
12140 \begin_inset Quotes grd
12141 \end_inset
12142
12143  klickt.
12144  Die Länge darf auch negativ sein.
12145  Um so viel Leerraum einzufügen, dass die Formel allen verfügbaren Platz
12146  einnimmt, benutzt man den Befehl 
12147 \series bold
12148
12149 \backslash
12150 hfill
12151 \series default
12152
12153 \begin_inset Index idx
12154 status collapsed
12155
12156 \begin_layout Plain Layout
12157 Befehle ! H ! 
12158 \backslash
12159 hfill
12160 \end_layout
12161
12162 \end_inset
12163
12164 .
12165 \end_layout
12166
12167 \begin_layout Standard
12168 \begin_inset VSpace -1mm
12169 \end_inset
12170
12171
12172 \end_layout
12173
12174 \begin_layout Standard
12175 \align center
12176 \begin_inset Tabular
12177 <lyxtabular version="3" rows="4" columns="2">
12178 <features tabularvalignment="middle">
12179 <column alignment="center" valignment="top" width="0">
12180 <column alignment="center" valignment="top" width="0">
12181 <row>
12182 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
12183 \begin_inset Text
12184
12185 \begin_layout Plain Layout
12186 Befehl (
12187 \backslash
12188 hspace Länge)
12189 \end_layout
12190
12191 \end_inset
12192 </cell>
12193 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
12194 \begin_inset Text
12195
12196 \begin_layout Plain Layout
12197 Ergebnis
12198 \end_layout
12199
12200 \end_inset
12201 </cell>
12202 </row>
12203 <row>
12204 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12205 \begin_inset Text
12206
12207 \begin_layout Plain Layout
12208 A=B
12209 \backslash
12210 hspace{3cm
12211 \begin_inset Formula $\to$
12212 \end_inset
12213
12214 A
12215 \backslash
12216 not=C (3
12217 \begin_inset space \thinspace{}
12218 \end_inset
12219
12220 cm)
12221 \end_layout
12222
12223 \end_inset
12224 </cell>
12225 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12226 \begin_inset Text
12227
12228 \begin_layout Plain Layout
12229 \begin_inset Formula $A=B\hspace{3cm}A\not=C$
12230 \end_inset
12231
12232
12233 \end_layout
12234
12235 \end_inset
12236 </cell>
12237 </row>
12238 <row>
12239 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
12240 \begin_inset Text
12241
12242 \begin_layout Plain Layout
12243 A
12244 \backslash
12245 hspace{-1mm
12246 \begin_inset Formula $\to$
12247 \end_inset
12248
12249 A
12250 \backslash
12251 not=A (-1
12252 \begin_inset space \thinspace{}
12253 \end_inset
12254
12255 mm)
12256 \end_layout
12257
12258 \end_inset
12259 </cell>
12260 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
12261 \begin_inset Text
12262
12263 \begin_layout Plain Layout
12264 \begin_inset Formula $A\hspace{-1mm}A\not=A$
12265 \end_inset
12266
12267
12268 \end_layout
12269
12270 \end_inset
12271 </cell>
12272 </row>
12273 <row>
12274 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
12275 \begin_inset Text
12276
12277 \begin_layout Plain Layout
12278 A=A
12279 \backslash
12280 hfill
12281 \begin_inset ERT
12282 status collapsed
12283
12284 \begin_layout Plain Layout
12285
12286
12287 \backslash
12288 leer 
12289 \end_layout
12290
12291 \end_inset
12292
12293 B=B
12294 \end_layout
12295
12296 \end_inset
12297 </cell>
12298 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
12299 \begin_inset Text
12300
12301 \begin_layout Plain Layout
12302 \begin_inset Formula $A=A\hfill B=B$
12303 \end_inset
12304
12305
12306 \end_layout
12307
12308 \end_inset
12309 </cell>
12310 </row>
12311 </lyxtabular>
12312
12313 \end_inset
12314
12315
12316 \end_layout
12317
12318 \begin_layout Standard
12319 Im letzten Beispiel ist der verfügbare Platz durch die Länge des längsten
12320  Spalteneintrags der Tabelle vorgegeben.
12321  In einer eingebetteten Formel ist der Platz von der Länge der Zeile abhängig,
12322  in die 
12323 \series bold
12324
12325 \backslash
12326 hfill
12327 \series default
12328  eingegeben wird.
12329  Füllt eine Zeile die Breite komplett aus, wird demnach kein Leerraum erstellt.
12330  
12331 \series bold
12332
12333 \backslash
12334 hfill
12335 \series default
12336  wirkt in abgesetzten Formeln nur, wenn der Formelstil 
12337 \series bold
12338 Eingerückt
12339 \series default
12340  eingestellt ist.
12341  (Formelstile sind in 
12342 \begin_inset CommandInset ref
12343 LatexCommand ref
12344 reference "sec:Formelstile"
12345
12346 \end_inset
12347
12348  erklärt.)
12349 \end_layout
12350
12351 \begin_layout Standard
12352 Neben 
12353 \series bold
12354
12355 \backslash
12356 hfill
12357 \series default
12358  gibt es noch die Befehle 
12359 \series bold
12360
12361 \backslash
12362 dotfill
12363 \series default
12364  und 
12365 \series bold
12366
12367 \backslash
12368 hrulefill
12369 \series default
12370 , die den Leerraum mit einem Muster füllen, siehe 
12371 \begin_inset CommandInset ref
12372 LatexCommand ref
12373 reference "sub:Fortsetzungspunkte"
12374
12375 \end_inset
12376
12377  für ein Beispiel.
12378 \end_layout
12379
12380 \begin_layout Standard
12381 Variabler Leerraum kann für Text über das Menü 
12382 \family sans
12383 Einfügen\SpecialChar \menuseparator
12384 Formatierung\SpecialChar \menuseparator
12385 Horizontaler
12386 \begin_inset space ~
12387 \end_inset
12388
12389 Abstand
12390 \family default
12391  eingefügt werden:
12392 \end_layout
12393
12394 \begin_layout Standard
12395 Dies ist eine Zeile mit
12396 \begin_inset space \hspace{}
12397 \length 2cm
12398 \end_inset
12399
12400 2
12401 \begin_inset space \thinspace{}
12402 \end_inset
12403
12404 cm Leerraum.
12405 \end_layout
12406
12407 \begin_layout Standard
12408 Dies ist eine Zeile mit
12409 \begin_inset space \hfill{}
12410 \end_inset
12411
12412 maximalem Leerraum.
12413 \end_layout
12414
12415 \begin_layout Subsection
12416 Leerraum neben eingebetteten Formeln
12417 \begin_inset Index idx
12418 status collapsed
12419
12420 \begin_layout Plain Layout
12421 Leerraum ! neben eingebetteten Formeln
12422 \end_layout
12423
12424 \end_inset
12425
12426
12427 \end_layout
12428
12429 \begin_layout Standard
12430 Über die Länge 
12431 \series bold
12432
12433 \backslash
12434 mathsurround
12435 \series default
12436
12437 \begin_inset Index idx
12438 status collapsed
12439
12440 \begin_layout Plain Layout
12441 Befehle ! M ! 
12442 \backslash
12443 mathsurround
12444 \end_layout
12445
12446 \end_inset
12447
12448  lässt sich der Leerraum einstellen, der neben eingebettete Formeln gesetzt
12449  wird.
12450  Der Wert einer Länge wird mit dem Befehl 
12451 \series bold
12452
12453 \backslash
12454 setlength
12455 \series default
12456
12457 \begin_inset Index idx
12458 status collapsed
12459
12460 \begin_layout Plain Layout
12461 Befehle ! S ! 
12462 \backslash
12463 setlength
12464 \end_layout
12465
12466 \end_inset
12467
12468  gesetzt.
12469  Dieser besitzt folgendes Befehlsschema:
12470 \end_layout
12471
12472 \begin_layout Standard
12473
12474 \series bold
12475
12476 \backslash
12477 setlength{Längenname}{Wert}
12478 \end_layout
12479
12480 \begin_layout Standard
12481 Um 
12482 \series bold
12483
12484 \backslash
12485 mathsurround
12486 \series default
12487  den Wert 5
12488 \begin_inset space \thinspace{}
12489 \end_inset
12490
12491 mm zuzuweisen, gibt man im TeX-Modus den Befehl
12492 \end_layout
12493
12494 \begin_layout Standard
12495
12496 \series bold
12497
12498 \backslash
12499 setlength{
12500 \backslash
12501 mathsurround}{5mm}
12502 \end_layout
12503
12504 \begin_layout Standard
12505 ein.
12506  Neben alle eingebetteten Formeln, die auf den Befehl folgen, wird nun 5
12507 \begin_inset space \thinspace{}
12508 \end_inset
12509
12510 mm Leerraum gesetzt:
12511 \begin_inset ERT
12512 status collapsed
12513
12514 \begin_layout Plain Layout
12515
12516
12517 \backslash
12518 setlength{
12519 \backslash
12520 mathsurround}{5mm}
12521 \end_layout
12522
12523 \end_inset
12524
12525
12526 \end_layout
12527
12528 \begin_layout Standard
12529 Dies ist eine Zeile in der sich 
12530 \begin_inset Formula $A=B$
12531 \end_inset
12532
12533  eine Formel mit 5
12534 \begin_inset space \thinspace{}
12535 \end_inset
12536
12537 mm umgebendem Leerraum befindet.
12538 \begin_inset ERT
12539 status collapsed
12540
12541 \begin_layout Plain Layout
12542
12543
12544 \backslash
12545 setlength{
12546 \backslash
12547 mathsurround}{0pt}
12548 \end_layout
12549
12550 \end_inset
12551
12552
12553 \end_layout
12554
12555 \begin_layout Standard
12556 Um wieder zum voreingestellten Wert zurückzukehren, setzt man 
12557 \series bold
12558
12559 \backslash
12560 mathsurround
12561 \series default
12562  auf den Wert 0
12563 \begin_inset space \thinspace{}
12564 \end_inset
12565
12566 pt.
12567 \end_layout
12568
12569 \begin_layout Section
12570 Boxen und Rahmen
12571 \begin_inset Index idx
12572 status collapsed
12573
12574 \begin_layout Plain Layout
12575 Boxen
12576 \end_layout
12577
12578 \end_inset
12579
12580
12581 \begin_inset Index idx
12582 status collapsed
12583
12584 \begin_layout Plain Layout
12585 Rahmen | see
12586 \begin_inset ERT
12587 status collapsed
12588
12589 \begin_layout Plain Layout
12590
12591 {
12592 \end_layout
12593
12594 \end_inset
12595
12596 Boxen
12597 \begin_inset ERT
12598 status collapsed
12599
12600 \begin_layout Plain Layout
12601
12602 }
12603 \end_layout
12604
12605 \end_inset
12606
12607
12608 \end_layout
12609
12610 \end_inset
12611
12612
12613 \end_layout
12614
12615 \begin_layout Standard
12616 Boxen für Text sind im Kapitel 
12617 \family typewriter
12618 Boxen
12619 \family default
12620  im Handbuch 
12621 \family typewriter
12622 Eingebettete
12623 \begin_inset space ~
12624 \end_inset
12625
12626 Objekte
12627 \family default
12628  beschrieben.
12629 \end_layout
12630
12631 \begin_layout Subsection
12632 Boxen mit Rahmen
12633 \begin_inset CommandInset label
12634 LatexCommand label
12635 name "sub:Boxen-mit-Rahmen"
12636
12637 \end_inset
12638
12639
12640 \begin_inset Index idx
12641 status collapsed
12642
12643 \begin_layout Plain Layout
12644 Boxen ! mit Rahmen
12645 \end_layout
12646
12647 \end_inset
12648
12649
12650 \end_layout
12651
12652 \begin_layout Standard
12653 Es ist möglich Formeln oder Teile davon mit den Befehlen 
12654 \series bold
12655
12656 \backslash
12657 fbox
12658 \series default
12659
12660 \begin_inset Index idx
12661 status collapsed
12662
12663 \begin_layout Plain Layout
12664 Befehle ! F ! 
12665 \backslash
12666 fbox
12667 \end_layout
12668
12669 \end_inset
12670
12671  und 
12672 \series bold
12673
12674 \backslash
12675 boxed
12676 \series default
12677
12678 \begin_inset Index idx
12679 status collapsed
12680
12681 \begin_layout Plain Layout
12682 Befehle ! B ! 
12683 \backslash
12684 boxed
12685 \end_layout
12686
12687 \end_inset
12688
12689  zu umranden.
12690 \end_layout
12691
12692 \begin_layout Standard
12693 Gibt man einen dieser Befehle in eine Formel ein, erscheint ein Eingabefeld
12694  in einem Rahmen.
12695  Bei 
12696 \series bold
12697
12698 \backslash
12699 fbox
12700 \series default
12701  muss in diesem Eingabefeld mit 
12702 \family sans
12703 Strg+M
12704 \family default
12705  noch eine Formel erstellt werden, denn der Inhalt dieser Box wird sonst
12706  als mathematischer Text behandelt.
12707  Verwendet man 
12708 \series bold
12709
12710 \backslash
12711 boxed
12712 \series default
12713 , wird automatisch im Rahmen eine neue Formel erzeugt.
12714 \end_layout
12715
12716 \begin_layout Standard
12717 Der Befehl 
12718 \series bold
12719
12720 \backslash
12721 fbox
12722 \series default
12723  ist nicht zur Umrandung von abgesetzten Formeln geeignet, denn die Formel
12724  wird dann immer in Textzeilengröße gesetzt.
12725  Im Gegensatz dazu ist 
12726 \series bold
12727
12728 \backslash
12729 boxed
12730 \series default
12731  nicht zur Umrandung von Formeln in einer Textzeile geeignet, denn die Formel
12732  wird dann immer in der Größe einer abgesetzten Formel gesetzt.
12733 \end_layout
12734
12735 \begin_layout Standard
12736 Als Erweiterung zu 
12737 \series bold
12738
12739 \backslash
12740 fbox
12741 \series default
12742  gibt es den Befehl 
12743 \series bold
12744
12745 \backslash
12746 framebox
12747 \series default
12748
12749 \begin_inset Index idx
12750 status collapsed
12751
12752 \begin_layout Plain Layout
12753 Befehle ! F ! 
12754 \backslash
12755 framebox
12756 \end_layout
12757
12758 \end_inset
12759
12760 , bei dem man zusätzlich die Rahmenbreite und die Ausrichtung einstellen
12761  kann.
12762  
12763 \series bold
12764
12765 \backslash
12766 framebox
12767 \series default
12768  wird nach folgendem Schema verwendet:
12769 \end_layout
12770
12771 \begin_layout Standard
12772
12773 \series bold
12774
12775 \backslash
12776 framebox[Rahmenbreite][Position]{Boxinhalt}
12777 \end_layout
12778
12779 \begin_layout Standard
12780 Die Position kann entweder 
12781 \emph on
12782 l
12783 \emph default
12784  oder 
12785 \emph on
12786 r
12787 \emph default
12788  sein.
12789  
12790 \emph on
12791 l
12792 \emph default
12793  bewirkt linksbündige, 
12794 \emph on
12795 r
12796 \emph default
12797  rechtsbündige Ausrichtung der Formel in der Box.
12798  Gibt man keine Position an, wird die Formel zentriert.
12799 \begin_inset Newline newline
12800 \end_inset
12801
12802 Gibt man keine Breite an, darf auch keine Position angegeben werden.
12803  In diesem Falle wird die Rahmenbreite wie bei 
12804 \series bold
12805
12806 \backslash
12807 fbox
12808 \series default
12809  an den Boxinhalt angepasst.
12810 \end_layout
12811
12812 \begin_layout Standard
12813 Wenn man den Befehl 
12814 \series bold
12815
12816 \backslash
12817 framebox
12818 \series default
12819  eingibt, erscheint eine Box mit drei Eingabefeldern.
12820  Die ersten beiden sind von eckigen Klammern umgeben und stehen für die
12821  beiden optionalen Argumente.
12822  In das dritte Feld wird wie bei 
12823 \series bold
12824
12825 \backslash
12826 fbox
12827 \series default
12828  die Formel eingegeben.
12829 \end_layout
12830
12831 \begin_layout Standard
12832 \align center
12833 \begin_inset Tabular
12834 <lyxtabular version="3" rows="5" columns="2">
12835 <features tabularvalignment="middle">
12836 <column alignment="center" valignment="top" width="0">
12837 <column alignment="center" valignment="top" width="0">
12838 <row>
12839 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
12840 \begin_inset Text
12841
12842 \begin_layout Plain Layout
12843 Befehl
12844 \end_layout
12845
12846 \end_inset
12847 </cell>
12848 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
12849 \begin_inset Text
12850
12851 \begin_layout Plain Layout
12852 Ergebnis
12853 \begin_inset Note Note
12854 status collapsed
12855
12856 \begin_layout Plain Layout
12857
12858 \series bold
12859
12860 \backslash
12861 raisebox
12862 \series default
12863  dient nur als Abstandhalter.
12864 \end_layout
12865
12866 \end_inset
12867
12868
12869 \end_layout
12870
12871 \end_inset
12872 </cell>
12873 </row>
12874 <row>
12875 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12876 \begin_inset Text
12877
12878 \begin_layout Plain Layout
12879
12880 \backslash
12881 fbox
12882 \begin_inset ERT
12883 status collapsed
12884
12885 \begin_layout Plain Layout
12886
12887
12888 \backslash
12889 leer 
12890 \end_layout
12891
12892 \end_inset
12893
12894
12895 \family sans
12896 Strg+M
12897 \family default
12898  
12899 \backslash
12900 int
12901 \begin_inset ERT
12902 status collapsed
12903
12904 \begin_layout Plain Layout
12905
12906
12907 \backslash
12908 leer 
12909 \end_layout
12910
12911 \end_inset
12912
12913 A=B
12914 \end_layout
12915
12916 \end_inset
12917 </cell>
12918 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12919 \begin_inset Text
12920
12921 \begin_layout Plain Layout
12922 \begin_inset Formula $\raisebox{6mm}{}\fbox{\ensuremath{\int A=B}}\raisebox{-4mm}{}$
12923 \end_inset
12924
12925
12926 \end_layout
12927
12928 \end_inset
12929 </cell>
12930 </row>
12931 <row>
12932 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12933 \begin_inset Text
12934
12935 \begin_layout Plain Layout
12936
12937 \backslash
12938 boxed
12939 \begin_inset ERT
12940 status collapsed
12941
12942 \begin_layout Plain Layout
12943
12944
12945 \backslash
12946 leer 
12947 \end_layout
12948
12949 \end_inset
12950
12951
12952 \backslash
12953 int
12954 \begin_inset ERT
12955 status collapsed
12956
12957 \begin_layout Plain Layout
12958
12959
12960 \backslash
12961 leer 
12962 \end_layout
12963
12964 \end_inset
12965
12966 A=B
12967 \end_layout
12968
12969 \end_inset
12970 </cell>
12971 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
12972 \begin_inset Text
12973
12974 \begin_layout Plain Layout
12975 \begin_inset Formula $\raisebox{8.5mm}{}\boxed{\int A=B}\raisebox{-6.5mm}{}$
12976 \end_inset
12977
12978
12979 \end_layout
12980
12981 \end_inset
12982 </cell>
12983 </row>
12984 <row>
12985 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
12986 \begin_inset Text
12987
12988 \begin_layout Plain Layout
12989 A+
12990 \backslash
12991 fbox
12992 \begin_inset ERT
12993 status collapsed
12994
12995 \begin_layout Plain Layout
12996
12997
12998 \backslash
12999 leer 
13000 \end_layout
13001
13002 \end_inset
13003
13004 B
13005 \end_layout
13006
13007 \end_inset
13008 </cell>
13009 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13010 \begin_inset Text
13011
13012 \begin_layout Plain Layout
13013 \begin_inset Formula $\raisebox{6mm}{}A+\fbox{B}\raisebox{-3mm}{}$
13014 \end_inset
13015
13016
13017 \end_layout
13018
13019 \end_inset
13020 </cell>
13021 </row>
13022 <row>
13023 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
13024 \begin_inset Text
13025
13026 \begin_layout Plain Layout
13027
13028 \backslash
13029 framebox
13030 \begin_inset ERT
13031 status collapsed
13032
13033 \begin_layout Plain Layout
13034
13035
13036 \backslash
13037 leer 
13038 \end_layout
13039
13040 \end_inset
13041
13042 20mm
13043 \begin_inset Formula $\to$
13044 \end_inset
13045
13046
13047 \begin_inset Formula $\to$
13048 \end_inset
13049
13050
13051 \family sans
13052 Strg+M
13053 \family default
13054  
13055 \backslash
13056 frac
13057 \begin_inset ERT
13058 status collapsed
13059
13060 \begin_layout Plain Layout
13061
13062
13063 \backslash
13064 leer 
13065 \end_layout
13066
13067 \end_inset
13068
13069 A
13070 \begin_inset Formula $\downarrow$
13071 \end_inset
13072
13073 B
13074 \end_layout
13075
13076 \end_inset
13077 </cell>
13078 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
13079 \begin_inset Text
13080
13081 \begin_layout Plain Layout
13082 \begin_inset Formula $\raisebox{6mm}{}$
13083 \end_inset
13084
13085
13086 \begin_inset Formula $\framebox[20mm][]{\ensuremath{\frac{A}{B}}}$
13087 \end_inset
13088
13089
13090 \begin_inset Formula $\raisebox{-4mm}{}$
13091 \end_inset
13092
13093
13094 \end_layout
13095
13096 \end_inset
13097 </cell>
13098 </row>
13099 </lyxtabular>
13100
13101 \end_inset
13102
13103
13104 \end_layout
13105
13106 \begin_layout Standard
13107 Die Rahmendicke kann ebenfalls eingestellt werden.
13108  Dazu müssen vor der Formel im TeX-Modus die Befehle
13109 \end_layout
13110
13111 \begin_layout Standard
13112
13113 \series bold
13114
13115 \backslash
13116 fboxrule
13117 \series default
13118  
13119 \series bold
13120
13121 \begin_inset Quotes gld
13122 \end_inset
13123
13124 Dicke
13125 \begin_inset Quotes grd
13126 \end_inset
13127
13128
13129 \series default
13130  
13131 \series bold
13132
13133 \backslash
13134 fboxsep
13135 \series default
13136  
13137 \series bold
13138
13139 \begin_inset Quotes gld
13140 \end_inset
13141
13142 Abstand
13143 \begin_inset Quotes grd
13144 \end_inset
13145
13146
13147 \end_layout
13148
13149 \begin_layout Standard
13150 eingegeben werden.
13151  
13152 \begin_inset Quotes gld
13153 \end_inset
13154
13155 Abstand
13156 \begin_inset Quotes grd
13157 \end_inset
13158
13159  legt dabei den minimalen Abstand zwischen Rahmen und dem ersten Zeichen
13160  in der Box fest.
13161  Ein Beispiel dafür ist folgende umrandete Formel:
13162 \begin_inset ERT
13163 status collapsed
13164
13165 \begin_layout Plain Layout
13166
13167
13168 \backslash
13169 fboxrule 2mm 
13170 \backslash
13171 fboxsep 3mm
13172 \end_layout
13173
13174 \end_inset
13175
13176
13177 \begin_inset Formula 
13178 \[
13179 \boxed{A+B=C}
13180 \]
13181
13182 \end_inset
13183
13184 Vor dieser Formel wurde im TeX-Modus
13185 \end_layout
13186
13187 \begin_layout Standard
13188
13189 \series bold
13190
13191 \backslash
13192 fboxrule
13193 \series default
13194  
13195 \series bold
13196 2mm
13197 \series default
13198  
13199 \series bold
13200
13201 \backslash
13202 fboxsep
13203 \series default
13204  
13205 \series bold
13206 3mm
13207 \end_layout
13208
13209 \begin_layout Standard
13210 eingegeben.
13211  Diese angegeben Werte werden für alle folgenden Boxen verwendet.
13212 \end_layout
13213
13214 \begin_layout Standard
13215 Möchte man wieder zur Standardrahmengröße zurückkehren, gibt man vor der
13216  nächsten Formel im TeX-Modus folgende Befehle ein:
13217 \end_layout
13218
13219 \begin_layout Standard
13220
13221 \series bold
13222
13223 \backslash
13224 fboxrule
13225 \series default
13226  
13227 \series bold
13228 0.4pt
13229 \series default
13230  
13231 \series bold
13232
13233 \backslash
13234 fboxsep
13235 \series default
13236  
13237 \series bold
13238 3pt
13239 \series default
13240
13241 \begin_inset ERT
13242 status collapsed
13243
13244 \begin_layout Plain Layout
13245
13246
13247 \backslash
13248 fboxrule 0.4pt 
13249 \backslash
13250 fboxsep 3pt
13251 \end_layout
13252
13253 \end_inset
13254
13255
13256 \end_layout
13257
13258 \begin_layout Subsection
13259 Boxen ohne Rahmen
13260 \begin_inset CommandInset label
13261 LatexCommand label
13262 name "sub:Boxen-ohne-Rahmen"
13263
13264 \end_inset
13265
13266
13267 \begin_inset Index idx
13268 status collapsed
13269
13270 \begin_layout Plain Layout
13271 Boxen ! ohne Rahmen
13272 \end_layout
13273
13274 \end_inset
13275
13276
13277 \end_layout
13278
13279 \begin_layout Standard
13280 Für Boxen ohne Rahmen gibt es folgende Box-Befehle: 
13281 \series bold
13282
13283 \backslash
13284 mbox
13285 \series default
13286
13287 \begin_inset Index idx
13288 status collapsed
13289
13290 \begin_layout Plain Layout
13291 Befehle ! M ! 
13292 \backslash
13293 mbox
13294 \end_layout
13295
13296 \end_inset
13297
13298
13299 \series bold
13300
13301 \backslash
13302 makebox
13303 \series default
13304
13305 \begin_inset Index idx
13306 status collapsed
13307
13308 \begin_layout Plain Layout
13309 Befehle ! M ! 
13310 \backslash
13311 makebox
13312 \end_layout
13313
13314 \end_inset
13315
13316  und
13317 \begin_inset Newline linebreak
13318 \end_inset
13319
13320
13321 \series bold
13322
13323 \backslash
13324 raisebox
13325 \series default
13326
13327 \begin_inset Index idx
13328 status collapsed
13329
13330 \begin_layout Plain Layout
13331 Befehle ! R ! 
13332 \backslash
13333 raisebox
13334 \end_layout
13335
13336 \end_inset
13337
13338
13339 \end_layout
13340
13341 \begin_layout Standard
13342 Mit 
13343 \series bold
13344
13345 \backslash
13346 raisebox
13347 \series default
13348  kann man eine Box hoch- oder tiefstellen.
13349  Allerdings behalten die Zeichen in der Box im Gegensatz zum normalen Hochstelle
13350 n die Schriftgröße bei.
13351  
13352 \series bold
13353
13354 \backslash
13355 raisebox
13356 \series default
13357  wird dabei mit folgendem Schema benutzt:
13358 \end_layout
13359
13360 \begin_layout Standard
13361
13362 \series bold
13363
13364 \backslash
13365 raisebox{Höhe}{Boxinhalt}
13366 \end_layout
13367
13368 \begin_layout Standard
13369 Soll in der Box eine Formel stehen, muss man wie bei 
13370 \series bold
13371
13372 \backslash
13373 fbox
13374 \series default
13375  eine weitere Formel erstellen.
13376  
13377 \begin_inset Note Greyedout
13378 status open
13379
13380 \begin_layout Plain Layout
13381
13382 \series bold
13383 Achtung:
13384 \series default
13385  Für 
13386 \series bold
13387
13388 \backslash
13389 raisebox
13390 \series default
13391  wird diese weitere Formel durch zweimaliges statt einmaliges Drücken von
13392  
13393 \family sans
13394 Strg+M
13395 \family default
13396  erstellt, denn LyX unterstützt 
13397 \series bold
13398
13399 \backslash
13400 raisebox
13401 \series default
13402  noch nicht direkt.
13403 \end_layout
13404
13405 \end_inset
13406
13407
13408 \end_layout
13409
13410 \begin_layout Standard
13411 \align center
13412 \begin_inset Tabular
13413 <lyxtabular version="3" rows="4" columns="2">
13414 <features tabularvalignment="middle">
13415 <column alignment="center" valignment="top" width="0">
13416 <column alignment="center" valignment="top" width="0">
13417 <row>
13418 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
13419 \begin_inset Text
13420
13421 \begin_layout Plain Layout
13422 Befehl
13423 \end_layout
13424
13425 \end_inset
13426 </cell>
13427 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
13428 \begin_inset Text
13429
13430 \begin_layout Plain Layout
13431 Ergebnis
13432 \end_layout
13433
13434 \end_inset
13435 </cell>
13436 </row>
13437 <row>
13438 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13439 \begin_inset Text
13440
13441 \begin_layout Plain Layout
13442 H
13443 \backslash
13444 raisebox{2mm
13445 \begin_inset Formula $\to$
13446 \end_inset
13447
13448
13449 \backslash
13450 {al
13451 \begin_inset Formula $\to$
13452 \end_inset
13453
13454  lo
13455 \end_layout
13456
13457 \end_inset
13458 </cell>
13459 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13460 \begin_inset Text
13461
13462 \begin_layout Plain Layout
13463 \begin_inset Formula $H\raisebox{2mm}{al}lo$
13464 \end_inset
13465
13466
13467 \end_layout
13468
13469 \end_inset
13470 </cell>
13471 </row>
13472 <row>
13473 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
13474 \begin_inset Text
13475
13476 \begin_layout Plain Layout
13477 H
13478 \backslash
13479 raisebox{-2mm
13480 \begin_inset Formula $\to$
13481 \end_inset
13482
13483
13484 \backslash
13485 {al
13486 \begin_inset Formula $\to$
13487 \end_inset
13488
13489 lo
13490 \end_layout
13491
13492 \end_inset
13493 </cell>
13494 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
13495 \begin_inset Text
13496
13497 \begin_layout Plain Layout
13498 \begin_inset Formula $H\raisebox{-2mm}{al}lo$
13499 \end_inset
13500
13501
13502 \end_layout
13503
13504 \end_inset
13505 </cell>
13506 </row>
13507 <row>
13508 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
13509 \begin_inset Text
13510
13511 \begin_layout Plain Layout
13512 A=
13513 \backslash
13514 raisebox{-2mm
13515 \begin_inset Formula $\to$
13516 \end_inset
13517
13518
13519 \backslash
13520 {
13521 \family sans
13522 Strg+M Strg+M
13523 \family default
13524  
13525 \backslash
13526 sqrt
13527 \begin_inset ERT
13528 status collapsed
13529
13530 \begin_layout Plain Layout
13531
13532
13533 \backslash
13534 leer 
13535 \end_layout
13536
13537 \end_inset
13538
13539
13540 \end_layout
13541
13542 \end_inset
13543 </cell>
13544 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
13545 \begin_inset Text
13546
13547 \begin_layout Plain Layout
13548 \begin_inset Formula $A=\raisebox{-2mm}{\mbox{\ensuremath{\sqrt{B}}}}$
13549 \end_inset
13550
13551
13552 \end_layout
13553
13554 \end_inset
13555 </cell>
13556 </row>
13557 </lyxtabular>
13558
13559 \end_inset
13560
13561
13562 \end_layout
13563
13564 \begin_layout Standard
13565 Der Befehl 
13566 \series bold
13567
13568 \backslash
13569 mbox
13570 \series default
13571  ist äquivalent zu 
13572 \series bold
13573
13574 \backslash
13575 fbox
13576 \series default
13577  und 
13578 \series bold
13579
13580 \backslash
13581 makebox
13582 \series default
13583  ist äquivalent zu 
13584 \series bold
13585
13586 \backslash
13587 framebox
13588 \series default
13589 , nur dass es keinen Rahmen gibt.
13590 \end_layout
13591
13592 \begin_layout Subsection
13593 Farbige Boxen
13594 \begin_inset CommandInset label
13595 LatexCommand label
13596 name "sub:Farbige-Boxen"
13597
13598 \end_inset
13599
13600
13601 \begin_inset Index idx
13602 status collapsed
13603
13604 \begin_layout Plain Layout
13605 Boxen ! farbige
13606 \end_layout
13607
13608 \end_inset
13609
13610
13611 \end_layout
13612
13613 \begin_layout Standard
13614 Damit die in diesem Kapitel angegebenen Befehle benutzt werden können, muss
13615  im LaTeX-Vorspann das LaTeX-Paket 
13616 \series bold
13617 color
13618 \series default
13619
13620 \begin_inset Foot
13621 status collapsed
13622
13623 \begin_layout Plain Layout
13624 Das Paket 
13625 \series bold
13626 color
13627 \series default
13628  ist Teil jeder LaTeX-Standardinstallation.
13629 \end_layout
13630
13631 \end_inset
13632
13633
13634 \begin_inset Index idx
13635 status collapsed
13636
13637 \begin_layout Plain Layout
13638 Pakete ! color
13639 \end_layout
13640
13641 \end_inset
13642
13643  mit der Zeile
13644 \end_layout
13645
13646 \begin_layout Standard
13647
13648 \series bold
13649
13650 \backslash
13651 usepackage{color}
13652 \end_layout
13653
13654 \begin_layout Standard
13655 geladen werden
13656 \begin_inset Foot
13657 status collapsed
13658
13659 \begin_layout Plain Layout
13660 Wird irgendwo im Dokument Text mit einer vordefinierten Farbe gefärbt, lädt
13661  LyX das LaTeX-Paket 
13662 \series bold
13663 color
13664 \series default
13665  automatisch.
13666  Dadurch kann es vorkommen, dass das Paket doppelt geladen wird, was aber
13667  keine Probleme hervorruft.
13668 \end_layout
13669
13670 \end_inset
13671
13672
13673 \begin_inset Note Note
13674 status collapsed
13675
13676 \begin_layout Plain Layout
13677 Damit das Paket nicht doppelt geladen werden kann, wurde im LaTeX-Vorspann
13678  ein Makro eingefügt.
13679 \end_layout
13680
13681 \end_inset
13682
13683 .
13684 \end_layout
13685
13686 \begin_layout Standard
13687 \begin_inset VSpace medskip
13688 \end_inset
13689
13690 Um Boxen einzufärben, verwendet man den Befehl 
13691 \series bold
13692
13693 \backslash
13694 colorbox
13695 \series default
13696
13697 \begin_inset Index idx
13698 status collapsed
13699
13700 \begin_layout Plain Layout
13701 Befehle ! C ! 
13702 \backslash
13703 colorbox
13704 \end_layout
13705
13706 \end_inset
13707
13708  nach folgendem Schema:
13709 \end_layout
13710
13711 \begin_layout Standard
13712
13713 \series bold
13714
13715 \backslash
13716 colorbox{Farbe}{Boxinhalt}
13717 \end_layout
13718
13719 \begin_layout Standard
13720 Der Boxinhalt kann auch wieder eine Box sein und eine 
13721 \series bold
13722
13723 \backslash
13724 colorbox
13725 \series default
13726  kann auch ein Teil einer anderen Box sein (siehe 2.
13727  und 3.
13728  Beispiel).
13729  Soll in der Box eine Formel stehen, muss wie bei 
13730 \series bold
13731
13732 \backslash
13733 raisebox
13734 \series default
13735  eine weitere Formel erstellt werden.
13736 \begin_inset Foot
13737 status collapsed
13738
13739 \begin_layout Plain Layout
13740 Das gilt auch für den Befehl 
13741 \series bold
13742
13743 \backslash
13744 fcolorbox
13745 \series default
13746 .
13747 \end_layout
13748
13749 \end_inset
13750
13751
13752 \end_layout
13753
13754 \begin_layout Standard
13755 Aus folgenden vordefinierten Farben kann gewählt werden:
13756 \end_layout
13757
13758 \begin_layout Standard
13759
13760 \series bold
13761 black
13762 \series default
13763
13764 \series bold
13765 blue
13766 \series default
13767
13768 \series bold
13769 cyan
13770 \series default
13771
13772 \series bold
13773 green
13774 \series default
13775
13776 \series bold
13777 magenta
13778 \series default
13779
13780 \series bold
13781 red
13782 \series default
13783
13784 \series bold
13785 white
13786 \series default
13787  und 
13788 \series bold
13789 yellow
13790 \end_layout
13791
13792 \begin_layout Standard
13793 \align center
13794 \begin_inset Tabular
13795 <lyxtabular version="3" rows="4" columns="2">
13796 <features tabularvalignment="middle">
13797 <column alignment="center" valignment="top" width="0">
13798 <column alignment="center" valignment="top" width="0">
13799 <row>
13800 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
13801 \begin_inset Text
13802
13803 \begin_layout Plain Layout
13804 Befehl
13805 \end_layout
13806
13807 \end_inset
13808 </cell>
13809 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
13810 \begin_inset Text
13811
13812 \begin_layout Plain Layout
13813 Ergebnis
13814 \begin_inset Note Note
13815 status collapsed
13816
13817 \begin_layout Plain Layout
13818
13819 \series bold
13820
13821 \backslash
13822 raisebox
13823 \series default
13824  dient nur als Abstandhalter.
13825 \end_layout
13826
13827 \end_inset
13828
13829
13830 \end_layout
13831
13832 \end_inset
13833 </cell>
13834 </row>
13835 <row>
13836 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13837 \begin_inset Text
13838
13839 \begin_layout Plain Layout
13840
13841 \backslash
13842 colorbox{yellow
13843 \begin_inset Formula $\to$
13844 \end_inset
13845
13846
13847 \backslash
13848 {A=B
13849 \end_layout
13850
13851 \end_inset
13852 </cell>
13853 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13854 \begin_inset Text
13855
13856 \begin_layout Plain Layout
13857 \begin_inset Formula $\raisebox{6mm}{}\colorbox{yellow}{A=B}\raisebox{-3mm}{}$
13858 \end_inset
13859
13860
13861 \end_layout
13862
13863 \end_inset
13864 </cell>
13865 </row>
13866 <row>
13867 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
13868 \begin_inset Text
13869
13870 \begin_layout Plain Layout
13871
13872 \backslash
13873 colorbox{green
13874 \begin_inset Formula $\to$
13875 \end_inset
13876
13877
13878 \backslash
13879 {
13880 \backslash
13881 fbox
13882 \begin_inset ERT
13883 status collapsed
13884
13885 \begin_layout Plain Layout
13886
13887
13888 \backslash
13889 leer 
13890 \end_layout
13891
13892 \end_inset
13893
13894 A=B
13895 \end_layout
13896
13897 \end_inset
13898 </cell>
13899 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
13900 \begin_inset Text
13901
13902 \begin_layout Plain Layout
13903 \begin_inset Formula $\raisebox{6mm}{}\colorbox{green}{\fbox{A=B}}\raisebox{-3mm}{}$
13904 \end_inset
13905
13906
13907 \end_layout
13908
13909 \end_inset
13910 </cell>
13911 </row>
13912 <row>
13913 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
13914 \begin_inset Text
13915
13916 \begin_layout Plain Layout
13917
13918 \backslash
13919 fbox
13920 \begin_inset ERT
13921 status collapsed
13922
13923 \begin_layout Plain Layout
13924
13925
13926 \backslash
13927 leer 
13928 \end_layout
13929
13930 \end_inset
13931
13932
13933 \backslash
13934 colorbox{green
13935 \begin_inset Formula $\to$
13936 \end_inset
13937
13938
13939 \backslash
13940 {
13941 \family sans
13942 Strg+M Strg+M
13943 \family default
13944  
13945 \backslash
13946 int
13947 \begin_inset ERT
13948 status collapsed
13949
13950 \begin_layout Plain Layout
13951
13952
13953 \backslash
13954 leer 
13955 \end_layout
13956
13957 \end_inset
13958
13959 C=D
13960 \end_layout
13961
13962 \end_inset
13963 </cell>
13964 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
13965 \begin_inset Text
13966
13967 \begin_layout Plain Layout
13968 \begin_inset Formula $\raisebox{7mm}{}\fbox{\colorbox{green}{\mbox{\ensuremath{\int C=D}}}}\raisebox{-5mm}{}$
13969 \end_inset
13970
13971
13972 \end_layout
13973
13974 \end_inset
13975 </cell>
13976 </row>
13977 </lyxtabular>
13978
13979 \end_inset
13980
13981
13982 \end_layout
13983
13984 \begin_layout Standard
13985
13986 \series bold
13987
13988 \backslash
13989 colorbox
13990 \series default
13991  färbt nur die Box, nicht aber die Zeichen in der Box ein.
13992  Um alle Zeichen zu färben, markiert man die ganze Formel und wählt im Dialog
13993  
13994 \family sans
13995 Textstil
13996 \family default
13997  die gewünschte Farbe aus.
13998  Der Dialog kann mit dem Werkzeugleistenknopf 
13999 \begin_inset Graphics
14000         filename ../../images/dialog-show_character.png
14001         scale 85
14002
14003 \end_inset
14004
14005  oder dem Menü 
14006 \family sans
14007 Bearbeiten\SpecialChar \menuseparator
14008 Textstil\SpecialChar \menuseparator
14009 Benutzerdefiniert
14010 \family default
14011  aufgerufen werden.
14012  Die Formelnummer hat dann dieselbe Farbe wie die Formel.
14013  Soll die Formelnummer eine andere Farbe als die Formelzeichen haben, muss
14014  innerhalb der Formel die Farbe geändert werden.
14015 \end_layout
14016
14017 \begin_layout Standard
14018 Ein Beispiel:
14019 \end_layout
14020
14021 \begin_layout Standard
14022
14023 \color red
14024 \begin_inset Formula 
14025 \begin{equation}
14026 \int A=B\label{eq:rot}
14027 \end{equation}
14028
14029 \end_inset
14030
14031
14032 \color green
14033
14034 \begin_inset Formula 
14035 \begin{equation}
14036 \textcolor{red}{\int A=B}\label{eq:rotgruen}
14037 \end{equation}
14038
14039 \end_inset
14040
14041
14042 \end_layout
14043
14044 \begin_layout Standard
14045 Formel 
14046 \begin_inset CommandInset ref
14047 LatexCommand eqref
14048 reference "eq:rot"
14049
14050 \end_inset
14051
14052  ist komplett rot gefärbt.
14053 \begin_inset Newline newline
14054 \end_inset
14055
14056 Formel 
14057 \begin_inset CommandInset ref
14058 LatexCommand eqref
14059 reference "eq:rotgruen"
14060
14061 \end_inset
14062
14063  wurde zuerst komplett grün gefärbt, um die Farbe der Formelnummer festzulegen.
14064  Anschließend wurden die Formelzeichen rot gefärbt.
14065 \end_layout
14066
14067 \begin_layout Standard
14068 \begin_inset VSpace bigskip
14069 \end_inset
14070
14071 Möchte man den Rahmen anders als den Rest der Box färben, verwendet man
14072  den Befehl 
14073 \series bold
14074
14075 \backslash
14076 fcolorbox
14077 \series default
14078
14079 \begin_inset Index idx
14080 status collapsed
14081
14082 \begin_layout Plain Layout
14083 Befehle ! F ! 
14084 \backslash
14085 fcolorbox
14086 \end_layout
14087
14088 \end_inset
14089
14090  nach folgendem Schema:
14091 \end_layout
14092
14093 \begin_layout Standard
14094
14095 \series bold
14096
14097 \backslash
14098 fcolorbox{Rahmenfarbe}{Farbe}{Boxinhalt}
14099 \end_layout
14100
14101 \begin_layout Standard
14102
14103 \series bold
14104
14105 \backslash
14106 fcolorbox
14107 \series default
14108  stellt also eine Erweiterung des Befehls 
14109 \series bold
14110
14111 \backslash
14112 colorbox
14113 \series default
14114  dar.
14115  Die Rahmenbreite wird, wie bei 
14116 \series bold
14117
14118 \backslash
14119 framebox
14120 \series default
14121 , mit 
14122 \series bold
14123
14124 \backslash
14125 fboxrule
14126 \series default
14127  und 
14128 \series bold
14129
14130 \backslash
14131 fboxsep
14132 \series default
14133  festgelegt.
14134  Ein Beispiel:
14135 \begin_inset ERT
14136 status collapsed
14137
14138 \begin_layout Plain Layout
14139
14140
14141 \backslash
14142 fboxrule 1mm 
14143 \backslash
14144 fboxsep 1mm
14145 \end_layout
14146
14147 \end_inset
14148
14149
14150 \begin_inset Formula 
14151 \[
14152 \fcolorbox{cyan}{magenta}{A=B}
14153 \]
14154
14155 \end_inset
14156
14157
14158 \begin_inset ERT
14159 status collapsed
14160
14161 \begin_layout Plain Layout
14162
14163
14164 \backslash
14165 fboxrule 0.4pt 
14166 \backslash
14167 fboxsep 3pt
14168 \end_layout
14169
14170 \end_inset
14171
14172
14173 \end_layout
14174
14175 \begin_layout Standard
14176 Diese Formel wurde mit folgendem Befehl erstellt:
14177 \begin_inset Newline newline
14178 \end_inset
14179
14180
14181 \series bold
14182
14183 \backslash
14184 fcolorbox{cyan
14185 \begin_inset Formula $\to$
14186 \end_inset
14187
14188
14189 \backslash
14190 {magenta
14191 \begin_inset Formula $\to$
14192 \end_inset
14193
14194
14195 \backslash
14196 {A=B
14197 \end_layout
14198
14199 \begin_layout Standard
14200 \begin_inset VSpace bigskip
14201 \end_inset
14202
14203 Um andere als die vordefinierten Farben zu verwenden, muss man diese zuerst
14204  selbst definieren.
14205 \end_layout
14206
14207 \begin_layout Standard
14208 Man kann z.
14209 \begin_inset space \thinspace{}
14210 \end_inset
14211
14212 B.
14213  mit folgender LaTeX-Vorspannzeile die Farbe 
14214 \begin_inset Quotes gld
14215 \end_inset
14216
14217
14218 \series bold
14219 dunkelgruen
14220 \series default
14221
14222 \begin_inset Quotes grd
14223 \end_inset
14224
14225
14226 \begin_inset Foot
14227 status collapsed
14228
14229 \begin_layout Plain Layout
14230 In Befehlen darf kein Umlaut stehen, siehe 
14231 \begin_inset CommandInset ref
14232 LatexCommand ref
14233 reference "sec:Benutzerdefinierte-Befehle"
14234
14235 \end_inset
14236
14237 .
14238 \end_layout
14239
14240 \end_inset
14241
14242  definieren:
14243 \end_layout
14244
14245 \begin_layout Standard
14246
14247 \series bold
14248
14249 \backslash
14250 definecolor{dunkelgruen}{cmyk}{0.5,
14251 \series default
14252  
14253 \series bold
14254 0,
14255 \series default
14256  
14257 \series bold
14258 1,
14259 \series default
14260  
14261 \series bold
14262 0.5}
14263 \series default
14264
14265 \begin_inset Index idx
14266 status collapsed
14267
14268 \begin_layout Plain Layout
14269 Befehle ! D ! 
14270 \backslash
14271 definecolor
14272 \end_layout
14273
14274 \end_inset
14275
14276
14277 \end_layout
14278
14279 \begin_layout Standard
14280
14281 \series bold
14282 cmyk
14283 \series default
14284  ist der Farbraum und steht für die Farben 
14285 \series bold
14286 cyan
14287 \series default
14288
14289 \series bold
14290 magenta
14291 \series default
14292
14293 \series bold
14294 yellow
14295 \series default
14296  und 
14297 \series bold
14298 black
14299 \series default
14300 .
14301  Die vier Zahlen geben der Reihe nach den Anteil der vier Farben an.
14302  Für den Anteil kann man Werte im Bereich 0
14303 \begin_inset space \thinspace{}
14304 \end_inset
14305
14306 -
14307 \begin_inset space \thinspace{}
14308 \end_inset
14309
14310 1 angeben.
14311  Anstelle von 
14312 \series bold
14313 cmyk
14314 \series default
14315  kann man zur Definition auch den Farbraum 
14316 \series bold
14317 rgb
14318 \series default
14319  verwenden.
14320  
14321 \series bold
14322 rgb
14323 \series default
14324  steht für 
14325 \series bold
14326 red
14327 \series default
14328
14329 \series bold
14330 green
14331 \series default
14332  und 
14333 \series bold
14334 blue
14335 \series default
14336 , so dass man dann mit drei Zahlen die Anteile dieser Farben festlegen kann.
14337  Des Weiteren gibt es noch den Farbraum 
14338 \series bold
14339 gray
14340 \series default
14341 , bei dem man mit einer Zahl den Graustufenanteil festlegen kann.
14342 \end_layout
14343
14344 \begin_layout Standard
14345 Als Beispiel eine gerahmte Box mit der neu definierten Farbe 
14346 \series bold
14347 darkgreen
14348 \series default
14349 , bei der die Zeichenfarbe 
14350 \series bold
14351 yellow
14352 \series default
14353  gewählt wurde:
14354 \begin_inset Formula 
14355 \begin{equation}
14356 \colorbox{dunkelgruen}{\color{yellow}\boxed{\int A\,\mathrm{d}x=\frac{\sqrt[5]{B}}{\ln\left(\frac{1}{3}\right)}}}
14357 \end{equation}
14358
14359 \end_inset
14360
14361
14362 \end_layout
14363
14364 \begin_layout Standard
14365 Selbst definierte Farben können mit dem Befehl 
14366 \series bold
14367
14368 \backslash
14369 textcolor
14370 \series default
14371  auch für Text
14372 \begin_inset Index idx
14373 status collapsed
14374
14375 \begin_layout Plain Layout
14376 Text ! farbiger
14377 \end_layout
14378
14379 \end_inset
14380
14381  verwendet werden:
14382 \end_layout
14383
14384 \begin_layout Standard
14385 \begin_inset ERT
14386 status collapsed
14387
14388 \begin_layout Plain Layout
14389
14390
14391 \backslash
14392 textcolor{dunkelgruen}{
14393 \end_layout
14394
14395 \end_inset
14396
14397 Dieser Satz ist 
14398 \begin_inset Quotes gld
14399 \end_inset
14400
14401 dunkelgruen
14402 \begin_inset Quotes grd
14403 \end_inset
14404
14405 .
14406 \begin_inset ERT
14407 status collapsed
14408
14409 \begin_layout Plain Layout
14410
14411 }
14412 \end_layout
14413
14414 \end_inset
14415
14416
14417 \end_layout
14418
14419 \begin_layout Standard
14420
14421 \series bold
14422
14423 \backslash
14424 textcolor
14425 \series default
14426
14427 \begin_inset Index idx
14428 status collapsed
14429
14430 \begin_layout Plain Layout
14431 Befehle ! T ! 
14432 \backslash
14433 textcolor
14434 \end_layout
14435
14436 \end_inset
14437
14438  wird nach dem Schema 
14439 \series bold
14440
14441 \backslash
14442 textcolor{Farbe}{zu
14443 \series default
14444  
14445 \series bold
14446 färbende
14447 \series default
14448  
14449 \series bold
14450 Zeichen}
14451 \series default
14452  verwendet.
14453 \end_layout
14454
14455 \begin_layout Standard
14456 \begin_inset Newpage newpage
14457 \end_inset
14458
14459
14460 \end_layout
14461
14462 \begin_layout Subsection
14463 Absatzboxen
14464 \begin_inset CommandInset label
14465 LatexCommand label
14466 name "sub:Absatzboxen"
14467
14468 \end_inset
14469
14470
14471 \begin_inset Index idx
14472 status collapsed
14473
14474 \begin_layout Plain Layout
14475 Boxen ! Absatz-
14476 \end_layout
14477
14478 \end_inset
14479
14480
14481 \end_layout
14482
14483 \begin_layout Standard
14484 Mit dem Menü 
14485 \family sans
14486 Einfügen\SpecialChar \menuseparator
14487 Box
14488 \family default
14489  oder dem Werkzeugleistenknopf 
14490 \begin_inset Graphics
14491         filename ../../images/box-insert.png
14492         scale 85
14493
14494 \end_inset
14495
14496  kann man eine Box erstellen, die mehrere Zeilen und Absätze enthalten kann,
14497  eine so genannte 
14498 \emph on
14499 Parbox
14500 \emph default
14501  (Absatzbox).
14502 \end_layout
14503
14504 \begin_layout Standard
14505 Das folgende Beispiel zeigt eine umrahmte Absatzbox in einer Zeile:
14506 \end_layout
14507
14508 \begin_layout Standard
14509 \begin_inset VSpace medskip
14510 \end_inset
14511
14512 Dies ist eine Zeile 
14513 \begin_inset Box Boxed
14514 position "c"
14515 hor_pos "c"
14516 has_inner_box 1
14517 inner_pos "t"
14518 use_parbox 1
14519 use_makebox 0
14520 width "5cm"
14521 special "none"
14522 height "1in"
14523 height_special "totalheight"
14524 status open
14525
14526 \begin_layout Plain Layout
14527 Dies ist die Absatzbox.
14528  Sie ist genau 5
14529 \begin_inset space \thinspace{}
14530 \end_inset
14531
14532 cm lang und kann auch Formeln enthalten: 
14533 \begin_inset Formula $\int A\,\mathrm{d}s=C$
14534 \end_inset
14535
14536
14537 \end_layout
14538
14539 \end_inset
14540
14541  mit einer Absatzbox.
14542 \begin_inset VSpace medskip
14543 \end_inset
14544
14545
14546 \end_layout
14547
14548 \begin_layout Standard
14549 Solch eine Box wird erstellt, indem man mit der rechten Maustaste auf die
14550  graue Box mit dem Namen 
14551 \begin_inset Quotes gld
14552 \end_inset
14553
14554 Box(Gerahmt)
14555 \begin_inset Quotes grd
14556 \end_inset
14557
14558  klickt.
14559  Es erscheint dann ein Fenster in dem man die Boxeigenschaften festlegt.
14560  In diesem Fall: 
14561 \emph on
14562 Verzierung
14563 \emph default
14564 : Rechteckige Box, 
14565 \emph on
14566 Innere Box
14567 \emph default
14568 : Parbox, 
14569 \emph on
14570 Breite
14571 \emph default
14572 : 5
14573 \begin_inset space \thinspace{}
14574 \end_inset
14575
14576 cm, 
14577 \emph on
14578 Vertikale Box Ausrichtung
14579 \emph default
14580 : Mitte
14581 \end_layout
14582
14583 \begin_layout Standard
14584 \begin_inset VSpace medskip
14585 \end_inset
14586
14587 In LaTeX wird eine Absatzbox mit dem Befehl 
14588 \series bold
14589
14590 \backslash
14591 parbox
14592 \series default
14593
14594 \begin_inset Index idx
14595 status collapsed
14596
14597 \begin_layout Plain Layout
14598 Befehle ! P ! 
14599 \backslash
14600 parbox
14601 \end_layout
14602
14603 \end_inset
14604
14605  erstellt, welcher folgendes Schema besitzt:
14606 \end_layout
14607
14608 \begin_layout Standard
14609
14610 \series bold
14611
14612 \backslash
14613 parbox[Position]{Breite}{Boxinhalt}
14614 \end_layout
14615
14616 \begin_layout Standard
14617 Die Positionen 
14618 \emph on
14619 b
14620 \emph default
14621  und 
14622 \emph on
14623 t
14624 \emph default
14625  sind möglich.
14626  
14627 \emph on
14628 b
14629 \emph default
14630  steht für bottom und bedeutet, dass die letzte Absatzzeile in den umstehenden
14631  Text eingepasst wird.
14632  Bei 
14633 \emph on
14634 t
14635 \emph default
14636  wie top geschieht dies für die erste Zeile.
14637  Wird keine Position angegeben, wird der Absatz in mittlerer Höhe eingepasst,
14638  siehe das Kapitel 
14639 \emph on
14640 Boxen
14641 \emph default
14642  des Handbuchs
14643 \emph on
14644  Eingebettete
14645 \begin_inset space ~
14646 \end_inset
14647
14648 Objekte
14649 \emph default
14650  für Beispiele.
14651 \end_layout
14652
14653 \begin_layout Standard
14654 \begin_inset VSpace bigskip
14655 \end_inset
14656
14657 Möchte man Formeln komplett mit Formelnummer umranden, muss man die Formel
14658  in eine Absatzbox setzen.
14659  Dazu schreibt man im TeX-Modus vor die Formel den Befehl 
14660 \series bold
14661
14662 \backslash
14663 fbox{
14664 \backslash
14665 parbox{
14666 \backslash
14667 linewidth-2
14668 \backslash
14669 fboxsep-2
14670 \backslash
14671 fboxrule}{
14672 \series default
14673 .
14674  Hierbei steht 
14675 \series bold
14676
14677 \backslash
14678 linewidth
14679 \series default
14680
14681 \begin_inset Index idx
14682 status collapsed
14683
14684 \begin_layout Plain Layout
14685 Befehle ! L ! 
14686 \backslash
14687 linewidth
14688 \end_layout
14689
14690 \end_inset
14691
14692  für die im Dokument eingestellte Zeilenbreite.
14693  Da sich der Rahmen außerhalb der Absatzbox befindet, muss man von der Zeilenbre
14694 ite zweimal die Rahmendicke und den Rahmenabstand abziehen.
14695  Da dies LyX aufgrund eines Fehlers
14696 \begin_inset Foot
14697 status collapsed
14698
14699 \begin_layout Plain Layout
14700 \begin_inset CommandInset href
14701 LatexCommand href
14702 name "LyX-Fehler #4483"
14703 target "http://www.lyx.org/trac/ticket/4483"
14704
14705 \end_inset
14706
14707
14708 \end_layout
14709
14710 \end_inset
14711
14712  nicht automatisch macht, muss der TeX-Modus verwendet werden.
14713  Damit man in Argumenten multiplizieren und subtrahieren kann, muss im LaTeX-Vor
14714 spann das LaTeX-Paket 
14715 \series bold
14716 calc
14717 \series default
14718
14719 \begin_inset Foot
14720 status collapsed
14721
14722 \begin_layout Plain Layout
14723
14724 \series bold
14725 calc
14726 \series default
14727  ist Teil jeder LaTeX-Standardinstallation.
14728 \end_layout
14729
14730 \end_inset
14731
14732
14733 \begin_inset Index idx
14734 status collapsed
14735
14736 \begin_layout Plain Layout
14737 Pakete ! calc
14738 \end_layout
14739
14740 \end_inset
14741
14742  mit der Zeile
14743 \end_layout
14744
14745 \begin_layout Standard
14746
14747 \series bold
14748
14749 \backslash
14750 usepackage{calc}
14751 \end_layout
14752
14753 \begin_layout Standard
14754 geladen werden.
14755  Nach der Formel werden beide Boxen geschlossen, indem man 
14756 \series bold
14757 }}
14758 \series default
14759  im TeX-Modus eingibt.
14760  Dazu ein Beispiel:
14761 \begin_inset ERT
14762 status collapsed
14763
14764 \begin_layout Plain Layout
14765
14766
14767 \backslash
14768 fboxsep 5mm 
14769 \backslash
14770 fboxrule 5mm
14771 \end_layout
14772
14773 \end_inset
14774
14775
14776 \end_layout
14777
14778 \begin_layout Standard
14779 \begin_inset ERT
14780 status collapsed
14781
14782 \begin_layout Plain Layout
14783
14784
14785 \backslash
14786 fbox{
14787 \backslash
14788 parbox{
14789 \backslash
14790 linewidth-2
14791 \backslash
14792 fboxsep-2
14793 \backslash
14794 fboxrule}{
14795 \end_layout
14796
14797 \end_inset
14798
14799
14800 \begin_inset Formula 
14801 \begin{equation}
14802 \int A\,\mathrm{d}x=\frac{\sqrt[5]{B}}{\ln\left(\frac{1}{3}\right)}
14803 \end{equation}
14804
14805 \end_inset
14806
14807
14808 \begin_inset ERT
14809 status collapsed
14810
14811 \begin_layout Plain Layout
14812
14813 }}
14814 \end_layout
14815
14816 \end_inset
14817
14818
14819 \begin_inset ERT
14820 status collapsed
14821
14822 \begin_layout Plain Layout
14823
14824
14825 \backslash
14826 fboxrule 0.4pt 
14827 \backslash
14828 fboxsep 3pt
14829 \end_layout
14830
14831 \end_inset
14832
14833
14834 \end_layout
14835
14836 \begin_layout Standard
14837 \begin_inset VSpace medskip
14838 \end_inset
14839
14840 Da im Argument von 
14841 \series bold
14842
14843 \backslash
14844 fbox
14845 \series default
14846  eine Absatzbox verwendet wird, gibt es in diesem Fall bei der Formelgröße
14847  keinen Unterschied zwischen 
14848 \series bold
14849
14850 \backslash
14851 fbox
14852 \series default
14853  und 
14854 \series bold
14855
14856 \backslash
14857 boxed
14858 \series default
14859 .
14860 \end_layout
14861
14862 \begin_layout Standard
14863 \begin_inset VSpace bigskip
14864 \end_inset
14865
14866 Sehr nützlich sind Absatzboxen, wenn man Formeln direkt kommentieren möchte.
14867  Dazu verwendet man 
14868 \series bold
14869
14870 \backslash
14871 parbox
14872 \series default
14873  in Verbindung mit dem Befehl 
14874 \series bold
14875
14876 \backslash
14877 tag
14878 \series default
14879 .
14880  (mehr zu 
14881 \series bold
14882
14883 \backslash
14884 tag
14885 \series default
14886  siehe 
14887 \begin_inset CommandInset ref
14888 LatexCommand ref
14889 reference "sub:Benutzerdefinierte-Nummerierung"
14890
14891 \end_inset
14892
14893 )
14894 \end_layout
14895
14896 \begin_layout Standard
14897 Ein Beispiel einer mit Hilfe von 
14898 \series bold
14899
14900 \backslash
14901 parbox
14902 \series default
14903  kommentierten Formel:
14904 \end_layout
14905
14906 \begin_layout Standard
14907 \begin_inset ERT
14908 status collapsed
14909
14910 \begin_layout Plain Layout
14911
14912
14913 \backslash
14914 [5x-7b=3b
14915 \backslash
14916 tag*{
14917 \backslash
14918 parbox{5cm}{
14919 \end_layout
14920
14921 \end_inset
14922
14923 Dies ist eine Beschreibung.
14924  Sie ist deutlich von der Formel getrennt und mehrzeilig.
14925 \begin_inset ERT
14926 status collapsed
14927
14928 \begin_layout Plain Layout
14929
14930 }}
14931 \backslash
14932 ]
14933 \end_layout
14934
14935 \end_inset
14936
14937
14938 \end_layout
14939
14940 \begin_layout Standard
14941 So eine Formel muss komplett im TeX-Modus eingegeben werden, da LyX den
14942  Befehl 
14943 \series bold
14944
14945 \backslash
14946 parbox
14947 \series default
14948  in Formeln noch nicht unterstützt.
14949  Die Formel wird mit folgender Befehlssequenz erstellt:
14950 \end_layout
14951
14952 \begin_layout Standard
14953 Der Befehl 
14954 \series bold
14955
14956 \backslash
14957 [5x-7b=3b
14958 \backslash
14959 tag*
14960 \backslash
14961 {
14962 \backslash
14963 parbox{5cm}{
14964 \series default
14965  wird im TeX-Modus eingegeben.
14966 \begin_inset Foot
14967 status collapsed
14968
14969 \begin_layout Plain Layout
14970 Ist der Formelstil 
14971 \series bold
14972 Eingerückt
14973 \series default
14974  aktiviert, kann 
14975 \series bold
14976
14977 \backslash
14978 tag*
14979 \backslash
14980 {
14981 \series default
14982  auch durch 
14983 \series bold
14984
14985 \backslash
14986 hfill
14987 \series default
14988  ersetzt werden.
14989  (Formelstile siehe 
14990 \begin_inset CommandInset ref
14991 LatexCommand ref
14992 reference "sec:Formelstile"
14993
14994 \end_inset
14995
14996 )
14997 \end_layout
14998
14999 \end_inset
15000
15001  Dann folgt die Beschreibung als normaler Text und zuletzt gibt man 
15002 \series bold
15003 }}
15004 \backslash
15005 ]
15006 \series default
15007  im TeX-Modus ein.
15008  Die Befehle 
15009 \series bold
15010
15011 \backslash
15012 [
15013 \series default
15014  und 
15015 \series bold
15016
15017 \backslash
15018 ]
15019 \series default
15020  erstellen hierbei eine abgesetzte Formel.
15021 \end_layout
15022
15023 \begin_layout Standard
15024 Die Vorteile von 
15025 \series bold
15026
15027 \backslash
15028 parbox
15029 \series default
15030  erkennt man an folgendem Beispiel, in dem mit Hilfe des mathematischen
15031  Textmodus 
15032 \begin_inset Quotes gld
15033 \end_inset
15034
15035 kommentiert
15036 \begin_inset Quotes grd
15037 \end_inset
15038
15039  wurde:
15040 \begin_inset Formula 
15041 \[
15042 5x-7b=3b\textrm{Dies ist eine Beschreibung. Sie ist nicht von der Formel getrennt ...}
15043 \]
15044
15045 \end_inset
15046
15047
15048 \end_layout
15049
15050 \begin_layout Standard
15051 \begin_inset Newpage newpage
15052 \end_inset
15053
15054
15055 \end_layout
15056
15057 \begin_layout Section
15058 Operatoren
15059 \begin_inset Index idx
15060 status collapsed
15061
15062 \begin_layout Plain Layout
15063 Operatoren
15064 \end_layout
15065
15066 \end_inset
15067
15068
15069 \end_layout
15070
15071 \begin_layout Subsection
15072 Große Operatoren
15073 \begin_inset CommandInset label
15074 LatexCommand label
15075 name "sub:Große-Operatoren"
15076
15077 \end_inset
15078
15079
15080 \begin_inset Index idx
15081 status collapsed
15082
15083 \begin_layout Plain Layout
15084 Operatoren ! große
15085 \end_layout
15086
15087 \end_inset
15088
15089
15090 \begin_inset Index idx
15091 status collapsed
15092
15093 \begin_layout Plain Layout
15094 Summen
15095 \end_layout
15096
15097 \end_inset
15098
15099
15100 \begin_inset Index idx
15101 status collapsed
15102
15103 \begin_layout Plain Layout
15104 Integrale
15105 \end_layout
15106
15107 \end_inset
15108
15109
15110 \end_layout
15111
15112 \begin_layout Standard
15113 Um alle großen Integraloperatoren nutzen zu können, die im Folgenden aufgelistet
15114  sind, muss die Option 
15115 \family sans
15116 esint-Paket automatisch verwenden
15117 \family default
15118  in den Dokumenteinstellungen unter 
15119 \family sans
15120 Mathe-Optionen
15121 \family default
15122  gewählt sein.
15123 \end_layout
15124
15125 \begin_layout Standard
15126 \begin_inset space \hfill{}
15127 \end_inset
15128
15129
15130 \begin_inset Tabular
15131 <lyxtabular version="3" rows="11" columns="2">
15132 <features tabularvalignment="middle">
15133 <column alignment="center" valignment="top" width="0pt">
15134 <column alignment="center" valignment="top" width="0pt">
15135 <row>
15136 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
15137 \begin_inset Text
15138
15139 \begin_layout Plain Layout
15140 Befehl
15141 \end_layout
15142
15143 \end_inset
15144 </cell>
15145 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
15146 \begin_inset Text
15147
15148 \begin_layout Plain Layout
15149 Ergebnis
15150 \end_layout
15151
15152 \end_inset
15153 </cell>
15154 </row>
15155 <row>
15156 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15157 \begin_inset Text
15158
15159 \begin_layout Plain Layout
15160
15161 \backslash
15162 int
15163 \begin_inset Index idx
15164 status collapsed
15165
15166 \begin_layout Plain Layout
15167 Befehle ! I ! 
15168 \backslash
15169 int
15170 \end_layout
15171
15172 \end_inset
15173
15174
15175 \end_layout
15176
15177 \end_inset
15178 </cell>
15179 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15180 \begin_inset Text
15181
15182 \begin_layout Plain Layout
15183 \begin_inset Formula $\int$
15184 \end_inset
15185
15186
15187 \end_layout
15188
15189 \end_inset
15190 </cell>
15191 </row>
15192 <row>
15193 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15194 \begin_inset Text
15195
15196 \begin_layout Plain Layout
15197
15198 \backslash
15199 oint
15200 \end_layout
15201
15202 \end_inset
15203 </cell>
15204 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15205 \begin_inset Text
15206
15207 \begin_layout Plain Layout
15208 \begin_inset Formula $\oint$
15209 \end_inset
15210
15211
15212 \end_layout
15213
15214 \end_inset
15215 </cell>
15216 </row>
15217 <row>
15218 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15219 \begin_inset Text
15220
15221 \begin_layout Plain Layout
15222
15223 \backslash
15224 ointctrclockwise
15225 \end_layout
15226
15227 \end_inset
15228 </cell>
15229 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15230 \begin_inset Text
15231
15232 \begin_layout Plain Layout
15233 \begin_inset Formula $\ointctrclockwise$
15234 \end_inset
15235
15236
15237 \end_layout
15238
15239 \end_inset
15240 </cell>
15241 </row>
15242 <row>
15243 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15244 \begin_inset Text
15245
15246 \begin_layout Plain Layout
15247
15248 \backslash
15249 ointclockwise
15250 \end_layout
15251
15252 \end_inset
15253 </cell>
15254 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15255 \begin_inset Text
15256
15257 \begin_layout Plain Layout
15258 \begin_inset Formula $\ointclockwise$
15259 \end_inset
15260
15261
15262 \end_layout
15263
15264 \end_inset
15265 </cell>
15266 </row>
15267 <row>
15268 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15269 \begin_inset Text
15270
15271 \begin_layout Plain Layout
15272
15273 \backslash
15274 sqint
15275 \end_layout
15276
15277 \end_inset
15278 </cell>
15279 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15280 \begin_inset Text
15281
15282 \begin_layout Plain Layout
15283 \begin_inset Formula $\sqint$
15284 \end_inset
15285
15286
15287 \end_layout
15288
15289 \end_inset
15290 </cell>
15291 </row>
15292 <row>
15293 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15294 \begin_inset Text
15295
15296 \begin_layout Plain Layout
15297
15298 \backslash
15299 fint
15300 \end_layout
15301
15302 \end_inset
15303 </cell>
15304 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15305 \begin_inset Text
15306
15307 \begin_layout Plain Layout
15308  
15309 \begin_inset Formula $\fint$
15310 \end_inset
15311
15312
15313 \end_layout
15314
15315 \end_inset
15316 </cell>
15317 </row>
15318 <row>
15319 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15320 \begin_inset Text
15321
15322 \begin_layout Plain Layout
15323
15324 \backslash
15325 landupint
15326 \end_layout
15327
15328 \end_inset
15329 </cell>
15330 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15331 \begin_inset Text
15332
15333 \begin_layout Plain Layout
15334  
15335 \begin_inset Formula $\landupint$
15336 \end_inset
15337
15338
15339 \end_layout
15340
15341 \end_inset
15342 </cell>
15343 </row>
15344 <row>
15345 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15346 \begin_inset Text
15347
15348 \begin_layout Plain Layout
15349
15350 \backslash
15351 landdownint
15352 \end_layout
15353
15354 \end_inset
15355 </cell>
15356 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15357 \begin_inset Text
15358
15359 \begin_layout Plain Layout
15360  
15361 \begin_inset Formula $\landdownint$
15362 \end_inset
15363
15364
15365 \end_layout
15366
15367 \end_inset
15368 </cell>
15369 </row>
15370 <row>
15371 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15372 \begin_inset Text
15373
15374 \begin_layout Plain Layout
15375
15376 \backslash
15377 bigcap
15378 \end_layout
15379
15380 \end_inset
15381 </cell>
15382 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15383 \begin_inset Text
15384
15385 \begin_layout Plain Layout
15386 \begin_inset Formula $\bigcap$
15387 \end_inset
15388
15389
15390 \end_layout
15391
15392 \end_inset
15393 </cell>
15394 </row>
15395 <row>
15396 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
15397 \begin_inset Text
15398
15399 \begin_layout Plain Layout
15400
15401 \backslash
15402 bigcup
15403 \end_layout
15404
15405 \end_inset
15406 </cell>
15407 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
15408 \begin_inset Text
15409
15410 \begin_layout Plain Layout
15411 \begin_inset Formula $\bigcup$
15412 \end_inset
15413
15414
15415 \end_layout
15416
15417 \end_inset
15418 </cell>
15419 </row>
15420 </lyxtabular>
15421
15422 \end_inset
15423
15424
15425 \begin_inset space \hfill{}
15426 \end_inset
15427
15428
15429 \begin_inset Tabular
15430 <lyxtabular version="3" rows="11" columns="2">
15431 <features tabularvalignment="middle">
15432 <column alignment="center" valignment="top" width="0pt">
15433 <column alignment="center" valignment="top" width="0pt">
15434 <row>
15435 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
15436 \begin_inset Text
15437
15438 \begin_layout Plain Layout
15439 Befehl
15440 \end_layout
15441
15442 \end_inset
15443 </cell>
15444 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
15445 \begin_inset Text
15446
15447 \begin_layout Plain Layout
15448 Ergebnis
15449 \end_layout
15450
15451 \end_inset
15452 </cell>
15453 </row>
15454 <row>
15455 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15456 \begin_inset Text
15457
15458 \begin_layout Plain Layout
15459
15460 \backslash
15461 sum
15462 \begin_inset Index idx
15463 status collapsed
15464
15465 \begin_layout Plain Layout
15466 Befehle ! S ! 
15467 \backslash
15468 sum
15469 \end_layout
15470
15471 \end_inset
15472
15473
15474 \end_layout
15475
15476 \end_inset
15477 </cell>
15478 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
15479 \begin_inset Text
15480
15481 \begin_layout Plain Layout
15482 \begin_inset Formula $\sum$
15483 \end_inset
15484
15485
15486 \end_layout
15487
15488 \end_inset
15489 </cell>
15490 </row>
15491 <row>
15492 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15493 \begin_inset Text
15494
15495 \begin_layout Plain Layout
15496
15497 \backslash
15498 prod
15499 \begin_inset Index idx
15500 status collapsed
15501
15502 \begin_layout Plain Layout
15503 Befehle ! P ! 
15504 \backslash
15505 prod
15506 \end_layout
15507
15508 \end_inset
15509
15510
15511 \end_layout
15512
15513 \end_inset
15514 </cell>
15515 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15516 \begin_inset Text
15517
15518 \begin_layout Plain Layout
15519 \begin_inset Formula $\prod$
15520 \end_inset
15521
15522
15523 \end_layout
15524
15525 \end_inset
15526 </cell>
15527 </row>
15528 <row>
15529 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15530 \begin_inset Text
15531
15532 \begin_layout Plain Layout
15533
15534 \backslash
15535 coprod
15536 \end_layout
15537
15538 \end_inset
15539 </cell>
15540 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15541 \begin_inset Text
15542
15543 \begin_layout Plain Layout
15544 \begin_inset Formula $\coprod$
15545 \end_inset
15546
15547
15548 \end_layout
15549
15550 \end_inset
15551 </cell>
15552 </row>
15553 <row>
15554 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15555 \begin_inset Text
15556
15557 \begin_layout Plain Layout
15558
15559 \backslash
15560 bigodot
15561 \end_layout
15562
15563 \end_inset
15564 </cell>
15565 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15566 \begin_inset Text
15567
15568 \begin_layout Plain Layout
15569 \begin_inset Formula $\bigodot$
15570 \end_inset
15571
15572
15573 \end_layout
15574
15575 \end_inset
15576 </cell>
15577 </row>
15578 <row>
15579 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15580 \begin_inset Text
15581
15582 \begin_layout Plain Layout
15583
15584 \backslash
15585 bigotimes
15586 \end_layout
15587
15588 \end_inset
15589 </cell>
15590 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15591 \begin_inset Text
15592
15593 \begin_layout Plain Layout
15594 \begin_inset Formula $\bigotimes$
15595 \end_inset
15596
15597
15598 \end_layout
15599
15600 \end_inset
15601 </cell>
15602 </row>
15603 <row>
15604 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15605 \begin_inset Text
15606
15607 \begin_layout Plain Layout
15608
15609 \backslash
15610 bigoplus
15611 \end_layout
15612
15613 \end_inset
15614 </cell>
15615 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15616 \begin_inset Text
15617
15618 \begin_layout Plain Layout
15619 \begin_inset Formula $\bigoplus$
15620 \end_inset
15621
15622
15623 \end_layout
15624
15625 \end_inset
15626 </cell>
15627 </row>
15628 <row>
15629 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15630 \begin_inset Text
15631
15632 \begin_layout Plain Layout
15633
15634 \backslash
15635 bigwedge
15636 \end_layout
15637
15638 \end_inset
15639 </cell>
15640 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15641 \begin_inset Text
15642
15643 \begin_layout Plain Layout
15644 \begin_inset Formula $\bigwedge$
15645 \end_inset
15646
15647
15648 \end_layout
15649
15650 \end_inset
15651 </cell>
15652 </row>
15653 <row>
15654 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15655 \begin_inset Text
15656
15657 \begin_layout Plain Layout
15658
15659 \backslash
15660 bigvee
15661 \end_layout
15662
15663 \end_inset
15664 </cell>
15665 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15666 \begin_inset Text
15667
15668 \begin_layout Plain Layout
15669 \begin_inset Formula $\bigvee$
15670 \end_inset
15671
15672
15673 \end_layout
15674
15675 \end_inset
15676 </cell>
15677 </row>
15678 <row>
15679 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15680 \begin_inset Text
15681
15682 \begin_layout Plain Layout
15683
15684 \backslash
15685 bigsqcup
15686 \end_layout
15687
15688 \end_inset
15689 </cell>
15690 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15691 \begin_inset Text
15692
15693 \begin_layout Plain Layout
15694 \begin_inset Formula $\bigsqcup$
15695 \end_inset
15696
15697
15698 \end_layout
15699
15700 \end_inset
15701 </cell>
15702 </row>
15703 <row>
15704 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
15705 \begin_inset Text
15706
15707 \begin_layout Plain Layout
15708
15709 \backslash
15710 biguplus
15711 \end_layout
15712
15713 \end_inset
15714 </cell>
15715 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
15716 \begin_inset Text
15717
15718 \begin_layout Plain Layout
15719 \begin_inset Formula $\biguplus$
15720 \end_inset
15721
15722
15723 \end_layout
15724
15725 \end_inset
15726 </cell>
15727 </row>
15728 </lyxtabular>
15729
15730 \end_inset
15731
15732
15733 \begin_inset space \hfill{}
15734 \end_inset
15735
15736
15737 \end_layout
15738
15739 \begin_layout Standard
15740 Alle großen Operatoren können auch über den Mathe-Werkzeugleistenknopf 
15741 \begin_inset Graphics
15742         filename ../../images/math/intop.png
15743         scale 85
15744
15745 \end_inset
15746
15747  eingefügt werden.
15748 \end_layout
15749
15750 \begin_layout Standard
15751 Die Operatoren werden als groß bezeichnet, da sie größer sind als die zum
15752  Teil gleich aussehenden binären Operatoren.
15753  Zu allen großen Operatoren kann man Grenzen angeben, wie im nächsten Abschnitt
15754  beschrieben.
15755 \end_layout
15756
15757 \begin_layout Standard
15758 Für alle Integrale gibt es Befehle, die auf 
15759 \series bold
15760 op
15761 \series default
15762  enden: 
15763 \series bold
15764
15765 \backslash
15766 intop
15767 \series default
15768
15769 \series bold
15770
15771 \backslash
15772 ointop
15773 \series default
15774  usw..
15775  Diese unterscheiden sich von 
15776 \series bold
15777
15778 \backslash
15779 int
15780 \series default
15781  usw.
15782 \begin_inset space \space{}
15783 \end_inset
15784
15785 in der Art wie die Operatorgrenzen dargestellt werden, siehe 
15786 \begin_inset CommandInset ref
15787 LatexCommand ref
15788 reference "sub:Operatorgrenzen"
15789
15790 \end_inset
15791
15792 .
15793  
15794 \end_layout
15795
15796 \begin_layout Subsubsection*
15797 Hinweise zu Integralen
15798 \end_layout
15799
15800 \begin_layout Standard
15801 Der Buchstabe 
15802 \emph on
15803 d
15804 \emph default
15805  in einer Integralen ist ein Operator, der deswegen aufrecht erscheinen
15806  muss.
15807  Dazu markiert man das 
15808 \emph on
15809 d
15810 \emph default
15811  und wandelt es mit der Tastenkombination 
15812 \family sans
15813 Alt+Z
15814 \begin_inset space ~
15815 \end_inset
15816
15817 R
15818 \family default
15819
15820 \begin_inset Foot
15821 status collapsed
15822
15823 \begin_layout Plain Layout
15824 Schriftstile siehe 
15825 \begin_inset CommandInset ref
15826 LatexCommand ref
15827 reference "sub:Schriftstile"
15828
15829 \end_inset
15830
15831
15832 \end_layout
15833
15834 \end_inset
15835
15836  um.
15837  Anschließend fügt man vor dem 
15838 \emph on
15839 d
15840 \emph default
15841 , wie bei Operatoren üblich, den kleinsten Leerraum ein.
15842  Dazu ein Beispiel:
15843 \end_layout
15844
15845 \begin_layout Standard
15846 inkorrekt: 
15847 \begin_inset Formula $\int A(x)dx$
15848 \end_inset
15849
15850
15851 \begin_inset Newline newline
15852 \end_inset
15853
15854
15855 \begin_inset Phantom HPhantom
15856 status open
15857
15858 \begin_layout Plain Layout
15859 in
15860 \end_layout
15861
15862 \end_inset
15863
15864 korrekt: 
15865 \begin_inset Formula $\int A(x)\,\mathrm{d}x$
15866 \end_inset
15867
15868
15869 \end_layout
15870
15871 \begin_layout Standard
15872 \begin_inset VSpace medskip
15873 \end_inset
15874
15875 Für Mehrfachintegrale gibt es folgende Befehle:
15876 \begin_inset VSpace medskip
15877 \end_inset
15878
15879
15880 \end_layout
15881
15882 \begin_layout Standard
15883 \begin_inset space \hfill{}
15884 \end_inset
15885
15886
15887 \begin_inset Tabular
15888 <lyxtabular version="3" rows="4" columns="2">
15889 <features tabularvalignment="middle">
15890 <column alignment="center" valignment="top" width="0">
15891 <column alignment="center" valignment="top" width="0">
15892 <row>
15893 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
15894 \begin_inset Text
15895
15896 \begin_layout Plain Layout
15897 Befehl
15898 \end_layout
15899
15900 \end_inset
15901 </cell>
15902 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
15903 \begin_inset Text
15904
15905 \begin_layout Plain Layout
15906 Ergebnis
15907 \begin_inset Note Note
15908 status collapsed
15909
15910 \begin_layout Plain Layout
15911
15912 \series bold
15913
15914 \backslash
15915 raisebox
15916 \series default
15917  dient nur als Abstandhalter.
15918 \end_layout
15919
15920 \end_inset
15921
15922
15923 \end_layout
15924
15925 \end_inset
15926 </cell>
15927 </row>
15928 <row>
15929 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15930 \begin_inset Text
15931
15932 \begin_layout Plain Layout
15933
15934 \backslash
15935 iint
15936 \end_layout
15937
15938 \end_inset
15939 </cell>
15940 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15941 \begin_inset Text
15942
15943 \begin_layout Plain Layout
15944 \begin_inset Formula $\raisebox{4.5mm}{}\iint\raisebox{-2.5mm}{}$
15945 \end_inset
15946
15947
15948 \end_layout
15949
15950 \end_inset
15951 </cell>
15952 </row>
15953 <row>
15954 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
15955 \begin_inset Text
15956
15957 \begin_layout Plain Layout
15958
15959 \backslash
15960 oiint
15961 \end_layout
15962
15963 \end_inset
15964 </cell>
15965 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
15966 \begin_inset Text
15967
15968 \begin_layout Plain Layout
15969 \begin_inset Formula $\raisebox{4.5mm}{}\oiint\raisebox{-2.5mm}{}$
15970 \end_inset
15971
15972
15973 \end_layout
15974
15975 \end_inset
15976 </cell>
15977 </row>
15978 <row>
15979 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
15980 \begin_inset Text
15981
15982 \begin_layout Plain Layout
15983
15984 \backslash
15985 sqiint
15986 \end_layout
15987
15988 \end_inset
15989 </cell>
15990 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
15991 \begin_inset Text
15992
15993 \begin_layout Plain Layout
15994 \begin_inset Formula $\raisebox{4.5mm}{}\sqiint\raisebox{-2.5mm}{}$
15995 \end_inset
15996
15997
15998 \end_layout
15999
16000 \end_inset
16001 </cell>
16002 </row>
16003 </lyxtabular>
16004
16005 \end_inset
16006
16007
16008 \begin_inset space \hfill{}
16009 \end_inset
16010
16011
16012 \begin_inset Tabular
16013 <lyxtabular version="3" rows="4" columns="2">
16014 <features tabularvalignment="middle">
16015 <column alignment="center" valignment="top" width="0">
16016 <column alignment="center" valignment="top" width="0">
16017 <row>
16018 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
16019 \begin_inset Text
16020
16021 \begin_layout Plain Layout
16022 Befehl
16023 \end_layout
16024
16025 \end_inset
16026 </cell>
16027 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
16028 \begin_inset Text
16029
16030 \begin_layout Plain Layout
16031 Ergebnis
16032 \end_layout
16033
16034 \end_inset
16035 </cell>
16036 </row>
16037 <row>
16038 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16039 \begin_inset Text
16040
16041 \begin_layout Plain Layout
16042
16043 \backslash
16044 iiint
16045 \end_layout
16046
16047 \end_inset
16048 </cell>
16049 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16050 \begin_inset Text
16051
16052 \begin_layout Plain Layout
16053 \begin_inset Formula $\raisebox{4.5mm}{}\iiint\raisebox{-2.5mm}{}$
16054 \end_inset
16055
16056
16057 \end_layout
16058
16059 \end_inset
16060 </cell>
16061 </row>
16062 <row>
16063 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16064 \begin_inset Text
16065
16066 \begin_layout Plain Layout
16067
16068 \backslash
16069 iiiint
16070 \end_layout
16071
16072 \end_inset
16073 </cell>
16074 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16075 \begin_inset Text
16076
16077 \begin_layout Plain Layout
16078 \begin_inset Formula $\raisebox{4.5mm}{}\iiiint\raisebox{-2.5mm}{}$
16079 \end_inset
16080
16081
16082 \end_layout
16083
16084 \end_inset
16085 </cell>
16086 </row>
16087 <row>
16088 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
16089 \begin_inset Text
16090
16091 \begin_layout Plain Layout
16092
16093 \backslash
16094 dotsint
16095 \end_layout
16096
16097 \end_inset
16098 </cell>
16099 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
16100 \begin_inset Text
16101
16102 \begin_layout Plain Layout
16103 \begin_inset Formula $\raisebox{4.5mm}{}\dotsint\raisebox{-2.5mm}{}$
16104 \end_inset
16105
16106
16107 \end_layout
16108
16109 \end_inset
16110 </cell>
16111 </row>
16112 </lyxtabular>
16113
16114 \end_inset
16115
16116
16117 \begin_inset space \hfill{}
16118 \end_inset
16119
16120
16121 \end_layout
16122
16123 \begin_layout Subsection
16124 Operatorgrenzen
16125 \begin_inset CommandInset label
16126 LatexCommand label
16127 name "sub:Operatorgrenzen"
16128
16129 \end_inset
16130
16131
16132 \begin_inset Index idx
16133 status collapsed
16134
16135 \begin_layout Plain Layout
16136 Operatoren ! Grenzen
16137 \end_layout
16138
16139 \end_inset
16140
16141
16142 \end_layout
16143
16144 \begin_layout Standard
16145 Grenzen werden durch Hoch- bzw.
16146  Tiefstellen erzeugt:
16147 \end_layout
16148
16149 \begin_layout Standard
16150 \align center
16151 \begin_inset Tabular
16152 <lyxtabular version="3" rows="2" columns="2">
16153 <features tabularvalignment="middle">
16154 <column alignment="center" valignment="top" width="0pt">
16155 <column alignment="center" valignment="top" width="0pt">
16156 <row>
16157 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
16158 \begin_inset Text
16159
16160 \begin_layout Plain Layout
16161 Befehl
16162 \end_layout
16163
16164 \end_inset
16165 </cell>
16166 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
16167 \begin_inset Text
16168
16169 \begin_layout Plain Layout
16170 Ergebnis
16171 \begin_inset Note Note
16172 status collapsed
16173
16174 \begin_layout Plain Layout
16175
16176 \series bold
16177
16178 \backslash
16179 raisebox
16180 \series default
16181  dient nur als Abstandhalter.
16182 \end_layout
16183
16184 \end_inset
16185
16186
16187 \end_layout
16188
16189 \end_inset
16190 </cell>
16191 </row>
16192 <row>
16193 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
16194 \begin_inset Text
16195
16196 \begin_layout Plain Layout
16197
16198 \backslash
16199 prod^
16200 \backslash
16201 infty
16202 \begin_inset ERT
16203 status collapsed
16204
16205 \begin_layout Plain Layout
16206
16207
16208 \backslash
16209 leer 
16210 \end_layout
16211
16212 \end_inset
16213
16214
16215 \begin_inset Formula $\to$
16216 \end_inset
16217
16218 _0
16219 \begin_inset Formula $\to$
16220 \end_inset
16221
16222 A(x)
16223 \end_layout
16224
16225 \end_inset
16226 </cell>
16227 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
16228 \begin_inset Text
16229
16230 \begin_layout Plain Layout
16231 \begin_inset Formula $\raisebox{5mm}{}\prod_{0}^{\infty}A(x)\raisebox{-2.5mm}{}$
16232 \end_inset
16233
16234
16235 \end_layout
16236
16237 \end_inset
16238 </cell>
16239 </row>
16240 </lyxtabular>
16241
16242 \end_inset
16243
16244
16245 \end_layout
16246
16247 \begin_layout Standard
16248 Bei einer Formel in einer Textzeile werden die Grenzen rechts neben den
16249  Operator gesetzt.
16250  In einer abgesetzten Formel werden, außer bei Integralen, die Grenzen über
16251  bzw.
16252  unter den Operator gesetzt.
16253 \end_layout
16254
16255 \begin_layout Standard
16256 Um zu erzwingen, dass die Grenzen neben den Operator gesetzt werden, setzt
16257  man den Cursor direkt hinter den Operator und setzt über das Menü 
16258 \family sans
16259 Bearbeiten\SpecialChar \menuseparator
16260 Mathe\SpecialChar \menuseparator
16261 Art der Operatorgrenzen ändern
16262 \family default
16263  die Grenzen auf 
16264 \series bold
16265 Eingebettet
16266 \series default
16267  (Tastenkombination 
16268 \family sans
16269 Alt+M
16270 \begin_inset space ~
16271 \end_inset
16272
16273 L
16274 \family default
16275 ).
16276  Dazu folgendes Beispiel:
16277 \end_layout
16278
16279 \begin_layout Standard
16280 Die normalen Grenzen sehen so aus:
16281 \begin_inset Formula 
16282 \[
16283 \sum_{x=0}^{\infty}\frac{1}{x^{2}}
16284 \]
16285
16286 \end_inset
16287
16288 So sieht die Formel aus, wenn man die Grenzen neben das Summenzeichen setzt:
16289 \begin_inset Formula 
16290 \[
16291 \sum\nolimits _{x=0}^{\infty}\frac{1}{x^{2}}
16292 \]
16293
16294 \end_inset
16295
16296 Bei Integralen werden mit Ausnahme von denen, die auf 
16297 \series bold
16298 op
16299 \series default
16300  enden (
16301 \series bold
16302
16303 \backslash
16304 intop
16305 \series default
16306
16307 \series bold
16308
16309 \backslash
16310 ointop
16311 \series default
16312  usw.), die Grenzen standardmäßig neben den Operator gesetzt.
16313  Bei Mehrfachintegralen werden die Grenzen jedoch meistens unter den Operator
16314  gesetzt.
16315  Im folgenden Beispiel wurde die Grenze deswegen auf 
16316 \series bold
16317 Anzeige
16318 \series default
16319  gesetzt und damit unter die Integrale geschrieben:
16320 \begin_inset Formula 
16321 \begin{equation}
16322 \iiint\limits _{V}X\,\mathrm{d}V=U\label{eq:VolInt}
16323 \end{equation}
16324
16325 \end_inset
16326
16327
16328 \end_layout
16329
16330 \begin_layout Standard
16331 \begin_inset VSpace medskip
16332 \end_inset
16333
16334 Um Bedingungen für Grenzen anzugeben, gibt es die Befehle 
16335 \series bold
16336
16337 \backslash
16338 subarray
16339 \series default
16340
16341 \begin_inset Index idx
16342 status collapsed
16343
16344 \begin_layout Plain Layout
16345 Befehle ! S ! 
16346 \backslash
16347 subarray
16348 \end_layout
16349
16350 \end_inset
16351
16352  und 
16353 \series bold
16354
16355 \backslash
16356 substack
16357 \series default
16358
16359 \begin_inset Index idx
16360 status collapsed
16361
16362 \begin_layout Plain Layout
16363 Befehle ! S ! 
16364 \backslash
16365 substack
16366 \end_layout
16367
16368 \end_inset
16369
16370 .
16371  Um z.
16372 \begin_inset space \thinspace{}
16373 \end_inset
16374
16375 B.
16376  diesen Ausdruck 
16377 \begin_inset Formula 
16378 \begin{equation}
16379 \sum_{\begin{subarray}{c}
16380 0<k<1000\\
16381 \\
16382 k\,\in\,\mathbb{N}
16383 \end{subarray}}^{n}k^{-2}\label{eq:substack}
16384 \end{equation}
16385
16386 \end_inset
16387
16388 zu erstellen, muss man Folgendes tun:
16389 \begin_inset Newline newline
16390 \end_inset
16391
16392 Zuerst gibt man den Befehl 
16393 \series bold
16394
16395 \backslash
16396 sum
16397 \series default
16398 ^
16399 \series bold
16400 n
16401 \begin_inset ERT
16402 status collapsed
16403
16404 \begin_layout Plain Layout
16405
16406
16407 \backslash
16408 leer 
16409 \end_layout
16410
16411 \end_inset
16412
16413 _
16414 \series default
16415  ein.
16416  Man befindet sich nun in einem blauen Kästchen unter dem Summenzeichen.
16417  In dieses gibt man den Befehl 
16418 \series bold
16419
16420 \backslash
16421 subarray
16422 \begin_inset ERT
16423 status collapsed
16424
16425 \begin_layout Plain Layout
16426
16427
16428 \backslash
16429 leer 
16430 \end_layout
16431
16432 \end_inset
16433
16434
16435 \series default
16436  ein.
16437  Das blaue Kästchen hat nun eine lila Umrandung und man kann jetzt mehrere
16438  Zeilen untereinander schreiben.
16439  Mit Eingabe des Zeilenumbruchs (
16440 \family sans
16441 Strg+Enter
16442 \family default
16443 ) wird eine neue Zeile erstellt.
16444  Gibt man
16445 \begin_inset Newline newline
16446 \end_inset
16447
16448
16449 \series bold
16450 0<k<1000 Strg+Enter
16451 \begin_inset Newline newline
16452 \end_inset
16453
16454
16455 \series default
16456 ein, erscheint darunter ein Kästchen für die neue Zeile.
16457 \end_layout
16458
16459 \begin_layout Standard
16460 Die Ausrichtung der Zeilen kann mit der 
16461 \family sans
16462 Tabellen-Werkzeugleiste
16463 \family default
16464  oder dem Menü 
16465 \family sans
16466 Bearbeiten\SpecialChar \menuseparator
16467 Zeilen & Spalten
16468 \family default
16469  auf links geändert werden.
16470  Um rechts ausgerichtete Zeilen zu erhalten, wird am Anfang der Zeile 
16471 \series bold
16472
16473 \backslash
16474 hfill
16475 \begin_inset ERT
16476 status collapsed
16477
16478 \begin_layout Plain Layout
16479
16480
16481 \backslash
16482 leer 
16483 \end_layout
16484
16485 \end_inset
16486
16487
16488 \series default
16489  eingegeben.
16490 \end_layout
16491
16492 \begin_layout Standard
16493 Der Befehl 
16494 \series bold
16495
16496 \backslash
16497 substack
16498 \series default
16499  ist äquivalent zu 
16500 \series bold
16501
16502 \backslash
16503 subarray
16504 \series default
16505 , mit dem Unterschied dass die Zeilen immer zentriert ausgerichtet sind.
16506 \end_layout
16507
16508 \begin_layout Standard
16509 \begin_inset VSpace bigskip
16510 \end_inset
16511
16512 Wie bei Formel 
16513 \begin_inset CommandInset ref
16514 LatexCommand eqref
16515 reference "eq:substack"
16516
16517 \end_inset
16518
16519  kann es vorkommen, dass sich neben dem Operator zu viel Leerraum befindet,
16520  denn das dem Operator folgende Zeichen wird neben die Grenzen gesetzt.
16521 \end_layout
16522
16523 \begin_layout Standard
16524 Um das zu verhindern, kann man folgendes Makro in den LaTeX-Vorspann einfügen:
16525 \end_layout
16526
16527 \begin_layout Standard
16528
16529 \series bold
16530
16531 \backslash
16532 def
16533 \backslash
16534 clap#1{
16535 \backslash
16536 hbox to 0pt{
16537 \backslash
16538 hss #1
16539 \backslash
16540 hss}}
16541 \begin_inset Newline newline
16542 \end_inset
16543
16544
16545 \backslash
16546 def
16547 \backslash
16548 mathclap {
16549 \backslash
16550 mathpalette 
16551 \backslash
16552 mathclapinternal}
16553 \begin_inset Newline newline
16554 \end_inset
16555
16556
16557 \backslash
16558 def
16559 \backslash
16560 mathclapinternal #1#2{
16561 \backslash
16562 clap{$
16563 \backslash
16564 mathsurround =0pt #1{#2}$}}
16565 \end_layout
16566
16567 \begin_layout Standard
16568 Dadurch wird der Befehl 
16569 \series bold
16570
16571 \backslash
16572 mathclap
16573 \series default
16574
16575 \begin_inset Index idx
16576 status collapsed
16577
16578 \begin_layout Plain Layout
16579 Befehle ! M ! 
16580 \backslash
16581 mathclap
16582 \end_layout
16583
16584 \end_inset
16585
16586  definiert, der die Breite der Grenze auf 0
16587 \begin_inset space \thinspace{}
16588 \end_inset
16589
16590 pt setzt.
16591  Das Befehlsschema lautet
16592 \end_layout
16593
16594 \begin_layout Standard
16595
16596 \series bold
16597
16598 \backslash
16599 mathclap{Grenze}
16600 \end_layout
16601
16602 \begin_layout Standard
16603 wobei die Grenze auch aus mehreren Bedingungen bestehen kann.
16604 \end_layout
16605
16606 \begin_layout Standard
16607 Auf Formel 
16608 \begin_inset CommandInset ref
16609 LatexCommand eqref
16610 reference "eq:substack"
16611
16612 \end_inset
16613
16614  angewandt, gibt man also den Befehl
16615 \end_layout
16616
16617 \begin_layout Standard
16618
16619 \series bold
16620
16621 \backslash
16622 sum_
16623 \backslash
16624 mathclap{
16625 \backslash
16626 substack
16627 \begin_inset ERT
16628 status collapsed
16629
16630 \begin_layout Plain Layout
16631
16632
16633 \backslash
16634 leer 
16635 \end_layout
16636
16637 \end_inset
16638
16639 0<k<1000 Strg+Enter
16640 \end_layout
16641
16642 \begin_layout Standard
16643 ein, um die untere Grenze zu erstellen.
16644  Der Summand befindet sich nun direkt hinter dem Summenzeichen:
16645 \begin_inset Formula 
16646 \[
16647 \sum_{\mathclap{\substack{0<k<1000\\
16648 \\
16649 k\,\in\,\mathbb{N}
16650 }
16651 }}^{n}k^{-2}
16652 \]
16653
16654 \end_inset
16655
16656
16657 \end_layout
16658
16659 \begin_layout Standard
16660 \begin_inset VSpace bigskip
16661 \end_inset
16662
16663 In 
16664 \begin_inset CommandInset ref
16665 LatexCommand ref
16666 reference "sub:Selbstdefinierte-Operatoren"
16667
16668 \end_inset
16669
16670  ist beschrieben, wie man eine Grenze für mehrere Operatoren verwenden kann.
16671 \end_layout
16672
16673 \begin_layout Subsection
16674 Binäre Operatoren
16675 \begin_inset CommandInset label
16676 LatexCommand label
16677 name "sub:Binäre-Operatoren"
16678
16679 \end_inset
16680
16681
16682 \begin_inset Index idx
16683 status collapsed
16684
16685 \begin_layout Plain Layout
16686 Operatoren ! binäre
16687 \end_layout
16688
16689 \end_inset
16690
16691
16692 \end_layout
16693
16694 \begin_layout Standard
16695 Binäre Operatoren sind von Leerraum umgeben, wenn sich vor und hinter ihnen
16696  ein Zeichen befindet.
16697 \begin_inset VSpace medskip
16698 \end_inset
16699
16700
16701 \end_layout
16702
16703 \begin_layout Standard
16704 \begin_inset space \hfill{}
16705 \end_inset
16706
16707
16708 \begin_inset Tabular
16709 <lyxtabular version="3" rows="13" columns="2">
16710 <features tabularvalignment="middle">
16711 <column alignment="center" valignment="top" width="0pt">
16712 <column alignment="center" valignment="top" width="0pt">
16713 <row>
16714 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
16715 \begin_inset Text
16716
16717 \begin_layout Plain Layout
16718 Befehl
16719 \begin_inset Note Note
16720 status collapsed
16721
16722 \begin_layout Plain Layout
16723
16724 \series bold
16725
16726 \backslash
16727 raisebox
16728 \series default
16729  dient nur als Abstandhalter.
16730 \end_layout
16731
16732 \end_inset
16733
16734
16735 \end_layout
16736
16737 \end_inset
16738 </cell>
16739 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
16740 \begin_inset Text
16741
16742 \begin_layout Plain Layout
16743 Ergebnis
16744 \end_layout
16745
16746 \end_inset
16747 </cell>
16748 </row>
16749 <row>
16750 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16751 \begin_inset Text
16752
16753 \begin_layout Plain Layout
16754 +
16755 \end_layout
16756
16757 \end_inset
16758 </cell>
16759 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16760 \begin_inset Text
16761
16762 \begin_layout Plain Layout
16763 \begin_inset Formula $+$
16764 \end_inset
16765
16766
16767 \end_layout
16768
16769 \end_inset
16770 </cell>
16771 </row>
16772 <row>
16773 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16774 \begin_inset Text
16775
16776 \begin_layout Plain Layout
16777 -
16778 \end_layout
16779
16780 \end_inset
16781 </cell>
16782 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16783 \begin_inset Text
16784
16785 \begin_layout Plain Layout
16786 \begin_inset Formula $-$
16787 \end_inset
16788
16789
16790 \end_layout
16791
16792 \end_inset
16793 </cell>
16794 </row>
16795 <row>
16796 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16797 \begin_inset Text
16798
16799 \begin_layout Plain Layout
16800
16801 \backslash
16802 pm
16803 \end_layout
16804
16805 \end_inset
16806 </cell>
16807 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16808 \begin_inset Text
16809
16810 \begin_layout Plain Layout
16811 \begin_inset Formula $\pm$
16812 \end_inset
16813
16814
16815 \end_layout
16816
16817 \end_inset
16818 </cell>
16819 </row>
16820 <row>
16821 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16822 \begin_inset Text
16823
16824 \begin_layout Plain Layout
16825
16826 \backslash
16827 mp
16828 \end_layout
16829
16830 \end_inset
16831 </cell>
16832 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16833 \begin_inset Text
16834
16835 \begin_layout Plain Layout
16836 \begin_inset Formula $\mp$
16837 \end_inset
16838
16839
16840 \end_layout
16841
16842 \end_inset
16843 </cell>
16844 </row>
16845 <row>
16846 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16847 \begin_inset Text
16848
16849 \begin_layout Plain Layout
16850
16851 \backslash
16852 cdot
16853 \end_layout
16854
16855 \end_inset
16856 </cell>
16857 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16858 \begin_inset Text
16859
16860 \begin_layout Plain Layout
16861 \begin_inset Formula $\cdot$
16862 \end_inset
16863
16864
16865 \end_layout
16866
16867 \end_inset
16868 </cell>
16869 </row>
16870 <row>
16871 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16872 \begin_inset Text
16873
16874 \begin_layout Plain Layout
16875
16876 \backslash
16877 times
16878 \end_layout
16879
16880 \end_inset
16881 </cell>
16882 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16883 \begin_inset Text
16884
16885 \begin_layout Plain Layout
16886 \begin_inset Formula $\times$
16887 \end_inset
16888
16889
16890 \end_layout
16891
16892 \end_inset
16893 </cell>
16894 </row>
16895 <row>
16896 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16897 \begin_inset Text
16898
16899 \begin_layout Plain Layout
16900
16901 \backslash
16902 div
16903 \end_layout
16904
16905 \end_inset
16906 </cell>
16907 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16908 \begin_inset Text
16909
16910 \begin_layout Plain Layout
16911 \begin_inset Formula $\div$
16912 \end_inset
16913
16914
16915 \end_layout
16916
16917 \end_inset
16918 </cell>
16919 </row>
16920 <row>
16921 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16922 \begin_inset Text
16923
16924 \begin_layout Plain Layout
16925 \begin_inset ERT
16926 status collapsed
16927
16928 \begin_layout Plain Layout
16929
16930
16931 \backslash
16932 raisebox{-1.2mm}{
16933 \end_layout
16934
16935 \end_inset
16936
16937 *
16938 \begin_inset ERT
16939 status collapsed
16940
16941 \begin_layout Plain Layout
16942
16943 }
16944 \end_layout
16945
16946 \end_inset
16947
16948
16949 \end_layout
16950
16951 \end_inset
16952 </cell>
16953 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16954 \begin_inset Text
16955
16956 \begin_layout Plain Layout
16957 \begin_inset Formula $*$
16958 \end_inset
16959
16960
16961 \end_layout
16962
16963 \end_inset
16964 </cell>
16965 </row>
16966 <row>
16967 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16968 \begin_inset Text
16969
16970 \begin_layout Plain Layout
16971
16972 \backslash
16973 star
16974 \end_layout
16975
16976 \end_inset
16977 </cell>
16978 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
16979 \begin_inset Text
16980
16981 \begin_layout Plain Layout
16982 \begin_inset Formula $\star$
16983 \end_inset
16984
16985
16986 \end_layout
16987
16988 \end_inset
16989 </cell>
16990 </row>
16991 <row>
16992 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
16993 \begin_inset Text
16994
16995 \begin_layout Plain Layout
16996
16997 \backslash
16998 circ
16999 \end_layout
17000
17001 \end_inset
17002 </cell>
17003 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17004 \begin_inset Text
17005
17006 \begin_layout Plain Layout
17007 \begin_inset Formula $\circ$
17008 \end_inset
17009
17010
17011 \end_layout
17012
17013 \end_inset
17014 </cell>
17015 </row>
17016 <row>
17017 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17018 \begin_inset Text
17019
17020 \begin_layout Plain Layout
17021
17022 \backslash
17023 diamond
17024 \end_layout
17025
17026 \end_inset
17027 </cell>
17028 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17029 \begin_inset Text
17030
17031 \begin_layout Plain Layout
17032 \begin_inset Formula $\diamond$
17033 \end_inset
17034
17035
17036 \end_layout
17037
17038 \end_inset
17039 </cell>
17040 </row>
17041 <row>
17042 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
17043 \begin_inset Text
17044
17045 \begin_layout Plain Layout
17046
17047 \backslash
17048 bullet
17049 \end_layout
17050
17051 \end_inset
17052 </cell>
17053 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
17054 \begin_inset Text
17055
17056 \begin_layout Plain Layout
17057 \begin_inset Formula $\bullet$
17058 \end_inset
17059
17060
17061 \end_layout
17062
17063 \end_inset
17064 </cell>
17065 </row>
17066 </lyxtabular>
17067
17068 \end_inset
17069
17070
17071 \begin_inset space \hfill{}
17072 \end_inset
17073
17074
17075 \begin_inset Tabular
17076 <lyxtabular version="3" rows="13" columns="2">
17077 <features tabularvalignment="middle">
17078 <column alignment="center" valignment="top" width="0pt">
17079 <column alignment="center" valignment="top" width="0pt">
17080 <row>
17081 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
17082 \begin_inset Text
17083
17084 \begin_layout Plain Layout
17085 Befehl
17086 \end_layout
17087
17088 \end_inset
17089 </cell>
17090 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
17091 \begin_inset Text
17092
17093 \begin_layout Plain Layout
17094 Ergebnis
17095 \end_layout
17096
17097 \end_inset
17098 </cell>
17099 </row>
17100 <row>
17101 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17102 \begin_inset Text
17103
17104 \begin_layout Plain Layout
17105
17106 \backslash
17107 nabla
17108 \end_layout
17109
17110 \end_inset
17111 </cell>
17112 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17113 \begin_inset Text
17114
17115 \begin_layout Plain Layout
17116 \begin_inset Formula $\nabla$
17117 \end_inset
17118
17119
17120 \end_layout
17121
17122 \end_inset
17123 </cell>
17124 </row>
17125 <row>
17126 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17127 \begin_inset Text
17128
17129 \begin_layout Plain Layout
17130
17131 \backslash
17132 bigtriangledown
17133 \end_layout
17134
17135 \end_inset
17136 </cell>
17137 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17138 \begin_inset Text
17139
17140 \begin_layout Plain Layout
17141 \begin_inset Formula $\bigtriangledown$
17142 \end_inset
17143
17144
17145 \end_layout
17146
17147 \end_inset
17148 </cell>
17149 </row>
17150 <row>
17151 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17152 \begin_inset Text
17153
17154 \begin_layout Plain Layout
17155
17156 \backslash
17157 bigtriangleup
17158 \end_layout
17159
17160 \end_inset
17161 </cell>
17162 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17163 \begin_inset Text
17164
17165 \begin_layout Plain Layout
17166 \begin_inset Formula $\bigtriangleup$
17167 \end_inset
17168
17169
17170 \end_layout
17171
17172 \end_inset
17173 </cell>
17174 </row>
17175 <row>
17176 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17177 \begin_inset Text
17178
17179 \begin_layout Plain Layout
17180
17181 \backslash
17182 Box
17183 \end_layout
17184
17185 \end_inset
17186 </cell>
17187 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17188 \begin_inset Text
17189
17190 \begin_layout Plain Layout
17191 \begin_inset Formula $\Box$
17192 \end_inset
17193
17194
17195 \end_layout
17196
17197 \end_inset
17198 </cell>
17199 </row>
17200 <row>
17201 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17202 \begin_inset Text
17203
17204 \begin_layout Plain Layout
17205
17206 \backslash
17207 cap 
17208 \end_layout
17209
17210 \end_inset
17211 </cell>
17212 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17213 \begin_inset Text
17214
17215 \begin_layout Plain Layout
17216 \begin_inset Formula $\cap$
17217 \end_inset
17218
17219
17220 \end_layout
17221
17222 \end_inset
17223 </cell>
17224 </row>
17225 <row>
17226 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17227 \begin_inset Text
17228
17229 \begin_layout Plain Layout
17230
17231 \backslash
17232 cup
17233 \end_layout
17234
17235 \end_inset
17236 </cell>
17237 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17238 \begin_inset Text
17239
17240 \begin_layout Plain Layout
17241 \begin_inset Formula $\cup$
17242 \end_inset
17243
17244
17245 \end_layout
17246
17247 \end_inset
17248 </cell>
17249 </row>
17250 <row>
17251 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17252 \begin_inset Text
17253
17254 \begin_layout Plain Layout
17255
17256 \backslash
17257 dagger
17258 \end_layout
17259
17260 \end_inset
17261 </cell>
17262 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17263 \begin_inset Text
17264
17265 \begin_layout Plain Layout
17266 \begin_inset Formula $\dagger$
17267 \end_inset
17268
17269
17270 \end_layout
17271
17272 \end_inset
17273 </cell>
17274 </row>
17275 <row>
17276 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17277 \begin_inset Text
17278
17279 \begin_layout Plain Layout
17280
17281 \backslash
17282 ddagger
17283 \end_layout
17284
17285 \end_inset
17286 </cell>
17287 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17288 \begin_inset Text
17289
17290 \begin_layout Plain Layout
17291 \begin_inset Formula $\ddagger$
17292 \end_inset
17293
17294
17295 \end_layout
17296
17297 \end_inset
17298 </cell>
17299 </row>
17300 <row>
17301 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17302 \begin_inset Text
17303
17304 \begin_layout Plain Layout
17305
17306 \backslash
17307 wr
17308 \end_layout
17309
17310 \end_inset
17311 </cell>
17312 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17313 \begin_inset Text
17314
17315 \begin_layout Plain Layout
17316 \begin_inset Formula $\wr$
17317 \end_inset
17318
17319
17320 \end_layout
17321
17322 \end_inset
17323 </cell>
17324 </row>
17325 <row>
17326 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17327 \begin_inset Text
17328
17329 \begin_layout Plain Layout
17330
17331 \backslash
17332 bigcirc
17333 \end_layout
17334
17335 \end_inset
17336 </cell>
17337 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17338 \begin_inset Text
17339
17340 \begin_layout Plain Layout
17341 \begin_inset Formula $\bigcirc$
17342 \end_inset
17343
17344
17345 \end_layout
17346
17347 \end_inset
17348 </cell>
17349 </row>
17350 <row>
17351 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17352 \begin_inset Text
17353
17354 \begin_layout Plain Layout
17355
17356 \backslash
17357 wedge
17358 \end_layout
17359
17360 \end_inset
17361 </cell>
17362 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17363 \begin_inset Text
17364
17365 \begin_layout Plain Layout
17366 \begin_inset Formula $\wedge$
17367 \end_inset
17368
17369
17370 \end_layout
17371
17372 \end_inset
17373 </cell>
17374 </row>
17375 <row>
17376 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
17377 \begin_inset Text
17378
17379 \begin_layout Plain Layout
17380
17381 \backslash
17382 vee
17383 \end_layout
17384
17385 \end_inset
17386 </cell>
17387 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
17388 \begin_inset Text
17389
17390 \begin_layout Plain Layout
17391 \begin_inset Formula $\vee$
17392 \end_inset
17393
17394
17395 \end_layout
17396
17397 \end_inset
17398 </cell>
17399 </row>
17400 </lyxtabular>
17401
17402 \end_inset
17403
17404
17405 \begin_inset space \hfill{}
17406 \end_inset
17407
17408
17409 \begin_inset Tabular
17410 <lyxtabular version="3" rows="13" columns="2">
17411 <features tabularvalignment="middle">
17412 <column alignment="center" valignment="top" width="0pt">
17413 <column alignment="center" valignment="top" width="0pt">
17414 <row>
17415 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
17416 \begin_inset Text
17417
17418 \begin_layout Plain Layout
17419 Befehl
17420 \end_layout
17421
17422 \end_inset
17423 </cell>
17424 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
17425 \begin_inset Text
17426
17427 \begin_layout Plain Layout
17428 Ergebnis
17429 \end_layout
17430
17431 \end_inset
17432 </cell>
17433 </row>
17434 <row>
17435 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17436 \begin_inset Text
17437
17438 \begin_layout Plain Layout
17439
17440 \backslash
17441 oplus
17442 \end_layout
17443
17444 \end_inset
17445 </cell>
17446 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17447 \begin_inset Text
17448
17449 \begin_layout Plain Layout
17450 \begin_inset Formula $\oplus$
17451 \end_inset
17452
17453
17454 \end_layout
17455
17456 \end_inset
17457 </cell>
17458 </row>
17459 <row>
17460 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17461 \begin_inset Text
17462
17463 \begin_layout Plain Layout
17464
17465 \backslash
17466 ominus
17467 \end_layout
17468
17469 \end_inset
17470 </cell>
17471 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17472 \begin_inset Text
17473
17474 \begin_layout Plain Layout
17475 \begin_inset Formula $\ominus$
17476 \end_inset
17477
17478
17479 \end_layout
17480
17481 \end_inset
17482 </cell>
17483 </row>
17484 <row>
17485 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17486 \begin_inset Text
17487
17488 \begin_layout Plain Layout
17489
17490 \backslash
17491 otimes
17492 \end_layout
17493
17494 \end_inset
17495 </cell>
17496 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17497 \begin_inset Text
17498
17499 \begin_layout Plain Layout
17500 \begin_inset Formula $\otimes$
17501 \end_inset
17502
17503
17504 \end_layout
17505
17506 \end_inset
17507 </cell>
17508 </row>
17509 <row>
17510 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17511 \begin_inset Text
17512
17513 \begin_layout Plain Layout
17514
17515 \backslash
17516 oslash
17517 \end_layout
17518
17519 \end_inset
17520 </cell>
17521 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17522 \begin_inset Text
17523
17524 \begin_layout Plain Layout
17525 \begin_inset Formula $\oslash$
17526 \end_inset
17527
17528
17529 \end_layout
17530
17531 \end_inset
17532 </cell>
17533 </row>
17534 <row>
17535 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17536 \begin_inset Text
17537
17538 \begin_layout Plain Layout
17539
17540 \backslash
17541 odot
17542 \end_layout
17543
17544 \end_inset
17545 </cell>
17546 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17547 \begin_inset Text
17548
17549 \begin_layout Plain Layout
17550 \begin_inset Formula $\odot$
17551 \end_inset
17552
17553
17554 \end_layout
17555
17556 \end_inset
17557 </cell>
17558 </row>
17559 <row>
17560 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17561 \begin_inset Text
17562
17563 \begin_layout Plain Layout
17564
17565 \backslash
17566 amalg
17567 \end_layout
17568
17569 \end_inset
17570 </cell>
17571 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17572 \begin_inset Text
17573
17574 \begin_layout Plain Layout
17575 \begin_inset Formula $\amalg$
17576 \end_inset
17577
17578
17579 \end_layout
17580
17581 \end_inset
17582 </cell>
17583 </row>
17584 <row>
17585 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17586 \begin_inset Text
17587
17588 \begin_layout Plain Layout
17589
17590 \backslash
17591 uplus
17592 \end_layout
17593
17594 \end_inset
17595 </cell>
17596 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17597 \begin_inset Text
17598
17599 \begin_layout Plain Layout
17600 \begin_inset Formula $\uplus$
17601 \end_inset
17602
17603
17604 \end_layout
17605
17606 \end_inset
17607 </cell>
17608 </row>
17609 <row>
17610 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17611 \begin_inset Text
17612
17613 \begin_layout Plain Layout
17614
17615 \backslash
17616 setminus
17617 \end_layout
17618
17619 \end_inset
17620 </cell>
17621 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17622 \begin_inset Text
17623
17624 \begin_layout Plain Layout
17625 \begin_inset Formula $\setminus$
17626 \end_inset
17627
17628
17629 \end_layout
17630
17631 \end_inset
17632 </cell>
17633 </row>
17634 <row>
17635 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17636 \begin_inset Text
17637
17638 \begin_layout Plain Layout
17639
17640 \backslash
17641 sqcap
17642 \end_layout
17643
17644 \end_inset
17645 </cell>
17646 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17647 \begin_inset Text
17648
17649 \begin_layout Plain Layout
17650 \begin_inset Formula $\sqcap$
17651 \end_inset
17652
17653
17654 \end_layout
17655
17656 \end_inset
17657 </cell>
17658 </row>
17659 <row>
17660 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17661 \begin_inset Text
17662
17663 \begin_layout Plain Layout
17664
17665 \backslash
17666 sqcup
17667 \end_layout
17668
17669 \end_inset
17670 </cell>
17671 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17672 \begin_inset Text
17673
17674 \begin_layout Plain Layout
17675 \begin_inset Formula $\sqcup$
17676 \end_inset
17677
17678
17679 \end_layout
17680
17681 \end_inset
17682 </cell>
17683 </row>
17684 <row>
17685 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
17686 \begin_inset Text
17687
17688 \begin_layout Plain Layout
17689
17690 \backslash
17691 triangleleft
17692 \end_layout
17693
17694 \end_inset
17695 </cell>
17696 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
17697 \begin_inset Text
17698
17699 \begin_layout Plain Layout
17700 \begin_inset Formula $\triangleleft$
17701 \end_inset
17702
17703
17704 \end_layout
17705
17706 \end_inset
17707 </cell>
17708 </row>
17709 <row>
17710 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
17711 \begin_inset Text
17712
17713 \begin_layout Plain Layout
17714
17715 \backslash
17716 triangleright
17717 \end_layout
17718
17719 \end_inset
17720 </cell>
17721 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
17722 \begin_inset Text
17723
17724 \begin_layout Plain Layout
17725 \begin_inset Formula $\triangleright$
17726 \end_inset
17727
17728
17729 \end_layout
17730
17731 \end_inset
17732 </cell>
17733 </row>
17734 </lyxtabular>
17735
17736 \end_inset
17737
17738
17739 \begin_inset space \hfill{}
17740 \end_inset
17741
17742
17743 \end_layout
17744
17745 \begin_layout Standard
17746 Alle binären Operatoren können auch über den Mathe-Werkzeugleistenknopf
17747  
17748 \begin_inset Graphics
17749         filename ../../images/math/pm.png
17750         scale 85
17751
17752 \end_inset
17753
17754  eingefügt werden.
17755 \end_layout
17756
17757 \begin_layout Standard
17758 Um den Laplace-Operator darzustellen, kann man statt 
17759 \series bold
17760
17761 \backslash
17762 bigtriangleup
17763 \series default
17764  auch 
17765 \series bold
17766
17767 \backslash
17768 Delta
17769 \series default
17770  verwenden oder man benutzt 
17771 \series bold
17772
17773 \backslash
17774 nabla
17775 \series default
17776 ^
17777 \series bold
17778 2
17779 \series default
17780  (
17781 \begin_inset Formula $\nabla^{2}$
17782 \end_inset
17783
17784 ).
17785 \end_layout
17786
17787 \begin_layout Standard
17788 Das Zeichen 
17789 \family sans
17790 Menütrenner
17791 \family default
17792  im Menü 
17793 \family sans
17794 Einfügen\SpecialChar \menuseparator
17795 Sonderzeichen
17796 \family default
17797  ist der Operator 
17798 \series bold
17799
17800 \backslash
17801 triangleright
17802 \series default
17803 .
17804 \end_layout
17805
17806 \begin_layout Subsection
17807 Selbst definierte Operatoren
17808 \begin_inset CommandInset label
17809 LatexCommand label
17810 name "sub:Selbstdefinierte-Operatoren"
17811
17812 \end_inset
17813
17814
17815 \begin_inset Index idx
17816 status collapsed
17817
17818 \begin_layout Plain Layout
17819 Operatoren ! selbstdefinierte
17820 \end_layout
17821
17822 \end_inset
17823
17824
17825 \end_layout
17826
17827 \begin_layout Standard
17828 Mit Hilfe des Befehls 
17829 \series bold
17830
17831 \backslash
17832 DeclareMathOperator
17833 \series default
17834
17835 \begin_inset Index idx
17836 status collapsed
17837
17838 \begin_layout Plain Layout
17839 Befehle ! D ! 
17840 \backslash
17841 dbinom@
17842 \backslash
17843 DeclareMathOperator
17844 \end_layout
17845
17846 \end_inset
17847
17848  kann man im LaTeX-Vorspann eigene Operatoren definieren.
17849  Das Befehlsschema dazu lautet:
17850 \end_layout
17851
17852 \begin_layout Standard
17853
17854 \series bold
17855
17856 \backslash
17857 DeclareMathOperator{neuer Befehl}{Anzeige}
17858 \end_layout
17859
17860 \begin_layout Standard
17861 Anzeige können Zeichen und Symbole sein, die festlegen, wie der Operator
17862  im Ausdruck aussieht.
17863  Will man einen großen Operator definieren, setzt man hinter den Befehl
17864  ein 
17865 \series bold
17866 *
17867 \series default
17868 .
17869  Zu allen selbst definierten großen Operatoren kann man Grenzen angeben,
17870  wie in 
17871 \begin_inset CommandInset ref
17872 LatexCommand ref
17873 reference "sub:Operatorgrenzen"
17874
17875 \end_inset
17876
17877  beschrieben.
17878 \end_layout
17879
17880 \begin_layout Standard
17881 Beispielsweise definiert die LaTeX-Vorspannzeile
17882 \end_layout
17883
17884 \begin_layout Standard
17885
17886 \series bold
17887
17888 \backslash
17889 DeclareMathOperator*{
17890 \backslash
17891 Raute}{
17892 \backslash
17893 blacklozenge}
17894 \end_layout
17895
17896 \begin_layout Standard
17897 den Befehl 
17898 \series bold
17899
17900 \backslash
17901 Raute
17902 \series default
17903 , mit dem man einen großen Operator aufrufen kann, der aus dem Raute Symbol
17904  aus 
17905 \begin_inset CommandInset ref
17906 LatexCommand ref
17907 reference "sub:Sonstige-Symbole"
17908
17909 \end_inset
17910
17911  besteht:
17912 \begin_inset Formula 
17913 \[
17914 \Raute_{n=1}^{\infty}
17915 \]
17916
17917 \end_inset
17918
17919 Der Befehl für diese Formel lautet: 
17920 \series bold
17921
17922 \backslash
17923 Raute
17924 \series default
17925 ^
17926 \series bold
17927
17928 \backslash
17929 infty
17930 \begin_inset Formula $\to$
17931 \end_inset
17932
17933 _n=1
17934 \end_layout
17935
17936 \begin_layout Standard
17937 \begin_inset VSpace bigskip
17938 \end_inset
17939
17940 Benötigt man eigene Operatoren nicht mehrfach im Dokument, kann man diese
17941  auch mit den Befehlen 
17942 \series bold
17943
17944 \backslash
17945 mathop
17946 \series default
17947
17948 \begin_inset Index idx
17949 status collapsed
17950
17951 \begin_layout Plain Layout
17952 Befehle ! M ! 
17953 \backslash
17954 mathop
17955 \end_layout
17956
17957 \end_inset
17958
17959  und 
17960 \series bold
17961
17962 \backslash
17963 mathbin
17964 \series default
17965
17966 \begin_inset Index idx
17967 status collapsed
17968
17969 \begin_layout Plain Layout
17970 Befehle ! M ! 
17971 \backslash
17972 mathbin
17973 \end_layout
17974
17975 \end_inset
17976
17977  definieren, die folgendes Schema besitzen:
17978 \end_layout
17979
17980 \begin_layout Standard
17981
17982 \series bold
17983
17984 \backslash
17985 mathop{Anzeige}
17986 \series default
17987  bzw.
17988  
17989 \series bold
17990
17991 \backslash
17992 mathbin{Anzeige}
17993 \end_layout
17994
17995 \begin_layout Standard
17996
17997 \series bold
17998
17999 \backslash
18000 mathop
18001 \series default
18002  definiert große, 
18003 \series bold
18004
18005 \backslash
18006 mathbin
18007 \series default
18008  binäre Operatoren.
18009 \end_layout
18010
18011 \begin_layout Standard
18012
18013 \series bold
18014
18015 \backslash
18016 mathop
18017 \series default
18018  lässt sich z.
18019 \begin_inset space \thinspace{}
18020 \end_inset
18021
18022 B.
18023  nutzen, um eine Grenze für mehrere Operatoren zu verwenden:
18024 \begin_inset Formula 
18025 \[
18026 \mathop{\sum\negmedspace\sum}_{i,j=1}^{N}
18027 \]
18028
18029 \end_inset
18030
18031
18032 \end_layout
18033
18034 \begin_layout Standard
18035 Der Befehl für obige Formel lautet:
18036 \begin_inset Newline newline
18037 \end_inset
18038
18039  
18040 \series bold
18041
18042 \backslash
18043 mathop{
18044 \backslash
18045 sum
18046 \backslash
18047 negmedspace
18048 \backslash
18049 sum
18050 \series default
18051
18052 \begin_inset ERT
18053 status collapsed
18054
18055 \begin_layout Plain Layout
18056
18057
18058 \backslash
18059 leer 
18060 \end_layout
18061
18062 \end_inset
18063
18064
18065 \series bold
18066
18067 \begin_inset Formula $\to$
18068 \end_inset
18069
18070 ^N
18071 \series default
18072
18073 \begin_inset ERT
18074 status collapsed
18075
18076 \begin_layout Plain Layout
18077
18078
18079 \backslash
18080 leer 
18081 \end_layout
18082
18083 \end_inset
18084
18085
18086 \series bold
18087 _i,j=1
18088 \end_layout
18089
18090 \begin_layout Section
18091 Schriften
18092 \begin_inset Index idx
18093 status collapsed
18094
18095 \begin_layout Plain Layout
18096 Schriften
18097 \end_layout
18098
18099 \end_inset
18100
18101
18102 \end_layout
18103
18104 \begin_layout Subsection
18105 Schriftstile
18106 \begin_inset CommandInset label
18107 LatexCommand label
18108 name "sub:Schriftstile"
18109
18110 \end_inset
18111
18112
18113 \begin_inset Index idx
18114 status collapsed
18115
18116 \begin_layout Plain Layout
18117 Schriften ! Schriftstile
18118 \end_layout
18119
18120 \end_inset
18121
18122
18123 \end_layout
18124
18125 \begin_layout Standard
18126 Lateinische Buchstaben in einer Formel können in folgenden Schriftstilen
18127  gesetzt werden:
18128 \begin_inset VSpace -2mm
18129 \end_inset
18130
18131
18132 \end_layout
18133
18134 \begin_layout Standard
18135 \align center
18136 \begin_inset Tabular
18137 <lyxtabular version="3" rows="7" columns="3">
18138 <features tabularvalignment="middle">
18139 <column alignment="center" valignment="top" width="0">
18140 <column alignment="center" valignment="top" width="0">
18141 <column alignment="center" valignment="top" width="0">
18142 <row>
18143 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
18144 \begin_inset Text
18145
18146 \begin_layout Plain Layout
18147 Befehl
18148 \end_layout
18149
18150 \end_inset
18151 </cell>
18152 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
18153 \begin_inset Text
18154
18155 \begin_layout Plain Layout
18156 Ergebnis
18157 \end_layout
18158
18159 \end_inset
18160 </cell>
18161 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
18162 \begin_inset Text
18163
18164 \begin_layout Plain Layout
18165 Tastenkürzel
18166 \end_layout
18167
18168 \end_inset
18169 </cell>
18170 </row>
18171 <row>
18172 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18173 \begin_inset Text
18174
18175 \begin_layout Plain Layout
18176
18177 \backslash
18178 mathbb
18179 \series bold
18180
18181 \begin_inset ERT
18182 status collapsed
18183
18184 \begin_layout Plain Layout
18185
18186
18187 \backslash
18188 leer 
18189 \end_layout
18190
18191 \end_inset
18192
18193
18194 \series default
18195 ABC
18196 \end_layout
18197
18198 \end_inset
18199 </cell>
18200 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18201 \begin_inset Text
18202
18203 \begin_layout Plain Layout
18204 \begin_inset Formula $\mathbb{ABC}$
18205 \end_inset
18206
18207
18208 \end_layout
18209
18210 \end_inset
18211 </cell>
18212 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
18213 \begin_inset Text
18214
18215 \begin_layout Plain Layout
18216 Alt+Z K
18217 \end_layout
18218
18219 \end_inset
18220 </cell>
18221 </row>
18222 <row>
18223 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18224 \begin_inset Text
18225
18226 \begin_layout Plain Layout
18227
18228 \backslash
18229 mathbf
18230 \series bold
18231
18232 \begin_inset ERT
18233 status collapsed
18234
18235 \begin_layout Plain Layout
18236
18237
18238 \backslash
18239 leer 
18240 \end_layout
18241
18242 \end_inset
18243
18244
18245 \series default
18246 AbC
18247 \end_layout
18248
18249 \end_inset
18250 </cell>
18251 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18252 \begin_inset Text
18253
18254 \begin_layout Plain Layout
18255 \begin_inset Formula $\mathbf{AbC}$
18256 \end_inset
18257
18258
18259 \end_layout
18260
18261 \end_inset
18262 </cell>
18263 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
18264 \begin_inset Text
18265
18266 \begin_layout Plain Layout
18267 Strg+B
18268 \end_layout
18269
18270 \end_inset
18271 </cell>
18272 </row>
18273 <row>
18274 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18275 \begin_inset Text
18276
18277 \begin_layout Plain Layout
18278
18279 \backslash
18280 boldsymbol
18281 \series bold
18282
18283 \begin_inset ERT
18284 status collapsed
18285
18286 \begin_layout Plain Layout
18287
18288
18289 \backslash
18290 leer 
18291 \end_layout
18292
18293 \end_inset
18294
18295
18296 \series default
18297 AbC
18298 \end_layout
18299
18300 \end_inset
18301 </cell>
18302 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18303 \begin_inset Text
18304
18305 \begin_layout Plain Layout
18306 \begin_inset Formula $\boldsymbol{AbC}$
18307 \end_inset
18308
18309
18310 \end_layout
18311
18312 \end_inset
18313 </cell>
18314 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
18315 \begin_inset Text
18316
18317 \begin_layout Plain Layout
18318 Alt+Z F oder Strg+Alt+B
18319 \end_layout
18320
18321 \end_inset
18322 </cell>
18323 </row>
18324 <row>
18325 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18326 \begin_inset Text
18327
18328 \begin_layout Plain Layout
18329
18330 \backslash
18331 mathcal
18332 \series bold
18333
18334 \begin_inset ERT
18335 status collapsed
18336
18337 \begin_layout Plain Layout
18338
18339
18340 \backslash
18341 leer 
18342 \end_layout
18343
18344 \end_inset
18345
18346
18347 \series default
18348 ABC
18349 \end_layout
18350
18351 \end_inset
18352 </cell>
18353 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18354 \begin_inset Text
18355
18356 \begin_layout Plain Layout
18357 \begin_inset Formula $\mathcal{ABC}$
18358 \end_inset
18359
18360
18361 \end_layout
18362
18363 \end_inset
18364 </cell>
18365 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
18366 \begin_inset Text
18367
18368 \begin_layout Plain Layout
18369 Alt+Z H
18370 \end_layout
18371
18372 \end_inset
18373 </cell>
18374 </row>
18375 <row>
18376 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18377 \begin_inset Text
18378
18379 \begin_layout Plain Layout
18380
18381 \backslash
18382 mathfrak
18383 \series bold
18384
18385 \begin_inset ERT
18386 status collapsed
18387
18388 \begin_layout Plain Layout
18389
18390
18391 \backslash
18392 leer 
18393 \end_layout
18394
18395 \end_inset
18396
18397
18398 \series default
18399 AbC
18400 \end_layout
18401
18402 \end_inset
18403 </cell>
18404 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18405 \begin_inset Text
18406
18407 \begin_layout Plain Layout
18408 \begin_inset Formula $\mathfrak{AbC}$
18409 \end_inset
18410
18411
18412 \end_layout
18413
18414 \end_inset
18415 </cell>
18416 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
18417 \begin_inset Text
18418
18419 \begin_layout Plain Layout
18420 -
18421 \end_layout
18422
18423 \end_inset
18424 </cell>
18425 </row>
18426 <row>
18427 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
18428 \begin_inset Text
18429
18430 \begin_layout Plain Layout
18431
18432 \backslash
18433 mathscr
18434 \series bold
18435
18436 \begin_inset ERT
18437 status collapsed
18438
18439 \begin_layout Plain Layout
18440
18441
18442 \backslash
18443 leer 
18444 \end_layout
18445
18446 \end_inset
18447
18448
18449 \series default
18450 AbC
18451 \end_layout
18452
18453 \end_inset
18454 </cell>
18455 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
18456 \begin_inset Text
18457
18458 \begin_layout Plain Layout
18459 \begin_inset Formula $\mathscr{AbC}$
18460 \end_inset
18461
18462
18463 \end_layout
18464
18465 \end_inset
18466 </cell>
18467 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
18468 \begin_inset Text
18469
18470 \begin_layout Plain Layout
18471 -
18472 \end_layout
18473
18474 \end_inset
18475 </cell>
18476 </row>
18477 </lyxtabular>
18478
18479 \end_inset
18480
18481
18482 \end_layout
18483
18484 \begin_layout Standard
18485 \align center
18486 \begin_inset Tabular
18487 <lyxtabular version="3" rows="5" columns="3">
18488 <features tabularvalignment="middle">
18489 <column alignment="center" valignment="top" width="0">
18490 <column alignment="center" valignment="top" width="0">
18491 <column alignment="center" valignment="top" width="0">
18492 <row>
18493 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
18494 \begin_inset Text
18495
18496 \begin_layout Plain Layout
18497 Befehl
18498 \end_layout
18499
18500 \end_inset
18501 </cell>
18502 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
18503 \begin_inset Text
18504
18505 \begin_layout Plain Layout
18506 Ergebnis
18507 \end_layout
18508
18509 \end_inset
18510 </cell>
18511 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
18512 \begin_inset Text
18513
18514 \begin_layout Plain Layout
18515 Tastenkürzel
18516 \end_layout
18517
18518 \end_inset
18519 </cell>
18520 </row>
18521 <row>
18522 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18523 \begin_inset Text
18524
18525 \begin_layout Plain Layout
18526
18527 \backslash
18528 mathit
18529 \series bold
18530
18531 \begin_inset ERT
18532 status collapsed
18533
18534 \begin_layout Plain Layout
18535
18536
18537 \backslash
18538 leer 
18539 \end_layout
18540
18541 \end_inset
18542
18543
18544 \series default
18545 AbC
18546 \end_layout
18547
18548 \end_inset
18549 </cell>
18550 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18551 \begin_inset Text
18552
18553 \begin_layout Plain Layout
18554 \begin_inset Formula $\mathit{AbC}$
18555 \end_inset
18556
18557
18558 \end_layout
18559
18560 \end_inset
18561 </cell>
18562 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
18563 \begin_inset Text
18564
18565 \begin_layout Plain Layout
18566 -
18567 \end_layout
18568
18569 \end_inset
18570 </cell>
18571 </row>
18572 <row>
18573 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18574 \begin_inset Text
18575
18576 \begin_layout Plain Layout
18577
18578 \backslash
18579 mathrm
18580 \series bold
18581
18582 \begin_inset ERT
18583 status collapsed
18584
18585 \begin_layout Plain Layout
18586
18587
18588 \backslash
18589 leer 
18590 \end_layout
18591
18592 \end_inset
18593
18594
18595 \series default
18596 AbC
18597 \end_layout
18598
18599 \end_inset
18600 </cell>
18601 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18602 \begin_inset Text
18603
18604 \begin_layout Plain Layout
18605 \begin_inset Formula $\mathrm{AbC}$
18606 \end_inset
18607
18608
18609 \end_layout
18610
18611 \end_inset
18612 </cell>
18613 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
18614 \begin_inset Text
18615
18616 \begin_layout Plain Layout
18617 Alt+Z R
18618 \end_layout
18619
18620 \end_inset
18621 </cell>
18622 </row>
18623 <row>
18624 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18625 \begin_inset Text
18626
18627 \begin_layout Plain Layout
18628
18629 \backslash
18630 mathsf
18631 \series bold
18632
18633 \begin_inset ERT
18634 status collapsed
18635
18636 \begin_layout Plain Layout
18637
18638
18639 \backslash
18640 leer 
18641 \end_layout
18642
18643 \end_inset
18644
18645
18646 \series default
18647 AbC
18648 \end_layout
18649
18650 \end_inset
18651 </cell>
18652 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
18653 \begin_inset Text
18654
18655 \begin_layout Plain Layout
18656 \begin_inset Formula $\mathsf{AbC}$
18657 \end_inset
18658
18659
18660 \end_layout
18661
18662 \end_inset
18663 </cell>
18664 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
18665 \begin_inset Text
18666
18667 \begin_layout Plain Layout
18668 Alt+Z S
18669 \end_layout
18670
18671 \end_inset
18672 </cell>
18673 </row>
18674 <row>
18675 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
18676 \begin_inset Text
18677
18678 \begin_layout Plain Layout
18679
18680 \backslash
18681 mathtt
18682 \series bold
18683
18684 \begin_inset ERT
18685 status collapsed
18686
18687 \begin_layout Plain Layout
18688
18689
18690 \backslash
18691 leer 
18692 \end_layout
18693
18694 \end_inset
18695
18696
18697 \series default
18698 AbC
18699 \end_layout
18700
18701 \end_inset
18702 </cell>
18703 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
18704 \begin_inset Text
18705
18706 \begin_layout Plain Layout
18707 \begin_inset Formula $\mathtt{AbC}$
18708 \end_inset
18709
18710
18711 \end_layout
18712
18713 \end_inset
18714 </cell>
18715 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
18716 \begin_inset Text
18717
18718 \begin_layout Plain Layout
18719 Alt+Z C
18720 \end_layout
18721
18722 \end_inset
18723 </cell>
18724 </row>
18725 </lyxtabular>
18726
18727 \end_inset
18728
18729
18730 \end_layout
18731
18732 \begin_layout Standard
18733 \begin_inset Note Greyedout
18734 status open
18735
18736 \begin_layout Plain Layout
18737
18738 \series bold
18739 Achtung:
18740 \series default
18741  Die Stile 
18742 \series bold
18743
18744 \backslash
18745 mathbb
18746 \series default
18747  und 
18748 \series bold
18749
18750 \backslash
18751 mathcal
18752 \series default
18753  können nur für Großbuchstaben verwendet werden.
18754 \end_layout
18755
18756 \end_inset
18757
18758
18759 \end_layout
18760
18761 \begin_layout Standard
18762 Voreingestellt ist der Stil 
18763 \series bold
18764
18765 \backslash
18766 mathnormal
18767 \series default
18768 .
18769 \end_layout
18770
18771 \begin_layout Standard
18772 Die Stilbefehle wirken auch auf Buchstaben in mathematischen Konstruktionen:
18773 \begin_inset Formula 
18774 \[
18775 \mathfrak{A=\frac{b}{C}}
18776 \]
18777
18778 \end_inset
18779
18780
18781 \end_layout
18782
18783 \begin_layout Standard
18784 Zeichen im mathematischen Textmodus erscheinen nicht in einem der Matheschriftst
18785 ile, sondern in dem Textschriftstil 
18786 \series bold
18787
18788 \backslash
18789 textrm
18790 \series default
18791 .
18792  Dass deren Stil nicht über den Textstil Dialog geändert werden kann ist
18793  ein Fehler in LyX.
18794 \begin_inset Foot
18795 status collapsed
18796
18797 \begin_layout Plain Layout
18798 \begin_inset CommandInset href
18799 LatexCommand href
18800 name "LyX-Fehler #4629"
18801 target "http://www.lyx.org/trac/ticket/4629"
18802
18803 \end_inset
18804
18805
18806 \end_layout
18807
18808 \end_inset
18809
18810
18811 \end_layout
18812
18813 \begin_layout Standard
18814 Anstelle der Stilbefehle kann man auch den Dialog 
18815 \family sans
18816 Bearbeiten\SpecialChar \menuseparator
18817 Mathe\SpecialChar \menuseparator
18818 Text-Stil
18819 \family default
18820  oder den Mathe-Werkzeugleistenknopf 
18821 \begin_inset Graphics
18822         filename ../../images/math/font.png
18823         scale 85
18824
18825 \end_inset
18826
18827  verwenden.
18828 \end_layout
18829
18830 \begin_layout Subsection
18831 Fett gedruckte Formeln
18832 \begin_inset CommandInset label
18833 LatexCommand label
18834 name "sub:Fett-gedruckte-Formeln"
18835
18836 \end_inset
18837
18838
18839 \begin_inset Index idx
18840 status collapsed
18841
18842 \begin_layout Plain Layout
18843 Formel ! fett gedruckte
18844 \end_layout
18845
18846 \end_inset
18847
18848
18849 \end_layout
18850
18851 \begin_layout Standard
18852 Möchte man komplette Formeln fett setzen, kann man nicht den im vorigen
18853  Kapitel angegebenen Befehl 
18854 \series bold
18855
18856 \backslash
18857 mathbf
18858 \series default
18859  verwenden, denn dieser wirkt nicht auf kleine griechische Buchstaben.
18860  Außerdem setzt er lateinische Buchstaben immer aufrecht, was man an folgender
18861  Formel gut erkennt:
18862 \end_layout
18863
18864 \begin_layout Standard
18865 \begin_inset Formula 
18866 \[
18867 \mathbf{\int_{n}^{2}f(\theta)=\Gamma}\qquad\textrm{Formel mit \textbackslash mathbf}
18868 \]
18869
18870 \end_inset
18871
18872
18873 \end_layout
18874
18875 \begin_layout Standard
18876 Um die Formel korrekt darzustellen, verwendet man den Befehl 
18877 \series bold
18878
18879 \backslash
18880 boldsymbol
18881 \series default
18882 :
18883 \begin_inset Formula 
18884 \[
18885 \boldsymbol{\int_{n}^{2}f(\theta)=\Gamma\qquad\textrm{Formel mit \textbackslash boldsymbol}}
18886 \]
18887
18888 \end_inset
18889
18890 Es gibt auch die Möglichkeit die Formel in eine 
18891 \series bold
18892 boldmath-Umgebung
18893 \series default
18894  zu setzen.
18895  Diese Umgebung wird erzeugt, indem man im TeX-Modus den Befehl 
18896 \series bold
18897
18898 \backslash
18899 boldmath
18900 \series default
18901
18902 \begin_inset Index idx
18903 status collapsed
18904
18905 \begin_layout Plain Layout
18906 Befehle ! B ! 
18907 \backslash
18908 boldmath
18909 \end_layout
18910
18911 \end_inset
18912
18913  eingibt.
18914  Um die Umgebung wieder zu beenden, gibt man im TeX-Modus den Befehl 
18915 \series bold
18916
18917 \backslash
18918 unboldmath
18919 \series default
18920
18921 \begin_inset Index idx
18922 status collapsed
18923
18924 \begin_layout Plain Layout
18925 Befehle ! U ! 
18926 \backslash
18927 unboldmath
18928 \end_layout
18929
18930 \end_inset
18931
18932  ein.
18933 \begin_inset ERT
18934 status collapsed
18935
18936 \begin_layout Plain Layout
18937
18938
18939 \backslash
18940 boldmath 
18941 \end_layout
18942
18943 \end_inset
18944
18945
18946 \begin_inset Formula 
18947 \[
18948 \int_{n}^{2}f(\theta)=\Gamma\qquad\textrm{Formel in boldmath-Umgebung}
18949 \]
18950
18951 \end_inset
18952
18953
18954 \begin_inset ERT
18955 status collapsed
18956
18957 \begin_layout Plain Layout
18958
18959
18960 \backslash
18961 unboldmath 
18962 \end_layout
18963
18964 \end_inset
18965
18966
18967 \end_layout
18968
18969 \begin_layout Subsection
18970 Farbige Formeln
18971 \begin_inset Index idx
18972 status collapsed
18973
18974 \begin_layout Plain Layout
18975 Formel ! farbige
18976 \end_layout
18977
18978 \end_inset
18979
18980
18981 \end_layout
18982
18983 \begin_layout Standard
18984 Formeln können wie normaler Text gefärbt werden: Markieren Sie eine Formel
18985  oder Formelteile und verwenden dann den 
18986 \family sans
18987 Textstil
18988 \family default
18989  Dialog.
18990  Hier ist eine Formel in Magenta:
18991 \begin_inset Formula 
18992 \[
18993 {\color{magenta}\int A\,\mathrm{d}x=\frac{\sqrt[5]{B}}{\ln\left(\frac{1}{3}\right)}}
18994 \]
18995
18996 \end_inset
18997
18998
18999 \end_layout
19000
19001 \begin_layout Standard
19002 Man kann auch eigene Farben definieren, wie in 
19003 \begin_inset CommandInset ref
19004 LatexCommand ref
19005 reference "sub:Farbige-Boxen"
19006
19007 \end_inset
19008
19009  erklärt ist.
19010  Diese können dann mit dem TeX-Code Befehl 
19011 \series bold
19012
19013 \backslash
19014 textcolor
19015 \series default
19016
19017 \begin_inset Index idx
19018 status collapsed
19019
19020 \begin_layout Plain Layout
19021 Befehle! T ! 
19022 \backslash
19023 textcolor
19024 \end_layout
19025
19026 \end_inset
19027
19028  verwendet werden, dass folgendes Schema besitzt:
19029 \end_layout
19030
19031 \begin_layout Standard
19032
19033 \series bold
19034
19035 \backslash
19036 textcolor{Farbe}{Zeichen oder Formel}
19037 \end_layout
19038
19039 \begin_layout Standard
19040 Das folgende Beispiel wurde komplett dunkelgrün und teilweise rot eingefärbt:
19041 \end_layout
19042
19043 \begin_layout Standard
19044 \begin_inset ERT
19045 status collapsed
19046
19047 \begin_layout Plain Layout
19048
19049
19050 \backslash
19051 textcolor{dunkelgruen}{
19052 \end_layout
19053
19054 \end_inset
19055
19056
19057 \begin_inset Formula 
19058 \[
19059 \int A\,\mathrm{d}x=\frac{{\color{red}\sqrt[5]{B}}}{\ln\left(\frac{1}{3}\right)}
19060 \]
19061
19062 \end_inset
19063
19064
19065 \begin_inset ERT
19066 status collapsed
19067
19068 \begin_layout Plain Layout
19069
19070 }
19071 \end_layout
19072
19073 \end_inset
19074
19075
19076 \end_layout
19077
19078 \begin_layout Standard
19079 Aufgrund eines Fehlers in LyX können nur komplette Formeln mit selbst definierte
19080 n Farben gefärbt werden.
19081 \begin_inset Foot
19082 status collapsed
19083
19084 \begin_layout Plain Layout
19085 \begin_inset CommandInset href
19086 LatexCommand href
19087 name "LyX-bug #5269"
19088 target "http://www.lyx.org/trac/ticket/5269"
19089
19090 \end_inset
19091
19092
19093 \end_layout
19094
19095 \end_inset
19096
19097
19098 \end_layout
19099
19100 \begin_layout Subsection
19101 Schriftgrößen
19102 \begin_inset CommandInset label
19103 LatexCommand label
19104 name "sub:Schriftgrößen"
19105
19106 \end_inset
19107
19108
19109 \begin_inset Index idx
19110 status collapsed
19111
19112 \begin_layout Plain Layout
19113 Schriften ! Schriftgrößen
19114 \end_layout
19115
19116 \end_inset
19117
19118
19119 \end_layout
19120
19121 \begin_layout Standard
19122 Für Zeichen in einer Formel gibt es, analog zu Textzeichen, folgende Größenbefeh
19123 le:
19124 \end_layout
19125
19126 \begin_layout Standard
19127
19128 \series bold
19129
19130 \backslash
19131 Huge
19132 \series default
19133
19134 \series bold
19135
19136 \backslash
19137 huge
19138 \series default
19139
19140 \series bold
19141
19142 \backslash
19143 LARGE
19144 \series default
19145
19146 \series bold
19147
19148 \backslash
19149 Large
19150 \series default
19151
19152 \series bold
19153
19154 \backslash
19155 large
19156 \series default
19157
19158 \series bold
19159
19160 \backslash
19161 normalsize
19162 \series default
19163
19164 \series bold
19165
19166 \backslash
19167 small
19168 \series default
19169
19170 \series bold
19171
19172 \backslash
19173 footnotesize
19174 \series default
19175 ,
19176 \begin_inset Newline linebreak
19177 \end_inset
19178
19179
19180 \series bold
19181
19182 \backslash
19183 scriptsize
19184 \series default
19185  und 
19186 \series bold
19187
19188 \backslash
19189 tiny
19190 \end_layout
19191
19192 \begin_layout Standard
19193 Welche Größe die Befehle produzieren, hängt von der Dokumentschriftgröße
19194  ab, die dem Befehl 
19195 \series bold
19196
19197 \backslash
19198 normalsize
19199 \series default
19200  entspricht.
19201  Die anderen Befehle produzieren kleinere oder größere Schriften als 
19202 \series bold
19203
19204 \backslash
19205 normalsize
19206 \series default
19207 .
19208  Die Schriftgröße kann jedoch einen bestimmten Wert nicht übertreffen.
19209  Beträgt z.
19210 \begin_inset space \thinspace{}
19211 \end_inset
19212
19213 B.
19214  die Dokumentschriftgröße 12
19215 \begin_inset space \thinspace{}
19216 \end_inset
19217
19218 pt, produziert der Befehl 
19219 \series bold
19220
19221 \backslash
19222 Huge
19223 \series default
19224  dasselbe wie 
19225 \series bold
19226
19227 \backslash
19228 huge
19229 \series default
19230 .
19231  
19232 \end_layout
19233
19234 \begin_layout Standard
19235 Ein Größenbefehl wird im TeX-Modus vor der Formel eingegeben und legt die
19236  Größe aller nachfolgenden Formel- und Textzeichen fest.
19237  Um wieder zur Ausgangsgröße zurückzukehren, gibt man nach der Formel im
19238  TeX-Modus den Befehl 
19239 \series bold
19240
19241 \backslash
19242 normalsize
19243 \series default
19244  ein.
19245 \end_layout
19246
19247 \begin_layout Standard
19248 Innerhalb einer Formel kann die Größe mit den folgenden Größenbefehlen geändert
19249  werden:
19250 \end_layout
19251
19252 \begin_layout Standard
19253 \noindent
19254 \align center
19255 \begin_inset Tabular
19256 <lyxtabular version="3" rows="5" columns="2">
19257 <features tabularvalignment="middle">
19258 <column alignment="center" valignment="top" width="0">
19259 <column alignment="center" valignment="top" width="0">
19260 <row>
19261 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
19262 \begin_inset Text
19263
19264 \begin_layout Plain Layout
19265 Befehl
19266 \end_layout
19267
19268 \end_inset
19269 </cell>
19270 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
19271 \begin_inset Text
19272
19273 \begin_layout Plain Layout
19274 Ergebnis
19275 \begin_inset Note Note
19276 status collapsed
19277
19278 \begin_layout Plain Layout
19279
19280 \series bold
19281
19282 \backslash
19283 raisebox
19284 \series default
19285  dient nur als Abstandhalter.
19286 \end_layout
19287
19288 \end_inset
19289
19290
19291 \end_layout
19292
19293 \end_inset
19294 </cell>
19295 </row>
19296 <row>
19297 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19298 \begin_inset Text
19299
19300 \begin_layout Plain Layout
19301
19302 \backslash
19303 displaystyle
19304 \begin_inset Index idx
19305 status collapsed
19306
19307 \begin_layout Plain Layout
19308 Befehle ! D ! 
19309 \backslash
19310 displaystyle
19311 \end_layout
19312
19313 \end_inset
19314
19315
19316 \end_layout
19317
19318 \end_inset
19319 </cell>
19320 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19321 \begin_inset Text
19322
19323 \begin_layout Plain Layout
19324 \begin_inset Formula $\raisebox{6.5mm}{}{\displaystyle E_{\mathrm{pot_{1}}}=\frac{K}{l+\frac{m}{n_{2}}}}\raisebox{-5.5mm}{}$
19325 \end_inset
19326
19327
19328 \end_layout
19329
19330 \end_inset
19331 </cell>
19332 </row>
19333 <row>
19334 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19335 \begin_inset Text
19336
19337 \begin_layout Plain Layout
19338
19339 \backslash
19340 textstyle
19341 \end_layout
19342
19343 \end_inset
19344 </cell>
19345 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19346 \begin_inset Text
19347
19348 \begin_layout Plain Layout
19349 \begin_inset Formula $\raisebox{4.5mm}{}{\textstyle E_{\mathrm{pot_{1}}}=\frac{K}{l+\frac{m}{n_{2}}}}\raisebox{-4mm}{}$
19350 \end_inset
19351
19352
19353 \end_layout
19354
19355 \end_inset
19356 </cell>
19357 </row>
19358 <row>
19359 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19360 \begin_inset Text
19361
19362 \begin_layout Plain Layout
19363
19364 \backslash
19365 scriptstyle
19366 \end_layout
19367
19368 \end_inset
19369 </cell>
19370 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19371 \begin_inset Text
19372
19373 \begin_layout Plain Layout
19374 \begin_inset Formula $\raisebox{4.5mm}{}{\scriptstyle E_{\mathrm{pot_{1}}}=\frac{K}{l+\frac{m}{n_{2}}}}\raisebox{-3.5mm}{}$
19375 \end_inset
19376
19377
19378 \end_layout
19379
19380 \end_inset
19381 </cell>
19382 </row>
19383 <row>
19384 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
19385 \begin_inset Text
19386
19387 \begin_layout Plain Layout
19388
19389 \backslash
19390 scriptscriptstyle
19391 \end_layout
19392
19393 \end_inset
19394 </cell>
19395 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
19396 \begin_inset Text
19397
19398 \begin_layout Plain Layout
19399 \begin_inset Formula $\raisebox{4.5mm}{}{\scriptscriptstyle E_{\mathrm{pot_{1}}}=\frac{K}{l+\frac{m}{n_{2}}}}\raisebox{-3.5mm}{}$
19400 \end_inset
19401
19402
19403 \end_layout
19404
19405 \end_inset
19406 </cell>
19407 </row>
19408 </lyxtabular>
19409
19410 \end_inset
19411
19412
19413 \end_layout
19414
19415 \begin_layout Standard
19416 Nachdem diese Befehle eingegeben wurden, erscheint eine blaues Kästchen
19417  in das die Formelteile eingegeben werden.
19418 \end_layout
19419
19420 \begin_layout Standard
19421 Es gibt eine weitere Möglichkeit die Schriftgröße zu ändern, die allerdings
19422  nur für Symbole oder Buchstaben im mathematischen Text funktioniert.
19423  Dazu wird einer der obigen Textgrößenbefehle im mathematischen Textmodus
19424  eingegeben.
19425  Alle diesem Befehl folgenden Zeichen bis zum Ende des mathematischen Textes
19426  oder bis zu einem anderen Größenbefehl haben dann die angegebene Größe.
19427  Dazu zwei Beispiele:
19428 \begin_inset VSpace -2mm
19429 \end_inset
19430
19431
19432 \end_layout
19433
19434 \begin_layout Standard
19435 \begin_inset ERT
19436 status collapsed
19437
19438 \begin_layout Plain Layout
19439
19440
19441 \backslash
19442 huge 
19443 \end_layout
19444
19445 \end_inset
19446
19447
19448 \begin_inset Formula 
19449 \[
19450 A=\frac{B}{c}\cdot\maltese
19451 \]
19452
19453 \end_inset
19454
19455
19456 \begin_inset Formula 
19457 \[
19458 \maltese A\textrm{\Large\maltese\textit{A}}\textrm{\tiny\maltese\textit{A}}
19459 \]
19460
19461 \end_inset
19462
19463
19464 \begin_inset ERT
19465 status collapsed
19466
19467 \begin_layout Plain Layout
19468
19469
19470 \backslash
19471 normalsize 
19472 \end_layout
19473
19474 \end_inset
19475
19476
19477 \end_layout
19478
19479 \begin_layout Standard
19480 \begin_inset VSpace medskip
19481 \end_inset
19482
19483 Vor beiden Formeln wurde der Befehl 
19484 \series bold
19485
19486 \backslash
19487 huge
19488 \series default
19489  eingegeben.
19490  Der Befehl für die zweite Formel lautet:
19491 \begin_inset Newline newline
19492 \end_inset
19493
19494
19495 \series bold
19496
19497 \backslash
19498 maltese
19499 \begin_inset ERT
19500 status collapsed
19501
19502 \begin_layout Plain Layout
19503
19504
19505 \backslash
19506 leer 
19507 \end_layout
19508
19509 \end_inset
19510
19511 A M-m m 
19512 \backslash
19513 Large
19514 \begin_inset ERT
19515 status collapsed
19516
19517 \begin_layout Plain Layout
19518
19519
19520 \backslash
19521 leer 
19522 \end_layout
19523
19524 \end_inset
19525
19526
19527 \backslash
19528 maltese
19529 \begin_inset ERT
19530 status collapsed
19531
19532 \begin_layout Plain Layout
19533
19534
19535 \backslash
19536 leer 
19537 \end_layout
19538
19539 \end_inset
19540
19541
19542 \backslash
19543 textit
19544 \begin_inset ERT
19545 status collapsed
19546
19547 \begin_layout Plain Layout
19548
19549
19550 \backslash
19551 leer 
19552 \end_layout
19553
19554 \end_inset
19555
19556 A
19557 \begin_inset Formula $\to$
19558 \end_inset
19559
19560
19561 \begin_inset Formula $\to$
19562 \end_inset
19563
19564
19565 \begin_inset Newline newline
19566 \end_inset
19567
19568
19569 \begin_inset space \hspace*{}
19570 \length 1cm
19571 \end_inset
19572
19573 M-m
19574 \series default
19575  
19576 \series bold
19577
19578 \backslash
19579 tiny
19580 \begin_inset ERT
19581 status collapsed
19582
19583 \begin_layout Plain Layout
19584
19585
19586 \backslash
19587 leer 
19588 \end_layout
19589
19590 \end_inset
19591
19592
19593 \backslash
19594 maltese
19595 \begin_inset ERT
19596 status collapsed
19597
19598 \begin_layout Plain Layout
19599
19600
19601 \backslash
19602 leer 
19603 \end_layout
19604
19605 \end_inset
19606
19607
19608 \backslash
19609 textit
19610 \begin_inset ERT
19611 status collapsed
19612
19613 \begin_layout Plain Layout
19614
19615
19616 \backslash
19617 leer 
19618 \end_layout
19619
19620 \end_inset
19621
19622 A
19623 \end_layout
19624
19625 \begin_layout Standard
19626 Kann ein Symbol nicht in verschiedenen Größen dargestellt werden, wird es
19627  immer in der Standardgröße dargestellt.
19628 \end_layout
19629
19630 \begin_layout Section
19631 Griechische Buchstaben
19632 \begin_inset Index idx
19633 status collapsed
19634
19635 \begin_layout Plain Layout
19636 griechische Buchstaben
19637 \end_layout
19638
19639 \end_inset
19640
19641
19642 \end_layout
19643
19644 \begin_layout Standard
19645 Griechischen Buchstaben können auch über den Mathe-Werkzeugleistenknopf
19646  
19647 \begin_inset Graphics
19648         filename ../../images/math/alpha.png
19649         scale 85
19650
19651 \end_inset
19652
19653  eingefügt werden.
19654  Alle internationalen Schriftsatz-Normen geben vor, dass griechische Buchstaben
19655  in Formeln aufrecht gesetzt werden.
19656  In einigen Sprachen, wie z.
19657 \begin_inset space \thinspace{}
19658 \end_inset
19659
19660 B: Französisch oder Russisch, werden sie dennoch manchmal aufrecht gesetzt.
19661 \end_layout
19662
19663 \begin_layout Subsection
19664 Kleine Buchstaben
19665 \begin_inset Index idx
19666 status collapsed
19667
19668 \begin_layout Plain Layout
19669 griechische Buchstaben ! kleine
19670 \end_layout
19671
19672 \end_inset
19673
19674
19675 \end_layout
19676
19677 \begin_layout Standard
19678 \begin_inset space \hfill{}
19679 \end_inset
19680
19681
19682 \begin_inset Tabular
19683 <lyxtabular version="3" rows="11" columns="2">
19684 <features tabularvalignment="middle">
19685 <column alignment="center" valignment="top" width="0pt">
19686 <column alignment="center" valignment="top" width="0pt">
19687 <row>
19688 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
19689 \begin_inset Text
19690
19691 \begin_layout Plain Layout
19692 Befehl
19693 \end_layout
19694
19695 \end_inset
19696 </cell>
19697 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
19698 \begin_inset Text
19699
19700 \begin_layout Plain Layout
19701 Ergebnis
19702 \end_layout
19703
19704 \end_inset
19705 </cell>
19706 </row>
19707 <row>
19708 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19709 \begin_inset Text
19710
19711 \begin_layout Plain Layout
19712
19713 \backslash
19714 alpha
19715 \end_layout
19716
19717 \end_inset
19718 </cell>
19719 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19720 \begin_inset Text
19721
19722 \begin_layout Plain Layout
19723 \begin_inset Formula $\alpha$
19724 \end_inset
19725
19726
19727 \end_layout
19728
19729 \end_inset
19730 </cell>
19731 </row>
19732 <row>
19733 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19734 \begin_inset Text
19735
19736 \begin_layout Plain Layout
19737
19738 \backslash
19739 beta
19740 \end_layout
19741
19742 \end_inset
19743 </cell>
19744 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19745 \begin_inset Text
19746
19747 \begin_layout Plain Layout
19748 \begin_inset Formula $\beta$
19749 \end_inset
19750
19751
19752 \end_layout
19753
19754 \end_inset
19755 </cell>
19756 </row>
19757 <row>
19758 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19759 \begin_inset Text
19760
19761 \begin_layout Plain Layout
19762
19763 \backslash
19764 gamma
19765 \end_layout
19766
19767 \end_inset
19768 </cell>
19769 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19770 \begin_inset Text
19771
19772 \begin_layout Plain Layout
19773 \begin_inset Formula $\gamma$
19774 \end_inset
19775
19776
19777 \end_layout
19778
19779 \end_inset
19780 </cell>
19781 </row>
19782 <row>
19783 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19784 \begin_inset Text
19785
19786 \begin_layout Plain Layout
19787
19788 \backslash
19789 delta
19790 \end_layout
19791
19792 \end_inset
19793 </cell>
19794 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19795 \begin_inset Text
19796
19797 \begin_layout Plain Layout
19798 \begin_inset Formula $\delta$
19799 \end_inset
19800
19801
19802 \end_layout
19803
19804 \end_inset
19805 </cell>
19806 </row>
19807 <row>
19808 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19809 \begin_inset Text
19810
19811 \begin_layout Plain Layout
19812
19813 \backslash
19814 epsilon
19815 \end_layout
19816
19817 \end_inset
19818 </cell>
19819 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19820 \begin_inset Text
19821
19822 \begin_layout Plain Layout
19823 \begin_inset Formula $\epsilon$
19824 \end_inset
19825
19826
19827 \end_layout
19828
19829 \end_inset
19830 </cell>
19831 </row>
19832 <row>
19833 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19834 \begin_inset Text
19835
19836 \begin_layout Plain Layout
19837
19838 \backslash
19839 varepsilon
19840 \end_layout
19841
19842 \end_inset
19843 </cell>
19844 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19845 \begin_inset Text
19846
19847 \begin_layout Plain Layout
19848 \begin_inset Formula $\varepsilon$
19849 \end_inset
19850
19851
19852 \end_layout
19853
19854 \end_inset
19855 </cell>
19856 </row>
19857 <row>
19858 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19859 \begin_inset Text
19860
19861 \begin_layout Plain Layout
19862
19863 \backslash
19864 zeta
19865 \end_layout
19866
19867 \end_inset
19868 </cell>
19869 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19870 \begin_inset Text
19871
19872 \begin_layout Plain Layout
19873 \begin_inset Formula $\zeta$
19874 \end_inset
19875
19876
19877 \end_layout
19878
19879 \end_inset
19880 </cell>
19881 </row>
19882 <row>
19883 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19884 \begin_inset Text
19885
19886 \begin_layout Plain Layout
19887
19888 \backslash
19889 eta
19890 \end_layout
19891
19892 \end_inset
19893 </cell>
19894 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19895 \begin_inset Text
19896
19897 \begin_layout Plain Layout
19898 \begin_inset Formula $\eta$
19899 \end_inset
19900
19901
19902 \end_layout
19903
19904 \end_inset
19905 </cell>
19906 </row>
19907 <row>
19908 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19909 \begin_inset Text
19910
19911 \begin_layout Plain Layout
19912
19913 \backslash
19914 theta
19915 \end_layout
19916
19917 \end_inset
19918 </cell>
19919 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
19920 \begin_inset Text
19921
19922 \begin_layout Plain Layout
19923 \begin_inset Formula $\theta$
19924 \end_inset
19925
19926
19927 \end_layout
19928
19929 \end_inset
19930 </cell>
19931 </row>
19932 <row>
19933 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
19934 \begin_inset Text
19935
19936 \begin_layout Plain Layout
19937
19938 \backslash
19939 vartheta
19940 \end_layout
19941
19942 \end_inset
19943 </cell>
19944 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
19945 \begin_inset Text
19946
19947 \begin_layout Plain Layout
19948 \begin_inset Formula $\vartheta$
19949 \end_inset
19950
19951
19952 \end_layout
19953
19954 \end_inset
19955 </cell>
19956 </row>
19957 </lyxtabular>
19958
19959 \end_inset
19960
19961
19962 \begin_inset space \hfill{}
19963 \end_inset
19964
19965
19966 \begin_inset Tabular
19967 <lyxtabular version="3" rows="12" columns="2">
19968 <features tabularvalignment="middle">
19969 <column alignment="center" valignment="top" width="0pt">
19970 <column alignment="center" valignment="top" width="0pt">
19971 <row>
19972 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
19973 \begin_inset Text
19974
19975 \begin_layout Plain Layout
19976 Befehl
19977 \end_layout
19978
19979 \end_inset
19980 </cell>
19981 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
19982 \begin_inset Text
19983
19984 \begin_layout Plain Layout
19985 Ergebnis
19986 \end_layout
19987
19988 \end_inset
19989 </cell>
19990 </row>
19991 <row>
19992 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
19993 \begin_inset Text
19994
19995 \begin_layout Plain Layout
19996
19997 \backslash
19998 iota
19999 \end_layout
20000
20001 \end_inset
20002 </cell>
20003 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20004 \begin_inset Text
20005
20006 \begin_layout Plain Layout
20007 \begin_inset Formula $\iota$
20008 \end_inset
20009
20010
20011 \end_layout
20012
20013 \end_inset
20014 </cell>
20015 </row>
20016 <row>
20017 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20018 \begin_inset Text
20019
20020 \begin_layout Plain Layout
20021
20022 \backslash
20023 kappa
20024 \end_layout
20025
20026 \end_inset
20027 </cell>
20028 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20029 \begin_inset Text
20030
20031 \begin_layout Plain Layout
20032 \begin_inset Formula $\kappa$
20033 \end_inset
20034
20035
20036 \end_layout
20037
20038 \end_inset
20039 </cell>
20040 </row>
20041 <row>
20042 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20043 \begin_inset Text
20044
20045 \begin_layout Plain Layout
20046
20047 \backslash
20048 varkappa
20049 \end_layout
20050
20051 \end_inset
20052 </cell>
20053 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20054 \begin_inset Text
20055
20056 \begin_layout Plain Layout
20057 \begin_inset Formula $\varkappa$
20058 \end_inset
20059
20060
20061 \end_layout
20062
20063 \end_inset
20064 </cell>
20065 </row>
20066 <row>
20067 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20068 \begin_inset Text
20069
20070 \begin_layout Plain Layout
20071
20072 \backslash
20073 lambda
20074 \end_layout
20075
20076 \end_inset
20077 </cell>
20078 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20079 \begin_inset Text
20080
20081 \begin_layout Plain Layout
20082 \begin_inset Formula $\lambda$
20083 \end_inset
20084
20085
20086 \end_layout
20087
20088 \end_inset
20089 </cell>
20090 </row>
20091 <row>
20092 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20093 \begin_inset Text
20094
20095 \begin_layout Plain Layout
20096
20097 \backslash
20098 mu
20099 \end_layout
20100
20101 \end_inset
20102 </cell>
20103 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20104 \begin_inset Text
20105
20106 \begin_layout Plain Layout
20107 \begin_inset Formula $\mu$
20108 \end_inset
20109
20110
20111 \end_layout
20112
20113 \end_inset
20114 </cell>
20115 </row>
20116 <row>
20117 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20118 \begin_inset Text
20119
20120 \begin_layout Plain Layout
20121
20122 \backslash
20123 nu
20124 \end_layout
20125
20126 \end_inset
20127 </cell>
20128 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20129 \begin_inset Text
20130
20131 \begin_layout Plain Layout
20132 \begin_inset Formula $\nu$
20133 \end_inset
20134
20135
20136 \end_layout
20137
20138 \end_inset
20139 </cell>
20140 </row>
20141 <row>
20142 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20143 \begin_inset Text
20144
20145 \begin_layout Plain Layout
20146
20147 \backslash
20148 xi
20149 \end_layout
20150
20151 \end_inset
20152 </cell>
20153 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20154 \begin_inset Text
20155
20156 \begin_layout Plain Layout
20157 \begin_inset Formula $\xi$
20158 \end_inset
20159
20160
20161 \end_layout
20162
20163 \end_inset
20164 </cell>
20165 </row>
20166 <row>
20167 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20168 \begin_inset Text
20169
20170 \begin_layout Plain Layout
20171 o
20172 \end_layout
20173
20174 \end_inset
20175 </cell>
20176 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20177 \begin_inset Text
20178
20179 \begin_layout Plain Layout
20180 \begin_inset Formula $o$
20181 \end_inset
20182
20183
20184 \end_layout
20185
20186 \end_inset
20187 </cell>
20188 </row>
20189 <row>
20190 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20191 \begin_inset Text
20192
20193 \begin_layout Plain Layout
20194
20195 \backslash
20196 pi
20197 \end_layout
20198
20199 \end_inset
20200 </cell>
20201 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20202 \begin_inset Text
20203
20204 \begin_layout Plain Layout
20205 \begin_inset Formula $\pi$
20206 \end_inset
20207
20208
20209 \end_layout
20210
20211 \end_inset
20212 </cell>
20213 </row>
20214 <row>
20215 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20216 \begin_inset Text
20217
20218 \begin_layout Plain Layout
20219
20220 \backslash
20221 varpi
20222 \end_layout
20223
20224 \end_inset
20225 </cell>
20226 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20227 \begin_inset Text
20228
20229 \begin_layout Plain Layout
20230 \begin_inset Formula $\varpi$
20231 \end_inset
20232
20233
20234 \end_layout
20235
20236 \end_inset
20237 </cell>
20238 </row>
20239 <row>
20240 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
20241 \begin_inset Text
20242
20243 \begin_layout Plain Layout
20244
20245 \backslash
20246 rho
20247 \end_layout
20248
20249 \end_inset
20250 </cell>
20251 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
20252 \begin_inset Text
20253
20254 \begin_layout Plain Layout
20255 \begin_inset Formula $\rho$
20256 \end_inset
20257
20258
20259 \end_layout
20260
20261 \end_inset
20262 </cell>
20263 </row>
20264 </lyxtabular>
20265
20266 \end_inset
20267
20268
20269 \begin_inset space \hfill{}
20270 \end_inset
20271
20272
20273 \begin_inset Tabular
20274 <lyxtabular version="3" rows="11" columns="2">
20275 <features tabularvalignment="middle">
20276 <column alignment="center" valignment="top" width="0pt">
20277 <column alignment="center" valignment="top" width="0pt">
20278 <row>
20279 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
20280 \begin_inset Text
20281
20282 \begin_layout Plain Layout
20283 Befehl
20284 \end_layout
20285
20286 \end_inset
20287 </cell>
20288 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
20289 \begin_inset Text
20290
20291 \begin_layout Plain Layout
20292 Ergebnis
20293 \end_layout
20294
20295 \end_inset
20296 </cell>
20297 </row>
20298 <row>
20299 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20300 \begin_inset Text
20301
20302 \begin_layout Plain Layout
20303
20304 \backslash
20305 varrho
20306 \end_layout
20307
20308 \end_inset
20309 </cell>
20310 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20311 \begin_inset Text
20312
20313 \begin_layout Plain Layout
20314 \begin_inset Formula $\varrho$
20315 \end_inset
20316
20317
20318 \end_layout
20319
20320 \end_inset
20321 </cell>
20322 </row>
20323 <row>
20324 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20325 \begin_inset Text
20326
20327 \begin_layout Plain Layout
20328
20329 \backslash
20330 sigma
20331 \end_layout
20332
20333 \end_inset
20334 </cell>
20335 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20336 \begin_inset Text
20337
20338 \begin_layout Plain Layout
20339 \begin_inset Formula $\sigma$
20340 \end_inset
20341
20342
20343 \end_layout
20344
20345 \end_inset
20346 </cell>
20347 </row>
20348 <row>
20349 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20350 \begin_inset Text
20351
20352 \begin_layout Plain Layout
20353
20354 \backslash
20355 varsigma
20356 \end_layout
20357
20358 \end_inset
20359 </cell>
20360 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20361 \begin_inset Text
20362
20363 \begin_layout Plain Layout
20364 \begin_inset Formula $\varsigma$
20365 \end_inset
20366
20367
20368 \end_layout
20369
20370 \end_inset
20371 </cell>
20372 </row>
20373 <row>
20374 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20375 \begin_inset Text
20376
20377 \begin_layout Plain Layout
20378
20379 \backslash
20380 tau
20381 \end_layout
20382
20383 \end_inset
20384 </cell>
20385 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20386 \begin_inset Text
20387
20388 \begin_layout Plain Layout
20389 \begin_inset Formula $\tau$
20390 \end_inset
20391
20392
20393 \end_layout
20394
20395 \end_inset
20396 </cell>
20397 </row>
20398 <row>
20399 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20400 \begin_inset Text
20401
20402 \begin_layout Plain Layout
20403
20404 \backslash
20405 upsilon
20406 \end_layout
20407
20408 \end_inset
20409 </cell>
20410 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20411 \begin_inset Text
20412
20413 \begin_layout Plain Layout
20414 \begin_inset Formula $\upsilon$
20415 \end_inset
20416
20417
20418 \end_layout
20419
20420 \end_inset
20421 </cell>
20422 </row>
20423 <row>
20424 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20425 \begin_inset Text
20426
20427 \begin_layout Plain Layout
20428
20429 \backslash
20430 phi
20431 \end_layout
20432
20433 \end_inset
20434 </cell>
20435 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20436 \begin_inset Text
20437
20438 \begin_layout Plain Layout
20439 \begin_inset Formula $\phi$
20440 \end_inset
20441
20442
20443 \end_layout
20444
20445 \end_inset
20446 </cell>
20447 </row>
20448 <row>
20449 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20450 \begin_inset Text
20451
20452 \begin_layout Plain Layout
20453
20454 \backslash
20455 varphi
20456 \end_layout
20457
20458 \end_inset
20459 </cell>
20460 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20461 \begin_inset Text
20462
20463 \begin_layout Plain Layout
20464 \begin_inset Formula $\varphi$
20465 \end_inset
20466
20467
20468 \end_layout
20469
20470 \end_inset
20471 </cell>
20472 </row>
20473 <row>
20474 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20475 \begin_inset Text
20476
20477 \begin_layout Plain Layout
20478
20479 \backslash
20480 chi
20481 \end_layout
20482
20483 \end_inset
20484 </cell>
20485 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20486 \begin_inset Text
20487
20488 \begin_layout Plain Layout
20489 \begin_inset Formula $\chi$
20490 \end_inset
20491
20492
20493 \end_layout
20494
20495 \end_inset
20496 </cell>
20497 </row>
20498 <row>
20499 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20500 \begin_inset Text
20501
20502 \begin_layout Plain Layout
20503
20504 \backslash
20505 psi
20506 \end_layout
20507
20508 \end_inset
20509 </cell>
20510 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20511 \begin_inset Text
20512
20513 \begin_layout Plain Layout
20514 \begin_inset Formula $\psi$
20515 \end_inset
20516
20517
20518 \end_layout
20519
20520 \end_inset
20521 </cell>
20522 </row>
20523 <row>
20524 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
20525 \begin_inset Text
20526
20527 \begin_layout Plain Layout
20528
20529 \backslash
20530 omega
20531 \end_layout
20532
20533 \end_inset
20534 </cell>
20535 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
20536 \begin_inset Text
20537
20538 \begin_layout Plain Layout
20539 \begin_inset Formula $\omega$
20540 \end_inset
20541
20542
20543 \end_layout
20544
20545 \end_inset
20546 </cell>
20547 </row>
20548 </lyxtabular>
20549
20550 \end_inset
20551
20552
20553 \begin_inset space \hfill{}
20554 \end_inset
20555
20556
20557 \end_layout
20558
20559 \begin_layout Standard
20560 \begin_inset VSpace medskip
20561 \end_inset
20562
20563 Wie man spezielle, aufrechte griechische Buchstaben erstellt, ist in 
20564 \begin_inset CommandInset ref
20565 LatexCommand ref
20566 reference "sub:Aufrechte-kleine-griechische"
20567
20568 \end_inset
20569
20570  beschrieben.
20571 \end_layout
20572
20573 \begin_layout Subsection
20574 Große Buchstaben
20575 \begin_inset Index idx
20576 status collapsed
20577
20578 \begin_layout Plain Layout
20579 griechische Buchstaben ! große
20580 \end_layout
20581
20582 \end_inset
20583
20584
20585 \end_layout
20586
20587 \begin_layout Standard
20588 \begin_inset space \hfill{}
20589 \end_inset
20590
20591
20592 \begin_inset Tabular
20593 <lyxtabular version="3" rows="7" columns="2">
20594 <features tabularvalignment="middle">
20595 <column alignment="center" valignment="top" width="0pt">
20596 <column alignment="center" valignment="top" width="0pt">
20597 <row>
20598 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
20599 \begin_inset Text
20600
20601 \begin_layout Plain Layout
20602 Befehl
20603 \end_layout
20604
20605 \end_inset
20606 </cell>
20607 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
20608 \begin_inset Text
20609
20610 \begin_layout Plain Layout
20611 Ergebnis
20612 \end_layout
20613
20614 \end_inset
20615 </cell>
20616 </row>
20617 <row>
20618 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20619 \begin_inset Text
20620
20621 \begin_layout Plain Layout
20622
20623 \backslash
20624 Gamma
20625 \end_layout
20626
20627 \end_inset
20628 </cell>
20629 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20630 \begin_inset Text
20631
20632 \begin_layout Plain Layout
20633 \begin_inset Formula $\Gamma$
20634 \end_inset
20635
20636
20637 \end_layout
20638
20639 \end_inset
20640 </cell>
20641 </row>
20642 <row>
20643 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20644 \begin_inset Text
20645
20646 \begin_layout Plain Layout
20647
20648 \backslash
20649 Delta
20650 \end_layout
20651
20652 \end_inset
20653 </cell>
20654 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20655 \begin_inset Text
20656
20657 \begin_layout Plain Layout
20658 \begin_inset Formula $\Delta$
20659 \end_inset
20660
20661
20662 \end_layout
20663
20664 \end_inset
20665 </cell>
20666 </row>
20667 <row>
20668 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20669 \begin_inset Text
20670
20671 \begin_layout Plain Layout
20672
20673 \backslash
20674 Theta
20675 \end_layout
20676
20677 \end_inset
20678 </cell>
20679 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20680 \begin_inset Text
20681
20682 \begin_layout Plain Layout
20683 \begin_inset Formula $\Theta$
20684 \end_inset
20685
20686
20687 \end_layout
20688
20689 \end_inset
20690 </cell>
20691 </row>
20692 <row>
20693 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20694 \begin_inset Text
20695
20696 \begin_layout Plain Layout
20697
20698 \backslash
20699 Lambda
20700 \end_layout
20701
20702 \end_inset
20703 </cell>
20704 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20705 \begin_inset Text
20706
20707 \begin_layout Plain Layout
20708 \begin_inset Formula $\Lambda$
20709 \end_inset
20710
20711
20712 \end_layout
20713
20714 \end_inset
20715 </cell>
20716 </row>
20717 <row>
20718 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20719 \begin_inset Text
20720
20721 \begin_layout Plain Layout
20722
20723 \backslash
20724 Xi
20725 \end_layout
20726
20727 \end_inset
20728 </cell>
20729 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20730 \begin_inset Text
20731
20732 \begin_layout Plain Layout
20733 \begin_inset Formula $\Xi$
20734 \end_inset
20735
20736
20737 \end_layout
20738
20739 \end_inset
20740 </cell>
20741 </row>
20742 <row>
20743 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
20744 \begin_inset Text
20745
20746 \begin_layout Plain Layout
20747
20748 \backslash
20749 Pi
20750 \end_layout
20751
20752 \end_inset
20753 </cell>
20754 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
20755 \begin_inset Text
20756
20757 \begin_layout Plain Layout
20758 \begin_inset Formula $\Pi$
20759 \end_inset
20760
20761
20762 \end_layout
20763
20764 \end_inset
20765 </cell>
20766 </row>
20767 </lyxtabular>
20768
20769 \end_inset
20770
20771
20772 \begin_inset space \hfill{}
20773 \end_inset
20774
20775
20776 \begin_inset Tabular
20777 <lyxtabular version="3" rows="6" columns="2">
20778 <features tabularvalignment="middle">
20779 <column alignment="center" valignment="top" width="0pt">
20780 <column alignment="center" valignment="top" width="0pt">
20781 <row>
20782 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
20783 \begin_inset Text
20784
20785 \begin_layout Plain Layout
20786 Befehl
20787 \end_layout
20788
20789 \end_inset
20790 </cell>
20791 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
20792 \begin_inset Text
20793
20794 \begin_layout Plain Layout
20795 Ergebnis
20796 \end_layout
20797
20798 \end_inset
20799 </cell>
20800 </row>
20801 <row>
20802 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20803 \begin_inset Text
20804
20805 \begin_layout Plain Layout
20806
20807 \backslash
20808 Sigma
20809 \end_layout
20810
20811 \end_inset
20812 </cell>
20813 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20814 \begin_inset Text
20815
20816 \begin_layout Plain Layout
20817 \begin_inset Formula $\Sigma$
20818 \end_inset
20819
20820
20821 \end_layout
20822
20823 \end_inset
20824 </cell>
20825 </row>
20826 <row>
20827 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20828 \begin_inset Text
20829
20830 \begin_layout Plain Layout
20831
20832 \backslash
20833 Upsilon
20834 \end_layout
20835
20836 \end_inset
20837 </cell>
20838 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20839 \begin_inset Text
20840
20841 \begin_layout Plain Layout
20842 \begin_inset Formula $\Upsilon$
20843 \end_inset
20844
20845
20846 \end_layout
20847
20848 \end_inset
20849 </cell>
20850 </row>
20851 <row>
20852 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20853 \begin_inset Text
20854
20855 \begin_layout Plain Layout
20856
20857 \backslash
20858 Phi
20859 \end_layout
20860
20861 \end_inset
20862 </cell>
20863 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20864 \begin_inset Text
20865
20866 \begin_layout Plain Layout
20867 \begin_inset Formula $\Phi$
20868 \end_inset
20869
20870
20871 \end_layout
20872
20873 \end_inset
20874 </cell>
20875 </row>
20876 <row>
20877 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
20878 \begin_inset Text
20879
20880 \begin_layout Plain Layout
20881
20882 \backslash
20883 Psi
20884 \end_layout
20885
20886 \end_inset
20887 </cell>
20888 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
20889 \begin_inset Text
20890
20891 \begin_layout Plain Layout
20892 \begin_inset Formula $\Psi$
20893 \end_inset
20894
20895
20896 \end_layout
20897
20898 \end_inset
20899 </cell>
20900 </row>
20901 <row>
20902 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
20903 \begin_inset Text
20904
20905 \begin_layout Plain Layout
20906
20907 \backslash
20908 Omega
20909 \end_layout
20910
20911 \end_inset
20912 </cell>
20913 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
20914 \begin_inset Text
20915
20916 \begin_layout Plain Layout
20917 \begin_inset Formula $\Omega$
20918 \end_inset
20919
20920
20921 \end_layout
20922
20923 \end_inset
20924 </cell>
20925 </row>
20926 </lyxtabular>
20927
20928 \end_inset
20929
20930
20931 \begin_inset space \hfill{}
20932 \end_inset
20933
20934
20935 \end_layout
20936
20937 \begin_layout Standard
20938 \begin_inset VSpace medskip
20939 \end_inset
20940
20941 Dass die großen griechischen Buchstaben aufrecht erscheinen, ist einem Fehler
20942  geschuldet, der während der Entwicklung von TeX gemacht wurde.
20943  Um korrekte kursive Großbuchstaben zu erhalten, beginnt man einen Befehl
20944  mit 
20945 \series bold
20946 var
20947 \series default
20948 .
20949  So ergibt z.
20950 \begin_inset space \thinspace{}
20951 \end_inset
20952
20953 B.
20954  der Befehl 
20955 \series bold
20956
20957 \backslash
20958 varGamma
20959 \series default
20960  
20961 \begin_inset Formula $\varGamma$
20962 \end_inset
20963
20964 .
20965  Eine andere Methode ist das Laden des Pakets 
20966 \series bold
20967 fixmath
20968 \series default
20969
20970 \begin_inset Foot
20971 status collapsed
20972
20973 \begin_layout Plain Layout
20974
20975 \series bold
20976 fixmath
20977 \series default
20978  ist Teil des LaTeX-Paketes 
20979 \series bold
20980 was
20981 \series default
20982
20983 \begin_inset Index idx
20984 status collapsed
20985
20986 \begin_layout Plain Layout
20987 Pakete ! was
20988 \begin_inset ERT
20989 status collapsed
20990
20991 \begin_layout Plain Layout
20992
20993
20994 \backslash
20995 vspace{4mm}
20996 \end_layout
20997
20998 \end_inset
20999
21000
21001 \end_layout
21002
21003 \end_inset
21004
21005 .
21006 \end_layout
21007
21008 \end_inset
21009
21010
21011 \begin_inset Index idx
21012 status collapsed
21013
21014 \begin_layout Plain Layout
21015 Pakete ! fixmath
21016 \end_layout
21017
21018 \end_inset
21019
21020  mit der LaTeX-Vorspannzeile
21021 \end_layout
21022
21023 \begin_layout Standard
21024
21025 \series bold
21026
21027 \backslash
21028 usepackage{fixmath}
21029 \end_layout
21030
21031 \begin_layout Standard
21032 Dann werden alle großen griechischen Buchstaben im Dokument automatisch
21033  kursiv ausgegeben.
21034 \end_layout
21035
21036 \begin_layout Subsection
21037 Fett gedruckte Buchstaben
21038 \begin_inset Index idx
21039 status collapsed
21040
21041 \begin_layout Plain Layout
21042 griechische Buchstaben ! fett gedruckte
21043 \end_layout
21044
21045 \end_inset
21046
21047
21048 \end_layout
21049
21050 \begin_layout Standard
21051 Griechische lassen sich nicht wie lateinische Buchstaben in verschiedenen
21052  Schriftstilen darstellen.
21053  Es besteht nur die Möglichkeit, sie mit dem Befehl 
21054 \series bold
21055
21056 \backslash
21057 boldsymbol
21058 \series default
21059
21060 \begin_inset Index idx
21061 status collapsed
21062
21063 \begin_layout Plain Layout
21064 Befehle ! B ! 
21065 \backslash
21066 boldsymbol
21067 \end_layout
21068
21069 \end_inset
21070
21071  fett gedruckt auszugeben.
21072 \end_layout
21073
21074 \begin_layout Standard
21075 \align center
21076 \begin_inset Tabular
21077 <lyxtabular version="3" rows="3" columns="2">
21078 <features tabularvalignment="middle">
21079 <column alignment="center" valignment="top" width="0">
21080 <column alignment="center" valignment="top" width="0">
21081 <row>
21082 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
21083 \begin_inset Text
21084
21085 \begin_layout Plain Layout
21086 Befehl
21087 \end_layout
21088
21089 \end_inset
21090 </cell>
21091 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
21092 \begin_inset Text
21093
21094 \begin_layout Plain Layout
21095 Ergebnis
21096 \end_layout
21097
21098 \end_inset
21099 </cell>
21100 </row>
21101 <row>
21102 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21103 \begin_inset Text
21104
21105 \begin_layout Plain Layout
21106
21107 \backslash
21108 Upsilon
21109 \backslash
21110 boldsymbol
21111 \backslash
21112 Upsilon
21113 \end_layout
21114
21115 \end_inset
21116 </cell>
21117 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21118 \begin_inset Text
21119
21120 \begin_layout Plain Layout
21121 \begin_inset Formula $\Upsilon\boldsymbol{\Upsilon}$
21122 \end_inset
21123
21124
21125 \end_layout
21126
21127 \end_inset
21128 </cell>
21129 </row>
21130 <row>
21131 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
21132 \begin_inset Text
21133
21134 \begin_layout Plain Layout
21135
21136 \backslash
21137 theta
21138 \backslash
21139 boldsymbol
21140 \backslash
21141 theta
21142 \end_layout
21143
21144 \end_inset
21145 </cell>
21146 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
21147 \begin_inset Text
21148
21149 \begin_layout Plain Layout
21150 \begin_inset Formula $\theta\boldsymbol{\theta}$
21151 \end_inset
21152
21153
21154 \end_layout
21155
21156 \end_inset
21157 </cell>
21158 </row>
21159 </lyxtabular>
21160
21161 \end_inset
21162
21163
21164 \end_layout
21165
21166 \begin_layout Standard
21167 \begin_inset Newpage newpage
21168 \end_inset
21169
21170
21171 \end_layout
21172
21173 \begin_layout Section
21174 Symbole
21175 \begin_inset ERT
21176 status collapsed
21177
21178 \begin_layout Plain Layout
21179
21180
21181 \backslash
21182 texorpdfstring{
21183 \end_layout
21184
21185 \end_inset
21186
21187
21188 \begin_inset Foot
21189 status collapsed
21190
21191 \begin_layout Plain Layout
21192 Eine Liste mit sämtlichen Symbolen der meisten LaTeX-Pakete findet man in
21193  
21194 \begin_inset CommandInset citation
21195 LatexCommand cite
21196 key "Symbole"
21197
21198 \end_inset
21199
21200 .
21201 \end_layout
21202
21203 \end_inset
21204
21205
21206 \begin_inset ERT
21207 status collapsed
21208
21209 \begin_layout Plain Layout
21210
21211 }{}
21212 \end_layout
21213
21214 \end_inset
21215
21216
21217 \begin_inset Note Note
21218 status collapsed
21219
21220 \begin_layout Plain Layout
21221
21222 \series bold
21223
21224 \backslash
21225 texorpdfstring
21226 \series default
21227  dient dazu, dass die Fußnote nicht mit im pdf-Lesezeichen erscheint.
21228 \end_layout
21229
21230 \begin_layout Plain Layout
21231 Näheres zu 
21232 \series bold
21233
21234 \backslash
21235 texorpdfstring
21236 \series default
21237  steht in Kapitel 
21238 \begin_inset CommandInset ref
21239 LatexCommand ref
21240 reference "sub:Formeln-in-Überschriften"
21241
21242 \end_inset
21243
21244 .
21245 \end_layout
21246
21247 \end_inset
21248
21249
21250 \begin_inset Index idx
21251 status collapsed
21252
21253 \begin_layout Plain Layout
21254 Symbole
21255 \end_layout
21256
21257 \end_inset
21258
21259
21260 \end_layout
21261
21262 \begin_layout Standard
21263 Viele der im Folgenden aufgelisteten Symbole können auch über die Mathe-Werkzeug\SpecialChar \-
21264
21265 leistenknöpfe 
21266 \begin_inset Graphics
21267         filename ../../images/math/nabla.png
21268         scale 85
21269
21270 \end_inset
21271
21272  und 
21273 \begin_inset Graphics
21274         filename ../../images/math/digamma.png
21275         scale 85
21276
21277 \end_inset
21278
21279  eingefügt werden.
21280 \end_layout
21281
21282 \begin_layout Subsection
21283 Mathematische Symbole
21284 \begin_inset CommandInset label
21285 LatexCommand label
21286 name "sub:Mathematische-Symbole"
21287
21288 \end_inset
21289
21290
21291 \begin_inset Index idx
21292 status collapsed
21293
21294 \begin_layout Plain Layout
21295 Symbole ! mathematische
21296 \end_layout
21297
21298 \end_inset
21299
21300
21301 \end_layout
21302
21303 \begin_layout Standard
21304 \begin_inset space \hfill{}
21305 \end_inset
21306
21307
21308 \begin_inset Tabular
21309 <lyxtabular version="3" rows="10" columns="2">
21310 <features tabularvalignment="middle">
21311 <column alignment="center" valignment="top" width="0pt">
21312 <column alignment="center" valignment="top" width="0pt">
21313 <row>
21314 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
21315 \begin_inset Text
21316
21317 \begin_layout Plain Layout
21318 Befehl
21319 \end_layout
21320
21321 \end_inset
21322 </cell>
21323 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
21324 \begin_inset Text
21325
21326 \begin_layout Plain Layout
21327 Ergebnis
21328 \end_layout
21329
21330 \end_inset
21331 </cell>
21332 </row>
21333 <row>
21334 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21335 \begin_inset Text
21336
21337 \begin_layout Plain Layout
21338
21339 \backslash
21340 neg
21341 \end_layout
21342
21343 \end_inset
21344 </cell>
21345 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21346 \begin_inset Text
21347
21348 \begin_layout Plain Layout
21349 \begin_inset Formula $\neg$
21350 \end_inset
21351
21352
21353 \end_layout
21354
21355 \end_inset
21356 </cell>
21357 </row>
21358 <row>
21359 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21360 \begin_inset Text
21361
21362 \begin_layout Plain Layout
21363
21364 \backslash
21365 Im
21366 \end_layout
21367
21368 \end_inset
21369 </cell>
21370 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21371 \begin_inset Text
21372
21373 \begin_layout Plain Layout
21374 \begin_inset Formula $\Im$
21375 \end_inset
21376
21377
21378 \end_layout
21379
21380 \end_inset
21381 </cell>
21382 </row>
21383 <row>
21384 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21385 \begin_inset Text
21386
21387 \begin_layout Plain Layout
21388
21389 \backslash
21390 Re
21391 \end_layout
21392
21393 \end_inset
21394 </cell>
21395 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21396 \begin_inset Text
21397
21398 \begin_layout Plain Layout
21399 \begin_inset Formula $\Re$
21400 \end_inset
21401
21402
21403 \end_layout
21404
21405 \end_inset
21406 </cell>
21407 </row>
21408 <row>
21409 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21410 \begin_inset Text
21411
21412 \begin_layout Plain Layout
21413
21414 \backslash
21415 aleph
21416 \end_layout
21417
21418 \end_inset
21419 </cell>
21420 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21421 \begin_inset Text
21422
21423 \begin_layout Plain Layout
21424 \begin_inset Formula $\aleph$
21425 \end_inset
21426
21427
21428 \end_layout
21429
21430 \end_inset
21431 </cell>
21432 </row>
21433 <row>
21434 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21435 \begin_inset Text
21436
21437 \begin_layout Plain Layout
21438
21439 \backslash
21440 partial
21441 \end_layout
21442
21443 \end_inset
21444 </cell>
21445 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21446 \begin_inset Text
21447
21448 \begin_layout Plain Layout
21449 \begin_inset Formula $\partial$
21450 \end_inset
21451
21452
21453 \end_layout
21454
21455 \end_inset
21456 </cell>
21457 </row>
21458 <row>
21459 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21460 \begin_inset Text
21461
21462 \begin_layout Plain Layout
21463
21464 \backslash
21465 infty
21466 \end_layout
21467
21468 \end_inset
21469 </cell>
21470 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21471 \begin_inset Text
21472
21473 \begin_layout Plain Layout
21474 \begin_inset Formula $\infty$
21475 \end_inset
21476
21477
21478 \end_layout
21479
21480 \end_inset
21481 </cell>
21482 </row>
21483 <row>
21484 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
21485 \begin_inset Text
21486
21487 \begin_layout Plain Layout
21488
21489 \backslash
21490 wp
21491 \end_layout
21492
21493 \end_inset
21494 </cell>
21495 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
21496 \begin_inset Text
21497
21498 \begin_layout Plain Layout
21499 \begin_inset Formula $\wp$
21500 \end_inset
21501
21502
21503 \end_layout
21504
21505 \end_inset
21506 </cell>
21507 </row>
21508 <row>
21509 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
21510 \begin_inset Text
21511
21512 \begin_layout Plain Layout
21513
21514 \backslash
21515 imath
21516 \end_layout
21517
21518 \end_inset
21519 </cell>
21520 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
21521 \begin_inset Text
21522
21523 \begin_layout Plain Layout
21524 \begin_inset Formula $\imath$
21525 \end_inset
21526
21527
21528 \end_layout
21529
21530 \end_inset
21531 </cell>
21532 </row>
21533 <row>
21534 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
21535 \begin_inset Text
21536
21537 \begin_layout Plain Layout
21538
21539 \backslash
21540 jmath
21541 \end_layout
21542
21543 \end_inset
21544 </cell>
21545 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
21546 \begin_inset Text
21547
21548 \begin_layout Plain Layout
21549 \begin_inset Formula $\jmath$
21550 \end_inset
21551
21552
21553 \end_layout
21554
21555 \end_inset
21556 </cell>
21557 </row>
21558 </lyxtabular>
21559
21560 \end_inset
21561
21562
21563 \begin_inset space \hfill{}
21564 \end_inset
21565
21566
21567 \begin_inset Tabular
21568 <lyxtabular version="3" rows="10" columns="2">
21569 <features tabularvalignment="middle">
21570 <column alignment="center" valignment="top" width="0pt">
21571 <column alignment="center" valignment="top" width="0pt">
21572 <row>
21573 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
21574 \begin_inset Text
21575
21576 \begin_layout Plain Layout
21577 Befehl
21578 \end_layout
21579
21580 \end_inset
21581 </cell>
21582 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
21583 \begin_inset Text
21584
21585 \begin_layout Plain Layout
21586 Ergebnis
21587 \begin_inset Note Note
21588 status collapsed
21589
21590 \begin_layout Plain Layout
21591
21592 \series bold
21593
21594 \backslash
21595 raisebox
21596 \series default
21597  dient nur als Abstandhalter.
21598 \end_layout
21599
21600 \end_inset
21601
21602
21603 \end_layout
21604
21605 \end_inset
21606 </cell>
21607 </row>
21608 <row>
21609 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21610 \begin_inset Text
21611
21612 \begin_layout Plain Layout
21613
21614 \backslash
21615 forall
21616 \end_layout
21617
21618 \end_inset
21619 </cell>
21620 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21621 \begin_inset Text
21622
21623 \begin_layout Plain Layout
21624 \begin_inset Formula $\forall$
21625 \end_inset
21626
21627
21628 \end_layout
21629
21630 \end_inset
21631 </cell>
21632 </row>
21633 <row>
21634 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21635 \begin_inset Text
21636
21637 \begin_layout Plain Layout
21638
21639 \backslash
21640 exists
21641 \end_layout
21642
21643 \end_inset
21644 </cell>
21645 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21646 \begin_inset Text
21647
21648 \begin_layout Plain Layout
21649 \begin_inset Formula $\exists$
21650 \end_inset
21651
21652
21653 \end_layout
21654
21655 \end_inset
21656 </cell>
21657 </row>
21658 <row>
21659 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21660 \begin_inset Text
21661
21662 \begin_layout Plain Layout
21663
21664 \backslash
21665 nexists
21666 \end_layout
21667
21668 \end_inset
21669 </cell>
21670 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21671 \begin_inset Text
21672
21673 \begin_layout Plain Layout
21674 \begin_inset Formula $\nexists$
21675 \end_inset
21676
21677
21678 \end_layout
21679
21680 \end_inset
21681 </cell>
21682 </row>
21683 <row>
21684 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21685 \begin_inset Text
21686
21687 \begin_layout Plain Layout
21688
21689 \backslash
21690 emptyset
21691 \end_layout
21692
21693 \end_inset
21694 </cell>
21695 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21696 \begin_inset Text
21697
21698 \begin_layout Plain Layout
21699 \begin_inset Formula $\emptyset$
21700 \end_inset
21701
21702
21703 \end_layout
21704
21705 \end_inset
21706 </cell>
21707 </row>
21708 <row>
21709 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21710 \begin_inset Text
21711
21712 \begin_layout Plain Layout
21713
21714 \backslash
21715 varnothing
21716 \end_layout
21717
21718 \end_inset
21719 </cell>
21720 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21721 \begin_inset Text
21722
21723 \begin_layout Plain Layout
21724 \begin_inset Formula $\varnothing$
21725 \end_inset
21726
21727
21728 \end_layout
21729
21730 \end_inset
21731 </cell>
21732 </row>
21733 <row>
21734 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21735 \begin_inset Text
21736
21737 \begin_layout Plain Layout
21738
21739 \backslash
21740 dag
21741 \end_layout
21742
21743 \end_inset
21744 </cell>
21745 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21746 \begin_inset Text
21747
21748 \begin_layout Plain Layout
21749 \begin_inset Formula $\dag$
21750 \end_inset
21751
21752
21753 \end_layout
21754
21755 \end_inset
21756 </cell>
21757 </row>
21758 <row>
21759 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
21760 \begin_inset Text
21761
21762 \begin_layout Plain Layout
21763
21764 \backslash
21765 ddag
21766 \end_layout
21767
21768 \end_inset
21769 </cell>
21770 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
21771 \begin_inset Text
21772
21773 \begin_layout Plain Layout
21774 \begin_inset Formula $\ddag$
21775 \end_inset
21776
21777
21778 \end_layout
21779
21780 \end_inset
21781 </cell>
21782 </row>
21783 <row>
21784 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
21785 \begin_inset Text
21786
21787 \begin_layout Plain Layout
21788
21789 \backslash
21790 complement
21791 \end_layout
21792
21793 \end_inset
21794 </cell>
21795 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
21796 \begin_inset Text
21797
21798 \begin_layout Plain Layout
21799 \begin_inset ERT
21800 status collapsed
21801
21802 \begin_layout Plain Layout
21803
21804
21805 \backslash
21806 raisebox{-0.8mm}{
21807 \end_layout
21808
21809 \end_inset
21810
21811
21812 \begin_inset Formula $\complement$
21813 \end_inset
21814
21815
21816 \begin_inset ERT
21817 status collapsed
21818
21819 \begin_layout Plain Layout
21820
21821 }
21822 \end_layout
21823
21824 \end_inset
21825
21826
21827 \end_layout
21828
21829 \end_inset
21830 </cell>
21831 </row>
21832 <row>
21833 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
21834 \begin_inset Text
21835
21836 \begin_layout Plain Layout
21837
21838 \backslash
21839 Bbbk
21840 \end_layout
21841
21842 \end_inset
21843 </cell>
21844 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
21845 \begin_inset Text
21846
21847 \begin_layout Plain Layout
21848 \begin_inset Formula $\Bbbk$
21849 \end_inset
21850
21851
21852 \end_layout
21853
21854 \end_inset
21855 </cell>
21856 </row>
21857 </lyxtabular>
21858
21859 \end_inset
21860
21861
21862 \begin_inset space \hfill{}
21863 \end_inset
21864
21865
21866 \begin_inset Tabular
21867 <lyxtabular version="3" rows="10" columns="2">
21868 <features tabularvalignment="middle">
21869 <column alignment="center" valignment="top" width="0pt">
21870 <column alignment="center" valignment="top" width="0pt">
21871 <row>
21872 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
21873 \begin_inset Text
21874
21875 \begin_layout Plain Layout
21876 Befehl
21877 \end_layout
21878
21879 \end_inset
21880 </cell>
21881 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
21882 \begin_inset Text
21883
21884 \begin_layout Plain Layout
21885 Ergebnis
21886 \end_layout
21887
21888 \end_inset
21889 </cell>
21890 </row>
21891 <row>
21892 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21893 \begin_inset Text
21894
21895 \begin_layout Plain Layout
21896
21897 \backslash
21898 prime
21899 \end_layout
21900
21901 \end_inset
21902 </cell>
21903 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21904 \begin_inset Text
21905
21906 \begin_layout Plain Layout
21907 \begin_inset Formula $\prime$
21908 \end_inset
21909
21910
21911 \end_layout
21912
21913 \end_inset
21914 </cell>
21915 </row>
21916 <row>
21917 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21918 \begin_inset Text
21919
21920 \begin_layout Plain Layout
21921
21922 \backslash
21923 backprime
21924 \end_layout
21925
21926 \end_inset
21927 </cell>
21928 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21929 \begin_inset Text
21930
21931 \begin_layout Plain Layout
21932 \begin_inset Formula $\backprime$
21933 \end_inset
21934
21935
21936 \end_layout
21937
21938 \end_inset
21939 </cell>
21940 </row>
21941 <row>
21942 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21943 \begin_inset Text
21944
21945 \begin_layout Plain Layout
21946
21947 \backslash
21948 mho
21949 \end_layout
21950
21951 \end_inset
21952 </cell>
21953 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21954 \begin_inset Text
21955
21956 \begin_layout Plain Layout
21957 \begin_inset Formula $\mho$
21958 \end_inset
21959
21960
21961 \end_layout
21962
21963 \end_inset
21964 </cell>
21965 </row>
21966 <row>
21967 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21968 \begin_inset Text
21969
21970 \begin_layout Plain Layout
21971
21972 \backslash
21973 triangle
21974 \end_layout
21975
21976 \end_inset
21977 </cell>
21978 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
21979 \begin_inset Text
21980
21981 \begin_layout Plain Layout
21982 \begin_inset Formula $\triangle$
21983 \end_inset
21984
21985
21986 \end_layout
21987
21988 \end_inset
21989 </cell>
21990 </row>
21991 <row>
21992 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
21993 \begin_inset Text
21994
21995 \begin_layout Plain Layout
21996
21997 \backslash
21998 angle
21999 \end_layout
22000
22001 \end_inset
22002 </cell>
22003 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22004 \begin_inset Text
22005
22006 \begin_layout Plain Layout
22007 \begin_inset Formula $\angle$
22008 \end_inset
22009
22010
22011 \end_layout
22012
22013 \end_inset
22014 </cell>
22015 </row>
22016 <row>
22017 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22018 \begin_inset Text
22019
22020 \begin_layout Plain Layout
22021
22022 \backslash
22023 measuredangle
22024 \end_layout
22025
22026 \end_inset
22027 </cell>
22028 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22029 \begin_inset Text
22030
22031 \begin_layout Plain Layout
22032 \begin_inset Formula $\measuredangle$
22033 \end_inset
22034
22035
22036 \end_layout
22037
22038 \end_inset
22039 </cell>
22040 </row>
22041 <row>
22042 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
22043 \begin_inset Text
22044
22045 \begin_layout Plain Layout
22046
22047 \backslash
22048 sphericalangle
22049 \end_layout
22050
22051 \end_inset
22052 </cell>
22053 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
22054 \begin_inset Text
22055
22056 \begin_layout Plain Layout
22057 \begin_inset Formula $\sphericalangle$
22058 \end_inset
22059
22060
22061 \end_layout
22062
22063 \end_inset
22064 </cell>
22065 </row>
22066 <row>
22067 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
22068 \begin_inset Text
22069
22070 \begin_layout Plain Layout
22071
22072 \backslash
22073 top
22074 \end_layout
22075
22076 \end_inset
22077 </cell>
22078 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
22079 \begin_inset Text
22080
22081 \begin_layout Plain Layout
22082 \begin_inset Formula $\top$
22083 \end_inset
22084
22085
22086 \end_layout
22087
22088 \end_inset
22089 </cell>
22090 </row>
22091 <row>
22092 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
22093 \begin_inset Text
22094
22095 \begin_layout Plain Layout
22096
22097 \backslash
22098 bot
22099 \end_layout
22100
22101 \end_inset
22102 </cell>
22103 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
22104 \begin_inset Text
22105
22106 \begin_layout Plain Layout
22107 \begin_inset Formula $\bot$
22108 \end_inset
22109
22110
22111 \end_layout
22112
22113 \end_inset
22114 </cell>
22115 </row>
22116 </lyxtabular>
22117
22118 \end_inset
22119
22120
22121 \begin_inset space \hfill{}
22122 \end_inset
22123
22124
22125 \end_layout
22126
22127 \begin_layout Subsection
22128 Sonstige Symbole
22129 \begin_inset CommandInset label
22130 LatexCommand label
22131 name "sub:Sonstige-Symbole"
22132
22133 \end_inset
22134
22135
22136 \begin_inset Index idx
22137 status collapsed
22138
22139 \begin_layout Plain Layout
22140 Symbole ! sonstige
22141 \end_layout
22142
22143 \end_inset
22144
22145
22146 \end_layout
22147
22148 \begin_layout Standard
22149 \begin_inset VSpace -7mm
22150 \end_inset
22151
22152
22153 \end_layout
22154
22155 \begin_layout Standard
22156 \noindent
22157 \align center
22158 \begin_inset Tabular
22159 <lyxtabular version="3" rows="10" columns="2">
22160 <features tabularvalignment="middle">
22161 <column alignment="center" valignment="top" width="0pt">
22162 <column alignment="center" valignment="top" width="0pt">
22163 <row>
22164 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
22165 \begin_inset Text
22166
22167 \begin_layout Plain Layout
22168 Befehl
22169 \end_layout
22170
22171 \end_inset
22172 </cell>
22173 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
22174 \begin_inset Text
22175
22176 \begin_layout Plain Layout
22177 Ergebnis
22178 \end_layout
22179
22180 \end_inset
22181 </cell>
22182 </row>
22183 <row>
22184 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22185 \begin_inset Text
22186
22187 \begin_layout Plain Layout
22188
22189 \backslash
22190 flat
22191 \end_layout
22192
22193 \end_inset
22194 </cell>
22195 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22196 \begin_inset Text
22197
22198 \begin_layout Plain Layout
22199 \begin_inset Formula $\flat$
22200 \end_inset
22201
22202
22203 \end_layout
22204
22205 \end_inset
22206 </cell>
22207 </row>
22208 <row>
22209 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22210 \begin_inset Text
22211
22212 \begin_layout Plain Layout
22213
22214 \backslash
22215 natural
22216 \end_layout
22217
22218 \end_inset
22219 </cell>
22220 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22221 \begin_inset Text
22222
22223 \begin_layout Plain Layout
22224 \begin_inset Formula $\natural$
22225 \end_inset
22226
22227
22228 \end_layout
22229
22230 \end_inset
22231 </cell>
22232 </row>
22233 <row>
22234 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22235 \begin_inset Text
22236
22237 \begin_layout Plain Layout
22238
22239 \backslash
22240 sharp
22241 \end_layout
22242
22243 \end_inset
22244 </cell>
22245 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22246 \begin_inset Text
22247
22248 \begin_layout Plain Layout
22249 \begin_inset Formula $\sharp$
22250 \end_inset
22251
22252
22253 \end_layout
22254
22255 \end_inset
22256 </cell>
22257 </row>
22258 <row>
22259 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
22260 \begin_inset Text
22261
22262 \begin_layout Plain Layout
22263
22264 \backslash
22265 surd
22266 \end_layout
22267
22268 \end_inset
22269 </cell>
22270 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
22271 \begin_inset Text
22272
22273 \begin_layout Plain Layout
22274 \begin_inset Formula $\surd$
22275 \end_inset
22276
22277
22278 \end_layout
22279
22280 \end_inset
22281 </cell>
22282 </row>
22283 <row>
22284 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
22285 \begin_inset Text
22286
22287 \begin_layout Plain Layout
22288
22289 \backslash
22290 checkmark
22291 \end_layout
22292
22293 \end_inset
22294 </cell>
22295 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
22296 \begin_inset Text
22297
22298 \begin_layout Plain Layout
22299 \begin_inset Formula $\checkmark$
22300 \end_inset
22301
22302
22303 \end_layout
22304
22305 \end_inset
22306 </cell>
22307 </row>
22308 <row>
22309 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
22310 \begin_inset Text
22311
22312 \begin_layout Plain Layout
22313
22314 \backslash
22315 yen
22316 \end_layout
22317
22318 \end_inset
22319 </cell>
22320 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
22321 \begin_inset Text
22322
22323 \begin_layout Plain Layout
22324 \begin_inset Formula $\yen$
22325 \end_inset
22326
22327
22328 \end_layout
22329
22330 \end_inset
22331 </cell>
22332 </row>
22333 <row>
22334 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
22335 \begin_inset Text
22336
22337 \begin_layout Plain Layout
22338
22339 \backslash
22340 pounds
22341 \end_layout
22342
22343 \end_inset
22344 </cell>
22345 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
22346 \begin_inset Text
22347
22348 \begin_layout Plain Layout
22349 \begin_inset Formula $\pounds$
22350 \end_inset
22351
22352
22353 \end_layout
22354
22355 \end_inset
22356 </cell>
22357 </row>
22358 <row>
22359 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
22360 \begin_inset Text
22361
22362 \begin_layout Plain Layout
22363 $
22364 \end_layout
22365
22366 \end_inset
22367 </cell>
22368 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
22369 \begin_inset Text
22370
22371 \begin_layout Plain Layout
22372 \begin_inset Formula $\$$
22373 \end_inset
22374
22375
22376 \end_layout
22377
22378 \end_inset
22379 </cell>
22380 </row>
22381 <row>
22382 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
22383 \begin_inset Text
22384
22385 \begin_layout Plain Layout
22386 §
22387 \end_layout
22388
22389 \end_inset
22390 </cell>
22391 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
22392 \begin_inset Text
22393
22394 \begin_layout Plain Layout
22395 \begin_inset Formula $§$
22396 \end_inset
22397
22398
22399 \end_layout
22400
22401 \end_inset
22402 </cell>
22403 </row>
22404 </lyxtabular>
22405
22406 \end_inset
22407
22408
22409 \begin_inset Tabular
22410 <lyxtabular version="3" rows="10" columns="2">
22411 <features tabularvalignment="middle">
22412 <column alignment="center" valignment="top" width="0">
22413 <column alignment="center" valignment="top" width="0">
22414 <row>
22415 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
22416 \begin_inset Text
22417
22418 \begin_layout Plain Layout
22419 Befehl
22420 \end_layout
22421
22422 \end_inset
22423 </cell>
22424 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
22425 \begin_inset Text
22426
22427 \begin_layout Plain Layout
22428 Ergebnis
22429 \end_layout
22430
22431 \end_inset
22432 </cell>
22433 </row>
22434 <row>
22435 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22436 \begin_inset Text
22437
22438 \begin_layout Plain Layout
22439
22440 \backslash
22441 hbar
22442 \end_layout
22443
22444 \end_inset
22445 </cell>
22446 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22447 \begin_inset Text
22448
22449 \begin_layout Plain Layout
22450 \begin_inset Formula $\hbar$
22451 \end_inset
22452
22453
22454 \end_layout
22455
22456 \end_inset
22457 </cell>
22458 </row>
22459 <row>
22460 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22461 \begin_inset Text
22462
22463 \begin_layout Plain Layout
22464
22465 \backslash
22466 hslash
22467 \end_layout
22468
22469 \end_inset
22470 </cell>
22471 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22472 \begin_inset Text
22473
22474 \begin_layout Plain Layout
22475 \begin_inset Formula $\hslash$
22476 \end_inset
22477
22478
22479 \end_layout
22480
22481 \end_inset
22482 </cell>
22483 </row>
22484 <row>
22485 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22486 \begin_inset Text
22487
22488 \begin_layout Plain Layout
22489
22490 \backslash
22491 clubsuit
22492 \end_layout
22493
22494 \end_inset
22495 </cell>
22496 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22497 \begin_inset Text
22498
22499 \begin_layout Plain Layout
22500 \begin_inset Formula $\clubsuit$
22501 \end_inset
22502
22503
22504 \end_layout
22505
22506 \end_inset
22507 </cell>
22508 </row>
22509 <row>
22510 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22511 \begin_inset Text
22512
22513 \begin_layout Plain Layout
22514
22515 \backslash
22516 spadesuit
22517 \end_layout
22518
22519 \end_inset
22520 </cell>
22521 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22522 \begin_inset Text
22523
22524 \begin_layout Plain Layout
22525 \begin_inset Formula $\spadesuit$
22526 \end_inset
22527
22528
22529 \end_layout
22530
22531 \end_inset
22532 </cell>
22533 </row>
22534 <row>
22535 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22536 \begin_inset Text
22537
22538 \begin_layout Plain Layout
22539
22540 \backslash
22541 bigstar
22542 \end_layout
22543
22544 \end_inset
22545 </cell>
22546 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22547 \begin_inset Text
22548
22549 \begin_layout Plain Layout
22550 \begin_inset Formula $\bigstar$
22551 \end_inset
22552
22553
22554 \end_layout
22555
22556 \end_inset
22557 </cell>
22558 </row>
22559 <row>
22560 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22561 \begin_inset Text
22562
22563 \begin_layout Plain Layout
22564
22565 \backslash
22566 blacklozenge
22567 \end_layout
22568
22569 \end_inset
22570 </cell>
22571 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22572 \begin_inset Text
22573
22574 \begin_layout Plain Layout
22575 \begin_inset Formula $\blacklozenge$
22576 \end_inset
22577
22578
22579 \end_layout
22580
22581 \end_inset
22582 </cell>
22583 </row>
22584 <row>
22585 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22586 \begin_inset Text
22587
22588 \begin_layout Plain Layout
22589
22590 \backslash
22591 blacktriangle
22592 \end_layout
22593
22594 \end_inset
22595 </cell>
22596 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22597 \begin_inset Text
22598
22599 \begin_layout Plain Layout
22600 \begin_inset Formula $\blacktriangle$
22601 \end_inset
22602
22603
22604 \end_layout
22605
22606 \end_inset
22607 </cell>
22608 </row>
22609 <row>
22610 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22611 \begin_inset Text
22612
22613 \begin_layout Plain Layout
22614
22615 \backslash
22616 blacktiangledown
22617 \end_layout
22618
22619 \end_inset
22620 </cell>
22621 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22622 \begin_inset Text
22623
22624 \begin_layout Plain Layout
22625 \begin_inset Formula $\blacktriangledown$
22626 \end_inset
22627
22628
22629 \end_layout
22630
22631 \end_inset
22632 </cell>
22633 </row>
22634 <row>
22635 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
22636 \begin_inset Text
22637
22638 \begin_layout Plain Layout
22639
22640 \backslash
22641 bullet
22642 \end_layout
22643
22644 \end_inset
22645 </cell>
22646 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
22647 \begin_inset Text
22648
22649 \begin_layout Plain Layout
22650 \begin_inset Formula $\bullet$
22651 \end_inset
22652
22653
22654 \end_layout
22655
22656 \end_inset
22657 </cell>
22658 </row>
22659 </lyxtabular>
22660
22661 \end_inset
22662
22663
22664 \begin_inset Tabular
22665 <lyxtabular version="3" rows="10" columns="2">
22666 <features tabularvalignment="middle">
22667 <column alignment="center" valignment="top" width="0pt">
22668 <column alignment="center" valignment="top" width="0pt">
22669 <row>
22670 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
22671 \begin_inset Text
22672
22673 \begin_layout Plain Layout
22674 Befehl
22675 \end_layout
22676
22677 \end_inset
22678 </cell>
22679 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
22680 \begin_inset Text
22681
22682 \begin_layout Plain Layout
22683 Ergebnis
22684 \end_layout
22685
22686 \end_inset
22687 </cell>
22688 </row>
22689 <row>
22690 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22691 \begin_inset Text
22692
22693 \begin_layout Plain Layout
22694
22695 \backslash
22696 diamondsuit
22697 \end_layout
22698
22699 \end_inset
22700 </cell>
22701 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22702 \begin_inset Text
22703
22704 \begin_layout Plain Layout
22705 \begin_inset Formula $\diamondsuit$
22706 \end_inset
22707
22708
22709 \end_layout
22710
22711 \end_inset
22712 </cell>
22713 </row>
22714 <row>
22715 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22716 \begin_inset Text
22717
22718 \begin_layout Plain Layout
22719
22720 \backslash
22721 Diamond
22722 \end_layout
22723
22724 \end_inset
22725 </cell>
22726 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22727 \begin_inset Text
22728
22729 \begin_layout Plain Layout
22730 \begin_inset Formula $\Diamond$
22731 \end_inset
22732
22733
22734 \end_layout
22735
22736 \end_inset
22737 </cell>
22738 </row>
22739 <row>
22740 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
22741 \begin_inset Text
22742
22743 \begin_layout Plain Layout
22744
22745 \backslash
22746 heartsuit
22747 \end_layout
22748
22749 \end_inset
22750 </cell>
22751 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
22752 \begin_inset Text
22753
22754 \begin_layout Plain Layout
22755 \begin_inset Formula $\heartsuit$
22756 \end_inset
22757
22758
22759 \end_layout
22760
22761 \end_inset
22762 </cell>
22763 </row>
22764 <row>
22765 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
22766 \begin_inset Text
22767
22768 \begin_layout Plain Layout
22769
22770 \backslash
22771 P
22772 \end_layout
22773
22774 \end_inset
22775 </cell>
22776 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
22777 \begin_inset Text
22778
22779 \begin_layout Plain Layout
22780 \begin_inset Formula $\P$
22781 \end_inset
22782
22783
22784 \end_layout
22785
22786 \end_inset
22787 </cell>
22788 </row>
22789 <row>
22790 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
22791 \begin_inset Text
22792
22793 \begin_layout Plain Layout
22794
22795 \backslash
22796 copyright
22797 \end_layout
22798
22799 \end_inset
22800 </cell>
22801 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
22802 \begin_inset Text
22803
22804 \begin_layout Plain Layout
22805 \begin_inset Formula $\copyright$
22806 \end_inset
22807
22808
22809 \end_layout
22810
22811 \end_inset
22812 </cell>
22813 </row>
22814 <row>
22815 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
22816 \begin_inset Text
22817
22818 \begin_layout Plain Layout
22819
22820 \backslash
22821 circledR
22822 \end_layout
22823
22824 \end_inset
22825 </cell>
22826 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
22827 \begin_inset Text
22828
22829 \begin_layout Plain Layout
22830 \begin_inset Formula $\circledR$
22831 \end_inset
22832
22833
22834 \end_layout
22835
22836 \end_inset
22837 </cell>
22838 </row>
22839 <row>
22840 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
22841 \begin_inset Text
22842
22843 \begin_layout Plain Layout
22844
22845 \backslash
22846 maltese
22847 \end_layout
22848
22849 \end_inset
22850 </cell>
22851 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
22852 \begin_inset Text
22853
22854 \begin_layout Plain Layout
22855 \begin_inset Formula $\maltese$
22856 \end_inset
22857
22858
22859 \end_layout
22860
22861 \end_inset
22862 </cell>
22863 </row>
22864 <row>
22865 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
22866 \begin_inset Text
22867
22868 \begin_layout Plain Layout
22869
22870 \backslash
22871 diagup
22872 \end_layout
22873
22874 \end_inset
22875 </cell>
22876 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
22877 \begin_inset Text
22878
22879 \begin_layout Plain Layout
22880 \begin_inset Formula $\diagup$
22881 \end_inset
22882
22883
22884 \end_layout
22885
22886 \end_inset
22887 </cell>
22888 </row>
22889 <row>
22890 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
22891 \begin_inset Text
22892
22893 \begin_layout Plain Layout
22894
22895 \backslash
22896 diagdown
22897 \end_layout
22898
22899 \end_inset
22900 </cell>
22901 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
22902 \begin_inset Text
22903
22904 \begin_layout Plain Layout
22905 \begin_inset Formula $\diagdown$
22906 \end_inset
22907
22908
22909 \end_layout
22910
22911 \end_inset
22912 </cell>
22913 </row>
22914 </lyxtabular>
22915
22916 \end_inset
22917
22918
22919 \end_layout
22920
22921 \begin_layout Standard
22922 \begin_inset VSpace medskip
22923 \end_inset
22924
22925 Weitere Symbole sind in 
22926 \begin_inset CommandInset ref
22927 LatexCommand ref
22928 reference "sub:Sonstige-Sonderzeichen"
22929
22930 \end_inset
22931
22932  aufgelistet.
22933 \end_layout
22934
22935 \begin_layout Standard
22936 Einige Symbole können in unterschiedlicher Größe dargestellt werden, siehe
22937  
22938 \begin_inset CommandInset ref
22939 LatexCommand ref
22940 reference "sub:Schriftgrößen"
22941
22942 \end_inset
22943
22944 .
22945 \end_layout
22946
22947 \begin_layout Subsection
22948 Das Euro-Symbol €
22949 \begin_inset Index idx
22950 status collapsed
22951
22952 \begin_layout Plain Layout
22953 Symbole ! Euro-Symbol
22954 \end_layout
22955
22956 \end_inset
22957
22958
22959 \begin_inset Index idx
22960 status collapsed
22961
22962 \begin_layout Plain Layout
22963
22964 \backslash
22965 @
22966 \begin_inset ERT
22967 status collapsed
22968
22969 \begin_layout Plain Layout
22970
22971
22972 \backslash
22973 officialeuro
22974 \end_layout
22975
22976 \end_inset
22977
22978
22979 \end_layout
22980
22981 \end_inset
22982
22983
22984 \end_layout
22985
22986 \begin_layout Standard
22987 Wenn man in einer Formel das Euro-Symbol verwenden will, muss man das LaTeX-Pake
22988
22989 \series bold
22990 eurosym
22991 \series default
22992
22993 \begin_inset Index idx
22994 status collapsed
22995
22996 \begin_layout Plain Layout
22997 Pakete ! eurosym
22998 \end_layout
22999
23000 \end_inset
23001
23002  installieren und dieses mit der LaTeX-Vorspannzeile
23003 \end_layout
23004
23005 \begin_layout Standard
23006
23007 \series bold
23008
23009 \backslash
23010 usepackage[gennarrow]{eurosym}
23011 \end_layout
23012
23013 \begin_layout Standard
23014 aktivieren.
23015  Das Euro-Symbol kann man nun mit dem Befehl 
23016 \series bold
23017
23018 \backslash
23019 euro
23020 \series default
23021
23022 \begin_inset Index idx
23023 status collapsed
23024
23025 \begin_layout Plain Layout
23026 Befehle ! E ! 
23027 \backslash
23028 euro
23029 \end_layout
23030
23031 \end_inset
23032
23033  aufrufen.
23034 \end_layout
23035
23036 \begin_layout Standard
23037 Das Euro-Symbol kann man direkt über die Tastatur in mathematischen Text
23038  eingeben, ohne 
23039 \series bold
23040 eurosym
23041 \series default
23042  installiert zu haben.
23043  Ist 
23044 \series bold
23045 eurosym
23046 \series default
23047  installiert, kann man 
23048 \series bold
23049
23050 \backslash
23051 euro
23052 \series default
23053  auch im TeX-Modus eingeben.
23054  Das offizielle Währungssymbol erhält man dann über den Befehl 
23055 \series bold
23056
23057 \backslash
23058 officialeuro
23059 \series default
23060
23061 \begin_inset Index idx
23062 status collapsed
23063
23064 \begin_layout Plain Layout
23065 Befehle ! O ! 
23066 \backslash
23067 officialeuro
23068 \end_layout
23069
23070 \end_inset
23071
23072 , der nur im TeX-Modus verfügbar ist.
23073 \end_layout
23074
23075 \begin_layout Standard
23076 \begin_inset ERT
23077 status collapsed
23078
23079 \begin_layout Plain Layout
23080
23081
23082 \backslash
23083 ifeurosym 
23084 \end_layout
23085
23086 \end_inset
23087
23088
23089 \begin_inset Note Note
23090 status open
23091
23092 \begin_layout Plain Layout
23093 Die folgende Tabelle erscheint nur im Ausdruck wenn das LaTeX-Paket 
23094 \series bold
23095 eurosym
23096 \series default
23097  installiert ist:
23098 \end_layout
23099
23100 \end_inset
23101
23102
23103 \end_layout
23104
23105 \begin_layout Standard
23106 Eine Übersicht der verschiedenen Euro-Symbole:
23107 \end_layout
23108
23109 \begin_layout Standard
23110 \align center
23111 \begin_inset Tabular
23112 <lyxtabular version="3" rows="4" columns="3">
23113 <features tabularvalignment="middle">
23114 <column alignment="center" valignment="top" width="0pt">
23115 <column alignment="center" valignment="top" width="0pt">
23116 <column alignment="center" valignment="top" width="0pt">
23117 <row>
23118 <cell multicolumn="1" alignment="center" valignment="top" bottomline="true" usebox="none">
23119 \begin_inset Text
23120
23121 \begin_layout Plain Layout
23122
23123 \end_layout
23124
23125 \end_inset
23126 </cell>
23127 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
23128 \begin_inset Text
23129
23130 \begin_layout Plain Layout
23131 Befehl 
23132 \end_layout
23133
23134 \end_inset
23135 </cell>
23136 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
23137 \begin_inset Text
23138
23139 \begin_layout Plain Layout
23140 Ergebnis
23141 \end_layout
23142
23143 \end_inset
23144 </cell>
23145 </row>
23146 <row>
23147 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23148 \begin_inset Text
23149
23150 \begin_layout Plain Layout
23151 Formel
23152 \end_layout
23153
23154 \end_inset
23155 </cell>
23156 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23157 \begin_inset Text
23158
23159 \begin_layout Plain Layout
23160
23161 \backslash
23162 euro
23163 \end_layout
23164
23165 \end_inset
23166 </cell>
23167 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23168 \begin_inset Text
23169
23170 \begin_layout Plain Layout
23171 \begin_inset Formula $\euro$
23172 \end_inset
23173
23174
23175 \end_layout
23176
23177 \end_inset
23178 </cell>
23179 </row>
23180 <row>
23181 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23182 \begin_inset Text
23183
23184 \begin_layout Plain Layout
23185 mathematischer Text
23186 \end_layout
23187
23188 \end_inset
23189 </cell>
23190 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23191 \begin_inset Text
23192
23193 \begin_layout Plain Layout
23194
23195 \end_layout
23196
23197 \end_inset
23198 </cell>
23199 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23200 \begin_inset Text
23201
23202 \begin_layout Plain Layout
23203 \begin_inset Formula $\mbox{€}$
23204 \end_inset
23205
23206
23207 \end_layout
23208
23209 \end_inset
23210 </cell>
23211 </row>
23212 <row>
23213 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
23214 \begin_inset Text
23215
23216 \begin_layout Plain Layout
23217 TeX-Modus
23218 \end_layout
23219
23220 \end_inset
23221 </cell>
23222 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
23223 \begin_inset Text
23224
23225 \begin_layout Plain Layout
23226
23227 \backslash
23228 officialeuro
23229 \end_layout
23230
23231 \end_inset
23232 </cell>
23233 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
23234 \begin_inset Text
23235
23236 \begin_layout Plain Layout
23237 \begin_inset ERT
23238 status collapsed
23239
23240 \begin_layout Plain Layout
23241
23242
23243 \backslash
23244 officialeuro
23245 \end_layout
23246
23247 \end_inset
23248
23249
23250 \end_layout
23251
23252 \end_inset
23253 </cell>
23254 </row>
23255 </lyxtabular>
23256
23257 \end_inset
23258
23259
23260 \end_layout
23261
23262 \begin_layout Standard
23263 \begin_inset ERT
23264 status collapsed
23265
23266 \begin_layout Plain Layout
23267
23268
23269 \backslash
23270 else 
23271 \end_layout
23272
23273 \end_inset
23274
23275
23276 \begin_inset Note Note
23277 status open
23278
23279 \begin_layout Plain Layout
23280 Folgendes erscheint im Ausdruck wenn das LaTeX-Paket 
23281 \series bold
23282 eurosym
23283 \series default
23284  nicht installiert ist:
23285 \end_layout
23286
23287 \end_inset
23288
23289
23290 \end_layout
23291
23292 \begin_layout Standard
23293 Das LaTeX-Paket 
23294 \series bold
23295 eurosym 
23296 \series default
23297 muss installiert sein, um den Rest dieses Abschnitts im Ausdruck zu sehen.
23298 \end_layout
23299
23300 \begin_layout Standard
23301 \begin_inset ERT
23302 status collapsed
23303
23304 \begin_layout Plain Layout
23305
23306
23307 \backslash
23308 fi 
23309 \end_layout
23310
23311 \end_inset
23312
23313
23314 \end_layout
23315
23316 \begin_layout Section
23317 Relationen
23318 \begin_inset CommandInset label
23319 LatexCommand label
23320 name "sec:Relationen"
23321
23322 \end_inset
23323
23324
23325 \begin_inset Index idx
23326 status collapsed
23327
23328 \begin_layout Plain Layout
23329 Relationen
23330 \end_layout
23331
23332 \end_inset
23333
23334
23335 \begin_inset Index idx
23336 status collapsed
23337
23338 \begin_layout Plain Layout
23339 Vergleiche|see
23340 \begin_inset ERT
23341 status collapsed
23342
23343 \begin_layout Plain Layout
23344
23345 {
23346 \end_layout
23347
23348 \end_inset
23349
23350 Relationen
23351 \begin_inset ERT
23352 status collapsed
23353
23354 \begin_layout Plain Layout
23355
23356 }
23357 \end_layout
23358
23359 \end_inset
23360
23361
23362 \end_layout
23363
23364 \end_inset
23365
23366
23367 \end_layout
23368
23369 \begin_layout Standard
23370 Alle griechischen Buchstaben können auch über den Mathe-Werkzeugleistenknopf
23371  
23372 \begin_inset Graphics
23373         filename ../../images/math/leq.png
23374         scale 85
23375
23376 \end_inset
23377
23378  eingefügt werden.
23379 \end_layout
23380
23381 \begin_layout Standard
23382 \begin_inset space \hfill{}
23383 \end_inset
23384
23385
23386 \begin_inset Tabular
23387 <lyxtabular version="3" rows="17" columns="2">
23388 <features tabularvalignment="middle">
23389 <column alignment="center" valignment="top" width="0pt">
23390 <column alignment="center" valignment="top" width="0pt">
23391 <row>
23392 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
23393 \begin_inset Text
23394
23395 \begin_layout Plain Layout
23396 Befehl
23397 \end_layout
23398
23399 \end_inset
23400 </cell>
23401 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
23402 \begin_inset Text
23403
23404 \begin_layout Plain Layout
23405 Ergebnis
23406 \end_layout
23407
23408 \end_inset
23409 </cell>
23410 </row>
23411 <row>
23412 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23413 \begin_inset Text
23414
23415 \begin_layout Plain Layout
23416 <
23417 \end_layout
23418
23419 \end_inset
23420 </cell>
23421 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23422 \begin_inset Text
23423
23424 \begin_layout Plain Layout
23425 \begin_inset Formula $<$
23426 \end_inset
23427
23428
23429 \end_layout
23430
23431 \end_inset
23432 </cell>
23433 </row>
23434 <row>
23435 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23436 \begin_inset Text
23437
23438 \begin_layout Plain Layout
23439
23440 \backslash
23441 le
23442 \end_layout
23443
23444 \end_inset
23445 </cell>
23446 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23447 \begin_inset Text
23448
23449 \begin_layout Plain Layout
23450 \begin_inset Formula $\le$
23451 \end_inset
23452
23453
23454 \end_layout
23455
23456 \end_inset
23457 </cell>
23458 </row>
23459 <row>
23460 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23461 \begin_inset Text
23462
23463 \begin_layout Plain Layout
23464
23465 \backslash
23466 ll
23467 \end_layout
23468
23469 \end_inset
23470 </cell>
23471 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23472 \begin_inset Text
23473
23474 \begin_layout Plain Layout
23475 \begin_inset Formula $\ll$
23476 \end_inset
23477
23478
23479 \end_layout
23480
23481 \end_inset
23482 </cell>
23483 </row>
23484 <row>
23485 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23486 \begin_inset Text
23487
23488 \begin_layout Plain Layout
23489
23490 \backslash
23491 prec
23492 \end_layout
23493
23494 \end_inset
23495 </cell>
23496 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23497 \begin_inset Text
23498
23499 \begin_layout Plain Layout
23500 \begin_inset Formula $\prec$
23501 \end_inset
23502
23503
23504 \end_layout
23505
23506 \end_inset
23507 </cell>
23508 </row>
23509 <row>
23510 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23511 \begin_inset Text
23512
23513 \begin_layout Plain Layout
23514
23515 \backslash
23516 preceq
23517 \end_layout
23518
23519 \end_inset
23520 </cell>
23521 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23522 \begin_inset Text
23523
23524 \begin_layout Plain Layout
23525 \begin_inset Formula $\preceq$
23526 \end_inset
23527
23528
23529 \end_layout
23530
23531 \end_inset
23532 </cell>
23533 </row>
23534 <row>
23535 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23536 \begin_inset Text
23537
23538 \begin_layout Plain Layout
23539
23540 \backslash
23541 subset
23542 \end_layout
23543
23544 \end_inset
23545 </cell>
23546 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23547 \begin_inset Text
23548
23549 \begin_layout Plain Layout
23550 \begin_inset Formula $\subset$
23551 \end_inset
23552
23553
23554 \end_layout
23555
23556 \end_inset
23557 </cell>
23558 </row>
23559 <row>
23560 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23561 \begin_inset Text
23562
23563 \begin_layout Plain Layout
23564
23565 \backslash
23566 subseteq
23567 \end_layout
23568
23569 \end_inset
23570 </cell>
23571 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23572 \begin_inset Text
23573
23574 \begin_layout Plain Layout
23575 \begin_inset Formula $\subseteq$
23576 \end_inset
23577
23578
23579 \end_layout
23580
23581 \end_inset
23582 </cell>
23583 </row>
23584 <row>
23585 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23586 \begin_inset Text
23587
23588 \begin_layout Plain Layout
23589
23590 \backslash
23591 sqsubseteq
23592 \end_layout
23593
23594 \end_inset
23595 </cell>
23596 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23597 \begin_inset Text
23598
23599 \begin_layout Plain Layout
23600 \begin_inset Formula $\sqsubseteq$
23601 \end_inset
23602
23603
23604 \end_layout
23605
23606 \end_inset
23607 </cell>
23608 </row>
23609 <row>
23610 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23611 \begin_inset Text
23612
23613 \begin_layout Plain Layout
23614
23615 \backslash
23616 in
23617 \end_layout
23618
23619 \end_inset
23620 </cell>
23621 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23622 \begin_inset Text
23623
23624 \begin_layout Plain Layout
23625 \begin_inset Formula $\in$
23626 \end_inset
23627
23628
23629 \end_layout
23630
23631 \end_inset
23632 </cell>
23633 </row>
23634 <row>
23635 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23636 \begin_inset Text
23637
23638 \begin_layout Plain Layout
23639
23640 \backslash
23641 vdash
23642 \end_layout
23643
23644 \end_inset
23645 </cell>
23646 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23647 \begin_inset Text
23648
23649 \begin_layout Plain Layout
23650 \begin_inset Formula $\vdash$
23651 \end_inset
23652
23653
23654 \end_layout
23655
23656 \end_inset
23657 </cell>
23658 </row>
23659 <row>
23660 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23661 \begin_inset Text
23662
23663 \begin_layout Plain Layout
23664
23665 \backslash
23666 smile
23667 \end_layout
23668
23669 \end_inset
23670 </cell>
23671 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23672 \begin_inset Text
23673
23674 \begin_layout Plain Layout
23675 \begin_inset Formula $\smile$
23676 \end_inset
23677
23678
23679 \end_layout
23680
23681 \end_inset
23682 </cell>
23683 </row>
23684 <row>
23685 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23686 \begin_inset Text
23687
23688 \begin_layout Plain Layout
23689
23690 \backslash
23691 lhd
23692 \end_layout
23693
23694 \end_inset
23695 </cell>
23696 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23697 \begin_inset Text
23698
23699 \begin_layout Plain Layout
23700 \begin_inset Formula $\lhd$
23701 \end_inset
23702
23703
23704 \end_layout
23705
23706 \end_inset
23707 </cell>
23708 </row>
23709 <row>
23710 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23711 \begin_inset Text
23712
23713 \begin_layout Plain Layout
23714
23715 \backslash
23716 unlhd
23717 \end_layout
23718
23719 \end_inset
23720 </cell>
23721 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23722 \begin_inset Text
23723
23724 \begin_layout Plain Layout
23725 \begin_inset Formula $\unlhd$
23726 \end_inset
23727
23728
23729 \end_layout
23730
23731 \end_inset
23732 </cell>
23733 </row>
23734 <row>
23735 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23736 \begin_inset Text
23737
23738 \begin_layout Plain Layout
23739
23740 \backslash
23741 gtrless
23742 \end_layout
23743
23744 \end_inset
23745 </cell>
23746 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23747 \begin_inset Text
23748
23749 \begin_layout Plain Layout
23750 \begin_inset Formula $\gtrless$
23751 \end_inset
23752
23753
23754 \end_layout
23755
23756 \end_inset
23757 </cell>
23758 </row>
23759 <row>
23760 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23761 \begin_inset Text
23762
23763 \begin_layout Plain Layout
23764
23765 \backslash
23766 mid
23767 \end_layout
23768
23769 \end_inset
23770 </cell>
23771 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23772 \begin_inset Text
23773
23774 \begin_layout Plain Layout
23775 \begin_inset Formula $\mid$
23776 \end_inset
23777
23778
23779 \end_layout
23780
23781 \end_inset
23782 </cell>
23783 </row>
23784 <row>
23785 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
23786 \begin_inset Text
23787
23788 \begin_layout Plain Layout
23789
23790 \backslash
23791 nmid
23792 \end_layout
23793
23794 \end_inset
23795 </cell>
23796 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
23797 \begin_inset Text
23798
23799 \begin_layout Plain Layout
23800 \begin_inset Formula $\nmid$
23801 \end_inset
23802
23803
23804 \end_layout
23805
23806 \end_inset
23807 </cell>
23808 </row>
23809 </lyxtabular>
23810
23811 \end_inset
23812
23813
23814 \begin_inset space \hfill{}
23815 \end_inset
23816
23817
23818 \begin_inset Tabular
23819 <lyxtabular version="3" rows="17" columns="2">
23820 <features tabularvalignment="middle">
23821 <column alignment="center" valignment="top" width="0pt">
23822 <column alignment="center" valignment="top" width="0pt">
23823 <row>
23824 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
23825 \begin_inset Text
23826
23827 \begin_layout Plain Layout
23828 Befehl
23829 \end_layout
23830
23831 \end_inset
23832 </cell>
23833 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
23834 \begin_inset Text
23835
23836 \begin_layout Plain Layout
23837 Ergebnis
23838 \end_layout
23839
23840 \end_inset
23841 </cell>
23842 </row>
23843 <row>
23844 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23845 \begin_inset Text
23846
23847 \begin_layout Plain Layout
23848 =
23849 \end_layout
23850
23851 \end_inset
23852 </cell>
23853 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23854 \begin_inset Text
23855
23856 \begin_layout Plain Layout
23857 \begin_inset Formula $=$
23858 \end_inset
23859
23860
23861 \end_layout
23862
23863 \end_inset
23864 </cell>
23865 </row>
23866 <row>
23867 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23868 \begin_inset Text
23869
23870 \begin_layout Plain Layout
23871
23872 \backslash
23873 not=
23874 \end_layout
23875
23876 \end_inset
23877 </cell>
23878 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23879 \begin_inset Text
23880
23881 \begin_layout Plain Layout
23882 \begin_inset Formula $\not=$
23883 \end_inset
23884
23885
23886 \end_layout
23887
23888 \end_inset
23889 </cell>
23890 </row>
23891 <row>
23892 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23893 \begin_inset Text
23894
23895 \begin_layout Plain Layout
23896
23897 \backslash
23898 equiv
23899 \end_layout
23900
23901 \end_inset
23902 </cell>
23903 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23904 \begin_inset Text
23905
23906 \begin_layout Plain Layout
23907 \begin_inset Formula $\equiv$
23908 \end_inset
23909
23910
23911 \end_layout
23912
23913 \end_inset
23914 </cell>
23915 </row>
23916 <row>
23917 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23918 \begin_inset Text
23919
23920 \begin_layout Plain Layout
23921
23922 \backslash
23923 sim
23924 \end_layout
23925
23926 \end_inset
23927 </cell>
23928 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23929 \begin_inset Text
23930
23931 \begin_layout Plain Layout
23932 \begin_inset Formula $\sim$
23933 \end_inset
23934
23935
23936 \end_layout
23937
23938 \end_inset
23939 </cell>
23940 </row>
23941 <row>
23942 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23943 \begin_inset Text
23944
23945 \begin_layout Plain Layout
23946
23947 \backslash
23948 simeq
23949 \end_layout
23950
23951 \end_inset
23952 </cell>
23953 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23954 \begin_inset Text
23955
23956 \begin_layout Plain Layout
23957 \begin_inset Formula $\simeq$
23958 \end_inset
23959
23960
23961 \end_layout
23962
23963 \end_inset
23964 </cell>
23965 </row>
23966 <row>
23967 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23968 \begin_inset Text
23969
23970 \begin_layout Plain Layout
23971
23972 \backslash
23973 approx
23974 \end_layout
23975
23976 \end_inset
23977 </cell>
23978 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
23979 \begin_inset Text
23980
23981 \begin_layout Plain Layout
23982 \begin_inset Formula $\approx$
23983 \end_inset
23984
23985
23986 \end_layout
23987
23988 \end_inset
23989 </cell>
23990 </row>
23991 <row>
23992 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
23993 \begin_inset Text
23994
23995 \begin_layout Plain Layout
23996
23997 \backslash
23998 cong
23999 \end_layout
24000
24001 \end_inset
24002 </cell>
24003 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24004 \begin_inset Text
24005
24006 \begin_layout Plain Layout
24007 \begin_inset Formula $\cong$
24008 \end_inset
24009
24010
24011 \end_layout
24012
24013 \end_inset
24014 </cell>
24015 </row>
24016 <row>
24017 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24018 \begin_inset Text
24019
24020 \begin_layout Plain Layout
24021
24022 \backslash
24023 bowtie
24024 \end_layout
24025
24026 \end_inset
24027 </cell>
24028 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24029 \begin_inset Text
24030
24031 \begin_layout Plain Layout
24032 \begin_inset Formula $\bowtie$
24033 \end_inset
24034
24035
24036 \end_layout
24037
24038 \end_inset
24039 </cell>
24040 </row>
24041 <row>
24042 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24043 \begin_inset Text
24044
24045 \begin_layout Plain Layout
24046
24047 \backslash
24048 notin
24049 \end_layout
24050
24051 \end_inset
24052 </cell>
24053 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24054 \begin_inset Text
24055
24056 \begin_layout Plain Layout
24057 \begin_inset Formula $\notin$
24058 \end_inset
24059
24060
24061 \end_layout
24062
24063 \end_inset
24064 </cell>
24065 </row>
24066 <row>
24067 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24068 \begin_inset Text
24069
24070 \begin_layout Plain Layout
24071
24072 \backslash
24073 perp
24074 \end_layout
24075
24076 \end_inset
24077 </cell>
24078 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24079 \begin_inset Text
24080
24081 \begin_layout Plain Layout
24082 \begin_inset Formula $\perp$
24083 \end_inset
24084
24085
24086 \end_layout
24087
24088 \end_inset
24089 </cell>
24090 </row>
24091 <row>
24092 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24093 \begin_inset Text
24094
24095 \begin_layout Plain Layout
24096
24097 \backslash
24098 propto
24099 \end_layout
24100
24101 \end_inset
24102 </cell>
24103 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24104 \begin_inset Text
24105
24106 \begin_layout Plain Layout
24107 \begin_inset Formula $\propto$
24108 \end_inset
24109
24110
24111 \end_layout
24112
24113 \end_inset
24114 </cell>
24115 </row>
24116 <row>
24117 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24118 \begin_inset Text
24119
24120 \begin_layout Plain Layout
24121
24122 \backslash
24123 asymp
24124 \end_layout
24125
24126 \end_inset
24127 </cell>
24128 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24129 \begin_inset Text
24130
24131 \begin_layout Plain Layout
24132 \begin_inset Formula $\asymp$
24133 \end_inset
24134
24135
24136 \end_layout
24137
24138 \end_inset
24139 </cell>
24140 </row>
24141 <row>
24142 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24143 \begin_inset Text
24144
24145 \begin_layout Plain Layout
24146
24147 \backslash
24148 doteq
24149 \end_layout
24150
24151 \end_inset
24152 </cell>
24153 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24154 \begin_inset Text
24155
24156 \begin_layout Plain Layout
24157 \begin_inset Formula $\doteq$
24158 \end_inset
24159
24160
24161 \end_layout
24162
24163 \end_inset
24164 </cell>
24165 </row>
24166 <row>
24167 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24168 \begin_inset Text
24169
24170 \begin_layout Plain Layout
24171
24172 \backslash
24173 circeq
24174 \end_layout
24175
24176 \end_inset
24177 </cell>
24178 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24179 \begin_inset Text
24180
24181 \begin_layout Plain Layout
24182 \begin_inset Formula $\circeq$
24183 \end_inset
24184
24185
24186 \end_layout
24187
24188 \end_inset
24189 </cell>
24190 </row>
24191 <row>
24192 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24193 \begin_inset Text
24194
24195 \begin_layout Plain Layout
24196
24197 \backslash
24198 models
24199 \end_layout
24200
24201 \end_inset
24202 </cell>
24203 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24204 \begin_inset Text
24205
24206 \begin_layout Plain Layout
24207 \begin_inset Formula $\models$
24208 \end_inset
24209
24210
24211 \end_layout
24212
24213 \end_inset
24214 </cell>
24215 </row>
24216 <row>
24217 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24218 \begin_inset Text
24219
24220 \begin_layout Plain Layout
24221
24222 \backslash
24223 widehat=
24224 \end_layout
24225
24226 \end_inset
24227 </cell>
24228 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
24229 \begin_inset Text
24230
24231 \begin_layout Plain Layout
24232 \begin_inset Formula $\widehat{=}$
24233 \end_inset
24234
24235
24236 \end_layout
24237
24238 \end_inset
24239 </cell>
24240 </row>
24241 </lyxtabular>
24242
24243 \end_inset
24244
24245
24246 \begin_inset space \hfill{}
24247 \end_inset
24248
24249
24250 \begin_inset Tabular
24251 <lyxtabular version="3" rows="17" columns="2">
24252 <features tabularvalignment="middle">
24253 <column alignment="center" valignment="top" width="0pt">
24254 <column alignment="center" valignment="top" width="0pt">
24255 <row>
24256 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24257 \begin_inset Text
24258
24259 \begin_layout Plain Layout
24260 Befehl
24261 \end_layout
24262
24263 \end_inset
24264 </cell>
24265 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
24266 \begin_inset Text
24267
24268 \begin_layout Plain Layout
24269 Ergebnis
24270 \end_layout
24271
24272 \end_inset
24273 </cell>
24274 </row>
24275 <row>
24276 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24277 \begin_inset Text
24278
24279 \begin_layout Plain Layout
24280 >
24281 \end_layout
24282
24283 \end_inset
24284 </cell>
24285 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24286 \begin_inset Text
24287
24288 \begin_layout Plain Layout
24289 \begin_inset Formula $>$
24290 \end_inset
24291
24292
24293 \end_layout
24294
24295 \end_inset
24296 </cell>
24297 </row>
24298 <row>
24299 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24300 \begin_inset Text
24301
24302 \begin_layout Plain Layout
24303
24304 \backslash
24305 ge
24306 \end_layout
24307
24308 \end_inset
24309 </cell>
24310 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24311 \begin_inset Text
24312
24313 \begin_layout Plain Layout
24314 \begin_inset Formula $\ge$
24315 \end_inset
24316
24317
24318 \end_layout
24319
24320 \end_inset
24321 </cell>
24322 </row>
24323 <row>
24324 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24325 \begin_inset Text
24326
24327 \begin_layout Plain Layout
24328
24329 \backslash
24330 gg
24331 \end_layout
24332
24333 \end_inset
24334 </cell>
24335 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24336 \begin_inset Text
24337
24338 \begin_layout Plain Layout
24339 \begin_inset Formula $\gg$
24340 \end_inset
24341
24342
24343 \end_layout
24344
24345 \end_inset
24346 </cell>
24347 </row>
24348 <row>
24349 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24350 \begin_inset Text
24351
24352 \begin_layout Plain Layout
24353
24354 \backslash
24355 succ
24356 \end_layout
24357
24358 \end_inset
24359 </cell>
24360 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24361 \begin_inset Text
24362
24363 \begin_layout Plain Layout
24364 \begin_inset Formula $\succ$
24365 \end_inset
24366
24367
24368 \end_layout
24369
24370 \end_inset
24371 </cell>
24372 </row>
24373 <row>
24374 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24375 \begin_inset Text
24376
24377 \begin_layout Plain Layout
24378
24379 \backslash
24380 succeq
24381 \end_layout
24382
24383 \end_inset
24384 </cell>
24385 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24386 \begin_inset Text
24387
24388 \begin_layout Plain Layout
24389 \begin_inset Formula $\succeq$
24390 \end_inset
24391
24392
24393 \end_layout
24394
24395 \end_inset
24396 </cell>
24397 </row>
24398 <row>
24399 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24400 \begin_inset Text
24401
24402 \begin_layout Plain Layout
24403
24404 \backslash
24405 supset
24406 \end_layout
24407
24408 \end_inset
24409 </cell>
24410 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24411 \begin_inset Text
24412
24413 \begin_layout Plain Layout
24414 \begin_inset Formula $\supset$
24415 \end_inset
24416
24417
24418 \end_layout
24419
24420 \end_inset
24421 </cell>
24422 </row>
24423 <row>
24424 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24425 \begin_inset Text
24426
24427 \begin_layout Plain Layout
24428
24429 \backslash
24430 supseteq
24431 \end_layout
24432
24433 \end_inset
24434 </cell>
24435 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24436 \begin_inset Text
24437
24438 \begin_layout Plain Layout
24439 \begin_inset Formula $\supseteq$
24440 \end_inset
24441
24442
24443 \end_layout
24444
24445 \end_inset
24446 </cell>
24447 </row>
24448 <row>
24449 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24450 \begin_inset Text
24451
24452 \begin_layout Plain Layout
24453
24454 \backslash
24455 sqsupseteq
24456 \end_layout
24457
24458 \end_inset
24459 </cell>
24460 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24461 \begin_inset Text
24462
24463 \begin_layout Plain Layout
24464 \begin_inset Formula $\sqsupseteq$
24465 \end_inset
24466
24467
24468 \end_layout
24469
24470 \end_inset
24471 </cell>
24472 </row>
24473 <row>
24474 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24475 \begin_inset Text
24476
24477 \begin_layout Plain Layout
24478
24479 \backslash
24480 ni
24481 \end_layout
24482
24483 \end_inset
24484 </cell>
24485 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24486 \begin_inset Text
24487
24488 \begin_layout Plain Layout
24489 \begin_inset Formula $\ni$
24490 \end_inset
24491
24492
24493 \end_layout
24494
24495 \end_inset
24496 </cell>
24497 </row>
24498 <row>
24499 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24500 \begin_inset Text
24501
24502 \begin_layout Plain Layout
24503
24504 \backslash
24505 dashv
24506 \end_layout
24507
24508 \end_inset
24509 </cell>
24510 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24511 \begin_inset Text
24512
24513 \begin_layout Plain Layout
24514 \begin_inset Formula $\dashv$
24515 \end_inset
24516
24517
24518 \end_layout
24519
24520 \end_inset
24521 </cell>
24522 </row>
24523 <row>
24524 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24525 \begin_inset Text
24526
24527 \begin_layout Plain Layout
24528
24529 \backslash
24530 frown
24531 \end_layout
24532
24533 \end_inset
24534 </cell>
24535 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24536 \begin_inset Text
24537
24538 \begin_layout Plain Layout
24539 \begin_inset Formula $\frown$
24540 \end_inset
24541
24542
24543 \end_layout
24544
24545 \end_inset
24546 </cell>
24547 </row>
24548 <row>
24549 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24550 \begin_inset Text
24551
24552 \begin_layout Plain Layout
24553
24554 \backslash
24555 rhd
24556 \end_layout
24557
24558 \end_inset
24559 </cell>
24560 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24561 \begin_inset Text
24562
24563 \begin_layout Plain Layout
24564 \begin_inset Formula $\rhd$
24565 \end_inset
24566
24567
24568 \end_layout
24569
24570 \end_inset
24571 </cell>
24572 </row>
24573 <row>
24574 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24575 \begin_inset Text
24576
24577 \begin_layout Plain Layout
24578
24579 \backslash
24580 unrhd
24581 \end_layout
24582
24583 \end_inset
24584 </cell>
24585 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24586 \begin_inset Text
24587
24588 \begin_layout Plain Layout
24589 \begin_inset Formula $\unrhd$
24590 \end_inset
24591
24592
24593 \end_layout
24594
24595 \end_inset
24596 </cell>
24597 </row>
24598 <row>
24599 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24600 \begin_inset Text
24601
24602 \begin_layout Plain Layout
24603
24604 \backslash
24605 lessgtr
24606 \end_layout
24607
24608 \end_inset
24609 </cell>
24610 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24611 \begin_inset Text
24612
24613 \begin_layout Plain Layout
24614 \begin_inset Formula $\lessgtr$
24615 \end_inset
24616
24617
24618 \end_layout
24619
24620 \end_inset
24621 </cell>
24622 </row>
24623 <row>
24624 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
24625 \begin_inset Text
24626
24627 \begin_layout Plain Layout
24628
24629 \backslash
24630 parallel
24631 \end_layout
24632
24633 \end_inset
24634 </cell>
24635 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
24636 \begin_inset Text
24637
24638 \begin_layout Plain Layout
24639 \begin_inset Formula $\parallel$
24640 \end_inset
24641
24642
24643 \end_layout
24644
24645 \end_inset
24646 </cell>
24647 </row>
24648 <row>
24649 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24650 \begin_inset Text
24651
24652 \begin_layout Plain Layout
24653
24654 \backslash
24655 nparallel
24656 \end_layout
24657
24658 \end_inset
24659 </cell>
24660 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
24661 \begin_inset Text
24662
24663 \begin_layout Plain Layout
24664 \begin_inset Formula $\nparallel$
24665 \end_inset
24666
24667
24668 \end_layout
24669
24670 \end_inset
24671 </cell>
24672 </row>
24673 </lyxtabular>
24674
24675 \end_inset
24676
24677
24678 \begin_inset space \hfill{}
24679 \end_inset
24680
24681
24682 \end_layout
24683
24684 \begin_layout Standard
24685 \begin_inset VSpace medskip
24686 \end_inset
24687
24688 Die Zeichen 
24689 \series bold
24690
24691 \backslash
24692 lhd
24693 \series default
24694  bzw.
24695  
24696 \series bold
24697
24698 \backslash
24699 rhd
24700 \series default
24701  sind größer als die gleich aussehenden Operatoren
24702 \begin_inset Newline linebreak
24703 \end_inset
24704
24705
24706 \series bold
24707
24708 \backslash
24709 triangleleft
24710 \series default
24711  bzw.
24712  
24713 \series bold
24714
24715 \backslash
24716 triangleright
24717 \series default
24718 .
24719 \end_layout
24720
24721 \begin_layout Standard
24722 Relationen sind im Gegensatz zu Symbolen immer von Leerraum umgeben.
24723 \end_layout
24724
24725 \begin_layout Standard
24726 Relationen mit Beschriftungen können mit Hilfe des Befehls 
24727 \series bold
24728
24729 \backslash
24730 stackrel
24731 \series default
24732
24733 \begin_inset Index idx
24734 status collapsed
24735
24736 \begin_layout Plain Layout
24737 Befehle ! S ! 
24738 \backslash
24739 stackrel
24740 \end_layout
24741
24742 \end_inset
24743
24744  erstellt werden:
24745 \end_layout
24746
24747 \begin_layout Standard
24748 \align center
24749 \begin_inset Tabular
24750 <lyxtabular version="3" rows="2" columns="2">
24751 <features tabularvalignment="middle">
24752 <column alignment="center" valignment="top" width="0">
24753 <column alignment="center" valignment="top" width="0">
24754 <row>
24755 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24756 \begin_inset Text
24757
24758 \begin_layout Plain Layout
24759 Befehl
24760 \end_layout
24761
24762 \end_inset
24763 </cell>
24764 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
24765 \begin_inset Text
24766
24767 \begin_layout Plain Layout
24768 Ergebnis
24769 \begin_inset Note Note
24770 status collapsed
24771
24772 \begin_layout Plain Layout
24773
24774 \series bold
24775
24776 \backslash
24777 raisebox
24778 \series default
24779  dient nur als Abstandhalter.
24780 \end_layout
24781
24782 \end_inset
24783
24784
24785 \end_layout
24786
24787 \end_inset
24788 </cell>
24789 </row>
24790 <row>
24791 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24792 \begin_inset Text
24793
24794 \begin_layout Plain Layout
24795 A(r)
24796 \backslash
24797 stackrel
24798 \begin_inset ERT
24799 status collapsed
24800
24801 \begin_layout Plain Layout
24802
24803
24804 \backslash
24805 leer 
24806 \end_layout
24807
24808 \end_inset
24809
24810 r
24811 \backslash
24812 to
24813 \backslash
24814 infty
24815 \begin_inset ERT
24816 status collapsed
24817
24818 \begin_layout Plain Layout
24819
24820
24821 \backslash
24822 leer 
24823 \end_layout
24824
24825 \end_inset
24826
24827
24828 \begin_inset Formula $\downarrow$
24829 \end_inset
24830
24831
24832 \backslash
24833 approx
24834 \begin_inset ERT
24835 status collapsed
24836
24837 \begin_layout Plain Layout
24838
24839
24840 \backslash
24841 leer 
24842 \end_layout
24843
24844 \end_inset
24845
24846
24847 \begin_inset ERT
24848 status collapsed
24849
24850 \begin_layout Plain Layout
24851
24852
24853 \backslash
24854 leer 
24855 \end_layout
24856
24857 \end_inset
24858
24859 B
24860 \end_layout
24861
24862 \end_inset
24863 </cell>
24864 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
24865 \begin_inset Text
24866
24867 \begin_layout Plain Layout
24868 \begin_inset Formula $\raisebox{5mm}{}A(r)\stackrel{r\to\infty}{\approx}B$
24869 \end_inset
24870
24871
24872 \end_layout
24873
24874 \end_inset
24875 </cell>
24876 </row>
24877 </lyxtabular>
24878
24879 \end_inset
24880
24881
24882 \end_layout
24883
24884 \begin_layout Section
24885 Funktionen
24886 \end_layout
24887
24888 \begin_layout Subsection
24889 Vordefinierte Funktionen
24890 \begin_inset CommandInset label
24891 LatexCommand label
24892 name "sub:Vordefinierte-Funktionen"
24893
24894 \end_inset
24895
24896
24897 \begin_inset Index idx
24898 status collapsed
24899
24900 \begin_layout Plain Layout
24901 Funktionen ! vordefinierte
24902 \end_layout
24903
24904 \end_inset
24905
24906
24907 \end_layout
24908
24909 \begin_layout Standard
24910 Allgemein werden in mathematischen Ausdrücken Variablen 
24911 \shape italic
24912 kursiv
24913 \shape default
24914  gesetzt, Funktionsnamen hingegen nicht, denn 
24915 \begin_inset Formula $sin$
24916 \end_inset
24917
24918  könnte als 
24919 \begin_inset Formula $s\cdot i\cdot n$
24920 \end_inset
24921
24922  missverstanden werden.
24923  Aus diesem Grund gibt es vordefinierte Funktionen, die zusätzlich von Vorfaktor
24924 en etwas abgesetzt sind.
24925  Sie werden als Befehle mit einem Backslash vor dem Funktionsnamen eingefügt.
24926 \end_layout
24927
24928 \begin_layout Standard
24929 \align center
24930 \begin_inset Tabular
24931 <lyxtabular version="3" rows="2" columns="4">
24932 <features tabularvalignment="middle">
24933 <column alignment="center" valignment="top" width="0pt">
24934 <column alignment="center" valignment="top" width="0pt">
24935 <column alignment="center" valignment="top" width="0pt">
24936 <column alignment="center" valignment="top" width="0pt">
24937 <row>
24938 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24939 \begin_inset Text
24940
24941 \begin_layout Plain Layout
24942 Befehl
24943 \end_layout
24944
24945 \end_inset
24946 </cell>
24947 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
24948 \begin_inset Text
24949
24950 \begin_layout Plain Layout
24951 Ergebnis
24952 \end_layout
24953
24954 \end_inset
24955 </cell>
24956 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24957 \begin_inset Text
24958
24959 \begin_layout Plain Layout
24960 Befehl
24961 \end_layout
24962
24963 \end_inset
24964 </cell>
24965 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
24966 \begin_inset Text
24967
24968 \begin_layout Plain Layout
24969 Ergebnis
24970 \end_layout
24971
24972 \end_inset
24973 </cell>
24974 </row>
24975 <row>
24976 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24977 \begin_inset Text
24978
24979 \begin_layout Plain Layout
24980 Asin(x)+B
24981 \end_layout
24982
24983 \end_inset
24984 </cell>
24985 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
24986 \begin_inset Text
24987
24988 \begin_layout Plain Layout
24989 \begin_inset Formula $Asin(x)+B$
24990 \end_inset
24991
24992
24993 \end_layout
24994
24995 \end_inset
24996 </cell>
24997 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
24998 \begin_inset Text
24999
25000 \begin_layout Plain Layout
25001 A
25002 \backslash
25003 sin(x)+B
25004 \end_layout
25005
25006 \end_inset
25007 </cell>
25008 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
25009 \begin_inset Text
25010
25011 \begin_layout Plain Layout
25012 \begin_inset Formula $A\sin(x)+B$
25013 \end_inset
25014
25015
25016 \end_layout
25017
25018 \end_inset
25019 </cell>
25020 </row>
25021 </lyxtabular>
25022
25023 \end_inset
25024
25025
25026 \end_layout
25027
25028 \begin_layout Standard
25029 Folgende Funktionen sind vordefiniert:
25030 \end_layout
25031
25032 \begin_layout Standard
25033 \begin_inset VSpace -2mm
25034 \end_inset
25035
25036
25037 \end_layout
25038
25039 \begin_layout Standard
25040 \align center
25041 \begin_inset Tabular
25042 <lyxtabular version="3" rows="9" columns="4">
25043 <features tabularvalignment="middle">
25044 <column alignment="center" valignment="top" width="0pt">
25045 <column alignment="center" valignment="top" width="0pt">
25046 <column alignment="center" valignment="top" width="0pt">
25047 <column alignment="center" valignment="top" width="0pt">
25048 <row>
25049 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25050 \begin_inset Text
25051
25052 \begin_layout Plain Layout
25053 Befehl
25054 \end_layout
25055
25056 \end_inset
25057 </cell>
25058 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25059 \begin_inset Text
25060
25061 \begin_layout Plain Layout
25062 Befehl
25063 \end_layout
25064
25065 \end_inset
25066 </cell>
25067 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25068 \begin_inset Text
25069
25070 \begin_layout Plain Layout
25071 Befehl
25072 \end_layout
25073
25074 \end_inset
25075 </cell>
25076 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
25077 \begin_inset Text
25078
25079 \begin_layout Plain Layout
25080 Befehl
25081 \end_layout
25082
25083 \end_inset
25084 </cell>
25085 </row>
25086 <row>
25087 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25088 \begin_inset Text
25089
25090 \begin_layout Plain Layout
25091
25092 \backslash
25093 sin
25094 \end_layout
25095
25096 \end_inset
25097 </cell>
25098 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25099 \begin_inset Text
25100
25101 \begin_layout Plain Layout
25102
25103 \backslash
25104 sinh
25105 \end_layout
25106
25107 \end_inset
25108 </cell>
25109 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25110 \begin_inset Text
25111
25112 \begin_layout Plain Layout
25113
25114 \backslash
25115 arcsin
25116 \end_layout
25117
25118 \end_inset
25119 </cell>
25120 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25121 \begin_inset Text
25122
25123 \begin_layout Plain Layout
25124
25125 \backslash
25126 sup
25127 \end_layout
25128
25129 \end_inset
25130 </cell>
25131 </row>
25132 <row>
25133 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25134 \begin_inset Text
25135
25136 \begin_layout Plain Layout
25137
25138 \backslash
25139 cos
25140 \end_layout
25141
25142 \end_inset
25143 </cell>
25144 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25145 \begin_inset Text
25146
25147 \begin_layout Plain Layout
25148
25149 \backslash
25150 cosh
25151 \end_layout
25152
25153 \end_inset
25154 </cell>
25155 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25156 \begin_inset Text
25157
25158 \begin_layout Plain Layout
25159
25160 \backslash
25161 arccos
25162 \end_layout
25163
25164 \end_inset
25165 </cell>
25166 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25167 \begin_inset Text
25168
25169 \begin_layout Plain Layout
25170
25171 \backslash
25172 inf
25173 \end_layout
25174
25175 \end_inset
25176 </cell>
25177 </row>
25178 <row>
25179 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25180 \begin_inset Text
25181
25182 \begin_layout Plain Layout
25183
25184 \backslash
25185 tan
25186 \end_layout
25187
25188 \end_inset
25189 </cell>
25190 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25191 \begin_inset Text
25192
25193 \begin_layout Plain Layout
25194
25195 \backslash
25196 tanh
25197 \end_layout
25198
25199 \end_inset
25200 </cell>
25201 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25202 \begin_inset Text
25203
25204 \begin_layout Plain Layout
25205
25206 \backslash
25207 arctan
25208 \end_layout
25209
25210 \end_inset
25211 </cell>
25212 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25213 \begin_inset Text
25214
25215 \begin_layout Plain Layout
25216
25217 \backslash
25218 lim
25219 \end_layout
25220
25221 \end_inset
25222 </cell>
25223 </row>
25224 <row>
25225 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25226 \begin_inset Text
25227
25228 \begin_layout Plain Layout
25229
25230 \backslash
25231 cot
25232 \end_layout
25233
25234 \end_inset
25235 </cell>
25236 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25237 \begin_inset Text
25238
25239 \begin_layout Plain Layout
25240
25241 \backslash
25242 coth
25243 \end_layout
25244
25245 \end_inset
25246 </cell>
25247 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25248 \begin_inset Text
25249
25250 \begin_layout Plain Layout
25251
25252 \backslash
25253 arg
25254 \end_layout
25255
25256 \end_inset
25257 </cell>
25258 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25259 \begin_inset Text
25260
25261 \begin_layout Plain Layout
25262
25263 \backslash
25264 liminf
25265 \end_layout
25266
25267 \end_inset
25268 </cell>
25269 </row>
25270 <row>
25271 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25272 \begin_inset Text
25273
25274 \begin_layout Plain Layout
25275
25276 \backslash
25277 sec
25278 \end_layout
25279
25280 \end_inset
25281 </cell>
25282 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25283 \begin_inset Text
25284
25285 \begin_layout Plain Layout
25286
25287 \backslash
25288 min
25289 \end_layout
25290
25291 \end_inset
25292 </cell>
25293 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25294 \begin_inset Text
25295
25296 \begin_layout Plain Layout
25297
25298 \backslash
25299 deg
25300 \end_layout
25301
25302 \end_inset
25303 </cell>
25304 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25305 \begin_inset Text
25306
25307 \begin_layout Plain Layout
25308
25309 \backslash
25310 limsup
25311 \end_layout
25312
25313 \end_inset
25314 </cell>
25315 </row>
25316 <row>
25317 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25318 \begin_inset Text
25319
25320 \begin_layout Plain Layout
25321
25322 \backslash
25323 csc
25324 \end_layout
25325
25326 \end_inset
25327 </cell>
25328 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25329 \begin_inset Text
25330
25331 \begin_layout Plain Layout
25332
25333 \backslash
25334 max
25335 \end_layout
25336
25337 \end_inset
25338 </cell>
25339 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25340 \begin_inset Text
25341
25342 \begin_layout Plain Layout
25343
25344 \backslash
25345 det
25346 \end_layout
25347
25348 \end_inset
25349 </cell>
25350 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25351 \begin_inset Text
25352
25353 \begin_layout Plain Layout
25354
25355 \backslash
25356 Pr
25357 \end_layout
25358
25359 \end_inset
25360 </cell>
25361 </row>
25362 <row>
25363 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25364 \begin_inset Text
25365
25366 \begin_layout Plain Layout
25367
25368 \backslash
25369 ln
25370 \end_layout
25371
25372 \end_inset
25373 </cell>
25374 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25375 \begin_inset Text
25376
25377 \begin_layout Plain Layout
25378
25379 \backslash
25380 exp
25381 \end_layout
25382
25383 \end_inset
25384 </cell>
25385 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25386 \begin_inset Text
25387
25388 \begin_layout Plain Layout
25389
25390 \backslash
25391 dim
25392 \end_layout
25393
25394 \end_inset
25395 </cell>
25396 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25397 \begin_inset Text
25398
25399 \begin_layout Plain Layout
25400
25401 \backslash
25402 hom
25403 \end_layout
25404
25405 \end_inset
25406 </cell>
25407 </row>
25408 <row>
25409 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25410 \begin_inset Text
25411
25412 \begin_layout Plain Layout
25413
25414 \backslash
25415 lg
25416 \end_layout
25417
25418 \end_inset
25419 </cell>
25420 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25421 \begin_inset Text
25422
25423 \begin_layout Plain Layout
25424
25425 \backslash
25426 log
25427 \end_layout
25428
25429 \end_inset
25430 </cell>
25431 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25432 \begin_inset Text
25433
25434 \begin_layout Plain Layout
25435
25436 \backslash
25437 ker
25438 \end_layout
25439
25440 \end_inset
25441 </cell>
25442 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
25443 \begin_inset Text
25444
25445 \begin_layout Plain Layout
25446
25447 \backslash
25448 gcd
25449 \end_layout
25450
25451 \end_inset
25452 </cell>
25453 </row>
25454 </lyxtabular>
25455
25456 \end_inset
25457
25458
25459 \end_layout
25460
25461 \begin_layout Standard
25462 Sie können auch über den Mathe-Werkzeugleistenknopf 
25463 \begin_inset Graphics
25464         filename ../../images/math/functions.png
25465         scale 85
25466
25467 \end_inset
25468
25469  eingefügt werden.
25470 \end_layout
25471
25472 \begin_layout Subsection
25473 Selbst definierte Funktionen
25474 \begin_inset Index idx
25475 status collapsed
25476
25477 \begin_layout Plain Layout
25478 Funktionen ! selbstdefinierte
25479 \end_layout
25480
25481 \end_inset
25482
25483
25484 \end_layout
25485
25486 \begin_layout Standard
25487 Will man eine Funktion verwenden, die nicht vordefiniert ist, wie z.
25488 \begin_inset space \thinspace{}
25489 \end_inset
25490
25491 B.
25492  die Signumfunktion sgn(x), hat man zwei Möglichkeiten:
25493 \end_layout
25494
25495 \begin_layout Itemize
25496 Man definiert die Funktion selbst.
25497  Dazu gibt man im LaTeX-Vorspann die Zeile
25498 \begin_inset Newline newline
25499 \end_inset
25500
25501
25502 \begin_inset VSpace -3mm
25503 \end_inset
25504
25505
25506 \begin_inset Newline newline
25507 \end_inset
25508
25509
25510 \series bold
25511
25512 \backslash
25513 DeclareMathOperator{
25514 \backslash
25515 sgn}{sgn}
25516 \series default
25517
25518 \begin_inset Index idx
25519 status collapsed
25520
25521 \begin_layout Plain Layout
25522 Befehle ! D ! 
25523 \backslash
25524 dbinom@
25525 \backslash
25526 DeclareMathOperator
25527 \end_layout
25528
25529 \end_inset
25530
25531
25532 \begin_inset Newline newline
25533 \end_inset
25534
25535
25536 \begin_inset VSpace -2mm
25537 \end_inset
25538
25539
25540 \begin_inset Newline newline
25541 \end_inset
25542
25543 ein
25544 \begin_inset Foot
25545 status collapsed
25546
25547 \begin_layout Plain Layout
25548 Näheres zu 
25549 \series bold
25550
25551 \backslash
25552 DeclareMathOperator
25553 \series default
25554  siehe 
25555 \begin_inset CommandInset ref
25556 LatexCommand ref
25557 reference "sub:Selbstdefinierte-Operatoren"
25558
25559 \end_inset
25560
25561 .
25562 \end_layout
25563
25564 \end_inset
25565
25566 .
25567  Nun kann man mit dem Befehl 
25568 \series bold
25569
25570 \backslash
25571 sgn
25572 \series default
25573  die neu definierte Funktion aufrufen.
25574 \end_layout
25575
25576 \begin_layout Itemize
25577 Man schreibt die Formel wie gewohnt, markiert den Formelnamen, also in unserem
25578  Beispiel die Buchstaben 
25579 \emph on
25580 sgn
25581 \emph default
25582 , und wandelt ihn in in mathematischen Text um.
25583  Zwischen Vorfaktor und Funktion fügt man einen kleinen Leerraum ein.
25584 \end_layout
25585
25586 \begin_layout Standard
25587 Das Ergebnis ist bei beiden Methoden dasselbe wie bei einer vordefinierten
25588  Funktion
25589 \begin_inset Foot
25590 status collapsed
25591
25592 \begin_layout Plain Layout
25593 Selbst definierte Funktionen werden in LyX rot, vordefinierte schwarz angezeigt.
25594 \end_layout
25595
25596 \end_inset
25597
25598 :
25599 \end_layout
25600
25601 \begin_layout Standard
25602 \align center
25603 \begin_inset Tabular
25604 <lyxtabular version="3" rows="3" columns="2">
25605 <features tabularvalignment="middle">
25606 <column alignment="center" valignment="top" width="0pt">
25607 <column alignment="center" valignment="top" width="0pt">
25608 <row>
25609 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25610 \begin_inset Text
25611
25612 \begin_layout Plain Layout
25613 Befehl
25614 \end_layout
25615
25616 \end_inset
25617 </cell>
25618 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
25619 \begin_inset Text
25620
25621 \begin_layout Plain Layout
25622 Ergebnis
25623 \end_layout
25624
25625 \end_inset
25626 </cell>
25627 </row>
25628 <row>
25629 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25630 \begin_inset Text
25631
25632 \begin_layout Plain Layout
25633 A
25634 \backslash
25635 sgn(x)+B
25636 \end_layout
25637
25638 \end_inset
25639 </cell>
25640 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
25641 \begin_inset Text
25642
25643 \begin_layout Plain Layout
25644 \begin_inset Formula $A\sgn(x)+B$
25645 \end_inset
25646
25647
25648 \end_layout
25649
25650 \end_inset
25651 </cell>
25652 </row>
25653 <row>
25654 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25655 \begin_inset Text
25656
25657 \begin_layout Plain Layout
25658 A
25659 \backslash
25660 ,
25661 \begin_inset Formula $\underbrace{\textrm{sgn}}_{\textrm{Alt-m}\,\textrm{m}}$
25662 \end_inset
25663
25664 (x)+B
25665 \end_layout
25666
25667 \end_inset
25668 </cell>
25669 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
25670 \begin_inset Text
25671
25672 \begin_layout Plain Layout
25673 \begin_inset Formula $A\,\textrm{sgn}(x)+B$
25674 \end_inset
25675
25676
25677 \end_layout
25678
25679 \end_inset
25680 </cell>
25681 </row>
25682 </lyxtabular>
25683
25684 \end_inset
25685
25686
25687 \end_layout
25688
25689 \begin_layout Standard
25690 Die erste Methode ist besser geeignet, wenn die selbst definierte Funktion
25691  mehrfach verwendet werden soll.
25692 \end_layout
25693
25694 \begin_layout Subsection
25695 Grenzwerte
25696 \begin_inset Index idx
25697 status collapsed
25698
25699 \begin_layout Plain Layout
25700 Grenzwerte
25701 \end_layout
25702
25703 \end_inset
25704
25705
25706 \end_layout
25707
25708 \begin_layout Standard
25709 Für Grenzwerte sind außer 
25710 \series bold
25711
25712 \backslash
25713 lim
25714 \series default
25715
25716 \begin_inset Index idx
25717 status collapsed
25718
25719 \begin_layout Plain Layout
25720 Befehle ! L ! 
25721 \backslash
25722 lim
25723 \end_layout
25724
25725 \end_inset
25726
25727
25728 \series bold
25729
25730 \backslash
25731 liminf
25732 \series default
25733  und 
25734 \series bold
25735
25736 \backslash
25737 limsup
25738 \series default
25739  noch folgende Funktionen definiert:
25740 \end_layout
25741
25742 \begin_layout Standard
25743 \align center
25744 \begin_inset Tabular
25745 <lyxtabular version="3" rows="5" columns="2">
25746 <features tabularvalignment="middle">
25747 <column alignment="center" valignment="top" width="0">
25748 <column alignment="center" valignment="top" width="0">
25749 <row>
25750 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
25751 \begin_inset Text
25752
25753 \begin_layout Plain Layout
25754 Befehl
25755 \end_layout
25756
25757 \end_inset
25758 </cell>
25759 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
25760 \begin_inset Text
25761
25762 \begin_layout Plain Layout
25763 Ergebnis
25764 \begin_inset Note Note
25765 status collapsed
25766
25767 \begin_layout Plain Layout
25768
25769 \series bold
25770
25771 \backslash
25772 raisebox
25773 \series default
25774  dient nur als Abstandhalter.
25775 \end_layout
25776
25777 \end_inset
25778
25779
25780 \end_layout
25781
25782 \end_inset
25783 </cell>
25784 </row>
25785 <row>
25786 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
25787 \begin_inset Text
25788
25789 \begin_layout Plain Layout
25790
25791 \backslash
25792 varliminf
25793 \end_layout
25794
25795 \end_inset
25796 </cell>
25797 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
25798 \begin_inset Text
25799
25800 \begin_layout Plain Layout
25801 \begin_inset Formula $\varliminf$
25802 \end_inset
25803
25804
25805 \end_layout
25806
25807 \end_inset
25808 </cell>
25809 </row>
25810 <row>
25811 <cell alignment="center" valignment="top" leftline="true" usebox="none">
25812 \begin_inset Text
25813
25814 \begin_layout Plain Layout
25815
25816 \backslash
25817 varlimsup
25818 \end_layout
25819
25820 \end_inset
25821 </cell>
25822 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
25823 \begin_inset Text
25824
25825 \begin_layout Plain Layout
25826 \begin_inset Formula $\varlimsup$
25827 \end_inset
25828
25829
25830 \end_layout
25831
25832 \end_inset
25833 </cell>
25834 </row>
25835 <row>
25836 <cell alignment="center" valignment="top" leftline="true" usebox="none">
25837 \begin_inset Text
25838
25839 \begin_layout Plain Layout
25840
25841 \backslash
25842 varprojlim
25843 \end_layout
25844
25845 \end_inset
25846 </cell>
25847 <cell alignment="center" valignment="top" leftline="true" rightline="true" usebox="none">
25848 \begin_inset Text
25849
25850 \begin_layout Plain Layout
25851 \begin_inset Formula $\varprojlim$
25852 \end_inset
25853
25854
25855 \end_layout
25856
25857 \end_inset
25858 </cell>
25859 </row>
25860 <row>
25861 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
25862 \begin_inset Text
25863
25864 \begin_layout Plain Layout
25865
25866 \backslash
25867 varinjlim
25868 \end_layout
25869
25870 \end_inset
25871 </cell>
25872 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
25873 \begin_inset Text
25874
25875 \begin_layout Plain Layout
25876 \begin_inset Formula $\varinjlim$
25877 \end_inset
25878
25879
25880 \begin_inset Formula $\raisebox{-2.5mm}{}$
25881 \end_inset
25882
25883
25884 \end_layout
25885
25886 \end_inset
25887 </cell>
25888 </row>
25889 </lyxtabular>
25890
25891 \end_inset
25892
25893
25894 \end_layout
25895
25896 \begin_layout Standard
25897 \begin_inset VSpace medskip
25898 \end_inset
25899
25900 Der Grenzwert wird durch Tiefstellen erzeugt.
25901  Bei einer eingebetteten Formel wird er rechts neben die Funktion gesetzt:
25902 \end_layout
25903
25904 \begin_layout Standard
25905 \align center
25906 \begin_inset Tabular
25907 <lyxtabular version="3" rows="2" columns="2">
25908 <features tabularvalignment="middle">
25909 <column alignment="center" valignment="top" width="0pt">
25910 <column alignment="center" valignment="top" width="0pt">
25911 <row>
25912 <cell alignment="center" valignment="top" usebox="none">
25913 \begin_inset Text
25914
25915 \begin_layout Plain Layout
25916 Befehl
25917 \end_layout
25918
25919 \end_inset
25920 </cell>
25921 <cell alignment="center" valignment="top" usebox="none">
25922 \begin_inset Text
25923
25924 \begin_layout Plain Layout
25925 \begin_inset space \hspace{}
25926 \length 1cm
25927 \end_inset
25928
25929 Ergebnis
25930 \begin_inset Note Note
25931 status collapsed
25932
25933 \begin_layout Plain Layout
25934 Der Leerraum und 
25935 \series bold
25936
25937 \backslash
25938 raisebox
25939 \series default
25940  dienen nur als Abstandhalter.
25941 \end_layout
25942
25943 \end_inset
25944
25945
25946 \end_layout
25947
25948 \end_inset
25949 </cell>
25950 </row>
25951 <row>
25952 <cell alignment="center" valignment="top" usebox="none">
25953 \begin_inset Text
25954
25955 \begin_layout Plain Layout
25956
25957 \backslash
25958 lim_x
25959 \backslash
25960 to
25961 \begin_inset ERT
25962 status collapsed
25963
25964 \begin_layout Plain Layout
25965
25966
25967 \backslash
25968 leer 
25969 \end_layout
25970
25971 \end_inset
25972
25973 A
25974 \begin_inset ERT
25975 status collapsed
25976
25977 \begin_layout Plain Layout
25978
25979
25980 \backslash
25981 leer 
25982 \end_layout
25983
25984 \end_inset
25985
25986 x=B
25987 \end_layout
25988
25989 \end_inset
25990 </cell>
25991 <cell alignment="center" valignment="top" usebox="none">
25992 \begin_inset Text
25993
25994 \begin_layout Plain Layout
25995 \begin_inset Formula $\hspace{1cm}\raisebox{5mm}{}\lim_{x\to A}x=B$
25996 \end_inset
25997
25998
25999 \end_layout
26000
26001 \end_inset
26002 </cell>
26003 </row>
26004 </lyxtabular>
26005
26006 \end_inset
26007
26008
26009 \end_layout
26010
26011 \begin_layout Standard
26012 In einer abgesetzten Formel steht der Grenzwert wie gewohnt darunter:
26013 \begin_inset Formula 
26014 \[
26015 \lim_{x\to A}x=B
26016 \]
26017
26018 \end_inset
26019
26020
26021 \end_layout
26022
26023 \begin_layout Standard
26024 \begin_inset Newpage newpage
26025 \end_inset
26026
26027
26028 \end_layout
26029
26030 \begin_layout Subsection
26031 Modulo-Funktionen
26032 \begin_inset Index idx
26033 status collapsed
26034
26035 \begin_layout Plain Layout
26036 Funktionen ! Modulo-
26037 \end_layout
26038
26039 \end_inset
26040
26041
26042 \end_layout
26043
26044 \begin_layout Standard
26045 Eine Besonderheit stellt die Modulo-Funktion dar, denn es gibt sie in vier
26046  Varianten.
26047 \end_layout
26048
26049 \begin_layout Standard
26050 Die Varianten in einer abgesetzten Formel:
26051 \begin_inset Formula 
26052 \begin{align*}
26053 \underline{\textrm{Befehl}\raisebox{-0.9mm}{}} &  & \underline{\textrm{Ergebnis}}\\
26054 \mathrm{a\backslash mod\textrm{\leer}b} &  & a\mod b\\
26055 \mathrm{a\backslash pmod\textrm{\leer}b} &  & a\pmod b\\
26056 \mathrm{a\backslash bmod\textrm{\leer}b} &  & a\bmod b\\
26057 \mathrm{a\backslash pod\textrm{\leer}b} &  & a\pod b
26058 \end{align*}
26059
26060 \end_inset
26061
26062
26063 \end_layout
26064
26065 \begin_layout Standard
26066 In einer eingebetteten Formel wird bei allen Varianten vor den Funktionsnamen
26067  weniger Leerraum gesetzt.
26068  Standardmäßig beachten die Modulo-Funktionen nur das erste, folgende Zeichen.
26069  Um mehrere Zeichen zu verwenden, muss man sie in TeX-Klammern setzen:
26070 \begin_inset Formula 
26071 \begin{align*}
26072 \underline{\textrm{Befehl}\raisebox{-0.9mm}{}} &  & \underline{\textrm{Ergebnis}}\\
26073 \mathrm{a\backslash pod\textrm{\leer}bcd} &  & a\pod bcd\\
26074 \mathrm{a\backslash pod\backslash\{bc\to d} &  & a\pod{bc}d
26075 \end{align*}
26076
26077 \end_inset
26078
26079
26080 \end_layout
26081
26082 \begin_layout Section
26083 Sonderzeichen
26084 \begin_inset Index idx
26085 status collapsed
26086
26087 \begin_layout Plain Layout
26088 Sonderzeichen
26089 \end_layout
26090
26091 \end_inset
26092
26093
26094 \end_layout
26095
26096 \begin_layout Subsection
26097 Sonderzeichen im mathematischen Text
26098 \end_layout
26099
26100 \begin_layout Standard
26101 Die folgenden Befehle können nur im mathematischen Textmodus oder im TeX-Modus
26102  verwendet werden:
26103 \end_layout
26104
26105 \begin_layout Standard
26106 \begin_inset space \hfill{}
26107 \end_inset
26108
26109
26110 \begin_inset Tabular
26111 <lyxtabular version="3" rows="8" columns="2">
26112 <features tabularvalignment="middle">
26113 <column alignment="block" valignment="top" width="0">
26114 <column alignment="block" valignment="top" width="0">
26115 <row>
26116 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
26117 \begin_inset Text
26118
26119 \begin_layout Plain Layout
26120 Befehl
26121 \end_layout
26122
26123 \end_inset
26124 </cell>
26125 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
26126 \begin_inset Text
26127
26128 \begin_layout Plain Layout
26129 Ergebnis
26130 \end_layout
26131
26132 \end_inset
26133 </cell>
26134 </row>
26135 <row>
26136 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26137 \begin_inset Text
26138
26139 \begin_layout Plain Layout
26140
26141 \backslash
26142 oe
26143 \end_layout
26144
26145 \end_inset
26146 </cell>
26147 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26148 \begin_inset Text
26149
26150 \begin_layout Plain Layout
26151 \begin_inset Formula $\textrm{œ}$
26152 \end_inset
26153
26154
26155 \end_layout
26156
26157 \end_inset
26158 </cell>
26159 </row>
26160 <row>
26161 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26162 \begin_inset Text
26163
26164 \begin_layout Plain Layout
26165
26166 \backslash
26167 OE
26168 \end_layout
26169
26170 \end_inset
26171 </cell>
26172 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26173 \begin_inset Text
26174
26175 \begin_layout Plain Layout
26176 \begin_inset Formula $\textrm{Œ}$
26177 \end_inset
26178
26179
26180 \end_layout
26181
26182 \end_inset
26183 </cell>
26184 </row>
26185 <row>
26186 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26187 \begin_inset Text
26188
26189 \begin_layout Plain Layout
26190
26191 \backslash
26192 ae
26193 \end_layout
26194
26195 \end_inset
26196 </cell>
26197 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26198 \begin_inset Text
26199
26200 \begin_layout Plain Layout
26201 \begin_inset Formula $\textrm{æ}$
26202 \end_inset
26203
26204
26205 \end_layout
26206
26207 \end_inset
26208 </cell>
26209 </row>
26210 <row>
26211 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26212 \begin_inset Text
26213
26214 \begin_layout Plain Layout
26215
26216 \backslash
26217 AE
26218 \end_layout
26219
26220 \end_inset
26221 </cell>
26222 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26223 \begin_inset Text
26224
26225 \begin_layout Plain Layout
26226 \begin_inset Formula $\textrm{Æ}$
26227 \end_inset
26228
26229
26230 \end_layout
26231
26232 \end_inset
26233 </cell>
26234 </row>
26235 <row>
26236 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26237 \begin_inset Text
26238
26239 \begin_layout Plain Layout
26240
26241 \backslash
26242 aa
26243 \end_layout
26244
26245 \end_inset
26246 </cell>
26247 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26248 \begin_inset Text
26249
26250 \begin_layout Plain Layout
26251 \begin_inset Formula $\textrm{\aa}$
26252 \end_inset
26253
26254
26255 \end_layout
26256
26257 \end_inset
26258 </cell>
26259 </row>
26260 <row>
26261 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
26262 \begin_inset Text
26263
26264 \begin_layout Plain Layout
26265
26266 \backslash
26267 AA
26268 \begin_inset Index idx
26269 status collapsed
26270
26271 \begin_layout Plain Layout
26272
26273 \backslash
26274 @
26275 \begin_inset ERT
26276 status collapsed
26277
26278 \begin_layout Plain Layout
26279
26280
26281 \backslash
26282 textrm{
26283 \backslash
26284 AA}
26285 \end_layout
26286
26287 \end_inset
26288
26289
26290 \end_layout
26291
26292 \end_inset
26293
26294
26295 \end_layout
26296
26297 \end_inset
26298 </cell>
26299 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
26300 \begin_inset Text
26301
26302 \begin_layout Plain Layout
26303 \begin_inset Formula $\textrm{Å}$
26304 \end_inset
26305
26306
26307 \end_layout
26308
26309 \end_inset
26310 </cell>
26311 </row>
26312 <row>
26313 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
26314 \begin_inset Text
26315
26316 \begin_layout Plain Layout
26317
26318 \backslash
26319 i
26320 \end_layout
26321
26322 \end_inset
26323 </cell>
26324 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
26325 \begin_inset Text
26326
26327 \begin_layout Plain Layout
26328 \begin_inset Formula $\textrm{ı}$
26329 \end_inset
26330
26331
26332 \end_layout
26333
26334 \end_inset
26335 </cell>
26336 </row>
26337 </lyxtabular>
26338
26339 \end_inset
26340
26341
26342 \begin_inset space \hfill{}
26343 \end_inset
26344
26345
26346 \begin_inset Tabular
26347 <lyxtabular version="3" rows="8" columns="2">
26348 <features tabularvalignment="middle">
26349 <column alignment="block" valignment="top" width="0">
26350 <column alignment="center" valignment="top" width="0">
26351 <row>
26352 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
26353 \begin_inset Text
26354
26355 \begin_layout Plain Layout
26356 Befehl
26357 \begin_inset Note Note
26358 status collapsed
26359
26360 \begin_layout Plain Layout
26361 Der Leerraum von 0
26362 \begin_inset space \thinspace{}
26363 \end_inset
26364
26365 mm dient nur zur Trennung,da sonst im Ausdruck ¡ bzw.
26366  ¿ erscheinen würde.
26367 \end_layout
26368
26369 \end_inset
26370
26371
26372 \end_layout
26373
26374 \end_inset
26375 </cell>
26376 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
26377 \begin_inset Text
26378
26379 \begin_layout Plain Layout
26380 Ergebnis
26381 \end_layout
26382
26383 \end_inset
26384 </cell>
26385 </row>
26386 <row>
26387 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26388 \begin_inset Text
26389
26390 \begin_layout Plain Layout
26391
26392 \backslash
26393 o
26394 \end_layout
26395
26396 \end_inset
26397 </cell>
26398 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26399 \begin_inset Text
26400
26401 \begin_layout Plain Layout
26402 \begin_inset Formula $\textrm{ø}$
26403 \end_inset
26404
26405
26406 \end_layout
26407
26408 \end_inset
26409 </cell>
26410 </row>
26411 <row>
26412 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26413 \begin_inset Text
26414
26415 \begin_layout Plain Layout
26416
26417 \backslash
26418 O
26419 \end_layout
26420
26421 \end_inset
26422 </cell>
26423 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26424 \begin_inset Text
26425
26426 \begin_layout Plain Layout
26427 \begin_inset Formula $\textrm{Ø}$
26428 \end_inset
26429
26430
26431 \end_layout
26432
26433 \end_inset
26434 </cell>
26435 </row>
26436 <row>
26437 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26438 \begin_inset Text
26439
26440 \begin_layout Plain Layout
26441
26442 \backslash
26443 l
26444 \end_layout
26445
26446 \end_inset
26447 </cell>
26448 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26449 \begin_inset Text
26450
26451 \begin_layout Plain Layout
26452 \begin_inset Formula $\textrm{ł}$
26453 \end_inset
26454
26455
26456 \end_layout
26457
26458 \end_inset
26459 </cell>
26460 </row>
26461 <row>
26462 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26463 \begin_inset Text
26464
26465 \begin_layout Plain Layout
26466
26467 \backslash
26468 L
26469 \end_layout
26470
26471 \end_inset
26472 </cell>
26473 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26474 \begin_inset Text
26475
26476 \begin_layout Plain Layout
26477 \begin_inset Formula $\textrm{Ł}$
26478 \end_inset
26479
26480
26481 \end_layout
26482
26483 \end_inset
26484 </cell>
26485 </row>
26486 <row>
26487 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
26488 \begin_inset Text
26489
26490 \begin_layout Plain Layout
26491 !
26492 \begin_inset space \hspace{}
26493 \length 0mm
26494 \end_inset
26495
26496 `
26497 \begin_inset ERT
26498 status collapsed
26499
26500 \begin_layout Plain Layout
26501
26502
26503 \backslash
26504 leer 
26505 \end_layout
26506
26507 \end_inset
26508
26509
26510 \end_layout
26511
26512 \end_inset
26513 </cell>
26514 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
26515 \begin_inset Text
26516
26517 \begin_layout Plain Layout
26518 \begin_inset Formula $\textrm{!`}$
26519 \end_inset
26520
26521
26522 \end_layout
26523
26524 \end_inset
26525 </cell>
26526 </row>
26527 <row>
26528 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
26529 \begin_inset Text
26530
26531 \begin_layout Plain Layout
26532 ?
26533 \begin_inset space \hspace{}
26534 \length 0mm
26535 \end_inset
26536
26537 `
26538 \begin_inset ERT
26539 status collapsed
26540
26541 \begin_layout Plain Layout
26542
26543
26544 \backslash
26545 leer 
26546 \end_layout
26547
26548 \end_inset
26549
26550
26551 \end_layout
26552
26553 \end_inset
26554 </cell>
26555 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
26556 \begin_inset Text
26557
26558 \begin_layout Plain Layout
26559 \begin_inset Formula $\textrm{?`}$
26560 \end_inset
26561
26562
26563 \end_layout
26564
26565 \end_inset
26566 </cell>
26567 </row>
26568 <row>
26569 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
26570 \begin_inset Text
26571
26572 \begin_layout Plain Layout
26573
26574 \backslash
26575 j
26576 \end_layout
26577
26578 \end_inset
26579 </cell>
26580 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
26581 \begin_inset Text
26582
26583 \begin_layout Plain Layout
26584 \begin_inset Formula $\textrm{ȷ}$
26585 \end_inset
26586
26587
26588 \end_layout
26589
26590 \end_inset
26591 </cell>
26592 </row>
26593 </lyxtabular>
26594
26595 \end_inset
26596
26597
26598 \begin_inset space \hfill{}
26599 \end_inset
26600
26601
26602 \end_layout
26603
26604 \begin_layout Standard
26605 Die Zeichen 
26606 \begin_inset Formula $\textrm{\textrm{Å}}$
26607 \end_inset
26608
26609  und 
26610 \begin_inset Formula $\textrm{\textrm{Ø}}$
26611 \end_inset
26612
26613  können auch über den Mathe-Werkzeugleistenknopf 
26614 \begin_inset Graphics
26615         filename ../../images/math/digamma.png
26616         scale 85
26617
26618 \end_inset
26619
26620  eingefügt werden.
26621 \end_layout
26622
26623 \begin_layout Standard
26624 Eine Ausnahme bilden die Befehle 
26625 \series bold
26626 !
26627 \begin_inset space \hspace{}
26628 \length 0mm
26629 \end_inset
26630
26631 `
26632 \series default
26633  und 
26634 \series bold
26635 ?
26636 \begin_inset space \hspace{}
26637 \length 0mm
26638 \end_inset
26639
26640 `
26641 \series default
26642 , denn man kann sie in LyX direkt in den Text eingeben.
26643 \end_layout
26644
26645 \begin_layout Subsection
26646 Akzente im Text
26647 \begin_inset CommandInset label
26648 LatexCommand label
26649 name "sub:Sonderzeichen-Akzente"
26650
26651 \end_inset
26652
26653
26654 \begin_inset Index idx
26655 status collapsed
26656
26657 \begin_layout Plain Layout
26658 Akzente ! im Text
26659 \end_layout
26660
26661 \end_inset
26662
26663
26664 \end_layout
26665
26666 \begin_layout Standard
26667 Man kann mit den folgenden Befehlen sämtliche Buchstaben akzentuieren.
26668  Die Befehle müssen dazu im TeX-Modus eingegeben werden.
26669 \end_layout
26670
26671 \begin_layout Standard
26672 \begin_inset space \hfill{}
26673 \end_inset
26674
26675
26676 \begin_inset Tabular
26677 <lyxtabular version="3" rows="8" columns="2">
26678 <features tabularvalignment="middle">
26679 <column alignment="block" valignment="top" width="0">
26680 <column alignment="block" valignment="top" width="0">
26681 <row>
26682 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
26683 \begin_inset Text
26684
26685 \begin_layout Plain Layout
26686 Befehl
26687 \end_layout
26688
26689 \end_inset
26690 </cell>
26691 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
26692 \begin_inset Text
26693
26694 \begin_layout Plain Layout
26695 Ergebnis
26696 \end_layout
26697
26698 \end_inset
26699 </cell>
26700 </row>
26701 <row>
26702 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26703 \begin_inset Text
26704
26705 \begin_layout Plain Layout
26706
26707 \backslash
26708
26709 \begin_inset Quotes grd
26710 \end_inset
26711
26712 e
26713 \end_layout
26714
26715 \end_inset
26716 </cell>
26717 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26718 \begin_inset Text
26719
26720 \begin_layout Plain Layout
26721 \begin_inset ERT
26722 status collapsed
26723
26724 \begin_layout Plain Layout
26725
26726
26727 \backslash
26728 "e
26729 \end_layout
26730
26731 \end_inset
26732
26733
26734 \end_layout
26735
26736 \end_inset
26737 </cell>
26738 </row>
26739 <row>
26740 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26741 \begin_inset Text
26742
26743 \begin_layout Plain Layout
26744
26745 \backslash
26746 `e
26747 \end_layout
26748
26749 \end_inset
26750 </cell>
26751 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26752 \begin_inset Text
26753
26754 \begin_layout Plain Layout
26755 \begin_inset ERT
26756 status collapsed
26757
26758 \begin_layout Plain Layout
26759
26760
26761 \backslash
26762 `e
26763 \end_layout
26764
26765 \end_inset
26766
26767
26768 \end_layout
26769
26770 \end_inset
26771 </cell>
26772 </row>
26773 <row>
26774 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26775 \begin_inset Text
26776
26777 \begin_layout Plain Layout
26778
26779 \backslash
26780 ^
26781 \begin_inset ERT
26782 status collapsed
26783
26784 \begin_layout Plain Layout
26785
26786
26787 \backslash
26788 leer 
26789 \end_layout
26790
26791 \end_inset
26792
26793 e
26794 \end_layout
26795
26796 \end_inset
26797 </cell>
26798 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26799 \begin_inset Text
26800
26801 \begin_layout Plain Layout
26802 \begin_inset ERT
26803 status collapsed
26804
26805 \begin_layout Plain Layout
26806
26807
26808 \backslash
26809 ^e
26810 \end_layout
26811
26812 \end_inset
26813
26814
26815 \end_layout
26816
26817 \end_inset
26818 </cell>
26819 </row>
26820 <row>
26821 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26822 \begin_inset Text
26823
26824 \begin_layout Plain Layout
26825
26826 \backslash
26827 =e
26828 \end_layout
26829
26830 \end_inset
26831 </cell>
26832 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26833 \begin_inset Text
26834
26835 \begin_layout Plain Layout
26836 \begin_inset ERT
26837 status collapsed
26838
26839 \begin_layout Plain Layout
26840
26841
26842 \backslash
26843 =e
26844 \end_layout
26845
26846 \end_inset
26847
26848
26849 \end_layout
26850
26851 \end_inset
26852 </cell>
26853 </row>
26854 <row>
26855 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
26856 \begin_inset Text
26857
26858 \begin_layout Plain Layout
26859
26860 \backslash
26861 u
26862 \begin_inset ERT
26863 status collapsed
26864
26865 \begin_layout Plain Layout
26866
26867
26868 \backslash
26869 leer 
26870 \end_layout
26871
26872 \end_inset
26873
26874 e
26875 \end_layout
26876
26877 \end_inset
26878 </cell>
26879 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
26880 \begin_inset Text
26881
26882 \begin_layout Plain Layout
26883 \begin_inset ERT
26884 status collapsed
26885
26886 \begin_layout Plain Layout
26887
26888
26889 \backslash
26890 u e
26891 \end_layout
26892
26893 \end_inset
26894
26895
26896 \end_layout
26897
26898 \end_inset
26899 </cell>
26900 </row>
26901 <row>
26902 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
26903 \begin_inset Text
26904
26905 \begin_layout Plain Layout
26906
26907 \backslash
26908 b
26909 \begin_inset ERT
26910 status collapsed
26911
26912 \begin_layout Plain Layout
26913
26914
26915 \backslash
26916 leer 
26917 \end_layout
26918
26919 \end_inset
26920
26921 e
26922 \end_layout
26923
26924 \end_inset
26925 </cell>
26926 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
26927 \begin_inset Text
26928
26929 \begin_layout Plain Layout
26930 \begin_inset ERT
26931 status collapsed
26932
26933 \begin_layout Plain Layout
26934
26935
26936 \backslash
26937 b e
26938 \end_layout
26939
26940 \end_inset
26941
26942
26943 \end_layout
26944
26945 \end_inset
26946 </cell>
26947 </row>
26948 <row>
26949 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
26950 \begin_inset Text
26951
26952 \begin_layout Plain Layout
26953
26954 \backslash
26955 t
26956 \begin_inset ERT
26957 status collapsed
26958
26959 \begin_layout Plain Layout
26960
26961
26962 \backslash
26963 leer 
26964 \end_layout
26965
26966 \end_inset
26967
26968 ee
26969 \end_layout
26970
26971 \end_inset
26972 </cell>
26973 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
26974 \begin_inset Text
26975
26976 \begin_layout Plain Layout
26977 \begin_inset ERT
26978 status collapsed
26979
26980 \begin_layout Plain Layout
26981
26982
26983 \backslash
26984 t ee
26985 \end_layout
26986
26987 \end_inset
26988
26989
26990 \end_layout
26991
26992 \end_inset
26993 </cell>
26994 </row>
26995 </lyxtabular>
26996
26997 \end_inset
26998
26999
27000 \begin_inset space \hfill{}
27001 \end_inset
27002
27003
27004 \begin_inset Tabular
27005 <lyxtabular version="3" rows="8" columns="2">
27006 <features tabularvalignment="middle">
27007 <column alignment="block" valignment="top" width="0">
27008 <column alignment="center" valignment="top" width="0">
27009 <row>
27010 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
27011 \begin_inset Text
27012
27013 \begin_layout Plain Layout
27014 Befehl
27015 \end_layout
27016
27017 \end_inset
27018 </cell>
27019 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
27020 \begin_inset Text
27021
27022 \begin_layout Plain Layout
27023 Ergebnis
27024 \end_layout
27025
27026 \end_inset
27027 </cell>
27028 </row>
27029 <row>
27030 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27031 \begin_inset Text
27032
27033 \begin_layout Plain Layout
27034
27035 \backslash
27036 H
27037 \begin_inset ERT
27038 status collapsed
27039
27040 \begin_layout Plain Layout
27041
27042
27043 \backslash
27044 leer 
27045 \end_layout
27046
27047 \end_inset
27048
27049 e
27050 \end_layout
27051
27052 \end_inset
27053 </cell>
27054 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
27055 \begin_inset Text
27056
27057 \begin_layout Plain Layout
27058 \begin_inset ERT
27059 status collapsed
27060
27061 \begin_layout Plain Layout
27062
27063
27064 \backslash
27065 H e
27066 \end_layout
27067
27068 \end_inset
27069
27070
27071 \end_layout
27072
27073 \end_inset
27074 </cell>
27075 </row>
27076 <row>
27077 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27078 \begin_inset Text
27079
27080 \begin_layout Plain Layout
27081
27082 \backslash
27083 'e
27084 \end_layout
27085
27086 \end_inset
27087 </cell>
27088 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
27089 \begin_inset Text
27090
27091 \begin_layout Plain Layout
27092 \begin_inset ERT
27093 status collapsed
27094
27095 \begin_layout Plain Layout
27096
27097
27098 \backslash
27099 'e
27100 \end_layout
27101
27102 \end_inset
27103
27104
27105 \end_layout
27106
27107 \end_inset
27108 </cell>
27109 </row>
27110 <row>
27111 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27112 \begin_inset Text
27113
27114 \begin_layout Plain Layout
27115
27116 \backslash
27117 ~e
27118 \begin_inset Index idx
27119 status collapsed
27120
27121 \begin_layout Plain Layout
27122 Tilde
27123 \end_layout
27124
27125 \end_inset
27126
27127
27128 \end_layout
27129
27130 \end_inset
27131 </cell>
27132 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
27133 \begin_inset Text
27134
27135 \begin_layout Plain Layout
27136 \begin_inset ERT
27137 status collapsed
27138
27139 \begin_layout Plain Layout
27140
27141
27142 \backslash
27143 ~e
27144 \end_layout
27145
27146 \end_inset
27147
27148
27149 \end_layout
27150
27151 \end_inset
27152 </cell>
27153 </row>
27154 <row>
27155 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27156 \begin_inset Text
27157
27158 \begin_layout Plain Layout
27159
27160 \backslash
27161 .e
27162 \end_layout
27163
27164 \end_inset
27165 </cell>
27166 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
27167 \begin_inset Text
27168
27169 \begin_layout Plain Layout
27170 \begin_inset ERT
27171 status collapsed
27172
27173 \begin_layout Plain Layout
27174
27175
27176 \backslash
27177 .e
27178 \end_layout
27179
27180 \end_inset
27181
27182
27183 \end_layout
27184
27185 \end_inset
27186 </cell>
27187 </row>
27188 <row>
27189 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
27190 \begin_inset Text
27191
27192 \begin_layout Plain Layout
27193
27194 \backslash
27195 v
27196 \begin_inset ERT
27197 status collapsed
27198
27199 \begin_layout Plain Layout
27200
27201
27202 \backslash
27203 leer 
27204 \end_layout
27205
27206 \end_inset
27207
27208 e
27209 \end_layout
27210
27211 \end_inset
27212 </cell>
27213 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
27214 \begin_inset Text
27215
27216 \begin_layout Plain Layout
27217 \begin_inset ERT
27218 status collapsed
27219
27220 \begin_layout Plain Layout
27221
27222
27223 \backslash
27224 v e
27225 \end_layout
27226
27227 \end_inset
27228
27229
27230 \end_layout
27231
27232 \end_inset
27233 </cell>
27234 </row>
27235 <row>
27236 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
27237 \begin_inset Text
27238
27239 \begin_layout Plain Layout
27240
27241 \backslash
27242 d
27243 \begin_inset ERT
27244 status collapsed
27245
27246 \begin_layout Plain Layout
27247
27248
27249 \backslash
27250 leer 
27251 \end_layout
27252
27253 \end_inset
27254
27255 e
27256 \end_layout
27257
27258 \end_inset
27259 </cell>
27260 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
27261 \begin_inset Text
27262
27263 \begin_layout Plain Layout
27264 \begin_inset ERT
27265 status collapsed
27266
27267 \begin_layout Plain Layout
27268
27269
27270 \backslash
27271 d e
27272 \end_layout
27273
27274 \end_inset
27275
27276
27277 \end_layout
27278
27279 \end_inset
27280 </cell>
27281 </row>
27282 <row>
27283 <cell alignment="center" valignment="top" bottomline="true" leftline="true" usebox="none">
27284 \begin_inset Text
27285
27286 \begin_layout Plain Layout
27287
27288 \backslash
27289 c
27290 \begin_inset ERT
27291 status collapsed
27292
27293 \begin_layout Plain Layout
27294
27295
27296 \backslash
27297 leer 
27298 \end_layout
27299
27300 \end_inset
27301
27302 e
27303 \end_layout
27304
27305 \end_inset
27306 </cell>
27307 <cell alignment="center" valignment="top" bottomline="true" leftline="true" rightline="true" usebox="none">
27308 \begin_inset Text
27309
27310 \begin_layout Plain Layout
27311 \begin_inset ERT
27312 status collapsed
27313
27314 \begin_layout Plain Layout
27315
27316
27317 \backslash
27318 c e
27319 \end_layout
27320
27321 \end_inset
27322
27323
27324 \end_layout
27325
27326 \end_inset
27327 </cell>
27328 </row>
27329 </lyxtabular>
27330
27331 \end_inset
27332
27333
27334 \begin_inset space \hfill{}
27335 \end_inset
27336
27337
27338 \end_layout
27339
27340 \begin_layout Standard
27341 \begin_inset VSpace medskip
27342 \end_inset
27343
27344 Mit dem Befehl 
27345 \series bold
27346
27347 \backslash
27348 t
27349 \series default
27350  können auch zwei verschiedene Zeichen akzentuiert werden.
27351  Der Befehl 
27352 \series bold
27353
27354 \backslash
27355 t
27356 \begin_inset ERT
27357 status collapsed
27358
27359 \begin_layout Plain Layout
27360
27361
27362 \backslash
27363 leer 
27364 \end_layout
27365
27366 \end_inset
27367
27368 sz
27369 \series default
27370  ergibt: 
27371 \begin_inset ERT
27372 status collapsed
27373
27374 \begin_layout Plain Layout
27375
27376
27377 \backslash
27378 t sz
27379 \end_layout
27380
27381 \end_inset
27382
27383
27384 \end_layout
27385
27386 \begin_layout Standard
27387 Die Akzente 
27388 \series bold
27389 `
27390 \series default
27391  , 
27392 \series bold
27393 '
27394 \series default
27395  und 
27396 \series bold
27397 ^
27398 \series default
27399  können in Verbindung mit Selbstlauten auch direkt über die Tastatur eingegeben
27400  werden ohne den TeX-Modus zu benutzen.
27401  Dasselbe gilt für die Tilde
27402 \begin_inset Foot
27403 status collapsed
27404
27405 \begin_layout Plain Layout
27406 Gilt nur für Tastaturen, bei denen die Tilde als Akzent definiert ist.
27407 \end_layout
27408
27409 \end_inset
27410
27411  
27412 \series bold
27413 ~
27414 \series default
27415  in Verbindung mit 
27416 \emph on
27417 a
27418 \emph default
27419  , 
27420 \emph on
27421 n
27422 \emph default
27423  oder 
27424 \emph on
27425 o
27426 \emph default
27427 .
27428 \end_layout
27429
27430 \begin_layout Standard
27431 Die Befehle 
27432 \series bold
27433
27434 \backslash
27435 b
27436 \series default
27437  , 
27438 \series bold
27439
27440 \backslash
27441 c
27442 \series default
27443  , 
27444 \series bold
27445
27446 \backslash
27447 d
27448 \series default
27449  , 
27450 \series bold
27451
27452 \backslash
27453 H
27454 \series default
27455  , 
27456 \series bold
27457
27458 \backslash
27459 t
27460 \series default
27461  , 
27462 \series bold
27463
27464 \backslash
27465 u
27466 \series default
27467  , 
27468 \series bold
27469
27470 \backslash
27471 v
27472 \series default
27473  und direkt über die Tastatur eingegebene Akzente sind auch im mathematischen
27474  Textmodus verfügbar.
27475  Für die restlichen Akzente gibt es in Formeln spezielle Mathebefehle, siehe
27476  
27477 \begin_inset CommandInset ref
27478 LatexCommand ref
27479 reference "sub:Akzente-für-ein"
27480
27481 \end_inset
27482
27483 .
27484 \end_layout
27485
27486 \begin_layout Standard
27487 \begin_inset VSpace bigskip
27488 \end_inset
27489
27490 Des Weiteren kann man mit dem Befehl 
27491 \series bold
27492
27493 \backslash
27494 textcircled
27495 \series default
27496
27497 \begin_inset Index idx
27498 status collapsed
27499
27500 \begin_layout Plain Layout
27501 Befehle ! T ! 
27502 \backslash
27503 textcircled
27504 \end_layout
27505
27506 \end_inset
27507
27508 , ähnlich dem Copyrightsymbol, sämtliche Zahlen und Buchstaben in einen
27509  Kreis setzen, quasi mit einem Kreis akzentuieren.
27510 \end_layout
27511
27512 \begin_layout Standard
27513 \align center
27514 \begin_inset Tabular
27515 <lyxtabular version="3" rows="3" columns="2">
27516 <features tabularvalignment="middle">
27517 <column alignment="center" valignment="top" width="0">
27518 <column alignment="center" valignment="top" width="0">
27519 <row>
27520 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
27521 \begin_inset Text
27522
27523 \begin_layout Plain Layout
27524 Befehl
27525 \end_layout
27526
27527 \end_inset
27528 </cell>
27529 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
27530 \begin_inset Text
27531
27532 \begin_layout Plain Layout
27533 Ergebnis
27534 \begin_inset Note Note
27535 status collapsed
27536
27537 \begin_layout Plain Layout
27538
27539 \series bold
27540
27541 \backslash
27542 raisebox
27543 \series default
27544  in der Formel dient nur als Abstandhalter.
27545 \end_layout
27546
27547 \end_inset
27548
27549
27550 \end_layout
27551
27552 \end_inset
27553 </cell>
27554 </row>
27555 <row>
27556 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27557 \begin_inset Text
27558
27559 \begin_layout Plain Layout
27560
27561 \backslash
27562 textcircled{w}
27563 \end_layout
27564
27565 \end_inset
27566 </cell>
27567 <cell multicolumn="1" alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
27568 \begin_inset Text
27569
27570 \begin_layout Plain Layout
27571 \begin_inset ERT
27572 status collapsed
27573
27574 \begin_layout Plain Layout
27575
27576
27577 \backslash
27578 textcircled{w}
27579 \end_layout
27580
27581 \end_inset
27582
27583
27584 \end_layout
27585
27586 \end_inset
27587 </cell>
27588 </row>
27589 <row>
27590 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
27591 \begin_inset Text
27592
27593 \begin_layout Plain Layout
27594
27595 \backslash
27596 Large 
27597 \backslash
27598 textcircled{
27599 \backslash
27600 normalsize
27601 \backslash
27602 protect
27603 \backslash
27604 raisebox{-1.5pt}{W}}
27605 \end_layout
27606
27607 \end_inset
27608 </cell>
27609 <cell multicolumn="1" alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
27610 \begin_inset Text
27611
27612 \begin_layout Plain Layout
27613 \begin_inset Formula $\raisebox{4.5mm}{}$
27614 \end_inset
27615
27616
27617 \begin_inset ERT
27618 status collapsed
27619
27620 \begin_layout Plain Layout
27621
27622
27623 \backslash
27624 Large 
27625 \backslash
27626 textcircled{
27627 \backslash
27628 normalsize
27629 \backslash
27630 protect
27631 \backslash
27632 raisebox{-1.5pt}W}
27633 \end_layout
27634
27635 \end_inset
27636
27637
27638 \begin_inset Formula $\raisebox{-2mm}{}$
27639 \end_inset
27640
27641
27642 \end_layout
27643
27644 \end_inset
27645 </cell>
27646 </row>
27647 </lyxtabular>
27648
27649 \end_inset
27650
27651
27652 \end_layout
27653
27654 \begin_layout Standard
27655 Man muss darauf achten, dass das Zeichen in einen Kreis passt.
27656  
27657 \series bold
27658
27659 \backslash
27660 Large
27661 \series default
27662
27663 \begin_inset Foot
27664 status collapsed
27665
27666 \begin_layout Plain Layout
27667 siehe 
27668 \begin_inset CommandInset ref
27669 LatexCommand ref
27670 reference "sub:Schriftgrößen"
27671
27672 \end_inset
27673
27674
27675 \end_layout
27676
27677 \end_inset
27678
27679  bestimmt dabei die Größe des Kreises.
27680  Mit Hilfe von 
27681 \series bold
27682
27683 \backslash
27684 raisebox
27685 \series default
27686
27687 \begin_inset Foot
27688 status collapsed
27689
27690 \begin_layout Plain Layout
27691 siehe 
27692 \begin_inset CommandInset ref
27693 LatexCommand ref
27694 reference "sub:Boxen-ohne-Rahmen"
27695
27696 \end_inset
27697
27698
27699 \end_layout
27700
27701 \end_inset
27702
27703  kann man das Zeichen zentrieren.
27704 \end_layout
27705
27706 \begin_layout Subsection
27707 Minuskelziffern
27708 \begin_inset Index idx
27709 status collapsed
27710
27711 \begin_layout Plain Layout
27712 Minuskelziffern
27713 \end_layout
27714
27715 \end_inset
27716
27717
27718 \end_layout
27719
27720 \begin_layout Standard
27721 Minuskelziffern werden mit dem Befehl 
27722 \series bold
27723
27724 \backslash
27725 oldstylenums
27726 \series default
27727
27728 \begin_inset Index idx
27729 status collapsed
27730
27731 \begin_layout Plain Layout
27732 Befehle ! O ! 
27733 \backslash
27734 oldstylenums
27735 \end_layout
27736
27737 \end_inset
27738
27739  erzeugt.
27740  Der Befehl ist sowohl in einer Formel als auch im TeX-Modus verwendbar.
27741  Das Befehlsschema lautet:
27742 \end_layout
27743
27744 \begin_layout Standard
27745
27746 \series bold
27747
27748 \backslash
27749 oldstylenums{Ziffer}
27750 \end_layout
27751
27752 \begin_layout Standard
27753 Der Befehl 
27754 \series bold
27755
27756 \backslash
27757 oldstylenums{0123456789
27758 \series default
27759  ergibt: 
27760 \begin_inset Formula $\oldstylenums{0123456789}$
27761 \end_inset
27762
27763
27764 \end_layout
27765
27766 \begin_layout Subsection
27767 Sonstige Sonderzeichen
27768 \begin_inset CommandInset label
27769 LatexCommand label
27770 name "sub:Sonstige-Sonderzeichen"
27771
27772 \end_inset
27773
27774
27775 \begin_inset Index idx
27776 status collapsed
27777
27778 \begin_layout Plain Layout
27779 Sonderzeichen ! sonstige
27780 \end_layout
27781
27782 \end_inset
27783
27784
27785 \end_layout
27786
27787 \begin_layout Standard
27788 Folgende Zeichen können in eine Formel nur mit Befehlen eingegeben werden:
27789 \end_layout
27790
27791 \begin_layout Standard
27792 \align center
27793 \begin_inset Tabular
27794 <lyxtabular version="3" rows="4" columns="2">
27795 <features tabularvalignment="middle">
27796 <column alignment="center" valignment="top" width="0">
27797 <column alignment="center" valignment="top" width="0">
27798 <row>
27799 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
27800 \begin_inset Text
27801
27802 \begin_layout Plain Layout
27803 Befehl
27804 \end_layout
27805
27806 \end_inset
27807 </cell>
27808 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
27809 \begin_inset Text
27810
27811 \begin_layout Plain Layout
27812 Ergebnis
27813 \end_layout
27814
27815 \end_inset
27816 </cell>
27817 </row>
27818 <row>
27819 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27820 \begin_inset Text
27821
27822 \begin_layout Plain Layout
27823
27824 \backslash
27825 ^
27826 \begin_inset ERT
27827 status collapsed
27828
27829 \begin_layout Plain Layout
27830
27831
27832 \backslash
27833 leer 
27834 \end_layout
27835
27836 \end_inset
27837
27838
27839 \end_layout
27840
27841 \end_inset
27842 </cell>
27843 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
27844 \begin_inset Text
27845
27846 \begin_layout Plain Layout
27847 \begin_inset Formula $\mathcircumflex$
27848 \end_inset
27849
27850
27851 \end_layout
27852
27853 \end_inset
27854 </cell>
27855 </row>
27856 <row>
27857 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
27858 \begin_inset Text
27859
27860 \begin_layout Plain Layout
27861
27862 \backslash
27863 _
27864 \end_layout
27865
27866 \end_inset
27867 </cell>
27868 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
27869 \begin_inset Text
27870
27871 \begin_layout Plain Layout
27872 \begin_inset Formula $\_$
27873 \end_inset
27874
27875
27876 \end_layout
27877
27878 \end_inset
27879 </cell>
27880 </row>
27881 <row>
27882 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
27883 \begin_inset Text
27884
27885 \begin_layout Plain Layout
27886 ^
27887 \begin_inset ERT
27888 status collapsed
27889
27890 \begin_layout Plain Layout
27891
27892
27893 \backslash
27894 leer 
27895 \end_layout
27896
27897 \end_inset
27898
27899
27900 \backslash
27901 circ
27902 \begin_inset Index idx
27903 status collapsed
27904
27905 \begin_layout Plain Layout
27906
27907 \backslash
27908
27909 \end_layout
27910
27911 \end_inset
27912
27913
27914 \end_layout
27915
27916 \end_inset
27917 </cell>
27918 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
27919 \begin_inset Text
27920
27921 \begin_layout Plain Layout
27922 \begin_inset Formula $^{\circ}$
27923 \end_inset
27924
27925
27926 \end_layout
27927
27928 \end_inset
27929 </cell>
27930 </row>
27931 </lyxtabular>
27932
27933 \end_inset
27934
27935
27936 \end_layout
27937
27938 \begin_layout Standard
27939 Das Gradzeichen ° kann dennoch direkt eingegeben werden, wenn der LaTeX-Vorspann
27940  folgende Zeile enthält
27941 \begin_inset Foot
27942 status collapsed
27943
27944 \begin_layout Plain Layout
27945 Mehr dazu ist in 
27946 \begin_inset CommandInset ref
27947 LatexCommand ref
27948 reference "sub:Textzeichen-in-Formeln"
27949
27950 \end_inset
27951
27952  beschrieben.
27953 \end_layout
27954
27955 \end_inset
27956
27957 :
27958 \end_layout
27959
27960 \begin_layout Standard
27961
27962 \series bold
27963
27964 \backslash
27965 DeclareInputText{176}{
27966 \backslash
27967 ifmmode^
27968 \backslash
27969 circ
27970 \backslash
27971 else
27972 \backslash
27973 textdegree
27974 \backslash
27975 fi}
27976 \end_layout
27977
27978 \begin_layout Section
27979 Formelstile
27980 \begin_inset CommandInset label
27981 LatexCommand label
27982 name "sec:Formelstile"
27983
27984 \end_inset
27985
27986
27987 \begin_inset Index idx
27988 status collapsed
27989
27990 \begin_layout Plain Layout
27991 Formel ! Stile
27992 \end_layout
27993
27994 \end_inset
27995
27996
27997 \end_layout
27998
27999 \begin_layout Itemize
28000 Für abgesetzte Formeln gibt es zwei verschiedene Anordnungsstile:
28001 \end_layout
28002
28003 \begin_deeper
28004 \begin_layout Description
28005 Zentriert ist der voreingestellte Standard
28006 \end_layout
28007
28008 \begin_layout Description
28009 Eingerückt dazu muss im Menü 
28010 \family sans
28011 Dokument\SpecialChar \menuseparator
28012 Einstellungen
28013 \family default
28014  unter 
28015 \family sans
28016 Dokumentklasse
28017 \family default
28018  die Option 
28019 \series bold
28020 fleqn
28021 \series default
28022  eingeben werden
28023 \end_layout
28024
28025 \begin_layout Standard
28026 Wird 
28027 \series bold
28028 Eingerückt
28029 \series default
28030  verwendet, kann mit der Länge 
28031 \series bold
28032
28033 \backslash
28034 mathindent
28035 \series default
28036
28037 \begin_inset Index idx
28038 status collapsed
28039
28040 \begin_layout Plain Layout
28041 Befehle ! M ! 
28042 \backslash
28043 mathindent
28044 \end_layout
28045
28046 \end_inset
28047
28048  die Einrückung eingestellt werden.
28049  Soll der Abstand 15
28050 \begin_inset space \thinspace{}
28051 \end_inset
28052
28053 mm betragen, gibt man im LaTeX-Vorspann die Zeile
28054 \end_layout
28055
28056 \begin_layout Standard
28057
28058 \series bold
28059
28060 \backslash
28061 setlength{
28062 \backslash
28063 mathindent}{15mm}
28064 \end_layout
28065
28066 \begin_layout Standard
28067 ein.
28068  Wenn keine Länge vorgegeben wird, wird der voreingestellte Wert von 30
28069 \begin_inset space \thinspace{}
28070 \end_inset
28071
28072 pt verwendet.
28073 \end_layout
28074
28075 \end_deeper
28076 \begin_layout Itemize
28077 Und zwei verschiedene Nummerierungsstile:
28078 \end_layout
28079
28080 \begin_deeper
28081 \begin_layout Description
28082 Rechts ist der voreingestellte Standard
28083 \end_layout
28084
28085 \begin_layout Description
28086 Links dazu muss im Menü 
28087 \family sans
28088 Dokument\SpecialChar \menuseparator
28089 Einstellungen
28090 \family default
28091  unter 
28092 \family sans
28093 Dokumentklasse
28094 \family default
28095  die Option 
28096 \series bold
28097 leqno
28098 \series default
28099  eingeben werden
28100 \end_layout
28101
28102 \end_deeper
28103 \begin_layout Standard
28104
28105 \series bold
28106 fleqn
28107 \series default
28108  und 
28109 \series bold
28110 leqno
28111 \series default
28112  können auch gemeinsam verwendet werden.
28113  Dazu werden beide Optionen, durch ein Komma getrennt, hintereinander geschriebe
28114 n.
28115 \end_layout
28116
28117 \begin_layout Standard
28118 Die eingestellten Stile gelten für alle abgesetzten Formeln eines Dokuments.
28119  Möchte man jedoch in einem Dokument sowohl zentrierte als auch eingerückte
28120  ausgerichtete Formeln setzen, verwendet man den Stil 
28121 \series bold
28122 Zentriert
28123 \series default
28124 .
28125  Die einzurückenden Formeln setzt man dann in eine flalign-Umgebung, siehe
28126  
28127 \begin_inset CommandInset ref
28128 LatexCommand ref
28129 reference "sub:Flalign-Umgebung"
28130
28131 \end_inset
28132
28133 .
28134 \end_layout
28135
28136 \begin_layout Section
28137 Mehrzeilige Formeln
28138 \begin_inset CommandInset label
28139 LatexCommand label
28140 name "sec:Mehrzeilige-Formeln"
28141
28142 \end_inset
28143
28144
28145 \begin_inset Index idx
28146 status collapsed
28147
28148 \begin_layout Plain Layout
28149 Formel ! mehrzeilige
28150 \end_layout
28151
28152 \end_inset
28153
28154
28155 \end_layout
28156
28157 \begin_layout Subsection
28158 Allgemeines
28159 \end_layout
28160
28161 \begin_layout Standard
28162 In LyX werden mehrzeilige Formeln erstellt, wenn man in einer Formel 
28163 \family sans
28164 \series bold
28165 Strg+Enter
28166 \family default
28167 \series default
28168  drückt.
28169  Dies erzeugt entweder eine 
28170 \series bold
28171 eqnarray-Umgebung
28172 \series default
28173 , die in 
28174 \begin_inset CommandInset ref
28175 LatexCommand ref
28176 reference "sub:Eqnarray-Umgebung"
28177
28178 \end_inset
28179
28180  beschrieben ist oder, wenn die Option 
28181 \family sans
28182 AMS-Mathe-Paket verwenden
28183 \family default
28184  in den Dokumenteinstellungen gewählt ist, eine 
28185 \series bold
28186 align-Umgebung
28187 \series default
28188 , die in 
28189 \begin_inset CommandInset ref
28190 LatexCommand ref
28191 reference "sub:Standard-align-Umgebung"
28192
28193 \end_inset
28194
28195  beschrieben ist.
28196 \end_layout
28197
28198 \begin_layout Standard
28199 Es gibt noch weitere mehrzeilige Formelumgebungen, die über das Menü 
28200 \family sans
28201 Einfügen\SpecialChar \menuseparator
28202 Mathe
28203 \family default
28204  erstellt werden können.
28205  Diese Umgebungen werden in den folgenden Kapiteln beschrieben.
28206 \end_layout
28207
28208 \begin_layout Standard
28209 In allen mehrzeiligen Formelumgebungen erstellt man eine neue Zeile, indem
28210  man 
28211 \family sans
28212 Strg+Enter
28213 \family default
28214  drückt.
28215  Um Spalten hinzuzufügen oder zu entfernen, können die Mathe-Werkzeugleistenknöp
28216 fe 
28217 \begin_inset Graphics
28218         filename ../../images/tabular-feature_append-row.png
28219         scale 85
28220
28221 \end_inset
28222
28223  bzw.
28224 \begin_inset space ~
28225 \end_inset
28226
28227
28228 \begin_inset Graphics
28229         filename ../../images/tabular-feature_delete-row.png
28230         scale 85
28231
28232 \end_inset
28233
28234  oder das Menü 
28235 \family sans
28236 Bearbeiten\SpecialChar \menuseparator
28237 Zeilen & Spalten
28238 \family default
28239  verwendet werden.
28240 \end_layout
28241
28242 \begin_layout Subsubsection
28243 Zeilenabstand
28244 \begin_inset CommandInset label
28245 LatexCommand label
28246 name "sub:Zeilenabstand"
28247
28248 \end_inset
28249
28250
28251 \begin_inset Index idx
28252 status collapsed
28253
28254 \begin_layout Plain Layout
28255 Formel ! mehrzeilige ! Zeilenabstand
28256 \end_layout
28257
28258 \end_inset
28259
28260
28261 \end_layout
28262
28263 \begin_layout Standard
28264 Bei mehrzeiligen Formeln fehlt manchmal etwas Platz zwischen den Zeilen:
28265 \begin_inset Formula 
28266 \begin{eqnarray*}
28267 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}\\
28268 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
28269 \end{eqnarray*}
28270
28271 \end_inset
28272
28273
28274 \end_layout
28275
28276 \begin_layout Standard
28277 In LaTeX wird zusätzlicher Zeilenabstand als optionales Argument des Zeilenumbru
28278 chbefehls angegeben.
28279  Dies ist in LyX aber nicht möglich
28280 \begin_inset Foot
28281 status collapsed
28282
28283 \begin_layout Plain Layout
28284 siehe 
28285 \begin_inset CommandInset href
28286 LatexCommand href
28287 name "LyX-Fehler #1505"
28288 target "http://www.lyx.org/trac/ticket/1505"
28289
28290 \end_inset
28291
28292
28293 \end_layout
28294
28295 \end_inset
28296
28297 , weshalb man die ganze Formel im TeX-Modus eingeben muss.
28298  Um für unser Beispiel Leerraum einzufügen, gibt man am Ende der ersten
28299  Zeile den Befehl 
28300 \series bold
28301
28302 \backslash
28303
28304 \backslash
28305 [3mm]
28306 \series default
28307  ein.
28308  Damit erhält man: 
28309 \begin_inset ERT
28310 status collapsed
28311
28312 \begin_layout Plain Layout
28313
28314
28315 \backslash
28316 begin{eqnarray*}
28317 \end_layout
28318
28319 \begin_layout Plain Layout
28320
28321 B^{2}(B^{2}-2r_{g}^{2}+2x_{0}^{2}-2r_{k}^{2})+4x_{0}^{2}x^{2}+4x_{0}xD &
28322  = & 
28323 \backslash
28324 textrm{-}4x^{2}B^{2}+4x_{0}xB^{2}
28325 \backslash
28326
28327 \backslash
28328 [3mm]
28329 \end_layout
28330
28331 \begin_layout Plain Layout
28332
28333 4x^{2}
28334 \backslash
28335 left(B^{2}+x_{0}^{2}
28336 \backslash
28337 right)+4x_{0}x
28338 \backslash
28339 left(D-B^{2}
28340 \backslash
28341 right)+B^{2}
28342 \backslash
28343 left(B^{2}-2r_{g}^{2}+2x_{0}^{2}-2r_{k}^{2}
28344 \backslash
28345 right) & = & 0
28346 \end_layout
28347
28348 \begin_layout Plain Layout
28349
28350
28351 \backslash
28352 end{eqnarray*}
28353 \end_layout
28354
28355 \end_inset
28356
28357
28358 \end_layout
28359
28360 \begin_layout Standard
28361 \begin_inset VSpace bigskip
28362 \end_inset
28363
28364 Möchte man den Zeilenabstand für alle Zeilen einer Formel festlegen, verändert
28365  man die Länge 
28366 \series bold
28367
28368 \backslash
28369 jot
28370 \series default
28371
28372 \begin_inset Index idx
28373 status collapsed
28374
28375 \begin_layout Plain Layout
28376 Befehle ! J ! 
28377 \backslash
28378 jot
28379 \end_layout
28380
28381 \end_inset
28382
28383 .
28384  Es gilt 
28385 \begin_inset Formula $\mbox{Zeilenabstand}=\mathrm{6\, pt+\backslash jot}$
28386 \end_inset
28387
28388 .
28389  Voreingestellt ist für 
28390 \series bold
28391
28392 \backslash
28393 jot
28394 \series default
28395  der Wert 3
28396 \begin_inset space \thinspace{}
28397 \end_inset
28398
28399 pt.
28400  Um wie im vorigen Beispiel 3
28401 \begin_inset space \thinspace{}
28402 \end_inset
28403
28404 mm zusätzlichen Zeilenabstand zu erzeugen, gibt man den Befehl
28405 \end_layout
28406
28407 \begin_layout Standard
28408
28409 \series bold
28410
28411 \backslash
28412 setlength{
28413 \backslash
28414 jot}{3mm+3pt}
28415 \end_layout
28416
28417 \begin_layout Standard
28418 im TeX-Modus vor der Formel ein.
28419  Das setzt voraus, dass das LaTeX-Paket 
28420 \series bold
28421 calc
28422 \series default
28423
28424 \begin_inset Foot
28425 status collapsed
28426
28427 \begin_layout Plain Layout
28428
28429 \series bold
28430 calc
28431 \series default
28432  ist Teil jeder LaTeX-Standardinstallation.
28433 \end_layout
28434
28435 \end_inset
28436
28437
28438 \begin_inset Index idx
28439 status collapsed
28440
28441 \begin_layout Plain Layout
28442 Pakete ! calc
28443 \end_layout
28444
28445 \end_inset
28446
28447  im LaTeX-Vorspann mit der Zeile
28448 \end_layout
28449
28450 \begin_layout Standard
28451
28452 \series bold
28453
28454 \backslash
28455 usepackage{calc}
28456 \end_layout
28457
28458 \begin_layout Standard
28459 geladen wurde.
28460 \end_layout
28461
28462 \begin_layout Standard
28463 Man erhält: 
28464 \begin_inset ERT
28465 status collapsed
28466
28467 \begin_layout Plain Layout
28468
28469
28470 \backslash
28471 setlength{
28472 \backslash
28473 jot}{3mm+3pt}
28474 \end_layout
28475
28476 \end_inset
28477
28478
28479 \begin_inset Formula 
28480 \begin{eqnarray*}
28481 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}\\
28482 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
28483 \end{eqnarray*}
28484
28485 \end_inset
28486
28487
28488 \end_layout
28489
28490 \begin_layout Standard
28491 \begin_inset ERT
28492 status collapsed
28493
28494 \begin_layout Plain Layout
28495
28496
28497 \backslash
28498 setlength{
28499 \backslash
28500 jot}{3pt}
28501 \end_layout
28502
28503 \end_inset
28504
28505  Um wieder zum voreingestellten Abstand zu wechseln, setzt man 
28506 \series bold
28507
28508 \backslash
28509 jot
28510 \series default
28511  auf den Wert 3
28512 \begin_inset space \thinspace{}
28513 \end_inset
28514
28515 pt.
28516 \end_layout
28517
28518 \begin_layout Subsubsection
28519 Spaltenabstand
28520 \begin_inset CommandInset label
28521 LatexCommand label
28522 name "sub:Spaltenabstand"
28523
28524 \end_inset
28525
28526
28527 \begin_inset Index idx
28528 status collapsed
28529
28530 \begin_layout Plain Layout
28531 Formel ! mehrzeilige ! Spaltenabstand
28532 \end_layout
28533
28534 \end_inset
28535
28536
28537 \end_layout
28538
28539 \begin_layout Standard
28540 Mehrzeilige Formeln bilden eine Matrix.
28541  Eine Formel in der Eqnarray-Umgebung ist z.
28542 \begin_inset space \thinspace{}
28543 \end_inset
28544
28545 B.
28546  eine dreispaltige Matrix.
28547  Durch Änderung des Spaltenabstands in dieser Umgebung, kann man den Leerraum
28548  neben den Relationszeichen ändern.
28549 \end_layout
28550
28551 \begin_layout Standard
28552 Der Spaltenabstand wird mit der Länge 
28553 \series bold
28554
28555 \backslash
28556 arraycolsep
28557 \series default
28558
28559 \begin_inset Index idx
28560 status collapsed
28561
28562 \begin_layout Plain Layout
28563 Befehle ! A ! 
28564 \backslash
28565 arraycolsep
28566 \end_layout
28567
28568 \end_inset
28569
28570  festgelegt, wobei gilt:
28571 \begin_inset Newline newline
28572 \end_inset
28573
28574 Spaltenabstand = 2
28575 \begin_inset space \thinspace{}
28576 \end_inset
28577
28578
28579 \series bold
28580
28581 \backslash
28582 arraycolsep
28583 \series default
28584 .
28585 \begin_inset Newline newline
28586 \end_inset
28587
28588 Der im TeX-Modus eingegebene Befehl
28589 \end_layout
28590
28591 \begin_layout Standard
28592
28593 \series bold
28594
28595 \backslash
28596 setlength{
28597 \backslash
28598 arraycolsep}{1cm}
28599 \end_layout
28600
28601 \begin_layout Standard
28602 bewirkt also für alle folgenden Formeln einen Spaltenabstand von 2
28603 \begin_inset space \thinspace{}
28604 \end_inset
28605
28606 cm.
28607  Um wieder zum voreingestellten Abstand zurückzukehren, setzt man 
28608 \series bold
28609
28610 \backslash
28611 arraycolsep
28612 \series default
28613  auf 5
28614 \begin_inset space \thinspace{}
28615 \end_inset
28616
28617 pt.
28618 \end_layout
28619
28620 \begin_layout Standard
28621 Eine Formel mit 2
28622 \begin_inset space \thinspace{}
28623 \end_inset
28624
28625 cm Spaltenabstand:
28626 \begin_inset ERT
28627 status collapsed
28628
28629 \begin_layout Plain Layout
28630
28631
28632 \backslash
28633 setlength{
28634 \backslash
28635 arraycolsep}{1cm}
28636 \end_layout
28637
28638 \end_inset
28639
28640
28641 \begin_inset Formula 
28642 \begin{eqnarray*}
28643 A & = & B\\
28644 C & \ne & A
28645 \end{eqnarray*}
28646
28647 \end_inset
28648
28649 Eine Formel mit dem für Matrizen voreingestellten Spaltenabstand von 10
28650 \begin_inset space \thinspace{}
28651 \end_inset
28652
28653 pt:
28654 \begin_inset ERT
28655 status collapsed
28656
28657 \begin_layout Plain Layout
28658
28659
28660 \backslash
28661 setlength{
28662 \backslash
28663 arraycolsep}{5pt}
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
28678 \end_layout
28679
28680 \begin_layout Subsubsection
28681 Lange Formeln
28682 \begin_inset Index idx
28683 status collapsed
28684
28685 \begin_layout Plain Layout
28686 Formel ! lange
28687 \end_layout
28688
28689 \end_inset
28690
28691
28692 \end_layout
28693
28694 \begin_layout Standard
28695 Lange Formeln kann man wie folgt setzen:
28696 \end_layout
28697
28698 \begin_layout Itemize
28699 Ist eine Seite der Gleichung deutlich kürzer als die Zeilenbreite, wählt
28700  man man diese als linke Seite und schreibt die rechte über zwei Zeilen:
28701 \begin_inset Formula 
28702 \begin{eqnarray}
28703 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 \\
28704  &  & -\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}
28705 \end{eqnarray}
28706
28707 \end_inset
28708
28709 Das Minuszeichen zu Beginn der zweiten Zeile erscheint eigentlich nicht
28710  als Operator, da es das erste Zeichen der Zeile ist.
28711  Deswegen wäre es nicht von Leerraum umgeben und ließe sich schlecht vom
28712  Bruchstrich unterscheiden.
28713  Um das zu verhindern, wurde mit dem Befehl 
28714 \series bold
28715
28716 \backslash
28717 hspace
28718 \series default
28719  3
28720 \begin_inset space \thinspace{}
28721 \end_inset
28722
28723 pt Leerraum hinter das Minuszeichen eingefügt.
28724 \begin_inset Foot
28725 status collapsed
28726
28727 \begin_layout Plain Layout
28728 mehr zu 
28729 \series bold
28730
28731 \backslash
28732 hspace
28733 \series default
28734  siehe 
28735 \begin_inset CommandInset ref
28736 LatexCommand ref
28737 reference "sub:Variabler-Leerraum"
28738
28739 \end_inset
28740
28741
28742 \end_layout
28743
28744 \end_inset
28745
28746
28747 \begin_inset Index idx
28748 status collapsed
28749
28750 \begin_layout Plain Layout
28751 Befehle ! H ! 
28752 \backslash
28753 hspace
28754 \end_layout
28755
28756 \end_inset
28757
28758
28759 \end_layout
28760
28761 \begin_layout Itemize
28762 Sind beide Seiten der Gleichung zu lang, verwendet man den Befehl 
28763 \series bold
28764
28765 \backslash
28766 lefteqn
28767 \series default
28768
28769 \begin_inset Index idx
28770 status collapsed
28771
28772 \begin_layout Plain Layout
28773 Befehle ! L ! 
28774 \backslash
28775 lefteqn
28776 \end_layout
28777
28778 \end_inset
28779
28780 .
28781  Dieser wird in die erste Spalte der ersten Zeile eingegeben und bewirkt,
28782  dass alle weiteren Eingaben die folgenden Spalten überschreiben:
28783 \begin_inset Formula 
28784 \begin{eqnarray}
28785 \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 \\
28786  &  & -\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 \\
28787  &  & =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}
28788 \end{eqnarray}
28789
28790 \end_inset
28791
28792 Nachdem man 
28793 \series bold
28794
28795 \backslash
28796 lefteqn
28797 \series default
28798  eingegeben hat, befindet sich der Cursor in einem pinkfarbenen Kästchen,
28799  das gegenüber dem blauen leicht verschoben ist.
28800  In dieses wird die Formel eingegeben.
28801 \begin_inset Newline newline
28802 \end_inset
28803
28804 Der Inhalt der weiteren Zeilen wird in die zweite oder eine andere Formelspalte
28805  eingegeben.
28806  Je größer die Spaltennummer in die eingegeben wurde, desto größer ist die
28807  Einrückung.
28808 \begin_inset VSpace medskip
28809 \end_inset
28810
28811
28812 \begin_inset Newline newline
28813 \end_inset
28814
28815
28816 \begin_inset Note Greyedout
28817 status open
28818
28819 \begin_layout Plain Layout
28820 Bei der Verwendung von 
28821 \series bold
28822
28823 \backslash
28824 lefteqn
28825 \series default
28826  ist Folgendes zu beachten:
28827 \end_layout
28828
28829 \begin_layout Itemize
28830 Die Formel nutzt nicht die gesamte Seitenbreite aus.
28831  Würde man in obigem Beispiel der ersten Zeile den Term 
28832 \begin_inset Formula $-B^{2}$
28833 \end_inset
28834
28835  anfügen, befände sich dieser außerhalb des Seitenrands.
28836  Um die Breite besser auszunutzen, kann man zu Beginn der ersten Zeile negativen
28837  Leerraum einfügen.
28838 \end_layout
28839
28840 \begin_layout Itemize
28841 Aufgrund eines Fehlers in LyX kann der Cursor nicht mit der Maus in die
28842  erste Zeile gesetzt werden.
28843 \begin_inset Foot
28844 status collapsed
28845
28846 \begin_layout Plain Layout
28847 \begin_inset CommandInset href
28848 LatexCommand href
28849 name "LyX-Fehler #1429"
28850 target "http://www.lyx.org/trac/ticket/1429"
28851
28852 \end_inset
28853
28854
28855 \end_layout
28856
28857 \end_inset
28858
28859  Man kann den Cursor nur an den Anfang der Zeile setzen und ihn mit den
28860  Pfeiltasten bewegen.
28861 \end_layout
28862
28863 \end_inset
28864
28865
28866 \end_layout
28867
28868 \begin_layout Itemize
28869 Weitere Möglichkeiten lange Formeln zu setzen, bieten die in 
28870 \begin_inset CommandInset ref
28871 LatexCommand ref
28872 reference "sub:Multline-Umgebung"
28873
28874 \end_inset
28875
28876  und 
28877 \begin_inset CommandInset ref
28878 LatexCommand ref
28879 reference "sub:Mehrzeilige-Formelteile"
28880
28881 \end_inset
28882
28883  beschriebenen Umgebungen.
28884 \end_layout
28885
28886 \begin_layout Subsubsection
28887 Mehrzeilige Klammern
28888 \begin_inset CommandInset label
28889 LatexCommand label
28890 name "sub:Mehrzeilige-Klammern"
28891
28892 \end_inset
28893
28894
28895 \begin_inset Index idx
28896 status collapsed
28897
28898 \begin_layout Plain Layout
28899 Klammern ! mehrzeilige
28900 \end_layout
28901
28902 \end_inset
28903
28904
28905 \end_layout
28906
28907 \begin_layout Standard
28908 Bei Klammern, die über mehrere Zeilen gehen, tritt folgendes Problem auf:
28909 \begin_inset Formula 
28910 \begin{eqnarray*}
28911 A & = & \sin(x)\left[\prod_{R=1}^{\infty}\frac{1}{R}+\cdots\right.\\
28912  &  & \left.\cdots+B-D\right]
28913 \end{eqnarray*}
28914
28915 \end_inset
28916
28917
28918 \end_layout
28919
28920 \begin_layout Standard
28921 Die schließende Klammer ist kleiner als die öffnende, denn Klammern variabler
28922  Größe dürfen nicht über mehrere Zeilen gehen.
28923 \end_layout
28924
28925 \begin_layout Standard
28926 Um die Größe für die Klammer der zweiten Zeile anzupassen, beendet man die
28927  erste Zeile mit 
28928 \series bold
28929
28930 \backslash
28931 right.
28932 \series default
28933
28934 \begin_inset Index idx
28935 status collapsed
28936
28937 \begin_layout Plain Layout
28938 Befehle ! R ! 
28939 \backslash
28940 right
28941 \end_layout
28942
28943 \end_inset
28944
28945  und beginnt die zweite Zeile mit 
28946 \series bold
28947
28948 \backslash
28949 left.
28950 \begin_inset Foot
28951 status collapsed
28952
28953 \begin_layout Plain Layout
28954 mehr zu 
28955 \series bold
28956
28957 \backslash
28958 left
28959 \series default
28960  und 
28961 \series bold
28962
28963 \backslash
28964 right
28965 \series default
28966  siehe 
28967 \begin_inset CommandInset ref
28968 LatexCommand ref
28969 reference "sub:Automatische-Klammergrößen"
28970
28971 \end_inset
28972
28973
28974 \end_layout
28975
28976 \end_inset
28977
28978
28979 \series default
28980
28981 \begin_inset Index idx
28982 status collapsed
28983
28984 \begin_layout Plain Layout
28985 Befehle ! L ! 
28986 \backslash
28987 left
28988 \end_layout
28989
28990 \end_inset
28991
28992 .
28993  Nach 
28994 \series bold
28995
28996 \backslash
28997 left.
28998
28999 \series default
29000  gibt man den Befehl 
29001 \series bold
29002
29003 \backslash
29004 vphantom
29005 \series default
29006
29007 \begin_inset ERT
29008 status collapsed
29009
29010 \begin_layout Plain Layout
29011
29012
29013 \backslash
29014 leer 
29015 \end_layout
29016
29017 \end_inset
29018
29019
29020 \series bold
29021
29022 \backslash
29023 prod
29024 \series default
29025 ^
29026 \begin_inset ERT
29027 status collapsed
29028
29029 \begin_layout Plain Layout
29030
29031
29032 \backslash
29033 leer 
29034 \end_layout
29035
29036 \end_inset
29037
29038
29039 \series bold
29040
29041 \backslash
29042 infty
29043 \series default
29044
29045 \begin_inset ERT
29046 status collapsed
29047
29048 \begin_layout Plain Layout
29049
29050
29051 \backslash
29052 leer 
29053 \end_layout
29054
29055 \end_inset
29056
29057
29058 \series bold
29059
29060 \begin_inset Formula $\downarrow$
29061 \end_inset
29062
29063 _R=1}
29064 \series default
29065
29066 \begin_inset Index idx
29067 status collapsed
29068
29069 \begin_layout Plain Layout
29070 Befehle ! V ! 
29071 \backslash
29072 vphantom
29073 \end_layout
29074
29075 \end_inset
29076
29077  ein, denn der Multiplikationsoperator mit seinen Grenzen ist das größte
29078  Symbol der ersten Zeile, und daran soll die zweite Klammer angepasst werden.
29079 \end_layout
29080
29081 \begin_layout Standard
29082 Das Ergebnis sieht so aus:
29083 \begin_inset Formula 
29084 \begin{eqnarray*}
29085 A & = & \sin(x)\left[\prod_{R=1}^{\infty}\frac{1}{R}+\cdots\right.\\
29086  &  & \left.\vphantom{\prod_{R=1}^{\infty}}\cdots+B-D\right]
29087 \end{eqnarray*}
29088
29089 \end_inset
29090
29091
29092 \end_layout
29093
29094 \begin_layout Subsection
29095 Align-Umgebungen
29096 \end_layout
29097
29098 \begin_layout Standard
29099 Align-Umgebungen können für jede Art von mehrzeiligen Formeln verwendet
29100  werden.
29101  Sie sind besonders geeignet um mehrere Formeln nebeneinander zu setzen.
29102 \end_layout
29103
29104 \begin_layout Standard
29105 Align-Umgebungen bestehen aus Spalten.
29106  Die ungeradzahligen Spalten sind rechts-, die geradzahligen linksbündig
29107  ausgerichtet.
29108  Jede Zeile einer Align-Umgebung kann nummeriert werden.
29109 \end_layout
29110
29111 \begin_layout Standard
29112 Align-Umgebung werden über das Menü 
29113 \family sans
29114 Einfügen\SpecialChar \menuseparator
29115 Mathe
29116 \family default
29117  erstellt.
29118  Über das Menü 
29119 \family sans
29120 Bearbeiten\SpecialChar \menuseparator
29121 Mathe\SpecialChar \menuseparator
29122 Formelart
29123 \begin_inset space ~
29124 \end_inset
29125
29126 ändern
29127 \family default
29128  können bereits existierende Formeln in Align-Umgebungen umgewandelt werden.
29129 \end_layout
29130
29131 \begin_layout Standard
29132 Um Spalten hinzuzufügen oder zu entfernen, können die Mathe-Werkzeugleistenknöpf
29133
29134 \begin_inset Graphics
29135         filename ../../images/tabular-feature_append-column.png
29136         scale 85
29137
29138 \end_inset
29139
29140  bzw.
29141 \begin_inset space ~
29142 \end_inset
29143
29144
29145 \begin_inset Graphics
29146         filename ../../images/tabular-feature_delete-column.png
29147         scale 85
29148
29149 \end_inset
29150
29151  oder das Menü 
29152 \family sans
29153 Bearbeiten\SpecialChar \menuseparator
29154 Zeilen & Spalten
29155 \family default
29156  verwendet werden.
29157 \end_layout
29158
29159 \begin_layout Subsubsection
29160 Standard align-Umgebung
29161 \begin_inset CommandInset label
29162 LatexCommand label
29163 name "sub:Standard-align-Umgebung"
29164
29165 \end_inset
29166
29167
29168 \begin_inset Index idx
29169 status collapsed
29170
29171 \begin_layout Plain Layout
29172 Formel ! mehrzeilige ! align-Umgebung
29173 \end_layout
29174
29175 \end_inset
29176
29177
29178 \end_layout
29179
29180 \begin_layout Standard
29181 Diese Align-Umgebung wird erstellt, indem man in einer Formel 
29182 \family sans
29183 Strg+Enter
29184 \family default
29185  drückt oder das Menü 
29186 \family sans
29187 Einfügen\SpecialChar \menuseparator
29188 Mathe\SpecialChar \menuseparator
29189 AMS align-Umge\SpecialChar \-
29190 bung
29191 \family default
29192  aufruft.
29193 \end_layout
29194
29195 \begin_layout Standard
29196 Ein Beispiel für zwei nebeneinander stehende Formeln, die mit einer vierspaltige
29197 n align-Umgebung erzeugt wurden:
29198 \begin_inset Formula 
29199 \begin{align*}
29200 A & =\sin(B) & C & =D\\
29201 C & \ne A & B & \ne D
29202 \end{align*}
29203
29204 \end_inset
29205
29206 Wie man sieht, werden die Formeln in dieser Umgebung so angeordnet, als
29207  würde sich vor der ersten und hinter jeder geraden Spalte ein 
29208 \series bold
29209
29210 \backslash
29211 hfill
29212 \begin_inset Foot
29213 status collapsed
29214
29215 \begin_layout Plain Layout
29216 mehr zu 
29217 \series bold
29218
29219 \backslash
29220 hfill
29221 \series default
29222  siehe 
29223 \begin_inset CommandInset ref
29224 LatexCommand ref
29225 reference "sub:Variabler-Leerraum"
29226
29227 \end_inset
29228
29229
29230 \end_layout
29231
29232 \end_inset
29233
29234
29235 \series default
29236  befinden.
29237  Ist der Formelstil 
29238 \series bold
29239 Eingerückt
29240 \begin_inset Foot
29241 status collapsed
29242
29243 \begin_layout Plain Layout
29244 Formelstile siehe 
29245 \begin_inset CommandInset ref
29246 LatexCommand ref
29247 reference "sec:Formelstile"
29248
29249 \end_inset
29250
29251
29252 \end_layout
29253
29254 \end_inset
29255
29256
29257 \series default
29258  gewählt, wird die Formel ohne den 
29259 \series bold
29260
29261 \backslash
29262 hfill
29263 \series default
29264  vor der ersten Spalte gesetzt.
29265 \end_layout
29266
29267 \begin_layout Subsubsection
29268 Alignat-Umgebung
29269 \begin_inset Index idx
29270 status collapsed
29271
29272 \begin_layout Plain Layout
29273 Formel ! mehrzeilige ! alignat-Umgebung
29274 \end_layout
29275
29276 \end_inset
29277
29278
29279 \end_layout
29280
29281 \begin_layout Standard
29282 In der alignat-Umgebung gibt es keinen vordefinierten Spaltenabstand.
29283  Man kann ihn manuell durch die in 
29284 \begin_inset CommandInset ref
29285 LatexCommand ref
29286 reference "sub:Leerraum"
29287
29288 \end_inset
29289
29290  beschriebenen Leerräume einfügen.
29291 \end_layout
29292
29293 \begin_layout Standard
29294 Das vorige Beispiel in der alignat-Umgebung, bei dem zu Beginn der zweiten
29295  Formel 1
29296 \begin_inset space \thinspace{}
29297 \end_inset
29298
29299 cm Leerraum eingefügt wurde:
29300 \begin_inset Formula 
29301 \begin{alignat*}{2}
29302 A & =\sin(B) & \hspace{1cm}C & =D\\
29303 C & \ne A & B & \ne D
29304 \end{alignat*}
29305
29306 \end_inset
29307
29308 Weil man den Spaltenabstand für jede Spalte einzeln einstellen kann, eignet
29309  sich diese Umgebung besonders für drei und mehr nebeneinander gesetzte
29310  Formeln.
29311 \end_layout
29312
29313 \begin_layout Subsubsection
29314 Flalign-Umgebung
29315 \begin_inset CommandInset label
29316 LatexCommand label
29317 name "sub:Flalign-Umgebung"
29318
29319 \end_inset
29320
29321
29322 \begin_inset Index idx
29323 status collapsed
29324
29325 \begin_layout Plain Layout
29326 Formel ! mehrzeilige ! flalign-Umgebung
29327 \end_layout
29328
29329 \end_inset
29330
29331
29332 \end_layout
29333
29334 \begin_layout Standard
29335 Bei dieser Umgebung werden die ersten beiden Spalten immer so weit links
29336  und die letzten beiden Spalten so weit rechts wie möglich gesetzt.
29337  Dazu ein Beispiel:
29338 \begin_inset Formula 
29339 \begin{flalign*}
29340 A & =1 & B & =2 & C & =3\\
29341 X & =\textrm{-}1 & Y & =\textrm{-}2 & Z & =4
29342 \end{flalign*}
29343
29344 \end_inset
29345
29346
29347 \end_layout
29348
29349 \begin_layout Standard
29350 Erzeugt man eine flalign-Umgebung mit ungerader Spaltenanzahl und gibt in
29351  die letzte Spalte eine leere TeX-Klammer ein, kann man einzelne Formeln
29352  im Dokument links setzen obwohl der Formelstil 
29353 \series bold
29354 Zentriert
29355 \series default
29356  eingestellt ist.
29357  Als Beispiel die eingerückte ausgerichtete Formel 
29358 \begin_inset CommandInset ref
29359 LatexCommand eqref
29360 reference "eq:VolInt"
29361
29362 \end_inset
29363
29364 :
29365 \begin_inset Formula 
29366 \begin{flalign}
29367 \hspace{30pt}\iiint\limits _{V}X\,\mathrm{d}V & =U & {}
29368 \end{flalign}
29369
29370 \end_inset
29371
29372 In den ersten beiden Spalten befindet sich die Formel.
29373  Damit sie wie beim Formelstil 
29374 \series bold
29375 Eingerückt
29376 \series default
29377  vom Rand etwas abgesetzt ist, wurde zu Beginn der ersten Spalte 30
29378 \begin_inset space \thinspace{}
29379 \end_inset
29380
29381 pt Leerraum eingefügt.
29382 \end_layout
29383
29384 \begin_layout Subsection
29385 Eqnarray-Umgebung
29386 \begin_inset CommandInset label
29387 LatexCommand label
29388 name "sub:Eqnarray-Umgebung"
29389
29390 \end_inset
29391
29392
29393 \begin_inset Index idx
29394 status collapsed
29395
29396 \begin_layout Plain Layout
29397 Formel ! mehrzeilige ! Eqnarray-Umgebung
29398 \end_layout
29399
29400 \end_inset
29401
29402
29403 \end_layout
29404
29405 \begin_layout Standard
29406 Hat man diese Umgebung erzeugt, erscheinen drei blaue Kästchen.
29407  Der Inhalt des ersten Kästchens wird rechtsbündig, der des letzten linksbündig
29408  ausgerichtet.
29409  Der Inhalt des mittleren Kästchens erscheint zentriert und etwas kleiner,
29410  da dieses Kästchen nur für Relationzeichen gedacht ist.
29411 \begin_inset Formula 
29412 \begin{eqnarray*}
29413 \frac{ABC}{D} & \frac{ABC}{D} & \frac{ABC}{D}\\
29414 AB & AB & AB\\
29415 A & = & A
29416 \end{eqnarray*}
29417
29418 \end_inset
29419
29420
29421 \end_layout
29422
29423 \begin_layout Subsection
29424 Gather-Umgebung
29425 \begin_inset Index idx
29426 status collapsed
29427
29428 \begin_layout Plain Layout
29429 Formel ! mehrzeilige ! Gather-Umgebung
29430 \end_layout
29431
29432 \end_inset
29433
29434
29435 \end_layout
29436
29437 \begin_layout Standard
29438 Diese Umgebung besteht nur aus einer Spalte, deren Inhalt zentriert ist.
29439  Jede Zeile kann nummeriert werden.
29440 \begin_inset Formula 
29441 \begin{gather}
29442 A=1\\
29443 X=\textrm{-}1
29444 \end{gather}
29445
29446 \end_inset
29447
29448
29449 \end_layout
29450
29451 \begin_layout Subsection
29452 Multline-Umgebung
29453 \begin_inset CommandInset label
29454 LatexCommand label
29455 name "sub:Multline-Umgebung"
29456
29457 \end_inset
29458
29459
29460 \begin_inset Index idx
29461 status collapsed
29462
29463 \begin_layout Plain Layout
29464 Formel ! mehrzeilige ! Multline-Umgebung
29465 \end_layout
29466
29467 \end_inset
29468
29469
29470 \end_layout
29471
29472 \begin_layout Standard
29473 Die multline-Umgebung besteht wie die Gather-Umgebung nur aus einer Spalte.
29474  Jedoch ist die erste Zeile links, die letzte rechts ausgerichtet.
29475  Alle anderen Zeilen sind zentriert.
29476  Dadurch eignet sich diese Umgebung besonders für lange Formeln.
29477  Als Beispiel Formel 
29478 \begin_inset CommandInset ref
29479 LatexCommand eqref
29480 reference "eq:lefteqn"
29481
29482 \end_inset
29483
29484  in der multline-Umgebung:
29485 \begin_inset Formula 
29486 \begin{multline}
29487 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}\\
29488 -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}\\
29489 =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}}
29490 \end{multline}
29491
29492 \end_inset
29493
29494
29495 \end_layout
29496
29497 \begin_layout Standard
29498 In der Ausgabe erscheint nur die letzte (erste) Zeile einer multline-Umgebung
29499  nummeriert, wenn rechts (links) nummeriert wird.
29500 \begin_inset Foot
29501 status collapsed
29502
29503 \begin_layout Plain Layout
29504 Nummerierungsstile siehe 
29505 \begin_inset CommandInset ref
29506 LatexCommand ref
29507 reference "sec:Formelstile"
29508
29509 \end_inset
29510
29511
29512 \end_layout
29513
29514 \end_inset
29515
29516
29517 \end_layout
29518
29519 \begin_layout Standard
29520 Mit den Befehlen 
29521 \series bold
29522
29523 \backslash
29524 shoveright
29525 \series default
29526
29527 \begin_inset Index idx
29528 status collapsed
29529
29530 \begin_layout Plain Layout
29531 Befehle ! S ! 
29532 \backslash
29533 shoveright
29534 \end_layout
29535
29536 \end_inset
29537
29538  und 
29539 \series bold
29540
29541 \backslash
29542 shoveleft
29543 \series default
29544
29545 \begin_inset Index idx
29546 status collapsed
29547
29548 \begin_layout Plain Layout
29549 Befehle ! S ! 
29550 \backslash
29551 shoveleft
29552 \end_layout
29553
29554 \end_inset
29555
29556  kann eine zentrierte Zeile rechts bzw.
29557  links ausgerichtet werden.
29558  Die Befehle werden folgendermaßen verwendet:
29559 \end_layout
29560
29561 \begin_layout Standard
29562
29563 \series bold
29564
29565 \backslash
29566 shoveright{Zeileninhalt}
29567 \series default
29568  bzw.
29569  
29570 \series bold
29571
29572 \backslash
29573 shoveleft{Zeileninhalt}
29574 \end_layout
29575
29576 \begin_layout Standard
29577 \begin_inset VSpace medskip
29578 \end_inset
29579
29580 Die Länge 
29581 \series bold
29582
29583 \backslash
29584 multlinegap
29585 \series default
29586
29587 \begin_inset Index idx
29588 status collapsed
29589
29590 \begin_layout Plain Layout
29591 Befehle ! M ! 
29592 \backslash
29593 multlinegap
29594 \end_layout
29595
29596 \end_inset
29597
29598  legt den Abstand der ersten Zeile vom linken Seitenrand fest.
29599  Voreingestellt ist die Länge 0
29600 \begin_inset space \thinspace{}
29601 \end_inset
29602
29603 pt.
29604 \end_layout
29605
29606 \begin_layout Standard
29607 Als Beispiel obige Formel, vor der im TeX-Modus der Befehl
29608 \end_layout
29609
29610 \begin_layout Standard
29611
29612 \series bold
29613
29614 \backslash
29615 setlength{
29616 \backslash
29617 multlinegap}{2cm}
29618 \end_layout
29619
29620 \begin_layout Standard
29621 eingegeben wurde:
29622 \begin_inset ERT
29623 status collapsed
29624
29625 \begin_layout Plain Layout
29626
29627
29628 \backslash
29629 setlength{
29630 \backslash
29631 multlinegap}{2cm}
29632 \end_layout
29633
29634 \end_inset
29635
29636
29637 \begin_inset Formula 
29638 \begin{multline}
29639 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}\\
29640 \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}}\\
29641 =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}}
29642 \end{multline}
29643
29644 \end_inset
29645
29646
29647 \begin_inset ERT
29648 status collapsed
29649
29650 \begin_layout Plain Layout
29651
29652
29653 \backslash
29654 setlength{
29655 \backslash
29656 multlinegap}{0pt}
29657 \end_layout
29658
29659 \end_inset
29660
29661
29662 \end_layout
29663
29664 \begin_layout Standard
29665 Die zweite Zeile wurde mit 
29666 \series bold
29667
29668 \backslash
29669 shoveleft
29670 \series default
29671  linksbündig ausgerichtet.
29672 \end_layout
29673
29674 \begin_layout Subsection
29675 Mehrzeilige Formelteile
29676 \begin_inset CommandInset label
29677 LatexCommand label
29678 name "sub:Mehrzeilige-Formelteile"
29679
29680 \end_inset
29681
29682
29683 \begin_inset Index idx
29684 status collapsed
29685
29686 \begin_layout Plain Layout
29687 Formel ! mehrzeilige ! Formelteile
29688 \end_layout
29689
29690 \end_inset
29691
29692
29693 \end_layout
29694
29695 \begin_layout Standard
29696 Möchte man nur Teile einer Formel mehrzeilig darstellen, verwendet man eine
29697  der folgenden Umgebungen: 
29698 \series bold
29699 aligned
29700 \series default
29701
29702 \series bold
29703 alignedat
29704 \series default
29705
29706 \series bold
29707 gathered
29708 \series default
29709  oder 
29710 \series bold
29711 split
29712 \series default
29713 .
29714  Sie können über das Menü 
29715 \family sans
29716 Einfügen\SpecialChar \menuseparator
29717 Mathe
29718 \family default
29719  oder mit Befehlen eingefügt werden, wie in diesem Abschnitt beschrieben.
29720 \end_layout
29721
29722 \begin_layout Standard
29723 Die ersten drei haben dieselben Eigenschaften wie die entsprechenden mehrzeilige
29724 n Formel\SpecialChar \-
29725 umgebungen.
29726  Man kann jedoch zusätzlich weitere Formelteile daneben setzen.
29727  Dazu ein Beispiel:
29728 \begin_inset Formula 
29729 \[
29730 \left.\begin{aligned}\Delta x\Delta p & \ge\frac{\hbar}{2}\\
29731 \Delta E\Delta t & \ge\frac{\hbar}{2}
29732 \end{aligned}
29733 \right\} \textrm{Unbestimmtheitsrelationen}
29734 \]
29735
29736 \end_inset
29737
29738
29739 \end_layout
29740
29741 \begin_layout Standard
29742 Um diese Formel zu erhalten, wird eine abgesetzte Formel erstellt, in die
29743  der Befehl 
29744 \series bold
29745
29746 \backslash
29747 aligned
29748 \series default
29749
29750 \begin_inset Index idx
29751 status collapsed
29752
29753 \begin_layout Plain Layout
29754 Befehle ! A ! 
29755 \backslash
29756 aligned
29757 \end_layout
29758
29759 \end_inset
29760
29761  eingegeben wird.
29762  Es erscheint eine lila Box um das blaue Formelkästchen in der man nun Spalten
29763  und Zeilen hinzufügen kann.
29764  Außerhalb der mehrzeiligen Umgebung können Formelteile, wie die Klammer,
29765  gesetzt werden.
29766 \end_layout
29767
29768 \begin_layout Standard
29769 Die aligned-Umgebung eignet sich auch für lange Formeln, deren Zeilen horizontal
29770  ausgerichtet sind.
29771  Verwendet man aligned in einer abgesetzten Formel, hat das den Vorteil,
29772  dass die Formelnummer vertikal mittig hinter den Zeilen steht.
29773  Als Beispiel Formel 
29774 \begin_inset CommandInset ref
29775 LatexCommand eqref
29776 reference "eq:kurzlang"
29777
29778 \end_inset
29779
29780  in der aligned-Umgebung:
29781 \begin_inset Formula 
29782 \begin{equation}
29783 \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}|}\\
29784  & -\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}|}
29785 \end{aligned}
29786 \end{equation}
29787
29788 \end_inset
29789
29790
29791 \end_layout
29792
29793 \begin_layout Standard
29794 Möchte man die Umgebung 
29795 \series bold
29796 alignedat
29797 \series default
29798
29799 \series bold
29800 gathered
29801 \series default
29802  oder 
29803 \series bold
29804 split
29805 \series default
29806  verwenden, gibt man den Befehl 
29807 \series bold
29808
29809 \backslash
29810 alignedat
29811 \series default
29812 ,
29813 \begin_inset Index idx
29814 status collapsed
29815
29816 \begin_layout Plain Layout
29817 Befehle ! A ! 
29818 \backslash
29819 alignedat
29820 \end_layout
29821
29822 \end_inset
29823
29824  
29825 \series bold
29826
29827 \backslash
29828 gathered
29829 \series default
29830
29831 \begin_inset Index idx
29832 status collapsed
29833
29834 \begin_layout Plain Layout
29835 Befehle ! G ! 
29836 \backslash
29837 gathered
29838 \end_layout
29839
29840 \end_inset
29841
29842  bzw.
29843  
29844 \series bold
29845
29846 \backslash
29847 split
29848 \series default
29849
29850 \begin_inset Index idx
29851 status collapsed
29852
29853 \begin_layout Plain Layout
29854 Befehle ! S ! 
29855 \backslash
29856 split
29857 \end_layout
29858
29859 \end_inset
29860
29861  ein.
29862  Die split-Umgebung hat dieselben Eigenschaften wie die aligned-Umgebung,
29863  jedoch darf sie nur zwei Spalten enthalten.
29864 \end_layout
29865
29866 \begin_layout Subsection
29867 Text in mehrzeiligen Formeln
29868 \begin_inset CommandInset label
29869 LatexCommand label
29870 name "sub:Text-in-mehrzeiligen"
29871
29872 \end_inset
29873
29874
29875 \begin_inset Index idx
29876 status collapsed
29877
29878 \begin_layout Plain Layout
29879 Text ! in Formeln
29880 \end_layout
29881
29882 \end_inset
29883
29884
29885 \begin_inset Index idx
29886 status collapsed
29887
29888 \begin_layout Plain Layout
29889 Formel ! mehrzeilige ! Text
29890 \end_layout
29891
29892 \end_inset
29893
29894
29895 \end_layout
29896
29897 \begin_layout Standard
29898 Bei den Align-Umgebungen sowie der multline- und gather-Umgebung besteht
29899  die Möglichkeit Text einzufügen, der in einer eigenen Zeile erscheint und
29900  die Ausrichtung der Spalten nicht beeinflusst.
29901  Dazu wird der Befehl 
29902 \series bold
29903
29904 \backslash
29905 intertext
29906 \begin_inset Index idx
29907 status collapsed
29908
29909 \begin_layout Plain Layout
29910 Befehle ! I ! 
29911 \backslash
29912 intertext
29913 \end_layout
29914
29915 \end_inset
29916
29917
29918 \series default
29919  nach folgendem Schema benutzt:
29920 \end_layout
29921
29922 \begin_layout Standard
29923
29924 \series bold
29925
29926 \backslash
29927 intertext{Text}
29928 \end_layout
29929
29930 \begin_layout Standard
29931 Der Text sollte nicht länger als eine Zeile sein, da er nicht umgebrochen
29932  werden kann.
29933  Weil LyX 
29934 \series bold
29935
29936 \backslash
29937 intertext
29938 \series default
29939  noch nicht direkt unterstützt, schreibt man den Text als mathematischen
29940  Text.
29941  
29942 \series bold
29943
29944 \backslash
29945 intertext
29946 \series default
29947  muss dabei zu Beginn einer Zeile stehen und erscheint in der Ausgabe über
29948  dieser Zeile.
29949  Ein Beispiel bei dem der Text zu Beginn der zweiten Zeile eingegeben wurde:
29950 \begin_inset Formula 
29951 \begin{align}
29952 I & =a\sqrt{2}\int_{0}^{2\pi}\sqrt{1+\cos(\phi)}\;\mathrm{d}\phi\\
29953 \intertext{\text{Integrand ist symmetrisch zu \ensuremath{\phi=\pi}, daher}} & =2a\sqrt{2}\int_{0}^{\pi}\sqrt{1+\cos(\phi)}\;\mathrm{d}\phi
29954 \end{align}
29955
29956 \end_inset
29957
29958
29959 \end_layout
29960
29961 \begin_layout Section
29962 Formelnummerierung
29963 \begin_inset Index idx
29964 status collapsed
29965
29966 \begin_layout Plain Layout
29967 Formelnummerierung
29968 \end_layout
29969
29970 \end_inset
29971
29972
29973 \begin_inset Index idx
29974 status collapsed
29975
29976 \begin_layout Plain Layout
29977 Formel ! Nummerierung|see
29978 \begin_inset ERT
29979 status collapsed
29980
29981 \begin_layout Plain Layout
29982
29983 {
29984 \end_layout
29985
29986 \end_inset
29987
29988 Formelnummerierung
29989 \begin_inset ERT
29990 status collapsed
29991
29992 \begin_layout Plain Layout
29993
29994 }
29995 \end_layout
29996
29997 \end_inset
29998
29999
30000 \end_layout
30001
30002 \end_inset
30003
30004
30005 \end_layout
30006
30007 \begin_layout Subsection
30008 Allgemeines
30009 \end_layout
30010
30011 \begin_layout Standard
30012 Nummerierte Formeln können mit dem Menü 
30013 \family sans
30014 Einfügen\SpecialChar \menuseparator
30015 Mathe\SpecialChar \menuseparator
30016 Nummerierte
30017 \begin_inset space ~
30018 \end_inset
30019
30020 Formel
30021 \family default
30022  (Tastenkürzel 
30023 \family sans
30024 Strg+Alt
30025 \begin_inset space ~
30026 \end_inset
30027
30028 N
30029 \family default
30030 ) erstellt, bestehende Formeln über das Menü 
30031 \family sans
30032 Bearbeiten\SpecialChar \menuseparator
30033 Mathe\SpecialChar \menuseparator
30034 Nummerierung
30035 \begin_inset space ~
30036 \end_inset
30037
30038 an/aus
30039 \family default
30040  (Tastenkürzel 
30041 \family sans
30042 Alt+M
30043 \begin_inset space ~
30044 \end_inset
30045
30046 N
30047 \family default
30048 ) nummeriert werden.
30049  Die Formelnummer erscheint in LyX hinter der Formel als Raute in runden
30050  Klammern.
30051  Im Ausdruck erscheint anstelle der Raute die Formelnummer.
30052 \end_layout
30053
30054 \begin_layout Standard
30055 Wird in mehrzeiligen Formeln die Nummerierung angeschaltet, werden alle
30056  Zeilen nummeriert.
30057  Man kann jedoch über das Menü 
30058 \family sans
30059 Bearbeiten\SpecialChar \menuseparator
30060 Mathe\SpecialChar \menuseparator
30061 Zeilennummerierung an/aus
30062 \family default
30063  (Tastenkürzel 
30064 \family sans
30065 Alt+M
30066 \begin_inset space ~
30067 \end_inset
30068
30069 Shift+N
30070 \family default
30071 ) für jede Zeile die Nummerierung festlegen.
30072 \end_layout
30073
30074 \begin_layout Standard
30075 Außer eingebetteten können alle Formeln in zwei verschiedenen Stilen nummeriert
30076  werden, siehe 
30077 \begin_inset CommandInset ref
30078 LatexCommand ref
30079 reference "sec:Formelstile"
30080
30081 \end_inset
30082
30083 .
30084 \end_layout
30085
30086 \begin_layout Subsection
30087 Querverweise
30088 \begin_inset Index idx
30089 status collapsed
30090
30091 \begin_layout Plain Layout
30092 Querverweise ! auf Formeln
30093 \end_layout
30094
30095 \end_inset
30096
30097
30098 \end_layout
30099
30100 \begin_layout Standard
30101 Es kann auf alle Formeln verwiesen werden, die eine Marke besitzen.
30102  Eine Marke wird mit dem Menü 
30103 \family sans
30104 Einfügen\SpecialChar \menuseparator
30105 Marke
30106 \family default
30107  oder dem Werkzeugleistenknopf 
30108 \begin_inset Graphics
30109         filename ../../images/label-insert.png
30110         scale 85
30111
30112 \end_inset
30113
30114  gesetzt.
30115  Dabei muss sich der Cursor in einer abgesetzten Formel befinden.
30116  Es erscheint ein Eingabefeld mit dem voreingestellten Eintrag 
30117 \series bold
30118 eq:
30119 \series default
30120 , nachdem der eigentliche Markenname eingegeben wird.
30121  Der voreingestellte Eintrag steht für 
30122 \begin_inset Quotes gld
30123 \end_inset
30124
30125 equation
30126 \begin_inset Quotes grd
30127 \end_inset
30128
30129  und erleichtert bei größeren Dokumenten die Zuordnung, dass die Marke zu
30130  einer Formel und nicht zu einem Kapitel gehört.
30131  Um eine Marke zu ändern, wählt man wieder das Menü 
30132 \family sans
30133 Einfügen\SpecialChar \menuseparator
30134 Marke
30135 \family default
30136 .
30137 \end_layout
30138
30139 \begin_layout Standard
30140 Der Name der Marke erscheint in LyX in zwei runden Klammern hinter der Formel.
30141  Eine Formel mit Marke wird immer nummeriert.
30142 \end_layout
30143
30144 \begin_layout Standard
30145 Querverweise werden mit dem Menü 
30146 \family sans
30147 Einfügen\SpecialChar \menuseparator
30148 Querverweis
30149 \family default
30150  oder dem Werkzeugleistenknopf 
30151 \begin_inset Graphics
30152         filename ../../images/dialog-show-new-inset_ref.png
30153         scale 85
30154
30155 \end_inset
30156
30157  eingefügt.
30158  Ein Querverweis auf Formeln erscheint im Ausdruck als Formelnummer.
30159  Wenn man im Querverweis Dialogfenster das Format 
30160 \series bold
30161 (<Querverweis>)
30162 \series default
30163  wählt, erscheint der Querverweis als Formelnummer in Klammern.
30164 \begin_inset Newline newline
30165 \end_inset
30166
30167 Drückt man in LyX mit der rechten Maustaste auf einen Querverweis, gelangt
30168  man zur Formel auf die verwiesen wird.
30169 \end_layout
30170
30171 \begin_layout Standard
30172 Als Beispiel folgen Querverweise zu Formeln aus diesem Kapitel:
30173 \begin_inset Note Note
30174 status open
30175
30176 \begin_layout Plain Layout
30177 Man beachte die unterschiedlichen Querverweistypen.
30178 \end_layout
30179
30180 \end_inset
30181
30182
30183 \end_layout
30184
30185 \begin_layout Standard
30186 Die Gleichungen 
30187 \begin_inset CommandInset ref
30188 LatexCommand eqref
30189 reference "eq:tag"
30190
30191 \end_inset
30192
30193  und 
30194 \begin_inset CommandInset ref
30195 LatexCommand eqref
30196 reference "eq:c"
30197
30198 \end_inset
30199
30200  sind äquivalent.
30201  In (
30202 \begin_inset CommandInset ref
30203 LatexCommand ref
30204 reference "eq:Lat"
30205
30206 \end_inset
30207
30208 ) werden im Gegensatz zu (
30209 \begin_inset CommandInset ref
30210 LatexCommand ref
30211 reference "eq:Roem"
30212
30213 \end_inset
30214
30215 ) große lateinische Buchstaben zur Nummerierung verwendet.
30216 \end_layout
30217
30218 \begin_layout Standard
30219 \begin_inset VSpace medskip
30220 \end_inset
30221
30222 Ist im Argument von 
30223 \series bold
30224
30225 \backslash
30226 tag
30227 \begin_inset Foot
30228 status collapsed
30229
30230 \begin_layout Plain Layout
30231
30232 \series bold
30233
30234 \backslash
30235 tag
30236 \series default
30237  ist in 
30238 \begin_inset CommandInset ref
30239 LatexCommand ref
30240 reference "sub:Benutzerdefinierte-Nummerierung"
30241
30242 \end_inset
30243
30244  beschrieben.
30245 \end_layout
30246
30247 \end_inset
30248
30249
30250 \series default
30251  wie in 
30252 \begin_inset CommandInset ref
30253 LatexCommand ref
30254 reference "sub:Absatzboxen"
30255
30256 \end_inset
30257
30258  eine Box angegeben, kann nicht auf die Formel verwiesen werden.
30259 \end_layout
30260
30261 \begin_layout Subsection
30262 Unternummerierung
30263 \begin_inset Index idx
30264 status collapsed
30265
30266 \begin_layout Plain Layout
30267 Formelnummerierung ! Unternummerierung
30268 \end_layout
30269
30270 \end_inset
30271
30272
30273 \end_layout
30274
30275 \begin_layout Standard
30276 Möchte man Formeln weiter untergliedern, kann man das mit Hilfe der Befehle
30277  
30278 \begin_inset Newline newline
30279 \end_inset
30280
30281
30282 \series bold
30283
30284 \backslash
30285 begin{subequations}
30286 \series default
30287  und 
30288 \series bold
30289
30290 \backslash
30291 end{subequations}
30292 \series default
30293  erreichen.
30294  Beide Befehle werden im TeX-Modus eingegeben.
30295 \end_layout
30296
30297 \begin_layout Standard
30298 Dazu ein Beispiel:
30299 \begin_inset Formula 
30300 \begin{equation}
30301 A=C-B\label{eq:a}
30302 \end{equation}
30303
30304 \end_inset
30305
30306
30307 \begin_inset ERT
30308 status collapsed
30309
30310 \begin_layout Plain Layout
30311
30312
30313 \backslash
30314 addtocounter{equation}{-1}
30315 \end_layout
30316
30317 \end_inset
30318
30319
30320 \begin_inset ERT
30321 status collapsed
30322
30323 \begin_layout Plain Layout
30324
30325
30326 \backslash
30327 begin{subequations}
30328 \end_layout
30329
30330 \end_inset
30331
30332
30333 \begin_inset VSpace -5mm
30334 \end_inset
30335
30336
30337 \begin_inset Formula 
30338 \begin{equation}
30339 B=C-A\label{eq:b}
30340 \end{equation}
30341
30342 \end_inset
30343
30344
30345 \begin_inset Formula 
30346 \begin{equation}
30347 C=A+B\label{eq:c}
30348 \end{equation}
30349
30350 \end_inset
30351
30352
30353 \end_layout
30354
30355 \begin_layout Standard
30356 \begin_inset ERT
30357 status collapsed
30358
30359 \begin_layout Plain Layout
30360
30361
30362 \backslash
30363 end{subequations}
30364 \end_layout
30365
30366 \end_inset
30367
30368
30369 \end_layout
30370
30371 \begin_layout Standard
30372 Um das Beispiel zu erstellen, geht man folgendermaßen vor:
30373 \end_layout
30374
30375 \begin_layout Enumerate
30376 erste Formel eingeben
30377 \end_layout
30378
30379 \begin_layout Enumerate
30380
30381 \series bold
30382
30383 \backslash
30384 addtocounter{equation}{-1} 
30385 \backslash
30386 begin{subequations}
30387 \begin_inset Index idx
30388 status collapsed
30389
30390 \begin_layout Plain Layout
30391 Befehle ! A ! 
30392 \backslash
30393 addtocounter
30394 \end_layout
30395
30396 \end_inset
30397
30398
30399 \begin_inset Newline newline
30400 \end_inset
30401
30402
30403 \series default
30404 nach der ersten Formel einfügen
30405 \end_layout
30406
30407 \begin_layout Enumerate
30408 zweite Formel eingeben
30409 \end_layout
30410
30411 \begin_layout Enumerate
30412 dritte Formel eingeben
30413 \end_layout
30414
30415 \begin_layout Enumerate
30416
30417 \series bold
30418
30419 \backslash
30420 end{subequations}
30421 \series default
30422  nach der dritten Formel einfügen
30423 \end_layout
30424
30425 \begin_layout Standard
30426 Jede Formel, die zwischen den Befehlen 
30427 \series bold
30428
30429 \backslash
30430 begin
30431 \series default
30432  und 
30433 \series bold
30434
30435 \backslash
30436 end
30437 \series default
30438  steht, wird mit a, b, c, \SpecialChar \ldots{}
30439  untergliedert.
30440  Bei mehrzeiligen Formeln wird jede Zeile untergliedert.
30441  Alle untergliederten Formeln gelten als 
30442 \emph on
30443 eine
30444 \emph default
30445  nummerierte Formel.
30446  Da jede nummerierte Formel den Formelzähler 
30447 \series bold
30448 equation
30449 \series default
30450  um Eins erhöht, ist der Befehl 
30451 \series bold
30452
30453 \backslash
30454 addtocounter
30455 \series default
30456  notwendig um den Zähler wieder zu erniedrigen.
30457  Ansonsten würden die Formeln 
30458 \begin_inset CommandInset ref
30459 LatexCommand eqref
30460 reference "eq:a"
30461
30462 \end_inset
30463
30464
30465 \begin_inset CommandInset ref
30466 LatexCommand eqref
30467 reference "eq:b"
30468
30469 \end_inset
30470
30471
30472 \begin_inset CommandInset ref
30473 LatexCommand eqref
30474 reference "eq:c"
30475
30476 \end_inset
30477
30478  als 
30479 \begin_inset CommandInset ref
30480 LatexCommand eqref
30481 reference "eq:a"
30482
30483 \end_inset
30484
30485
30486 \begin_inset CommandInset ref
30487 LatexCommand eqref
30488 reference "eq:d"
30489
30490 \end_inset
30491
30492
30493 \begin_inset CommandInset ref
30494 LatexCommand eqref
30495 reference "eq:f"
30496
30497 \end_inset
30498
30499  nummeriert werden.
30500 \end_layout
30501
30502 \begin_layout Standard
30503 Durch die Eingabe der Befehle im TeX-Modus wird zwischen den ersten beiden
30504  Formeln automatisch etwas Leerraum erstellt.
30505  Um dies rückgängig zu machen, fügt man nach dem Befehl 
30506 \series bold
30507
30508 \backslash
30509 begin{subequations}
30510 \series default
30511  -5
30512 \begin_inset space \thinspace{}
30513 \end_inset
30514
30515 mm vertikalen Leerraum ein.
30516  Ist der Formelstil 
30517 \series bold
30518 Eingerückt
30519 \begin_inset Foot
30520 status collapsed
30521
30522 \begin_layout Plain Layout
30523 Formelstile siehe 
30524 \begin_inset CommandInset ref
30525 LatexCommand ref
30526 reference "sec:Formelstile"
30527
30528 \end_inset
30529
30530
30531 \end_layout
30532
30533 \end_inset
30534
30535
30536 \series default
30537  gewählt, fügt man -7
30538 \begin_inset space \thinspace{}
30539 \end_inset
30540
30541 mm Leerraum ein.
30542 \end_layout
30543
30544 \begin_layout Standard
30545 Hier ist ein Beispiel für mehrzeilige Formeln, bei dem die Nummerierung
30546  der zweiten Zeile abgeschaltet wurde:
30547 \begin_inset ERT
30548 status collapsed
30549
30550 \begin_layout Plain Layout
30551
30552
30553 \backslash
30554 begin{subequations}
30555 \end_layout
30556
30557 \end_inset
30558
30559
30560 \begin_inset Formula 
30561 \begin{eqnarray}
30562 A & = & (B-Z)^{2}=(B-Z)(B-Z)\label{eq:d}\\
30563  & = & B^{2}-ZB-BZ+Z^{²}\nonumber \\
30564  & = & B^{2}-2BZ+Z^{2}\label{eq:f}
30565 \end{eqnarray}
30566
30567 \end_inset
30568
30569
30570 \begin_inset ERT
30571 status collapsed
30572
30573 \begin_layout Plain Layout
30574
30575
30576 \backslash
30577 end{subequations}
30578 \end_layout
30579
30580 \end_inset
30581
30582
30583 \end_layout
30584
30585 \begin_layout Subsection
30586 Benutzerdefinierte Nummerierung
30587 \begin_inset CommandInset label
30588 LatexCommand label
30589 name "sub:Benutzerdefinierte-Nummerierung"
30590
30591 \end_inset
30592
30593
30594 \begin_inset Index idx
30595 status collapsed
30596
30597 \begin_layout Plain Layout
30598 Formelnummerierung ! benutzerdefinierte
30599 \end_layout
30600
30601 \end_inset
30602
30603
30604 \end_layout
30605
30606 \begin_layout Standard
30607 \begin_inset Index idx
30608 status collapsed
30609
30610 \begin_layout Plain Layout
30611 Formelnummerierung ! eigene Klammern
30612 \end_layout
30613
30614 \end_inset
30615
30616 Bei der Standardnummerierung werden um die Formelnummern runde Klammern
30617  gesetzt.
30618  Will man diese Klammern z.
30619 \begin_inset space \thinspace{}
30620 \end_inset
30621
30622 B.
30623  durch senkrechte Striche ersetzen, gibt man im LaTeX-Vorspann Folgendes
30624  an:
30625 \end_layout
30626
30627 \begin_layout Standard
30628
30629 \series bold
30630
30631 \backslash
30632 def
30633 \backslash
30634 tagform@#1{
30635 \backslash
30636 maketag@@@{|#1|}}
30637 \series default
30638
30639 \begin_inset Note Note
30640 status collapsed
30641
30642 \begin_layout Plain Layout
30643 Dieses Makro ist zum Testen bereits im LaTeX-Vorspann angegeben.
30644  Damit es wirksam wird, muss das Prozentzeichen am Zeilenbeginn entfernt
30645  werden.
30646 \end_layout
30647
30648 \end_inset
30649
30650
30651 \end_layout
30652
30653 \begin_layout Standard
30654 Möchte man andere Zeichen haben, ersetzt man die Striche neben 
30655 \series bold
30656 #1
30657 \series default
30658  durch ein oder mehrere gewünschte Zeichen.
30659  Möchte man nur die Formelnummer haben, lässt man die Striche weg.
30660 \end_layout
30661
30662 \begin_layout Standard
30663 \begin_inset VSpace bigskip
30664 \end_inset
30665
30666 Soll statt einer fortlaufenden Nummer ein beliebiger Ausdruck in den Klammern
30667  hinter der Formel stehen, benutzt man den Befehl 
30668 \series bold
30669
30670 \backslash
30671 tag
30672 \series default
30673
30674 \begin_inset Index idx
30675 status collapsed
30676
30677 \begin_layout Plain Layout
30678 Befehle ! T ! 
30679 \backslash
30680 tag
30681 \end_layout
30682
30683 \end_inset
30684
30685 :
30686 \begin_inset Formula 
30687 \begin{equation}
30688 A+B=C\tag{etwas}\label{eq:tag}
30689 \end{equation}
30690
30691 \end_inset
30692
30693  In diesem Beispiel wurde in der Formel der Befehl 
30694 \series bold
30695
30696 \backslash
30697 tag
30698 \series default
30699
30700 \begin_inset ERT
30701 status collapsed
30702
30703 \begin_layout Plain Layout
30704
30705
30706 \backslash
30707 leer 
30708 \end_layout
30709
30710 \end_inset
30711
30712
30713 \series bold
30714 etwas
30715 \series default
30716  eingegeben.
30717 \end_layout
30718
30719 \begin_layout Standard
30720 Gibt man stattdessen 
30721 \series bold
30722
30723 \backslash
30724 tag*
30725 \series default
30726
30727 \begin_inset ERT
30728 status collapsed
30729
30730 \begin_layout Plain Layout
30731
30732
30733 \backslash
30734 leer 
30735 \end_layout
30736
30737 \end_inset
30738
30739
30740 \series bold
30741 etwas
30742 \series default
30743  ein, verhindert der Stern die Klammern um den Ausdruck:
30744 \begin_inset Formula 
30745 \[
30746 A+B=C\tag*{etwas}
30747 \]
30748
30749 \end_inset
30750
30751
30752 \end_layout
30753
30754 \begin_layout Standard
30755 \begin_inset VSpace bigskip
30756 \end_inset
30757
30758 Möchte man die Formelnummerierung neu starten wenn ein neuer Dokumentteil
30759  oder 
30760 \begin_inset ERT
30761 status collapsed
30762
30763 \begin_layout Plain Layout
30764
30765
30766 \backslash
30767 mbox{
30768 \end_layout
30769
30770 \end_inset
30771
30772 -abschnitt
30773 \begin_inset ERT
30774 status collapsed
30775
30776 \begin_layout Plain Layout
30777
30778 }
30779 \end_layout
30780
30781 \end_inset
30782
30783
30784 \begin_inset Note Note
30785 status collapsed
30786
30787 \begin_layout Plain Layout
30788 Der Befehl 
30789 \series bold
30790
30791 \backslash
30792 mbox
30793 \series default
30794  verhindert, dass am Bindestrich umgebrochen wird.
30795 \end_layout
30796
30797 \end_inset
30798
30799  beginnt, verwendet man folgende LaTeX-Vorspannzeile:
30800 \end_layout
30801
30802 \begin_layout Standard
30803
30804 \series bold
30805
30806 \backslash
30807 @addtoreset{equation}{part}
30808 \series default
30809
30810 \begin_inset Index idx
30811 status collapsed
30812
30813 \begin_layout Plain Layout
30814 Befehle ! 
30815 \begin_inset ERT
30816 status collapsed
30817
30818 \begin_layout Plain Layout
30819
30820 "
30821 \end_layout
30822
30823 \end_inset
30824
30825 @
30826 \begin_inset ERT
30827 status collapsed
30828
30829 \begin_layout Plain Layout
30830
30831 "
30832 \end_layout
30833
30834 \end_inset
30835
30836  ! 
30837 \backslash
30838
30839 \begin_inset ERT
30840 status collapsed
30841
30842 \begin_layout Plain Layout
30843
30844 "
30845 \end_layout
30846
30847 \end_inset
30848
30849 @
30850 \begin_inset ERT
30851 status collapsed
30852
30853 \begin_layout Plain Layout
30854
30855 "
30856 \end_layout
30857
30858 \end_inset
30859
30860 addtoreset
30861 \end_layout
30862
30863 \end_inset
30864
30865
30866 \begin_inset Newline newline
30867 \end_inset
30868
30869 bzw.
30870 \begin_inset Newline newline
30871 \end_inset
30872
30873
30874 \series bold
30875
30876 \backslash
30877 @addtoreset{equation}{section}
30878 \end_layout
30879
30880 \begin_layout Standard
30881 Um diese Befehle im TeX-Modus benutzen zu können, muss das 
30882 \begin_inset Quotes gld
30883 \end_inset
30884
30885 @
30886 \begin_inset Quotes grd
30887 \end_inset
30888
30889  Zeichen für LaTeX mit dem Befehl 
30890 \series bold
30891
30892 \backslash
30893 makeatletter
30894 \series default
30895  
30896 \begin_inset Quotes gld
30897 \end_inset
30898
30899 aktiv
30900 \begin_inset Quotes grd
30901 \end_inset
30902
30903  gemacht werden.
30904  Der Befehl 
30905 \series bold
30906
30907 \backslash
30908 makeatother
30909 \series default
30910  macht dies wieder rückgängig.
30911  Daher ist die Befehlssequenz im TeX-Modus:
30912 \end_layout
30913
30914 \begin_layout Standard
30915
30916 \series bold
30917
30918 \backslash
30919 makeatletter
30920 \begin_inset Newline newline
30921 \end_inset
30922
30923
30924 \backslash
30925 @addtoreset{equation}{section}
30926 \begin_inset Newline newline
30927 \end_inset
30928
30929
30930 \backslash
30931 makeatother
30932 \end_layout
30933
30934 \begin_layout Standard
30935 Im LaTeX-Vorspann können 
30936 \series bold
30937
30938 \backslash
30939 makeatletter
30940 \series default
30941  und 
30942 \series bold
30943
30944 \backslash
30945 makeatother
30946 \series default
30947  weggelassen werden, da LyX sie automatisch intern einfügt.
30948 \end_layout
30949
30950 \begin_layout Standard
30951 Um 
30952 \series bold
30953
30954 \backslash
30955 @addtoreset
30956 \series default
30957  rückgängig zu machen, muss die Datei 
30958 \series bold
30959 remreset.sty
30960 \series default
30961
30962 \begin_inset Foot
30963 status collapsed
30964
30965 \begin_layout Plain Layout
30966
30967 \series bold
30968 remreset
30969 \series default
30970  ist Teil des LaTeX-Paketes 
30971 \series bold
30972 carlisle
30973 \series default
30974
30975 \begin_inset Index idx
30976 status collapsed
30977
30978 \begin_layout Plain Layout
30979 Pakete ! carlisle
30980 \end_layout
30981
30982 \end_inset
30983
30984 , das Teil jeder LaTeX-Standardinstallation ist.
30985 \end_layout
30986
30987 \end_inset
30988
30989
30990 \begin_inset Index idx
30991 status collapsed
30992
30993 \begin_layout Plain Layout
30994 Pakete ! remreset
30995 \end_layout
30996
30997 \end_inset
30998
30999  im LaTeX-Vorspann mit der Zeile
31000 \end_layout
31001
31002 \begin_layout Standard
31003
31004 \series bold
31005
31006 \backslash
31007 usepackage{remreset}
31008 \end_layout
31009
31010 \begin_layout Standard
31011 geladen werden.
31012  Dann kann der Befehl 
31013 \series bold
31014
31015 \backslash
31016 @removefromreset
31017 \series default
31018
31019 \begin_inset Index idx
31020 status collapsed
31021
31022 \begin_layout Plain Layout
31023 Befehle ! 
31024 \begin_inset ERT
31025 status collapsed
31026
31027 \begin_layout Plain Layout
31028
31029 "
31030 \end_layout
31031
31032 \end_inset
31033
31034 @
31035 \begin_inset ERT
31036 status collapsed
31037
31038 \begin_layout Plain Layout
31039
31040 "
31041 \end_layout
31042
31043 \end_inset
31044
31045  ! 
31046 \backslash
31047
31048 \begin_inset ERT
31049 status collapsed
31050
31051 \begin_layout Plain Layout
31052
31053 "
31054 \end_layout
31055
31056 \end_inset
31057
31058 @
31059 \begin_inset ERT
31060 status collapsed
31061
31062 \begin_layout Plain Layout
31063
31064 "
31065 \end_layout
31066
31067 \end_inset
31068
31069 removefromreset
31070 \end_layout
31071
31072 \end_inset
31073
31074  mit dem selben Schema wie 
31075 \series bold
31076
31077 \backslash
31078 @addtoreset
31079 \series default
31080  benutzt werden.
31081 \end_layout
31082
31083 \begin_layout Standard
31084 \begin_inset VSpace bigskip
31085 \end_inset
31086
31087 Oftmals möchte man Formeln in folgender Art nummerieren:
31088 \end_layout
31089
31090 \begin_layout Standard
31091
31092 \family typewriter
31093 (Kapitelnummer.Formelnummer)
31094 \end_layout
31095
31096 \begin_layout Standard
31097 Dabei soll die Formelnummer bei jedem Kapitel wieder mit Eins beginnen.
31098 \end_layout
31099
31100 \begin_layout Standard
31101 Für diesen Fall gibt es den Befehl 
31102 \series bold
31103
31104 \backslash
31105 numberwithin
31106 \series default
31107
31108 \begin_inset Index idx
31109 status collapsed
31110
31111 \begin_layout Plain Layout
31112 Befehle ! N ! 
31113 \backslash
31114 numberwithin
31115 \end_layout
31116
31117 \end_inset
31118
31119 , der nach folgendem Schema benutzt wird:
31120 \end_layout
31121
31122 \begin_layout Standard
31123
31124 \series bold
31125
31126 \backslash
31127 numberwithin{Zähler}{Gliederung}
31128 \end_layout
31129
31130 \begin_layout Standard
31131 Zähler gibt an, welche Nummerierung betroffen ist.
31132  Gliederung gibt an, welche Nummer vor dem Punkt steht.
31133 \end_layout
31134
31135 \begin_layout Standard
31136 In unserem Fall gibt man demnach folgende LaTeX-Vorspann- oder TeX-Code-Zeile
31137  ein:
31138 \end_layout
31139
31140 \begin_layout Standard
31141
31142 \series bold
31143
31144 \backslash
31145 numberwithin{equation}{section}
31146 \end_layout
31147
31148 \begin_layout Standard
31149 Das ist das Ergebnis:
31150 \begin_inset ERT
31151 status collapsed
31152
31153 \begin_layout Plain Layout
31154
31155
31156 \backslash
31157 numberwithin{equation}{section}
31158 \end_layout
31159
31160 \end_inset
31161
31162
31163 \begin_inset Formula 
31164 \begin{equation}
31165 A+B=C
31166 \end{equation}
31167
31168 \end_inset
31169
31170
31171 \end_layout
31172
31173 \begin_layout Standard
31174 Möchte man z.
31175 \begin_inset space \thinspace{}
31176 \end_inset
31177
31178 B.
31179  Tabellen nummerieren, so dass die Nummer des Teils vor dem Punkt steht,
31180  gibt man 
31181 \series bold
31182
31183 \backslash
31184 numberwithin{table}{part}
31185 \series default
31186  ein.
31187 \end_layout
31188
31189 \begin_layout Standard
31190 Um wieder auf Standardnummerierung umzuschalten oder um diese Art der Nummerieru
31191 ng zu vermeiden wenn sie von der Dokumentklasse vorgegeben ist, gibt man
31192  folgenden Befehl als TeX-Code oder als LaTeX-Vorspannzeile ein:
31193 \end_layout
31194
31195 \begin_layout Standard
31196
31197 \series bold
31198
31199 \backslash
31200 renewcommand{
31201 \backslash
31202 theequation}{
31203 \backslash
31204 arabic{equation}}
31205 \begin_inset Index idx
31206 status collapsed
31207
31208 \begin_layout Plain Layout
31209 Befehle ! A ! 
31210 \backslash
31211 arabic
31212 \end_layout
31213
31214 \end_inset
31215
31216
31217 \series default
31218
31219 \begin_inset ERT
31220 status collapsed
31221
31222 \begin_layout Plain Layout
31223
31224
31225 \backslash
31226 renewcommand{
31227 \backslash
31228 theequation}{
31229 \backslash
31230 arabic{equation}}
31231 \end_layout
31232
31233 \end_inset
31234
31235
31236 \series bold
31237
31238 \begin_inset Newline newline
31239 \end_inset
31240
31241
31242 \series default
31243 bzw.
31244 \series bold
31245
31246 \begin_inset Newline newline
31247 \end_inset
31248
31249
31250 \backslash
31251 renewcommand{
31252 \backslash
31253 thetable}{
31254 \backslash
31255 arabic{table}}
31256 \end_layout
31257
31258 \begin_layout Standard
31259
31260 \series bold
31261
31262 \backslash
31263 numberwithin
31264 \series default
31265  benutzt intern den oben beschriebenen Befehl 
31266 \series bold
31267
31268 \backslash
31269 @addtoreset
31270 \series default
31271 , der ebenfalls rückgängig gemacht werden muss.
31272 \begin_inset ERT
31273 status collapsed
31274
31275 \begin_layout Plain Layout
31276
31277
31278 \backslash
31279 makeatletter
31280 \end_layout
31281
31282 \begin_layout Plain Layout
31283
31284
31285 \backslash
31286 @removefromreset{equation}{section}
31287 \end_layout
31288
31289 \begin_layout Plain Layout
31290
31291
31292 \backslash
31293 makeatother
31294 \end_layout
31295
31296 \end_inset
31297
31298
31299 \end_layout
31300
31301 \begin_layout Subsection
31302 Nummerierung mit römischen Zahlen und Buchstaben
31303 \begin_inset Index idx
31304 status collapsed
31305
31306 \begin_layout Plain Layout
31307 Formelnummerierung ! mit Buchstaben
31308 \end_layout
31309
31310 \end_inset
31311
31312
31313 \begin_inset Index idx
31314 status collapsed
31315
31316 \begin_layout Plain Layout
31317 Formelnummerierung ! mit römischen Zahlen
31318 \end_layout
31319
31320 \end_inset
31321
31322
31323 \end_layout
31324
31325 \begin_layout Standard
31326 Formeln können auch mit römischen Zahlen und lateinischen Buchstaben nummeriert
31327  werden.
31328  Um z.
31329 \begin_inset space \thinspace{}
31330 \end_inset
31331
31332 B.
31333  mit kleinen römischen Zahlen zu nummerieren, gibt man vor der Formel im
31334  TeX-Modus den Befehl
31335 \end_layout
31336
31337 \begin_layout Standard
31338
31339 \series bold
31340
31341 \backslash
31342 renewcommand{
31343 \backslash
31344 theequation}{
31345 \backslash
31346 roman{equation}}
31347 \end_layout
31348
31349 \begin_layout Standard
31350 ein.
31351  
31352 \series bold
31353
31354 \backslash
31355 renewcommand
31356 \series default
31357
31358 \begin_inset Index idx
31359 status collapsed
31360
31361 \begin_layout Plain Layout
31362 Befehle ! R ! 
31363 \backslash
31364 renewcommand
31365 \end_layout
31366
31367 \end_inset
31368
31369  weist dem vordefinierten Befehl 
31370 \series bold
31371
31372 \backslash
31373 theequation
31374 \series default
31375  den Befehl
31376 \begin_inset Newline linebreak
31377 \end_inset
31378
31379
31380 \series bold
31381
31382 \backslash
31383 roman{equation}
31384 \series default
31385  zu.
31386 \begin_inset Foot
31387 status collapsed
31388
31389 \begin_layout Plain Layout
31390 Der Befehl 
31391 \series bold
31392
31393 \backslash
31394 renewcommand
31395 \series default
31396  besitzt dasselbe Schema wie der in 
31397 \begin_inset CommandInset ref
31398 LatexCommand ref
31399 reference "sub:Der-Befehl-newcommand"
31400
31401 \end_inset
31402
31403  beschriebene Befehl
31404 \begin_inset Newline newline
31405 \end_inset
31406
31407
31408 \series bold
31409
31410 \backslash
31411 newcommand
31412 \series default
31413 .
31414 \end_layout
31415
31416 \end_inset
31417
31418  
31419 \series bold
31420 equation
31421 \series default
31422  ist der Formelzähler.
31423  Stellt man einem Zähler den Befehl 
31424 \series bold
31425
31426 \backslash
31427 the
31428 \series default
31429  voran, bewirkt dies, dass der Wert des Zählers als arabische Zahl ausgegeben
31430  wird.
31431  Gibt man an, dass eine Formel nummeriert wird, setzt LaTeX intern den Befehl
31432  
31433 \series bold
31434
31435 \backslash
31436 theequation
31437 \series default
31438  hinter die Formel.
31439  
31440 \series bold
31441
31442 \backslash
31443 roman{equation}
31444 \begin_inset Index idx
31445 status collapsed
31446
31447 \begin_layout Plain Layout
31448 Befehle ! R ! 
31449 \backslash
31450 roman
31451 \end_layout
31452
31453 \end_inset
31454
31455
31456 \series default
31457  bewirkt, dass der Formelzähler als kleine römische Zahl erscheint.
31458 \end_layout
31459
31460 \begin_layout Standard
31461 Alle Formeln nach dem 
31462 \series bold
31463
31464 \backslash
31465 renewcommand
31466 \series default
31467 -Befehl werden nun römisch nummeriert.
31468  Um auf Nummerierung mit großen römischen Zahlen umzuschalten, gibt man
31469  den Befehl erneut ein, ersetzt aber 
31470 \series bold
31471
31472 \backslash
31473 roman
31474 \series default
31475  durch 
31476 \series bold
31477
31478 \backslash
31479 Roman
31480 \series default
31481
31482 \begin_inset Index idx
31483 status collapsed
31484
31485 \begin_layout Plain Layout
31486 Befehle ! R ! 
31487 \backslash
31488 roman@
31489 \backslash
31490 Roman
31491 \end_layout
31492
31493 \end_inset
31494
31495 .
31496  Für die 
31497 \begin_inset Quotes gld
31498 \end_inset
31499
31500 Nummerierung
31501 \begin_inset Quotes grd
31502 \end_inset
31503
31504  mit lateinischen Buchstaben gibt es den Befehl 
31505 \series bold
31506
31507 \backslash
31508 alph
31509 \series default
31510
31511 \begin_inset Index idx
31512 status collapsed
31513
31514 \begin_layout Plain Layout
31515 Befehle ! A ! 
31516 \backslash
31517 alph
31518 \end_layout
31519
31520 \end_inset
31521
31522  für kleine und 
31523 \series bold
31524
31525 \backslash
31526 Alph
31527 \series default
31528
31529 \begin_inset Index idx
31530 status collapsed
31531
31532 \begin_layout Plain Layout
31533 Befehle ! A ! 
31534 \backslash
31535 alph@
31536 \backslash
31537 Alph
31538 \end_layout
31539
31540 \end_inset
31541
31542  für große Buchstaben.
31543 \end_layout
31544
31545 \begin_layout Standard
31546 \begin_inset Note Greyedout
31547 status open
31548
31549 \begin_layout Plain Layout
31550
31551 \series bold
31552 Achtung:
31553 \series default
31554  Es können nur maximal 26 Formeln in einem Dokument mit lateinischen Buchstaben
31555  nummeriert werden.
31556 \end_layout
31557
31558 \end_inset
31559
31560
31561 \end_layout
31562
31563 \begin_layout Standard
31564 \begin_inset ERT
31565 status collapsed
31566
31567 \begin_layout Plain Layout
31568
31569
31570 \backslash
31571 renewcommand{
31572 \backslash
31573 theequation}{
31574 \backslash
31575 roman{equation}}
31576 \end_layout
31577
31578 \end_inset
31579
31580
31581 \end_layout
31582
31583 \begin_layout Standard
31584 \begin_inset Formula 
31585 \begin{equation}
31586 A=\textrm{römisch}
31587 \end{equation}
31588
31589 \end_inset
31590
31591
31592 \begin_inset ERT
31593 status collapsed
31594
31595 \begin_layout Plain Layout
31596
31597
31598 \backslash
31599 renewcommand{
31600 \backslash
31601 theequation}{
31602 \backslash
31603 Roman{equation}}
31604 \end_layout
31605
31606 \end_inset
31607
31608
31609 \begin_inset Formula 
31610 \begin{equation}
31611 B=\textrm{Römisch}\label{eq:Roem}
31612 \end{equation}
31613
31614 \end_inset
31615
31616
31617 \begin_inset ERT
31618 status collapsed
31619
31620 \begin_layout Plain Layout
31621
31622
31623 \backslash
31624 renewcommand{
31625 \backslash
31626 theequation}{
31627 \backslash
31628 alph{equation}}
31629 \end_layout
31630
31631 \end_inset
31632
31633
31634 \begin_inset Formula 
31635 \begin{equation}
31636 C=\textrm{lateinisch}
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 Alph{equation}}
31654 \end_layout
31655
31656 \end_inset
31657
31658
31659 \begin_inset Formula 
31660 \begin{equation}
31661 D=\textrm{Lateinisch}\label{eq:Lat}
31662 \end{equation}
31663
31664 \end_inset
31665
31666
31667 \end_layout
31668
31669 \begin_layout Standard
31670 Um wieder auf Standardnummerierung umzuschalten, gibt man folgenden Befehl
31671  ein:
31672 \end_layout
31673
31674 \begin_layout Standard
31675
31676 \series bold
31677
31678 \backslash
31679 renewcommand{
31680 \backslash
31681 theequation}{
31682 \backslash
31683 arabic{equation}}
31684 \begin_inset Index idx
31685 status collapsed
31686
31687 \begin_layout Plain Layout
31688 Befehle ! A ! 
31689 \backslash
31690 arabic
31691 \end_layout
31692
31693 \end_inset
31694
31695
31696 \end_layout
31697
31698 \begin_layout Standard
31699 \begin_inset ERT
31700 status collapsed
31701
31702 \begin_layout Plain Layout
31703
31704
31705 \backslash
31706 renewcommand{
31707 \backslash
31708 theequation}{
31709 \backslash
31710 arabic{equation}}
31711 \end_layout
31712
31713 \end_inset
31714
31715
31716 \begin_inset Formula 
31717 \begin{equation}
31718 E=\textrm{arabisch}
31719 \end{equation}
31720
31721 \end_inset
31722
31723
31724 \end_layout
31725
31726 \begin_layout Standard
31727 \begin_inset VSpace medskip
31728 \end_inset
31729
31730 Wie man sieht, werden die Formeln unabhängig von der Nummerierungsart durchnumme
31731 riert.
31732  Soll beim Wechsel der Nummerierungsart die Nummerierung wieder mit Eins
31733  beginnen, müssen neue Formelzähler angelegt werden.
31734  Eine Beschreibung dazu findet man in der Datei 
31735 \begin_inset CommandInset href
31736 LatexCommand href
31737 name "Formelnummerierung.lyx"
31738 target "run:Formelnummerierung.lyx"
31739
31740 \end_inset
31741
31742 .
31743 \end_layout
31744
31745 \begin_layout Section
31746 Chemische Symbole und Reaktionsgleichungen
31747 \begin_inset CommandInset label
31748 LatexCommand label
31749 name "sub:Chemische-Symbole-und"
31750
31751 \end_inset
31752
31753
31754 \begin_inset Index idx
31755 status collapsed
31756
31757 \begin_layout Plain Layout
31758 chemische Zeichen ! Symbole
31759 \end_layout
31760
31761 \end_inset
31762
31763
31764 \begin_inset Index idx
31765 status collapsed
31766
31767 \begin_layout Plain Layout
31768 Reaktionsgleichungen
31769 \end_layout
31770
31771 \end_inset
31772
31773
31774 \begin_inset Index idx
31775 status collapsed
31776
31777 \begin_layout Plain Layout
31778 Symbole ! chemische
31779 \end_layout
31780
31781 \end_inset
31782
31783
31784 \end_layout
31785
31786 \begin_layout Standard
31787 Ein Beispieltext aus der Chemie:
31788 \end_layout
31789
31790 \begin_layout Quote
31791 Das 
31792 \begin_inset Formula $\mathrm{SO_{4}^{2-}}$
31793 \end_inset
31794
31795 -Ion verbindet sich mit zwei 
31796 \begin_inset Formula $\mathrm{Na^{+}}$
31797 \end_inset
31798
31799 -Ionen zu Natriumsulfat 
31800 \begin_inset Formula $\left(\mathrm{Na_{2}SO_{4}}\right)$
31801 \end_inset
31802
31803 .
31804  Die Reaktionsgleichung dazu lautet:
31805 \begin_inset Formula 
31806 \begin{equation}
31807 \mathrm{2\, Na^{+}+SO_{4}^{2-}\longrightarrow Na_{2}SO_{4}}\label{eq:chemische-Reaktion}
31808 \end{equation}
31809
31810 \end_inset
31811
31812
31813 \end_layout
31814
31815 \begin_layout Standard
31816 Diese Reaktionsgleichung kann direkt als Formel erstellt werden.
31817  Damit die Symbole nicht kursiv erscheinen, markiert man sämtliche Zeichen
31818  in der Formel und wandelt diese mit der Tastenkombination 
31819 \family sans
31820 Alt+Z
31821 \begin_inset space ~
31822 \end_inset
31823
31824 R
31825 \family default
31826  in den aufrechten Schriftstil um.
31827 \begin_inset Foot
31828 status collapsed
31829
31830 \begin_layout Plain Layout
31831 Schriftstile siehe 
31832 \begin_inset CommandInset ref
31833 LatexCommand ref
31834 reference "sub:Schriftstile"
31835
31836 \end_inset
31837
31838
31839 \end_layout
31840
31841 \end_inset
31842
31843
31844 \end_layout
31845
31846 \begin_layout Standard
31847 Eine komfortablerer Weg chemische Formeln zu setzen, ist es den Befehl
31848 \series bold
31849  
31850 \backslash
31851 ce
31852 \series default
31853
31854 \begin_inset Index idx
31855 status collapsed
31856
31857 \begin_layout Plain Layout
31858 Befehle ! C ! 
31859 \backslash
31860 ce
31861 \end_layout
31862
31863 \end_inset
31864
31865  zu benutzen.
31866  Dieser ist verfügbar, wenn das LaTeX-Paket 
31867 \series bold
31868 mhchem
31869 \series default
31870
31871 \begin_inset Index idx
31872 status collapsed
31873
31874 \begin_layout Plain Layout
31875 Pakete ! mhchem
31876 \end_layout
31877
31878 \end_inset
31879
31880  installiert ist.
31881  Nachdem 
31882 \series bold
31883
31884 \backslash
31885 ce
31886 \series default
31887  in eine Formel eingefügt wurde, erscheint eine neue blaue Box in die chemische
31888  Formeln in intuitiver Weise eingegeben werden können.
31889 \end_layout
31890
31891 \begin_layout Standard
31892 \align center
31893 \begin_inset Tabular
31894 <lyxtabular version="3" rows="9" columns="2">
31895 <features tabularvalignment="middle">
31896 <column alignment="center" valignment="top" width="0">
31897 <column alignment="center" valignment="top" width="0">
31898 <row>
31899 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
31900 \begin_inset Text
31901
31902 \begin_layout Plain Layout
31903 Befehl
31904 \end_layout
31905
31906 \end_inset
31907 </cell>
31908 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
31909 \begin_inset Text
31910
31911 \begin_layout Plain Layout
31912 Ergebnis
31913 \begin_inset Note Note
31914 status collapsed
31915
31916 \begin_layout Plain Layout
31917
31918 \series bold
31919
31920 \backslash
31921 raisebox
31922 \series default
31923  dient nur als Abstandhalter.
31924 \end_layout
31925
31926 \end_inset
31927
31928
31929 \end_layout
31930
31931 \end_inset
31932 </cell>
31933 </row>
31934 <row>
31935 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
31936 \begin_inset Text
31937
31938 \begin_layout Plain Layout
31939
31940 \backslash
31941 ce
31942 \begin_inset ERT
31943 status collapsed
31944
31945 \begin_layout Plain Layout
31946
31947
31948 \backslash
31949 leer 
31950 \end_layout
31951
31952 \end_inset
31953
31954 H2CO3
31955 \end_layout
31956
31957 \end_inset
31958 </cell>
31959 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
31960 \begin_inset Text
31961
31962 \begin_layout Plain Layout
31963 \begin_inset Formula $\raisebox{4.5mm}{}\ce{H2CO3}\raisebox{-2mm}{}$
31964 \end_inset
31965
31966
31967 \end_layout
31968
31969 \end_inset
31970 </cell>
31971 </row>
31972 <row>
31973 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
31974 \begin_inset Text
31975
31976 \begin_layout Plain Layout
31977
31978 \backslash
31979 ce
31980 \begin_inset ERT
31981 status collapsed
31982
31983 \begin_layout Plain Layout
31984
31985
31986 \backslash
31987 leer 
31988 \end_layout
31989
31990 \end_inset
31991
31992 SO4^2-
31993 \end_layout
31994
31995 \end_inset
31996 </cell>
31997 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
31998 \begin_inset Text
31999
32000 \begin_layout Plain Layout
32001 \begin_inset Formula $\raisebox{5mm}{}\ce{SO4^{2-}}\raisebox{-2mm}{}$
32002 \end_inset
32003
32004
32005 \end_layout
32006
32007 \end_inset
32008 </cell>
32009 </row>
32010 <row>
32011 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
32012 \begin_inset Text
32013
32014 \begin_layout Plain Layout
32015
32016 \backslash
32017 ce
32018 \begin_inset ERT
32019 status collapsed
32020
32021 \begin_layout Plain Layout
32022
32023
32024 \backslash
32025 leer 
32026 \end_layout
32027
32028 \end_inset
32029
32030 (NH4)2S
32031 \end_layout
32032
32033 \end_inset
32034 </cell>
32035 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
32036 \begin_inset Text
32037
32038 \begin_layout Plain Layout
32039 \begin_inset Formula $\raisebox{4.5mm}{}\ce{(NH4)2S}\raisebox{-2mm}{}$
32040 \end_inset
32041
32042
32043 \end_layout
32044
32045 \end_inset
32046 </cell>
32047 </row>
32048 <row>
32049 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
32050 \begin_inset Text
32051
32052 \begin_layout Plain Layout
32053
32054 \backslash
32055 ce
32056 \begin_inset ERT
32057 status collapsed
32058
32059 \begin_layout Plain Layout
32060
32061
32062 \backslash
32063 leer 
32064 \end_layout
32065
32066 \end_inset
32067
32068 KCr(SO4)2.12H2O
32069 \end_layout
32070
32071 \end_inset
32072 </cell>
32073 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
32074 \begin_inset Text
32075
32076 \begin_layout Plain Layout
32077 \begin_inset Formula $\raisebox{4.5mm}{}\ce{KCr(SO4)2.12H2O}\raisebox{-2mm}{}$
32078 \end_inset
32079
32080
32081 \end_layout
32082
32083 \end_inset
32084 </cell>
32085 </row>
32086 <row>
32087 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
32088 \begin_inset Text
32089
32090 \begin_layout Plain Layout
32091
32092 \backslash
32093 ce
32094 \begin_inset ERT
32095 status collapsed
32096
32097 \begin_layout Plain Layout
32098
32099
32100 \backslash
32101 leer 
32102 \end_layout
32103
32104 \end_inset
32105
32106 A-B
32107 \backslash
32108 dbond
32109 \begin_inset ERT
32110 status collapsed
32111
32112 \begin_layout Plain Layout
32113
32114
32115 \backslash
32116 leer 
32117 \end_layout
32118
32119 \end_inset
32120
32121 C
32122 \backslash
32123 tbond
32124 \begin_inset ERT
32125 status collapsed
32126
32127 \begin_layout Plain Layout
32128
32129
32130 \backslash
32131 leer 
32132 \end_layout
32133
32134 \end_inset
32135
32136 D
32137 \end_layout
32138
32139 \end_inset
32140 </cell>
32141 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
32142 \begin_inset Text
32143
32144 \begin_layout Plain Layout
32145 \begin_inset Formula $\raisebox{4.5mm}{}\ce{A-B\dbond C\tbond D}\raisebox{-2mm}{}$
32146 \end_inset
32147
32148
32149 \end_layout
32150
32151 \end_inset
32152 </cell>
32153 </row>
32154 <row>
32155 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
32156 \begin_inset Text
32157
32158 \begin_layout Plain Layout
32159
32160 \backslash
32161 ce
32162 \begin_inset ERT
32163 status collapsed
32164
32165 \begin_layout Plain Layout
32166
32167
32168 \backslash
32169 leer 
32170 \end_layout
32171
32172 \end_inset
32173
32174 ^227
32175 \begin_inset Formula $\downarrow$
32176 \end_inset
32177
32178 _90
32179 \begin_inset Formula $\to$
32180 \end_inset
32181
32182 Th+
32183 \end_layout
32184
32185 \end_inset
32186 </cell>
32187 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
32188 \begin_inset Text
32189
32190 \begin_layout Plain Layout
32191 \begin_inset Formula $\raisebox{5mm}{}\ce{_{90}^{227}Th+}\raisebox{-2mm}{}$
32192 \end_inset
32193
32194
32195 \end_layout
32196
32197 \end_inset
32198 </cell>
32199 </row>
32200 <row>
32201 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
32202 \begin_inset Text
32203
32204 \begin_layout Plain Layout
32205
32206 \backslash
32207 ce
32208 \begin_inset ERT
32209 status collapsed
32210
32211 \begin_layout Plain Layout
32212
32213
32214 \backslash
32215 leer 
32216 \end_layout
32217
32218 \end_inset
32219
32220 CO2
32221 \begin_inset ERT
32222 status collapsed
32223
32224 \begin_layout Plain Layout
32225
32226
32227 \backslash
32228 leer 
32229 \end_layout
32230
32231 \end_inset
32232
32233 +
32234 \begin_inset ERT
32235 status collapsed
32236
32237 \begin_layout Plain Layout
32238
32239
32240 \backslash
32241 leer 
32242 \end_layout
32243
32244 \end_inset
32245
32246 C
32247 \begin_inset ERT
32248 status collapsed
32249
32250 \begin_layout Plain Layout
32251
32252
32253 \backslash
32254 leer 
32255 \end_layout
32256
32257 \end_inset
32258
32259 <=>
32260 \begin_inset ERT
32261 status collapsed
32262
32263 \begin_layout Plain Layout
32264
32265
32266 \backslash
32267 leer 
32268 \end_layout
32269
32270 \end_inset
32271
32272 2CO
32273 \end_layout
32274
32275 \end_inset
32276 </cell>
32277 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
32278 \begin_inset Text
32279
32280 \begin_layout Plain Layout
32281 \begin_inset Formula $\raisebox{4.5mm}{}\ce{CO2 + C <=> 2CO}\raisebox{-2mm}{}$
32282 \end_inset
32283
32284
32285 \end_layout
32286
32287 \end_inset
32288 </cell>
32289 </row>
32290 <row>
32291 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
32292 \begin_inset Text
32293
32294 \begin_layout Plain Layout
32295
32296 \backslash
32297 ce
32298 \begin_inset ERT
32299 status collapsed
32300
32301 \begin_layout Plain Layout
32302
32303
32304 \backslash
32305 leer 
32306 \end_layout
32307
32308 \end_inset
32309
32310 CO2
32311 \begin_inset ERT
32312 status collapsed
32313
32314 \begin_layout Plain Layout
32315
32316
32317 \backslash
32318 leer 
32319 \end_layout
32320
32321 \end_inset
32322
32323 +
32324 \begin_inset ERT
32325 status collapsed
32326
32327 \begin_layout Plain Layout
32328
32329
32330 \backslash
32331 leer 
32332 \end_layout
32333
32334 \end_inset
32335
32336 C
32337 \begin_inset ERT
32338 status collapsed
32339
32340 \begin_layout Plain Layout
32341
32342
32343 \backslash
32344 leer 
32345 \end_layout
32346
32347 \end_inset
32348
32349 ->[
32350 \backslash
32351 alpha][
32352 \backslash
32353 beta]
32354 \begin_inset ERT
32355 status collapsed
32356
32357 \begin_layout Plain Layout
32358
32359
32360 \backslash
32361 leer 
32362 \end_layout
32363
32364 \end_inset
32365
32366 2CO}
32367 \end_layout
32368
32369 \end_inset
32370 </cell>
32371 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
32372 \begin_inset Text
32373
32374 \begin_layout Plain Layout
32375 \begin_inset Formula $\raisebox{5mm}{}\ce{CO2 + C ->[\alpha][\beta] 2CO}\raisebox{-4mm}{}$
32376 \end_inset
32377
32378
32379 \end_layout
32380
32381 \end_inset
32382 </cell>
32383 </row>
32384 </lyxtabular>
32385
32386 \end_inset
32387
32388
32389 \end_layout
32390
32391 \begin_layout Standard
32392 \begin_inset Note Greyedout
32393 status open
32394
32395 \begin_layout Plain Layout
32396
32397 \series bold
32398 Achtung:
32399 \series default
32400  Wenn eine Formel in eine 
32401 \series bold
32402
32403 \backslash
32404 ce
32405 \series default
32406 -Box eingefügt wird, führt dies zu LaTeX-Fehlern.
32407  In diesem Fall muss daher TeX-Code verwendet werden, wie z.
32408 \begin_inset space \thinspace{}
32409 \end_inset
32410
32411 B.
32412  für 
32413 \series bold
32414
32415 \backslash
32416 ce{$
32417 \backslash
32418 mu
32419 \backslash
32420 hyphen$Cl}
32421 \series default
32422
32423 \begin_inset ERT
32424 status collapsed
32425
32426 \begin_layout Plain Layout
32427
32428
32429 \backslash
32430 ce{$
32431 \backslash
32432 mu
32433 \backslash
32434 hyphen$Cl}
32435 \end_layout
32436
32437 \end_inset
32438
32439  
32440 \end_layout
32441
32442 \end_inset
32443
32444
32445 \end_layout
32446
32447 \begin_layout Standard
32448 Wird 
32449 \series bold
32450
32451 \backslash
32452 ce
32453 \series default
32454  benutzt, lautet der Befehl für Gleichung
32455 \begin_inset space ~
32456 \end_inset
32457
32458
32459 \begin_inset CommandInset ref
32460 LatexCommand eqref
32461 reference "eq:chemische-Reaktion"
32462
32463 \end_inset
32464
32465 :
32466 \begin_inset Newline newline
32467 \end_inset
32468
32469
32470 \series bold
32471  
32472 \backslash
32473 ce
32474 \series default
32475
32476 \begin_inset ERT
32477 status collapsed
32478
32479 \begin_layout Plain Layout
32480
32481
32482 \backslash
32483 leer 
32484 \end_layout
32485
32486 \end_inset
32487
32488
32489 \series bold
32490 2Na+
32491 \series default
32492
32493 \begin_inset ERT
32494 status collapsed
32495
32496 \begin_layout Plain Layout
32497
32498
32499 \backslash
32500 leer 
32501 \end_layout
32502
32503 \end_inset
32504
32505
32506 \series bold
32507 +
32508 \series default
32509
32510 \begin_inset ERT
32511 status collapsed
32512
32513 \begin_layout Plain Layout
32514
32515
32516 \backslash
32517 leer 
32518 \end_layout
32519
32520 \end_inset
32521
32522
32523 \series bold
32524 SO4^2-
32525 \series default
32526
32527 \begin_inset ERT
32528 status collapsed
32529
32530 \begin_layout Plain Layout
32531
32532
32533 \backslash
32534 leer 
32535 \end_layout
32536
32537 \end_inset
32538
32539
32540 \begin_inset ERT
32541 status collapsed
32542
32543 \begin_layout Plain Layout
32544
32545
32546 \backslash
32547 leer 
32548 \end_layout
32549
32550 \end_inset
32551
32552
32553 \series bold
32554 ->
32555 \series default
32556
32557 \begin_inset ERT
32558 status collapsed
32559
32560 \begin_layout Plain Layout
32561
32562
32563 \backslash
32564 leer 
32565 \end_layout
32566
32567 \end_inset
32568
32569
32570 \series bold
32571 Na2SO4
32572 \end_layout
32573
32574 \begin_layout Standard
32575 Um mehrzeilige chemische Gleichungen zu erzeugen, wird zuerst eine mehrzeilige
32576  Formel erstellt, wie in 
32577 \begin_inset CommandInset ref
32578 LatexCommand ref
32579 reference "sec:Mehrzeilige-Formeln"
32580
32581 \end_inset
32582
32583  beschrieben.
32584  Anschließend wird in jeder kleinen blauen Box der Formel der Befehl 
32585 \series bold
32586
32587 \backslash
32588 ce
32589 \series default
32590  verwendet.
32591  
32592 \begin_inset CommandInset ref
32593 LatexCommand eqref
32594 reference "eq:TEOS-Reaktion-1"
32595
32596 \end_inset
32597
32598  und 
32599 \begin_inset CommandInset ref
32600 LatexCommand eqref
32601 reference "eq:TEOS-Reaktion-2"
32602
32603 \end_inset
32604
32605  sind ein Beispiel für eine mehrstufige chemische Reaktion, bei der jede
32606  Gleichung eine eigene Nummer hat.
32607 \begin_inset Formula 
32608 \begin{eqnarray}
32609 \ce{TEOS + 4O} & \ce{->} & \ce{Si(OH)4 + 4C2H4O}\label{eq:TEOS-Reaktion-1}\\
32610 \ce{Si(OH)4} & \ce{->} & \ce{SiO2 + 2H2O}\label{eq:TEOS-Reaktion-2}
32611 \end{eqnarray}
32612
32613 \end_inset
32614
32615
32616 \end_layout
32617
32618 \begin_layout Standard
32619 Außer 
32620 \series bold
32621
32622 \backslash
32623 ce
32624 \series default
32625  bietet das Paket 
32626 \series bold
32627 mhchem
32628 \series default
32629  noch den Befehl 
32630 \series bold
32631
32632 \backslash
32633 cf
32634 \series default
32635
32636 \begin_inset Index idx
32637 status collapsed
32638
32639 \begin_layout Plain Layout
32640 Befehle ! C ! 
32641 \backslash
32642 cf
32643 \end_layout
32644
32645 \end_inset
32646
32647  für spezielle Fälle.
32648  Mehr über 
32649 \series bold
32650
32651 \backslash
32652 cf
32653 \series default
32654  und weitere Beispiele sind in der Dokumentation von 
32655 \series bold
32656 mhchem
32657 \series default
32658  zu finden, 
32659 \begin_inset CommandInset citation
32660 LatexCommand cite
32661 key "mhchem"
32662
32663 \end_inset
32664
32665 .
32666 \end_layout
32667
32668 \begin_layout Section
32669 Diagramme
32670 \end_layout
32671
32672 \begin_layout Standard
32673 LyX unterstützt zwei Typen kommutativer Diagramme: 
32674 \series bold
32675 amscd
32676 \series default
32677  und 
32678 \series bold
32679 xymatrix
32680 \series default
32681 , die im Folgenden erläutert sind.
32682 \end_layout
32683
32684 \begin_layout Subsection
32685 amscd Diagramme
32686 \begin_inset Index idx
32687 status collapsed
32688
32689 \begin_layout Plain Layout
32690 Diagramme ! amscd
32691 \end_layout
32692
32693 \end_inset
32694
32695
32696 \end_layout
32697
32698 \begin_layout Standard
32699 Diagramme dieses Typs stellen Beziehungen mittels horizontaler und vertikaler
32700  Linien oder Pfeilen dar:
32701 \begin_inset Formula 
32702 \[
32703 \begin{CD}A@>>>B@>>>C\\
32704 @AAA@.@VVV\\
32705 F@<<<E@<<<D
32706 \end{CD}
32707 \]
32708
32709 \end_inset
32710
32711
32712 \end_layout
32713
32714 \begin_layout Standard
32715 Um sie zu erstellen, gibt man in einer Formel den Befehl 
32716 \series bold
32717
32718 \backslash
32719 CD
32720 \begin_inset Index idx
32721 status collapsed
32722
32723 \begin_layout Plain Layout
32724 Befehle ! C ! 
32725 \backslash
32726 CD
32727 \end_layout
32728
32729 \end_inset
32730
32731
32732 \series default
32733  ein.
32734  Es erscheint ein blaues Kästchen mit zwei gestrichelten Linien, in das
32735  man die weiteren Befehle eingibt.
32736  Mit 
32737 \series bold
32738
32739 \begin_inset ERT
32740 status collapsed
32741
32742 \begin_layout Plain Layout
32743
32744
32745 \backslash
32746 mbox{
32747 \end_layout
32748
32749 \end_inset
32750
32751
32752 \family sans
32753 \series default
32754 Strg+Enter
32755 \family default
32756 \series bold
32757
32758 \begin_inset ERT
32759 status collapsed
32760
32761 \begin_layout Plain Layout
32762
32763 }
32764 \end_layout
32765
32766 \end_inset
32767
32768
32769 \series default
32770  wird eine neue Zeile erstellt.
32771  Horizontale Beziehungen werden in ungerade Zeilen, vertikale in gerade
32772  Zeilen der Formel eingegeben.
32773 \end_layout
32774
32775 \begin_layout Standard
32776 Zum Erstellen der Beziehungen gibt es folgende Befehle:
32777 \end_layout
32778
32779 \begin_layout Itemize
32780
32781 \series bold
32782 @<<<
32783 \series default
32784  erstellt einen Linkspfeil, 
32785 \series bold
32786 @>>>
32787 \series default
32788  einen Rechtspfeil und 
32789 \series bold
32790 @=
32791 \series default
32792  ein langes Gleichheitszeichen
32793 \end_layout
32794
32795 \begin_layout Itemize
32796
32797 \series bold
32798 @AAA
32799 \series default
32800  erstellt einen Pfeil nach oben, 
32801 \series bold
32802 @VVV
32803 \series default
32804  einen Pfeil nach unten und 
32805 \series bold
32806 @|
32807 \series default
32808  ein senkrechtes Gleichheitszeichen
32809 \end_layout
32810
32811 \begin_layout Itemize
32812
32813 \series bold
32814 @.
32815
32816 \series default
32817  dient als Platzhalter für nicht vorhandene Beziehungen
32818 \end_layout
32819
32820 \begin_layout Standard
32821 Alle Pfeile sind wie folgt beschriftbar:
32822 \end_layout
32823
32824 \begin_layout Itemize
32825 Wird bei horizontalen Pfeilen zwischen dem ersten und zweiten < bzw.
32826  > Text eingegeben, erscheint er über dem Pfeil.
32827  Wird der Text zwischen dem zweiten und dritten < bzw.
32828  > eingegeben, erscheint er unter dem Pfeil.
32829 \end_layout
32830
32831 \begin_layout Itemize
32832 Wird bei vertikalen Pfeilen Text zwischen erstem und zweitem A bzw.
32833  V eingegeben, erscheint er links neben dem Pfeil.
32834  Bei Eingabe zwischen zweitem und drittem A bzw.
32835  V erscheint er rechts daneben.
32836  Enthält der Text ein A oder V, müssen diese Buchstaben in eine TeX-Klammer
32837  gesetzt werden.
32838 \end_layout
32839
32840 \begin_layout Standard
32841 Als Beispiel ein Diagramm mit allen möglichen Beziehungen:
32842 \end_layout
32843
32844 \begin_layout Standard
32845 \begin_inset Formula 
32846 \[
32847 \begin{CD}A@>j>>B@>>k>C@=F\\
32848 @AmAA@.@VV{V}V@|\\
32849 D@<<j<E@>k>>F@=C
32850 \end{CD}
32851 \]
32852
32853 \end_inset
32854
32855
32856 \end_layout
32857
32858 \begin_layout Standard
32859 Der Befehl dazu lautet:
32860 \begin_inset Newline newline
32861 \end_inset
32862
32863
32864 \series bold
32865
32866 \backslash
32867 CD
32868 \begin_inset ERT
32869 status collapsed
32870
32871 \begin_layout Plain Layout
32872
32873
32874 \backslash
32875 leer 
32876 \end_layout
32877
32878 \end_inset
32879
32880 A@>j>>B@>>k>C@=F Strg+Enter
32881 \begin_inset Newline newline
32882 \end_inset
32883
32884
32885 \begin_inset Phantom HPhantom
32886 status open
32887
32888 \begin_layout Plain Layout
32889
32890 \series bold
32891
32892 \backslash
32893 CD
32894 \begin_inset ERT
32895 status collapsed
32896
32897 \begin_layout Plain Layout
32898
32899
32900 \backslash
32901 leer 
32902 \end_layout
32903
32904 \end_inset
32905
32906
32907 \end_layout
32908
32909 \end_inset
32910
32911 @AmAA@.@VV
32912 \backslash
32913 {V
32914 \series default
32915
32916 \begin_inset Formula $\to$
32917 \end_inset
32918
32919
32920 \series bold
32921 V@| Strg+Enter
32922 \begin_inset Newline newline
32923 \end_inset
32924
32925
32926 \begin_inset Phantom HPhantom
32927 status open
32928
32929 \begin_layout Plain Layout
32930
32931 \series bold
32932
32933 \backslash
32934 CD
32935 \begin_inset ERT
32936 status collapsed
32937
32938 \begin_layout Plain Layout
32939
32940
32941 \backslash
32942 leer 
32943 \end_layout
32944
32945 \end_inset
32946
32947
32948 \end_layout
32949
32950 \end_inset
32951
32952 D@<<j<E@>k>>F@=C
32953 \end_layout
32954
32955 \begin_layout Subsection
32956 xymatrix Diagramme
32957 \begin_inset Index idx
32958 status collapsed
32959
32960 \begin_layout Plain Layout
32961 Diagramme ! xymatrix
32962 \end_layout
32963
32964 \end_inset
32965
32966
32967 \end_layout
32968
32969 \begin_layout Standard
32970 Um Xymatrizen nutzen zu können, muss das LaTeX-Paket 
32971 \series bold
32972 xypic
32973 \series default
32974  installiert sein.
32975  Eine Xymatrix wird erstellt, indem der Befehl 
32976 \series bold
32977
32978 \backslash
32979 xymatrix
32980 \series default
32981  in eine Formel eingegeben wird.
32982  Dann können Sie neue Matrixspalten und -zeilen wie bei normalen Matrizen
32983  hinzufügen, siehe 
32984 \begin_inset CommandInset ref
32985 LatexCommand ref
32986 reference "sec:Matrizen"
32987
32988 \end_inset
32989
32990 .
32991 \end_layout
32992
32993 \begin_layout Standard
32994 Im Gegensatz zu amscd Diagrammen, unterstützen Xymatrixen diagonale und
32995  gekrümmte Pfeile und vieles mehr.
32996  Alle Möglichkeiten kommutative Diagramme und Dekorationen zu erzeugen,
32997  sind im Detail im 
32998 \emph on
32999 XY-pic-Handbuch
33000 \emph default
33001  erklärt, dass im Menü 
33002 \family sans
33003 Hilfe\SpecialChar \menuseparator
33004 Spezielle
33005 \begin_inset space ~
33006 \end_inset
33007
33008 Handbücher
33009 \family default
33010  zu finden ist.
33011 \end_layout
33012
33013 \begin_layout Subsection
33014
33015 \noun on
33016 Feynman
33017 \noun default
33018  Diagramme
33019 \begin_inset Index idx
33020 status collapsed
33021
33022 \begin_layout Plain Layout
33023 Diagramme ! Feynman
33024 \end_layout
33025
33026 \end_inset
33027
33028
33029 \end_layout
33030
33031 \begin_layout Standard
33032 Um 
33033 \noun on
33034 Feynman-
33035 \noun default
33036 Diagrammen nutzen zu können, muss das LaTeX-Paket 
33037 \series bold
33038 feyn
33039 \series default
33040  installiert sein.
33041  Ein 
33042 \noun on
33043 Feynman-
33044 \noun default
33045 Diagramm wird erstellt, indem der Befehl 
33046 \series bold
33047
33048 \backslash
33049 Diagram
33050 \series default
33051  in eine Formel eingegeben wird.
33052  Dann können Sie neue Matrixspalten und -zeilen wie bei normalen Matrizen
33053  hinzufügen, siehe 
33054 \begin_inset CommandInset ref
33055 LatexCommand ref
33056 reference "sec:Matrizen"
33057
33058 \end_inset
33059
33060 .
33061 \end_layout
33062
33063 \begin_layout Standard
33064 Beispiele wie man in LyX 
33065 \noun on
33066 Feynman-
33067 \noun default
33068 Diagramme erstellt sind im 
33069 \emph on
33070 Feynman-Diagramm Handbuch
33071 \emph default
33072  gegeben, dass im Menü 
33073 \family sans
33074 Hilfe\SpecialChar \menuseparator
33075 Spezielle
33076 \begin_inset space ~
33077 \end_inset
33078
33079 Handbücher
33080 \family default
33081  zu finden ist.
33082 \end_layout
33083
33084 \begin_layout Section
33085 Benutzerdefinierte Befehle
33086 \begin_inset CommandInset label
33087 LatexCommand label
33088 name "sec:Benutzerdefinierte-Befehle"
33089
33090 \end_inset
33091
33092
33093 \begin_inset Index idx
33094 status collapsed
33095
33096 \begin_layout Plain Layout
33097 benutzerdefinierte Befehle
33098 \end_layout
33099
33100 \end_inset
33101
33102
33103 \end_layout
33104
33105 \begin_layout Standard
33106 \begin_inset Note Greyedout
33107 status open
33108
33109 \begin_layout Plain Layout
33110
33111 \series bold
33112 Achtung: 
33113 \series default
33114 Die Namen von benutzerdefinierten Befehlen und Makros dürfen nur aus lateinische
33115 n Buchstaben bestehen.
33116 \end_layout
33117
33118 \end_inset
33119
33120
33121 \end_layout
33122
33123 \begin_layout Subsection
33124 Der Befehl 
33125 \backslash
33126 newcommand
33127 \begin_inset CommandInset label
33128 LatexCommand label
33129 name "sub:Der-Befehl-newcommand"
33130
33131 \end_inset
33132
33133
33134 \begin_inset Index idx
33135 status collapsed
33136
33137 \begin_layout Plain Layout
33138 benutzerdefinierte Befehle ! 
33139 \backslash
33140 newcommand
33141 \end_layout
33142
33143 \end_inset
33144
33145
33146 \begin_inset Index idx
33147 status collapsed
33148
33149 \begin_layout Plain Layout
33150 Befehle ! N ! 
33151 \backslash
33152 newcommand
33153 \end_layout
33154
33155 \end_inset
33156
33157
33158 \end_layout
33159
33160 \begin_layout Standard
33161 Viele der LaTeX-Befehle sind für den ständigen Gebrauch viel zu lang.
33162  Man kann sich aber mit dem Befehl 
33163 \series bold
33164
33165 \backslash
33166 newcommand
33167 \series default
33168  neue kürzere Befehle definieren.
33169 \end_layout
33170
33171 \begin_layout Standard
33172 Das Befehlsschema von 
33173 \series bold
33174
33175 \backslash
33176 newcommand
33177 \series default
33178  lautet:
33179 \end_layout
33180
33181 \begin_layout Standard
33182
33183 \series bold
33184
33185 \backslash
33186 newcommand{neuer Befehlsname}[Argumentanzahl][optionaler
33187 \series default
33188  
33189 \series bold
33190 Wert]
33191 \begin_inset Newline newline
33192 \end_inset
33193
33194
33195 \begin_inset Phantom HPhantom
33196 status open
33197
33198 \begin_layout Plain Layout
33199
33200 \series bold
33201
33202 \backslash
33203 newcommand
33204 \end_layout
33205
33206 \end_inset
33207
33208 {Befehlsdefinition}
33209 \end_layout
33210
33211 \begin_layout Standard
33212 \begin_inset Note Greyedout
33213 status open
33214
33215 \begin_layout Plain Layout
33216
33217 \series bold
33218 Achtung:
33219 \series default
33220  Es muss darauf geachtet werden, dass der Befehlsname nicht schon im Dokument
33221  oder von benutzten LaTeX-Paketen verwendet wird.
33222  Definiert man beispielsweise für 
33223 \series bold
33224
33225 \backslash
33226 Leftarrow
33227 \series default
33228  den Befehl 
33229 \series bold
33230
33231 \backslash
33232 le
33233 \series default
33234 , erhält man eine Fehlermeldung, denn 
33235 \series bold
33236
33237 \backslash
33238 le
33239 \series default
33240  ist schon für 
33241 \begin_inset Quotes gld
33242 \end_inset
33243
33244
33245 \begin_inset Formula $\le$
33246 \end_inset
33247
33248
33249 \begin_inset Quotes grd
33250 \end_inset
33251
33252  definiert.
33253 \end_layout
33254
33255 \end_inset
33256
33257
33258 \end_layout
33259
33260 \begin_layout Standard
33261 Die Argumentanzahl ist eine ganze Zahl im Bereich 0
33262 \begin_inset space \thinspace{}
33263 \end_inset
33264
33265 -
33266 \begin_inset space \thinspace{}
33267 \end_inset
33268
33269 9 und gibt an, wie viele Argumente der neue Befehl haben soll.
33270  Als optionalen Wert kann man den Wert für ein optionales Argument voreinstellen.
33271  Wenn man dies macht, bedeutet das gleichzeitig, dass das 
33272 \emph on
33273 erste
33274 \emph default
33275  Argument des neuen Befehls ein optionales ist.
33276 \end_layout
33277
33278 \begin_layout Standard
33279 Es folgen einige Beispiele:
33280 \end_layout
33281
33282 \begin_layout Itemize
33283 Will man für 
33284 \series bold
33285
33286 \backslash
33287 Longrightarrow
33288 \series default
33289  den Befehl 
33290 \series bold
33291
33292 \backslash
33293 gr
33294 \series default
33295  definieren, lautet die LaTeX-Vor\SpecialChar \-
33296 spannzeile:
33297 \begin_inset VSpace medskip
33298 \end_inset
33299
33300
33301 \begin_inset Newline newline
33302 \end_inset
33303
33304
33305 \series bold
33306
33307 \backslash
33308 newcommand{
33309 \backslash
33310 gr}{
33311 \backslash
33312 Longrightarrow}
33313 \end_layout
33314
33315 \begin_layout Itemize
33316 Um für den Befehl 
33317 \series bold
33318
33319 \backslash
33320 underline
33321 \series default
33322  den Befehl 
33323 \series bold
33324
33325 \backslash
33326 us
33327 \series default
33328  zu definieren, muss das Argument (was unterstrichen werden soll) berücksichtigt
33329  werden.
33330  Dazu sieht die Vorspannzeile wie folgt aus:
33331 \begin_inset VSpace medskip
33332 \end_inset
33333
33334
33335 \begin_inset Newline newline
33336 \end_inset
33337
33338
33339 \series bold
33340
33341 \backslash
33342 newcommand{
33343 \backslash
33344 us}[1]{
33345 \backslash
33346 underline{#1}}
33347 \series default
33348
33349 \begin_inset VSpace medskip
33350 \end_inset
33351
33352
33353 \begin_inset Newline newline
33354 \end_inset
33355
33356 Das Zeichen 
33357 \series bold
33358 #
33359 \series default
33360  fungiert als Argumentplatzhalter, die 
33361 \series bold
33362 1
33363 \series default
33364  dahinter gibt an, dass es der Platzhalter für das erste Argument ist.
33365 \end_layout
33366
33367 \begin_layout Itemize
33368 Für 
33369 \series bold
33370
33371 \backslash
33372 framebox
33373 \series default
33374  kann man z.
33375 \begin_inset space \thinspace{}
33376 \end_inset
33377
33378 B.
33379  den Befehl 
33380 \series bold
33381
33382 \backslash
33383 fb
33384 \series default
33385  definieren:
33386 \begin_inset VSpace medskip
33387 \end_inset
33388
33389
33390 \begin_inset Newline newline
33391 \end_inset
33392
33393
33394 \series bold
33395
33396 \backslash
33397 newcommand{
33398 \backslash
33399 fb}[3]{
33400 \backslash
33401 framebox#1#2{$#3$}}
33402 \series default
33403
33404 \begin_inset VSpace medskip
33405 \end_inset
33406
33407
33408 \begin_inset Newline newline
33409 \end_inset
33410
33411 Die beiden Dollarzeichen erstellen hierbei die für 
33412 \series bold
33413
33414 \backslash
33415 framebox
33416 \series default
33417  geforderte weitere Formel, siehe 
33418 \begin_inset CommandInset ref
33419 LatexCommand ref
33420 reference "sub:Boxen-mit-Rahmen"
33421
33422 \end_inset
33423
33424 .
33425 \end_layout
33426
33427 \begin_layout Itemize
33428 Um einen neuen Befehl für 
33429 \series bold
33430
33431 \backslash
33432 fcolorbox
33433 \series default
33434  zu erstellen, bei dem die Farbe der Box nicht mehr angegeben werden muss,
33435  definiert man das Argument für die Farbe als optional:
33436 \begin_inset VSpace medskip
33437 \end_inset
33438
33439
33440 \begin_inset Newline newline
33441 \end_inset
33442
33443
33444 \series bold
33445
33446 \backslash
33447 newcommand{
33448 \backslash
33449 cb}[3][white]{
33450 \backslash
33451 fcolorbox{#2}{#1}{$#3$}}
33452 \series default
33453
33454 \begin_inset VSpace medskip
33455 \end_inset
33456
33457
33458 \begin_inset Newline newline
33459 \end_inset
33460
33461 Gibt man bei der Verwendung von 
33462 \series bold
33463
33464 \backslash
33465 cb
33466 \series default
33467  die Farbe nicht an, wird die voreingestellte Farbe 
33468 \series bold
33469 white
33470 \series default
33471  verwendet.
33472 \end_layout
33473
33474 \begin_layout Standard
33475 Ein Test der neu definierten Befehle:
33476 \end_layout
33477
33478 \begin_layout Standard
33479 \align center
33480 \begin_inset Tabular
33481 <lyxtabular version="3" rows="6" columns="2">
33482 <features tabularvalignment="middle">
33483 <column alignment="center" valignment="top" width="0">
33484 <column alignment="center" valignment="top" width="0">
33485 <row>
33486 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
33487 \begin_inset Text
33488
33489 \begin_layout Plain Layout
33490 Befehl
33491 \end_layout
33492
33493 \end_inset
33494 </cell>
33495 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
33496 \begin_inset Text
33497
33498 \begin_layout Plain Layout
33499 Ergebnis
33500 \begin_inset Note Note
33501 status collapsed
33502
33503 \begin_layout Plain Layout
33504
33505 \series bold
33506
33507 \backslash
33508 raisebox
33509 \series default
33510  dient nur als Abstandhalter.
33511 \end_layout
33512
33513 \end_inset
33514
33515
33516 \end_layout
33517
33518 \end_inset
33519 </cell>
33520 </row>
33521 <row>
33522 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
33523 \begin_inset Text
33524
33525 \begin_layout Plain Layout
33526 A
33527 \backslash
33528 gr
33529 \begin_inset ERT
33530 status collapsed
33531
33532 \begin_layout Plain Layout
33533
33534
33535 \backslash
33536 leer 
33537 \end_layout
33538
33539 \end_inset
33540
33541 B
33542 \end_layout
33543
33544 \end_inset
33545 </cell>
33546 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
33547 \begin_inset Text
33548
33549 \begin_layout Plain Layout
33550 \begin_inset Formula $A\gr B$
33551 \end_inset
33552
33553
33554 \end_layout
33555
33556 \end_inset
33557 </cell>
33558 </row>
33559 <row>
33560 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
33561 \begin_inset Text
33562
33563 \begin_layout Plain Layout
33564
33565 \backslash
33566 us{ABcd
33567 \end_layout
33568
33569 \end_inset
33570 </cell>
33571 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
33572 \begin_inset Text
33573
33574 \begin_layout Plain Layout
33575 \begin_inset Formula $\raisebox{4.5mm}{}\us{ABcd}\raisebox{-2mm}{}$
33576 \end_inset
33577
33578
33579 \end_layout
33580
33581 \end_inset
33582 </cell>
33583 </row>
33584 <row>
33585 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
33586 \begin_inset Text
33587
33588 \begin_layout Plain Layout
33589
33590 \backslash
33591 fb{[2cm]
33592 \begin_inset Formula $\to$
33593 \end_inset
33594
33595
33596 \backslash
33597 {
33598 \begin_inset Formula $\to$
33599 \end_inset
33600
33601
33602 \backslash
33603 {
33604 \backslash
33605 int
33606 \begin_inset ERT
33607 status collapsed
33608
33609 \begin_layout Plain Layout
33610
33611
33612 \backslash
33613 leer 
33614 \end_layout
33615
33616 \end_inset
33617
33618 A=B
33619 \end_layout
33620
33621 \end_inset
33622 </cell>
33623 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
33624 \begin_inset Text
33625
33626 \begin_layout Plain Layout
33627 \begin_inset Formula $\raisebox{6mm}{}\fb{[2cm]}{}{\int A=B}\raisebox{-4mm}{}$
33628 \end_inset
33629
33630
33631 \end_layout
33632
33633 \end_inset
33634 </cell>
33635 </row>
33636 <row>
33637 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
33638 \begin_inset Text
33639
33640 \begin_layout Plain Layout
33641
33642 \backslash
33643 cb{red
33644 \begin_inset Formula $\to$
33645 \end_inset
33646
33647
33648 \backslash
33649 {
33650 \backslash
33651 int
33652 \begin_inset ERT
33653 status collapsed
33654
33655 \begin_layout Plain Layout
33656
33657
33658 \backslash
33659 leer 
33660 \end_layout
33661
33662 \end_inset
33663
33664 A=B
33665 \end_layout
33666
33667 \end_inset
33668 </cell>
33669 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
33670 \begin_inset Text
33671
33672 \begin_layout Plain Layout
33673 \begin_inset Formula $\raisebox{6mm}{}\cb{red}{\int A=B}\raisebox{-4mm}{}$
33674 \end_inset
33675
33676
33677 \end_layout
33678
33679 \end_inset
33680 </cell>
33681 </row>
33682 <row>
33683 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
33684 \begin_inset Text
33685
33686 \begin_layout Plain Layout
33687
33688 \backslash
33689 cb[green]
33690 \backslash
33691 {red
33692 \begin_inset Formula $\to$
33693 \end_inset
33694
33695
33696 \backslash
33697 {
33698 \backslash
33699 int
33700 \begin_inset ERT
33701 status collapsed
33702
33703 \begin_layout Plain Layout
33704
33705
33706 \backslash
33707 leer 
33708 \end_layout
33709
33710 \end_inset
33711
33712 A=B
33713 \end_layout
33714
33715 \end_inset
33716 </cell>
33717 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
33718 \begin_inset Text
33719
33720 \begin_layout Plain Layout
33721 \begin_inset Formula $\raisebox{6mm}{}\cb[green]{red}{\int A=B}\raisebox{-4mm}{}$
33722 \end_inset
33723
33724
33725 \end_layout
33726
33727 \end_inset
33728 </cell>
33729 </row>
33730 </lyxtabular>
33731
33732 \end_inset
33733
33734
33735 \end_layout
33736
33737 \begin_layout Subsection
33738 Mathe-Makros
33739 \begin_inset Index idx
33740 status collapsed
33741
33742 \begin_layout Plain Layout
33743 benutzerdefinierte Befehle ! Mathe-Makros
33744 \end_layout
33745
33746 \end_inset
33747
33748
33749 \begin_inset Index idx
33750 status collapsed
33751
33752 \begin_layout Plain Layout
33753 Makros
33754 \end_layout
33755
33756 \end_inset
33757
33758
33759 \end_layout
33760
33761 \begin_layout Standard
33762 Besonders praktisch sind eigene Befehle für komplexe Ausdrücke.
33763  Hat man es in einem Dokument z.
33764 \begin_inset space \thinspace{}
33765 \end_inset
33766
33767 B.
33768  häufiger mit quadratischen Gleichungen zu tun, tritt immer derselbe Lösungstyp
33769  auf.
33770  Die allgemeine Form einer quadratischen Gleichung ist
33771 \begin_inset Formula 
33772 \[
33773 0=\lambda^{2}+p\lambda+q
33774 \]
33775
33776 \end_inset
33777
33778 Die allgemeine Form der Lösung lautet
33779 \begin_inset Formula 
33780 \[
33781 \lambda_{1,2}=-\frac{p}{2}\pm\sqrt{\frac{p²}{4}-q}
33782 \]
33783
33784 \end_inset
33785
33786
33787 \end_layout
33788
33789 \begin_layout Standard
33790 Um für die Lösungsformel einen Befehl zu definieren, bei dem nur noch die
33791  drei Parameter 
33792 \begin_inset Formula $\lambda$
33793 \end_inset
33794
33795
33796 \begin_inset Formula $p$
33797 \end_inset
33798
33799  und 
33800 \begin_inset Formula $q$
33801 \end_inset
33802
33803  angegeben werden müssen und der Index von 
33804 \begin_inset Formula $\lambda$
33805 \end_inset
33806
33807  optional angeben werden kann, lautet die LaTeX-Vorspannzeile
33808 \begin_inset Newline newline
33809 \end_inset
33810
33811
33812 \series bold
33813
33814 \backslash
33815 newcommand{
33816 \backslash
33817 qG}[4][1,
33818 \backslash
33819 ,2]{#2_{#1}=-
33820 \backslash
33821 frac{#3}{2}
33822 \backslash
33823 pm
33824 \begin_inset Newline newline
33825 \end_inset
33826
33827
33828 \begin_inset Phantom HPhantom
33829 status open
33830
33831 \begin_layout Plain Layout
33832
33833 \series bold
33834
33835 \backslash
33836 newcommand
33837 \end_layout
33838
33839 \end_inset
33840
33841
33842 \backslash
33843 sqrt{
33844 \backslash
33845 frac{#3^{2}}{4}-#4}}
33846 \end_layout
33847
33848 \begin_layout Standard
33849 Um damit die Lösungsformel zu erstellen, gibt man in einer Formel den Befehl
33850  
33851 \begin_inset Newline newline
33852 \end_inset
33853
33854
33855 \series bold
33856
33857 \backslash
33858 qG{
33859 \backslash
33860 lambda
33861 \begin_inset Formula $\to$
33862 \end_inset
33863
33864
33865 \backslash
33866 {p
33867 \begin_inset Formula $\to$
33868 \end_inset
33869
33870
33871 \backslash
33872 {q 
33873 \series default
33874 ein.
33875 \end_layout
33876
33877 \begin_layout Standard
33878 Die Definition des neuen Befehls ist unintuitiv, denn man muss die Schemata
33879  aller verwendeten LaTeX-Befehle kennen, z.
33880 \begin_inset space \thinspace{}
33881 \end_inset
33882
33883 B.
33884  dass ein Bruch in LaTeX mit 
33885 \series bold
33886
33887 \backslash
33888 frac{Zähler}
33889 \begin_inset Newline linebreak
33890 \end_inset
33891
33892 {Nenner}
33893 \series default
33894  eingegeben wird.
33895  Außerdem kann man leicht eine geschweifte Klammer vergessen und man kann
33896  in LyX nicht sehen, was der neue Befehl macht.
33897  Um diesen Problemen aus dem Weg zu gehen, gibt es in LyX die Möglichkeit
33898  Mathe-Makros statt den Befehl 
33899 \series bold
33900
33901 \backslash
33902 newcommand
33903 \series default
33904  zu verwenden.
33905 \end_layout
33906
33907 \begin_layout Standard
33908 Ein Mathe-Makro wird erstellt, indem man das Menü 
33909 \family sans
33910 Einfügen\SpecialChar \menuseparator
33911 Mathe\SpecialChar \menuseparator
33912 Makro
33913 \family default
33914  oder den Werkzeugleistenknopf 
33915 \begin_inset Graphics
33916         filename ../../images/math-macro_newmacroname_newcommand.png
33917         scale 85
33918
33919 \end_inset
33920
33921  verwendet.
33922  Es erscheint die Mathe-Makro-Werkzeugleiste und folgende Box, in der das
33923  Makro definiert wird:
33924 \begin_inset Newline newline
33925 \end_inset
33926
33927
33928 \lang english
33929
33930 \begin_inset space \hspace*{\fill}
33931 \end_inset
33932
33933
33934 \lang ngerman
33935
33936 \begin_inset Graphics
33937         filename ../clipart/macrobox.png
33938
33939 \end_inset
33940
33941
33942 \lang english
33943
33944 \begin_inset space \hspace*{\fill}
33945 \end_inset
33946
33947
33948 \lang ngerman
33949
33950 \begin_inset Newline newline
33951 \end_inset
33952
33953
33954 \begin_inset FormulaMacro
33955 \newcommand{\qG}[4][1,\,2]{#2_{#1}=-\frac{#3}{2}\pm\sqrt{\frac{#3^{2}}{4}-#4}}
33956 \end_inset
33957
33958
33959 \backslash
33960 newmacroname ist der voreingestellte Makroname, der auf etwas sinnvolles
33961  geändert werden sollte.
33962  In das erste blaue Kästchen gibt man die gewünschte Formel ein.
33963  Einen Argumentplatzhalter fügt man mit dem Befehl 
33964 \series bold
33965
33966 \backslash
33967 #Argumentnummer
33968 \series default
33969  ein, z.
33970 \begin_inset space \thinspace{}
33971 \end_inset
33972
33973 B.
33974  
33975 \series bold
33976
33977 \backslash
33978 #1
33979 \series default
33980  oder man verwendet den Makro-Werkzeugleistenknopf 
33981 \begin_inset Graphics
33982         filename ../../images/math-macro-add-param.png
33983         scale 85
33984
33985 \end_inset
33986
33987 .
33988  Argumentplatzhalter werden rot dargestellt.
33989  Es sind maximal 9 Argumente möglich.
33990  Optionale Argumente werden mit dem Werkzeugleistenknopf 
33991 \begin_inset Graphics
33992         filename ../../images/math-macro-add-optional-param.png
33993         scale 85
33994
33995 \end_inset
33996
33997  erstellt.
33998  Mit dem Werkzeugleistenknopf 
33999 \begin_inset Graphics
34000         filename ../../images/math-macro-make-optional.png
34001         scale 85
34002
34003 \end_inset
34004
34005  kann das erste nicht-optionale Argument in ein optionales verwandelt werden.
34006  Im zweiten Kästchen kann man definieren wie das Makro in LyX angezeigt
34007  werden soll.
34008  Normalerweise will man es so sehen, wie es definiert wurde, wozu man das
34009  Kästchen leer lässt.
34010  Hat man hingegen ein Makro erstellt, der auf dem Bildschirm viel Platz
34011  einnimmt, kann man in das Kästchen z.
34012 \begin_inset space \thinspace{}
34013 \end_inset
34014
34015 B.
34016 \begin_inset Newline newline
34017 \end_inset
34018
34019
34020 \series bold
34021 qG: 
34022 \backslash
34023 #1
34024 \series default
34025  
34026 \series bold
34027 ,
34028 \series default
34029  
34030 \series bold
34031
34032 \backslash
34033 #2
34034 \series default
34035  
34036 \series bold
34037 ,
34038 \series default
34039  
34040 \series bold
34041
34042 \backslash
34043 #3, 
34044 \backslash
34045 #4
34046 \begin_inset Newline newline
34047 \end_inset
34048
34049
34050 \series default
34051 eingeben.
34052  Für das Makro werden dann in LyX nur die Argumente mit dem davor stehenden
34053  Makronamen angezeigt, was für mehr Überblick im Dokument sorgt.
34054  Im Ausdruck erscheint die Formel so, wie sie im ersten Kästchen definiert
34055  wurde.
34056 \begin_inset Newline newline
34057 \end_inset
34058
34059 Das Erscheinungsbild von Makros in Formeln lässt sich außerdem für einzelne
34060  Makros ändern, indem man den Cursor in das Makro setzt und das Menü 
34061 \family sans
34062 Ansicht\SpecialChar \menuseparator
34063 Mathe-Makro
34064 \begin_inset space ~
34065 \end_inset
34066
34067 auf/zuklappen
34068 \family default
34069  verwendet.
34070 \end_layout
34071
34072 \begin_layout Standard
34073 Um ein Makro zu verwenden, gibt man in eine Formel den Makronamen als Befehl
34074  ein, in unserem Fall 
34075 \series bold
34076
34077 \backslash
34078 qG
34079 \series default
34080 .
34081  Unser Makro sieht in LyX folgendermaßen aus:
34082 \begin_inset Newline newline
34083 \end_inset
34084
34085
34086 \lang english
34087
34088 \begin_inset space \hspace*{\fill}
34089 \end_inset
34090
34091
34092 \lang ngerman
34093
34094 \begin_inset Graphics
34095         filename ../clipart/macrouse.png
34096
34097 \end_inset
34098
34099
34100 \lang english
34101
34102 \begin_inset space \hspace*{\fill}
34103 \end_inset
34104
34105
34106 \lang ngerman
34107
34108 \begin_inset Newline newline
34109 \end_inset
34110
34111 Hier ist unser Makro-Beispiel mit den Argumenten 
34112 \begin_inset Formula $x$
34113 \end_inset
34114
34115
34116 \begin_inset Formula $\ln(x)$
34117 \end_inset
34118
34119  und 
34120 \begin_inset Formula $B$
34121 \end_inset
34122
34123 :
34124 \end_layout
34125
34126 \begin_layout Standard
34127 \begin_inset Formula 
34128 \[
34129 \qG x{\ln(x)}B
34130 \]
34131
34132 \end_inset
34133
34134
34135 \end_layout
34136
34137 \begin_layout Standard
34138 LyX bietet im Menü 
34139 \family sans
34140 Werkzeuge\SpecialChar \menuseparator
34141 Einstellungen\SpecialChar \menuseparator
34142 Bearbeiten\SpecialChar \menuseparator
34143 Kontrolle
34144 \family default
34145  verschiedene Bearbeitungsstile für Makros an.
34146  Um den Stil zu finden, der für Sie am angenehmsten ist, wählen Sie einen
34147  Stil aus und setzen den Cursor in eine Makro-Formel um den Unterschied
34148  zu sehen.
34149 \end_layout
34150
34151 \begin_layout Standard
34152 Ein Mathe-Makro wird beim Exportieren des Dokuments intern in einen 
34153 \series bold
34154
34155 \backslash
34156 new\SpecialChar \-
34157 command
34158 \series default
34159 -Befehl umgewandelt.
34160  Der 
34161 \series bold
34162
34163 \backslash
34164 newcommand
34165 \series default
34166 -Befehl wird dabei nicht in den LaTeX-Vorspann gesetzt, so dass man daher
34167  Makros nur in Formeln verwenden kann, die sich im Dokument unterhalb der
34168  Makrodefinitionsbox befinden.
34169 \end_layout
34170
34171 \begin_layout Standard
34172 Mathe-Makros können auch direkt aus einem 
34173 \series bold
34174
34175 \backslash
34176 newcommand
34177 \series default
34178 -Befehl erstellt werden.
34179  Schreibt man z.
34180 \begin_inset space \thinspace{}
34181 \end_inset
34182
34183 B.
34184  den Befehl
34185 \series bold
34186
34187 \begin_inset Newline newline
34188 \end_inset
34189
34190
34191 \backslash
34192 newcommand{
34193 \backslash
34194 larrow}[2]{
34195 \backslash
34196 xleftarrow[#2]{#1}}
34197 \begin_inset Newline newline
34198 \end_inset
34199
34200
34201 \series default
34202 in LyX als normalen Text, markiert ihn komplett und verwendet dann das Tastenkür
34203 zel 
34204 \family sans
34205 Strg+M
34206 \family default
34207 , wird der Befehl in ein Mathe-Makro umgewandelt.
34208  Bei dieser Methode muss man jedoch aufpassen, dass der 
34209 \series bold
34210
34211 \backslash
34212 newcommand
34213 \series default
34214 -Befehl richtig geschrieben wurde, ansonsten wird ein fehlerhaftes Makro
34215  erstellt, dass später LaTeX-Fehler hervorruft.
34216 \end_layout
34217
34218 \begin_layout Standard
34219 Mathe-Makros haben im Moment noch das Problem, dass weitere Formeln in einer
34220  Makrodefinition fehlerhaft behandelt werden.
34221  Dadurch kann das Beispiel 
34222 \series bold
34223
34224 \backslash
34225 fb
34226 \series default
34227  aus 
34228 \begin_inset CommandInset ref
34229 LatexCommand ref
34230 reference "sub:Der-Befehl-newcommand"
34231
34232 \end_inset
34233
34234  nicht als Makro erzeugt werden.
34235 \end_layout
34236
34237 \begin_layout Standard
34238 Wenn der Cursor in einer Makrodefinitionsbox ist, wird die Makro-Werkzeugleiste
34239  in LyX angezeigt:
34240 \end_layout
34241
34242 \begin_layout Standard
34243 \begin_inset VSpace defskip
34244 \end_inset
34245
34246
34247 \end_layout
34248
34249 \begin_layout Standard
34250 \begin_inset Graphics
34251         filename ../clipart/MacroToolbar.png
34252
34253 \end_inset
34254
34255
34256 \begin_inset Index idx
34257 status collapsed
34258
34259 \begin_layout Plain Layout
34260 Makros ! Werkzeugleiste
34261 \end_layout
34262
34263 \end_inset
34264
34265
34266 \end_layout
34267
34268 \begin_layout Standard
34269 \begin_inset VSpace defskip
34270 \end_inset
34271
34272
34273 \end_layout
34274
34275 \begin_layout Standard
34276 Die Makro-Werkzeugleiste enthält von links nach rechts die folgenden Knöpfe:
34277 \end_layout
34278
34279 \begin_layout Standard
34280 \begin_inset VSpace defskip
34281 \end_inset
34282
34283
34284 \end_layout
34285
34286 \begin_layout Standard
34287 \begin_inset Tabular
34288 <lyxtabular version="3" rows="9" columns="2">
34289 <features islongtable="true" longtabularalignment="center">
34290 <column alignment="left" valignment="top" width="0">
34291 <column alignment="left" valignment="top" width="85col%">
34292 <row interlinespace="2.5mm">
34293 <cell alignment="center" valignment="top" usebox="none">
34294 \begin_inset Text
34295
34296 \begin_layout Plain Layout
34297 \begin_inset Graphics
34298         filename ../../images/math-macro-remove-param.png
34299         rotateOrigin center
34300
34301 \end_inset
34302
34303
34304 \end_layout
34305
34306 \end_inset
34307 </cell>
34308 <cell alignment="center" valignment="top" usebox="none">
34309 \begin_inset Text
34310
34311 \begin_layout Plain Layout
34312
34313 \family sans
34314 Bearbeiten\SpecialChar \menuseparator
34315 Mathe\SpecialChar \menuseparator
34316 Makro-Definition\SpecialChar \menuseparator
34317 Letztes Argument entfernen
34318 \end_layout
34319
34320 \end_inset
34321 </cell>
34322 </row>
34323 <row interlinespace="2.5mm">
34324 <cell alignment="center" valignment="top" usebox="none">
34325 \begin_inset Text
34326
34327 \begin_layout Plain Layout
34328 \begin_inset Graphics
34329         filename ../../images/math-macro-add-param.png
34330         rotateOrigin center
34331
34332 \end_inset
34333
34334
34335 \end_layout
34336
34337 \end_inset
34338 </cell>
34339 <cell alignment="center" valignment="top" usebox="none">
34340 \begin_inset Text
34341
34342 \begin_layout Plain Layout
34343
34344 \family sans
34345 Bearbeiten\SpecialChar \menuseparator
34346 Mathe\SpecialChar \menuseparator
34347 Makro-Definition\SpecialChar \menuseparator
34348 Argument hinzufügen
34349 \end_layout
34350
34351 \end_inset
34352 </cell>
34353 </row>
34354 <row interlinespace="2.5mm">
34355 <cell alignment="center" valignment="top" usebox="none">
34356 \begin_inset Text
34357
34358 \begin_layout Plain Layout
34359 \begin_inset Graphics
34360         filename ../../images/math-macro-make-optional.png
34361         rotateOrigin center
34362
34363 \end_inset
34364
34365
34366 \end_layout
34367
34368 \end_inset
34369 </cell>
34370 <cell alignment="center" valignment="top" usebox="none">
34371 \begin_inset Text
34372
34373 \begin_layout Plain Layout
34374
34375 \family sans
34376 Bearbeiten\SpecialChar \menuseparator
34377 Mathe\SpecialChar \menuseparator
34378 Makro-Definition\SpecialChar \menuseparator
34379 Das erste nicht-optionale
34380 \begin_inset Newline newline
34381 \end_inset
34382
34383
34384 \begin_inset Phantom HPhantom
34385 status open
34386
34387 \begin_layout Plain Layout
34388
34389 \family sans
34390 Bearbeiten\SpecialChar \menuseparator
34391 Mathe\SpecialChar \menuseparator
34392 Makro-Definition\SpecialChar \menuseparator
34393
34394 \end_layout
34395
34396 \end_inset
34397
34398 Argument in einen optionales
34399 \begin_inset Newline newline
34400 \end_inset
34401
34402
34403 \begin_inset Phantom HPhantom
34404 status open
34405
34406 \begin_layout Plain Layout
34407
34408 \family sans
34409 Bearbeiten\SpecialChar \menuseparator
34410 Mathe\SpecialChar \menuseparator
34411 Makro-Definition\SpecialChar \menuseparator
34412
34413 \end_layout
34414
34415 \end_inset
34416
34417 ändern
34418 \end_layout
34419
34420 \end_inset
34421 </cell>
34422 </row>
34423 <row interlinespace="2.5mm">
34424 <cell alignment="center" valignment="top" usebox="none">
34425 \begin_inset Text
34426
34427 \begin_layout Plain Layout
34428 \begin_inset Graphics
34429         filename ../../images/math-macro-make-nonoptional.png
34430         rotateOrigin center
34431
34432 \end_inset
34433
34434
34435 \end_layout
34436
34437 \end_inset
34438 </cell>
34439 <cell alignment="center" valignment="top" usebox="none">
34440 \begin_inset Text
34441
34442 \begin_layout Plain Layout
34443
34444 \family sans
34445 Bearbeiten\SpecialChar \menuseparator
34446 Mathe\SpecialChar \menuseparator
34447 Makro-Definition\SpecialChar \menuseparator
34448 Das letzte optionale Argument in
34449 \begin_inset Newline newline
34450 \end_inset
34451
34452
34453 \begin_inset Phantom HPhantom
34454 status open
34455
34456 \begin_layout Plain Layout
34457
34458 \family sans
34459 Bearbeiten\SpecialChar \menuseparator
34460 Mathe\SpecialChar \menuseparator
34461 Makro-Definition\SpecialChar \menuseparator
34462
34463 \end_layout
34464
34465 \end_inset
34466
34467 einen nicht-optionales ändern
34468 \end_layout
34469
34470 \end_inset
34471 </cell>
34472 </row>
34473 <row interlinespace="2.5mm">
34474 <cell alignment="center" valignment="top" usebox="none">
34475 \begin_inset Text
34476
34477 \begin_layout Plain Layout
34478 \begin_inset Graphics
34479         filename ../../images/math-macro-remove-optional-param.png
34480         rotateOrigin center
34481
34482 \end_inset
34483
34484
34485 \end_layout
34486
34487 \end_inset
34488 </cell>
34489 <cell alignment="center" valignment="top" usebox="none">
34490 \begin_inset Text
34491
34492 \begin_layout Plain Layout
34493
34494 \family sans
34495 Bearbeiten\SpecialChar \menuseparator
34496 Mathe\SpecialChar \menuseparator
34497 Makro-Definition\SpecialChar \menuseparator
34498 Optionales Argument entfernen
34499 \end_layout
34500
34501 \end_inset
34502 </cell>
34503 </row>
34504 <row interlinespace="2.5mm">
34505 <cell alignment="center" valignment="top" usebox="none">
34506 \begin_inset Text
34507
34508 \begin_layout Plain Layout
34509 \begin_inset Graphics
34510         filename ../../images/math-macro-add-optional-param.png
34511         rotateOrigin center
34512
34513 \end_inset
34514
34515
34516 \end_layout
34517
34518 \end_inset
34519 </cell>
34520 <cell alignment="center" valignment="top" usebox="none">
34521 \begin_inset Text
34522
34523 \begin_layout Plain Layout
34524
34525 \family sans
34526 Bearbeiten\SpecialChar \menuseparator
34527 Mathe\SpecialChar \menuseparator
34528 Makro-Definition\SpecialChar \menuseparator
34529 Optionales Argument einfügen
34530 \end_layout
34531
34532 \end_inset
34533 </cell>
34534 </row>
34535 <row interlinespace="2.5mm">
34536 <cell alignment="center" valignment="top" usebox="none">
34537 \begin_inset Text
34538
34539 \begin_layout Plain Layout
34540 \begin_inset Graphics
34541         filename ../../images/math-macro-remove-greedy-param.png
34542         rotateOrigin center
34543
34544 \end_inset
34545
34546
34547 \end_layout
34548
34549 \end_inset
34550 </cell>
34551 <cell alignment="center" valignment="top" usebox="none">
34552 \begin_inset Text
34553
34554 \begin_layout Plain Layout
34555
34556 \family sans
34557 Bearbeiten\SpecialChar \menuseparator
34558 Mathe\SpecialChar \menuseparator
34559 Makro-Definition\SpecialChar \menuseparator
34560 Letztes Argument rechts entfernen
34561 \end_layout
34562
34563 \end_inset
34564 </cell>
34565 </row>
34566 <row interlinespace="2.5mm">
34567 <cell alignment="center" valignment="top" usebox="none">
34568 \begin_inset Text
34569
34570 \begin_layout Plain Layout
34571 \begin_inset Graphics
34572         filename ../../images/math-macro-append-greedy-param.png
34573         rotateOrigin center
34574
34575 \end_inset
34576
34577
34578 \end_layout
34579
34580 \end_inset
34581 </cell>
34582 <cell alignment="center" valignment="top" usebox="none">
34583 \begin_inset Text
34584
34585 \begin_layout Plain Layout
34586
34587 \family sans
34588 Bearbeiten\SpecialChar \menuseparator
34589 Mathe\SpecialChar \menuseparator
34590 Makro-Definition\SpecialChar \menuseparator
34591 Argument von rechts hinzufügen
34592 \end_layout
34593
34594 \end_inset
34595 </cell>
34596 </row>
34597 <row interlinespace="2.5mm">
34598 <cell alignment="center" valignment="top" usebox="none">
34599 \begin_inset Text
34600
34601 \begin_layout Plain Layout
34602 \begin_inset Graphics
34603         filename ../../images/math-macro-add-greedy-optional-param.png
34604         rotateOrigin center
34605
34606 \end_inset
34607
34608
34609 \end_layout
34610
34611 \end_inset
34612 </cell>
34613 <cell alignment="center" valignment="top" usebox="none">
34614 \begin_inset Text
34615
34616 \begin_layout Plain Layout
34617
34618 \family sans
34619 Bearbeiten\SpecialChar \menuseparator
34620 Mathe\SpecialChar \menuseparator
34621 Makro-Definition\SpecialChar \menuseparator
34622 Optionales Argument von rechts
34623 \begin_inset Newline newline
34624 \end_inset
34625
34626
34627 \begin_inset Phantom HPhantom
34628 status open
34629
34630 \begin_layout Plain Layout
34631
34632 \family sans
34633 Bearbeiten\SpecialChar \menuseparator
34634 Mathe\SpecialChar \menuseparator
34635 Makro-Definition\SpecialChar \menuseparator
34636
34637 \end_layout
34638
34639 \end_inset
34640
34641 hinzufügen
34642 \end_layout
34643
34644 \end_inset
34645 </cell>
34646 </row>
34647 </lyxtabular>
34648
34649 \end_inset
34650
34651
34652 \end_layout
34653
34654 \begin_layout Section
34655 Computeralgebrasysteme
34656 \end_layout
34657
34658 \begin_layout Standard
34659 Mit LyX ist es möglich, mathematische Ausdrücke mit externen Anwendungen
34660  oder benutzerdefinierten Skripten auszutauschen.
34661  Momentan werden folgende Anwendungen unterstützt: 
34662 \family typewriter
34663 Maple
34664 \family default
34665
34666 \family typewriter
34667 Mathematica
34668 \family default
34669
34670 \family typewriter
34671 Maxima
34672 \family default
34673  und 
34674 \family typewriter
34675 Octave
34676 \family default
34677 .
34678  Beachten Sie aber, dass die unterstützten mathematischen Ausdrücke auf
34679  sehr einfache Fälle beschränkt sind.
34680 \end_layout
34681
34682 \begin_layout Subsection
34683 Verwendung
34684 \end_layout
34685
34686 \begin_layout Standard
34687 Schreiben Sie einen Ausdruck in eine Formel, öffnen Sie das Menü 
34688 \family sans
34689 Bearbeiten\SpecialChar \menuseparator
34690 Mathe\SpecialChar \menuseparator
34691 Computer-Algebra-System verwenden
34692 \family default
34693  und wählen Sie die Anwendung, die Sie auf ihrem Computer installiert haben.
34694  Danach sollte das Ergebnis der Berechnung auf der rechten Seite zusammen
34695  mit dem 
34696 \begin_inset Quotes gld
34697 \end_inset
34698
34699 =
34700 \begin_inset Quotes grd
34701 \end_inset
34702
34703  Operator erscheinen.
34704 \end_layout
34705
34706 \begin_layout Standard
34707 Hier sind ein paar einfache Beispiele (mit Resultaten von 
34708 \family typewriter
34709 Maxima
34710 \family default
34711 ) um zu zeigen, welche Berechnungen durchgeführt werden können:
34712 \end_layout
34713
34714 \begin_layout Itemize
34715 \begin_inset Formula $\frac{37}{3}*2-\sum_{i=1}^{3}i^{i}=-\frac{22}{3}$
34716 \end_inset
34717
34718
34719 \end_layout
34720
34721 \begin_layout Itemize
34722 \begin_inset Formula $\frac{37.0}{3}=12.33333333333333$
34723 \end_inset
34724
34725
34726 \end_layout
34727
34728 \begin_layout Itemize
34729 \begin_inset Formula $\int_{1}^{2}\sin(x)dx=\cos1-\cos2$
34730 \end_inset
34731
34732
34733 \end_layout
34734
34735 \begin_layout Itemize
34736 \begin_inset Formula $\det\left[\begin{array}{ccc}
34737 1 & 6 & 7\\
34738 2 & 5 & 8\\
34739 3 & 4 & 17
34740 \end{array}\right]=-56$
34741 \end_inset
34742
34743
34744 \end_layout
34745
34746 \begin_layout Itemize
34747 \begin_inset Formula $\lim_{x\rightarrow0}\left(\frac{\sin(x)}{x}\right)=1$
34748 \end_inset
34749
34750
34751 \end_layout
34752
34753 \begin_layout Subsection
34754 Tastenkürzel
34755 \end_layout
34756
34757 \begin_layout Standard
34758 Momentan gibt es kein Tastenkürzel um Computeralgebrasysteme aufzurufen.
34759  Sie können aber einfach ein Tastenkürzel mit der LyX-Funktion 
34760 \family sans
34761 math-extern
34762 \family default
34763  verknüpfen (siehe das 
34764 \emph on
34765 LyX-Funktionen
34766 \emph default
34767  Handbuch).
34768  Man kann z.
34769 \begin_inset space \thinspace{}
34770 \end_inset
34771
34772 B.
34773  die 
34774 \family sans
34775 Enter
34776 \family default
34777 -Taste in Formeln verknüpfen.
34778  Um sie mit 
34779 \family typewriter
34780 Maxima
34781 \family default
34782  zu verknüpfen, würde man diesen Tastenkürzel-Definitionsbefehl verwenden:
34783 \end_layout
34784
34785 \begin_layout Standard
34786
34787 \series bold
34788 command-alternatives break-paragraph;math-extern maxima
34789 \end_layout
34790
34791 \begin_layout Standard
34792 \begin_inset Newpage newpage
34793 \end_inset
34794
34795
34796 \end_layout
34797
34798 \begin_layout Section
34799 Tipps
34800 \begin_inset Index idx
34801 status collapsed
34802
34803 \begin_layout Plain Layout
34804 Tipps
34805 \end_layout
34806
34807 \end_inset
34808
34809
34810 \end_layout
34811
34812 \begin_layout Subsection
34813 Negative Zahlen
34814 \begin_inset Index idx
34815 status collapsed
34816
34817 \begin_layout Plain Layout
34818 Zahlen ! negative
34819 \end_layout
34820
34821 \end_inset
34822
34823
34824 \end_layout
34825
34826 \begin_layout Standard
34827 Negative Zahlen sehen im Formelmodus oft schlecht aus, denn das Minuszeichen
34828  vor der Ziffer wird mit der gleichen Länge wie das Zeichen der Minus-Operation
34829  dargestellt.
34830  Schreibt man dagegen eine negative Zahl im normalen Text, erscheint das
34831  Minuszeichen korrekt.
34832 \end_layout
34833
34834 \begin_layout Standard
34835 Wandelt man also das Minuszeichen in mathematischen Text um, tritt das Problem
34836  nicht mehr auf.
34837 \end_layout
34838
34839 \begin_layout Standard
34840 Ein Beispiel zur Veranschaulichung der Problematik:
34841 \end_layout
34842
34843 \begin_layout Standard
34844 \align center
34845 \begin_inset Tabular
34846 <lyxtabular version="3" rows="3" columns="2">
34847 <features tabularvalignment="middle">
34848 <column alignment="right" valignment="top" width="0">
34849 <column alignment="left" valignment="top" width="0">
34850 <row>
34851 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
34852 \begin_inset Text
34853
34854 \begin_layout Plain Layout
34855 normaler Text:
34856 \end_layout
34857
34858 \end_inset
34859 </cell>
34860 <cell alignment="center" valignment="top" topline="true" rightline="true" usebox="none">
34861 \begin_inset Text
34862
34863 \begin_layout Plain Layout
34864 x = -2
34865 \end_layout
34866
34867 \end_inset
34868 </cell>
34869 </row>
34870 <row>
34871 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
34872 \begin_inset Text
34873
34874 \begin_layout Plain Layout
34875 Formelmodus:
34876 \end_layout
34877
34878 \end_inset
34879 </cell>
34880 <cell alignment="center" valignment="top" topline="true" bottomline="true" rightline="true" usebox="none">
34881 \begin_inset Text
34882
34883 \begin_layout Plain Layout
34884 \begin_inset Formula $x=-2$
34885 \end_inset
34886
34887
34888 \end_layout
34889
34890 \end_inset
34891 </cell>
34892 </row>
34893 <row>
34894 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
34895 \begin_inset Text
34896
34897 \begin_layout Plain Layout
34898 Lösung:
34899 \end_layout
34900
34901 \end_inset
34902 </cell>
34903 <cell alignment="center" valignment="top" topline="true" bottomline="true" rightline="true" usebox="none">
34904 \begin_inset Text
34905
34906 \begin_layout Plain Layout
34907 \begin_inset Formula $x=\textrm{-}2$
34908 \end_inset
34909
34910
34911 \end_layout
34912
34913 \end_inset
34914 </cell>
34915 </row>
34916 </lyxtabular>
34917
34918 \end_inset
34919
34920
34921 \end_layout
34922
34923 \begin_layout Subsection
34924 Komma als Dezimaltrennzeichen
34925 \begin_inset Index idx
34926 status collapsed
34927
34928 \begin_layout Plain Layout
34929 Komma
34930 \end_layout
34931
34932 \end_inset
34933
34934
34935 \end_layout
34936
34937 \begin_layout Standard
34938 In LaTeX fungiert das Komma in einer Formel, gemäß englischer Konvention,
34939  als Gruppentrennzeichen.
34940  Es wird demnach automatisch hinter allen Kommas in Formeln ein Leerraum
34941  eingefügt.
34942 \end_layout
34943
34944 \begin_layout Standard
34945 Um dies zu verhindern, markiert man das Komma und wandelt es in mathematischen
34946  Text um (Tastenkürzel 
34947 \family sans
34948 Alt+M
34949 \begin_inset space ~
34950 \end_inset
34951
34952 M
34953 \family default
34954 ).
34955 \end_layout
34956
34957 \begin_layout Standard
34958 Um hingegen alle Formelkommas des Dokuments als Dezimaltrennzeichen zu setzen,
34959  lädt man die Datei 
34960 \series bold
34961 icomma.sty
34962 \series default
34963
34964 \begin_inset Foot
34965 status collapsed
34966
34967 \begin_layout Plain Layout
34968
34969 \series bold
34970 icomma
34971 \series default
34972  ist Teil des LaTeX-Paketes 
34973 \series bold
34974 was
34975 \series default
34976
34977 \begin_inset Index idx
34978 status collapsed
34979
34980 \begin_layout Plain Layout
34981 Pakete ! was
34982 \begin_inset ERT
34983 status collapsed
34984
34985 \begin_layout Plain Layout
34986
34987
34988 \backslash
34989 vspace{4mm}
34990 \end_layout
34991
34992 \end_inset
34993
34994
34995 \end_layout
34996
34997 \end_inset
34998
34999 .
35000 \end_layout
35001
35002 \end_inset
35003
35004
35005 \begin_inset Index idx
35006 status collapsed
35007
35008 \begin_layout Plain Layout
35009 Pakete ! icomma
35010 \end_layout
35011
35012 \end_inset
35013
35014  mit der LaTeX-Vorspannzeile
35015 \end_layout
35016
35017 \begin_layout Standard
35018
35019 \series bold
35020
35021 \backslash
35022 usepackage{icomma}
35023 \end_layout
35024
35025 \begin_layout Subsection
35026 Physikalische Vektoren
35027 \begin_inset CommandInset label
35028 LatexCommand label
35029 name "sub:Physikalische-Vektoren"
35030
35031 \end_inset
35032
35033
35034 \begin_inset Index idx
35035 status collapsed
35036
35037 \begin_layout Plain Layout
35038 Vektoren ! physikalische
35039 \end_layout
35040
35041 \end_inset
35042
35043
35044 \end_layout
35045
35046 \begin_layout Standard
35047 Vordefinierte Vektoren bietet das LaTeX-Paket 
35048 \series bold
35049 braket
35050 \series default
35051
35052 \begin_inset Index idx
35053 status collapsed
35054
35055 \begin_layout Plain Layout
35056 Pakete ! braket
35057 \end_layout
35058
35059 \end_inset
35060
35061 , das mit der LaTeX-Vorspannzeile
35062 \end_layout
35063
35064 \begin_layout Standard
35065
35066 \series bold
35067
35068 \backslash
35069 usepackage{braket}
35070 \end_layout
35071
35072 \begin_layout Standard
35073 geladen wird.
35074 \begin_inset ERT
35075 status collapsed
35076
35077 \begin_layout Plain Layout
35078
35079
35080 \backslash
35081 ifbraket 
35082 \end_layout
35083
35084 \end_inset
35085
35086
35087 \begin_inset Note Note
35088 status open
35089
35090 \begin_layout Plain Layout
35091 Die folgende Tabelle erscheint nur im Ausdruck wenn das LaTeX-Paket 
35092 \series bold
35093 braket
35094 \series default
35095  installiert ist:
35096 \end_layout
35097
35098 \end_inset
35099
35100
35101 \end_layout
35102
35103 \begin_layout Standard
35104 \begin_inset Newpage newpage
35105 \end_inset
35106
35107
35108 \end_layout
35109
35110 \begin_layout Standard
35111 Folgende Befehle sind definiert:
35112 \end_layout
35113
35114 \begin_layout Standard
35115 \align center
35116 \begin_inset Tabular
35117 <lyxtabular version="3" rows="4" columns="2">
35118 <features tabularvalignment="middle">
35119 <column alignment="center" valignment="top" width="0">
35120 <column alignment="center" valignment="top" width="0">
35121 <row>
35122 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
35123 \begin_inset Text
35124
35125 \begin_layout Plain Layout
35126 Befehl
35127 \end_layout
35128
35129 \end_inset
35130 </cell>
35131 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
35132 \begin_inset Text
35133
35134 \begin_layout Plain Layout
35135 Ergebnis
35136 \end_layout
35137
35138 \end_inset
35139 </cell>
35140 </row>
35141 <row>
35142 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
35143 \begin_inset Text
35144
35145 \begin_layout Plain Layout
35146
35147 \backslash
35148 Bra{
35149 \backslash
35150 psi
35151 \end_layout
35152
35153 \end_inset
35154 </cell>
35155 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
35156 \begin_inset Text
35157
35158 \begin_layout Plain Layout
35159 \begin_inset Formula $\Bra{\psi}$
35160 \end_inset
35161
35162
35163 \end_layout
35164
35165 \end_inset
35166 </cell>
35167 </row>
35168 <row>
35169 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
35170 \begin_inset Text
35171
35172 \begin_layout Plain Layout
35173
35174 \backslash
35175 Ket{
35176 \backslash
35177 psi
35178 \end_layout
35179
35180 \end_inset
35181 </cell>
35182 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
35183 \begin_inset Text
35184
35185 \begin_layout Plain Layout
35186 \begin_inset Formula $\Ket{\psi}$
35187 \end_inset
35188
35189
35190 \end_layout
35191
35192 \end_inset
35193 </cell>
35194 </row>
35195 <row>
35196 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
35197 \begin_inset Text
35198
35199 \begin_layout Plain Layout
35200
35201 \backslash
35202 Braket{
35203 \backslash
35204 psi|
35205 \backslash
35206 phi
35207 \end_layout
35208
35209 \end_inset
35210 </cell>
35211 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
35212 \begin_inset Text
35213
35214 \begin_layout Plain Layout
35215 \begin_inset Formula $\Braket{\psi|\phi}$
35216 \end_inset
35217
35218
35219 \end_layout
35220
35221 \end_inset
35222 </cell>
35223 </row>
35224 </lyxtabular>
35225
35226 \end_inset
35227
35228
35229 \end_layout
35230
35231 \begin_layout Standard
35232 Der Befehl 
35233 \series bold
35234
35235 \backslash
35236 Braket
35237 \series default
35238  stellt sicher, dass alle senkrechten Striche in der Größe der umgebenden
35239  Klammern gesetzt werden:
35240 \begin_inset Formula 
35241 \[
35242 \Braket{\phi|J=\frac{3}{2}\,,\, M_{J}}
35243 \]
35244
35245 \end_inset
35246
35247
35248 \begin_inset ERT
35249 status collapsed
35250
35251 \begin_layout Plain Layout
35252
35253
35254 \backslash
35255 else 
35256 \end_layout
35257
35258 \end_inset
35259
35260
35261 \begin_inset Note Note
35262 status open
35263
35264 \begin_layout Plain Layout
35265 Folgendes erscheint im Ausdruck wenn das LaTeX-Paket 
35266 \series bold
35267 braket
35268 \series default
35269  nicht installiert ist:
35270 \end_layout
35271
35272 \end_inset
35273
35274
35275 \end_layout
35276
35277 \begin_layout Standard
35278 Das LaTeX-Paket 
35279 \series bold
35280 braket 
35281 \series default
35282 muss installiert sein, um den Rest dieses Abschnitts im Ausdruck zu sehen.
35283 \end_layout
35284
35285 \begin_layout Standard
35286 \begin_inset ERT
35287 status collapsed
35288
35289 \begin_layout Plain Layout
35290
35291
35292 \backslash
35293 fi 
35294 \end_layout
35295
35296 \end_inset
35297
35298
35299 \end_layout
35300
35301 \begin_layout Standard
35302 Der Effekt von 
35303 \series bold
35304
35305 \backslash
35306 Braket
35307 \series default
35308  kann auch mit dem Befehl 
35309 \series bold
35310
35311 \backslash
35312 middle
35313 \series default
35314  erzielt werden, der in 
35315 \begin_inset CommandInset ref
35316 LatexCommand ref
35317 reference "sub:Automatische-Klammergrößen"
35318
35319 \end_inset
35320
35321  beschrieben ist.
35322 \end_layout
35323
35324 \begin_layout Subsection
35325 Selbst definierte Brüche
35326 \begin_inset CommandInset label
35327 LatexCommand label
35328 name "sub:Selbstdefinierte-Brüche"
35329
35330 \end_inset
35331
35332
35333 \begin_inset Index idx
35334 status collapsed
35335
35336 \begin_layout Plain Layout
35337 Brüche ! selbstdefinierte
35338 \end_layout
35339
35340 \end_inset
35341
35342
35343 \end_layout
35344
35345 \begin_layout Standard
35346 Um eigene Befehle für Brüche zu definieren, verwendet man den Befehl 
35347 \series bold
35348
35349 \backslash
35350 genfrac
35351 \series default
35352
35353 \begin_inset Index idx
35354 status collapsed
35355
35356 \begin_layout Plain Layout
35357 Befehle ! G ! 
35358 \backslash
35359 genfrac
35360 \end_layout
35361
35362 \end_inset
35363
35364  in folgendem Schema:
35365 \end_layout
35366
35367 \begin_layout Standard
35368
35369 \series bold
35370
35371 \backslash
35372 genfrac{linke
35373 \series default
35374  
35375 \series bold
35376 Klammer}{rechte
35377 \series default
35378  
35379 \series bold
35380 Klammer}{Bruchstrichdicke}{Ansichtsstil}
35381 \begin_inset Newline newline
35382 \end_inset
35383
35384
35385 \begin_inset Phantom HPhantom
35386 status open
35387
35388 \begin_layout Plain Layout
35389
35390 \series bold
35391
35392 \backslash
35393 genfrac
35394 \end_layout
35395
35396 \end_inset
35397
35398 {Zähler}{Nenner}
35399 \end_layout
35400
35401 \begin_layout Standard
35402 Der Ansichtsstil wird mit einer ganzen Zahl im Bereich 0
35403 \begin_inset space \thinspace{}
35404 \end_inset
35405
35406 -
35407 \begin_inset space \thinspace{}
35408 \end_inset
35409
35410 3 angegeben.
35411 \end_layout
35412
35413 \begin_layout Standard
35414 \align center
35415 \begin_inset Tabular
35416 <lyxtabular version="3" rows="5" columns="2">
35417 <features tabularvalignment="middle">
35418 <column alignment="center" valignment="top" width="0">
35419 <column alignment="center" valignment="top" width="0">
35420 <row>
35421 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
35422 \begin_inset Text
35423
35424 \begin_layout Plain Layout
35425 Nummer
35426 \end_layout
35427
35428 \end_inset
35429 </cell>
35430 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
35431 \begin_inset Text
35432
35433 \begin_layout Plain Layout
35434 Ansichtsstil
35435 \end_layout
35436
35437 \end_inset
35438 </cell>
35439 </row>
35440 <row>
35441 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
35442 \begin_inset Text
35443
35444 \begin_layout Plain Layout
35445 0
35446 \end_layout
35447
35448 \end_inset
35449 </cell>
35450 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
35451 \begin_inset Text
35452
35453 \begin_layout Plain Layout
35454 abgesetzte Formel
35455 \end_layout
35456
35457 \end_inset
35458 </cell>
35459 </row>
35460 <row>
35461 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
35462 \begin_inset Text
35463
35464 \begin_layout Plain Layout
35465 1
35466 \end_layout
35467
35468 \end_inset
35469 </cell>
35470 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
35471 \begin_inset Text
35472
35473 \begin_layout Plain Layout
35474 eingebettete Formel
35475 \end_layout
35476
35477 \end_inset
35478 </cell>
35479 </row>
35480 <row>
35481 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
35482 \begin_inset Text
35483
35484 \begin_layout Plain Layout
35485 2
35486 \end_layout
35487
35488 \end_inset
35489 </cell>
35490 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
35491 \begin_inset Text
35492
35493 \begin_layout Plain Layout
35494 klein
35495 \end_layout
35496
35497 \end_inset
35498 </cell>
35499 </row>
35500 <row>
35501 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
35502 \begin_inset Text
35503
35504 \begin_layout Plain Layout
35505 3
35506 \end_layout
35507
35508 \end_inset
35509 </cell>
35510 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
35511 \begin_inset Text
35512
35513 \begin_layout Plain Layout
35514 winzig
35515 \end_layout
35516
35517 \end_inset
35518 </cell>
35519 </row>
35520 </lyxtabular>
35521
35522 \end_inset
35523
35524
35525 \end_layout
35526
35527 \begin_layout Standard
35528 Wird nichts für den Ansichtsstil angegeben, passt sich die Größe wie bei
35529  
35530 \series bold
35531
35532 \backslash
35533 frac
35534 \series default
35535  der Umgebung an.
35536 \end_layout
35537
35538 \begin_layout Standard
35539 Wird keine Bruchstrichdicke angegeben, wird der voreingestellte Wert von
35540  0.4
35541 \begin_inset space \thinspace{}
35542 \end_inset
35543
35544 pt verwendet.
35545 \end_layout
35546
35547 \begin_layout Standard
35548 \begin_inset VSpace medskip
35549 \end_inset
35550
35551 Zum Beispiel sind die Befehle 
35552 \series bold
35553
35554 \backslash
35555 dfrac
35556 \series default
35557  und 
35558 \series bold
35559
35560 \backslash
35561 tbinom
35562 \series default
35563  aus 
35564 \begin_inset CommandInset ref
35565 LatexCommand ref
35566 reference "sub:Brüche"
35567
35568 \end_inset
35569
35570  folgendermaßen definiert:
35571 \end_layout
35572
35573 \begin_layout Standard
35574
35575 \series bold
35576
35577 \backslash
35578 newcommand{
35579 \backslash
35580 dfrac}[2]{
35581 \backslash
35582 genfrac{}{}{}{0}{#1}{#2}}
35583 \end_layout
35584
35585 \begin_layout Standard
35586 und
35587 \end_layout
35588
35589 \begin_layout Standard
35590
35591 \series bold
35592
35593 \backslash
35594 newcommand{
35595 \backslash
35596 tbinom}[2]{
35597 \backslash
35598 genfrac{(}{)}{0pt}{1}{#1}{#2}}
35599 \end_layout
35600
35601 \begin_layout Standard
35602 \begin_inset VSpace medskip
35603 \end_inset
35604
35605 Um einen Bruch zu definieren, bei dem man die Bruchstrichdicke als optionales
35606  Argument angeben kann, gibt man im LaTeX-Vorspann folgenden Befehl ein:
35607 \end_layout
35608
35609 \begin_layout Standard
35610
35611 \series bold
35612
35613 \backslash
35614 newcommand{
35615 \backslash
35616 fracS}[3][]{
35617 \backslash
35618 genfrac{}{}{#1}{}{#2}{#3}}
35619 \end_layout
35620
35621 \begin_layout Standard
35622 Dazu ein Test:
35623 \begin_inset Formula 
35624 \begin{align*}
35625 \text{Befehl} &  & \mathrm{\backslash fracS[1mm]\backslash\{A\to\backslash\{B} &  & \mathrm{\backslash fracS[5mm]\backslash\{A\to\backslash\{B}\\
35626 \text{Ergebnis} &  & \fracS[1mm]{A}{B} &  & \fracS[5mm]{A}{B}
35627 \end{align*}
35628
35629 \end_inset
35630
35631 Wie man sieht, entspricht der Abstand des Zählers und Nenners vom Strich
35632  in etwa der dreifachen Strichdicke.
35633 \end_layout
35634
35635 \begin_layout Subsection
35636 Durchgestrichene Formeln
35637 \begin_inset Index idx
35638 status collapsed
35639
35640 \begin_layout Plain Layout
35641 Formel ! durchgestrichene
35642 \end_layout
35643
35644 \end_inset
35645
35646
35647 \end_layout
35648
35649 \begin_layout Standard
35650 Um Formeln oder Formelteile durchzustreichen, muss das LaTeX-Paket 
35651 \series bold
35652 cancel
35653 \series default
35654
35655 \begin_inset Index idx
35656 status collapsed
35657
35658 \begin_layout Plain Layout
35659 Pakete ! cancel
35660 \end_layout
35661
35662 \end_inset
35663
35664  mit der LaTeX-Vorspannzeile
35665 \end_layout
35666
35667 \begin_layout Standard
35668
35669 \series bold
35670
35671 \backslash
35672 usepackage[samesize]{cancel}
35673 \end_layout
35674
35675 \begin_layout Standard
35676 geladen werden.
35677 \end_layout
35678
35679 \begin_layout Standard
35680 \begin_inset ERT
35681 status collapsed
35682
35683 \begin_layout Plain Layout
35684
35685
35686 \backslash
35687 ifcancel 
35688 \end_layout
35689
35690 \end_inset
35691
35692
35693 \begin_inset Note Note
35694 status open
35695
35696 \begin_layout Plain Layout
35697 Die folgende Tabelle erscheint nur im Ausdruck wenn das LaTeX-Paket 
35698 \series bold
35699 cancel
35700 \series default
35701  installiert ist:
35702 \end_layout
35703
35704 \end_inset
35705
35706
35707 \end_layout
35708
35709 \begin_layout Standard
35710 Es gibt vier verschiedene Arten durchzustreichen:
35711 \end_layout
35712
35713 \begin_layout Standard
35714 \align center
35715 \begin_inset Tabular
35716 <lyxtabular version="3" rows="5" columns="2">
35717 <features tabularvalignment="middle">
35718 <column alignment="center" valignment="top" width="0">
35719 <column alignment="center" valignment="top" width="0">
35720 <row>
35721 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
35722 \begin_inset Text
35723
35724 \begin_layout Plain Layout
35725 Befehl
35726 \end_layout
35727
35728 \end_inset
35729 </cell>
35730 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
35731 \begin_inset Text
35732
35733 \begin_layout Plain Layout
35734 Ergebnis
35735 \begin_inset Note Note
35736 status collapsed
35737
35738 \begin_layout Plain Layout
35739 Der Leerraum und 
35740 \series bold
35741
35742 \backslash
35743 raisebox
35744 \series default
35745  dienen nur als Abstandhalter.
35746 \end_layout
35747
35748 \end_inset
35749
35750
35751 \end_layout
35752
35753 \end_inset
35754 </cell>
35755 </row>
35756 <row>
35757 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
35758 \begin_inset Text
35759
35760 \begin_layout Plain Layout
35761
35762 \backslash
35763 cancel{
35764 \backslash
35765 int
35766 \begin_inset ERT
35767 status collapsed
35768
35769 \begin_layout Plain Layout
35770
35771
35772 \backslash
35773 leer 
35774 \end_layout
35775
35776 \end_inset
35777
35778 A=B
35779 \end_layout
35780
35781 \end_inset
35782 </cell>
35783 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
35784 \begin_inset Text
35785
35786 \begin_layout Plain Layout
35787 \begin_inset Formula $\raisebox{4.5mm}{}\cancel{\int A=B}\raisebox{-2.5mm}{}$
35788 \end_inset
35789
35790
35791 \end_layout
35792
35793 \end_inset
35794 </cell>
35795 </row>
35796 <row>
35797 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
35798 \begin_inset Text
35799
35800 \begin_layout Plain Layout
35801
35802 \backslash
35803 bcancel{
35804 \backslash
35805 int
35806 \begin_inset ERT
35807 status collapsed
35808
35809 \begin_layout Plain Layout
35810
35811
35812 \backslash
35813 leer 
35814 \end_layout
35815
35816 \end_inset
35817
35818 A=B
35819 \end_layout
35820
35821 \end_inset
35822 </cell>
35823 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
35824 \begin_inset Text
35825
35826 \begin_layout Plain Layout
35827 \begin_inset Formula $\raisebox{4.5mm}{}\bcancel{\int A=B}\raisebox{-2.5mm}{}$
35828 \end_inset
35829
35830
35831 \end_layout
35832
35833 \end_inset
35834 </cell>
35835 </row>
35836 <row>
35837 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
35838 \begin_inset Text
35839
35840 \begin_layout Plain Layout
35841
35842 \backslash
35843 xcancel{
35844 \backslash
35845 int
35846 \begin_inset ERT
35847 status collapsed
35848
35849 \begin_layout Plain Layout
35850
35851
35852 \backslash
35853 leer 
35854 \end_layout
35855
35856 \end_inset
35857
35858 A=B
35859 \end_layout
35860
35861 \end_inset
35862 </cell>
35863 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
35864 \begin_inset Text
35865
35866 \begin_layout Plain Layout
35867 \begin_inset Formula $\raisebox{4.5mm}{}\xcancel{\int A=B}\raisebox{-2.5mm}{}$
35868 \end_inset
35869
35870
35871 \end_layout
35872
35873 \end_inset
35874 </cell>
35875 </row>
35876 <row>
35877 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
35878 \begin_inset Text
35879
35880 \begin_layout Plain Layout
35881
35882 \backslash
35883 cancelto{1
35884 \begin_inset Formula $\to$
35885 \end_inset
35886
35887
35888 \backslash
35889 {
35890 \backslash
35891 int
35892 \begin_inset ERT
35893 status collapsed
35894
35895 \begin_layout Plain Layout
35896
35897
35898 \backslash
35899 leer 
35900 \end_layout
35901
35902 \end_inset
35903
35904 A=B
35905 \end_layout
35906
35907 \end_inset
35908 </cell>
35909 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
35910 \begin_inset Text
35911
35912 \begin_layout Plain Layout
35913 \begin_inset Formula $\raisebox{7mm}{}\cancelto{1}{\int A=B}\raisebox{-2.5mm}{}\hspace{3mm}$
35914 \end_inset
35915
35916
35917 \end_layout
35918
35919 \end_inset
35920 </cell>
35921 </row>
35922 </lyxtabular>
35923
35924 \end_inset
35925
35926
35927 \end_layout
35928
35929 \begin_layout Standard
35930
35931 \series bold
35932
35933 \backslash
35934 cancelto
35935 \series default
35936  eignet sich besonders, wenn man das Kürzen innerhalb einer Formel darstellen
35937  will:
35938 \begin_inset Formula 
35939 \[
35940 \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}}}
35941 \]
35942
35943 \end_inset
35944
35945
35946 \end_layout
35947
35948 \begin_layout Standard
35949 \begin_inset ERT
35950 status collapsed
35951
35952 \begin_layout Plain Layout
35953
35954
35955 \backslash
35956 else 
35957 \end_layout
35958
35959 \end_inset
35960
35961
35962 \begin_inset Note Note
35963 status open
35964
35965 \begin_layout Plain Layout
35966 Folgendes erscheint im Ausdruck wenn das LaTeX-Paket 
35967 \series bold
35968 cancel
35969 \series default
35970  nicht installiert ist:
35971 \end_layout
35972
35973 \end_inset
35974
35975
35976 \end_layout
35977
35978 \begin_layout Standard
35979 Das LaTeX-Paket 
35980 \series bold
35981 cancel 
35982 \series default
35983 muss installiert sein, um den Rest dieses Abschnitts im Ausdruck zu sehen.
35984 \end_layout
35985
35986 \begin_layout Standard
35987 \begin_inset ERT
35988 status collapsed
35989
35990 \begin_layout Plain Layout
35991
35992
35993 \backslash
35994 fi 
35995 \end_layout
35996
35997 \end_inset
35998
35999
36000 \end_layout
36001
36002 \begin_layout Subsection
36003 Formeln in Überschriften
36004 \begin_inset CommandInset label
36005 LatexCommand label
36006 name "sub:Formeln-in-Überschriften"
36007
36008 \end_inset
36009
36010
36011 \begin_inset Index idx
36012 status collapsed
36013
36014 \begin_layout Plain Layout
36015 Formel ! in Überschriften
36016 \end_layout
36017
36018 \end_inset
36019
36020
36021 \end_layout
36022
36023 \begin_layout Standard
36024 Benutzt man Formeln in Überschriften, ist auf Folgendes zu achten:
36025 \end_layout
36026
36027 \begin_layout Standard
36028 \begin_inset Note Greyedout
36029 status open
36030
36031 \begin_layout Plain Layout
36032 Verwendet man 
36033 \series bold
36034 hyperref
36035 \series default
36036
36037 \begin_inset Index idx
36038 status collapsed
36039
36040 \begin_layout Plain Layout
36041 Pakete ! hyperref
36042 \end_layout
36043
36044 \end_inset
36045
36046  Unterstützung im den Dokumenteinstellungen unter 
36047 \family sans
36048 PDF-Eigenschaften
36049 \family default
36050 , werden PDF-Lesezeichen für jede Überschrift aus dem Inhaltsverzeichnis
36051  erzeugt.
36052  Enthält eine Überschrift Formeln, werden diese im Lesezeichentext falsch
36053  dargestellt.
36054  Denn Formeln in Lesezeichen verstoßen gegen die PDF-Konventionen.
36055 \end_layout
36056
36057 \end_inset
36058
36059
36060 \end_layout
36061
36062 \begin_layout Standard
36063 Beide Probleme lassen sich lösen, indem man am Ende der Überschrift einen
36064  Kurztitel über das Menü 
36065 \family sans
36066 Einfügen\SpecialChar \menuseparator
36067 Kurztitel
36068 \family default
36069  einfügt.
36070  Kurztitel werden als Alternative für mehrzeilige Überschriften verwendet,
36071  um das Inhaltsverzeichnis übersichtlich zu halten.
36072  Nur der Kurztitel erscheint im Inhaltsverzeichnis und damit auch im PDF-Lesezei
36073 chen.
36074 \end_layout
36075
36076 \begin_layout Standard
36077 Möchte man im Inhaltsverzeichnis eine Formel verwenden, benutzt aber 
36078 \series bold
36079 hyperref
36080 \series default
36081 , verwendet man im TeX-Modus den Befehl
36082 \end_layout
36083
36084 \begin_layout Standard
36085
36086 \series bold
36087
36088 \backslash
36089 texorpdfstring{Teil}{Alternative}
36090 \begin_inset Index idx
36091 status collapsed
36092
36093 \begin_layout Plain Layout
36094 Befehle ! T ! 
36095 \backslash
36096 texorpdfstring
36097 \end_layout
36098
36099 \end_inset
36100
36101
36102 \end_layout
36103
36104 \begin_layout Standard
36105 Teil ist der Überschriftsteil, der nicht im PDF-Lesezeichen erscheinen solle.
36106  Das können Zeichen, Formeln, Fußnoten aber auch Querverweise sein.
36107  Als Alternative kann man angeben, was stattdessen im Lesezeichen erscheinen
36108  soll.
36109 \end_layout
36110
36111 \begin_layout Standard
36112 Es folgen zwei Beispielüberschriften:
36113 \begin_inset VSpace -3mm
36114 \end_inset
36115
36116
36117 \begin_inset ERT
36118 status collapsed
36119
36120 \begin_layout Plain Layout
36121
36122
36123 \backslash
36124 boldmath 
36125 \end_layout
36126
36127 \end_inset
36128
36129
36130 \end_layout
36131
36132 \begin_layout Subsubsection
36133 Überschrift ohne Formel im Inhaltsverzeichnis 
36134 \begin_inset Formula $\sqrt{-1}=\mathrm{i}$
36135 \end_inset
36136
36137
36138 \begin_inset Argument
36139 status collapsed
36140
36141 \begin_layout Plain Layout
36142 Überschrift ohne Formel im Inhaltsverzeichnis
36143 \end_layout
36144
36145 \end_inset
36146
36147
36148 \end_layout
36149
36150 \begin_layout Subsubsection
36151 Überschrift mit Formel im Inhaltsverzeichnis
36152 \begin_inset ERT
36153 status collapsed
36154
36155 \begin_layout Plain Layout
36156
36157
36158 \backslash
36159 texorpdfstring{
36160 \end_layout
36161
36162 \end_inset
36163
36164  
36165 \begin_inset Formula $\sqrt{-1}=\mathrm{i}$
36166 \end_inset
36167
36168
36169 \begin_inset ERT
36170 status collapsed
36171
36172 \begin_layout Plain Layout
36173
36174 }{}
36175 \end_layout
36176
36177 \end_inset
36178
36179
36180 \end_layout
36181
36182 \begin_layout Standard
36183 \begin_inset ERT
36184 status collapsed
36185
36186 \begin_layout Plain Layout
36187
36188
36189 \backslash
36190 unboldmath 
36191 \end_layout
36192
36193 \end_inset
36194
36195 In der ersten Überschrift wurde ein Kurztitel verwendet.
36196  In der zweiten 
36197 \series bold
36198
36199 \backslash
36200 texorpdfstring
36201 \series default
36202 .
36203 \end_layout
36204
36205 \begin_layout Standard
36206 Damit die Formeln so wie der Rest der Überschrift formatiert werden, wurde
36207  die komplette Überschrift in eine 
36208 \series bold
36209 boldmath
36210 \series default
36211 -Umgebung
36212 \begin_inset Foot
36213 status collapsed
36214
36215 \begin_layout Plain Layout
36216 siehe 
36217 \begin_inset CommandInset ref
36218 LatexCommand ref
36219 reference "sub:Fett-gedruckte-Formeln"
36220
36221 \end_inset
36222
36223
36224 \end_layout
36225
36226 \end_inset
36227
36228  gesetzt.
36229 \end_layout
36230
36231 \begin_layout Subsection
36232 Formeln im mehrspaltigen Text
36233 \begin_inset Index idx
36234 status collapsed
36235
36236 \begin_layout Plain Layout
36237 Formel ! im mehrspaltigen Text
36238 \end_layout
36239
36240 \end_inset
36241
36242
36243 \end_layout
36244
36245 \begin_layout Standard
36246 Formeln im mehrspaltigen Text sind oftmals zu breit für eine Spalte und
36247  müssen daher über die gesamte Seitenbreite gesetzt werden.
36248  Dazu verwendet man das LaTeX-Paket 
36249 \series bold
36250 multicol
36251 \series default
36252
36253 \begin_inset Foot
36254 status collapsed
36255
36256 \begin_layout Plain Layout
36257
36258 \series bold
36259 multicol
36260 \series default
36261  ist Teil jeder LaTeX-Standardinstallation.
36262 \end_layout
36263
36264 \end_inset
36265
36266
36267 \begin_inset Index idx
36268 status collapsed
36269
36270 \begin_layout Plain Layout
36271 Pakete ! multicol
36272 \end_layout
36273
36274 \end_inset
36275
36276 , das mit der LaTeX-Vorspannzeile
36277 \end_layout
36278
36279 \begin_layout Standard
36280
36281 \series bold
36282
36283 \backslash
36284 usepackage{multicol}
36285 \end_layout
36286
36287 \begin_layout Standard
36288 geladen wird.
36289 \end_layout
36290
36291 \begin_layout Standard
36292 \begin_inset Note Greyedout
36293 status open
36294
36295 \begin_layout Plain Layout
36296 Dabei ist zu beachten, dass im Menü 
36297 \family sans
36298 Dokument\SpecialChar \menuseparator
36299 Einstellungen
36300 \family default
36301  unter 
36302 \family sans
36303 Textformat
36304 \family default
36305  
36306 \emph on
36307 nicht
36308 \emph default
36309  
36310 \family sans
36311 Zweispaltiges
36312 \begin_inset space ~
36313 \end_inset
36314
36315 Dokument
36316 \family default
36317  ausgewählt sein darf.
36318 \end_layout
36319
36320 \end_inset
36321
36322
36323 \end_layout
36324
36325 \begin_layout Standard
36326 Vor den mehrspaltigen Text schreibt man im TeX-Modus den Befehl
36327 \end_layout
36328
36329 \begin_layout Standard
36330
36331 \series bold
36332
36333 \backslash
36334 begin{multicols}{Spaltenanzahl}
36335 \end_layout
36336
36337 \begin_layout Standard
36338 wobei die Spaltenanzahl eine Zahl im Bereich 2
36339 \begin_inset space \thinspace{}
36340 \end_inset
36341
36342 -
36343 \begin_inset space \thinspace{}
36344 \end_inset
36345
36346 10 ist.
36347  Vor der Formel beendet man den mehrspaltigen Text mit dem Befehl
36348 \end_layout
36349
36350 \begin_layout Standard
36351
36352 \series bold
36353
36354 \backslash
36355 end{multicols}
36356 \end_layout
36357
36358 \begin_layout Standard
36359 der im TeX-Modus eingegeben wird.
36360 \end_layout
36361
36362 \begin_layout Standard
36363 Durch den Befehl wird vor der Formel automatisch etwas Leerraum erstellt.
36364  Um dies rückgängig zu machen, fügt man vor der Formel -6
36365 \begin_inset space \thinspace{}
36366 \end_inset
36367
36368 mm vertikalen Leerraum ein.
36369  Ist der Formelstil 
36370 \series bold
36371 Eingerückt
36372 \begin_inset Foot
36373 status collapsed
36374
36375 \begin_layout Plain Layout
36376 Formelstile siehe 
36377 \begin_inset CommandInset ref
36378 LatexCommand ref
36379 reference "sec:Formelstile"
36380
36381 \end_inset
36382
36383
36384 \end_layout
36385
36386 \end_inset
36387
36388
36389 \series default
36390  gewählt, fügt man stattdessen -9
36391 \begin_inset space \thinspace{}
36392 \end_inset
36393
36394 mm Leerraum ein.
36395 \end_layout
36396
36397 \begin_layout Standard
36398 Als Beispiel ein mehrspaltiger Text mit einer abgesetzten Formel:
36399 \end_layout
36400
36401 \begin_layout Standard
36402 \begin_inset ERT
36403 status collapsed
36404
36405 \begin_layout Plain Layout
36406
36407
36408 \backslash
36409 begin{multicols}{2}
36410 \end_layout
36411
36412 \end_inset
36413
36414 Das Spektrum wird fouriertransformiert.
36415  Die Fouriertransformation wird verwendet, um die überlagerten Signale (Netzwerk
36416 , Lösungsmittel) zu trennen.
36417  Nachdem wir die Phasenverschiebung bestimmen konnten, interessiert uns
36418  nun das Aussehen des Ausgangssignals.
36419  Im Experiment haben wir es mit sehr vielen Teilchen zu tun, so dass man
36420  über alle Phasen integrieren muss.
36421  Sei nun 
36422 \begin_inset Formula $S$
36423 \end_inset
36424
36425  unser normiertes Ausgangssignal und 
36426 \begin_inset Formula $P$
36427 \end_inset
36428
36429  die Phasenverteilungsfunktion, so ergibt sich die Beziehung
36430 \begin_inset ERT
36431 status collapsed
36432
36433 \begin_layout Plain Layout
36434
36435
36436 \backslash
36437 end{multicols}
36438 \end_layout
36439
36440 \end_inset
36441
36442
36443 \begin_inset VSpace -6mm
36444 \end_inset
36445
36446
36447 \begin_inset Formula 
36448 \begin{equation}
36449 S(t)=S_{0}(t)\int_{-\infty}^{\infty}P(\phi,t)\mathrm{e}^{\mathrm{i}\phi}\,\mathrm{d}\phi
36450 \end{equation}
36451
36452 \end_inset
36453
36454
36455 \begin_inset ERT
36456 status collapsed
36457
36458 \begin_layout Plain Layout
36459
36460
36461 \backslash
36462 begin{multicols}{2}
36463 \end_layout
36464
36465 \end_inset
36466
36467 wobei 
36468 \begin_inset Formula $S_{0}$
36469 \end_inset
36470
36471  das Signal ohne Gradient ist und die Normierungsbedingung 
36472 \begin_inset Formula $\int_{-\infty}^{\infty}P(\phi,t)\,\mathrm{d}\phi=1$
36473 \end_inset
36474
36475  gilt.
36476  Nun dürfen wir aber nicht den Relaxationsprozess außer Acht lassen.
36477  Direkt nach dem 
36478 \begin_inset Formula $\nicefrac{\pi}{2}$
36479 \end_inset
36480
36481
36482 \begin_inset space \thinspace{}
36483 \end_inset
36484
36485 -rf-Puls beginnt sich die Magnetisierung zu entfokussieren, wodurch sich
36486  das Signal zusätzlich abschwächt.
36487  Diese Abschwächung verläuft exponentiell in Abhängigkeit der so genannten
36488  
36489 \begin_inset Formula $T_{2}$
36490 \end_inset
36491
36492 -Zeit.
36493 \end_layout
36494
36495 \begin_layout Standard
36496 \begin_inset ERT
36497 status collapsed
36498
36499 \begin_layout Plain Layout
36500
36501
36502 \backslash
36503 end{multicols}
36504 \end_layout
36505
36506 \end_inset
36507
36508  
36509 \end_layout
36510
36511 \begin_layout Subsection
36512 Formeln mit Beschreibung der Variablen
36513 \begin_inset Index idx
36514 status collapsed
36515
36516 \begin_layout Plain Layout
36517 Formel ! mit Variablenbeschreibung
36518 \end_layout
36519
36520 \end_inset
36521
36522
36523 \end_layout
36524
36525 \begin_layout Standard
36526 Möchte man wie in Formel 
36527 \begin_inset CommandInset ref
36528 LatexCommand eqref
36529 reference "eq:innerhalb"
36530
36531 \end_inset
36532
36533 , Variablen innerhalb einer Formel beschreiben, verwendet man eine 2
36534 \series bold
36535 ×
36536 \series default
36537
36538 \begin_inset Formula $n$
36539 \end_inset
36540
36541
36542 \begin_inset space ~
36543 \end_inset
36544
36545 Matrix mit links ausgerichteten Spalten für die verwendeten 
36546 \begin_inset Formula $n$
36547 \end_inset
36548
36549  Variablen.
36550 \begin_inset Foot
36551 status collapsed
36552
36553 \begin_layout Plain Layout
36554 Matrizen siehe 
36555 \begin_inset CommandInset ref
36556 LatexCommand ref
36557 reference "sec:Matrizen"
36558
36559 \end_inset
36560
36561
36562 \end_layout
36563
36564 \end_inset
36565
36566  Um die Beschreibung kleiner zu setzen, gibt man vor der Matrix z.
36567 \begin_inset space \thinspace{}
36568 \end_inset
36569
36570 B.
36571  den Befehl 
36572 \series bold
36573
36574 \backslash
36575 footnotesize
36576 \series default
36577  ein.
36578 \begin_inset Foot
36579 status collapsed
36580
36581 \begin_layout Plain Layout
36582 Schriftgrößen siehe 
36583 \begin_inset CommandInset ref
36584 LatexCommand ref
36585 reference "sub:Schriftgrößen"
36586
36587 \end_inset
36588
36589
36590 \end_layout
36591
36592 \end_inset
36593
36594
36595 \end_layout
36596
36597 \begin_layout Standard
36598 Wird der Formelstil 
36599 \series bold
36600 Eingerückt
36601 \begin_inset Foot
36602 status collapsed
36603
36604 \begin_layout Plain Layout
36605 Formelstile siehe 
36606 \begin_inset CommandInset ref
36607 LatexCommand ref
36608 reference "sec:Formelstile"
36609
36610 \end_inset
36611
36612
36613 \end_layout
36614
36615 \end_inset
36616
36617
36618 \series default
36619  verwendet, fügt man vor und nach der Matrix ein 
36620 \series bold
36621
36622 \backslash
36623 hfill
36624 \series default
36625
36626 \begin_inset Foot
36627 status collapsed
36628
36629 \begin_layout Plain Layout
36630
36631 \series bold
36632
36633 \backslash
36634 hfill
36635 \series default
36636  wirkt nur in Formeln mit dem Stil 
36637 \series bold
36638 Eingerückt
36639 \series default
36640 , siehe 
36641 \begin_inset CommandInset ref
36642 LatexCommand ref
36643 reference "sub:Variabler-Leerraum"
36644
36645 \end_inset
36646
36647 .
36648 \end_layout
36649
36650 \end_inset
36651
36652  ein, damit der Abstand der Matrix von der Gleichung und vom Seitenrand
36653  gleich ist.
36654 \end_layout
36655
36656 \begin_layout Standard
36657 Ist der Formelstil 
36658 \series bold
36659 Zentriert
36660 \series default
36661  gewählt, nutzt man die in 
36662 \begin_inset CommandInset ref
36663 LatexCommand ref
36664 reference "sub:Flalign-Umgebung"
36665
36666 \end_inset
36667
36668  beschriebene Möglichkeit, Formeln einzurücken.
36669  Formel 
36670 \begin_inset CommandInset ref
36671 LatexCommand eqref
36672 reference "eq:innerhalb"
36673
36674 \end_inset
36675
36676  besteht aus fünf Spalten, wobei in den ersten beiden die Gleichung, in
36677  der dritten die Matrix und in der letzten die leere TeX-Klammer steht.
36678 \begin_inset Formula 
36679 \begin{flalign}
36680 \hspace{30pt}F_{A} & =\rho·V·g & \footnotesize\begin{array}{ll}
36681 \rho & \textrm{Dichte}\\
36682 V & \textrm{Volumen}\\
36683 g & \textrm{Fallbeschleunigung}
36684 \end{array} &  & {}\label{eq:innerhalb}
36685 \end{flalign}
36686
36687 \end_inset
36688
36689
36690 \end_layout
36691
36692 \begin_layout Subsection
36693 Aufrechte kleine griechische Buchstaben
36694 \begin_inset CommandInset label
36695 LatexCommand label
36696 name "sub:Aufrechte-kleine-griechische"
36697
36698 \end_inset
36699
36700
36701 \begin_inset Index idx
36702 status collapsed
36703
36704 \begin_layout Plain Layout
36705 griechische Buchstaben ! aufrechte
36706 \end_layout
36707
36708 \end_inset
36709
36710
36711 \end_layout
36712
36713 \begin_layout Standard
36714 Die meisten Mathe-Schriften stellen nur kursive kleine griechische Buchstaben
36715  zur Verfügung.
36716  Für Symbole der Elementarteilchen, wie Pionen und Neutrinos werden jedoch
36717  aufrechte griechische Buchstaben benötigt.
36718  Die Datei 
36719 \series bold
36720 upgreek.sty
36721 \series default
36722
36723 \begin_inset Foot
36724 status collapsed
36725
36726 \begin_layout Plain Layout
36727
36728 \series bold
36729 upgreek
36730 \series default
36731  ist Teil des LaTeX-Paketes 
36732 \series bold
36733 was
36734 \series default
36735
36736 \begin_inset Index idx
36737 status collapsed
36738
36739 \begin_layout Plain Layout
36740 Pakete ! was
36741 \begin_inset ERT
36742 status collapsed
36743
36744 \begin_layout Plain Layout
36745
36746
36747 \backslash
36748 vspace{4mm}
36749 \end_layout
36750
36751 \end_inset
36752
36753
36754 \end_layout
36755
36756 \end_inset
36757
36758 .
36759 \end_layout
36760
36761 \end_inset
36762
36763
36764 \begin_inset Index idx
36765 status collapsed
36766
36767 \begin_layout Plain Layout
36768 Pakete ! upgreek
36769 \end_layout
36770
36771 \end_inset
36772
36773 , die mit der LaTeX-Vorspannzeile
36774 \end_layout
36775
36776 \begin_layout Standard
36777
36778 \series bold
36779
36780 \backslash
36781 usepackage{upgreek}
36782 \end_layout
36783
36784 \begin_layout Standard
36785 geladen wird, stellt diese Buchstaben zur Verfügung.
36786  
36787 \begin_inset ERT
36788 status collapsed
36789
36790 \begin_layout Plain Layout
36791
36792
36793 \backslash
36794 ifupgreek 
36795 \end_layout
36796
36797 \end_inset
36798
36799
36800 \begin_inset Note Note
36801 status open
36802
36803 \begin_layout Plain Layout
36804 Das Folgende erscheint nur im Ausdruck wenn das LaTeX-Paket 
36805 \series bold
36806 upgreek
36807 \series default
36808  installiert ist:
36809 \end_layout
36810
36811 \end_inset
36812
36813  Sie werden erzeugt, wenn der Befehl für einen griechischen Buchstaben mit
36814  
36815 \series bold
36816 up
36817 \series default
36818  begonnen wird.
36819  So erzeugt z.
36820 \begin_inset space \thinspace{}
36821 \end_inset
36822
36823 B.
36824  der Befehl 
36825 \series bold
36826
36827 \backslash
36828 uptau
36829 \series default
36830  dies: 
36831 \begin_inset Formula $\uptau$
36832 \end_inset
36833
36834
36835 \end_layout
36836
36837 \begin_layout Standard
36838 Damit kann man Elementarteilchenreaktionen erstellen:
36839 \begin_inset Formula 
36840 \[
36841 \uppi^{+}\to\upmu^{+}+\upnu_{\upmu}
36842 \]
36843
36844 \end_inset
36845
36846
36847 \end_layout
36848
36849 \begin_layout Standard
36850 Die aufrechten Buchstaben sind fetter und breiter als die kursiven.
36851  Sie sollten daher nicht für Einheiten wie 
36852 \begin_inset Quotes gld
36853 \end_inset
36854
36855 µm
36856 \begin_inset Quotes grd
36857 \end_inset
36858
36859  verwendet werden.
36860 \end_layout
36861
36862 \begin_layout Standard
36863 \begin_inset ERT
36864 status collapsed
36865
36866 \begin_layout Plain Layout
36867
36868
36869 \backslash
36870 else 
36871 \end_layout
36872
36873 \end_inset
36874
36875
36876 \begin_inset Note Note
36877 status open
36878
36879 \begin_layout Plain Layout
36880 Folgendes erscheint im Ausdruck wenn das LaTeX-Paket 
36881 \series bold
36882 upgreek
36883 \series default
36884  nicht installiert ist:
36885 \end_layout
36886
36887 \end_inset
36888
36889
36890 \end_layout
36891
36892 \begin_layout Standard
36893 Das LaTeX-Paket 
36894 \series bold
36895 upgreek 
36896 \series default
36897 muss installiert sein, um den Rest dieses Abschnitts im Ausdruck zu sehen.
36898 \end_layout
36899
36900 \begin_layout Standard
36901 \begin_inset ERT
36902 status collapsed
36903
36904 \begin_layout Plain Layout
36905
36906
36907 \backslash
36908 fi 
36909 \end_layout
36910
36911 \end_inset
36912
36913
36914 \end_layout
36915
36916 \begin_layout Subsection
36917 Textzeichen in Formeln
36918 \begin_inset CommandInset label
36919 LatexCommand label
36920 name "sub:Textzeichen-in-Formeln"
36921
36922 \end_inset
36923
36924
36925 \begin_inset Index idx
36926 status collapsed
36927
36928 \begin_layout Plain Layout
36929 Text ! in Formeln
36930 \end_layout
36931
36932 \end_inset
36933
36934
36935 \end_layout
36936
36937 \begin_layout Standard
36938 In einigen Fällen möchte man Textzeichen direkt in Formeln eingeben.
36939  Benötigt man z.
36940 \begin_inset space \thinspace{}
36941 \end_inset
36942
36943 B.
36944  den mittigen Punkt · in Formeln wie 
36945 \begin_inset Formula $\nu=5·10^{5}\,\mathrm{Hz}$
36946 \end_inset
36947
36948 , müsste man dafür jedes Mal den Befehl 
36949 \series bold
36950
36951 \backslash
36952 cdot
36953 \series default
36954  eingeben
36955 \begin_inset Foot
36956 status collapsed
36957
36958 \begin_layout Plain Layout
36959 siehe 
36960 \begin_inset CommandInset ref
36961 LatexCommand ref
36962 reference "sub:Binäre-Operatoren"
36963
36964 \end_inset
36965
36966
36967 \end_layout
36968
36969 \end_inset
36970
36971 , da dieses Zeichen in allen Kodierungen als Textzeichen definiert ist.
36972  Man kann jedoch die Kodierung mit folgender LaTeX-Vorspannzeile ändern:
36973 \end_layout
36974
36975 \begin_layout Standard
36976
36977 \series bold
36978
36979 \backslash
36980 DeclareInputText{183}{
36981 \backslash
36982 ifmmode
36983 \backslash
36984 cdot
36985 \backslash
36986 else
36987 \backslash
36988 textperiodcentered
36989 \backslash
36990 f\SpecialChar \textcompwordmark{}
36991 i}
36992 \end_layout
36993
36994 \begin_layout Standard
36995 Die Zeichenkodierung (Menü 
36996 \family sans
36997 Dokument\SpecialChar \menuseparator
36998 Einstellungen\SpecialChar \menuseparator
36999 Sprache
37000 \family default
37001 ) legt fest, welches Zeichen beim Druck einer bestimmten Taste erscheint.
37002  Wenn man die Taste für das Zeichen '·' drückt, wird intern der Befehl 
37003 \series bold
37004
37005 \backslash
37006 textperiodcentered
37007 \series default
37008  verwendet.
37009  Dieser Befehl ist in einer Formel jedoch nicht verfügbar, so dass es zu
37010  LaTeX-Fehlern kommen würde.
37011  Durch die geänderte Kodierung wird hingegen automatisch der richtige Befehl
37012  gewählt, je nachdem ob das Zeichen in eine Formel eingegeben wurde oder
37013  nicht.
37014 \end_layout
37015
37016 \begin_layout Standard
37017 Die Kodierung der einzelnen Zeichen ist in Definitionsdateien abgespeichert.
37018  Z.
37019 \begin_inset space \thinspace{}
37020 \end_inset
37021
37022 B.
37023  ist die Kodierung 
37024 \series bold
37025 latin9
37026 \series default
37027  in der Datei 
37028 \series bold
37029 latin9.def
37030 \series default
37031  definiert, die sich im Installationsverzeichnis von LaTeX befindet.
37032  Kodierungen sollten nur über den LaTeX-Vorspann und nicht in den Definitionsdat
37033 eien geändert werden.
37034  Ansonsten können eigene Dokumente von anderen LyX-Nutzern auf anderen Computern
37035  nicht ohne Weiteres bearbeitet werden.
37036 \end_layout
37037
37038 \begin_layout Standard
37039 \begin_inset VSpace medskip
37040 \end_inset
37041
37042 In diesem Dokument wurde außerdem mittigen Punkt noch das Gradzeichen °
37043  mit folgenden LaTeX-Vorspannzeilen so definiert, dass sie direkt in eine
37044  Formel eingegeben werden können:
37045 \end_layout
37046
37047 \begin_layout Standard
37048
37049 \series bold
37050
37051 \backslash
37052 DeclareInputText{176}{
37053 \backslash
37054 ifmmode^
37055 \backslash
37056 circ
37057 \backslash
37058 else
37059 \backslash
37060 textdegree
37061 \backslash
37062 f\SpecialChar \textcompwordmark{}
37063 i}
37064 \end_layout
37065
37066 \begin_layout Standard
37067 \begin_inset Newpage newpage
37068 \end_inset
37069
37070
37071 \end_layout
37072
37073 \begin_layout Section
37074 \start_of_appendix
37075 Typographische Hinweise
37076 \begin_inset Index idx
37077 status collapsed
37078
37079 \begin_layout Plain Layout
37080 Typographische Hinweise
37081 \end_layout
37082
37083 \end_inset
37084
37085
37086 \end_layout
37087
37088 \begin_layout Standard
37089 Dieses Kapitel ist eine Zusammenfassung der wichtigsten typographischen
37090  Regeln, die teilweise auch im Duden 
37091 \begin_inset CommandInset citation
37092 LatexCommand cite
37093 key "Duden"
37094
37095 \end_inset
37096
37097  unter 
37098 \family typewriter
37099 Textverarbeitung
37100 \family default
37101  aufgelistet sind.
37102  Weitere Regeln sind in 
37103 \begin_inset CommandInset citation
37104 LatexCommand cite
37105 key "Checklist"
37106
37107 \end_inset
37108
37109  zu finden.
37110 \end_layout
37111
37112 \begin_layout Itemize
37113 Physikalische Einheiten werden 
37114 \emph on
37115 immer
37116 \emph default
37117  aufrecht gesetzt
37118 \begin_inset Foot
37119 status collapsed
37120
37121 \begin_layout Plain Layout
37122 wird durch Schriftstile erreicht, siehe 
37123 \begin_inset CommandInset ref
37124 LatexCommand ref
37125 reference "sub:Schriftstile"
37126
37127 \end_inset
37128
37129
37130 \end_layout
37131
37132 \end_inset
37133
37134 , egal ob sie sich in einem kursiven Text befinden: 30
37135 \begin_inset space \thinspace{}
37136 \end_inset
37137
37138 km/h
37139 \begin_inset Newline newline
37140 \end_inset
37141
37142 Zwischen Wert und Einheit befindet sich der kleinste Leerraum, siehe 
37143 \begin_inset CommandInset ref
37144 LatexCommand ref
37145 reference "sub:Vordefinierter-Leerraum"
37146
37147 \end_inset
37148
37149 .
37150 \begin_inset Newline newline
37151 \end_inset
37152
37153 Diese Richtlinie wird automatisch eingehalten, wenn man den Befehl 
37154 \series bold
37155
37156 \backslash
37157 unittwo
37158 \series default
37159  verwendet.
37160  Gibt man ihn in eine Formel ein, erscheinen zwei Kästchen.
37161  In das Erste wird der Wert, in das Zweite die Einheit eingegeben und man
37162  erhält wie oben: 
37163 \begin_inset Formula $\unit[30]{km/h}$
37164 \end_inset
37165
37166
37167 \begin_inset space \thinspace{}
37168 \end_inset
37169
37170 .
37171  Zu beachten ist, dass 
37172 \series bold
37173
37174 \backslash
37175 unittwo
37176 \series default
37177  kein echter LaTeX-Befehl, sondern der Befehl 
37178 \series bold
37179
37180 \backslash
37181 unit[Wert]{Einheit}
37182 \series default
37183  ist, daher kann man ihn nicht im TeX-Code benutzen.
37184 \end_layout
37185
37186 \begin_layout Itemize
37187 Prozent- und Promillezeichen werden wie physikalische Einheiten gesetzt:
37188 \begin_inset Newline newline
37189 \end_inset
37190
37191 1,2
37192 \begin_inset space \thinspace{}
37193 \end_inset
37194
37195 ‰ Alkohol im Blut
37196 \begin_inset Newline newline
37197 \end_inset
37198
37199 Sie folgen jedoch direkt auf die Zahl, wenn sie in einer Zusammensetzung
37200  oder Ableitung stehen: 3%-ige Rendite, 20%-Grenze
37201 \end_layout
37202
37203 \begin_layout Itemize
37204 Das Grad-Symbol folgt immer unmittelbar auf die Zahl: 15°, es sei denn es
37205  wird in einer Einheit verwendet: 15
37206 \begin_inset space \thinspace{}
37207 \end_inset
37208
37209 °C
37210 \end_layout
37211
37212 \begin_layout Itemize
37213 In Zahlen mit mehr als vier Ziffern wird zur Gruppierung vor jeder dritten
37214  Ziffer der kleinste Leerraum eingefügt: 18
37215 \begin_inset space \thinspace{}
37216 \end_inset
37217
37218 473
37219 \begin_inset space \thinspace{}
37220 \end_inset
37221
37222 588
37223 \end_layout
37224
37225 \begin_layout Itemize
37226 Für Bemaßungen wie z.
37227 \begin_inset space \thinspace{}
37228 \end_inset
37229
37230 B.
37231  120×90×40
37232 \begin_inset space \thinspace{}
37233 \end_inset
37234
37235 cm, verwendet man das gelegte Kreuz 
37236 \begin_inset Quotes gld
37237 \end_inset
37238
37239 ×
37240 \begin_inset Quotes grd
37241 \end_inset
37242
37243 , dass entweder über den Befehl 
37244 \series bold
37245
37246 \backslash
37247 times
37248 \series default
37249  oder über das Menü 
37250 \family sans
37251 Einfügen\SpecialChar \menuseparator
37252 Sonderzeichen\SpecialChar \menuseparator
37253 Symbole
37254 \family default
37255  verfügbar ist.
37256 \end_layout
37257
37258 \begin_layout Itemize
37259 Bei Datumsangaben befindet sich zwischen Tag und Monat der kleinste Leerraum,
37260  zwischen Monat und Jahr ein geschütztes Leerzeichen: 23.
37261 \begin_inset space \thinspace{}
37262 \end_inset
37263
37264 6.
37265 \begin_inset space ~
37266 \end_inset
37267
37268 1979
37269 \end_layout
37270
37271 \begin_layout Itemize
37272 Funktionen, deren Name aus mehreren Buchstaben besteht, werden aufrecht
37273  gesetzt um Verwechslungen mit Variablen zu vermeiden, siehe 
37274 \begin_inset CommandInset ref
37275 LatexCommand ref
37276 reference "sub:Vordefinierte-Funktionen"
37277
37278 \end_inset
37279
37280 .
37281 \end_layout
37282
37283 \begin_layout Itemize
37284 Indizes, die aus mehreren Buchstaben bestehen, werden aufrecht gesetzt:
37285  
37286 \begin_inset Formula $E_{\mathrm{kin}}$
37287 \end_inset
37288
37289
37290 \begin_inset Newline newline
37291 \end_inset
37292
37293 Komponenten von Matrizen werden kursiv gesetzt: 
37294 \begin_inset Formula $\hat{H}_{kl}$
37295 \end_inset
37296
37297
37298 \end_layout
37299
37300 \begin_layout Itemize
37301 Der Ableitungs-/Integrationsoperator 'd', die Eulersche Zahl 'e' und die
37302  Imaginäre Zahl 'i' sollten aufrecht gesetzt werden, um sie nicht mit anderen
37303  Variablen zu verwechseln.
37304 \end_layout
37305
37306 \begin_layout Itemize
37307 Das Symbol für eine 
37308 \noun on
37309 Fourier
37310 \noun default
37311 -Transformation kann entweder mit dem Befehl 
37312 \series bold
37313
37314 \backslash
37315 mathscr
37316 \begin_inset ERT
37317 status collapsed
37318
37319 \begin_layout Plain Layout
37320
37321
37322 \backslash
37323 leer 
37324 \end_layout
37325
37326 \end_inset
37327
37328 F
37329 \series default
37330  oder über das Menü 
37331 \family sans
37332 Einfügen\SpecialChar \menuseparator
37333 Sonderzeichen\SpecialChar \menuseparator
37334 Symbole\SpecialChar \menuseparator
37335 Buchstabenähnliche
37336 \begin_inset space ~
37337 \end_inset
37338
37339 Symbole
37340 \family default
37341  eingefügt werden: 
37342 \begin_inset Formula $\mathscr{F}$
37343 \end_inset
37344
37345
37346 \end_layout
37347
37348 \begin_layout Standard
37349 \begin_inset Newpage newpage
37350 \end_inset
37351
37352
37353 \end_layout
37354
37355 \begin_layout Section
37356 Synonyme
37357 \begin_inset Index idx
37358 status collapsed
37359
37360 \begin_layout Plain Layout
37361 Synonyme
37362 \end_layout
37363
37364 \end_inset
37365
37366
37367 \end_layout
37368
37369 \begin_layout Standard
37370 Einige Zeichen und Symbole können mit mehreren Befehlen erstellt werden.
37371  Hier ist eine Übersicht der Synonymbefehle:
37372 \end_layout
37373
37374 \begin_layout Standard
37375 \begin_inset VSpace bigskip
37376 \end_inset
37377
37378
37379 \begin_inset space \hfill{}
37380 \end_inset
37381
37382
37383 \begin_inset Tabular
37384 <lyxtabular version="3" rows="12" columns="2">
37385 <features tabularvalignment="middle">
37386 <column alignment="center" valignment="top" width="0pt">
37387 <column alignment="center" valignment="top" width="0pt">
37388 <row>
37389 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
37390 \begin_inset Text
37391
37392 \begin_layout Plain Layout
37393 Befehl
37394 \end_layout
37395
37396 \end_inset
37397 </cell>
37398 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
37399 \begin_inset Text
37400
37401 \begin_layout Plain Layout
37402 äquivalent zu
37403 \begin_inset Note Note
37404 status collapsed
37405
37406 \begin_layout Plain Layout
37407
37408 \series bold
37409
37410 \backslash
37411 raisebox
37412 \series default
37413  dient nur als Abstandhalter.
37414 \end_layout
37415
37416 \end_inset
37417
37418
37419 \end_layout
37420
37421 \end_inset
37422 </cell>
37423 </row>
37424 <row>
37425 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37426 \begin_inset Text
37427
37428 \begin_layout Plain Layout
37429
37430 \backslash
37431 ast
37432 \end_layout
37433
37434 \end_inset
37435 </cell>
37436 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37437 \begin_inset Text
37438
37439 \begin_layout Plain Layout
37440 \begin_inset ERT
37441 status collapsed
37442
37443 \begin_layout Plain Layout
37444
37445
37446 \backslash
37447 raisebox{-1.2mm}{
37448 \end_layout
37449
37450 \end_inset
37451
37452 *
37453 \begin_inset ERT
37454 status collapsed
37455
37456 \begin_layout Plain Layout
37457
37458 }
37459 \end_layout
37460
37461 \end_inset
37462
37463
37464 \end_layout
37465
37466 \end_inset
37467 </cell>
37468 </row>
37469 <row>
37470 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37471 \begin_inset Text
37472
37473 \begin_layout Plain Layout
37474
37475 \backslash
37476 choose
37477 \end_layout
37478
37479 \end_inset
37480 </cell>
37481 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37482 \begin_inset Text
37483
37484 \begin_layout Plain Layout
37485
37486 \backslash
37487 binom
37488 \end_layout
37489
37490 \end_inset
37491 </cell>
37492 </row>
37493 <row>
37494 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37495 \begin_inset Text
37496
37497 \begin_layout Plain Layout
37498
37499 \backslash
37500 geq
37501 \end_layout
37502
37503 \end_inset
37504 </cell>
37505 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37506 \begin_inset Text
37507
37508 \begin_layout Plain Layout
37509
37510 \backslash
37511 ge
37512 \end_layout
37513
37514 \end_inset
37515 </cell>
37516 </row>
37517 <row>
37518 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37519 \begin_inset Text
37520
37521 \begin_layout Plain Layout
37522
37523 \backslash
37524 lbrace
37525 \end_layout
37526
37527 \end_inset
37528 </cell>
37529 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37530 \begin_inset Text
37531
37532 \begin_layout Plain Layout
37533 {
37534 \end_layout
37535
37536 \end_inset
37537 </cell>
37538 </row>
37539 <row>
37540 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37541 \begin_inset Text
37542
37543 \begin_layout Plain Layout
37544
37545 \backslash
37546 lbracket
37547 \end_layout
37548
37549 \end_inset
37550 </cell>
37551 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37552 \begin_inset Text
37553
37554 \begin_layout Plain Layout
37555 [
37556 \end_layout
37557
37558 \end_inset
37559 </cell>
37560 </row>
37561 <row>
37562 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37563 \begin_inset Text
37564
37565 \begin_layout Plain Layout
37566
37567 \backslash
37568 leftarrow
37569 \end_layout
37570
37571 \end_inset
37572 </cell>
37573 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37574 \begin_inset Text
37575
37576 \begin_layout Plain Layout
37577
37578 \backslash
37579 gets
37580 \end_layout
37581
37582 \end_inset
37583 </cell>
37584 </row>
37585 <row>
37586 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37587 \begin_inset Text
37588
37589 \begin_layout Plain Layout
37590
37591 \backslash
37592 leq
37593 \end_layout
37594
37595 \end_inset
37596 </cell>
37597 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37598 \begin_inset Text
37599
37600 \begin_layout Plain Layout
37601
37602 \backslash
37603 le
37604 \end_layout
37605
37606 \end_inset
37607 </cell>
37608 </row>
37609 <row>
37610 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37611 \begin_inset Text
37612
37613 \begin_layout Plain Layout
37614
37615 \backslash
37616 lor
37617 \end_layout
37618
37619 \end_inset
37620 </cell>
37621 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37622 \begin_inset Text
37623
37624 \begin_layout Plain Layout
37625
37626 \backslash
37627 vee
37628 \end_layout
37629
37630 \end_inset
37631 </cell>
37632 </row>
37633 <row>
37634 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37635 \begin_inset Text
37636
37637 \begin_layout Plain Layout
37638
37639 \backslash
37640 neq
37641 \end_layout
37642
37643 \end_inset
37644 </cell>
37645 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37646 \begin_inset Text
37647
37648 \begin_layout Plain Layout
37649
37650 \backslash
37651 not=
37652 \end_layout
37653
37654 \end_inset
37655 </cell>
37656 </row>
37657 <row>
37658 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37659 \begin_inset Text
37660
37661 \begin_layout Plain Layout
37662
37663 \backslash
37664 slash
37665 \end_layout
37666
37667 \end_inset
37668 </cell>
37669 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37670 \begin_inset Text
37671
37672 \begin_layout Plain Layout
37673 /
37674 \end_layout
37675
37676 \end_inset
37677 </cell>
37678 </row>
37679 <row>
37680 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
37681 \begin_inset Text
37682
37683 \begin_layout Plain Layout
37684
37685 \backslash
37686 vert
37687 \end_layout
37688
37689 \end_inset
37690 </cell>
37691 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
37692 \begin_inset Text
37693
37694 \begin_layout Plain Layout
37695 |
37696 \end_layout
37697
37698 \end_inset
37699 </cell>
37700 </row>
37701 </lyxtabular>
37702
37703 \end_inset
37704
37705
37706 \begin_inset space \hfill{}
37707 \end_inset
37708
37709
37710 \begin_inset Tabular
37711 <lyxtabular version="3" rows="12" columns="2">
37712 <features tabularvalignment="middle">
37713 <column alignment="center" valignment="top" width="0pt">
37714 <column alignment="center" valignment="top" width="0pt">
37715 <row>
37716 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
37717 \begin_inset Text
37718
37719 \begin_layout Plain Layout
37720 Befehl
37721 \end_layout
37722
37723 \end_inset
37724 </cell>
37725 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
37726 \begin_inset Text
37727
37728 \begin_layout Plain Layout
37729 äquivalent zu
37730 \end_layout
37731
37732 \end_inset
37733 </cell>
37734 </row>
37735 <row>
37736 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37737 \begin_inset Text
37738
37739 \begin_layout Plain Layout
37740
37741 \backslash
37742 backslash
37743 \end_layout
37744
37745 \end_inset
37746 </cell>
37747 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37748 \begin_inset Text
37749
37750 \begin_layout Plain Layout
37751
37752 \backslash
37753
37754 \backslash
37755
37756 \end_layout
37757
37758 \end_inset
37759 </cell>
37760 </row>
37761 <row>
37762 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37763 \begin_inset Text
37764
37765 \begin_layout Plain Layout
37766
37767 \backslash
37768 dasharrow
37769 \end_layout
37770
37771 \end_inset
37772 </cell>
37773 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37774 \begin_inset Text
37775
37776 \begin_layout Plain Layout
37777
37778 \backslash
37779 dashrightarrow
37780 \end_layout
37781
37782 \end_inset
37783 </cell>
37784 </row>
37785 <row>
37786 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37787 \begin_inset Text
37788
37789 \begin_layout Plain Layout
37790
37791 \backslash
37792 land
37793 \end_layout
37794
37795 \end_inset
37796 </cell>
37797 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37798 \begin_inset Text
37799
37800 \begin_layout Plain Layout
37801
37802 \backslash
37803 wedge
37804 \end_layout
37805
37806 \end_inset
37807 </cell>
37808 </row>
37809 <row>
37810 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37811 \begin_inset Text
37812
37813 \begin_layout Plain Layout
37814
37815 \backslash
37816 rbrace
37817 \end_layout
37818
37819 \end_inset
37820 </cell>
37821 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37822 \begin_inset Text
37823
37824 \begin_layout Plain Layout
37825 }
37826 \end_layout
37827
37828 \end_inset
37829 </cell>
37830 </row>
37831 <row>
37832 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37833 \begin_inset Text
37834
37835 \begin_layout Plain Layout
37836
37837 \backslash
37838 rbracket
37839 \end_layout
37840
37841 \end_inset
37842 </cell>
37843 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37844 \begin_inset Text
37845
37846 \begin_layout Plain Layout
37847 ]
37848 \end_layout
37849
37850 \end_inset
37851 </cell>
37852 </row>
37853 <row>
37854 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37855 \begin_inset Text
37856
37857 \begin_layout Plain Layout
37858
37859 \backslash
37860 rightarrow
37861 \end_layout
37862
37863 \end_inset
37864 </cell>
37865 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37866 \begin_inset Text
37867
37868 \begin_layout Plain Layout
37869
37870 \backslash
37871 to
37872 \end_layout
37873
37874 \end_inset
37875 </cell>
37876 </row>
37877 <row>
37878 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37879 \begin_inset Text
37880
37881 \begin_layout Plain Layout
37882
37883 \backslash
37884 lnot
37885 \end_layout
37886
37887 \end_inset
37888 </cell>
37889 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37890 \begin_inset Text
37891
37892 \begin_layout Plain Layout
37893
37894 \backslash
37895 neg
37896 \end_layout
37897
37898 \end_inset
37899 </cell>
37900 </row>
37901 <row>
37902 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37903 \begin_inset Text
37904
37905 \begin_layout Plain Layout
37906
37907 \backslash
37908 ne
37909 \end_layout
37910
37911 \end_inset
37912 </cell>
37913 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37914 \begin_inset Text
37915
37916 \begin_layout Plain Layout
37917
37918 \backslash
37919 not=
37920 \end_layout
37921
37922 \end_inset
37923 </cell>
37924 </row>
37925 <row>
37926 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37927 \begin_inset Text
37928
37929 \begin_layout Plain Layout
37930
37931 \backslash
37932 owns
37933 \end_layout
37934
37935 \end_inset
37936 </cell>
37937 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37938 \begin_inset Text
37939
37940 \begin_layout Plain Layout
37941
37942 \backslash
37943 ni
37944 \end_layout
37945
37946 \end_inset
37947 </cell>
37948 </row>
37949 <row>
37950 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
37951 \begin_inset Text
37952
37953 \begin_layout Plain Layout
37954
37955 \backslash
37956 square
37957 \end_layout
37958
37959 \end_inset
37960 </cell>
37961 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
37962 \begin_inset Text
37963
37964 \begin_layout Plain Layout
37965
37966 \backslash
37967 Box
37968 \end_layout
37969
37970 \end_inset
37971 </cell>
37972 </row>
37973 <row>
37974 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
37975 \begin_inset Text
37976
37977 \begin_layout Plain Layout
37978
37979 \backslash
37980 Vert
37981 \end_layout
37982
37983 \end_inset
37984 </cell>
37985 <cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
37986 \begin_inset Text
37987
37988 \begin_layout Plain Layout
37989
37990 \backslash
37991 |
37992 \end_layout
37993
37994 \end_inset
37995 </cell>
37996 </row>
37997 </lyxtabular>
37998
37999 \end_inset
38000
38001
38002 \begin_inset space \hfill{}
38003 \end_inset
38004
38005
38006 \end_layout
38007
38008 \begin_layout Standard
38009 \begin_inset Newpage newpage
38010 \end_inset
38011
38012
38013 \end_layout
38014
38015 \begin_layout Bibliography
38016 \labelwidthstring Referenzen
38017 \begin_inset CommandInset bibitem
38018 LatexCommand bibitem
38019 key "TLC2"
38020
38021 \end_inset
38022
38023
38024 \shape smallcaps
38025 Mittelbach, F.
38026  ; Goossens, M.
38027 \shape default
38028
38029 \shape italic
38030 The LaTeX Companion
38031 \shape default
38032 .
38033  Addison Wesley, 2004
38034 \end_layout
38035
38036 \begin_layout Bibliography
38037 \labelwidthstring Referenzen
38038 \begin_inset CommandInset bibitem
38039 LatexCommand bibitem
38040 key "Mathmode"
38041
38042 \end_inset
38043
38044
38045 \begin_inset CommandInset href
38046 LatexCommand href
38047 name "Beschreibung"
38048 target "ftp://ftp.dante.de/tex-archive/info/math/voss/mathmode/Mathmode.pdf"
38049
38050 \end_inset
38051
38052  der mathematischen Fähigkeiten von LaTeX
38053 \end_layout
38054
38055 \begin_layout Bibliography
38056 \labelwidthstring Referenzen
38057 \begin_inset CommandInset bibitem
38058 LatexCommand bibitem
38059 key "AMS"
38060
38061 \end_inset
38062
38063
38064 \begin_inset CommandInset href
38065 LatexCommand href
38066 name "Beschreibung"
38067 target "ftp://ftp.ams.org/pub/tex/doc/amsmath/amsldoc.pdf"
38068
38069 \end_inset
38070
38071  von 
38072 \begin_inset ERT
38073 status collapsed
38074
38075 \begin_layout Plain Layout
38076
38077
38078 \backslash
38079 AmS
38080 \end_layout
38081
38082 \end_inset
38083
38084 -LaTeX
38085 \end_layout
38086
38087 \begin_layout Bibliography
38088 \labelwidthstring Referenzen
38089 \begin_inset CommandInset bibitem
38090 LatexCommand bibitem
38091 key "Symbole"
38092
38093 \end_inset
38094
38095
38096 \begin_inset CommandInset href
38097 LatexCommand href
38098 name "Auflistung"
38099 target "ftp://ftp.dante.de/tex-archive/info/symbols/comprehensive/symbols-a4.pdf"
38100
38101 \end_inset
38102
38103  aller über LaTeX-Pakete verfügbare Symbole
38104 \end_layout
38105
38106 \begin_layout Bibliography
38107 \labelwidthstring Referenzen
38108 \begin_inset CommandInset bibitem
38109 LatexCommand bibitem
38110 key "hyperref"
38111
38112 \end_inset
38113
38114
38115 \begin_inset CommandInset href
38116 LatexCommand href
38117 name "Dokumentation"
38118 target "http://www.tug.org/applications/hyperref/ftp/doc/manual.pdf"
38119
38120 \end_inset
38121
38122  des LaTeX-Pakets 
38123 \series bold
38124 hyperref
38125 \series default
38126
38127 \begin_inset Index idx
38128 status collapsed
38129
38130 \begin_layout Plain Layout
38131 Pakete ! hyperref
38132 \end_layout
38133
38134 \end_inset
38135
38136
38137 \end_layout
38138
38139 \begin_layout Bibliography
38140 \labelwidthstring Referenzen
38141 \begin_inset CommandInset bibitem
38142 LatexCommand bibitem
38143 key "mhchem"
38144
38145 \end_inset
38146
38147
38148 \begin_inset CommandInset href
38149 LatexCommand href
38150 name "Dokumentation"
38151 target "http://www.ctan.org/tex-archive/macros/latex/contrib/mhchem/mhchem.pdf"
38152
38153 \end_inset
38154
38155  des LaTeX-Pakets 
38156 \series bold
38157 mhchem
38158 \series default
38159
38160 \begin_inset Index idx
38161 status collapsed
38162
38163 \begin_layout Plain Layout
38164 Pakete ! mhchem
38165 \end_layout
38166
38167 \end_inset
38168
38169
38170 \end_layout
38171
38172 \begin_layout Bibliography
38173 \labelwidthstring Referenzen
38174 \begin_inset CommandInset bibitem
38175 LatexCommand bibitem
38176 key "Mathclap"
38177
38178 \end_inset
38179
38180
38181 \begin_inset CommandInset href
38182 LatexCommand href
38183 name "Beschreibung"
38184 target "http://www.tug.org/TUGboat/Articles/tb22-4/tb72perlS.pdf"
38185
38186 \end_inset
38187
38188  des in 
38189 \begin_inset CommandInset ref
38190 LatexCommand ref
38191 reference "sub:Operatorgrenzen"
38192
38193 \end_inset
38194
38195  vorgestellten Befehls 
38196 \series bold
38197
38198 \backslash
38199 mathclap
38200 \series default
38201
38202 \begin_inset Index idx
38203 status collapsed
38204
38205 \begin_layout Plain Layout
38206 Befehle ! M ! 
38207 \backslash
38208 mathclap
38209 \end_layout
38210
38211 \end_inset
38212
38213
38214 \end_layout
38215
38216 \begin_layout Bibliography
38217 \labelwidthstring Referenzen
38218 \begin_inset CommandInset bibitem
38219 LatexCommand bibitem
38220 key "Duden"
38221
38222 \end_inset
38223
38224
38225 \emph on
38226 Duden Band 1
38227 \emph default
38228 .
38229  22.
38230  Auflage, Duden Verlag 2001
38231 \end_layout
38232
38233 \begin_layout Bibliography
38234 \labelwidthstring Referenzen
38235 \begin_inset CommandInset bibitem
38236 LatexCommand bibitem
38237 key "Checklist"
38238
38239 \end_inset
38240
38241
38242 \begin_inset CommandInset href
38243 LatexCommand href
38244 name "Prüfliste"
38245 target "http://physics.nist.gov/Document/checklist.pdf"
38246
38247 \end_inset
38248
38249  für das Rezensieren von Manuskripten
38250 \end_layout
38251
38252 \begin_layout Standard
38253 \begin_inset Note Note
38254 status collapsed
38255
38256 \begin_layout Plain Layout
38257 Damit der Index den Namen 
38258 \begin_inset Quotes gld
38259 \end_inset
38260
38261 Stichwortverzeichnis
38262 \begin_inset Quotes grd
38263 \end_inset
38264
38265  erhält, wurde im LaTeX-Vorspann
38266 \end_layout
38267
38268 \begin_layout Plain Layout
38269
38270 \series bold
38271
38272 \backslash
38273 addto
38274 \backslash
38275 captionsngerman{
38276 \backslash
38277 renewcommand{
38278 \backslash
38279 indexname}{Stichwortverzeichnis}}
38280 \end_layout
38281
38282 \begin_layout Plain Layout
38283 eingefügt.
38284 \end_layout
38285
38286 \begin_layout Plain Layout
38287 Das Paket 
38288 \series bold
38289 babel
38290 \series default
38291  sorgt dafür, dass die Beschriftungen in der ausgewählten Sprache erscheinen.
38292  Ehe man Beschriftungen ändern kann, muss es geladen werden.
38293  Außerdem wird 
38294 \series bold
38295 babel
38296 \series default
38297  von LyX automatisch nach dem LaTeX-Vorspann geladen.
38298  Das ruft aber keine Probleme hervor, solange im LaTeX-Vorspann die Dokumentspra
38299 che verwendet wurde.
38300 \end_layout
38301
38302 \begin_layout Plain Layout
38303 Möchte man andere Beschriftungen ändern, ersetzt man 
38304 \series bold
38305
38306 \backslash
38307 indexname
38308 \series default
38309  durch 
38310 \series bold
38311
38312 \backslash
38313 <Beschriftungs>name
38314 \series default
38315 .
38316  Eine Auflistung der möglichen Namen findet man unter
38317 \end_layout
38318
38319 \begin_layout Plain Layout
38320
38321 \family typewriter
38322 http://www.tex.ac.uk/cgi-bin/texfaq2html?label=fixnam
38323 \end_layout
38324
38325 \begin_layout Plain Layout
38326 Möchte man Beschriftungen für andere Sprachen ändern, ersetzt man 
38327 \series bold
38328 ngerman
38329 \series default
38330  durch die Dokumentsprache und
38331 \end_layout
38332
38333 \begin_layout Plain Layout
38334
38335 \series bold
38336
38337 \backslash
38338 captionsgerman
38339 \series default
38340  durch 
38341 \series bold
38342
38343 \backslash
38344 captions<Dokumentsprache>
38345 \series default
38346 .
38347 \end_layout
38348
38349 \end_inset
38350
38351
38352 \begin_inset CommandInset index_print
38353 LatexCommand printindex
38354 type "idx"
38355
38356 \end_inset
38357
38358
38359 \end_layout
38360
38361 \end_body
38362 \end_document