Skip to content

Instantly share code, notes, and snippets.

@monhime
Last active January 14, 2020 12:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save monhime/8b40956e710d5dc2f1c5ef307fbff233 to your computer and use it in GitHub Desktop.
Save monhime/8b40956e710d5dc2f1c5ef307fbff233 to your computer and use it in GitHub Desktop.
Circuitikzの使用例3
\documentclass[10pt, a4paper, titlepage, uplatex]{jsarticle}
\usepackage{amsmath,ams symb}
\usepackage[dvipdfmx]{graphicx}
\usepackage{circuitikz}
\begin{document}
\begin{figure}[htbp]
\begin{center}
\begin{circuitikz}[american currents]
\draw
(0,2)to[short, o-*] (1,2)
to[C=$C$](1,0)
to[short,*-o](0,0)
(1,2)to[L=$L$](3,2)
to[R=$R$](5,2)
to[C=$C$](5,0)
(1,0)to[short](5,0)
(5,2)to[short,*-o](6,2)
(5,0)to[short,*-o](6,0);
\end{circuitikz}
\caption{送電線の\(\pi\)型等価回路}
\label{fig3}
\end{center}
\end{figure}
\end{document}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment