I have this piece of LaTeX:
\documentclass{article}
\usepackage[pdftex,active,tightpage]{preview}
\setlength\PreviewBorder{2mm}
% Source: http://tex.stackexchange.com/a/15278/5645
\usepackage{chessboard}
\storechessboardstyle{4x4}{maxfield=d4}
\begin{document}
\begin{preview}
% showmover shows which player is to move
\chessboard[style=4x4,setwhite={Qa1,Qd2},showmover=false]
\end{preview}
\end{document}
And I compile using pdflatex.
But the PDF document is too wide (just mark the image to see its width)

How can I make the width of the PDF equal to the of the chessboard?


pdfcrop. – Lev Bishop Sep 11 '12 at 06:34