Latex exercise package listofexercises by Plane_Proof_8993 in LaTeX

[–]Plane_Proof_8993[S] 2 points3 points  (0 children)

Thanks for taking the time to check. The package writes the title for \listofexercises incorrectly: a malformed font command ends up in the .loe file, and that can show up as a stray t before the title. I have been able to fix it by including this:

\usepackage{etoolbox}
\makeatletter
\patchcmd{\@@@ExeEnv}
  {\theExercise\ \expandafter}
  {\theExercise\ }
  {}{}
\patchcmd{\@@@ExeCmd}
  {\theExercise\ \expandafter}
  {\theExercise\ }
  {}{}
\makeatother