LaTeX 错误:未找到文件“Tikztopdf.sty”

LaTeX 错误:未找到文件“Tikztopdf.sty”

突然间,我无法再编译我的 TiZ 转 pdf。错误消息如下:

!LaTeX 错误:未找到文件“Tikztopdf.sty”。

这似乎是

\usepackage{Tikztopdf}

一旦我取消注释,就会出现错误消息。有人知道该怎么办吗?我使用 TeXMaker。我需要一个.eps输出。

这是我的示例代码:

\documentclass[a4paper,12pt]{article}
\usepackage{hyperref}
\usepackage{pgfmath}
\usepackage{pgfplots}
\pgfplotsset{compat=newest} 
\usepackage{pdfpages}
%\usepackage{Tikztopdf}
%-----------------------
\begin{document}
\begin{figure}
\centering
\input{sample_tikz.tex}
\end{figure}
\end{document}

sample_tikz.tex我使用这个代码时:

\begin{tikzpicture}
\begin{axis}[%
width=4.521in,
height=3.566in,
at={(0.758in,0.481in)},
scale only axis,
xmin=-4,
xmax=4,
ymin=-1,
ymax=1,
axis background/.style={fill=white},
\addplot [color=blue]
  table[row sep=crcr]{%
-3.5    -1\\
3.5 1\\
};
\end{axis}
\end{tikzpicture}%

相关内容