
나는 다음을 사용하여 트랜지스터와 직렬로 다이오드를 그리기 위해 회로 tikz를 사용하고 있습니다.
\begin{figure}[h!]
\centering
\begin{circuitikz}[american, line width=0.3, line cap=round, line join=round]
\ctikzset{diodes/scale=0.6}
\draw (0,0) to[D] (2,0) to[nigbt] (4,0);
\end{circuitikz}
\end{figure}
왜 트랜지스터가 그려지지 않는지 모르겠습니다.
답변1
경로 스타일 트랜지스터는 T
이름에 를 추가하여 지정해야 합니다. 그러니 시도해보십시오.
... to[Tnigbt] ...
또한보십시오https://tex.stackexchange.com/a/575630/38080(받아들이지는 않았지만...)
답변2
트랜지스터의 기호는 다이폴이 아니지만 노드로 정의됩니다.
\documentclass[margin=3mm]{standalone}
\usepackage{circuitikz}
\begin{document}
\begin{circuitikz}[american, line width=0.3, line cap=round, line join=round]
\ctikzset{diodes/scale=0.6}
\draw (0,0) to[D] (2,0) node[nigbt, anchor=B] {} ;
\end{circuitikz}
\end{document}