调整文本的彩色框

调整文本的彩色框

你好,我的彩色框有问题,它无法调整我的文本,我该如何解决这个问题?

在此处输入图片描述

在此处输入图片描述

答案1

只需删除该选项square并使用该选项hbox调整框的宽度以适应文本,例如:

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

\begin{document}
    \begin{tcolorbox}[title=Regular box]
        this is just some text
    \end{tcolorbox}
    
    \begin{tcolorbox}[title=A box with hbox, hbox ]
        this is just some text
    \end{tcolorbox}
\end{document}

给出

在此处输入图片描述

请注意,hbox只有在文本宽度小于的情况下才有意义。如果文本较长,则可以手动修复\textwidth的宽度(例如,将 放在环境中)。tcolorboxtcolorboxminipage

相关内容