回忆录标题编号采用大写字母且无括号

回忆录标题编号采用大写字母且无括号

使用回忆录和\subtop{},我希望有子图标识符(无标题,只有标识符)作为“A”,“B”,...(大写,无括号)。

下面的 MWE 几乎产生了我想要的结果,但是:

  • 子图标识符仍然有括号。
  • 标识符中的大写字母被大小写字母 ( \scshape\large) 伪造。
  • 将子图标识符定位在图形的左侧是一种丑陋的做法。

任何能够改善我的 MWE(或新的清洁解决方案)的帮助都将不胜感激。

\documentclass{memoir}
\usepackage{blindtext}

\newsubfloat{figure} % allows to use "subbottom"

\begin{document}
\blindtext
\begin{figure}[h]
  \subcaptionlabelfont{\hspace*{-.5\textwidth}\scshape\large}
  \centering
    \subtop[]{%
      \parbox{0.4\textwidth}{\blindtext}
    }
    \hfill
    \subtop[]{%
      \parbox{0.4\textwidth}{\blindtext}
    }
  \caption{caption}
  \label{fig:menina}
\end{figure}

\blindtext
\end{document}

MWE 的输出

答案1

\documentclass{memoir}
\usepackage{blindtext}

\newsubfloat{figure} % allows to use "subbottom"
\shortsubcaption % remove it if you want subcaption centered instead
\renewcommand\thesubfigure{\Alph{subfigure}}


\begin{document}
\blindtext
\begin{figure}[h]
      \subtop[]{%
      \parbox{0.4\textwidth}{\blindtext}
    }    
    \hfill
    \subtop[]{%
      \parbox{0.4\textwidth}{\blindtext}
    }
  \caption{caption}
  \label{fig:menina}
\end{figure}

\blindtext
\end{document}

相关内容