5.1 Mathematische Formeln schreiben

Aus Online Mathematik Brückenkurs 1

(Unterschied zwischen Versionen)
Wechseln zu: Navigation, Suche
(Uebersetzung)
Aktuelle Version (11:36, 7. Okt. 2010) (bearbeiten) (rückgängig)
 
(Der Versionsvergleich bezieht 13 dazwischen liegende Versionen mit ein.)
Zeile 16: Zeile 16:
'''Lernziele'''
'''Lernziele'''
-
Nach diesem Abschnitt sollten Sie folgendes können:
+
Nach diesem Abschnitt solltest du folgendes können:
* Einfache Formeln in LaTeX schreiben.
* Einfache Formeln in LaTeX schreiben.
Zeile 22: Zeile 22:
}}
}}
-
Um Mathematik effizient auf einem Computer in Ihrer persönlichen Hausaufgabe und der Gruppenaufgabe zu schreiben, werden Sie den mathematischen Text in Form eines Syntax schreiben, der LaTeX genannt wird. In diesem Abschnitt lernen Sie den grundlegenden LaTeX-Code, um einfache mathematische Formeln schreiben zu können.
+
Um Mathematik effizient auf einem Computer in Ihrer persönlichen Hausaufgabe und der Gruppenaufgabe zu schreiben, wirst du den mathematischen Text in Form eines Syntax schreiben, der LaTeX genannt wird. In diesem Abschnitt lernst du den grundlegenden LaTeX-Code, um einfache mathematische Formeln schreiben zu können.
-
==Einfache Ausdrücke schreiben==
+
== A - Einfache Ausdrücke schreiben==
-
Um mathematische Formatierungen zu beginnen, verwenden Sie das Tag '''<nowiki><math></nowiki>''' und zum Beenden '''<nowiki></math></nowiki>'''. Wenn Sie z.B. die Formel <math>a+b</math> in einer Textumgebung eingeben möchten, schreiben Sie <nowiki><math></nowiki>a+b<nowiki></math></nowiki>.
+
Um mathematische Formatierungen zu beginnen, verwendest du das Tag '''<nowiki><math></nowiki>''' und zum Beenden '''<nowiki></math></nowiki>'''. Wenn du z.B. die Formel <math>a+b</math> in einer Textumgebung eingeben möchtest, schreibst du <nowiki><math></nowiki>a+b<nowiki></math></nowiki>.
Einfache mathematische Formeln schreiben sich "straightforward".
Einfache mathematische Formeln schreiben sich "straightforward".
Zeile 42: Zeile 42:
</div>
</div>
-
Benötigen Sie Symbole, die nicht auf der Tastatur verfügbar sind oder Formeln, die nicht so einfach zu schreiben sind, verwenden Sie hierzu spezielle Befehle. Diese beginnen mit einem Backslash (d.h. <tt>\setminus</tt>). Zum Beispiel ist <tt>\le</tt> der Befehl, welcher <math>\le</math> erzeugt.
+
Benötigst du Symbole, die nicht auf der Tastatur verfügbar sind oder Formeln, die nicht so einfach zu schreiben sind, verwendest du hierzu spezielle Befehle. Diese beginnen mit einem Backslash (d.h. <tt>\</tt>). Zum Beispiel ist <tt>\le</tt> der Befehl, welcher <math>\le</math> erzeugt.
-
Die folgende Tabelle zeigt Ihnen einige der am häufigsten verwendeten Befehle in LaTeX
+
Die folgende Tabelle zeigt dir einige der am häufigsten verwendeten Befehle in LaTeX
<table cellpadding="6" cellspacing="0" class="normalText" width="90%"
<table cellpadding="6" cellspacing="0" class="normalText" width="90%"
Zeile 74: Zeile 74:
<tr bgcolor="white">
<tr bgcolor="white">
<td></td>
<td></td>
-
<td align="center"><span class="math">a\times b</span></td>
+
<td align="center"><span class="math">a\cdot b</span></td>
-
<td align="center"><tt>a\times b</tt></td>
+
<td align="center"><tt>a\cdot b</tt></td>
<td></td>
<td></td>
</tr>
</tr>
Zeile 92: Zeile 92:
<tr style="background:#E6E6E6;">
<tr style="background:#E6E6E6;">
<td></td>
<td></td>
-
<td align="center"><span class="math">\dfrac{a}{b}</span></td>
+
<td align="center"><span class="math">\displaystyle\frac{a}{b}</span></td>
-
<td align="center"><tt>\dfrac{a}{b}</tt></td>
+
<td align="center"><tt>\displaystyle\frac{a}{b}</tt></td>
<td align="left">Großer Bruch</td>
<td align="left">Großer Bruch</td>
</tr>
</tr>
Zeile 154: Zeile 154:
<td align="center"><span class="math">\sqrt[n]{x}</span></td>
<td align="center"><span class="math">\sqrt[n]{x}</span></td>
<td align="center"><tt>\sqrt[n]{x}</tt></td>
<td align="center"><tt>\sqrt[n]{x}</tt></td>
-
<td>Schreiben Sie \sqrt[\scriptstyle n]{x} für größeres n</td>
+
<td>Schreibe \sqrt[\scriptstyle n]{x} für größeres n</td>
</tr>
</tr>
<tr>
<tr>
Zeile 253: Zeile 253:
<ol type="a">
<ol type="a">
-
<li><math>1\pm3\times 5\quad</math> wird geschrieben als <tt><nowiki><math></nowiki>1\pm 3\times 5<nowiki></math></nowiki></tt></li>
+
<li><math>1\pm3\cdot 5\quad</math> wird geschrieben als <tt><nowiki><math></nowiki>1\pm 3\cdot 5<nowiki></math></nowiki></tt></li>
<li><math>\tfrac{1}{2}y\ne x\le z\quad</math> wird geschrieben als <tt><nowiki><math></nowiki>\frac{1}{2}y\ne x\le z<nowiki></math></nowiki></tt></li>
<li><math>\tfrac{1}{2}y\ne x\le z\quad</math> wird geschrieben als <tt><nowiki><math></nowiki>\frac{1}{2}y\ne x\le z<nowiki></math></nowiki></tt></li>
<li><math>2^{13}\sqrt{3}+\ln y\quad</math> wird geschrieben als <tt><nowiki><math></nowiki>2^{13}\sqrt{3}+\ln y<nowiki></math></nowiki></tt></li>
<li><math>2^{13}\sqrt{3}+\ln y\quad</math> wird geschrieben als <tt><nowiki><math></nowiki>2^{13}\sqrt{3}+\ln y<nowiki></math></nowiki></tt></li>
Zeile 261: Zeile 261:
-
==Kompliziertere Ausdrücke==
+
== B - Kompliziertere Ausdrücke==
Kompliziertere Ausdrücke entstehen durch das Kombinieren einfacher.
Kompliziertere Ausdrücke entstehen durch das Kombinieren einfacher.
Zeile 288: Zeile 288:
-
==Vermeiden Sie häufige Fehler==
+
== C - Vermeide häufige Fehler==
Einer der häufigsten Fehler beim Editieren mathematischer Ausdrücke ist, die Markierungen <tt><nowiki><math></nowiki></tt> zu Beginn und <tt><nowiki></math></nowiki></tt> am Ende.
Einer der häufigsten Fehler beim Editieren mathematischer Ausdrücke ist, die Markierungen <tt><nowiki><math></nowiki></tt> zu Beginn und <tt><nowiki></math></nowiki></tt> am Ende.
-
Vergessen Sie nicht, dass Befehle mit einem Backslash (\) beginnen und fügen Sie hinter den Befehlen ein Leerzeichen ein, solange sie nicht von einem neuen Befehl gefolgt werden.
+
Vergiss nicht, dass Befehle mit einem Backslash (\) beginnen und füge hinter den Befehlen ein Leerzeichen ein, solange sie nicht von einem neuen Befehl gefolgt werden.
-
Ein weiterer häufiger Fehler ist es, anstatt eines des korrekten Symbols für die Multiplikation <math>\times</math> (<tt>\times</tt> in TeX) einen Stern (<tt>*</tt>) zu verwenden.
+
Ein weiterer häufiger Fehler ist es, anstatt des korrekten Symbols für die Multiplikation <math>\cdot</math> (<tt>\cdot</tt> in TeX) einen Stern (<tt>*</tt>) zu verwenden.
<div class="exempel">
<div class="exempel">
Zeile 304: Zeile 304:
| align="center" width="35%" |Result
| align="center" width="35%" |Result
|-
|-
-
||<ol type="a" style="padding-top: 5px; padding-bottom: 0px; margin-bottom: 0px"><li>Vergessen Sie den Backslash nicht (\)</li></ol>
+
||<ol type="a" style="padding-top: 5px; padding-bottom: 0px; margin-bottom: 0px"><li>Vergiss den Backslash nicht (\)</li></ol>
| align="center" valign="bottom" |<tt>sin x</tt>
| align="center" valign="bottom" |<tt>sin x</tt>
| align="center" valign="bottom" |<math>sin x</math>
| align="center" valign="bottom" |<math>sin x</math>
|-
|-
-
||<ol style="list-style-type: none; padding-top: 10px; padding-bottom: 0px; margin-top: 0px; margin-bottom: 0px"><li>Fügen Sie nach dem Befehl ein Leerzeichen ein</li></ol>
+
||<ol style="list-style-type: none; padding-top: 10px; padding-bottom: 0px; margin-top: 0px; margin-bottom: 0px"><li>Füge nach dem Befehl ein Leerzeichen ein</li></ol>
| align="center" valign="bottom" |<tt>\sinx</tt>
| align="center" valign="bottom" |<tt>\sinx</tt>
| align="center" valign="bottom" |<span style="color:red">Error</span>
| align="center" valign="bottom" |<span style="color:red">Error</span>
|-
|-
-
||<ol style="list-style-type: none; padding-top: 10px; padding-bottom: 0px; margin-top: 0px; margin-bottom: 0px"><li>'''Schreiben''' Sie</li></ol>
+
||<ol style="list-style-type: none; padding-top: 10px; padding-bottom: 0px; margin-top: 0px; margin-bottom: 0px"><li>'''Schreibe'''</li></ol>
| align="center" valign="bottom" |<tt>\sin x</tt>
| align="center" valign="bottom" |<tt>\sin x</tt>
| align="center" valign="bottom" |<math>\sin x</math>
| align="center" valign="bottom" |<math>\sin x</math>
|-
|-
-
||<ol type="a" start="2" style="padding-top: 5px; padding-bottom: 0px; margin-bottom: 0px"><li>Verwenden Sie keinen Stern als Multiplikationszeichen</li></ol>
+
||<ol type="a" start="2" style="padding-top: 5px; padding-bottom: 0px; margin-bottom: 0px"><li>Verwende keinen Stern als Multiplikationszeichen</li></ol>
| align="center" valign="bottom" |<tt>4*3</tt>
| align="center" valign="bottom" |<tt>4*3</tt>
| align="center" valign="bottom" |<math>4*3</math>
| align="center" valign="bottom" |<math>4*3</math>
|-
|-
-
||<ol style="list-style-type: none; padding-top: 10px; padding-bottom: 0px; margin-top: 0px; margin-bottom: 0px"><li>'''Schreiben''' Sie</li></ol>
+
||<ol style="list-style-type: none; padding-top: 10px; padding-bottom: 0px; margin-top: 0px; margin-bottom: 0px"><li>'''Schreibe'''</li></ol>
-
| align="center" valign="bottom" |<tt>4\times 3</tt>
+
| align="center" valign="bottom" |<tt>4\cdot 3</tt>
-
| align="center" valign="bottom" |<math>4\times 3</math>
+
| align="center" valign="bottom" |<math>4\cdot 3</math>
|-
|-
-
||<ol type="a" start="3" style="padding-top: 5px; padding-bottom: 0px; margin-bottom: 0px"><li>The multiplication sign is usually not inserted between variables</li></ol>
+
||<ol type="a" start="3" style="padding-top: 5px; padding-bottom: 0px; margin-bottom: 0px"><li>Ein Multiplikationszeichen zwischen Buchstaben wird normalerweise weggelassen</li></ol>
-
| align="center" valign="bottom" |<tt>a\times b</tt>
+
| align="center" valign="bottom" |<tt>a\cdot b</tt>
-
| align="center" valign="bottom" |<math>a\times b</math>
+
| align="center" valign="bottom" |<math>a\cdot b</math>
|-
|-
-
||<ol style="list-style-type: none; padding-top: 10px; padding-bottom: 0px; margin-top: 0px"><li>'''Do''' write</li></ol>
+
||<ol style="list-style-type: none; padding-top: 10px; padding-bottom: 0px; margin-top: 0px"><li>'''Schreibe'''</li></ol>
| align="center" |<tt>ab</tt>
| align="center" |<tt>ab</tt>
| align="center" |<math>ab</math>
| align="center" |<math>ab</math>
Zeile 334: Zeile 334:
</div>
</div>
-
====Superscripts and subscripts====
+
==== D - Hoch- und Tiefstellen====
-
When writing superscripts, such as exponents, you use <tt>^</tt>, and to write subscripts you use <tt>_</tt>. If the super- or subscript consists of more than one symbol it must be enclosed with braces <tt>{}</tt>.
+
Für Hochstellungen wie bei Potenzen, verwendet man <tt>^</tt>. Für Tiefstellungen <tt>_</tt>. Besteht das hoch- bzw. tiefzustellende Symbol aus mehr als einem Zeichen, muss es in Klammern stehen <tt>{}</tt>.
-
A special kind of superscript is the degree sign (°) which is written as <tt>^{\circ}</tt>.
+
Ein spezielles, hochgestelltes Symbol ist jenes für Grad (°), welches als <tt>^{\circ}</tt> geschrieben wird.
<div class="exempel">
<div class="exempel">
Zeile 348: Zeile 348:
| align="center" width="35%" |Result
| align="center" width="35%" |Result
|-
|-
-
||<ol type="a" style="padding-top: 5px; padding-bottom: 0px; margin-bottom: 0px"><li>Don't omit <tt>^</tt></li></ol>
+
||<ol type="a" style="padding-top: 5px; padding-bottom: 0px; margin-bottom: 0px"><li>Vergiss nicht <tt>^</tt></li></ol>
| align="center" valign="bottom" |<tt>a2</tt>
| align="center" valign="bottom" |<tt>a2</tt>
| align="center" valign="bottom" |<math>a2</math>
| align="center" valign="bottom" |<math>a2</math>
|-
|-
-
||<ol style="list-style-type: none; padding-top: 10px; padding-bottom: 0px; margin-top: 0px; margin-bottom: 0px"><li>'''Do''' write</li></ol>
+
||<ol style="list-style-type: none; padding-top: 10px; padding-bottom: 0px; margin-top: 0px; margin-bottom: 0px"><li>'''Schreibe''' </li></ol>
| align="center" valign="bottom" |<tt>a^2</tt>
| align="center" valign="bottom" |<tt>a^2</tt>
| align="center" valign="bottom" |<math>a^2</math>
| align="center" valign="bottom" |<math>a^2</math>
|-
|-
-
||<ol type="a" start="2" style="padding-top: 5px; padding-bottom: 0px; margin-bottom: 0px"><li>Don't omit <tt>_</tt></li></ol>
+
||<ol type="a" start="2" style="padding-top: 5px; padding-bottom: 0px; margin-bottom: 0px"><li>Vergiss nicht <tt>_</tt></li></ol>
| align="center" valign="bottom" |<tt>x1</tt>
| align="center" valign="bottom" |<tt>x1</tt>
| align="center" valign="bottom" |<math>x1</math>
| align="center" valign="bottom" |<math>x1</math>
|-
|-
-
||<ol style="list-style-type: none; padding-top: 10px; padding-bottom: 0px; margin-top: 0px; margin-bottom: 0px"><li>'''Do''' write</li></ol>
+
||<ol style="list-style-type: none; padding-top: 10px; padding-bottom: 0px; margin-top: 0px; margin-bottom: 0px"><li>'''Schreibe''' </li></ol>
| align="center" valign="bottom" |<tt>x_1</tt>
| align="center" valign="bottom" |<tt>x_1</tt>
| align="center" valign="bottom" |<math>x_1</math>
| align="center" valign="bottom" |<math>x_1</math>
|-
|-
-
||<ol type="a" start="3" style="padding-top: 5px; padding-bottom: 0px; margin-bottom: 0px"><li>Remember to use braces</li></ol>
+
||<ol type="a" start="3" style="padding-top: 5px; padding-bottom: 0px; margin-bottom: 0px"><li>Achte auf Klammern</li></ol>
| align="center" valign="bottom" |<tt>a^22</tt>
| align="center" valign="bottom" |<tt>a^22</tt>
| align="center" valign="bottom" |<math>a^22</math>
| align="center" valign="bottom" |<math>a^22</math>
|-
|-
-
||<ol style="list-style-type: none; padding-top: 10px; padding-bottom: 0px; margin-top: 0px; margin-bottom: 0px"><li>'''Do''' write</li></ol>
+
||<ol style="list-style-type: none; padding-top: 10px; padding-bottom: 0px; margin-top: 0px; margin-bottom: 0px"><li>'''Schreibe''' </li></ol>
| align="center" valign="bottom" |<tt>a^{22}</tt>
| align="center" valign="bottom" |<tt>a^{22}</tt>
| align="center" valign="bottom" |<math>a^{22}</math>
| align="center" valign="bottom" |<math>a^{22}</math>
|-
|-
-
||<ol type="a" start="4" style="padding-top: 5px; padding-bottom: 0px; margin-bottom: 0px"><li>Don't use "o" as the degree sign</li></ol>
+
||<ol type="a" start="4" style="padding-top: 5px; padding-bottom: 0px; margin-bottom: 0px"><li>Verwende "o" nicht als Symbol für Grad</li></ol>
| align="center" valign="bottom" |<tt>30^{o}</tt>
| align="center" valign="bottom" |<tt>30^{o}</tt>
| align="center" valign="bottom" |<math>30^{o}</math>
| align="center" valign="bottom" |<math>30^{o}</math>
|-
|-
-
||<ol style="list-style-type: none; padding-top: 10px; padding-bottom: 0px; margin-top: 0px; margin-bottom: 0px"><li>Don't use "0" as the degree sign</li></ol>
+
||<ol style="list-style-type: none; padding-top: 10px; padding-bottom: 0px; margin-top: 0px; margin-bottom: 0px"><li>Verwende "0" nicht als Symbol für Grad</li></ol>
| align="center" valign="bottom" |<tt>30^{0}</tt>
| align="center" valign="bottom" |<tt>30^{0}</tt>
| align="center" valign="bottom" |<math>30^{0}</math>
| align="center" valign="bottom" |<math>30^{0}</math>
|-
|-
-
||<ol style="list-style-type: none; padding-top: 10px; padding-bottom: 0px; margin-top: 0px"><li>'''Do''' write</li></ol>
+
||<ol style="list-style-type: none; padding-top: 10px; padding-bottom: 0px; margin-top: 0px"><li>'''Schreibe''' </li></ol>
| align="center" |<tt>30^{\circ}</tt>
| align="center" |<tt>30^{\circ}</tt>
| align="center" |<math>30^{\circ}</math>
| align="center" |<math>30^{\circ}</math>
Zeile 386: Zeile 386:
</div>
</div>
-
====Delimiters====
+
==== E - Trennungssymbole====
-
In more complex expressions you need to make sure to balance each opening parenthesis <tt>(</tt> with a closing parenthesis <tt>)</tt>.
+
Bei komplexeren Ausdrücken mußt Du Dich vergewissern, die richtige Anzahl von Klammern zu setzen, d.h. stets paarweise <tt>(</tt> und <tt>)</tt>.
-
A pair of parenthesis that delimits a tall expression should be as large as the expression. You should therefore prefix the opening parenthesis with <tt>\left</tt> and the closing parenthesis with <tt>\right</tt> to get a pair of extensible parentheses that adjust its height to the expression.
+
Ein Klammerpaar, welches einen hohen Ausdruck umgibt, sollte so hoch sein wie dieser. Deshalb solltest Du stets den Ausdruck <tt>\left</tt> dem Klammerbefehl vorausstellen, genauso <tt>\right</tt> beim Schließen der Klammer, denn dieser Befehl passt die Höhe der Klammern gerade an.
-
Note also that braces, <tt>{}</tt>, and not parentheses, <tt>()</tt>, are used to delimit arguments (input values) of commands such as <tt>\sqrt</tt> and <tt>\frac</tt>.
+
Beachte, dass geschweifte Klammern im Gegensatz zu runden dafuer verwendet werden, um Argumente in Funktionen zu trennen, z.B. bei Befehlen wie <tt>\sqrt</tt> und <tt>\frac</tt>.
<div class="exempel">
<div class="exempel">
Zeile 402: Zeile 402:
| align="center" width="35%" |Result
| align="center" width="35%" |Result
|-
|-
-
||<ol type="a" style="padding-top: 3px; padding-bottom: 3px"><li>Use the correct number of brackets</li></ol>
+
||<ol type="a" style="padding-top: 3px; padding-bottom: 3px"><li>Verwende die richtige Anzahl KLammern.</li></ol>
| align="center" valign="center" |<tt>(1-(1-x)</tt>
| align="center" valign="center" |<tt>(1-(1-x)</tt>
| align="center" valign="center" |<math>(1-(1-x)</math>
| align="center" valign="center" |<math>(1-(1-x)</math>
|-
|-
-
||<ol style="list-style-type: none; padding-top: 5px; padding-bottom: 5px; margin-top: 0px; margin-bottom: 0px"><li>'''Do''' write</li></ol>
+
||<ol style="list-style-type: none; padding-top: 5px; padding-bottom: 5px; margin-top: 0px; margin-bottom: 0px"><li>'''Schreibe''' </li></ol>
| align="center" valign="center" |<tt>(1-(1-x))</tt>
| align="center" valign="center" |<tt>(1-(1-x))</tt>
| align="center" valign="center" |<math>(1-(1-x))</math>
| align="center" valign="center" |<math>(1-(1-x))</math>
|-
|-
-
||<ol type="a" start="2" style="padding-top: 10px; padding-bottom: 10px"><li>Brackets should be as large as the expression</li></ol>
+
||<ol type="a" start="2" style="padding-top: 10px; padding-bottom: 10px"><li>Klammern sollten so groß sein wie der Ausdruck</li></ol>
| align="center" valign="center" |<tt>(\dfrac{a}{b}+c)</tt>
| align="center" valign="center" |<tt>(\dfrac{a}{b}+c)</tt>
| align="center" valign="center" |<math>(\dfrac{a}{b}+c)</math>
| align="center" valign="center" |<math>(\dfrac{a}{b}+c)</math>
|-
|-
-
||<ol style="list-style-type: none; padding-top: 10px; padding-bottom: 10px; margin-top: 0px; margin-bottom: 0px"><li>'''Do''' write</li></ol>
+
||<ol style="list-style-type: none; padding-top: 10px; padding-bottom: 10px; margin-top: 0px; margin-bottom: 0px"><li>'''Schreibe''' </li></ol>
| align="center" valign="center" |<tt>\left(\dfrac{a}{b}+c\right)</tt>
| align="center" valign="center" |<tt>\left(\dfrac{a}{b}+c\right)</tt>
| align="center" valign="center" |<math>\left(\dfrac{a}{b}+c\right)</math>
| align="center" valign="center" |<math>\left(\dfrac{a}{b}+c\right)</math>
|-
|-
-
||<ol type="a" start="3" style="padding-top: 5px; padding-bottom: 5px"><li>Don't use parentheses to delimit arguments</li></ol>
+
||<ol type="a" start="3" style="padding-top: 5px; padding-bottom: 5px"><li>Verwende keine runden Klammern, um Argumente zu trennen</li></ol>
| align="center" valign="center" |<tt>\frac(1)(2)</tt>
| align="center" valign="center" |<tt>\frac(1)(2)</tt>
| align="center" valign="center" |<math>\tfrac(1)(2)</math>
| align="center" valign="center" |<math>\tfrac(1)(2)</math>
|-
|-
-
||<ol style="list-style-type: none; padding-top: 5px; padding-bottom: 5px; margin-top: 0px; margin-bottom: 0px"><li>'''Do''' write</li></ol>
+
||<ol style="list-style-type: none; padding-top: 5px; padding-bottom: 5px; margin-top: 0px; margin-bottom: 0px"><li>'''Schreibe''' </li></ol>
| align="center" valign="center" |<tt>\frac{1}{2}</tt>
| align="center" valign="center" |<tt>\frac{1}{2}</tt>
| align="center" valign="center" |<math>\tfrac{1}{2}</math>
| align="center" valign="center" |<math>\tfrac{1}{2}</math>
|-
|-
-
||<ol type="a" start="4" style="padding-top: 5px; padding-bottom: 5px"><li>Don't use parentheses to delimit arguments</li></ol>
+
||<ol type="a" start="4" style="padding-top: 5px; padding-bottom: 5px"><li>Verwende keine runden Klammern, um Argumente zu trennen</li></ol>
| align="center" valign="center" |<tt>\sqrt(a+b)</tt>
| align="center" valign="center" |<tt>\sqrt(a+b)</tt>
| align="center" valign="center" |<math>\sqrt(a+b)</math>
| align="center" valign="center" |<math>\sqrt(a+b)</math>
|-
|-
-
||<ol style="list-style-type: none; padding-top: 5px; padding-bottom: 5px; margin-top: 0px; margin-bottom: 0px"><li>Avoid redundant brackets</li></ol>
+
||<ol style="list-style-type: none; padding-top: 5px; padding-bottom: 5px; margin-top: 0px; margin-bottom: 0px"><li>Vermeide überflüssige Klammern</li></ol>
| align="center" valign="center" |<tt>\sqrt{(a+b)}</tt>
| align="center" valign="center" |<tt>\sqrt{(a+b)}</tt>
| align="center" valign="center" |<math>\sqrt{(a+b)}</math>
| align="center" valign="center" |<math>\sqrt{(a+b)}</math>
|-
|-
-
||<ol style="list-style-type: none; padding-top: 5px; padding-bottom: 5px"><li>'''Do''' write</li></ol>
+
||<ol style="list-style-type: none; padding-top: 5px; padding-bottom: 5px"><li>'''Schreibe''' </li></ol>
| align="center" valign="center" |<tt>\sqrt{a+b}</tt>
| align="center" valign="center" |<tt>\sqrt{a+b}</tt>
| align="center" valign="center" |<math>\sqrt{a+b}</math>
| align="center" valign="center" |<math>\sqrt{a+b}</math>
Zeile 440: Zeile 440:
</div>
</div>
-
====Fractions====
+
==== F - Brüche====
-
As a rule of thumb you should write fractions where the numerator and denominator consist only of a few digits as a small fraction (i.e. with <tt>\frac</tt>), while other fractions should be large (i.e. with <tt>\dfrac</tt>).
+
Als Faustregel solltest Du Brüche stets als "kleinen Bruch" (d.h. mit <tt>\frac</tt>) schreiben, wenn Zähler und Nenner nur aus wenigen Zahlen bestehen und sonst "große Brüche" (d.h. mit <tt>\dfrac</tt>).
-
If an exponent or index contains a fraction then that fraction should be written in a slashed form (e.g. <math>5/2</math> instead of <math>\tfrac{5}{2}</math>) to enhance the legibility.
+
Enthält ein Exponent oder Index einen Bruch, so sollte er zur besseren Lesbarkeit in einer Ebene geschrieben werden, also <math>5/2</math>, und nicht als <math>\tfrac{5}{2}</math>.
<div class="exempel">
<div class="exempel">
Zeile 454: Zeile 454:
| align="center" width="35%" |Result
| align="center" width="35%" |Result
|-
|-
-
||<ol type="a" style="padding-top: 5px; padding-bottom: 5px><li>Don't write numerical fractions large</li></ol>
+
||<ol type="a" style="padding-top: 5px; padding-bottom: 5px><li>Schreibe Brüche von Zahlen nicht groß</li></ol>
| align="center" valign="center" |<tt>\dfrac{1}{2}</tt>
| align="center" valign="center" |<tt>\dfrac{1}{2}</tt>
| align="center" valign="center" |<math>\dfrac{1}{2}</math>
| align="center" valign="center" |<math>\dfrac{1}{2}</math>
|-
|-
-
||<ol style="list-style-type: none; padding-top: 5px; padding-bottom: 5px; margin-top: 0px; margin-bottom: 0px"><li>'''Do''' write</li></ol>
+
||<ol style="list-style-type: none; padding-top: 5px; padding-bottom: 5px; margin-top: 0px; margin-bottom: 0px"><li>'''Schreibe''' </li></ol>
| align="center" valign="center" |<tt>\frac{1}{2}</tt>
| align="center" valign="center" |<tt>\frac{1}{2}</tt>
| align="center" valign="center" |<math>\tfrac{1}{2}</math>
| align="center" valign="center" |<math>\tfrac{1}{2}</math>
|-
|-
-
| colspan="3"|<ol style="list-style-type: none; padding-top: 10px; padding-bottom: 0px; margin-top: 0px; margin-bottom: 0px"><li>(Exception: If the fraction is next to a large expression you should, however, write the fraction as a large fraction.)</li></ol>
+
| colspan="3"|<ol style="list-style-type: none; padding-top: 10px; padding-bottom: 0px; margin-top: 0px; margin-bottom: 0px"><li>(Ausnahme: Wenn der Bruch neben einem großen steht, sollte dieser selbst auch groß sein.)</li></ol>
|-
|-
-
||<ol type="a" start="2" style="padding-top: 5px; padding-bottom: 5px><li>Don't write symbolic fractions small</li></ol>
+
||<ol type="a" start="2" style="padding-top: 5px; padding-bottom: 5px><li>Schreibe Brüche mit Symbolen nicht klein</li></ol>
| align="center" valign="center" |<tt>\frac{a}{b}</tt>
| align="center" valign="center" |<tt>\frac{a}{b}</tt>
| align="center" valign="center" |<math>\tfrac{a}{b}</math>
| align="center" valign="center" |<math>\tfrac{a}{b}</math>
|-
|-
-
||<ol style="list-style-type: none; padding-top: 10px; padding-bottom: 10px; margin-top: 0px; margin-bottom: 0px"><li>'''Do''' write</li></ol>
+
||<ol style="list-style-type: none; padding-top: 10px; padding-bottom: 10px; margin-top: 0px; margin-bottom: 0px"><li>'''Schreibe''' </li></ol>
| align="center" valign="center" |<tt>\dfrac{a}{b}</tt>
| align="center" valign="center" |<tt>\dfrac{a}{b}</tt>
| align="center" valign="center" |<math>\dfrac{a}{b}</math>
| align="center" valign="center" |<math>\dfrac{a}{b}</math>
|-
|-
-
||<ol type="a" start="3" style="padding-top: 5px; padding-bottom: 5px><li>Don't write complicated fractions small</li></ol>
+
||<ol type="a" start="3" style="padding-top: 5px; padding-bottom: 5px><li>Schreibe komplizierte Brüche nicht klein</li></ol>
| align="center" valign="center" |<tt>\frac{\sqrt{3}}{2}</tt>
| align="center" valign="center" |<tt>\frac{\sqrt{3}}{2}</tt>
| align="center" valign="center" |<math>\tfrac{\sqrt{3}}{2}</math>
| align="center" valign="center" |<math>\tfrac{\sqrt{3}}{2}</math>
|-
|-
-
||<ol style="list-style-type: none; padding-top: 10px; padding-bottom: 10px; margin-top: 0px; margin-bottom: 0px"><li>'''Do''' write</li></ol>
+
||<ol style="list-style-type: none; padding-top: 10px; padding-bottom: 10px; margin-top: 0px; margin-bottom: 0px"><li>'''Schreibe''' </li></ol>
| align="center" valign="center" |<tt>\dfrac{\sqrt{3}}{2}</tt>
| align="center" valign="center" |<tt>\dfrac{\sqrt{3}}{2}</tt>
| align="center" valign="center" |<math>\dfrac{\sqrt{3}}{2}</math>
| align="center" valign="center" |<math>\dfrac{\sqrt{3}}{2}</math>
|-
|-
-
||<ol type="a" start="4" style="padding-top: 5px; padding-bottom: 5px"><li>No stacked fractions in exponents</li></ol>
+
||<ol type="a" start="4" style="padding-top: 5px; padding-bottom: 5px"><li>Keine senkrechten Brüche in Exponenten</li></ol>
| align="center" valign="center" |<tt>a^{\frac{1}{2}}</tt>
| align="center" valign="center" |<tt>a^{\frac{1}{2}}</tt>
| align="center" valign="center" |<math>a^{\frac{1}{2}}</math>
| align="center" valign="center" |<math>a^{\frac{1}{2}}</math>
|-
|-
-
||<ol style="list-style-type: none; padding-top: 0px; padding-bottom: 0px"><li>'''Do''' write</li></ol>
+
||<ol style="list-style-type: none; padding-top: 0px; padding-bottom: 0px"><li>'''Schreibe''' </li></ol>
| align="center" valign="center" |<tt>a^{1/2}</tt>
| align="center" valign="center" |<tt>a^{1/2}</tt>
| align="center" valign="center" |<math>a^{1/2}</math>
| align="center" valign="center" |<math>a^{1/2}</math>
|}
|}
</div>
</div>
 +
<br><br>
 +
 +
Noch Fragen zu diesem Kapitel? Dann schau nach im Kursforum (Du findest den Link in der Student Lounge) oder frag nach per Skype bei ombTutor <skype style="call" action="call">ombTutor</skype> <skype style="chat" action="chat">ombTutor</skype>
 +
 +
Keine Fragen mehr? Dann mache weiter mit den '''[[5.1 Übungen|Übungen]]''' .
Zeile 494: Zeile 499:
'''Tipps fürs Lernen'''
'''Tipps fürs Lernen'''
-
A tip is to try out your maths formulas in the forum or in the wiki where you work on your individual assignment.
+
Ein Tipp ist, Deine Formeln im Forum oder im Wiki auszuprobieren, wo Du Deine Hausaufgabe machen wirst.
'''Nützliche Websites'''
'''Nützliche Websites'''
-
*A more thorough list of LaTeX maths commands can be found on Wikipedia's [http://en.wikipedia.org/wiki/Help:Displaying_a_formula help page]
+
*Eine umfassendere Liste mathematischer Befehle in LaTeX findest Du auf Wikipedia unter [http://en.wikipedia.org/wiki/Help:Displaying_a_formula help page]
-
*Two more thorough texts on LaTeX maths can be found in [http://www.cism.it/cism/volconts/ch8.pdf a chapter] of the book ''The LaTeX Companion'' and a [http://www.tex.ac.uk/tex-archive/info/math/voss/mathmode/Mathmode.pdf text] by Herbert Voss.
+
*Einen umfassenderen Text über Mathematik in LaTeX findest du unter [http://www.tex.ac.uk/tex-archive/info/math/voss/mathmode/Mathmode.pdf math mode].
-
*If you want to know more about LaTeX you can visit these sites: [http://en.wikipedia.org/wiki/LaTeX Wikipedia], [http://www.ctan.org/tex-archive/info/lshort/english/lshort.pdf The not so Short Introduction to LaTeX] and [http://en.wikibooks.org/wiki/LaTeX LaTeX Wikibook].
+
*Wenn Du mehr über LaTeX wissen möchtest, schaue hier [http://en.wikipedia.org/wiki/LaTeX Wikipedia], [http://www.ctan.org/tex-archive/info/lshort/english/lshort.pdf The not so Short Introduction to LaTeX] and [http://en.wikibooks.org/wiki/LaTeX LaTeX Wikibook].
-
*The actual implementation of LaTeX math that is used in the wiki is [http://www.math.union.edu/~dpvc/jsMath/ jsMath].
+
*Die in diesem Wiki verwendete Implementierung von LaTeX ist [http://www.math.union.edu/~dpvc/jsMath/ jsMath].
</div>
</div>

Aktuelle Version

       Theorie          Übungen      

Inhalt:

  • Mathematische Ausdrücke in LaTeX

Lernziele

Nach diesem Abschnitt solltest du folgendes können:

  • Einfache Formeln in LaTeX schreiben.
  • Häufige Fehler vermeiden, die beim Erstellen von Dokumenten mit LaTeX auftreten.

Um Mathematik effizient auf einem Computer in Ihrer persönlichen Hausaufgabe und der Gruppenaufgabe zu schreiben, wirst du den mathematischen Text in Form eines Syntax schreiben, der LaTeX genannt wird. In diesem Abschnitt lernst du den grundlegenden LaTeX-Code, um einfache mathematische Formeln schreiben zu können.


A - Einfache Ausdrücke schreiben

Um mathematische Formatierungen zu beginnen, verwendest du das Tag <math> und zum Beenden </math>. Wenn du z.B. die Formel \displaystyle a+b in einer Textumgebung eingeben möchtest, schreibst du <math>a+b</math>.

Einfache mathematische Formeln schreiben sich "straightforward".

Beispiel 1

  1. \displaystyle 1+2-3\quad wird geschrieben als <math>1+2-3</math>
  2. \displaystyle 5/2\quad wird geschrieben als <math>5/2</math>
  3. \displaystyle 4/(2+x)\quad wird geschrieben als <math>4/(2+x)</math>
  4. \displaystyle 4 < 5\quad wird geschrieben als <math>4 < 5</math>

Benötigst du Symbole, die nicht auf der Tastatur verfügbar sind oder Formeln, die nicht so einfach zu schreiben sind, verwendest du hierzu spezielle Befehle. Diese beginnen mit einem Backslash (d.h. \). Zum Beispiel ist \le der Befehl, welcher \displaystyle \le erzeugt.

Die folgende Tabelle zeigt dir einige der am häufigsten verwendeten Befehle in LaTeX

Example LaTeX-code Comment
Grundrechenarten a+b a+b
a-b a-b
a\pm b a\pm b
a\cdot b a\cdot b
a/b a/b
\frac{1}{2} \frac{1}{2} Kleiner Bruch
\displaystyle\frac{a}{b} \displaystyle\frac{a}{b} Großer Bruch
(a) (a) Skalierende Klammern: \left(...\right)
Vergleichssymbole a=b a=b
a\ne b a\ne b Alternativ: a\not= b
a< b a< b Bem.: Leerzeichen nach "<"
a\le b a\le b
a> b a>b
a\ge b a\ge b
Potenzen und Wurzeln x^{n} x^{n}
\sqrt{x} \sqrt{x}
\sqrt[n]{x} \sqrt[n]{x} Schreibe \sqrt[\scriptstyle n]{x} für größeres n
Indizes x_n x_{n}
Logarithmen \lg x \lg x
\ln x \ln x
\log x \log x
\log_{a} x \log_{a} x
Trigonometrie 30^{\circ} 30^{\circ}
\cos x \cos x
\sin x \sin x
\tan x \tan x
\cot x \cot x
Pfeile \Rightarrow \Rightarrow impliziert
\Leftarrow \Leftarrow wird impliziert von
\Leftrightarrow \Leftrightarrow ist äquivalent
Verschiedene Symbole \pi \pi
\alpha, \beta, \theta, \varphi \alpha, \beta, \theta, \varphi


Beispiel 2

  1. \displaystyle 1\pm3\cdot 5\quad wird geschrieben als <math>1\pm 3\cdot 5</math>
  2. \displaystyle \tfrac{1}{2}y\ne x\le z\quad wird geschrieben als <math>\frac{1}{2}y\ne x\le z</math>
  3. \displaystyle 2^{13}\sqrt{3}+\ln y\quad wird geschrieben als <math>2^{13}\sqrt{3}+\ln y</math>
  4. \displaystyle \tan 30^{\circ}\quad wird geschrieben als <math>\tan 30^{\circ}</math>


B - Kompliziertere Ausdrücke

Kompliziertere Ausdrücke entstehen durch das Kombinieren einfacher.

Beispiel 3

  1. \displaystyle \sqrt{x+2}\quad wird geschrieben als <math>\sqrt{x+2}</math>
  2. \displaystyle (a^2)^3=a^6\quad wird geschrieben als <math>(a^2)^3=a^6</math>
  3. \displaystyle 2^{(2^2)}\quad wird geschrieben als <math>2^{(2^2)}</math>
  4. \displaystyle \sin\sqrt{x}\quad wird geschrieben als <math>\sin\sqrt{x}</math>

Beispiel 4

  1. \displaystyle \sqrt{x+\sqrt{x}}\quad wird geschrieben als <math>\sqrt{x+\sqrt{x}}</math>
  2. \displaystyle \dfrac{x-x^2}{\sqrt{3}}\quad wird geschrieben als <math>\dfrac{x-x^2}{\sqrt{3}}</math>
  3. \displaystyle \dfrac{x}{x+\dfrac{1}{x}}\quad wird geschrieben als <math>\dfrac{x}{x+\dfrac{1}{x}}</math>
  4. \displaystyle x_{1,2}=-\dfrac{p}{2}\pm\sqrt{\left(\dfrac{p}{2}\right)^2-q}\quad wird geschrieben als <math>x_{1,2}=-\dfrac{p}{2}\pm\sqrt{\left(\dfrac{p}{2}\right)^2-q}</math>


C - Vermeide häufige Fehler

Einer der häufigsten Fehler beim Editieren mathematischer Ausdrücke ist, die Markierungen <math> zu Beginn und </math> am Ende.

Vergiss nicht, dass Befehle mit einem Backslash (\) beginnen und füge hinter den Befehlen ein Leerzeichen ein, solange sie nicht von einem neuen Befehl gefolgt werden.

Ein weiterer häufiger Fehler ist es, anstatt des korrekten Symbols für die Multiplikation \displaystyle \cdot (\cdot in TeX) einen Stern (*) zu verwenden.

Beispiel 5

LaTeX Result
  1. Vergiss den Backslash nicht (\)
sin x \displaystyle sin x
  1. Füge nach dem Befehl ein Leerzeichen ein
\sinx Error
  1. Schreibe
\sin x \displaystyle \sin x
  1. Verwende keinen Stern als Multiplikationszeichen
4*3 \displaystyle 4*3
  1. Schreibe
4\cdot 3 \displaystyle 4\cdot 3
  1. Ein Multiplikationszeichen zwischen Buchstaben wird normalerweise weggelassen
a\cdot b \displaystyle a\cdot b
  1. Schreibe
ab \displaystyle ab

D - Hoch- und Tiefstellen

Für Hochstellungen wie bei Potenzen, verwendet man ^. Für Tiefstellungen _. Besteht das hoch- bzw. tiefzustellende Symbol aus mehr als einem Zeichen, muss es in Klammern stehen {}.

Ein spezielles, hochgestelltes Symbol ist jenes für Grad (°), welches als ^{\circ} geschrieben wird.

Beispiel 6

LaTeX Result
  1. Vergiss nicht ^
a2 \displaystyle a2
  1. Schreibe
a^2 \displaystyle a^2
  1. Vergiss nicht _
x1 \displaystyle x1
  1. Schreibe
x_1 \displaystyle x_1
  1. Achte auf Klammern
a^22 \displaystyle a^22
  1. Schreibe
a^{22} \displaystyle a^{22}
  1. Verwende "o" nicht als Symbol für Grad
30^{o} \displaystyle 30^{o}
  1. Verwende "0" nicht als Symbol für Grad
30^{0} \displaystyle 30^{0}
  1. Schreibe
30^{\circ} \displaystyle 30^{\circ}

E - Trennungssymbole

Bei komplexeren Ausdrücken mußt Du Dich vergewissern, die richtige Anzahl von Klammern zu setzen, d.h. stets paarweise ( und ).

Ein Klammerpaar, welches einen hohen Ausdruck umgibt, sollte so hoch sein wie dieser. Deshalb solltest Du stets den Ausdruck \left dem Klammerbefehl vorausstellen, genauso \right beim Schließen der Klammer, denn dieser Befehl passt die Höhe der Klammern gerade an.

Beachte, dass geschweifte Klammern im Gegensatz zu runden dafuer verwendet werden, um Argumente in Funktionen zu trennen, z.B. bei Befehlen wie \sqrt und \frac.

Beispiel 7

LaTeX Result
  1. Verwende die richtige Anzahl KLammern.
(1-(1-x) \displaystyle (1-(1-x)
  1. Schreibe
(1-(1-x)) \displaystyle (1-(1-x))
  1. Klammern sollten so groß sein wie der Ausdruck
(\dfrac{a}{b}+c) \displaystyle (\dfrac{a}{b}+c)
  1. Schreibe
\left(\dfrac{a}{b}+c\right) \displaystyle \left(\dfrac{a}{b}+c\right)
  1. Verwende keine runden Klammern, um Argumente zu trennen
\frac(1)(2) \displaystyle \tfrac(1)(2)
  1. Schreibe
\frac{1}{2} \displaystyle \tfrac{1}{2}
  1. Verwende keine runden Klammern, um Argumente zu trennen
\sqrt(a+b) \displaystyle \sqrt(a+b)
  1. Vermeide überflüssige Klammern
\sqrt{(a+b)} \displaystyle \sqrt{(a+b)}
  1. Schreibe
\sqrt{a+b} \displaystyle \sqrt{a+b}

F - Brüche

Als Faustregel solltest Du Brüche stets als "kleinen Bruch" (d.h. mit \frac) schreiben, wenn Zähler und Nenner nur aus wenigen Zahlen bestehen und sonst "große Brüche" (d.h. mit \dfrac).

Enthält ein Exponent oder Index einen Bruch, so sollte er zur besseren Lesbarkeit in einer Ebene geschrieben werden, also \displaystyle 5/2, und nicht als \displaystyle \tfrac{5}{2}.

Beispiel 8

LaTeX Result
  1. Schreibe Brüche von Zahlen nicht groß
\dfrac{1}{2} \displaystyle \dfrac{1}{2}
  1. Schreibe
\frac{1}{2} \displaystyle \tfrac{1}{2}
  1. (Ausnahme: Wenn der Bruch neben einem großen steht, sollte dieser selbst auch groß sein.)
  1. Schreibe Brüche mit Symbolen nicht klein
\frac{a}{b} \displaystyle \tfrac{a}{b}
  1. Schreibe
\dfrac{a}{b} \displaystyle \dfrac{a}{b}
  1. Schreibe komplizierte Brüche nicht klein
\frac{\sqrt{3}}{2} \displaystyle \tfrac{\sqrt{3}}{2}
  1. Schreibe
\dfrac{\sqrt{3}}{2} \displaystyle \dfrac{\sqrt{3}}{2}
  1. Keine senkrechten Brüche in Exponenten
a^{\frac{1}{2}} \displaystyle a^{\frac{1}{2}}
  1. Schreibe
a^{1/2} \displaystyle a^{1/2}



Noch Fragen zu diesem Kapitel? Dann schau nach im Kursforum (Du findest den Link in der Student Lounge) oder frag nach per Skype bei ombTutor My status My status

Keine Fragen mehr? Dann mache weiter mit den Übungen .


Tipps fürs Lernen

Ein Tipp ist, Deine Formeln im Forum oder im Wiki auszuprobieren, wo Du Deine Hausaufgabe machen wirst.


Nützliche Websites

  • Eine umfassendere Liste mathematischer Befehle in LaTeX findest Du auf Wikipedia unter help page
  • Einen umfassenderen Text über Mathematik in LaTeX findest du unter math mode.
  • Die in diesem Wiki verwendete Implementierung von LaTeX ist jsMath.