左侧有图片,右侧、上方和下方有文字

左侧有图片,右侧、上方和下方有文字

不久前我写过一篇包含这种模板的短文:

在此处输入图片描述

我现在正尝试重现此问题,因为我不再能访问该 LaTeX。尝试过使用 minipages 和经典图像代码,但无济于事。

我该如何重现这一点?右侧应放置一个简短的段落,左侧的图像带有一个小标题(最好带有图 1.1 编号),并在下面继续文本。

提前致谢!

答案1

首先,下面的代码或多或少重现了你想要完成的任务

\documentclass{article}
\usepackage{graphicx}
\usepackage[export]{adjustbox}
\usepackage{caption}

\usepackage{kantlipsum}   % Dummy text


\begin{document}
\kant[1][1]

\begin{figure}[tbh]
    \begin{minipage}[t]{0.48\textwidth}
        \includegraphics[width=\linewidth,valign=c]{example-image}
        \caption*{Caption of the image.}   % Remove star for a regular caption
        %\label{fig:my_label}
    \end{minipage}\hfill
    \begin{minipage}{0.48\textwidth}
        \kant[1][1-2]
    \end{minipage}
\end{figure}

\kant[1][2]
\end{document}

在此处输入图片描述

但是,我在你的截图中没有看到常规标题。因此,我使用了带星号的版本。如果你想要带标签的常规标题,例如“图 1。图片标题”,请删除星号并取消注释以下行

%\label{fig:my_label}

为了参考,请参考文本中的图像\ref{fig:my_label}

相关内容