I have some footnotes in a ConTeXt document, which must be referenced too multiple times, i.e., the superscript mark 1 appears in several parts of the document, but the footnote is only displayed once, e.g.:
This is some text.^1
^1 This is the footnote text.
This is some more text.^1
With the stable edition of ConTeXt, this syntax worked:
\setupfootnotes[location=text]
\starttext
This is some text.\note[footnote][1]
\setnotetext[footnote][1]{This is the footnote text.}
\placefootnotes
This is some more text.\note[footnote][1]
\stopfootnote
With the current edition of ConTeXt, \setnotetext seems to correctly place the notes, however, \note seems no longer able to refer to my notes. After compiling, I get:
This is some text.^??
^1 This is the footnote text.
This is some more text.^??
I also tried the instructions found at the ConTeXt Garden article on footnotes, but the resulting compilation also creates ?? instead of numbering.
How can I create multiple references to a single footnote in the current version of ConTeXt?