我在该代码中包含了许多图形:
\begin{minipage}[b]{0.5\linewidth}
\makebox[\linewidth]{ % to center the image
\includegraphics[keepaspectratio=true,scale=0.5]{stationary2_A75.eps}}
\captionof{figure}{$A=7.5$}
\end{minipage}
问题是,与下面的行相比,第一行向右移动了。我认为这可能与我开始新行时的右移有关,那么我该如何避免在新行时向右移动呢?或者可能是其他原因?
答案1
\makebox[\linewidth]{...}
只有当你的图像更宽的如果不是\linewidth
,请使用
\begin{figure}[!htb]\centering
\includegraphics[width=0.48\linewidth]{stationary2_A75}%
\hfill
\includegraphics[width=0.48\linewidth]{stationary2_A76}%
\caption{$A=7.5$}
\end{figure}