Put quotes in inscriptions inside Beamer

I am trying to bring some authors to my ray. Quoting occurs in a frame. It works fine until I want to decrypt them. I am trying with a package [super]{cite}and it is not working. I get some compilation issues:

! 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
+3
source share
1 answer

I found the answer using the natbib package and am using it correctly, especially by specifying the bibliography in the preamble and defining an empty newblock to compile nicely.

The preamble should look like this:

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

Do not forget \citep{...}, and it should work fine.

+2
source

All Articles