This seems like a bug of the Reader not of `hyperref`. I guess some
buffer overflow occurs and the displayed symbols are just some random
memory content.
A minimal example is:
\documentclass{article}
\usepackage[unicode]{hyperref}
\begin{document}
A\newpage A\newpage A\newpage A\newpage A\newpage
A\newpage A\newpage A\newpage A\newpage A\newpage
\end{document}
The result looks like on this screen-shot: http://i.imgur.com/WHE7e.png
Could some of you test this with the Windows version and post their
results. I'm planning to open a bug report, but like to find out
first if this is a Linux specific issue or not.
I'm using hyperref 2011/03/09 v6.82d with a manual installed and
freshly updated TeXLive 2010 (under Ubuntu Linux 10.10).
Thanks,
Martin Scharrer
Hello,
If it can help, it works perfectly with an updated mactex distribution
(under Mac OS X 10.5.8) and Acroread 9.4.2.
Sincerely yours,
And I have this one for bookmarks : \ must be "escaped" : \\
and it seems this is quite new (I never had such bookmarks text
before...)
\documentclass{article}
\usepackage [T1]{fontenc}
\PassOptionsToPackage {unicode}{hyperref}
\usepackage{bookmark}
\begin{document}
\section{Test \string\test} % single \ => Test ॥猀琀
\section{Test \string\\test}% double \\ OK
\end{document}
Regards.
> And I have this one for bookmarks : \ must be "escaped" : \\
> and it seems this is quite new (I never had such bookmarks text
> before...)
It isn't new. Specifying the backslash directly allows low level
stuff. But hat requires knowledge about PDF strings, the encoding, ...
Therefore it is not recommended.
> \documentclass{article}
> \usepackage [T1]{fontenc}
> \PassOptionsToPackage {unicode}{hyperref}
> \usepackage{bookmark}
>
> \begin{document}
> \section{Test \string\test} % single \ => Test ???
> \section{Test \string\\test}% double \\ OK
The recommended way is the LaTeX way:
\section{Test \textbackslash test}
--
Heiko Oberdiek