Am 10.09.2013 um 10:51 schrieb "Meer, H. van der"
Doing \in{Figure}[fig:figname] neatly typesets for example: "figure 1.4" Defined as: \startplacefigure[title=figure-title,reference=fig:figname]
But if I define:\startchapter[title=chapter-title,reference=chap:chapname] Then \in{Chapter}[chap:chapname] produces: "chapter 6 - " Thus an extra space + minus sign + space are put behind the chapter reference.
This is annoying, because I would like my chapter reference to be "chapter 6" without any additions. Besides, the figure reference and chapter reference behave differently, an unexpected phenomenon. It seems the \startchapter defines a reference different from the reference in \startplacefigure.
Is this difference in behaviour intentional? Is it a bug? How can I revert my chapter references to the form without the trailing characters?
Make a minimal example because I can’t reproduce your results. \useMPlibrary[dum] \starttext \startchapter[title=chapter-title,reference=chap:chapname] \startplacefigure[title=figure-title,reference=fig:figname] \externalfigure[dummy] \stopplacefigure Take a look at \in{Figure}[fig:figname] in \in{Chapter}[chap:chapname]. \stopchapter \stoptext Wolfgang