作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我找不到为什么我的 beamer 中的引用书目没有显示数字引用,但是这篇论文的符号......有什么帮助吗?谢谢 biblio photo
\usepackage[backend=biber,style=numeric, citestyle=ieee]{biblatex}
\addbibresource{ref.bib} %Imports bibliography file
\section{Bibliographie}
\begin{frame}[t,allowframebreaks]
\frametitle{Bibliographie}
\printbibliography[heading=none]
%\bibliography{ref}
\end{frame}
最佳答案
大约一年前,我做了一些更改以自动显示数字 biblatex 样式的 biblabel ( 21cf3d )。因此,使用 beamer v3.58 或更新版本,您无需执行任何操作:
\documentclass{beamer}
\usepackage[backend=biber,style=numeric, citestyle=ieee]{biblatex}
\addbibresource{biblatex-examples.bib} %Imports bibliography file
\begin{document}
\section{Bibliographie}
\begin{frame}[t,allowframebreaks]
\frametitle{Bibliographie}
\nocite{knuth:ct}
\printbibliography[heading=none]
\end{frame}
\end{document}
如果你有旧版本,你需要手动打开它:
\documentclass{beamer}
\usepackage[backend=biber,style=numeric, citestyle=ieee]{biblatex}
\addbibresource{biblatex-examples.bib} %Imports bibliography file
\setbeamertemplate{bibliography item}{\insertbiblabel}
\begin{document}
\section{Bibliographie}
\begin{frame}[t,allowframebreaks]
\frametitle{Bibliographie}
\nocite{knuth:ct}
\printbibliography[heading=none]
\end{frame}
\end{document}
关于latex - 在我的 beamer 演示文稿上打印引用书目时出现问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68792580/
我是一名优秀的程序员,十分优秀!