【发布时间】:2018-05-29 18:25:25
【问题描述】:
我需要在 Freeplane 中使用 HTML 将表达式 e 写入 -x 方块。你能告诉我怎么做吗? 当我尝试像这样一个接一个地使用标签时: f(x)=e-x2 然后点击确定,程序会自动将我的代码转换为 f(x)=e-x2.
【问题讨论】:
标签: html mindmapping
我需要在 Freeplane 中使用 HTML 将表达式 e 写入 -x 方块。你能告诉我怎么做吗? 当我尝试像这样一个接一个地使用标签时: f(x)=e-x2 然后点击确定,程序会自动将我的代码转换为 f(x)=e-x2.
【问题讨论】:
标签: html mindmapping
您可以在 sup 标记和 CSS 中使用 span 标记。
sup span {
vertical-align: super;
font-size: .8em;
}
<p>f(x)=e<sup>-x<span>2</span></sup></p>
【讨论】:
sup 放在sup 中,然后将样式选择器更改为sup sup { }?
f(x)=e-x2