电路中的 PGF 封装数学错误

电路中的 PGF 封装数学错误

这是我从官方文档复制的代码。我收到以下错误。

\documentclass[12pt,letterpaper]{article}    
\usepackage[left=20mm,top=30mm,bottom=30mm,right=20mm]{geometry}
\usepackage[siunitx]{circuitikz} % circuit package and  include electrical units in our labels

\begin{document}


\begin{center}
\begin{circuitikz} \draw    
(0,0) node[mixer] (m) {}
(m.w) to[short,-o] ++(-1,0)
(m.s) to[short,-o] ++(0,-1)
(m.e) to[short,-o] ++(1,0)
(m.w) node[inputarrow] {}
(m.s) node[inputarrow,rotate=90] {};

\end{circuitikz}
\end{center}

\end{document}

[![在此处输入图片描述][1]][1]

错误如下

! 软件包 PGF 数学错误:未知函数“w”(在“w”中)。

答案1

我于 4 月 18 日添加了锚文本的缩写形式:https://github.com/circuitikz/circuitikz/pull/626/commits/71e4b3179c7e4d5cd6d61270854d31e74a2264ef,并修复了它们与盒装元素的位置相关的错误。

因此,安装的简单解决方案是使用长名称:north,,west等等。

相关内容