重新格式化表格标题及其外观

重新格式化表格标题及其外观

如何使单词“Table”右对齐,并使表格标题文本居中在下一行?另外,我需要单词“Table”居中,而不使用“:”

我尝试过这个:

\usepackage{caption}% http://ctan.org/pkg/caption
\captionsetup[table]{justification=raggedleft,singlelinecheck=off}

但它使所有标题都右对齐。它看起来像这样: 在此处输入图片描述

答案1

像这样吗?

在此处输入图片描述

  • caption有关该宏的更多信息,请参阅该包的用户指南第 4 节“自身增强功能” \DeclareCaptionLabelFormat

  • 如果你只想显示标签“表格”没有桌号,您需要更改\DeclareCaptionLabelFormat{right}{\hfill#1 #2}\DeclareCaptionLabelFormat{right}{\hfill#1}


\documentclass{article}
\usepackage[demo]{graphicx} % remove "demo" option in real document

\usepackage{caption}
\DeclareCaptionLabelFormat{right}{\hfill#1 #2}
\captionsetup[table]{labelformat=right,labelsep=newline}

\begin{document}
\begin{table}
  \caption{some caption}
  \centering
  \includegraphics[width=0.5\textwidth]{sample}
\end{table}
\end{document} 

相关内容