将子图标题放置在 revtex4-2 模板的左上角

将子图标题放置在 revtex4-2 模板的左上角

我想将subfigure标题放在图片的左上角。这里有很多这样的问题,但它们都使用了包subcaption,我我想要做的,因为我的模板是revtex4-2

这是 MWE。一切看起来都很好,除了我希望 (i) 和 (ii) 位于左上角。如果这很重要,我不会为每个子图添加任何实际标题,只想通过罗马数字标记它们。

编辑:float也在非 MWE 示例中使用了该包,因此杠杆作用floatrow也不起作用!

\documentclass[twocolumn,aps,pre]{revtex4-2} 
\usepackage{graphicx, float}
\usepackage[FIGTOPCAP]{subfigure} 
\renewcommand\thesubfigure{(\roman{subfigure})}

\begin{document} 

\begin{figure*}[htb]
    \centering
    \subfigure[]{\includegraphics[width=0.35\linewidth]{example-image-a} \label{fig: a}}
    \hfill
    \subfigure[]{\includegraphics[width=0.35\linewidth]{example-image-b} \label{fig: b}}
    \caption{I want \subref{fig: a} and \subref{fig: b} to be placed at the top \textit{left}.} 
\end{figure*}

\end{document}

相关内容