MathML/Element/mtable
Aus SELFHTML-Wiki
Das mtable-Element wird verwendet, um Matrizen, Arrays und andere tabellenartige mathematische Notationen zu erstellen. Kinder sind <mtr>-Elemente (die Zeilen darstellen), von denen jedes eines oder mehrere <mtd>-Elemente als Kinder hat (das Zellen darstellt).
Diese Elemente ähneln den <table>, <tr> und <td> Elementen von HTML.
- Syntax
-
<mtable><mtr><mtd> … </mtd></mtr></mtable>
Beispiel
<mrow>
<mo>(</mo>
<mtable>
<mtr>
<mtd><mn>0</mn></mtd>
<mtd><mo>-</mo><mn>i</mn></mtd>
</mtr>
<mtr>
<mtd><mn>i</mn></mtd>
<mtd><mn>0</mn></mtd>
</mtr>
</mtable>
<mo>)</mo>
</mrow>
Siehe auch
- MathML/Einsteiger-Tutorial
- Matrizen und Tabellen
Weblinks
- W3C (Spec): 3.5 Tabular Math
- MDN: mtable