次のコードを使用して、一連の円を描画しようとしています。しかし、必要な図を作成できませんでした。 というエラーが表示されます。しかし、にundefined control sequence. argument 0,...,\NY
変更すると、正常に動作します。 で \NY を使用できないのはなぜですか?\NY
4
{0,...,\NY}
\documentclass{standalone}
\usepackage{tikz}
\usetikzlibrary{shapes.geometric,arrows}
\usetikzlibrary{math}
\usetikzlibrary{positioning,calc}
\begin{document}
\begin{tikzpicture}
\tikzmath{
\VX = 30;
\VY = 30;
int \NX = 6;
int \NY = 4;
int \nix; int \niy;
\OX = 0; \OY = 0;
for \niy in {0,...,\NY}{%
for \nix in {0,...,6}{%
{\node [circle, draw = red, minimum size = \VX pt] at (\nix*\VX pt,\niy*\VY pt) {};};
};
};
};
\end{tikzpicture}
\end{document}
答え1
次のようなもの
int \NY = 4;
は使用できません。
int \NY; \NY = 4;
代わりに、MWE が機能します:
\documentclass{standalone}
\usepackage{tikz}
\usetikzlibrary{shapes.geometric,arrows}
\usetikzlibrary{math}
\usetikzlibrary{positioning,calc}
\begin{document}
\begin{tikzpicture}
\tikzmath{
\VX = 30;
\VY = 30;
int \NX; \NX = 6;
int \NY; \NY = 4;
int \nix; int \niy;
\OX = 0; \OY = 0;
for \niy in {0,...,\NY}{%
for \nix in {0,...,\NX}{%
{\node [circle, draw = red, minimum size = \VX pt] at (\nix*\VX pt,\niy*\VY pt) {};};
};
};
};
\end{tikzpicture}
\end{document}
答え2
あるいは、\newcommand\NX{6}
\newcommand\NY{4}
プリアンブルで使用して、ループ内でも使用することもできます。
MWE:
\documentclass{standalone}
\usepackage{tikz}
\usetikzlibrary{shapes.geometric,arrows}
\usetikzlibrary{math}
\usetikzlibrary{positioning,calc}
\newcommand\NX{6}
\newcommand\NY{4}
\begin{document}
\begin{tikzpicture}
\tikzmath{
\VX = 30;
\VY = 30;
int \nix; int \niy;
\OX = 0; \OY = 0;
for \niy in {0,...,\NY}{%
for \nix in {0,...,\NX}{%
{\node [circle, draw = red, minimum size = \VX pt] at (\nix*\VX pt,\niy*\VY pt) {};};
};
};
};
\end{tikzpicture}
\end{document}