我们如何才能创造这样的锻炼环境:

我们如何才能创造这样的锻炼环境:

我们如何才能创造这样的锻炼环境: 在此处输入图片描述

我试过

\definecolor{橙色}{rgb}{1,0.7,0}

\fboxset{圆形,边框颜色=橙色}

但这并不成功。

答案1

在以下示例中,我使用了包\newtcbtheorem中的tcolorbox元素。间距、颜色、编号方案等当然可以根据您的需要进行进一步调整:

在此处输入图片描述

\documentclass{report}

\usepackage[most]{tcolorbox}
\newtcbtheorem[auto counter, number within=chapter,]{mydef}{Definition}%
              {enhanced jigsaw,% 
               sharp corners,%
               boxrule=0pt,%
               fonttitle=\color{orange}\bfseries,%
               colback=orange!20!white,%
               colbacktitle=orange!20!white,%
               borderline north={2pt}{0pt}{orange},%
               borderline south={2pt}{0pt}{orange},%
               theorem style=plain
               }{th}

    
    
\begin{document}

\chapter{chapter title}

\begin{mydef}{}{label}
contents
\end{mydef}

\end{document} 

相关内容