チェス盤の一部 - tikz 2024-6-14 • tikz-pgf chess 私は本当に初心者ですtikzが、次のようなものを作成したいと考えています。 このようなものを作成するための派手な/簡単な方法はありますか? 答え1 ワンライナーを使うこともできます \documentclass[border={10}]{standalone} \usepackage{tikz} \begin{document} \begin{tikzpicture} \foreach\x in{0,...,3}{\draw[style=help lines,shift={(\x,\x)}](0,0)grid[step=1](4,3);} \end{tikzpicture} \end{document} 関連情報