4

Is it possible to use \addfontfeature for specific characters? Something like this MWE in order to get every e of the document with double size:

\usepackage{fontspec}
\usepackage{hyperref}

\setmainfont{Latin Modern}
\setmainfont{Latin Modern}[Scale=2.0, range = {e}]

\begin{document}

Test


\end{document}

1 Answers1

1

In ConTeXt you can use the fallback mechanism.

\definefallbackfamily [mixedfont] [rm] [Latin Modern Roman] [scale=2,range=0x65,force=yes]
\definefontfamily     [mixedfont] [rm] [Latin Modern Roman]

\setupbodyfont[mixedfont]
\starttext

Test

\stoptext

enter image description here

Henri Menke
  • 109,596