2024-06-05 09:20:12 +08:00

20 lines
720 B
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<div>
<h1>如何编辑数学公式</h1>
<p>数学公式只在开启了富文本编辑模式下才可使用</p>
<p>首先可以激活节点然后点击上方工具栏中的公式打开右侧的格式侧边栏然后再输入框中输入公式后点击完成即可将公式输入节点</p>
<p>当你再次双击节点时公式会转换成源码你可以直接修改回车完成后即可渲染</p>
<p>所以你也可以不通过侧边栏直接在文本编辑框中输入公式不过公式的源码前后必须通过<code>$</code>符号包裹否则不会解析为格式</p>
</div>
</template>
<script>
export default {
}
</script>
<style>
</style>