将引用放入 Beamer 内的 superscript 中
我尝试在我的投影仪中引用一些作者。引用发生在框架标题内。它工作得很好,直到我想给它们上标。我尝试使用包 [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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我通过使用 natbib 包找到了答案,并正确使用它,特别是通过在序言中定义 bibliographystyle 并定义一个空白函数 newblock 以便很好地编译。
序言应如下所示:
不要忘记
\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:
Don't forget the
\citep{...}
and it should work fine.