将引用放入 Beamer 内的 superscript 中

发布于 2024-10-21 22:12:16 字数 404 浏览 2 评论 0原文

我尝试在我的投影仪中引用一些作者。引用发生在框架标题内。它工作得很好,直到我想给它们上标。我尝试使用包 [super]{cite} 但它不起作用。我遇到一些编译问题:

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

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

pdflatex example
bibtex example
pdflatex example
pdflatex example

I try do to cite some authors into my beamer. The citation takes place within a frametitle. It works perfectly fine until I want to superscript them. I try with package [super]{cite} and it doesn't work. I get some compilation problems:

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

To compile my work, i used the following bash:

pdflatex example
bibtex example
pdflatex example
pdflatex example

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

凡尘雨 2024-10-28 22:12:16

我通过使用 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{...} 并且它应该可以正常工作。

I found the answer by using the package natbib and correctly use it especially by defining the bibliographystyle into the preamble and to define a blank function newblock in order to compile nicely.

The preamble should look like:

\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}
 ...

Don't forget the \citep{...} and it should work fine.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文