I'm trying to use the package circuitikz, and I need to draw a plain amp, I'm traying to do this as the manual says but it keep throwing this error message
"I don´t know the '/tikz/plain amp' and i'm going to ignore it "
this is the code that i'm using.
\documentclass{article}
\usepackage{circuitikz}
\begin{document}
\begin{center}
\begin{circuitikz}
\draw (5,5) node[plain amp](amp){};
\end{circuitikz}
\end{center}
\end{document}
hope you can help me!
circuitikz. Add\listfilesbefore\documentclass{article}and look in the log-file after compilation, at the end should be a list of all packages and their versions. I have v. 0.2.4 ofcircuitikz. – Torbjørn T. Dec 18 '12 at 19:34CircuiTikzin your.logfile, you can read the version. Mine isPackage: circuitikz 2009/11/18 The CircuiTikz circuit drawing package version 0.2.4. – JLDiaz Dec 18 '12 at 19:34does anyone now why is this happening?
– Pablo Dec 18 '12 at 20:12circuitikz.styfrom CTAN and replacing the old one? While I have never used the package, it seems there is an additional file that is missing, so perhaps you can just download that one as well, and place it in the same folder. In general though, it is better to update using the package manager of your (La)TeX distribution. E.g. the Update manager of MikTeX (found in the Start menu). For TeX Live there is a command line utility,tlmgr update --self --allwill update all packages. (ctd.) – Torbjørn T. Dec 18 '12 at 23:07