I am writing and using \'e to represent é as in Lévy.
This method is giving me a few error messages (including the utf8x Error) using overleaf as I have shown below. Is there perhaps a package that I need to import to get this to work?
I have added a minimum working example with my current packages below the image.
minimum example
\documentclass[12pt,oneside,openany,a4paper,afrikaans,english,masters-t,goldenblock]{usthesis}
%% Language and font encodings
\usepackage[afrikaans, english]{babel}
\usepackage[utf8x]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{tikz}
%%%%%%%%%%%%%%%%%%%%%%% Packages %%%%%%%%%%%%%%%%%%%%%%%
\usepackage{graphicx}
\usepackage{svg} % To be able to add SVG images
\usepackage{usbib}
\bibliographystyle{unsrt}
\setcitestyle{square}
\bibpunct{[}{]}{,}{n}{,}{,}
\usepackage{caption}
\usepackage{subcaption}
%%%%%%%%%%%%%%%%%%%%%%% Sets page size and margins %%%%%%%%%%%%%%%%%%%%%%%
\usepackage{geometry}
\geometry{a4paper, total={210.2mm,297.3mm}, left=25mm, right = 25mm, top=26.3mm, bottom=43.8mm }
\begin{document}
% error generater here
In text : \’e
\bibliography{sample} % no need for bibliography
\end{document}
- I have tried adding
\usepackage{fontspec}, but this made the pdf crash.
