beamer 中的引用和参考书目格式

beamer 中的引用和参考书目格式

当我在 Beamer 中引用参考文献时,它们会列出作者,我只想让它给出一个数字。这是我正在使用的代码,这是我的参考文献和引文当前的显示方式。

文档中参考书目格式的相关代码:

%--------------------------------------------%

\documentclass[handout,t]{beamer}

\setbeamertemplate{bibliography item}{\insertbiblabel}

\usepackage[alf]{abntex2cite}
\usepackage[portuges]{babel}

\usepackage[utf8]{inputenc}



\begin{frame}
\bibliography{document}
\end{frame}

我正在使用 .bib sep 文件作为参考书目,其插入方式如下:

@book{durst2008fluid,
title={Fluid mechanics: an introduction to the theory of fluid flows},
author={Durst, Franz},
year={2008},
publisher={Springer Science \& Business Media}
}

在此处输入图片描述 在此处输入图片描述

答案1

使用num选项代替alf数字引用:

%--------------------------------------------%

\documentclass[handout,t]{beamer}

\setbeamertemplate{bibliography item}{\insertbiblabel}

\usepackage[num]{abntex2cite}
\usepackage[portuges]{babel}

\usepackage[utf8]{inputenc}

\begin{filecontents*}[overwrite]{\jobname.bib}
@book{durst2008fluid,
title={Fluid mechanics: an introduction to the theory of fluid flows},
author={Durst, Franz},
year={2008},
publisher={Springer Science \& Business Media}
}
\end{filecontents*}

\begin{document}

\begin{frame}
\cite{durst2008fluid}
\bibliography{\jobname}
\end{frame}

\end{document}

在此处输入图片描述

相关内容