如何创建由两部分组成的框架

如何创建由两部分组成的框架

我正在尝试创建一个由两个部分组成的框架。两者如下图所示连接。我想用它来写任何我想写的东西,而且我不需要任何计数器。我想自己做计数器。我试过使用定理框,但这不是我想要的。

在此处输入图片描述

我希望能够单独使用其中的这个定理计数器。定理的高级分层计数

所以,只想做没有计数器的盒子。

谢谢

答案1

tcolorbox 包(https://ctan.org/pkg/tcolorbox) 可能可以完成您想做的所有事情。以下是示例:

\documentclass[english,11pt,a5paper]{article}
\usepackage{tcolorbox}
\tcbuselibrary{skins,breakable}

\newtcolorbox{MyQuestion}[2][]{%
    enhanced, breakable, 
    title style={green!30}, % background color of the top field
    colback=red!5,        % background color of the bottom field
    colframe=blue!65,       % color of the frame
    width=\textwidth,       % width of the box
    %
    sharp corners,          % or use `arc=6pt` instead of `sharp corners`  
    %
    boxsep=5pt,             % space around the title text
    left=6pt,right=6pt,     % spacing of text inside the box
    top=5pt,bottom=5pt,  
    %
    bottomrule=3pt, toprule=5pt,  % thicknesses of various lines
    leftrule=1pt, rightrule=1pt,
    titlerule=1pt, 
    %
    title={\color{red}#2}, 
    #1                      % everything that is inside [] of \begin{MyQuestion}[]
}

\begin{document}
    \begin{MyQuestion}{%
        Question 1. So, I was taking a walk the other day. 
        And I see a woman pacing up and down ...
    }
        Solution:  ... \\
    \end{MyQuestion}
\end{document}

看起来像这样:

在此处输入图片描述

我特意选择了几种不同的颜色以便于更改它们。

即使您说您将“手动”处理计数器,但了解 tcolorboxes 还支持环境的自定义计数器也可能会有所帮助(只需在上面给出的链接中找到的 tcolorbox 文档中搜索“计数器”即可)。

相关内容