MathJax Cheatsheet: Unterschied zwischen den Versionen

Aus MattWiki
Keine Bearbeitungszusammenfassung
Keine Bearbeitungszusammenfassung
Zeile 2: Zeile 2:


When using inside Obsidian.md the code representing the MathJax formular needs start and end with the dollar sign, i.e.: <code>$a_1..a_n$</code>
When using inside Obsidian.md the code representing the MathJax formular needs start and end with the dollar sign, i.e.: <code>$a_1..a_n$</code>
{| class="wikitable"
 
|+
=== Lower printed Number of a Variable ===
!Function
a_1..a_n
!Example
<math>a_1..a_n</math>
!Code
 
|-
=== Exponent ===
|Lower
a^2 + b^2 = c^2
|<math>a_1..a_n</math>
<math>a^2 + b^2 = c^2</math>
|a_1..a_n
 
|-
=== Matrix ===
|Exponent
\begin{pmatrix}
|<math>a^2 + b^2 = c^2</math>
  & ​Bob & Alice \\\  
|a^2 + b^2 = c^2
Bob & 0 & 1 \\\  
|-
​Alice & 1 & 0   
|Matrix
\end{pmatrix}
|
<math>\begin{pmatrix}
|\begin{pmatrix} & ​Bob & Alice \\\ Bob & 0 & 1 \\\ ​Alice & 1 & 0  \end{pmatrix}
& Bob & Alice \\
|}
Bob & 0 & 1 \\
Alice & 1 & 0
\end{pmatrix}</math>

Version vom 8. Februar 2025, 19:56 Uhr

This is a cheat sheet on which code leads to which output.

When using inside Obsidian.md the code representing the MathJax formular needs start and end with the dollar sign, i.e.: $a_1..a_n$

Lower printed Number of a Variable

a_1..a_n

a1..an

Exponent

a^2 + b^2 = c^2

a2+b2=c2

Matrix

\begin{pmatrix}
 & ​Bob & Alice \\\ 
Bob & 0 & 1 \\\ 
​Alice & 1 & 0  
\end{pmatrix}

(BobAliceBob01Alice10)