[Tex/LaTex] How to add accented characters to PDF info without using hyperref

accentscharactershyperrefpdf

Using pdflatex, I'm looking to add PDF information into by document, including an accented name (Rónán Daly). Normally I'd use hyperref to do this; however, the conference I'm submitting to is complaining about generated links and bookmarks – I can stop the generation of bookmarks, but not links. So I'm looking at the option of using \pdfinfo, with /Author, /Title and /Keyword. However, I can't seem to add the accented characters correctly. I'm currently using ASCII, but could change this if necessary. Any ideas on how to solve either of these problems?

Best Answer

This works:

\documentclass{article}
\pdfinfo{%
/Author(R\string\363n\string\341n Daly)/Title(blub)/Subject()}

\begin{document}
abc 


\end{document}
Related Question