答案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}