如何在表格标题中插入换行符?

如何在表格标题中插入换行符?

我希望我的表格标题看起来像这样

在此处输入图片描述

我尝试过newline\\,但是它们没有作用!

可以显示如上所示的标题吗?

谢谢

答案1

在该包的帮助下caption

在此处输入图片描述

\documentclass{article}
\usepackage{caption}
\captionsetup[table]{labelfont=bf,
                     labelsep=newline,
                     singlelinecheck=false}
\begin{document}

\begin{table}
  \caption{this is my caption text}
\end{table}

\begin{table}
  \caption{this is my caption text this is my caption text this is my caption text this is my caption text this is my caption text}
\end{table}

\end{document}

答案2

caption序言中的加载和使用

\captionsetup{singlelinecheck=off, labelfont=bf, labelsep=newline}

相关内容