[Tex/LaTex] Cite bibliography in beamer with a concrete style

beamerbibliographies

In a beamer presentation I want to cite some bibliography. I prepared the following minimal example:

\RequirePackage{filecontents}
\begin{filecontents*}{\jobname.bib}



@article{ZINC,
author = {Irwin, John J and Shoichet, Brian K},
title = {{ZINC--a free database of commercially available compounds for virtual screening.}},
journal = {Journal of Chemical Information and Modeling},
year = {2005},
volume = {45},
number = {1},
pages = {177--182},
}



@article{Jorgensen,
author = {Jorgensen, WL},
title = {{The many roles of computation in drug discovery}},
journal = {Science},
year = {2004},
volume = {303},
number = {5665},
pages = {1813--1818},
}

\end{filecontents*}


\documentclass{beamer}
\begin{document}


\begin{frame}
This is a nice paper \cite{ZINC,Jorgensen}
\end{frame}

\begin{frame}
\bibliographystyle{alpha}

\bibliography{\jobname}
\end{frame}

\end{document}

I get at the end of the presentation a slide with both citations, in the exact style I need them (sorry if "style" is not the exact word here). But I do not want this, I want, on the slide I cite them, them to appear with this format, and omit the final slide with all the bibliography. How can this be done? I hope my question is more clear now

PS: The format I want is

John J Irwin and Brian K Shoichet.
ZINC–a free database of commercially available compounds for virtual screening. Journal of Chemical Information and Modeling, 45(1):177–182, 2005.

with the title of the journal in italics (Journal of Chemical Information and Modeling in this case) in italics

Best Answer

This should be what you want.

\documentclass{beamer}

\usepackage[style=verbose]{biblatex}

\renewbibmacro{in:}{%
  \ifentrytype{article}{}{%
  \printtext{\bibstring{in}\intitlepunct}}}

\DeclareFieldFormat{pages}{#1}
\DeclareFieldFormat[article]{title}{#1}

\renewbibmacro*{journal+issuetitle}{%
  \renewbibmacro*{note+pages}{}% NEW
  \usebibmacro{journal}%
%   \setunit*{\addspace}%
  \setunit*{\addcomma\space}% NEW
  \iffieldundef{series}{%
  }{%
    \newunit
    \printfield{series}%
    \setunit{\addspace}%
  }%
  \printfield{volume}%
%   \setunit*{\adddot}%
  \printfield{number}%
  \setunit{\addcomma\space}%
  \printfield{eid}%
  \setunit{\addspace}%
  \printfield{note}% NEW
  \setunit{\addcolon}% NEW
  \printfield{pages}% NEW
  \setunit{\addspace}% NEW
  \usebibmacro{issue+date}%
  \setunit{\addcolon\space}%
  \usebibmacro{issue}%
  \newunit
}

\DeclareFieldFormat[article]{number}{\mkbibparens{#1}}

\usepackage{filecontents}

\begin{filecontents}{\jobname.bib}
@article{ZINC,
author = {Irwin, John J and Shoichet, Brian K},
title = {ZINC--a free database of commercially available compounds for virtual screening},
journal = {Journal of Chemical Information and Modeling},
year = {2005},
volume = {45},
number = {1},
pages = {177--182},
}
@article{Jorgensen,
author = {Jorgensen, WL},
title = {The many roles of computation in drug discovery},
journal = {Science},
year = {2004},
volume = {303},
number = {5665},
pages = {1813--1818},
}
\end{filecontents}

\addbibresource{\jobname.bib}

\begin{document}

\begin{frame}
This is a nice paper: \textcite{ZINC,Jorgensen}
\end{frame}

\end{document}