如何将两张不同的图片并排放置?

如何将两张不同的图片并排放置?

可能重复:
两个并排的身影

如何将两张不同的图片并排放置?

我正在使用图形环境。我的代码是:

\begin{figure}[h!]
\centering
\includegraphics[scale=0.2,keepaspectratio=true]{fase5.pdf}
\caption{Figura experimental. Nome fase4.pdf}
\label{fase1}
\end{figure}

在@flh 回复之后我尝试了下面的代码但失败了。

\begin{figure}[h!]
\centering
\includegraphics{left}[scale=0.2,keepaspectratio=true]{fase5.pdf}
\caption{Figura experimental. Nome fase4.pdf}
\label{fase1}
\includegraphics{rigth}[scale=0.2,keepaspectratio=true]{fase5.pdf}
\caption{Figura experimental. Nome fase4.pdf}
\label{fase2}
\end{figure}

答案1

您可能对@lfh 的“左”和“右”的本意感到困惑。以下 MWE(最小工作示例)详细解释了该过程。该设置为每个图形分配了宽度0.48\textwidth;更改此设置以满足您的需求。

\documentclass{article}
\usepackage[demo]{graphicx} % remove 'demo' option for production version of file
\begin{document}

\begin{figure}[h!]
\begin{minipage}[t]{0.48\textwidth}
\includegraphics[width=\linewidth,keepaspectratio=true]{fase4.pdf}
\caption{Figura experimental}
\label{fase1}
\end{minipage}
\hspace*{\fill} % it's important not to leave blank lines before and after this command
\begin{minipage}[t]{0.48\textwidth}
\includegraphics[width=\linewidth,keepaspectratio=true]{fase5.pdf}
\caption{Altra figura experimental}
\label{fase2}
\end{minipage}
\end{figure}
\end{document}

在此处输入图片描述

答案2

从这个开始:

\begin{figure}
\includegraphics{left}
\includegraphics{right}
\end{figure}

这将在同一张图中生成两张图片。如果您希望每张图片对应一张图,则可能需要使用两个小页面。

相关内容