I am using LaTeX to produce accented characters. I use the resulting PDF file as a palette from which I can select characters for copying and pasting into (say) a Word document or the input field of a webpage.
Here is an example of an acute accent above "e":
\documentclass{article}
\begin{document}
\Huge
\'{e}
\end{document}
Unfortunately, I cannot select the entire accented vowel in the resulting PDF. I can select the "e" or I can select the accent.
Is there a way to have LaTeX produce the accented vowel as a single character so that I can select it from the PDF for copying and pasting?

éalso copies fine if you load\usepackage[T1]{fontenc}and use pdfLaTeX. ButT1doesn't have all characters available either,\={o}won't copy as desired, for example. – moewe Jun 14 '21 at 04:46\usepackage[T1]{fontenc}when you switch to LuaLaTeX or XeLaTeX (they don't likeT1: https://tex.stackexchange.com/q/470976/35864). Plus the font handling of the Unicode engines is different, so switching engines may mean more than just calling a different binary. – moewe Jun 14 '21 at 06:28pdflatexand always had\usepackage[T1]{fontenc}(inheritted with dozens of otherincludes and various types of definitions). MWEs are the only circumstance where I leave out that huge payload of stuff. This is the first time I've experimented with other LaTeX engines, so I've never encountered the problem you describe. I appreciate the heads up. – user2153235 Jun 14 '21 at 12:30