LaTeX+gnuplot 轮廓消失

LaTeX+gnuplot 轮廓消失

一段时间以来,我一直直接在 .tex 文件中生成绘图。如果我打开由 pdflatex 生成的 pdf,一切都会正常进行,但是,我注意到,如果我打印(硬拷贝)或只是将该 pdf 导出到新 pdf,所有轮廓都会消失(轴仍然存在)。

我使用的代码是:

\begin{tikzpicture}
\begin{axis}[
width=0.8\textwidth,
height=0.33\textwidth,
axis equal,
view={0}{90},
colormap/hot2,
colorbar,
colorbar style={
scale only axis,
yticklabel style={
align=right,
/pgf/number format/.cd,
fixed,
try min ticks=6
}}
]
\addplot3[raw gnuplot,surf,shader=interp]
gnuplot[id={surf}]{
set parametric;
set pm3d;
splot 'data/field/tkemean.dat' u 1:2:(($3)/2.0)
};                
\fill [gray, thick] (axis cs:-0.5,0.0) rectangle (axis cs:0.5,0.5);
\end{axis} 
\end{tikzpicture}

彩色条和矩形均在打印后“保留”,但轮廓消失了。

有人遇到过这个问题吗?

相关内容