|
Author |
abababa
Posted at 2023-3-27 18:24:31
这个在我这里运行,出现以下问题:
shipout3(prefix,f,preview ? nativeformat() : format,
我的my.tex文件如下:
- \documentclass[12pt]{article}
- \usepackage{amsmath,bm,yhmath,amssymb,etoolbox,esvect,stmaryrd,cite,enumitem,extarrows,mathtools,ifthen}
- \usepackage[amsmath, thmmarks]{ntheorem}
- {
- \theoremstyle{nonumberplain}
- \theoremheaderfont{\indent\bfseries}
- \theorembodyfont{\normalfont}
- \theoremsymbol{\ensuremath{\Box}}
- \newtheorem{proof}{证明}
- }
- \usepackage[inline]{asymptote}
- \begin{document}
- \begin{asy}
- import three;unitsize(1cm);
- triple A1 = (1,sqrt(1/3),sqrt(8/3)), A2 = (0,0,0), A3 = (2,0,0), A4 = (1,sqrt(3),0);
- draw(A1--A2--A3--A4--cycle);
- \end{asy}
- \end{document}
Copy the Code
编译是用xelatex my.tex,然后asy *.asy(这时就出问题了),最后再xelatex my.tex |
|