I started to write a clickable problem book using fortextbook. The question: after compiling to PDF, and setting the page fit to width in the Acrobat Reader if I click on e.g. question 1. it jumps to solution 2., or click to the square next to solution 1. jumps to question 2.
The code:
\documentclass{article}
\usepackage{amsmath}
\usepackage[latextoc,dvips,pdflatex]{web} % dvipsone, dvips, pdftex, dvipdfm
\usepackage[links,pdftex,fortextbook,nomarginwrite,usecustomdesign,
ftbsolns, forcolorpaper,noseparationrule,usexkv]{eqexam}
\begin{document}
\begin{probset}
{{\thesection} Solutions}%\label{probGrpANS}
\begin{problem}[7]
Solve the equation $ x^2 - 3x + 1 = 0 $ using the \emph{method of
completing the square}. \ANS{$x=\frac{3}{2}-\frac{\sqrt5}{2}$,
$\frac{3}{2}+\frac{\sqrt5}{2}$}
\begin{solution}[]
\begin{ssol}
$ x = \frac{3}{2}-\frac{\sqrt5}{2}, \frac{3}{2}+\frac{\sqrt5}{2}$
\end{ssol}
\begin{lsol}
We use standard methods.
\begin{align*}
x^2 - 3x + 1 &= 0 \\
x^2 - 3x &= -1\\
x^2 - 3x + \frac{9}{4} &= -1 + \frac{9}{4}\\
( x - \frac{3}{2} )^2 &= \frac{5}{4}\\
x - \frac{3}{2} &= \pm\frac{\sqrt5}{2}\\
x &= \frac{3}{2} \pm\frac{\sqrt5}{2}
\qquad\makebox[0pt][l]{\text{The solutions are $\boxed{ x = \frac{3}{2}-\frac{\sqrt5}{2}, \frac{3}{2}+\frac{\sqrt5}{2}}$}}
\end{align*}
\end{lsol}
\end{solution}
\end{problem}
\begin{problem}
Solve the equation $ x^2 - 4x + 8 = 0 $ using the \emph{quadratic formula}.
Simplify your final answer. \ANS{$x=2\pm2\imath$}
\begin{solution}[]
\begin{ssol}
$x=2\pm2\imath$
\end{ssol}
\begin{lsol}
We apply the quadratic formula:
\begin{align*}
x &= \frac{4\pm\sqrt{16-4(1)(8)}}{2}\\
&= \frac{4\pm\sqrt{16-32}}{2}\\
&= \frac{4\pm\sqrt{-16}}{2}\\
&= \frac{4\pm 4\imath}{2}\\
&= 2\pm2\imath
\end{align*}
The solutions are $ \boxed{ x = 2-2\imath,\ 2+2\imath }$.
\end{lsol}
\end{solution}
\end{problem}
\end{probset}
\newpage
\includeexersolutions
\end{document}

Wrong DVI mode Driver, caused bydvipsin code line 3. I use MiKTeX 2.9 and compiles withpdflatex. – Mensch May 02 '13 at 11:14