我的文本按宽度对齐,这是理所当然的。但是添加图片后,它的左右边框就变得不正确了。
以下是代码片段:
\section{Samples}
\subsection{Schedule Application }
...First subsection text1 (see Fig.1)
\vskip 1em
\centering
\begin{figure}[H]
\includegraphics[width=0.425\textwidth]{Schedule4.eps}
\caption{Schedule application scheme}
\label{fig_sim2}
\end{figure}
...First subsection text2 (see Fig.2)
\vskip 1em
\begin{figure}[H]
\includegraphics[width=0.425\textwidth]{ScheduleForms.eps}
\caption{Schedule application UI form}
\label{fig_sim2}
\end{figure}
\vskip 1em
\subsection{Application with authorization}
\vskip 1em
...Second subsection text1
\vskip 1em
\begin{figure}[H]
\includegraphics[width=0.425\textwidth]{Volunteer.eps}
\caption{Application with authorization scheme}
\label{fig_sim}
\end{figure}
...Second subsection text2
\vskip 1em
\begin{figure}[H]
\includegraphics[width=0.425\textwidth]{555.eps}
\caption{UbiqMobile screens}
\label{fig_sim2}
\end{figure}
答案1
通过将\centering
指令置于环境之外figure
,您已将其范围设为全局。显然,这不是您想要的。
要解决此问题,您需要
删除
\centering
第一个语句之前的指令\begin{figure}
,并且如果需要,插入新
\centering
指令里面环境\figure
。
单独的评论:您的文档似乎有很多形式为 的视觉格式指令\vskip 1em
。与其采用这种繁琐且容易出错的方法,不如调整一些全局参数。请随意发布新查询,以说明您目前正在做什么,并要求进行适当的调整,以便您不再需要关注所有这些视觉格式指令。