No idea what's going on here:
\documentclass{article}
\usepackage{fontspec}
\setmainfont[
Path = {/FONTDIR/},
Extension = .otf
]
{BaskervaldADFStd}
\begin{document}
Ae ae
\end{document}
... Anyone?
No idea what's going on here:
\documentclass{article}
\usepackage{fontspec}
\setmainfont[
Path = {/FONTDIR/},
Extension = .otf
]
{BaskervaldADFStd}
\begin{document}
Ae ae
\end{document}
... Anyone?
With BaskervaldADFStd, the ae and oe ligatures are classified as "required" ligatures. fontspec enables required ligatures by default. To change this setting, add the option Ligatures=NoRequired to the \setmainfont instruction.
\documentclass{article}
\usepackage{fontspec}
\setmainfont{BaskervaldADFStd}[Ligatures={NoRequired}]
\begin{document}
ae oe AE OE
\ae\ \oe\ \AE\ \OE
\em
ae oe AE OE
\ae\ \oe\ \AE\ \OE
\end{document}
BaskervaldADFStdon my system). At any rate, adding the optionLigatures=NoRequiredto the\setmainfontshould get rid of the "required"aeandoeligatures. – Mico Dec 09 '17 at 08:39