如何添加如附图所示的标题

如何添加如附图所示的标题

我想添加如下图所示的标题。如何实现?谢谢!

在此处输入图片描述

我尝试使用代码:

\center
\colorbox{yellow}{\color{black}Part I: Wigner matrices and a general Talagrand-type theorem}
\end{frame}```

答案1

beamer提供block环境。如果您未指定标题(空的强制参数),则表示将与您显示的内容相匹配:

在此处输入图片描述

\documentclass{beamer}

\usetheme{AnnArbor}
\usecolortheme{crane}

\begin{document}

\begin{frame}
  \frametitle{A frame title}
  
  \begin{block}{}
    \centering
    Part I: Wigner matrices and a general Talagrand-type theorem
  \end{block}
  
\end{frame}

\end{document}

答案2

您可以使用它tcolorbox来获得精美的盒子。

\documentclass[x11names,svgnames]{beamer}                                                 
%
\usepackage{tikz}
  \usetikzlibrary{%
    calc, arrows.meta, through, backgrounds, intersections, angles,
    quotes, shapes.geometric, decorations.text, bending, positioning,
    decorations.markings, decorations.footprints, snakes }
  \tikzset{>=Stealth}

\usepackage{tcolorbox}
\mode<presentation>{
                  
  \setbeamertemplate{navigation symbols}{}
}

  \tcbuselibrary{listings,skins}
  \tcbset{enhanced,drop fuzzy shadow}                                                     
                                                                                          
\begin{document}                                                                          
                                                                                          
\begin{frame}                                                                             
\frametitle{FrameTitle}                                                                   
                                                                                          
  \begin{tcolorbox}[drop shadow, colback=Cornsilk]                                        
    Part I: Wigner matrices and a general Talagrand-type theorem.                         
  \end{tcolorbox}                                                                         
                                                                                          
\end{frame}                                                                               
                                                                                          
\end{document}

在此处输入图片描述

相关内容