尝试在 svg 中使用 mathjax

尝试在 svg 中使用 mathjax

我正在尝试在我的网页中制作 svg 图形。我想使用 mathjax 在其中写入 LaTeX 公式,但它不起作用。这是我的代码,虽然我认为这不是问题所在。有人能帮助我吗?非常感谢!

<svg height="250" width="450" > 
    <line x1="0" y1="200" x2="450" y2="200" style="stroke:rgb(0,0,0);stroke-width:2" ></line>
    <line x1="230" y1="200" x2="230" y2="0" style="stroke:rgb(0,0,0);stroke-width:1" />
    <path d="M 313 200 A 283 283 0 0 0  230 0 l -200 200 m 100 -100" fill="none" stroke="black" stroke-width="1"/>
    <text x="10" y="30" style="fill:blue;font-size:10px">$\sqrt{2}$</text>
</svg>

相关内容