答案1
因为你是这里的新手......
对于起点:
\documentclass[border=3.141592]{standalone}
\usepackage[american, cute inductors]{circuitikz} % <---
\ctikzset{bipoles/capacitor/height=0.5,
bipoles/capacitor/width=0.1,
bipoles/length=1cm
}
\begin{document}
\begin{circuitikz}
\draw (0,0) coordinate (aux0)
to[sV] ++ (0,1.5)
to[R=$R_G$] ++ (0,1.5) coordinate (aux1)
to[R=$R$] ++ (2,0) coordinate (aux2)
(aux2) to[R=$R_L$] ++ (0,-1.2)
to[L=$V_o$] ++ (0,-1.2)
to[C=$C$] ++ (0,-0.6)
to[short,*-*] (aux0)
(aux1) to[short,*-o] ++ (-1.5,0)
to[open, v=$v_{\mathrm{in}}$, voltage=straight] ++ (0,-3)
to[short,o-*] (aux0)
(aux2) to[short,*-o] ++ (1.5,0)
to[open, v^=$v_{\mathrm{out}}$, voltage=straight] ++ (0,-3)
to[short,o-*] (aux2 |- aux0)
;
\end{circuitikz}
\end{document}
注意:我强烈建议阅读包装手册并查看circuitikz
现场的不同方案示例。