指数・対数
公開: 更新:
概要
log,expの表示
利用方法
<log/> <exp/>
サンプル
<exp/>At = <Sigma><sub>n=0</sub><sup>∞</sup></Sigma><inv>n<factorial/></inv>A<sup>n</sup>t<sup>n</sup>,
<log/>z = <log/><abs>z</abs> + i<arg/>z
expAt =
A
nt
n,
logz =
log|z
| + i
argz
XSL template
<xsl:template match="ufcpp:log">
<span class="normal">log</span>
</xsl:template>
<xsl:template match="ufcpp:exp">
<span class="normal">exp</span>
</xsl:template>
style sheet
span.normal
{
font-weight:normal;
font-style:normal;
}