Skip to content

Instantly share code, notes, and snippets.

@monhime
Created January 14, 2020 12:46
Show Gist options
  • Save monhime/f6da29215adc6e0a410e5461ecadf96e to your computer and use it in GitHub Desktop.
Save monhime/f6da29215adc6e0a410e5461ecadf96e to your computer and use it in GitHub Desktop.
Circuitikzの使用例7
\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)
to[sV=$E$] (0,2)
to[short] (2,2)
to[european resistor=$R$] (2,0)
to[short] (0,0);
\draw (2,2)
to[short] (4,2)
to[L=$L$] (4,0)
to[short] (2,0);
\draw (4,2)
to[short] (6,2)
to[C=$C$] (6,0)
to[short] (4,0);
\end{circuitikz}
\caption{RLC並列回路}
\end{center}
\end{figure}
\end{document}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment