将“tcolorbox”包中的“dot”更改为“dash”

将“tcolorbox”包中的“dot”更改为“dash”

我使用tcolorbox下面显示的包创建了一个盒子:

在此处输入图片描述

现在我想将“dot”改为“dash”。我该怎么做?

答案1

number freestyle我们可以在定义环境时使用该选项tcolorbox

以下是一个例子:

\documentclass{article}
\usepackage[theorems]{tcolorbox}
\newtcbtheorem[number freestyle=
                      \noexpand\thesubsection-\noexpand \arabic{\tcbcounter}]
             {example}{Example}{colbacktitle=green!50!black}{exp}

\renewcommand{\thesubsection}{\thesection-\arabic{subsection}} % for the dash in 
                                                               % the subsection number
\begin{document}
\section{First section}
\section{second section}
\subsection{First subsection}
\begin{example}{}{example1}
This is an example
\end{example}
\end{document}

在此处输入图片描述

相关内容