shader=interp pdf 不能包含在 Lua 中

shader=interp pdf 不能包含在 Lua 中

我认为这个问题与一年前报告的问题完全相同这里,但我希望这次有人能重现它。为了验证它是否仍然存在于最新版本中LuaLaTeX,我刚刚进行了更新,现在运行版本 1.0.0(MiKTeX 2.9.6200 64 位)。

我生成一个图 ( content.tex),它shader=interp使用

\RequirePackage{luatex85}
\documentclass[tikz]{standalone}

\usepackage{tikz, pgfplots}
\pgfplotsset{compat=1.14}

\begin{document}
   \begin{tikzpicture}
      \begin{axis}
         \addplot3[surf, shader=interp, samples=10, domain=0:1] {x^2*y};
      \end{axis}
   \end{tikzpicture}
\end{document}

这是从手册中摘录的示例代码pgfplots,编译得很好。如果我现在将此图像包含到另一个文档中,

\documentclass{article}

\usepackage{graphicx}

\begin{document}
   \includegraphics{content.pdf}
\end{document}

绘图本身没有出现,只有坐标系。但是,如果我使用 进行编译pdfLaTeX,则一切正常(我刚刚检查了XeLaTeX,它也能完成这项工作)。

相关内容