使用子图水平对齐图像

使用子图水平对齐图像

尽管尝试了网上找到的许多建议,我仍然无法使我的图形水平对齐。出于某种原因,它们不断被强制垂直对齐。我也尝试过使用 minipage 而不是 subfigure。发生了什么?

\begin{figure}[ht]
    \centering
    \begin{subfigure}[b]{0.2\textwidth}
        \includegraphics[width=0.8\linewidth]{./imgs/000_test_image}        
    \end{subfigure}
    \hfill
    
    \begin{subfigure}[b]{0.2\textwidth}
        \includegraphics[width=0.8\linewidth]{./imgs/050_test_image}        
    \end{subfigure}
    \hfill
    
    \begin{subfigure}[b]{0.2\textwidth}
        \includegraphics[width=0.8\linewidth]{./imgs/100_test_image}        
    \end{subfigure}
    \hfill
    
    \begin{subfigure}[b]{0.2\textwidth}
        \includegraphics[width=0.8\linewidth]{./imgs/150_test_image}        
    \end{subfigure}
    \hfill
    
    \begin{subfigure}[b]{0.2\textwidth}
        \includegraphics[width=0.8\linewidth]{./imgs/200_test_image}        
    \end{subfigure}

    \caption{TODO}
    \label{fig:interpolated-input}
\end{figure}

这是我的图像输出。 这是我的输出

相关内容