TikZ:在列表中收集定义的坐标

TikZ:在列表中收集定义的坐标

我想将先前定义的坐标收集到一个列表中,然后在\foreach循环中打印它们以用于调试目的。

以下 MWE 显示了\points理想情况下应由某些 TeX / TikZ 机制定义和收集的列表:

\documentclass[tikz]{standalone}
\begin{document}
  \begin{tikzpicture}

    \coordinate (A)  at (0,0);
    \coordinate (B)  at (1,1);

    \def\points{A,B}% <--- how to automate?

    \foreach \point in \points
      \fill (\point) circle (0.1) node[above] {(\point)};

  \end{tikzpicture}
\end{document}

是否有可用于此类任务的包或宏?

我很感激任何建议!

相关内容