Am 21.06.2012 um 21:00 schrieb Pablo Rodríguez:
Hi there,
I'm trying to change the format of the footnote numbers in the body (not in the lower area for footnotes) and I don't know how to do this.
Here you have a sample:
\definefontfeature[oldnumb][onum=yes] \setupnotation[footnote][numberstyle=\tf,numbercommand=\addfs{oldnumb}] \starttext Note\footnote{Not here, but above.} \stoptext
Just in case you wonder, the OT feature is actually sups=yes, but that feature only works with Sorts Mill Goudy (http://www.theleagueofmoveabletype.com/sorts-mill-goudy).
How is the proper way to do this?
For oldstyle numerals you can use the “oldstyle” feature: \setupnote[footnote][textstyle=\setff{oldstyle}] \starttext Note\footnote{Not here, but above.} \stoptext To use the superscript feature you have define first a fontfeature with “sups=yes” which can now be applied to textstyle, it’s also important to disable the \high command which is used to raise the footnote number. \setupbodyfont[calluna] % replace this with your own font which has the “sups” feature \definefontfeature[sups][sups=yes] \setupnote[footnote][textstyle=\setff{sups},textcommand=] \starttext Note\footnote{Not here, but above.} \stoptext Wolfgang