LuaLaTeX 出现“分段错误(核心转储)”

LuaLaTeX 出现“分段错误(核心转储)”

我正在尝试使用 tickzpicture 编译由 10000 个数据点组成的 3D 表面。但是,当我.tex使用lualatex

lualatex --shell-escape myfile.tex

我收到以下错误:

(/usr/share/texlive/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfgSegmentation fault (core dumped)

我在文件中使用的脚本.tex如下所示

\begin{tikzpicture}

\begin{axis}[
 width=5.33027777777778in,
 height=4.26422222222222in,
 area legend,
 view={-37.5}{30},
 scale only axis,
 xmin=-5, xmax=5,
 xtick={\empty},
 ymin=-1, ymax=7,
 ytick={\empty},
 every outer z axis line/.append style={white},
 every z tick label/.append style={font=\color{white}},
 zmin=-0.458, zmax=5.285,
 ztick={\empty},
 axis x line*=bottom,
 axis y line*=left,
 axis z line*=left]

 \addplot3[%
  surf,
  shader=faceted interp,
  colormap/jet,
  mesh/rows=100]
  table[row sep=crcr,header=false] {
  -5 -1 -0.0254428632617659\\
  -5 -0.919191919191919 -0.0254428632617659\\
  -5 -0.838383838383838 -0.0254428632617659\\
  -5 -0.757575757575758 -0.0254428632617659\\
  -5 -0.676767676767677 -0.0254428632617659\\
  -5 -0.595959595959596 -0.0254428632617659\\
  ............
  ............
  5 6.67676767676768 -0.0254428632617659\\
  5 6.75757575757576 -0.0254428632617659\\
  5 6.83838383838384 -0.0254428632617659\\
  5 6.91919191919192 -0.0254428632617659\\
  5 7 -0.0254428632617659};
  \end{axis}
  \end{tikzpicture}

你知道如何解决这个问题吗?谢谢

相关内容