sharelatex beamer 演示模板中的文内引用

sharelatex beamer 演示模板中的文内引用

我想在投影仪中使用一些文内引用。

\documentclass{beamer}
\usepackage{pgfplots}
\pgfplotsset{width=8.5cm,compat=1.9}

\usetheme{default}
\begin{document}
\begin{frame}
Einstein-Maxwell field equation........
\end{frame}
\begin{frame}[allowframebreaks]
  \frametitle<presentation>{Bibliography}

  \begin{thebibliography}{10}

  \beamertemplatebookbibitems


  \bibitem{Tolman, R. C. 1939}
    Tolman, R. C.
    \newblock {\em On massive stellar cores}.
    \newblock Phys. Rev., 55, 364, doi:\href{http://dx.doi.org/10.1103/PhysRev.55.364}{10.1103/PhysRev.55.364}

\end{frame}
\end{document}

如果我想在爱因斯坦-麦克斯韦场方程线后使用 Tolman 引文,那么命令应该是什么? \cite{Tolman, RC 1939} 不起作用。请帮忙

答案1

您的密钥仅需包含允许的字符,例如常规字母、数字等。

例如:

\documentclass{beamer}

\usetheme{default}
\begin{document}
  \begin{frame}
    Einstein-Maxwell field equation\dots \cite{tolman1939}
  \end{frame}
  \begin{frame}[allowframebreaks]
    \frametitle<presentation>{Bibliography}
    \begin{thebibliography}{10}
      \beamertemplatebookbibitems
      \bibitem{tolman1939}
      Tolman, R. C.
      \newblock {\em On massive stellar cores}.
      \newblock Phys. Rev., 55, 364, doi:\href{http://dx.doi.org/10.1103/PhysRev.55.364}{10.1103/PhysRev.55.364}
    \end{thebibliography}
  \end{frame}
\end{document}

正确地生成了链接到参考书目中的相关条目的引文:

引文

相关内容