I'm currently working with the apxproof package and I'm having some minor trouble with it... Consider the following MWE:
\documentclass{article}
\usepackage{amsthm}
\usepackage{apxproof}
\theoremstyle{definition}
\newtheorem{definition}{Definition}
\begin{document}
\begin{definition}[Some test title] Some other nonsense.
\end{definition}
\end{document}
which produces this
but what I actually would want is
If I comment out the line with \usepackage{apxproof} I get what I want, but I'm obviously not able any more to use the package... So, is there a way to keep using the package and make the title of the Definitions (and Theorems etc.) appear as defined in \theoremstyle command?
