Estou tentando dividir uma imagem e sua legenda em duas minipáginas, mas a legenda está na margem direita da página:
\documentclass[a4paper, 12pt]{article}
\usepackage{ifpdf}
\usepackage[latin1]{inputenc}
\usepackage[margin=2cm, left=2cm, top = 2cm, bottom=2cm]{geometry}
\usepackage{amsmath, mathtools}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{graphicx}
\usepackage{epigraph}
\usepackage{wasysym}
\usepackage[none]{hyphenat}
\usepackage[super]{nth}
\usepackage{textcomp}
\usepackage[usenames]{xcolor}
\usepackage{hyperref}
\usepackage[authoryear]{natbib}
\usepackage{comment}
\usepackage{setspace}
\usepackage{float}
\usepackage{dcolumn}
\usepackage{caption}
\usepackage{subcaption}
\usepackage{multicol}
%\usepackage[symbol]{footnotemisc}
\usepackage{siunitx}
\usepackage{dcolumn,booktabs}
\newcolumntype{d}[1]{D{.}{.}{#1}}
\let\oldFootnote\footnote
\newcommand\nextToken\relax
\renewcommand{\thefootnote}{\fnsymbol{footnote}}
\renewcommand\footnote[1]{%
\oldFootnote{#1}\futurelet\nextToken\isFootnote}
\newcommand\isFootnote{%
\ifx\footnote\nextToken\textsuperscript{,}\fi}
\captionsetup{font={normalfont},labelfont=footnotesize, width=.6\textwidth}
\newcommand\mc[1]{\multicolumn{1}{c}{#1}} % handy shortcut macro
\newcommand\cjaa{Chinese Journal of Astronomy \& Astrophysics}
\newcommand\pasp{Astronomical Society of the Pacific, Publications}
\newcommand\apj{The Astrophysical Journal}
\usepackage{setspace}
%\singlespacing
%\onehalfspacing
\doublespacing
%\setstretch{1.1}
\begin{document}
The original spectrum, taken by Green and Schmidt, is shown in Figure \ref{fig:3c273 spectrum}.\\
\begin{figure}[h!]
\begin{minipage}[c]{0.5\textwidth}
\includegraphics[width=0.9\textwidth]{"../3c273 spectrum"}
\end{minipage}\hfill
\begin{minipage}[c]{0.4\textwidth}
\caption[3C 273 spectrum]{Spectrum of the quasar 3C 273. Comparison spectrum is H + He + Ne. Redshifted emission lines of H and O\textsc{iii} are indicated.} \label{fig:3c273 spectrum}
\end{minipage}
\end{figure}
\\
Correcting for cosmological expansion yields a redshift for 3C 273 of 0.154, close to the
\end{document}
Baseei o código em uma resposta deessa questão(o "método direto e robusto"). Gosto desse método por sua simplicidade, então gostaria de ajustá-lo um pouco, se possível.
Como posso impedir que a legenda ultrapasse a margem? Eu tentei vários valores diferentes de minipage e graphics width
.
EDIT: coloque código compilável na questão.
Responder1
Você definiu a largura da legenda como 0,6\textwidth fora da minipágina.
\captionsetup{font={normalfont},labelfont=footnotesize, width=.6\textwidth}
Se você remover a definição de largura ( width=.6\textwidth
), obterá o comportamento que procura.