在嵌套的 tcolorbox 中定位内框

在嵌套的 tcolorbox 中定位内框

我想将下面的内盒移到图中箭头所示的方向。是否可以调整内盒相对于外盒的位置?

在此处输入图片描述

\begin{tcolorbox}
  My outer box
  \begin{tcolorbox}
    My inner box
  \end{tcolorbox}
\end{tcolorbox}

答案1

\documentclass{article}
\usepackage[most]{tcolorbox}

\begin{document}

\begin{tcolorbox}
  My outer box
  \begin{tcolorbox}
    My inner box
  \end{tcolorbox}
\end{tcolorbox}

\begin{tcolorbox}[left=1mm, right=1mm]
  My outer box
  \begin{tcolorbox}
    My inner box
  \end{tcolorbox}
\end{tcolorbox}

\begin{tcolorbox}
  My outer box
  \begin{tcolorbox}[enlarge left by=-4mm, enlarge right by=-4mm, width=\linewidth+8mm]
    My inner box
  \end{tcolorbox}
\end{tcolorbox}

\end{document}

在此处输入图片描述

相关内容