TikZ \tkzFct 在 Ubuntu 下为空白

TikZ \tkzFct 在 Ubuntu 下为空白

但在 sharelatex 下它们工作得很好(尽管我可能修改了一些东西)。

代码:

\documentclass{report}
\usepackage[usenames,dvipsnames]{xcolor}
\usepackage{tkz-fct}
\begin{document}
\begin{tikzpicture}[scale=1.25]
\tkzInit[xmin=-5,xmax=5,ymax=2]
\tkzGrid
\tkzAxeXY
\tkzFct[color=red]{2*x**2/(x**2+1)}
\end{tikzpicture}
\end{document}

产生这个:

图片

日志在这里https://gist.github.com/vinz243/1fb0d049700db70e4412

答案1

好的,我遗漏了两件事:

  • 我必须安装 GNUPlot(sudo apt-get install gnuplot
  • 并启用 write18--shell-escape

相关内容