회로를 그리려고 합니다. 작은 점들 사이에 전압 소스가 있어야 하지만 회로에는 나타나지 않습니다.
다음은 문제의 최소한의 예입니다. 방금 Sharelatex.com에서 시도해 봤습니다.
\documentclass{minimal}
\usepackage{siunitx}
\usepackage[cuteinductors,american,smartlabels,siunitx]{circuitikz}
\usetikzlibrary{shadows}
\usetikzlibrary{backgrounds}
\ctikzset {bipoles/thickness=1}
\begin{document}
\begin{circuitikz}[ scale =1.4, american, cute inductors, line width=0.8, line cap=round, line join=round]
\draw %%%% These commands shoud
(0,2) [V=20<\volt>] (2,2); %%%% draw a voltage source
\draw
(0,2)
to [I_=1<\ampere>,*-] ++(0,-2);
\draw (0,0)
to [short] (4,0) to [R=10<\ohm>] (4,2) to [short] (4,4) to [R=10<\ohm>] (0,4) to [short] (0,2);
\draw
(2,2) to [I^=2<\ampere>,*-] (4,2);
\draw
(2,0)
to [R=20<\ohm>](2,2);
\end{circuitikz}
\end{document}
감사해요
답변1
10번째 줄 이 누락되었습니다 to
.
(0,2) to [V=20<\volt>] (2,2); %%%% draw a voltage source