Beamer 警告“pdfauthor”已被使用

Beamer 警告“pdfauthor”已被使用

我使用的是本文中提供的最小示例旧答案尽管如此,我仍然会遇到这种情况警告

Package hyperref Warning: Option 'pdfauthor' has already been used, setting the option has no effect on input line 12.

您能否建议我一个巧妙的解决方案来解决这个烦人的警告?提前谢谢。

答案1

您将所有\author\title等移至序言中。Beamer 将在文档开始时自动使用此信息来创建 pdf 的元数据。如果您仅在文档开始后使用它们,那么对于 Beamer 来说就太晚了。

\documentclass[presentation]{beamer}
%\let\Tiny\tiny
%\usepackage{hyperref}
\usetheme{Berkeley}

\author[A,B,C]{A\inst{1}  \and B\inst{2}  \and C\inst{2}}
\renewcommand{\thefootnote}{$\aleph$}


\title[Cross]{\large Experimental Studies %
\thanks{\scriptsize Project supported by foundation:  Supported by the National Nature Science Foundation}}

% Old style
%\author[A,B,C]{A$^1$,
%B$^1$
%and C$^2$}
\institute[Fluid Mechanics]{$^1$Department of Mechanics \& Engineering Science\\
$^2$College of Science}
\date[The second presentation, 2013]{The second presentation, 2013}
%\logo{\includegraphics[height=16pt]{picture/Fudanlog.PNG}}
\date[\initclock\tdtime]{\today}


\begin{document}


\begin{frame}
\titlepage
\end{frame}

\section{A section}
\subsection{A subsection}
\begin{frame}
  \frametitle{Frame title1}
  \framesubtitle{frame subtitle1}
  Some text s
\end{frame}
\end{document}

相关内容