有趣的奇怪的 TikZ 行为

有趣的奇怪的 TikZ 行为

我试图绘制一个点网格,其中点的权重为x和的平均值y

\usepackage{tikz}

...

\begin{center}
\begin{tikzpicture}
    \foreach \x in {1,2,3,4,5,6} {
        \foreach \y in {1,2,3,4,5,6} {
            \fill (\x, \y) circle ({(\x + \y)/2});
        }
    }
\end{tikzpicture}
\end{center}

...

意外斑点的屏幕截图

输出是意料之外的(附有截图)!

有人知道发生了什么吗?我在 overleaf 上使用 Lualatex。

编辑1:

解决了原问题:

已解决-对角增加权重

但需要对之前的行为进行解释。

相关内容