
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}