答案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}