
Am 24.06.2025 um 16:57 schrieb John Was:
Hello. I haven't yet found options that would allow me to alter the style of footnote cues in the text (I would prefer slightly larger and slightly higher) or the positioning of the footnotes themselves: instead of the note numberse standing out to the left of the text area, my aim is to position them indented (by 8pt), with a fixed 4pt space after the note number before the text of the note begins. Is this possible?
The change the style of the footnote number in the running text use the \setupnote command and to change the style/layout of the footnote entry itself use the \setupnotation command. %%%% begin example \setupnote [textcommand={\offset[y=-1ex]},% raise the number textstyle={\switchtobodyfont[10pt]}]% change the font size \setupnotation [footnote] [ alternative=serried,% number in the paragraph headcommand=\groupedcommand{\hskip{8pt}}{},% space before the number distance=4pt,% space after the number numbercommand={\offset[y=-1ex]},% raise the number numberstyle={\switchtobodyfont[10pt]},% change the font size before={\blank[medium]}]% vertical space before the entry \starttext \dorecurse{3}{\samplefile{weisman}\footnote{\samplefile{ward}} } \stoptext %%%% end example Wolfgang