表格列的彩色框架

表格列的彩色框架

我有一个问题,我想在 Beamer 中制作一个双面框架。它工作得很好,但我需要在表格的右列周围加一个边框。它应该只围绕那一侧的彩色背景。(这不包含在这段代码中,因为它需要额外的命令,而这些命令对于该代码来说不是必需的)

编辑:请注意,我只关心周围的框架

希望有人能帮助我!提前谢谢!

\documentclass[14pt, aspectratio=169, usenames, dvipsnames]{beamer}

\usepackage{tabularx}
\setlength{\tabcolsep}{0.5em}

\begin{document}
\begin{frame}{steps to work through}

\setlength{\tabcolsep}{-0.5cm}
\begin{tabular*}{\textwidth}{p{8cm} p{8cm}}
    \raisebox{-.89\height}
    &
    <2->{\small
        \begin{itemize}
            \item<3-> Step 1
            \item<4-> Step 2
            \item<5-> Step 3
            \item<6-> Step 4
        \end{itemize}
    }
\end{tabular*}
\end{frame} 
\end{document}

答案1

我不太明白这个问题,但让我试试。这是你想要的吗?

在此处输入图片描述

\documentclass[14pt, aspectratio=169, usenames, dvipsnames]{beamer}

\usepackage{tcolorbox}
\usepackage{tabularx}
\setlength{\tabcolsep}{0.5em}

\begin{document}
\begin{frame}{steps to work through}

\setlength{\tabcolsep}{-0.5cm}
\begin{tabular*}{\textwidth}{p{8cm} p{8cm}}
    \raisebox{-.89\height}
    &
    <2->{\begin{tcolorbox}\small
        \begin{itemize}
            \item<3-> Step 1
            \item<4-> Step 2
            \item<5-> Step 3
            \item<6-> Step 4
        \end{itemize}\end{tcolorbox}
    }
\end{tabular*}
\end{frame} 
\end{document}

相关内容