Circuitikz 中的省略号

Circuitikz 中的省略号

我需要使用 circuitikz 在 LaTeX 中绘制此 TL 等效电路,但我不知道如何绘制椭圆。有人知道怎么做吗?

电感器和电容器链,顶部和底部轨道上有椭圆,以显示其无限长

答案1

又沒有評論。

\documentclass{article}
\usepackage{circuitikz}
\ctikzset{bipoles/thickness =1}
\begin{document}
  \begin{circuitikz}[line width=1pt]
    \draw (0,2) to[L,l=$L'$,*-*] (2,2)
          (2,0) to[C,l=$C'$,-*] (2,2)
          (2,0) to[short,-*] (0,0)
    ;
    \begin{scope}[xshift=2cm]
    \draw (0,2) to[L,l=$L'$,*-*] (2,2)
          (2,0) to[C,l=$C'$,-*] (2,2)
          (2,0) to[short,-*] (0,0)
    ;
    \end{scope}
    \begin{scope}[xshift=4cm]
    \draw (0,2) to[L,l=$L'$,*-*] (2,2)
          (2,0) to[C,l=$C'$,-*] (2,2)
          (2,0) to[short,-*] (0,0)
    ;
    \end{scope}
    \begin{scope}[xshift=6cm]
    \draw (0,2) --  (2,2)node[midway,scale=2,fill=white]{$\cdots$};
    \draw (0,0) -- (2,0)node[midway,scale=2,fill=white]{$\cdots$};
    \end{scope}
    \draw (8,2) to[L,l=$L'$,-*] (10,2) to[short,-*] (11,2)
          (10,0) to[C,l=$C'$,-*] (10,2)
          (11,0) to[short,*-](10,0) to[short,*-] (8,0)
    ;
  \end{circuitikz}
\end{document}

在此处输入图片描述

scope您也可以通过使用适当的坐标来取消s。

相关内容