答案1
LaTeX 有一个很棒的软件包具体来说用于绘制电路。它被称为CircuiTikz
(文档在这里:https://www.sharelatex.com/blog/2013/09/02/tikz-series-pt4.html)。
您的绘图对于 LaTeX 标准来说并不太复杂。以下是代码:
\documentclass[a4paper]{report}
\usepackage{amsmath}
\usepackage{circuitikz}
\begin{document}
\begin{circuitikz} \draw
(0,0) to[battery1] (5,0)
(5,0) to[generic, -*] (5,6)
(5,6) to[generic, -*] (2.5,3)
(5,6) to[generic, -*] (2.5,9)
(2.5,3) to[generic] (2.5, 9)
(2.5,3) to[generic, -*] (0,6)
(2.5,9) to[generic] (0,6)
(0,6) to[ammeter] (0,0)
(1,0) to[short, *-] (1,1.5)
(1,1.5) to[voltmeter] (4,1.5)
(4,1.5) to[short, -*] (4,0)
;
\end{circuitikz}
\end{document}
希望我的帖子对您有所帮助。完整文档请参阅:http://mirror.unl.edu/ctan/graphics/pgf/contrib/circuitikz/doc/circuitikzmanual.pdf。