I am currently trying to run some examples in the circuitikz library, and I keep getting the following error and the document will not compile:
Package pgfkeys Error: I do not know the key '/tikz/circuitikz/label/align' and I am going to ignore it. Perhaps you misspelled it.
See the pgfkeys package documentation for explanation.
I don't know if I am missing any essential packages, but I have installed circuitikz and xstring and I assume that TikZ is part of the TeX distribution I have. (MacTeX 2010) I am compiling my documents with TeXShop on Mac OSX 10.6.8 with that distribution if that helps anyone.
An example:
\documentclass{article}
\usepackage{mathtools}
\usepackage{graphicx}
\usepackage{circuitikz}
\DeclareGraphicsExtensions{.pdf,.png,.jpg}
\title{}
\author{}
\date{}
\begin{document}
\maketitle
\begin{circuitikz}[scale =1.2]
\draw (0,0) node[op amp] (opamp {} (opamp.+)
node[left] {$v_+$} (opamp.-)
node[left] {$v_-$} (opamp.out)
node[right] {$v_0$} ;
\end{circuitikz}
\end{document}

\documentclass{...}gives the example in the document body and end with\end{document}such that we see clearly the scope you are working in. – percusse Feb 18 at 22:52\documentclass{article}\usepackage{amsmath}\usepackage{mathtools}\usepackage{graphicx}\usepackage{circuitikz}\DeclareGraphicsExtensions{.pdf,.png,.jpg}\title{}\author{}\date{}\begin{document}\maketitle\begin{circuitikz}[scale =1.2]\ draw(0,0) node[op amp] (opamp {}(opamp.+) node[left] {$v_+$}(opamp.-) node[left] {$v_-$}(opamp.out) node[right] {$v_0$};\end{circuitikz}\end{document}EDIT: I have no idea how to get the lines of code to separate in a comment. I'll try to get this example in the OP. – Lucian Lutrae Feb 18 at 22:53