绘制游戏板

绘制游戏板

我迫切需要帮助,画一个棋盘游戏的棋盘,看起来应该像图片中那样,或者更好。角落可以做得更美观。 棋盘游戏背景

答案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}

相关内容