Skip to content

Instantly share code, notes, and snippets.

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