如何获得高质量的情节图像

如何获得高质量的情节图像

我正在使用 texstudio。

问题 1:我想将 pdf 输出转换为高质量的 eps 文件。该怎么做?

问题 2:如果我将代码的第一行替换为 \documentclass[tikz, border=1cm]{standalone},是否也可以提高 pdf 输出的质量

请注意,转换选项对我来说不起作用。该怎么办?我想获得非常高质量的图图像。

\documentclass[convert={density=3000,size=8000x8000,outext=.eps}]{standalone}
\usepackage{pgfplots}
\pgfplotsset{compat=1.16}

\begin{document}
    \begin{tikzpicture}[bullet/.style={circle,fill,inner sep=.1pt},
        declare function={f(\x,\y)=2-0.5*pow(\x-1.25,2)-0.5*pow(\y-1,2);}]
        \begin{axis}[view={150}{45},colormap/blackwhite,axis lines=middle,%
            zmax=2.2,zmin=0,xmin=-0.2,xmax=2.4,ymin=-0.2,ymax=2,%
            xlabel=\Large$x$,ylabel=\Large$y$,zlabel=\Large$z$,
            xtick=\empty,ytick=\empty,ztick=\empty]
            % Surface plot with mesh
            \addplot3[mesh,shader=interp,domain=0.6:2,domain y=0.5:1.9,opacity=0.99] 
            {f(x,y)};
            \draw[ultra thick, red] (0.6,0.5,{f(0.6,0.5)}) to[bend left=30] (2,0.5,{f(2,0.5)});
                    \end{axis}
    \end{tikzpicture}
\end{document}

答案1

只需将 MWE 保留为“原样”。这是使用 okular 查看器对表面左上角(微缩模型的黑色矩形)的缩放。您无法以任何方式提高此输出的质量。

姆韦

相关内容