I want to generate a problem booklet that provides a more accurate space after each question. As I always make the solution as general as possible, I think I can use the size of my solution for the size of the associated blank space. I don't want to use \examspace with hard-coded dimension as follows. How to implement my idea?
\documentclass[preview,border=12pt,varwidth]{standalone}
\usepackage{mathtools}
\usepackage{exsheets}
\SetupExSheets
{
question/name=Question,
solution/name=Answer,
solution/print=true,
}
\begin{document}
\begin{question}
Solve $2(x-1) - \frac{2}{3}(3-2x) = 1 - 2(2-3x)$.
\examspace{10\baselineskip}
\end{question}
\begin{solution}
\begin{gather*}
2(x-1) - \frac{2}{3}(3-2x) = 1 - 2(2-3x) \\
\intertext{multiply both sides by 3}
3\times\left(2(x-1) - \frac{2}{3}(3-2x)\right) = 3\times\left(1 - 2(2-3x)\right) \\
6(x-1) - 2(3-2x) = 3 - 6(2-3x) \\
6x - 6 -6 +4x = 3 -12 +18x \\
10x -12 = -9 + 18x\\
10x -18x = -9 +12\\
-8x = 3\\
x = \frac{3}{-8}\\
x = -\frac{3}{8}
\end{gather*}
\end{solution}
\end{document}

{question}and use the box in the{solution}. – cgnieder Sep 12 '13 at 08:16exsheets. – kiss my armpit Sep 12 '13 at 08:35