[Tex/LaTex] Formatting back references in bibliography [BibTeX]

babelback-referencingbibtexhyperref

I'm using the option pagebackref in hyperref package and I get just the links list at the end of each reference name. It should print something like "Cited on page/s ", but I don't manage it even to do that.

My aim is to change some command to make it say that in Spanish, and I found it already considers Spanish in backref.sty, which is called by hyperref, I think… Reading hyperref, backref, backrefx's documentation didn't help.

Any guess?

Related: Formatting back references in bibliography

Best Answer

Use:

\usepackage[pagebackref=true]{hyperref}
\renewcommand*{\backref}[1]{}
\renewcommand*{\backrefalt}[4]{[{\tiny%
    \ifcase #1 Not cited.%
          \or Cited on page~#2.%
          \else Cited on pages #2.%
    \fi%
    }]}

I put this is in a \tiny font in between square brackets []. Change to your own tastes:)

Related Question