我想构建一个可以这样调用的新环境:
\begin{Box}{*Title of Box*}
** Text **
** Math equations **
\end{Box}
它应具有以下特性:
- 框背景应有颜色。
- 框内的文字与边界应保持 3 - 5 毫米的距离。
- 重要提示:在页面末尾换行并继续下一页。
有人可以做到这一点吗?
答案1
这可以通过tcolorbox
我最喜欢的软件包之一来实现 (;-))
\documentclass{article}
\usepackage[most]{tcolorbox}
% Define a new box for this
\newtcolorbox[auto counter]{MyBox}[2][]{%
title={MyBox \thetcbcounter\ #2},
boxsep=1mm,
colback=white!40!yellow,
breakable,
#1
}
\usepackage{blindtext}
\begin{document}
\begin{MyBox}{My nice title box}
\blindtext
$E=mc^2$
\blindtext[3]
\end{MyBox}
\begin{MyBox}[width={0.5\textwidth},coltitle={blue}, colbacktitle={gray},colback={green!60!blue}]{My nice title box, but not so wide}
\blindtext
$E=mc^2$
\blindtext[3]
\end{MyBox}
\end{document}