tcolorbox 枚举中的垂直对齐

tcolorbox 枚举中的垂直对齐

我在枚举中使用 tcolorbox。我希望第一行与枚举标签位于同一基线上。(在下面的示例中,我希望 1. 和 Hello 的基线相同。)有办法实现这一点吗?

我尝试了不同的box align设置,但似乎没有效果。

\documentclass{article}

\usepackage{tcolorbox}
\tcbuselibrary{breakable}

\begin{document}
\begin{enumerate}
\item
  \begin{tcolorbox}[box align=top, size=fbox]
    Hello
    \begin{itemize}
    \item A
    \item B
    \end{itemize}
  \end{tcolorbox}

\end{enumerate}
\end{document}

在此处输入图片描述

相关内容