Sorry i have no MWE for this question.
I have a .dtx class and looking at the diff between a previous "good" version and the present i have, there is nowhere some recollection about what exactly is wrong, but here it is. So i ask in the direction of more details about part.
Ok, so the class issues a \renewtheorem{test}[part]{Name}, and users create environments, for instance:
\begin{test}\label{abc}
Ok.
\end{test}
But when typeset "as in test (\ref{abc})" instead of
as in test (1)
(before) the document shows
as in test (.1)`.
Not where, but why is that dot popping up there?
In a simplistic MWE, the part is not showing its presence w.r.t. dot in \ref.
What can cause the dot there? If i set \renewcommand\thepart{100} then \ref{abc} is 100.1: still the dot!
Thank s.
testis defined and whether you see a.there. – azetina May 28 '12 at 19:25\theoremnumberingfortestenvironment is invoked, only\theoremclassand\theoremstyle. – sjbiaga May 28 '12 at 19:59partto start with. Seemingly you don't want the dot but that is what the theorem numbering will look like dependent on the part number you are in. If you remove thepartsection then probably the numbering will result as1without a dot. I really can't get what is what you are asking. – azetina May 28 '12 at 20:08\renewtheorem{test}{Name}[part](partat the end); i explicitly put them in order and it works. i know what is wrong: some\ifthenelsetests are missing. thank s a lot! – sjbiaga May 28 '12 at 20:14