我想在使用 metropolis 主题的幻灯片的框架标题下方添加一条水平蓝线。它应该覆盖整个宽度。
梅威瑟:
\documentclass{beamer}
\usetheme{metropolis}
\begin{document}
\begin{frame}{Title without line}
\end{frame}
\end{document}
你能帮助我吗?
答案1
卑鄙的伎俩:滥用进度条
\documentclass{beamer}
\usetheme[progressbar=frametitle]{moloch}% modern fork of the metropolis theme
\setbeamercolor{progress bar}{fg=blue,bg=blue}
\makeatletter
\setlength{\moloch@progressinheadfoot@linewidth}{3pt}
\makeatother
\begin{document}
\begin{frame}
\frametitle{Title without line}
\end{frame}
\end{document}