在 Beamer 演示文稿中添加参考资料

在 Beamer 演示文稿中添加参考资料

我想在我的幻灯片中添加参考资料,像这样

在此处输入图片描述

我尝试如下但无法编译

\documentclass{beamer}
 \usepackage[T1]{fontenc}
 %-----
 \usepackage{amsmath,amssymb,amsfonts} %math
 \usepackage{graphicx}
 \usepackage{color}
  \usetheme{Madrid}

  \begin{document}

  \begin{frame}{}

  \beamertemplatearticlebibitems
 \begin{thebibliography}{10}
 \bibitem{V. M$\ddot{u}$ller, and A. Soltysiak}
 \alert{V. M$\ddot{u}$ller, and A. Soltysiak}
  \newblock  {Spectral radius formula for commuting Hilbert space operators}
  \newblock {\em Studia Math.103. (1992), 329-333}.
  \end{thebibliography}

 \beamertemplatearticlebibitems
 \begin{thebibliography}{10}
 \bibitem{M. Ch$\bar{o}$ and W. $\grave{Z}$elazko}
 \alert{M. Ch$\bar{o}$ and W. $\grave{Z}$elazko}
  \newblock  {On geometric spectral radius of commuting $n$-tuples of 
  operators}
 \newblock {\em Hokkaido Math. J., 21(2): 251-258, 1992}.
 \end{thebibliography}
   \end{frame}

 \end{document} 

答案1

两个问题:

  • 不要使用多个thebibliography环境,而是将所有 bibitem 放在同一个环境中

  • 您不应尝试用数学符号模拟变音符号和其他特殊字符。例如,ü 应写为\"u(或使用 babel 表示更短的符号)我不知道您在第二个 bibitem 中尝试写入哪些字母,所以我只是用 o 和 Z 替换它们,请自行查找。

离题了,但是您不需要\usepackage{graphicx}使用\usepackage{color}beamer。


\documentclass{beamer}
\usepackage[T1]{fontenc}
%-----
\usepackage{amsmath,amssymb,amsfonts} %math
%\usepackage{graphicx}
%\usepackage{color}
\usetheme{Madrid}

\begin{document}

\begin{frame}

\begin{thebibliography}{10}
\bibitem{mueller92}
\alert{V. M\"uller, and A. Soltysiak}
\newblock  {Spectral radius formula for commuting Hilbert space operators}
\newblock {\em Studia Math.103. (1992), 329-333}.

\bibitem{cho92}
\alert{M. Cho and W. Zelazko}
\newblock {On geometric spectral radius of commuting $n$-tuples of  operators}
\newblock {\em Hokkaido Math. J., 21(2): 251-258, 1992}.
\end{thebibliography}
\end{frame}

\end{document} 

在此处输入图片描述

相关内容