MathTypeでのTEX出力モードの違い

Texにも方言があるようで、MatyType 6.9にて同一の式を異なるTex仕様で出力してみた。
出力したい数式は以下のもの(画像で表示しています)。
dotp

試したモードと結果は以下の表の通り。

モード 出力文字列
AMSLatex \[A \cdot B = {}^t{\text{AB}}\]
AMSTex $$A \cdot B = {}^t{\text{AB}}$$
Latex 2.09 and Later \[A \cdot B = {}^t{\rm{AB}}\]
Plain Tex $$A \cdot B = {}^t{\rm{AB}}$$
Texvc(LaTex delimiters) \[A\cdot B={}^{t}\text{AB}\]

 

上記の文字列に対してWordpressで「WP QuickLaTeX」プラグインを使用した場合の出力は以下の通り。

[latex]
[A \cdot B = {}^t{\text{AB}}]
$$A \cdot B = {}^t{\text{AB}}$$
[A \cdot B = {}^t{\rm{AB}}]
$$A \cdot B = {}^t{\rm{AB}}$$
[A\cdot B={}^{t}\text{AB}]
[/latex]

コメント