[Tex/LaTex] LaTeX can’t find file `tkz-obj-angles.tex’

miktex2.9tkz-euclide

PdfLaTeX can't process a file with the following contents:

\documentclass{article}

\usepackage{tkz-euclide}
\usetkzobj{all}

\begin{document}

\end{document}

When called from cmd.exe (pdflatex test.tex), it gives the following error:

! I can't find file `tkz-obj-angles.tex'.
<argument> ...\|=12 \input tkz-obj-\tkz@temp .tex
                                                  \catcode `\@ =\csname tkz@...
l.4 \usetkzobj{all}

I am using MikTex 2.9, tkz-base version 3.02c, tkz-euclide version 3.02c on Windows 10.

Best Answer

With tkz-euclide 3.02, \usetkzobj{all} (or \usetkzobjall) is not necessary according to the manual:

With the new version 3.02 you don’t need this line anymore. All objects are now loaded.

Removing this command will make the error disappear.

Related Question