When scaling a circuit with the scale option:
\begin{circuitikz}[scale = 'some_scale_factor']
all the coordinates are well scaled but not the components.
How to correctly scale the whole scheme?
When scaling a circuit with the scale option:
\begin{circuitikz}[scale = 'some_scale_factor']
all the coordinates are well scaled but not the components.
How to correctly scale the whole scheme?
Just to summarize:
My answer:
It could be done with the "transform shape" option:
\begin{circuitikz}[scale = 'some_scale_factor', transform shape]
Martin's answer:
Wrap the whole thing in a
\scalebox{<factor>}{..} (graphicx package)or\begin{adjustbox}{scale=<factor>} .. \end{adjustbox} (adjustbox pacakge).
If you want to scale only the components but not the text, you can use /tikz/circuitikz/bipoles/length (taken from Scaling components in CircuiTikz):
\documentclass[border=5pt,varwidth]{standalone}
\usepackage{tikz}
\usepackage{circuitikz}
\usepackage{siunitx}
\begin{document}
\begin{circuitikz}
\draw (0,0)
to [sV=$a_1$] (2,0)
to [C=$\SI{100}{\ohm}$](3,0)
to [sV=$a_2$] (5,0)
to [sV=$a_1$] (7,0);
\end{circuitikz}
\vspace{1cm}
\begin{circuitikz}[/tikz/circuitikz/bipoles/length=1cm]
\draw (0,0)
to [sV=$a_1$] (2,0)
to [C=$\SI{100}{\ohm}$](3,0)
to [sV=$a_2$] (5,0)
to [sV=$a_1$] (7,0);
\end{circuitikz}
\end{document}
Note that you can combine this with scale, xscale, or yscale to scale the coordinates.
Just Providing an example of Leonardos example (The diagram is scaled):

\documentclass[11 pt]{article}
\usepackage[american]{circuitikz}
\usepackage{adjustbox}
\begin{document}
\begin{center}
\textbf{Induction Motor}
\\
\begin{adjustbox}{scale=0.6}
\begin{circuitikz}[scale=1.4]
\def\topy{2.5}
\def\boty{0}
\def\midx{3}
\def\halfmidx{1.5}
\def\farx{6}
\def\halffarx{4.5}
\draw(0,\topy)
to[open,v_=$V_\phi$,o-o] (0,\boty)
to[short] (\midx,\boty)
to[L=$j X_m$] (\midx,\topy)
;
\draw (0,\topy)
to[R=$R_1$] (\halfmidx,\topy)
to[L=$j X_1$] (\midx,\topy)
;
\draw(\midx,\topy)
to[R=$R_2 $] (\halffarx , \topy)
to[L=$j X_2$] (\farx , \topy)
to[R=$R_2\frac{1-s}{s}$] (\farx,\boty)
to[short] (\midx , \boty)
;
\end{circuitikz}
\end{adjustbox}
\end{center}
\end{document}
\scalebox{<factor>}{..}(graphicxpackage) or\begin{adjustbox}{scale=<factor>}..\end{adjustbox}(adjustboxpacakge). There should be a similar question about TikZ itself around. – Martin Scharrer Sep 23 '11 at 11:56\scalefont:
– Leonardo Sep 23 '11 at 14:04{\scalefont{scale_factor} text_or_tikz_code}