図やサブ図のキャプションの中央揃えを解除するにはどうすればよいですか?

図やサブ図のキャプションの中央揃えを解除するにはどうすればよいですか?

図のキャプションの中央揃えを削除するのに問題があります。私も試してみましたがjustification==justified、うまくいきませんでした。また、\raggedrightキャプションで試したところ、キャプションは左余白に移動していますが、両端揃えされていません (ハイフンが付いていません)。試してみました\usepackage{ragged2e}が、何も機能しません。ドキュメント クラスで\RaggedRight使用しています。preprint

\documentclass[preprint,pre,amsmath]{revtex4-2}
\usepackage[pdftex]{graphicx} 
\usepackage{color}
\usepackage{bm}
\usepackage{epsfig}
\usepackage{latexsym}
\usepackage{subcaption}
\usepackage{caption}
\usepackage[font=small,labelfont=bf,justification=justified]{caption}
\begin{document}
\begin{figure}[t]
 \centering
\begin{subfigure}{0.49\textwidth}
     \centering
     \includegraphics[width=1.0\textwidth]{plot1.png}
     %\caption{}
     \label{figa}
 \end{subfigure}
 %\hfill
 \begin{subfigure}{0.49\textwidth}
     \centering
     \includegraphics[width=1.0\textwidth]{plot2.png}
    %\caption{}
    \label{figb}
 \end{subfigure}
% \hfill
 \caption{\raggedright Solar atmosphere temperature-height distribution.Solar atmosphere temperature-height distribution as determined by \cite{15}. Height is given in kilometers measured above zero point where $\tau=1$. Regions of line formation are also indicated. From right to left: photosphere, temperature minimum (4,000K), chromosphere, transition region (8,500K) and Lyman valley (20,000K).}
\label{fig}
\end{figure}
\end{document}

関連情報