subfloat 命令生成不同大小的标签

subfloat 命令生成不同大小的标签

subfig我使用包和命令将两幅图像并排放置subfloat。这是我的 MWE:

\documentclass[varwidth]{standalone}
\usepackage{mwe}
\usepackage[
    labelfont=bf,
    labelformat=parens,
    justification=raggedright,
    position=top,
    ]{caption,subfig}

\begin{document}

\begin{figure}
    \subfloat[]{%
        \includegraphics[width=0.4\textwidth]{example-image-a}%
    }\quad
    \subfloat[]{%
        \includegraphics[width=0.4\textwidth]{example-image-golden}%
    }
\end{figure}

\end{document}

其结果如下:

生成的 pdf

但是标签(b)明显比较小(a),我不知道为什么或者如何修复它。

附加问题:我怎样才能将标签更改为使用a)而不是(a)

任何提示都值得感激!

答案1

今天不是我的日子,我三次上传了错误的答案!真尴尬

答案2

\subfloat也支持子标题。

\documentclass[varwidth]{standalone}
\usepackage{mwe}
\usepackage[
    labelfont=bf,
    labelformat=brace,
    labelsep=space,
    justification=raggedright,
    position=top,
    ]{caption,subcaption}

\begin{document}

\begin{figure}
    \subfloat[]{%
        \includegraphics[width=0.4\textwidth]{example-image-a}%
    }\quad
    \subfloat[]{%
        \includegraphics[width=0.4\textwidth]{example-image-golden}%
    }
\end{figure}

\end{document}

演示

相关内容