[Tex/LaTex] How to write “Œuvres”

fonts

How to write the following word in tex: "Œuvres"

I don't even know what word (language) is that. But I need to write in the bibliography a text typed in .tex

Best Answer

Œuvres is french and means "work" (as in "work of art"), you can input it directly or with the \OE:

\documentclass{article}
\usepackage[T1]{fontenc}
\begin{document}
\OE uvres Œuvres
\end{document}

enter image description here

Related Question