將子圖標題放在 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}

相關內容