其他选择

其他选择

我想问一下这个的逆问题如果你能够。

换句话说:使用 BibTeX,如何在上下文中引用参考文献(显示作者姓名),而不在文档末尾列出参考书目?

例如

\documentclass{beamer}
\begin{document}
text ..........

text...... \cite{patygore}

\bibliographystyle{plainnat}
\bibliography{biblio}
\end{document}

答案1

您可以使用从演示文稿中删除框架。以下代码生成如下所示的单帧:

在此处输入图片描述

\documentclass{beamer}
\usepackage{natbib}
\begin{document}

\begin{frame}
\cite{article-full}
\end{frame}

\begin{frame}<presentation:0>
\bibliographystyle{plainnat}
\bibliography{xampl}
\end{frame}

\end{document}

其他选择

如果切换到biblatex(要切换到 biblatex 该怎么做?) 是一个简单的选项,只需省略该\printbibliography语句即可。

\documentclass{beamer}
\usepackage[style=authoryear]{biblatex}
\addbibresource{biblatex-examples.bib}
\begin{document}
\begin{frame}
\textcite{aksin} \parencite{angenendt}
\end{frame} 
\end{document}

相关内容