Skip to content

Instantly share code, notes, and snippets.

@monhime
Created January 14, 2020 12:43
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/259f573e3590173f0d02af09970f6f76 to your computer and use it in GitHub Desktop.
Save monhime/259f573e3590173f0d02af09970f6f76 to your computer and use it in GitHub Desktop.
Circuitikzの使用例6
\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,0)
(1.5,4) node[transformer core](T){}
(-1,4)node[ocirc]{}
node[anchor=south]{$c'$}
to[short](T.A1)
(T.A2)-| (-0.5,10)
node[circ]{} %|-:縦線の次に横線を書いて指定した点まで
(4,4)node[ocirc]{}
node[anchor=south]{$c''$}
to[short](T.B1)
(T.B2)-| (3.5,10)
node[circ]{}
(1.5,7) node[transformer core](T){}
(-1,7)node[ocirc]{}
node[anchor=south]{$b'$}
to[short](T.A1)
(T.A2)-| (0,4)
node[circ]{} %|-:縦線の次に横線を書いて指定した点まで
(4,7)node[ocirc]{}
node[anchor=south]{$b''$}
to[short](T.B1)
(T.B2)-| (3,4)
node[circ]{} %|-:縦線の次に横線を書いて指定した点まで
(1.5,10) node[transformer core](T){}
(-1,10)node[ocirc]{}
node[anchor=south]{$a'$}
to[short](T.A1)
(T.A2)-| (0,7)
node[circ]{} %|-:縦線の次に横線を書いて指定した点まで
(4,10)node[ocirc]{}
node[anchor=south]{$a''$}
to[short](T.B1)
(T.B2)-| (3,7)
node[circ]{} %|-:縦線の次に横線を書いて指定した点まで
;
\end{circuitikz}
\caption{Δ-Δ結線変圧器}
\label{fig6}
\end{center}
\end{figure}
\end{document}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment