9

I tried to the following code to get the version information about TikZ using \listfiles command. However, there is an error says File amsmath.sty not Found, may someone help me?

\documentclass{article}
\usepackage{mathtools}
\usepackage{dateiliste}
\listfiles
\begin{document}
\printFileList
\end{document}
Torbjørn T.
  • 206,688
sweetyBaby
  • 3,029

1 Answers1

9

Qrrbrbbirlbel (phew) answered the amsmath update problem. You can read more from Heiko Oberdiek's answer in A MiKTeX update removed amsmath as obsolete – can I use another package or get it back?

You can also check your PGF/TikZ version via two options

  1. Putting \listfiles command in your preamble and reading your log file
  2. Or putting \pgfversion command somewhere in the document to be printed.

Here is two examples combined

\documentclass{article}
\usepackage{tikz}

\listfiles

\begin{document}
\pgfversion
\end{document}

It gives

enter image description here

in the resulting PDF file and also in the log file

enter image description here

percusse
  • 157,807