如何在参考书目中获取相应的索引引用?它出现在正文中,但没有出现在给定的参考文献中。
注意:我尝试手动使用 \footnote 命令,但出现的不是数字,而是一个字母。
\documentclass[dvipsnames]{beamer}
\begin{document}
\begin{frame}
This is my reference \cite{A}.
\par\noindent\rule{5cm}{0.4pt}
\begin{thebibliography}{}
\bibitem{A} {\tiny Author
\newblock \emph{Title}
\newblock Journal (2021).}
\end{thebibliography}
\end{frame}
\end{document}
答案1
您可以使用:
\setbeamertemplate{bibliography item}{[\arabic{enumiv}]}
或者 ...
\setbeamertemplate{bibliography item}{\insertbiblabel}
...如果您使用自定义标签,那么这种方法会更好;\bibitem[foo]{SK}
而如果您想更改引用中的方括号,那么前者会更好。
梅威瑟:
\documentclass{beamer}
\setbeamertemplate{bibliography item}{[\arabic{enumiv}]}
\begin{document}
\begin{frame}
Foo \cite{SK} and \cite{AB}.
\begin{thebibliography}{10}
\bibitem{AB} This is AB reference ...
\bibitem{SK} This is SK reference ...
\end{thebibliography}
\end{frame}
\end{document}