I just install Miktek and Texmaker on a new PC, and when i made a test to be sure all was working, I had the message quoted in the titel :
On my last computer, I had a ancient version of Miktex and of Texmaker, and all was fine. I updated them, and i had the same error message on the same file, but on my ancient PC.! LaTeX Error: File `tkz-obj-eu-draw-triangles.tex' not found.
It seems that the new version of tikz is make troubles, but I can't find where.
The part of the tek-file where the error appeared is :
\newcommand{\ecdd}{
\begin{tikzpicture}
%Style des noeuds : 3cm de large, 1cm de haut, angles arrondis, fond gris cl, texte en gras
\tikzstyle{noeud}=[minimum width=3cm,minimum height=1cm,
rectangle,rounded corners=5pt,draw,
fill=gray!10,text=black,font=\bfseries]
\node[noeud] (H) at (0,0) {Société};
\node[noeud] (C) at (0,-1.5) {École/Pédag1};
\node[noeud] (S) at (0,-3) {Discipline};
\node[noeud] (E) at (0,-4.5) {Domaine};
\node[noeud] (P) at (0,-6) {Secteur};
\node[noeud] (D) at (0,-7.5) {Thème};
\node[noeud] (F) at (0,-9) {Sujet};
%Flèches vert le bas :
\draw[->][line width=2pt] (-0.5,-0.5) -- (-0.5,-1);
\draw[->][line width=2pt] (-0.5,-2) -- (-0.5,-2.5);
\draw[->][line width=2pt] (-0.5,-3.5) -- (-0.5,-4);
\draw[->][line width=2pt] (-0.5,-5) -- (-0.5,-5.5);
\draw[->][line width=2pt] (-0.5,-6.5) -- (-0.5,-7);
\draw[->][line width=2pt] (-0.5,-8) -- (-0.5,-8.5);
%Flèches vers le haut :
\draw[<-][line width=2pt] (0.5,-0.5) -- (0.5,-1);
\draw[<-][line width=2pt] (0.5,-2) -- (0.5,-2.5);
\draw[<-][line width=2pt] (0.5,-3.5) -- (0.5,-4);
\draw[<-][line width=2pt] (0.5,-5) -- (0.5,-5.5);
\draw[<-][line width=2pt] (0.5,-6.5) -- (0.5,-7);
\draw[<-][line width=2pt] (0.5,-8) -- (0.5,-8.5);
\end{tikzpicture}}
It seems that the objetc which make the little triangle at the end of the arrows is not recognized.
What can I do to solve this ?
Thank you for any answer,
Caliban