CircuiTikz 中的标签节点

CircuiTikz 中的标签节点

给组件设置标签很容易,但是否可以在单个节点上放置标签?

例如,我想要的,这里用红色圈出:

例子

答案1

您可以使用标准 TikZ 节点及其label密钥:

\documentclass{article}
\usepackage{circuitikz}

\begin{document}

\begin{circuitikz}
\draw 
  (0,0) 
    node[label={[font=\footnotesize]above:Node}] {}
  to[R,*-*] (2,0) 
    node[label={[font=\footnotesize]-30:$1$},label={[font=\footnotesize]150:$2$}] {}
  to[R,*-*] (4,0) 
    node[label={[font=\footnotesize]above:$3$}] {}
;
\end{circuitikz}

\end{document}

在此处输入图片描述

相关内容