diff --git a/crc/exampleCircuit.tex b/crc/exampleCircuit.tex
index bdff1605d0487c37aee31a208d565096b7bda939..2aee0c9e33249871ce4f7fbbbc92eb99a08d5683 100644
--- a/crc/exampleCircuit.tex
+++ b/crc/exampleCircuit.tex
@@ -5,11 +5,35 @@
 \usepackage{circuitikz} % zeichnen von Schaltplänen
 
 \begin{document} %----------------------Inhalt---------------------------------------------------%
+
 \begin{circuitikz} \draw
-	(0,0)	to[V, v<=$U_q$, i=2]  ++(0,2)
+	(0,0)	to[V, v<=$U_q$, i=$I_q$]  ++(0,2)
 			-- ++(2,0)
-			to[R, v^=$U_R$]	++(0,-2)
-			-- (0,0)
+			to[R, i^=$I_R$]	++(0,-2)
+			to[rmeter, t=A] ++(-2,0)
+	;
+\end{circuitikz}
+
+\begin{circuitikz} \draw
+	(0,0)	to[I, v^<=$U_q$, i=$I_q$]  ++(0,2)
+			-- ++(2,0) coordinate(a)
+			to[R, *-*, v^=$U_R$] ++(0,-2) coordinate(b)
+			-- ++(-2,0)
+	(a) 	-- ++(1.5,0)
+			to[rmeterwa, t=V] ++(0,-2)
+			-- (b)
 	;
 \end{circuitikz}
+
+\begin{circuitikz} \draw
+	(0,-2)	coordinate(home)
+			to[V, v<=$U_q$] ++(0,2)
+	;
+	\foreach \i in {0,...,3} \draw
+		(0,0) -- ++(1.5+\i,0)
+			to[R, *-*,l=$R_\i$] ++(0,-2)
+			-- (home)
+	;
+\end{circuitikz}
+
 \end{document}