Thomas A. Schmitz
6. April 2016 um 08:25
Hi all,

I use replacements to break unwanted ligatures in German text. This works in the text body, but not in footnotes. How can this be achieved in footnotes as well? Example attached!

Thanks

Thomas

\setreplacements [german]

\replaceword [german] [Auflage] [Au{fl}age]

\mainlanguage [de]

\setupbodyfont [termes, 12pt]

\starttext

flüssig Auflage\footnote{flüssig Auflage}

\stoptext
The feature is disabled in footnotes and you have to reenable it:

\startsetups[footnote]
    \setreplacements [german]
\stopsetups

\setupnote[footnote][setups=footnote]

Wolfgang