Open4

TeXで回路図を描画する (circuitikz)

HarinekoHarineko

テンプレ↓

\begin{figure}[htbp]
  \begin{center}
    \begin{circuitikz}[american currents]
      % ここに回路図

      % 導線 (short) を描画
      \draw(0,0)
      (0,0) -- (0,1) -- (1,1) -- (1,0) -- (0,0);
    \end{circuitikz}
  \end{center}
  \caption{見出し}
\end{figure}

座標は左下が原点 (0,0)
キャパシタとインダクタ、抵抗、電源は上のQiita記事に

HarinekoHarineko

トランジスタ

\draw(0,0)
(0,0) node[eground2]{} -- (0,0) to[Tnpn,n=npn,mirror] (0,1) -- (0,2)
(npn.B) -- (4,2) % ベース
(npn.B) node[] {};
HarinekoHarineko

テキストを描画:

(0,0) node[left=2mm] {$10 \ohm$}
(1,0) node[right=2mm] {$10 \ohm$};