Generalhyperref pagebackrefs with xetex?

LaTeX specific issues not fitting into one of the other forums of this category.
Post Reply
karlisrepsons
Posts: 50
Joined: Sat May 23, 2009 10:13 pm

hyperref pagebackrefs with xetex?

Post by karlisrepsons »

Anyone here using hyperref with pagebackref with xelatex? To me bibliography was stubborn and showed a wrong backref to the very first page... Before any debugging (I'm tired of it today), I just wanted to make sure there is actually someone, who found it working.

Also hyperref manual [1] made an impression, that it might be possible to make urls or refs to be highlighted or get border drawn around them, when they get focussed with mouse. I wonder, can they?

[1] http://www.tug.org/applications/hyperref/manual.html

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

frabjous
Posts: 2064
Joined: Fri Mar 06, 2009 12:20 am

Re: hyperref pagebackrefs with xetex?

Post by frabjous »

packbackref is working for me with XeLaTeX.

I don't know if that's possible or not with the links, but what specifically in the hyperref manual gave you the impression that it was possible?
karlisrepsons
Posts: 50
Joined: Sat May 23, 2009 10:13 pm

hyperref pagebackrefs with xetex?

Post by karlisrepsons »

frabjous wrote:I don't know if that's possible or not with the links, but what specifically in the hyperref manual gave you the impression that it was possible?
Well, there was this line:
pdfhighlight name /I How link buttons behave when selected; /I is for inverse (the default); the other possibilities are /N (no effect), /O (outline), and /P (inset highlighting).
I didn't try digging much about that, but nothing useful was found while looking through that html and also the pdf hyperref manual...
frabjous wrote:packbackref is working for me with XeLaTeX.
:shock: Google has a single match: this thread! Maybe you misspelled?
karlisrepsons
Posts: 50
Joined: Sat May 23, 2009 10:13 pm

hyperref pagebackrefs with xetex?

Post by karlisrepsons »

After all, I found, that \setcounter{page}{1} was the cause of problem... A bit silly.

Code: Select all

\begin{document}
\input{cover}
\input{abstract}

\addtocontents{toc}{\protect\thispagestyle{empty}}
\addtocontents{toc}{\protect\pagestyle{empty}}
\tableofcontents
\newpage
\setcounter{page}{1}
\pagestyle{fancy}

\input{features/features}

\bibliographystyle{plain}
\bibliography{references}

\end{document}
User avatar
frabjous
Posts: 2064
Joined: Fri Mar 06, 2009 12:20 am

hyperref pagebackrefs with xetex?

Post by frabjous »

:shock: Google has a single match: this thread! Maybe you misspelled?
Yes, of course I meant pagebackref, sorry.
Post Reply