tkz-fct 没有产生任何图

tkz-fct 没有产生任何图

我读过一些其他答案,它们都有类似的问题。例如,tkz-fct 没有产生任何图表,为什么?给出了一些解决方案:“那么您需要在脚本中使用选项--shell-escape或write18进行编译”。

是否可以在 Overleaf 上应用此解决方案?我可能只是问这个问题,因为我从来没有使用过这种代码。

梅威瑟:

\documentclass{article}
\usepackage{tkz-fct}
\usepackage{tkz-euclide,tikz,tikz-layers}

\begin{document}

\begin{center}
\begin{tikzpicture}[scale=0.5]

\tkzInit[xmin=-10, xmax=10, ymin=-10,ymax=10]

\tkzGrid
\tkzAxeXY[>=latex]
\tkzFct[domain=-10:10,samples=1000,draw=red]{x}

\end{tikzpicture}
\end{center}

\end{document}

我在日志中收到:Package pgf Warning: Plot data file 'output.tkzfonct.table' not found. on input line 17.

答案1

向您的项目添加一个名为latexmkrc以下内​​容的文件:

$pdflatex = 'pdflatex %O %S --shell-escape';
$pdf_mode = 1;
$postscript_mode = $dvi_mode = 0;

并重新编译。

在此处输入图片描述

相关内容