在书中使用 beamercolorbox

在书中使用 beamercolorbox

如何在其他文档类别(例如文章或书籍)中使用 beamer 命令和环境(例如 beamercolorbox)?

在其他包或文档类中是否有 beamercolorbox 的替代品?

答案1

CTAN 刚刚发布了一个新包,可能正是您想要的。您需要正确安装 tcolorbox。以下 MWE

%% This MWE is an extract from 
%% tcolorbox-example.tex: an example for tcolorbox
%% Contained in the tcolorbox zip file

\documentclass{article}
\usepackage{tcolorbox}
\begin{document}

\begin{tcolorbox}[colback=blue!5,colframe=blue!75!black,title=My title]
  My box with my title.
\end{tcolorbox}

\begin{tcolorbox}[colback=yellow!5,colframe=yellow!75!black,title=My title]
  I can do this also with a title.
  \tcblower
  Lower part of my box.
\end{tcolorbox}

\begin{tcolorbox}[colback=yellow!10,colframe=red!75!black,title=Here I am]
  \input{\jobname_ex.tex}
\end{tcolorbox}

生产

示例 tcolorbox

\end{document}

相关内容