如何使用 circuitikz 绘制 T 网络

如何使用 circuitikz 绘制 T 网络

有人可以帮我使用 circuitikz 包绘制这个,提前谢谢了。T 网络应该有通用双极子。 使用 cuircuitikz 的电路

答案1

以下是我的看法:

\documentclass{article}
\usepackage[siunitx]{circuitikz}
\usepackage[active,tightpage]{preview}
\PreviewEnvironment{circuitikz}

\begin{document}
    \begin{circuitikz}
        \draw (0,0) to[TL, l=TX line] (2,0)
        to[generic, l=$G1$] (4,0) -- (5,0)
        to[generic, l=$G3$] (5,-2) node [cground] {} 
        (5,0) to[generic, l=$G2$] (7,0) node [antenna] {};

        \node (bipoleslabel) [anchor= west] at (1,-2) {Generic Bipoles};
        \draw [->, smooth] (bipoleslabel.north) .. controls +(35:2) and +(215:1.5) .. (4.7, -1);
    \end{circuitikz}
\end{document}

这将产生以下输出:

发射机电路

相关内容