如何調整子浮子的位置?

如何調整子浮子的位置?

我想對齊我在圖片上標記的 (a) 和 (b) 中的軸,就像 (c) 和 (d) 一樣?

在此輸入影像描述

主要程式碼如下:

\begin{figure}[!t]
\centering
\subfloat[]{\includegraphics[width=1.5in]{pre_coherent_a.eps}%
\label{pre:a}}
\hfil
\subfloat[]{\includegraphics[width=1.5in]{pre_coherent_b.eps}%
\label{pre:b}}
\hfil
\subfloat[]{\includegraphics[width=1.5in]{pre_coherent_c.eps}%
\label{pre:c}}
\hfil
\subfloat[]{\includegraphics[width=1.5in]{pre_coherent_d.eps}%
\label{pre:d}}
\caption{Main processing stages of pre-coherent processing.}
\vspace{-10 pt}  % adjust the vertical spacing
\label{fig_sim1}
\end{figure}

答案1

如果您符合以下條件,這是可能的:

  • 重繪圖像 (a): (重新)移動橫座標下方的所有內容或 (b): 在橫座標下方新增帶有 $\Delta_{\min}$ 的虛擬節點,

  • 將圖像 (b) 放入其中\raisebox並將其提升至所需的高度...

MWE 對於最後一種可能性:

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

\begin{document}
\begin{figure}
\centering
\subfloat[]{\includegraphics[width=1.5in]{pre_coherent_a.eps}%
\label{pre:a}}
\hfil
\subfloat[]{\raisebox{1ex}% select appropriate amount
            {\includegraphics[width=1.5in]{pre_coherent_b.eps}}%
\label{pre:b}}


\subfloat[]{\includegraphics[width=1.5in]{pre_coherent_c.eps}%
\label{pre:c}}
\hfil
\subfloat[]{\includegraphics[width=1.5in]{pre_coherent_d.eps}%
\label{pre:d}}
\caption{Main processing stages of pre-coherent processing.}
\vspace{-10 pt}  % adjust the vertical spacing
\label{fig_sim1}
\end{figure}
\end{document}

在此輸入影像描述

筆記:對於標題格式,最好載入caption套件並充分設定其功能作為本地手動更改,例如標題和圖形之間的垂直空間。

相關內容