5

I'm using TexLive under Windows 8 & TexMaker, when I tried to run this code snippet,

\documentclass{article}
\usepackage{chessboard}
\storechessboardstyle{4x4}{maxfield=d4}
\begin{document}
\chessboard[style=4x4,setwhite={Qa1,Qd2},showmover=false]
\end{document}

It didn't produce any result, instead a warning said \usepgfmodule{shapes} is obsolete. Any idea?

This package is obsolete. Use \usepgfmodule{shapes} instead

Is there any package for chessboard available in TikZ?

roxrook
  • 9,907

2 Answers2

4

Alternatively, you can use skak package. Here is a sample:

\documentclass{article}
\usepackage{skak}

\begin{document}
\section*{Chess}

\newgame
\mainline{1.e4 e5 2. Nf3 Nc6 3.Bb5}
\[ \showboard \]
\mainline{3...a6} Rarely used these days,
\variation{3...Nf6} is more in fashion since blah blah... \\
\mainline{4.Ba4}
\[ \showboard \]

\end{document}

enter image description here

David Carlisle
  • 757,742
Pouya
  • 7,269
  • 2
    So how about a 4x4 style chessboard? – Werner Feb 02 '13 at 20:59
  • @Werner, well, my bad. I didn't notice the 4x4 part in the code of the question and I'm not sure if skak or xskak support that. Should I remove the answer? – Pouya Feb 02 '13 at 21:11
1

You can try the "diagram" package:

\documentclass{scrartcl}
\usepackage{diagram}
\usepackage{hyperref}

\begin{document}
\begin{diagram}[4x4] 
\pieces{wDa1, wDd2} 
\end{diagram}
\end{document}
Epllus
  • 55