换行命令导致列中出现小空格

换行命令导致列中出现小空格

我想在一个浮点数中显示 4 个数字,因此我使用以下格式: enter image description here

虽然,当我展示这个浮点数时,我得到了: enter image description here

如您所见,第一条“线”与另一条“线”之间有一个小的垂直空间。我希望这 4 个图形对齐且对称。

感谢您的帮助,谢谢!

注意:lyx 文件 + latexpdf + pdf 可在评论中找到。

乳胶代码:

% Preview source code for paragraph 0

\begin{figure}
\begin{centering}
\subfloat[]{\includegraphics[width=0.45\columnwidth]{../Documents/MEGA/Technion/Msc/Thesis/Code/code_files/Thesis/images/edges_bias/original_PH}

}\hspace{1px}\subfloat[]{\includegraphics[width=0.45\columnwidth]{../Documents/MEGA/Technion/Msc/Thesis/Code/code_files/Thesis/images/edges_bias/composed_PH}}\\\subfloat[]{\includegraphics[width=0.45\columnwidth]{../Documents/MEGA/Technion/Msc/Thesis/Code/code_files/Thesis/images/edges_bias/original_PH}

}\hspace{1px}\subfloat[]{\includegraphics[width=0.45\columnwidth]{../Documents/MEGA/Technion/Msc/Thesis/Code/code_files/Thesis/images/edges_bias/composed_PH}}
\par\end{centering}
\centering{}\caption{Description: (a) (b) (c) (d)}
\label{fig:filtering_process}
\end{figure}

答案1

好的,我想我已经解决了。我不知道为什么,但显然使用\\而不是\newline解决了问题(没有创建空间)。

\\newline详细的区别这里

enter image description here

无论如何,谢谢大家:)

答案2

帮自己一些忙:

  1. 使用宏,而不是重复无数次长路径。

  2. 不要依赖可疑的 LaTeX 代码来源。

  3. 不需要时不要使用\newline\\;顺便说一句,\newline永远不要在上下文中使用\centering

  4. 不要使用px,因为你不知道它有多大。

环境centering本身并不存在;\centering 宣言

在下面的例子中,我使用了该demo选项,graphicx因为我没有您的图像。

\documentclass{article}
\usepackage[demo]{graphicx}
\usepackage{subfig}

\newcommand{\figurepath}{%
  ../Documents/MEGA/Technion/Msc/Thesis/Code/code_files/Thesis/images%
}

\begin{document}

\begin{figure}
\centering

\subfloat[]{\includegraphics[width=0.45\columnwidth]{\figurepath/edges_bias/original_PH}}\quad
\subfloat[]{\includegraphics[width=0.45\columnwidth]{\figurepath/edges_bias/composed_PH}}

\subfloat[]{\includegraphics[width=0.45\columnwidth]{\figurepath/edges_bias/original_PH}}\quad
\subfloat[]{\includegraphics[width=0.45\columnwidth]{\figurepath/edges_bias/composed_PH}}

\caption{Description: (a) (b) (c) (d)}
\label{fig:filtering_process}

\end{figure}

\end{document}

enter image description here

相关内容