Was wondering if there is a way to add a node to a circuit drawn with "circuitikz" at any point. However, if I would, for example, change the bottom-left node of my circuit to point downwards instead? Is there an option to just move the component on the line or add a line with a node? I was lucky this time since I could organise, but curious to know this for another time.
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage[siunitx]{circuitikz}
\begin{document}
\begin{figure}
\centering
\begin{circuitikz}[scale = 1.5]
\draw
(-4,0) to[R,l=$\mathcal{R_1}$,o-o] (2,0)
(0,0) to[R,l=$\mathcal{R_2}$,-] (0,2)
(-4,2) to[R,l=$\mathcal{R_3}$,o-o] (2,2)
(-2,2) to[R,l=$\mathcal{R_4}$,-] (-2,4)
(-4,4) to[R,l=$\mathcal{R_5}$,o-o] (2,4)
(0,4) to[R,l=$\mathcal{R_6}$,-] (0,6)
(-4,6) to[R,l=$\mathcal{R_7}$,o-o] (2,6)
(-2,0) to[american current source,-,l=$\Phi_1$] (-2,2)
(-2,4) to[american current source,-*,l=$\Phi_2$] (-2,6)
;
\end{circuitikz}
\caption{Unit equivalent circuit of permeance network}
\label{fig:magcircuit}
\end{figure}
\end{document}

\mathcal{R}_1, there are no numbers inmathcalfont. And probably you'll need\usepackage[T1]{fontenc}https://tex.stackexchange.com/questions/664/why-should-i-use-usepackaget1fontenc – Rmano Feb 18 '22 at 11:07