I'm using the following handout file:
http://rogercortesi.com/portf/latex/handout.cls
And I realized that when I use the \showsoln function, it just shows SOLUTION in bold blue letters at the top and bottom. I have narrowed it down to the fact that the .cls file does not contain instructions to display solutions.
His documentation for the handout class is in the file directory: http://rogercortesi.com/portf/latex
Is there a way I can fix this, or do you suggest another document class I can use to display solutions on another page? I've looked around on StackExchange, and I haven't found anything that would suit my fairly-beginner knowledge of LaTeX.
Here's what I have, as far as code goes..
\documentclass[soln]{handout}
\SetInstructor{omitted instructor}
\SetCourseTitle{omitted course title}
\SetHandoutTitle{omitted handout title}
begin{document}
\maketitle
\begin{questions}
\item What is 1+1?
\soln{1.5in}{\framebox{$2$}.}
\item What is 2+2?
\soln{2in}{\framebox{$4$}.}
\end{questions}
% Here is where I tried to put \showsoln in.
% It worked, but it has the effect I described earlier.
\end{document}

examclass to make handouts but I do not gather solutions at the end. A search of TeX.SE reveals several ways to print solutions at the end, such as here. – Michael S Taylor Dec 27 '16 at 16:41handout.clsseems to be a little bit aged, no apparent updates – Dec 27 '16 at 16:42\documentclass[solutions]{handout}– Dec 27 '16 at 16:52\documentclass[soln]{handout}... and it is not compilable. After correcting it and usingsolutioninstead ofsolnit works. The class file does not complain about the unknownsolnoption, unfortunately – Dec 27 '16 at 17:05\showsolndoesn't work here.. – Anon E. Muss Dec 27 '16 at 18:56examorexsheetsrather – Dec 27 '16 at 21:06