In a Beamer-Presentation I use Bibentry to print selected articles etc.
I have one problem: the title of each bibliographic entry is displayed as a hyperreference with a break afterwards.

How can I switch this off?
Here is the code:
\documentclass[10pt,a4paper]{beamer}
\ProcessOptionsBeamer
\mode<presentation>
\usepackage{natbib}
\usepackage{bibentry}
\usepackage{filecontents}
\begin{filecontents}{pwaLiterature.bib}
@incollection{Garner2009,
Address = {Oxford and New York, NY},
Author = {Garner, Robert},
Booktitle = {Introduction to Politics},
Date-Added = {2014-10-06 07:40:47 +0000},
Date-Modified = {2014-10-06 07:42:45 +0000},
Editor = {Garner, Robert and Ferdinand, Peter and Lawson, Stephanie},
Pages = {1-21},
Publisher = {Oxford University Press},
Title = {Introduction: The Nature of Politics and Political Analysis},
Year = {2009}}
\end{filecontents}
\begin{document}
\nobibliography*
\frame{\frametitle{}
\begin{tabular}{p{.15\textwidth} p{.85\textwidth}}
& \hangindent=0.5cm \bibentry{Garner2009}.\\
\end{tabular}
}
\bibliographystyle{apalike2}
\nobibliography{pwaLiterature}
\end{document}
\documentclass{...}and ending with\end{document}. – samcarter_is_at_topanswers.xyz Oct 08 '14 at 09:12filecontentsenvironment to show what goes in a single-item file the\bibitemis included from. It appears that the\newblockcommands are responsible for the breaks, but no idea where a hyperlink would come from, or what it points to. As you make each change, see if the problem persists on recompiles. Eventually, you'll have a block of code that is much easier to analyze and test. – Mike Renfro Oct 08 '14 at 14:40