我从 Matlab imagesc 图创建了一个 pdf 文件。我删除了颜色条和轴,现在我想在我的 tex 文档中显示此图像。我设法几乎按照我想要的方式获取轴,但颜色条不起作用。没有错误,但也没有颜色条。我遗漏了什么?
\documentclass[a4paper,10pt]{scrartcl}
\usepackage{pgfplots}
\begin{document}
\begin{tikzpicture}
\begin{axis}[axis on top,title=Test,colormap/jet]
\addplot graphics[xmin=0,xmax=1,ymin=0,ymax=1,zmin=0,zmax=.5]
{image.pdf};
\end{axis}
\end{tikzpicture}
\end{document}