tcolorbox 中 flushleft 的相同项目缩进

tcolorbox 中 flushleft 的相同项目缩进

我想使用 itemize(或 enumerate),其中某些项目使用的环境基本上相当于 tcolorbox 内的 flushleft。它们会为项目标记获得另一个缩进,如此处的 #4 所示。我可以通过先添加一些空文本来“修复”它,就像 #5 一样,但我希望得到更好的修复(并了解会发生什么)。

\documentclass{article}
\usepackage{tcolorbox}

\begin{document}
\begin{enumerate}
\item normal
\item \begin{tcolorbox}[box align=center] box \end{tcolorbox}
\item \begin{flushleft} flushleft \end{flushleft}
\item
  \begin{tcolorbox}[box align=center]
    \begin{flushleft} flushleft inside box \end{flushleft}
  \end{tcolorbox}
\item
  \mbox{}\vspace{-\baselineskip}
  \begin{tcolorbox}[box align=center]
    \begin{flushleft}
      fixed
    \end{flushleft}
  \end{tcolorbox}
\end{enumerate}
\end{document}

在此处输入图片描述

相关内容