gpt4 book ai didi

latex - 在 Beamer 中将引用放在上标中

转载 作者:行者123 更新时间:2023-12-04 17:16:38 28 4
gpt4 key购买 nike

我尝试在我的 beamer 中引用一些作者。引用发生在 frametitle 中。在我想给它们加上上标之前,它工作得很好。我尝试使用包 [super]{cite} 但它不起作用。我遇到了一些编译问题:

! Undefined control sequence.
\beamer@todo ...ust \edef \inserttocsectionnumber
{\the \beamer@tempcount }\

为了编译我的作品,我使用了以下 bash:

pdflatex example
bibtex example
pdflatex example
pdflatex example

最佳答案

我通过使用包 natbib 找到了答案并正确使用它,特别是通过在序言中定义 bibliographystyle 并定义一个空白函数 newblock 以便很好地编译。

序言应该是这样的:

\documentclass[pdf,10pt]{beamer}

\usepackage[sort&compress,comma,super]{natbib}
\bibliographystyle{apalike} % Or your specific bibliographystyle

\def\newblock{} % To avoid a compilation error about a function \newblock undefined

\begin{document}
...

不要忘记 \citep{...} 它应该可以正常工作。

关于latex - 在 Beamer 中将引用放在上标中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5311680/

28 4 0