図にマークした (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
キャプションの書式設定については、パッケージをロードし、キャプションと図の間の垂直スペースなどの機能をローカルで手動で変更するように適切に設定することをお勧めします。