如何在 Fibeamer 主题的标题页中添加日期和机构隶属关系?

如何在 Fibeamer 主题的标题页中添加日期和机构隶属关系?

Fibeamer Beamer 主题

这个主题只有演示文稿的标题、副标题和作者姓名。我想添加日期和所属机构。谢谢您的帮助。

documentclass{beamer}
\usetheme[microtype,faculty=fsps]{fibeamer} 
\author{Karthik}
\title{Title of the document}
\date{8.10.2017}
\institute{My institute}
\begin{document}
\maketitle
\end{document}

我从 Overleaf 中获取了原始主题的样式文件 - 可以访问这里。编辑它以删除大学徽标。我的输出文件如下所示。 在此处输入图片描述

答案1

您可以定义自己的标题页,并将缺失的信息添加到您想要的任何位置。在下面的示例中,我在作者之后添加了它:

\documentclass{beamer}
\usetheme[microtype,faculty=fsps]{fibeamer} 
\author{Karthik}
\title{Title of the document}
\date{8.10.2017}
\institute{My institute}

\makeatletter
\setbeamertemplate{title page}{%
  % This is slide 0
  \setcounter{framenumber}{0}

  % Input the university logo
  \begin{tikzpicture}[
    remember picture,
    overlay,
    xshift=0.5\fibeamer@lengths@logowidth,
    yshift=0.5\fibeamer@lengths@logoheight
  ]
    \node at (0,0) {
      \fibeamer@includeLogo[
        width=\fibeamer@lengths@logowidth,
        height=\fibeamer@lengths@logoheight
      ]};
  \end{tikzpicture}

  % Input the title
  \usebeamerfont{title}%
  \usebeamercolor[fg]{title}%
  \begin{minipage}[b][2\baselineskip][b]{\textwidth}%
    \raggedright\inserttitle
  \end{minipage}
  \vskip-.5\baselineskip

  % Input the dashed line
  \begin{pgfpicture}
    \pgfsetlinewidth{2pt}
    \pgfsetroundcap
    \pgfsetdash{{0pt}{4pt}}{0cm}

    \pgfpathmoveto{\pgfpoint{0mm}{0mm}}
    \pgfpathlineto{\pgfpoint{\textwidth}{0mm}}

    \pgfusepath{stroke}
  \end{pgfpicture}
  \vfill
  % Input the subtitle
  \usebeamerfont{subtitle}%
  \usebeamercolor[fg]{subtitle}%
  \begin{minipage}{\textwidth}
    \raggedright%
    \insertsubtitle%
  \end{minipage}\vskip.25\baselineskip

  % Input the author's name
  \usebeamerfont{author}%
  \usebeamercolor[fg]{author}%
  \begin{minipage}{\textwidth}
    \raggedright%
    \insertauthor\newline%
    \insertinstitute\newline%
    \insertdate%
  \end{minipage}%
}
\makeatother

\begin{document}
\maketitle
\end{document}

在此处输入图片描述

相关内容