如您所见,第一条“线”与另一条“线”之间有一个小的垂直空间。我希望这 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
答案2
帮自己一些忙:
使用宏,而不是重复无数次长路径。
不要依赖可疑的 LaTeX 代码来源。
不需要时不要使用
\newline
或\\
;顺便说一句,\newline
永远不要在上下文中使用\centering
。不要使用
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}