子图标题中的换行符

子图标题中的换行符

我想在标题中添加换行符subfigure

\begin{figure}
  \subfigure[a long line]{%
    \includegraphics[width=0.23\textwidth]{figures/cells_time.eps}
  }
\end{figure}

所以我想在里面的特定位置添加换行符a long line,有人知道怎么做吗?

答案1

自动换行;如果你想强制换行,请使用

\protect\\

例子:

\documentclass{article}
\usepackage{graphicx}
\usepackage{subfigure}

\begin{document}

\begin{figure}

\subfigure[A long line\protect\\ and another]{%
  \includegraphics[width=0.23\textwidth]{example-image}%
}

\end{figure}

\end{document}

请注意subfigure已经过时好几年了。请使用其后继版本subfig或更现代、更强大的subcaption

相关内容