1

I need to draw this TL equivalent circuit in LaTeX using circuitikz, but I don't know how to draw the ellipses. Does anybody know how to do it?

Chain of inductors and capacitors with ellipses on the top and bottom rails to show that it's infinitely long

glibg10b
  • 265

1 Answers1

6

No comments again.

\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}

enter image description here

You can do away with scopes too by using proper coordinates.