2007/9/3, Steffen Wolfrum
Hi,
please have a look at this minimal example:
\starttext This is a test text\footnote[129]{for testing} with two footnotes \footnote[130]{the same purpose as fn. \note[129]}. \stoptext
It would look better if "fn. 1" would be set the same type (not "1" being smaller and set high). Is there a pre-set command like \tx or such?
Steffen
Hi Steffen, the layout for the footnote number (and all other notes) can be changed with the textcommand and textstyle keys but you can't make different setups for \footnote and \note. You can save the old definition of \note and define your own \note command with your wanted setup. \let\normalnote\note \def\note[#1]% {\bgroup \setupfootnotes[textcommand=,textstyle=]% \normalnote[#1]% \egroup} \starttext This is a test text\footnote[129]{for testing} with two footnotes \footnote[130]{the same purpose as fn. \note[129]}. \stoptext Wolfgang