从投影仪幻灯片的页脚中删除作者和标题(马德里主题)

从投影仪幻灯片的页脚中删除作者和标题(马德里主题)

在此处输入图片描述

我正在使用马德里主题编写一份 Beamer 演示文稿,我想从幻灯片的脚注中删除作者和标题名称。该怎么做?

这是我的 MWE:

           \documentclass{beamer}
           \usetheme{Madrid}
           \usepackage[utf8]{inputenc}
           \usepackage{appendix}
           \usepackage[numberedbib]{apacite}
           \renewcommand\bibsection{\section[]{\refname}}
           \renewcommand\bibliographytypesize{\tiny}
           \usepackage{textpos}
           \usepackage{eurosym}
           \usepackage{tikz}
           \usetikzlibrary{shapes,arrows,positioning}
           \usetikzlibrary{positioning}

           \title{Some title}

          \author{guy1  \and guy2  \\
            guy3  \and guy4 }


          \date{Florence, June 13\textsuperscript{th} 2018}

          \begin{document}

         \begin{frame}[plain]
          \titlepage
          \end{frame}

           \begin{frame}{Hallo}
          some nice text
          \end{frame}

          \end{document}

答案1

快速解决方案:使用以下方法为 footline 定义一个空的替代方案\title[]{Some title}

(我无法编译你的 MWE 并且必须删除\renewcommand\bibsection{\section[]{\refname}}

           \documentclass{beamer}
           \usetheme{Madrid}
           \usepackage[utf8]{inputenc}
           \usepackage{appendix}
           \usepackage[numberedbib]{apacite}
%           \renewcommand\bibsection{\section[]{\refname}}
           \renewcommand\bibliographytypesize{\tiny}
           \usepackage{textpos}
           \usepackage{eurosym}
           \usepackage{tikz}
           \usetikzlibrary{shapes,arrows,positioning}
           \usetikzlibrary{positioning}

           \title[]{Some title}

          \author[]{guy1  \and guy2  \\
            guy3  \and guy4 }


          \date{Florence, June 13\textsuperscript{th} 2018}

          \begin{document}

         \begin{frame}[plain]
          \titlepage
          \end{frame}

           \begin{frame}{Hallo}
          some nice text
          \end{frame}

          \end{document}

相关内容