
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}