pgfmath 无法访问仅具有一个项目的数组项目

pgfmath 无法访问仅具有一个项目的数组项目

有时数组列表中只有一个项目,在这种情况下数组访问运算符似乎只获取元素的第一个字符。如何修复它?

\documentclass[tikz, border=1cm]{standalone}

\begin{document}
\begin{tikzpicture}
  \node at (0, 0) {\pgfmathparse{{0.3}[0]}\pgfmathresult};
  \node at (1, 0) {\pgfmathparse{{13}[0]}\pgfmathresult};
  \node at (2, 0) {\pgfmathparse{{"abc"}[0]}\pgfmathresult};
  \node at (3, 0) {\pgfmathparse{{12pt}[0]}\pgfmathresult};
\end{tikzpicture}
\end{document}

在此处输入图片描述

相关内容