[Tex/LaTex] pagebackref option is not working in Beamer

back-referencingbeamerbibliographieshyperref

When I use \usepackage[pagebackref]{hyperref} in \documentclass{article}, it works perfectly. But when I use it in beamer class i.e. \documentclass[hyperref={pagebackref=true}]{beamer}, it does not work and no error is displayed. My task is to include the page numbers where the reference is cited in the bibliography produced by beamer. Please advise how I can achieve my task.

the following example is working perfectly

\documentclass{article}
\usepackage[colorlinks=true,citecolor=blue,pagebackref=true]{hyperref}
\usepackage[english]{babel}
\usepackage{Sweave}

\begin{document}
Antecedent to 1970, Luce and Tukey's \cite{Luce1964} present first article on conjoint. Explain the relation between consumer's decision and the factors involved in his/ her decision making \cite{Orme2010}. In 1971, Green and Rao's joint effort of card-sort conjoint analysis \cite{Green1971} gained success beyond imagination. In 1975, Green and Wind \cite{Green1975} described the measures consumer judgments for carpet cleaners, and business leaders, this new method was soon taken into consideration.

\bibliographystyle{Ieeetr}
\bibliography{References/conjoint}

\end{document}

but when I used the following

\documentclass[hyperref={pagebackref=true,colorlinks=true,citecolor=blue,pagebackref=true}]{beamer}
\usepackage{graphicx}
\usepackage[english]{babel}
\usepackage[square, numbers]{natbib}
\usepackage{Sweave}
\usepackage{ragged2e}

\usepackage{beamerthemeshadow}

\begin{document}
\justifying

\section{Conjoint Analysis }
\begin{frame} \frametitle{Conjoint Analysis} 
Antecedent to 1970, Luce and Tukey's \cite{Luce1964} present first article on conjoint. Explain the relation between consumer's decision and the factors involved in his/ her decision making \cite{Orme2010}. In 1971, Green and Rao's joint effort of card-sort conjoint analysis \cite{Green1971} gained success beyond imagination. In 1975, Green and Wind \cite{Green1975} described the measures consumer judgments for carpet cleaners, and business leaders, this new method was soon taken into consideration.
\end{frame}

\bibliographystyle{Ieeetr}
\bibliography{References/conjoint}

\end{document}

no error found, but I am unable to find the page number in the bibliography to go-back at the page where it was cited as done in article class in first example.

Best Answer

As is mentioned in the comments, this is something which is simply not implemented in beamer. Support for bibliographies in the class is limited, and reflects the fact that presentations are not good places for such things.