Blog 1

Random Talk on Random Thoughts

Typeset Acute Accents

| Comments |

Target

Typeset ‘é’ with in $\rm \LaTeX$.

target

Problem

failed

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}

Comments