Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要使用 Freeplane 中的 HTML 将表达式 e 写入 -x 方块。你能告诉我怎么做吗?当我尝试像这样使用一个又一个标签时: f(x)=e -x 2 并点击 OK,程序会自动将我的代码转换为 f(x)=e -x2。
您可以使用sup标签和CSS中的span标签来做到这一点。
sup span { vertical-align: super; font-size: .8em; }
<p>f(x)=e<sup>-x<span>2</span></sup></p>