HTML5中的MathML <mmultiscripts>標記用於創建多維矩陣。程度取決於代表性數組的條件。一個數字/數字是一個0維數組。一階張量和二階張量作為鄉紳矩陣將表示一維數組。
用法:
<mmultiscripts> child elements </mmultiscripts>
屬性:該標簽接受以下提到的屬性:
- class|id|style:此屬性保存子元素的樣式。
- href:此屬性保存指向指定URL的所有超鏈接。
- mathbackground:此屬性保存數學表達式背景色的值。
- mathcolor:此屬性保存數學表達式的顏色。
- subscriptshift:此屬性定義將下標移動到表達式基線以下的最小空間。
- superscriptshift:此屬性定義將下標移動到表達式基線上方的最小空間
以下示例說明了HTML5 MathML <mmultiscripts>標記的概念:
例:
<!DOCTYPE html>
<html>
<head>
<title>HTML5 MathML mmultiscripts tag</title>
</head>
<body>
<center>
<h1 style="color:green">GeeksforGeeks</h1>
<h3>HTML5 MathML <mmultiscripts> Tag</h3>
<math>
<mmultiscripts>
<!-- base expression -->
<mi>for</mi>
<!-- postsubscript -->
<none />
<!-- postsuperscript -->
<mi>Geeks</mi>
<mprescripts />
<!-- presubscript -->
<mi>Geeks</mi>
<!-- presuperscript -->
<none />
</mmultiscripts>
</math>
</center>
</body>
</html>
輸出:
支持的瀏覽器:下麵列出了HTML5 MathML <mmultiscripts>標記支持的瀏覽器:
- Firefox
相關用法
- HTML5 MathML <mo>標記用法及代碼示例
- HTML5 MathML <mtr>標記用法及代碼示例
- HTML5 MathML <mth>標記用法及代碼示例
- HTML5 MathML <mtd>標記用法及代碼示例
- HTML5 MathML <ms>標記用法及代碼示例
- HTML5 MathML <mi>標記用法及代碼示例
- HTML5 MathML <mn>標記用法及代碼示例
- HTML5 MathML <mglyph>標記用法及代碼示例
- HTML5 MathML <merror>標記用法及代碼示例
- HTML5 MathML <mover>標記用法及代碼示例
- HTML5 MathML <msqrt>標記用法及代碼示例
- HTML5 MathML <mfrac>標記用法及代碼示例
- HTML5 MathML <msubsup>標記用法及代碼示例
- HTML5 MathML <math>標記用法及代碼示例
- HTML5 MathML <mroot>標記用法及代碼示例
注:本文由純淨天空篩選整理自skyridetim大神的英文原創作品 HTML5 | MathML <mmultiscripts> Tag。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。