我遇到了使用 MathJax 和 latex2html5 绘制圆弧的问题(来自http://latex2html5.com/)。
我想用上面这两个库绘制这个模式:
不幸的是,我无法重现这个模式:你可以在这个[链接][2]上查看。
我的问题是我无法绘制左侧连接EV
和DE
状态的 2 个圆弧。
在上面的链接中,我做了:
<script type="tex/latex">
\begin{center}
\begin{pspicture}(-4,-4)(4,4)
\pscircle(-3.3,2.5){0.4}
\pscircle(-3.3,-2.5){0.4}
\pscircle(3.3,-2.5){0.4}
\pscircle(3.3,2.5){0.4}
\psline{->}(-2.9,2.5)(2.9,2.5)
\rput(0,2.8){00}
\psline{->}(3.3,2.1)(3.3,-2.1)
\rput(3.6,0){00}
\psline{->}(2.9,-2.5)(-2.9,-2.5)
\rput(0,-2.8){01,11}
\psarc[fillcolor=white]{->}(-3.7,0){2}{-90}{90}
\end{pspicture}
\end{center}
</script>
<script type="text/javascript">
$('body').latex();
</script>
以下行:
\psarc[fillcolor=white]{->}(-3.7,0){2}{-90}{90}
涉及这部分,但结果并不好:首先,填充颜色是蓝色,之后角度的间隔也不好(我希望两个圆弧是垂直的)。
如果有人能帮助我,那就太好了。
谢谢