答案1
这应该能满足您的要求。您只需更改此处或彼处的数值即可延长整个过程。
\documentclass[tikz]{standalone}
\usepackage[american]{circuitikz}
\begin{document}
\begin{tikzpicture}
\draw
node[op amp](amp){}
(amp.out)
to[short,-*] ++(0.5,0)coordinate(out)
to[short,-o] ++(1,0) node[right]{$V_{\mathrm{o}}$}
(amp.-)
to[short,bipole nodes={none}{circ,color=blue}]
++(-.5,0)coordinate(A)node[below,blue]{$A$}
to[short] ++(0,1) coordinate(tmp)
to[R,l=$R_y$] (tmp-|out)
to[short] (out)
(amp.+)
to[short] (amp.+-|A)
to[vsource,l_=$V_{\mathrm{i}}$] ++(0,-1.5) node[sground](gnd){}
(A)
to[R,l_=$R_x$] ++(-2.5,0)coordinate(tmp)
to[short] (tmp|-gnd) node[sground]{}
;
\end{tikzpicture}
\end{document}