我正在尝试控制使用tcolorbox
包创建的盒装插入件的位置。但是,我无法完全控制图形和表格的框的位置,例如使用例如htpb!
。以下是重现此问题的示例:
\documentclass{article}
\usepackage{tcolorbox}
\usepackage{lipsum}
\begin{document}
\lipsum[2-6]
\begin{tcolorbox}[float=htpb!, title=A box]
This is a box!\\
With a couple lines.
\end{tcolorbox}
Some more text.
\end{document}
我希望该框出现在“更多文本”之前。
答案1
没有必要让此框浮动(我以前还不需要它tcolorbox
)。只需删除该float
选项即可。
\documentclass{article}
\usepackage{tcolorbox}
\usepackage{lipsum}
\begin{document}
\lipsum[2-6]
\begin{tcolorbox}[title=A box]
This is a box!\\
With a couple lines.
\end{tcolorbox}
Some more text.
\end{document}