如何对齐两幅平行图像的图像标题?

如何对齐两幅平行图像的图像标题?
\documentclass[\classfontsize,\papersize,twoside,showtrims,extrafontsizes]{memoir}
\usepackage{graphicx, caption, subcaption}
\begin{figure}[h]
\centering
\begin{minipage}[b]{0.49\textwidth}
\includegraphics[width=\textwidth]{graphics/MDOBMEP.png}
\caption{Plot of BMEP and BMEP at the constant speed of 1500 RPM}
\end{minipage}
\hfill
\begin{minipage}[b]{0.5\textwidth}
\includegraphics[width=\textwidth]{graphics/MDOefficiency.png}
\caption{Plot of engine efficiency and break power at the constant speed of 1500 RPM}
\end{minipage}
\end{figure}

对于上面的代码,图像看起来像这样:标题与一些缩进对齐(这是我不需要的)并带有适当的图形编号。

标题对齐并略有缩进

当我尝试使用以下代码的另一种方法时:

\documentclass[\classfontsize,\papersize,twoside,showtrims,extrafontsizes]{memoir}
\usepackage{graphicx, caption, subcaption}
\begin{figure}[h]
\begin{subfigure}[b]{0.49\textwidth}
  \includegraphics[width=\textwidth]{graphics/MDOBMEP.png}
  \caption{Plot of BMEP and BMEP at the constant speed of 1500 RPM}
\end{subfigure}
\begin{subfigure}[b]{0.50\textwidth}
  \includegraphics[width=\textwidth]{graphics/MDOefficiency.png}
  \caption{Plot of engine efficiency and break power at the constant speed of 1500 RPM}
\end{subfigure}
\caption{Geometrical figures}
\end{figure}

结果如下所示:(标题对齐正确,但没有子标题编号,如图 3.1 和图 3.2 所示)2标题对齐正确,但没有子标题编号,如图 3.1 和图 3.2

我的问题是:

如何制作具有正确对齐方式的平行图像标题(如示例 2 所示)以及具有图号(如示例 1 所示)的图像标题。

谢谢!

答案1

选项\classfontsize\papersize未在中定义memoir。您的 mwe 不完整,因此无法测试。但是,对您的代码进行以下更改和简化可以正常工作:

\documentclass[twoside,showtrims,extrafontsizes]{memoir} % <---
\usepackage[demo]{graphicx}        % <---
\usepackage{caption, subcaption}

\begin{document}
    \begin{figure}[h]
\begin{minipage}[t]{0.49\linewidth}  % <---
\includegraphics[width=\linewidth]{graphics/MDOBMEP.png}  
\caption{Plot of BMEP and BMEP at the constant speed of 1500 RPM}
\end{minipage}
\hfill
\begin{minipage}[t]{0.5\linewidth}  % <---
\includegraphics[width=\linewidth]{graphics/MDOefficiency.png}
\caption{Plot of engine efficiency and break power at the constant speed of 1500 RPM}
\end{minipage}
    \end{figure}
\end{document}

在此处输入图片描述

相关内容