Elektrische Schaltungen mit circuitikz
[![alt text][1]][1]
[1]: https://texwelt.de/upfiles/Netzwerk.png
Ich möchte obige Schaltung mit allen Pfeilen und farbigen Beschriftungen mit circuitikz erstellen. Soweit bin ich gekommen:
\documentclass{article}
\usepackage{siunitx}
\usepackage{circuitikz}
%\usepackage[symbols]{circuitikz}
\usepackage{tikz}
\begin{document}
\begin{circuitikz}
\draw
(0,0) node[anchor=east] {}
to[short, o-*] (3,0)
to[C, l=\textbf{C}, *-*] (3,2)
(3,0) to[short, *-o] (4,0)
(0,2) node[anchor=east] {}
to[short,o-](0.4,2)
to[R,l=\textbf{R}, -](1.5,2)
to[L,l=\textbf{L},-*](3,2)
(3,2) to[short, *-o] (4,2)
;\end{circuitikz}
(4,2);
\end{circuitikz}
\end{document}
Wie erhalte ich die noch fehlenden Elemente?Elemente?