I would like to use circuitikz with TikZ. However, I find that circuitikz modifies or does not recognize TikZ labels. The author of circuitiz has commented that in the "released version of CircuiTikz (0.2.3) the problem has been fixed." But the problem still exists.
Does a workaround or solution exists for the label conflict of circuitikz and tikz?
Here is a simple example using TikZ v2.10 and circuitikz v0.23. Instead of getting a resistor labeled R1 below it, I get a resistor labeled info above it when circuitikz is active. It makes no difference which environment is used, tikzpicture or circuitikz.
\documentclass{article}
\usepackage{tikz}
\usetikzlibrary{circuits.ee.IEC}
\usepackage{circuitikz}
\usepackage{siunitx}
\begin{document}
\begin{tikzpicture}[circuit ee IEC,
set resistor graphic = var resistor IEC graphic]
\draw (0,0) to[resistor={info'={$R_1$}}] (2,0);
\end{tikzpicture}
\end{document}
infostyle, but that it redefines theresistorstyle, and arguments to it aren't processed as options anymore. Do you need a way to get a label below the resistor whencircuitikzis active and you are in atikzpicture, or could you switch to acircuitikzenvironment and use thecircuitikzsyntax ofl_=<label>for a label? – Jake May 31 '11 at 8:59circuitikzmakes withresistorstyle. I thought thattikzandcircuitikzcould be used interchangeably with ease. Not, so by my experience. However, I do appreciate some of the features of thecircuitikzsyntax likel_=<label>. – zun Aug 17 '11 at 7:34circuitslibrary ofTikZ(version 2.10). I find it's much nicer thancircuitikz. :) – Count Zero Sep 24 '11 at 11:29