
AH Formatter /
XSL Formatter
操作方法グラフィクス |
|
| Q. | MathMLのデータを直接 XSL-FO に記述したのですが、表示されません。なぜですか。 [No.2003011702] |
|---|---|
| A. |
MathMLに限らず直接 XSL-FO に記述できるイメージタイプがいくつかあります。
直接記述する際は、イメージデータを記述する前に、fo:instream-foreign-object を使用する必要があります。
<fo:block>
<fo:instream-foreign-object content-type="application/mathml+xml">
<m:math xmlns:m="http://www.w3.org/1998/Math/MathML">
.
. (MathML データ)
.
</m:math>
</fo:instream-foreign-object>
</fo:block>
|