我们怎样才能有如下的脚注线?
作者姓名 (Inst) [空格] 标题 [空格] 幻灯片编号
标题可以位于作者详细信息和幻灯片编号之间吗?
\documentclass{beamer}
\usetheme{metropolis}
\setbeamertemplate{frame footer}{\insertshortauthor~(\insertshortinstitute) \hspace*{4cm} \insertshorttitle}
\setbeamerfont{page number in head/foot}{size=\tiny}
\setbeamercolor{footline}{fg=gray}
\author{names}
\institute{institute}
\begin{document}
\begin{frame}
content...
\end{frame}
\end{document}
答案1
您应该使用\hfill
而不是自定义空间。
\documentclass{beamer}
\usetheme{metropolis}
\setbeamertemplate{frame footer}{\insertshortauthor~(\insertshortinstitute)\hfill\insertshorttitle}
\setbeamerfont{page number in head/foot}{size=\tiny}
\setbeamercolor{footline}{fg=gray}
\author{names}
\institute{institute}
\title{Quack}
\begin{document}
\begin{frame}
content...
\end{frame}
\end{document}