将框与文本垂直对齐

将框与文本垂直对齐

我想要按如下方式对齐文本和框: 在此处输入图片描述

感谢您的帮助 !

答案1

\documentclass{article}
\usepackage{tcolorbox}
\usepackage{wrapfig}
\usepackage{lipsum}
\tcbset{colback=red!5!white,colframe=red!75!black}
\begin{document}
\begin{wrapfigure}[10]{r}[10pt]{6cm}
\begin{tcolorbox}[width=0.9\linewidth,title=Why one should not just upload a
screenshot?]
Solutions may depend on the packages you're using, the document class etc. So it
is to your own benefit to provide some MWE.
\end{tcolorbox}
\end{wrapfigure}
\lipsum[1]
\end{document}

在此处输入图片描述

相关内容