一张幻灯片中有两个框架标题,每个标题占一列

一张幻灯片中有两个框架标题,每个标题占一列

我想要每列上方有两个标题框,如图所示:

在此处输入图片描述

\documentclass[12pt, aspectratio=169]{beamer}                   % Document class
\usetheme{Boadilla}
\usepackage[english]{babel}             % Set encoding
\usepackage{booktabs}                   % For table rules
\setbeamertemplate{caption}[numbered]   % Set caption to 
\useoutertheme[subsection=false]{miniframes}
%\setbeamercovered{transparent}
\setbeamertemplate{navigation symbols}{}

\setbeamertemplate{items}[default]

\setbeamertemplate{sections/subsections in toc}[default]

\begin{frame}{Literature Review}
\small
\vspace{-0.4cm}
    \begin{columns}
        \column{.5\textwidth}
        \begin{itemize}
         \setlength{\topsep}{0pt}
         \item<1-> M\&A literature overwhelmingly focuses on testing neoclassical and behavioural theories.
         \item<1-> Previous studies overlooked the dynamics of market power, overlooking post-M\&A firms relative position in terms of markups, share of profits or market share.
         \vspace{-0.3cm}
            \item<2-> Difficulties in coming out with reliable counterfactuals.
                \vspace{-0.1cm}
                \begin{itemize}
                    \item<4-> Post-M\&A assessment in terms of counterfactual based on theories to be tested.
                \end{itemize}
            
        \end{itemize}

        \vspace{-0.4cm}
        \column{.5\textwidth}
        \begin{itemize}
            \item<5-> There has been a bias in the periods studied:
            \begin{itemize}
                    \item<6-> \small Focused on Conglomerates M\&A Wave in the 1960s and on the 'Donwsize and Distribute' 1980s.
                \end{itemize}
            \item<7-> Corporate financialization explains lower capex (SVO, financial turn of investment) but no attention paid to M\&As.
            \item<8-> Adding a link between firm-level behaviour to sector- and macro-level trends to rising markups literature (Guitierrez and Philippon, 2019; Autor et al., 2020; De Loecker et al., 2020).
        \end{itemize}
    \end{columns}
\end{frame}
\end{document}

答案1

你可以像这样伪造名声:

\documentclass[12pt, aspectratio=169]{beamer}                   % Document class
\usetheme{Boadilla}
\usepackage[english]{babel}             % Set encoding
\usepackage{booktabs}                   % For table rules
\setbeamertemplate{caption}[numbered]   % Set caption to 
\useoutertheme[subsection=false]{miniframes}
\setbeamertemplate{navigation symbols}{}
\setbeamertemplate{items}[default]
\setbeamertemplate{sections/subsections in toc}[default]

\begin{document}

\begin{frame}
  \small
  \begin{columns}[T]
    \begin{column}{.5\textwidth}
      {\usebeamerfont{frametitle}\usebeamercolor[fg]{frametitle}Frametitle 1\par}
      \begin{itemize}
        \item<1-> M\&A literature overwhelmingly focuses on testing neoclassical and behavioural theories.
        \item<1-> Previous studies overlooked the dynamics of market power, overlooking post-M\&A firms relative position in terms of markups, share of profits or market share.
        \item<2-> Difficulties in coming out with reliable counterfactuals.
        \begin{itemize}
          \item<4-> Post-M\&A assessment in terms of counterfactual based on theories to be tested.
        \end{itemize}
      \end{itemize}
    \end{column}
    \begin{column}{.5\textwidth}
      {\usebeamerfont{frametitle}\usebeamercolor[fg]{frametitle}Frametitle 2\par}
      \begin{itemize}
        \item<5-> There has been a bias in the periods studied:
        \begin{itemize}
          \item<6-> \small Focused on Conglomerates M\&A Wave in the 1960s and on the `Donwsize and Distribute' 1980s.
        \end{itemize}
        \item<7-> Corporate financialization explains lower capex (SVO, financial turn of investment) but no attention paid to M\&As.
        \item<8-> Adding a link between firm-level behaviour to sector- and macro-level trends to rising markups literature (Guitierrez and Philippon, 2019; Autor et al., 2020; De Loecker et al., 2020).
      \end{itemize}
    \end{column}
  \end{columns}
\end{frame}

\end{document}

在此处输入图片描述

相关内容