I'm having trouble making a 3-way node using relative coordinates. Op-amps have fractional coordinates and I find it is easier to connect to using relative coordinates, but this diagram has a disconnect where R1 isn't connecting to the node I labelled.
This is my LaTeX code:
\begin{center}
\begin{circuitikz}[american voltages]
\draw
(0, 0) node[ op amp, noinv input up ] (opamp) {$A_v$}
(opamp.+) to[ short, -*, l=$V_{in}$ ] (-2, 0.5)
(opamp.out)
to[ short, -*, l=$V_{out}$ ] ++(1, 0)
(opamp.-)
to [ short, -*, name=moo ] ++(0, -2)
to [ R, l=$R_2$, v=$v_2$ ] ++(0, -2)
to node[ground]{} ++(0,-1)
(moo) to [ R, l=$R_1$ ] ++(3,0)
to [ short, -*] ++(0, 1.5)
;
\end{circuitikz}
\end{center}
Also I'm struggling to position the V1 label to the left of the terminal, or the Vout label to the right of its terminal.
Thanks in advance for any advice!


moois the name of the (void) element in theshortconnection. Usecoordinateto name points in the circuit (don't get confused: an electric "node" os not a TikZ node... I call thempolesincircuitikzto avoid confusion). – Rmano Feb 04 '22 at 08:12