如何使用“tcolorbox”创建如下所示的“示例”环境?

如何使用“tcolorbox”创建如下所示的“示例”环境?

在此处输入图片描述

如何使用“tcolorbox”包来创建如下图所示的“示例”环境?

答案1

我认为这里的关键点如下。

  • 您可以定义一个example框,以便示例本身就是盒子的一部分,而解决方案是降低部分。然后,在框内,您可以使用\tcblower切换到解决方案。
  • 您可以使用键before lower来设置框解决方案部分的标题。
  • 如果您希望有为示例编号的选项,则可以使用theorems库来定义框\newtcbtheorem。如果这样做,框环境的星号版本将没有编号。

所以我会用这样的东西

\documentclass{article}
\usepackage{tcolorbox}
\tcbuselibrary{theorems}
\newtcbtheorem{example}{Example}{
    theorem style=plain,
    arc=2mm,
    boxrule=.2mm,
    coltitle=black,
    colframe=blue!50!black,
    colback=blue!5!white,
    fonttitle=\sffamily\bfseries,
    coltitle=blue!50!black,
    before lower={\textcolor{blue!50!black}{\textsf{\textbf{Solution:}}}\ },
}{}
\begin{document}
\begin{example*}{}
The result (1.40) can be obtained by direct Taylor series expansion of \(1/\lvert\mathbf{x} - \mathbf{x}'\rvert\). Try to finish it by yourself.
\tcblower
From the Taylor series:
\[
\Phi(\mathbf{x}) = \Phi(0) + \mathbf{x} \cdot \nabla\Phi(0) + \frac{1}{2} \sum_{i=1}^3 \sum_{j=1}^3 x_i x_j \frac{\partial^2\Phi}{\partial x_i \partial x_j} + \cdots
\]
\end{example*}
\end{document}

答案2

请注意,我认为我不应该回答“为我做”。

您既没有提供代码,也没有提供任何导致您遇到困难的迹象,甚至没有提供任何提示,说明框中显示的哪些功能对您很重要。以下内容可能有用,也可能没用。(但您可以从软件包文档中获得至少同样有用的示例,并附有更好的注释。)

\documentclass{article}
\usepackage{tcolorbox}
\tcbuselibrary{xparse,skins,hooks}
\colorlet{bcol}{blue!50!black}
\NewTColorBox
{egbox}{ O {\linewidth} O {} }
{
  bocs,
  before upper app={\textsf{\textcolor{bcol}{Example: }}},
  before lower app={\textsf{\textcolor{bcol}{Solution: }}},
  halign lower=left,
  width=#1,
  #2,
}
\tcbset{%
  bocs/.style={%
    colframe=bcol,
    colback=gray!20,
    boxrule=.75mm,
    boxsep=.25mm,
    toptitle=.75mm,
    bottomtitle=.75mm,
    fonttitle=\sffamily,
  },
}
\begin{document}
\begin{egbox}
  Some stuff.
  \tcblower
  Some more stuff.
\end{egbox}
\begin{egbox}[.5\linewidth]
  Some stuff.
  \tcblower
  Some more stuff.
\end{egbox}
\begin{egbox}[.4\linewidth][colframe=red]
  Some stuff.
  \tcblower
  Some more stuff.
\end{egbox}
  
\end{document}

各种颜色和宽度的盒子

相关内容