如何生成带有 interp 阴影 3D 图的 SVG 投影仪幻灯片?

如何生成带有 interp 阴影 3D 图的 SVG 投影仪幻灯片?

我在尝试着创建 SVG 投影仪演示文稿最终将使用嵌入视频media4svg.虽然视频嵌入效果很好,但 3D 绘图却给我带来了麻烦。有什么想法可以将以下 Beamer 幻灯片导出到 SVG 文件而不影响 3D 绘图?

\documentclass{beamer}
\usepackage{pgfplots}
\pgfplotsset{compat=1.18}
\begin{document}
    \begin{frame}
        \begin{tikzpicture}
            \begin{axis}
                \addplot3[ surf, shader=interp, samples=10, domain=0:1, ]{x^2*y};
            \end{axis}
        \end{tikzpicture}
    \end{frame}
\end{document}

我能够做到的唯一方法是使用dvisvgmshader=flat使用 ImageMagick 的convert工具来生成栅格化的 SVG。这两个选项都不理想!

相关内容