在文档“An Asymptote tutorial”的“3.4 高分辨率光栅化图像”一节中,提出了两种提高分辨率的方法。一种方法是shipout(scale(4.0)currentpicture.fit());
在代码末尾添加命令,但要求图像缩减。
如何在乳胶内联环境中缩小输出图像?我已附加一个最小乳胶文件。
\documentclass{minimal}
\usepackage[inline]{asymptote}
\begin{document}
Some text
\begin{asy}
settings.render = 8;
settings.outformat = "pdf";
import three;
unitsize(2.5cm);
label("Some text", (0,0,0), S);
draw((0,0,0) -- (1,1,1), linewidth(2pt));
shipout(scale(2.0) * currentpicture.fit());
\end{asy}
\end{document}
谢谢,阿巴斯