答案1
您不想要元素的名称“short”,您想要元素终点的坐标:
\documentclass[border=10pt]{standalone}
\usepackage[siunitx, RPvoltages]{circuitikz}
\begin{document}
\begin{tikzpicture}[]
\draw (0,0) to[short] ++(2.5,0) coordinate(c) to[C=$C_C$] ++(0,-1.5) node[ground]{};
\draw (c) to[short, -o] +(1,0) node[right](vout){$V_{out}$};
\end{tikzpicture}
\end{document}
现在,秘密:
有一个内部坐标名称nameend
(和namestart
)指向路径的起点和终点。你应该不是使用它们,但是,它们没有记录并且名称可能会改变或被覆盖。
\documentclass[border=10pt]{standalone}
\usepackage[siunitx, RPvoltages]{circuitikz}
\begin{document}
\begin{tikzpicture}[]
\draw (0,0) to[short, name=myshort] ++(2.5,0) coordinate(c) to[C=$C_C$] ++(0,-1.5) node[ground]{};
\draw (c) to[short, -o] +(1,0) node[right](vout){$V_{out}$};
\node [color=red, ocirc] at (myshortend) {};
\end{tikzpicture}
\end{document}