
Asymptote로 컴파일하려고 할 때 이런 이상한 오류가 계속 발생합니다. pdflatex로 컴파일한 다음 점근선, pdflatex로 컴파일합니다. 오류는 제목에 명시된 대로입니다. 예를 들어, 빌드할 때 latexusage.tex
(예제 점근선 파일) on line 91
file 'latexusage-2.tex' not found
. 생성된 PDF에는 첫 번째와 마지막 그림이 표시되지만 3D 큐브가 누락되었습니다. 내가 놓친 아이디어가 있습니까?
설치하려면 다음 지침을 사용했습니다.이 링크Speravir에 의해.
-2.tex
두 번째 이미지의 tex 파일인 것으로 보입니다 . 및 파일 -2.asy
이 -2.out
생성되고 파일이 아닌 폴더에 생성됩니다 -2.tex
.
편집: MWE를 만들려고 시도한 후 이 코드에 오류가 발생합니다 C:\Program Files (x86)\Asymptote/three_surface.asy: 906.10: null surface
(레이블 줄을 삭제해도 오류는 없습니다).
\documentclass[12pt]{article}
\usepackage{asymptote}
\begin{document}
\begin{asydef}
import three;
usepackage("bm");
texpreamble("\def\V#1{\bm{#1}}");
\end{asydef}
\begin{asy}
draw(unitcube,blue);
label("$V-E+F=2$",(0,1,0.5),3Y,blue+fontsize(17pt));
\end{asy}
\end{document}