Tengo problemas para eliminar el centrado de los títulos en las figuras. justification==justified
También lo intenté, pero no funciona. Además, lo intenté \raggedright
en el título, está moviendo el título al margen izquierdo, pero no está justificado (no aparecen guiones). Lo intenté \usepackage{ragged2e}
y \RaggedRight
tampoco funciona nada. Estoy usando preprint
en la clase de documento.
\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}