调整第二幅图的标题

调整第二幅图的标题

我对 msword 中的 latex 还很陌生。不过我已经爱上它了。如果我的问题太基础,请原谅。我需要像第一个一样对齐第二个标题。最低工作代码是

\documentclass[smallextended]{svjour3} 
\usepackage{graphicx}
\begin{document}
\begin{figure}
\centering
\begin{minipage}{0.5\textwidth}
    \centering
    \includegraphics[width=1.0\textwidth,keepaspectratio]{flower1}
    % first figure itself
    \caption{The beautiful flower as downloaded }
 \end{minipage}\hfill
 \begin{minipage}{0.4\textwidth}
    
    \includegraphics[height=0.7\textwidth]{flower2}
    % second figure itself
   \caption{The second one}
\end{minipage}
\end{figure}
\end{document}

我已经用完全相同尺寸的图像和完全相同字符数的标题替换了原始图像,以便可以精确模拟环境。我已经尝试了代码中的所有数值,但无法获得所需的结果。目前这超出了我的 Latex 知识范围。 花1.png 花2.png

相关内容