我正在寻找一个简单的代码,该代码描述一个带有电池和两个电阻器(2.2 欧姆和 4.7 欧姆)以及两个电阻器的电压表的简单电路,有人可以帮助我吗?
\begin{figure}[h!]
\begin{centering}
\begin{circuitikz}
\draw (0,0) to[battery1] (0,5) to[short] (2,5) to[R=$R_1$] (2,3) to[voltmeter](2,3) -- (5,3) to [R=$R_2$](2,2) to[short] (2,0) to[short](0,0);
\end{circuitikz}
\caption{Elektrischemetingen (stroom)}
\end{centering}
\end{figure}
答案1
\documentclass[border=2mm]{standalone}
\usepackage{circuitikz}
\begin{document}
\begin{circuitikz}
\draw (0,0) coordinate(a) to[battery1] (0,4) to[short] ++(2,0)
coordinate(b) to[R=$R_1$] ++(0,-2) coordinate(c) to[R=$R_2$] (c|-a)
to[short] (a);
\draw (b) to[short,*-] ++(2,0) coordinate(e) to[voltmeter] (e|-c)
to[short,*-*] (c);
\draw (e|-c) to[voltmeter] (e|-a) to[short,-*] (c|-a);
\end{circuitikz}
\end{document}