0

我需要使用 Freeplane 中的 HTML 将表达式 e 写入 -x 方块。你能告诉我怎么做吗?当我尝试像这样使用一个又一个标签时: f(x)=e -x 2 并点击 OK,程序会自动将我的代码转换为 f(x)=e -x2

4

1 回答 1

-1

您可以使用sup标签和CSS中的span标签来做到这一点。

sup span {
vertical-align: super;
font-size: .8em;
}
<p>f(x)=e<sup>-x<span>2</span></sup></p>

于 2018-05-29T18:38:05.770 回答