重新创建这个特殊的盒子

重新创建这个特殊的盒子

我对重新制作这个特殊的盒子很感兴趣。我想自己做但是我不知道重新创建它需要什么样的工具(包等)。

这个盒子并不难。我担心的是蓝色字母。可能是花哨的字体?

在此处输入图片描述

答案1

在此示例中,我使用了 tcolorbox 和 xstring。以下是一些有用的字体: 字体目录

\documentclass[x11names]{article}

\usepackage{tcolorbox}
\usepackage{xstring}

\usepackage{pbsi}
\usepackage[T1]{fontenc}


\newcommand{\exampleBox}[2]{
  \begin{tcolorbox}[
    colframe=Blue2,
    colback=white,
    top=2pt,
    bottom=2pt,
    left=2pt,
    right=2pt,
    boxrule=1pt
    ]
    \StrSplit{#1}{1}{\firstLetter}{\otherLetters}
    \textcolor{RoyalBlue4}{
      \bsifamily\Huge\MakeUppercase\firstLetter}%
    \textcolor{black}{
      \hspace{-2.2ex}
      \fontfamily{phv}\bfseries\Large
      \scshape\underline{ \textcolor{RoyalBlue1}{\otherLetters}}}

    \vspace{2ex}

    #2

  \end{tcolorbox}
}

\begin{document}

\exampleBox{writing about mathematics}{
  \textcolor{Blue2}{\textbf{Extending the example}}
  bla bla bla...
}
\end{document}

这是我的结果: 在此处输入图片描述

希望能够帮助到您。

相关内容