我迫切需要帮助,画一个棋盘游戏的棋盘,看起来应该像图片中那样,或者更好。角落可以做得更美观。
答案1
你可以从这样的事情开始:
代码:
\documentclass[tikz]{standalone}
\begin{document}
\begin{tikzpicture}[b/.style={draw,minimum height=2cm,minimum width=3.5cm,rounded corners}]
\path node(n)[b]at (0,0){} node[b,scale=.75]{};
\path[draw] (n.north east) edge [shorten >= 2pt,shorten <= 2pt](n.south west) (n.north west)edge [shorten >= 2pt,shorten <= 2pt](n.south east) (n.north)--(n.south) (n.east)--(n.west) node at(0,0)[b,scale=.5,fill=white]{};
\end{tikzpicture}
\end{document}