我正在玩 Tikz 矩阵,想使用 foreach 语句来“扩展矩阵”。更准确地说,我想知道是否可以使用如下 foreach 语句:
\n in {Alice (the genious), Bob, Smith, Gordon}{ code }
与 tikz 矩阵环境一起实现最终结果如下
这手动的实现上述输出的代码是:
\documentclass{standalone}
\usepackage{tikz}
\usetikzlibrary{matrix}
\begin{document}
\begin{tikzpicture}
\tikzstyle{every node}=[anchor=west]
\matrix[matrix of nodes]
{
ID nr & Status & Volume \\
1.2345 & Blue & 2.2 \\
Creator & Last touch& Date \\
{Alice (the genious)} & Jason & 20190129 \\
{Bob} & & \\
{Smith} & & \\
{Gordon} & & \\
{Theme:} & & \\
{Let's use tikz } & & \\
};
\end{tikzpicture}
\end{document}
谢谢!