Circuitikz 常见

Circuitikz 常见

我正在学习 Circuitikz 来在报告中绘制示意图。我想使用通用符号;但是,它似乎不在那里。我有什么选择?

常用符号

谢谢。

使用示例:

\documentclass[10pt,a4paper,final]{report}
\usepackage[utf8]{inputenc}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{graphicx}
\usepackage[american,siunitx]{circuitikz}
\usepackage{siunitx}


\begin{document}

Test TikZ image:
\begin{figure}[htbp]
\begin{center}
\begin{circuitikz}[scale=2] \draw
(0,0)   to[V, l=\SI{10}{\milli\volt}, -*]                   (0,2)
        to[R, l=\SI{1}{\kilo\ohm}, i=$i_{in}$, -*, n=r1]        (2,2)
        to[C, l=\SI{10}{\micro\farad}]                      (2,0)
(2,2)   to[R, l=\SI{10}{\kilo\ohm}, v_=$U(x)$]              (4,2)
        to[Tnpn, n=npn]                                     (4,0)
(2,3)   node[op amp] (opamp) {}
(opamp.+) -|                                                (0,2)

(0,0)   node[ground] {}
(2,0)   node[ground] {}
(4,0)   node[ground] {}
(r1) node[below=2mm] {A resistor!}
;
\end{circuitikz}
\caption{Some circuit.}
\end{center}
\end{figure}

\end{document}

更改groundsground会导致编译错误。

相关内容