如何在预定义主题的标题页中添加顾问

如何在预定义主题的标题页中添加顾问

我正在使用 metropolis 主题创建 beamer 演示文稿。我想在标题页左侧包含我的名字作为主要作者,在右侧包含一个名为“顾问”的列,其中包含我的顾问的姓名。类似于此图像:

在此处输入图片描述

这是一个非常基本的 MWE,不包含顾问部分:

\documentclass[10pt, aspectratio=169]{beamer}
\usetheme[progressbar=frametitle]{metropolis}
\usepackage[american]{babel}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}

\title{\textbf{Title}}
\author{Main author}
\date{}

\begin{document}

\maketitle

\end{document}

我正在努力思考如何在这里添加顾问专栏。

答案1

这似乎是一个相当 常见的 问题。无论如何,你可以尝试:

\documentclass[10pt, aspectratio=169]{beamer}
\usetheme[progressbar=frametitle]{metropolis}
\usepackage[american]{babel}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}

\title{\textbf{Title}}
\author[Author names]{%
    \parbox[t]{7cm}{%
        \textbf{Author} \\
        Affiliation
    }%
    \parbox[t]{7cm}{%
        \textbf{Advisors} \\
        1st Advisor \\
        2nd Advisor
    }%
}

\date{}

\begin{document}

\maketitle

\end{document}

在此处输入图片描述

请注意,您应该使用可选参数来\author包含作者姓名的非样式版本。

相关内容