使用 .csv 文件中的数据作为 TiKZ 中宏的参数

使用 .csv 文件中的数据作为 TiKZ 中宏的参数

我有一个 .csv 文件,里面有我想用作我创建的 TiKZ 宏的参数的数字。我尝试了几种不同的方法,但似乎在扩展参数时遇到了问题(真的我不想\expandafter再尝试了,因为我无法弄清楚如何在不使用宏作为 TiKZ 宏的参数的情况下调用文件中的数据。

梅威瑟:

\begin{filecontents*}{data.csv}
10,4.2,green
20,6.4,blue
30,5.4,red
\end{filecontents*}

\documentclass{standalone}
\usepackage{tikz}

\newcommand{\spoke}[3]{%true angle, radius, colour
    \fill[#3] (450-#1-5:0) -- (450-#1-5:#2) -- (450-#1-5:#2) arc (450-#1-5:450-#1+5:#2) -- (450-#1+5:0) -- (450-#1+5:#2) -- cycle;
}

\begin{document}
\begin{tikzpicture}

\spoke{10}{4.2}{green}   %how do I get these from the file?

\end{tikzpicture}
\end{document}

我使用 Overleaf,因此我对软件包/方法很灵活。我也可以完全控制输入,因此如果有比使用 .csv 更简单的方法,我会非常乐意使用它。

答案1

csvsimple包可以很简单地做到这一点。:) 我还添加了 TikZ 代码建议薛定谔的猫对您的问题进行评论。

\documentclass{standalone}
\begin{filecontents*}{\jobname-data.csv}
angle,radius,colour
10,4.2,green
20,6.4,blue
30,5.4,red
\end{filecontents*}
\usepackage{csvsimple}
\usepackage{tikz}

\newcommand{\spoke}[3]{%true angle, radius, colour
\fill[#3] (450-#1-5:0) -- (450-#1-5:#2) 
    arc[start angle=450-#1-5,end angle=450-#1+5,radius=#2]; 
% modified and more modern code here from Schrödinger'scat in the comments
}

\begin{document}
\begin{tikzpicture}
\csvreader[head to column names]{\jobname-data.csv}{}{
\spoke{\angle}{\radius}{\colour}   %how do I get these from the file?
}
\end{tikzpicture}
\end{document}

代码输出

相关内容