I have a section heading which includes an epsilon. Furthermore I am using the "hyperref" package to create links in my PDF document.
When compiling I get a strange warning that a math symbol is not allowed in a PDF string, e.g. Token not allowed in a PDF string (PDFDocEncoding): (hyperref) removing \varepsilon on input line 6.
However, if I open the compiled PDF there are no obvious errors and all links are clickable. Am I missing something, or can I just ignore this warning? Are there any alternatives to achieve the same result?
\documentclass{article}
\usepackage{hyperref}
\begin{document}
\tableofcontents
\section{$\varepsilon$SOA}
Text about $\varepsilon$SOA.
\end{document}

Thanks in advance!
\texorpdfstring{}{}in hyperref manual. – Fato39 Jun 22 '15 at 09:28\section{\texorpdfstring{$\varepsilon$}{e}SOA}is what you are looking for. It has been discussed here before, I'll try to find it. – yo' Jun 22 '15 at 09:29