使用子标题缩小图片环境中两张图片中的一张,但保持标题对齐

使用子标题缩小图片环境中两张图片中的一张,但保持标题对齐

我正在尝试使用子标题将两张图片放在同一个图形环境中的彼此下方。我希望两个子标题(在我的情况下只是 a) 和 b))垂直对齐。如果我对两张图片使用相同的宽度,这很容易,但我想将底部图片缩小到其大小的约 50%。但是,如果我对底部图片使用 width=0.5\textwidth,其标题也会根据图片大小进行位移,这样 a) 和 b) 就不再对齐了。我使用以下示例:

\begin{figure}
    \subfloat[]{\includegraphics[width=1\textwidth]{./afbeeldingen/avrrecognition.png}}
    \newline
    \subfloat[]{\includegraphics[width=1\textwidth]{./afbeeldingen/RGA.png}}
    \caption[Symptoms of rice blast disease]{Symptoms of rice blast disease. (a) Example of rice blast outbreak. (b) Lesions appearing on the leaf of a rice plant after invasive growth.}
    \label{fig:RGA}
\end{figure} %

答案1

基本上,您需要添加 \centering。(顺便说一下,这就是 MWE 的样子。)

\documentclass{article}
\usepackage{subfig}
%\usepackage{subcaption}
\usepackage{mwe}

\begin{document} 
\begin{figure}
    \centering
    \subfloat[]{\includegraphics[width=1\textwidth]{example-image-a}}
    \newline
    \subfloat[]{\includegraphics[width=0.5\textwidth]{example-image-b}}
    \caption[Symptoms of rice blast disease]{Symptoms of rice blast disease. (a) Example of rice blast outbreak. (b) Lesions appearing on the leaf of a rice plant after invasive growth.}
    \label{fig:RGA}
\end{figure} %
\end{document}

居中

相关内容