答案1
如果您将该biblatex
包用于您的参考书目(请注意,这需要使用biber
而不是进行编译bibtex
),则您会有几种可能性。
如果你只需要完整的信息,而不需要与参考书目相同的格式,那么你可以使用
\fullcite{...}
宏如果你确实需要它看起来像一个书目,你可以使用环境
refsection
来创建本地书目
\documentclass{beamer}
\usepackage[style=authoryear]{biblatex}
\addbibresource{biblatex-examples.bib}
\begin{document}
\begin{frame}
\fullcite{westfahl:space}
\end{frame}
\begin{frame}
\begin{refsection}
\nocite{knuth:ct}\printbibliography
\end{refsection}
\end{frame}
\end{document}