Target
Typeset ‘é’ with in $\rm \LaTeX$.
Problem
A failed attempt
1
2
3
4
| \documentclass[12pt]{standalone}
\begin{document}
I went to café yesterday.
\end{document}
|
Method
Add the babel
package.
A minimum working example
1
2
3
4
5
6
| \documentclass[12pt]{standalone}
\usepackage{fontspec}
\usepackage[french]{babel}
\begin{document}
I went to café yesterday.
\end{document}
|