I am trying to create a simple cross-reference from one page to another, e.g., in part of the document, it says, "see bears, p. 3." From the ConTeXt manual, p. 170, I was able to determine that a method for this is with \reference, in the place which is referenced to, and \at, in the place where the text refers to the place.
When I use \reference in my document, it is giving me an extra space, e.g.:
\starttext
\section{This is a section}
\reference[1]{This is a reference}
This is some text.
\section{This is another section}
This is some more text.
\stoptext
This displays as:
1 This is a section
This is some text.
2 This is another section
This is some more text.
Notice, there is an added space between the first section and the text, while this extra space is not there.
- Am I creating references properly? Why are there so many different commands in the manual, but all seem to do the same thing, e.g.
\ref,\at,\in, etc.? - Why is
\referencecreating an extra space? How can I remove this extra space? - Why do I need to place some text inside curly braces in
\reference[]{Some text here}?