3

I desperately need help drawing a board for a board game which looks like the one in the picture or an even better one. The corners could be made to look more appealing visually. boards game background

  • 3
    What are your efforts so far? If you have never used TikZ before, a good starting point is the PGF manual. It also helps when you post a full, compilable TeX document showing where your problem is, so that people can help you more easily. – Fritz Sep 09 '14 at 16:54

1 Answers1

5

You can start with some thing like this:

enter image description here

The code:

\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}
AboAmmar
  • 46,352
  • 4
  • 58
  • 127