(c)와 (d)에서처럼 그림에 표시한 (a)와 (b)의 축을 정렬하고 싶습니다.
주요 코드는 아래와 같습니다:
\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
하고 캡션과 그림 사이의 수직 공간과 같이 로컬에서 수동으로 변경하는 기능을 적절하게 설정하는 것이 좋습니다.