答案1
这是一个起点。有关详细信息,请参阅circuitikz
手动的(angle:distance)
。请注意,对于该旋转对称图形,使用了极坐标。
\documentclass[border=2mm]{standalone}
\usepackage[europeanresistors]{circuitikz}
\begin{document}
\begin{circuitikz}
\newcommand\R{3} % radius and side length of hexagon
\foreach \a in {0,60,...,300}
\draw (0,0) to[R,*-*] (\a:\R);
\foreach \a in {0,120,180,300}
\draw (\a:\R) to[R] (\a+60:\R);
\draw (120:\R) to[voltmeter] (60:\R);
\draw (240:\R) to[ammeter] (300:\R);
\draw (0:\R) node[right] {B};
\draw (180:\R) node[left] {A};
\end{circuitikz}
\end{document}