答案1
这大概就是您所想的吗?
这可以通过使用垂直空间并创建一条线()来实现\hrule
,但需要对距离等进行一些调整。以下是代码:
\documentclass[11pt]{beamer}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{lmodern}
\usetheme{default}
\begin{document}
\begin{frame}
\vspace{10mm} % some space from the top
{\Huge \color{blue}Field of application}\\
\vspace{2mm} % some sapc between the text and the line
\hrule % the line itself
\vspace{2mm} % some space between the line and the following text
{\Large \color{darkgray}Referential -- Exclusions -- Non-applications}
\end{frame}
\end{document}