使用 Latex 中的 Wrapfig 以适当的方式放置图像和文本

使用 Latex 中的 Wrapfig 以适当的方式放置图像和文本

我尝试wrapfig在 Latex 中放置文本和图像。但是,我无法正确遵循语法,因此对齐方式不准确。

\usepackage{graphicx,wrapfig,lipsum}
\begin{document}
\heading{Safe SSL}
    
    \begin{wrapfigure}{r}{8cm}
    \caption{Safe SSL check}\label{wrap-fig:1}
    \includegraphics[width=5.5cm]{SafeSSL.png}
    \end{wrapfigure} 
    
    {We trained both the semi-supervised and supervised models by splitting the data with varying test set sizes and then compared the efficiency of SSL to the supervised approach and concluded that the "Safe SSL" assumption holds as it performed better for the semi-supervised model at the split test data.
    \par}

\end{document}

结果

我得到了以下渲染结果。有什么解决办法吗?

相关内容