Working on the solutions manual for Active Calculus - Multivariable. There’s not really a need to include the WeBWorK exercises’ solutions, so we have used extra XSL that imports pretext-solution-manual-latex.xsl and then has a template designed to suppress the solution when there’s a WeBWorK exercise.
As things have changed under the hood, this has been a bit of a moving target. We had been using
<xsl:template match="exercise[@exercise-interactive='webwork-reps']" mode="solutions"> </xsl:template>
However, that no longer excludes the WW solutions. I have tried building the assembly-static format using the pretext/pretext script, which led me to try
<xsl:template match="exercise[@pi:exercise-interactive='static']" mode="solutions"> </xsl:template>
However, the solutions are still showing up in the solutions manual.
Using versions wouldn't really save us, as we want the numbering to be right, and the WW exercises all come before the exercises for which we want the solutions.
Can someone help point me toward whatever we should be using to omit the solutions to the WW exercises?
Thanks!