pgfplot 无法通过 pdflatex 和 lualatex 绘制大型数据文件

pgfplot 无法通过 pdflatex 和 lualatex 绘制大型数据文件

我有一个大数据文件有 1024*400 个点。我无法使用 pdflatex 绘制它,所以我使用 lualatex。但我只得到了“编译超时”:

\documentclass{article}
\usepackage{pgfplots}
\begin{document}
\begin{tikzpicture}
\begin{axis}
\addplot3 [
surf,
mesh/ordering=y varies,
] table {pu1pr2raw.dat};
\end{axis}
\end{tikzpicture}
\end{document}

我不知道为什么。

顺便说一下,我使用 overleaf。

答案1

使用我的机器上的 luatex 需要四分半钟,这对于 overleaf 来说可能太长了(我不知道)制作一个较小的样本进行绘图会更合理。

\documentclass{article}
\usepackage{pgfplots}
\pgfplotsset{compat=1.15}
\begin{document}
\begin{tikzpicture}
\begin{axis}
\addplot3 [
surf,
mesh/ordering=y varies,
samples=500
] table {pu1pr2raw.dat};
\end{axis}
\end{tikzpicture}
\end{document}

在此处输入图片描述

相关内容