渐近线图未出现在 TexPad(Texifier)中

渐近线图未出现在 TexPad(Texifier)中

需要澄清的是,我使用最新版本的 MacTex 作为编译器,而不是内置的 Texifier。

最近,当我尝试让 Asymptote 在 LaTeX 中工作时,我遇到了一些问题。文件编译得非常好:没有错误消息,没有警告消息,什么都没有。但问题是:实际上没有显示渐近线图。我不知道这是怎么发生的,也不知道为什么会发生这种情况。

梅威瑟:

\documentclass{article}
\usepackage[pdftex]{graphicx}
\usepackage{asymptote}
\begin{document}
Hello.  
I like to make pics with Asymptote like this one:
\begin{figure}[h]
  \begin{asy}
    import graph;
    size(1inch);
    filldraw(circle((0,0),1),yellow,black);
    fill(circle((-.3,.4),.1),black);
    fill(circle((.3,.4),.1),black);
    draw(arc((0,0),.5,-140,-40));
  \end{asy}
\end{figure}
\par It makes me happy, 
since I can still type my normal LaTeX stuff around it: 
\(\int_0^{\pi}{\sin{x}}\,dx=2\)
\end{document}

相关内容