图像/文本位置?

图像/文本位置?

tl;dr 我需要将一行文本移到图像下方,我该怎么做?

我有两组图像和描述,但它们没有按顺序出现;而是按以下顺序显示:

描述 1,描述 2,图片 1,图片 2

而不是描述 1、图片 1、描述 2、图片 2

代码在这里:

\documentclass[oneside]{book}
\begin{document}
\subsection{Begin subsection}
\noindent
- Point 1 under the first description\\
- Point 2 under the first description\\
\begin{figure}[htp]
\raggedleft %note: there's going to be another image next to this later
\includegraphics[width=10cm]{firstimage}
\end{figure}
Second description\\
\begin{figure}[htp]
\raggedright
\includegraphics[width=13cm]{secondimage}
\end{figure}
\end{document}

所有这些都在一页上,所以这不是问题。提前感谢您的帮助!

答案1

如果对你有用,请尝试以下操作:

\documentclass[oneside]{book}
\usepackage{graphicx,mwe}
\begin{document}
\subsection{Begin subsection}
\begin{figure}[htp]
\raggedleft %note: there's going to be another image next to this later
\includegraphics[width=5cm]{example-image-a}\\
\noindent
- Point 1 under the first description\\
- Point 2 under the first description\\
\end{figure} 
\begin{figure}[htp]
\raggedright
\includegraphics[width=6cm]{example-image-b}\\
Second description\\
\end{figure}
\end{document}

请注意,我已包含该mwe包。

我还必须改变图像的宽度,因为它们的组合宽度(10 + 13 厘米)大于信纸大小的宽度(21.59 厘米)。

我得到了以下输出:

我的输出

相关内容