我在枚举中使用 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}