在 LaTeX 中绘制电路

在 LaTeX 中绘制电路

我应该使用什么包来绘制这些电路?电路

是 circuitikz 吗?

答案1

为您提供circuitikz答案

\documentclass[8pt]{standalone}
\usepackage[european]{circuitikz}
\usepackage{siunitx}
\begin{document}
\begin{tikzpicture}
\draw
  (0,0) to[battery,l=$\SI{1}{\V}$] ++(0,4) -- ++(2,0) coordinate (1)
  to[R,l=$R_A$] ++(0,-4)
  (1) -- ++(2,0) -- ++(0,-2) to[R,l=$R_B$] ++(0,-2)
  (1) ++(2,0) -- ++(2,0) to[R,l=$R_C$] ++(0,-2) -- ++(-2,0)
  (0,0) -- ++(6,0) to[battery,l_=$\SI{2}{\V}$] ++(0,2)
;
\end{tikzpicture}
\end{document}

会产生与此非常接近的结果

图片

相关内容