revtex4-2 テンプレートの左上にサブ図のキャプションを配置します。

revtex4-2 テンプレートの左上にサブ図のキャプションを配置します。

subfigure画像の左上にキャプションを配置したいです。このような質問は山ほどありますが、それらはすべてsubcaptionパッケージを使用しています。しない私のテンプレートは なので、やりたいことrevtex4-2

これが MWE です。すべて良さそうですが、(i) と (ii) を左上に配置したいと思います。重要であれば、各サブ図に実際のキャプションを追加せず、ローマ数字でラベルを付けるだけにします。

編集:floatMWE 以外の例でもパッケージを使用しているため、活用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}

関連情報