Table of Contents

Enum OdfMathTokenKind

Namespace
OdfKit.Formula
Assembly
OdfKit.dll

Represents MathML token kinds that can be written by the high-level formula API. 表示可由高階公式 API 寫入的 MathML token 類型。

public enum OdfMathTokenKind

Fields

Apply = 15

A basic Content MathML apply semantic token whose operator name is stored in Text and operands are stored in Children. Content MathML apply 語意標記(基礎支援):Text 為運算子名稱 (例如 plustimeseq),運算元依序存放於 Children

Fenced = 13

A fenced group serialized as mrow with leading and trailing mo delimiters instead of deprecated mfenced. 以括號包圍的群組(序列化為 mrow 搭配前後 mo 分隔符號,取代已棄用的 mfenced)。

Fraction = 6

A MathML mfrac fraction, where Base is the numerator and Script is the denominator. MathML mfrac 分數,Base 為分子、Script 為分母。

Identifier = 0

A MathML mi identifier. MathML mi 識別名稱。

Matrix = 9

A MathML mtable matrix or table whose rows are Row tokens stored in Children. MathML mtable 矩陣/表格,每一列為 Children 中的一個 Row token。

Number = 1

A MathML mn number. MathML mn 數值。

Operator = 2

A MathML mo operator. MathML mo 運算子。

Over = 11

A MathML mover token, where Base is the base and Script is the overscript. MathML mover 上方標記,Base 為底數、Script 為上方標記。

Radical = 7

A MathML msqrt or mroot radical, where Base is the radicand and Script is the optional index. MathML msqrt(無索引)或 mroot(具索引)根號, Base 為被開方數、Script 為選用的根指數。

Row = 8

A MathML mrow group row whose children are stored in Children. MathML mrow 群組列,子專案存放於 Children

Style = 14

A MathML mstyle style group whose content is stored in Base. MathML mstyle 樣式群組,Base 為內容。

Subscript = 5

A MathML msub subscript token. MathML msub 下標。

Superscript = 4

A MathML msup superscript token. MathML msup 上標。

Text = 3

A MathML mtext text token. MathML mtext 文字。

Under = 10

A MathML munder token, where Base is the base and Script is the underscript. MathML munder 下方標記,Base 為底數、Script 為下方標記。

UnderOver = 12

A MathML munderover token whose children are stored in base, under, over order. MathML munderover 上下方標記,依序存放於 Children(底數、下方、上方)。