如何将较长的图形标题拆分为多行?使用\\
无效。
\begin{figure}[H]
\includegraphics[width=1\textwidth]{x.jpg}
\caption{line 1...
line 2...
line 3...}
\label{fig1}
\end{figure}
答案1
加载caption
包;现在您可以使用标准行更改命令\\
:
\documentclass{article}
\usepackage[demo]{graphicx}
\usepackage{caption}
\begin{document}
\begin{figure}
\includegraphics[width=1\textwidth]{x}
\caption{line 1 \\line 2 \\ line 3 }
\label{fig1}
\end{figure}
\end{document}
选项demo
只是graphicx
用黑色矩形替换实际图形;不是在实际文档中使用该选项。