仅将标题标签右对齐

仅将标题标签右对齐

我正在使用 caption 包,并且想要将标题的标签(位于不同的行)设置为右对齐,但标题的正文是左对齐的,如下所示:

在此处输入图片描述

该怎么办呢?

答案1

由于您使用了字幕包,因此您可以定义自己的字幕格式,例如:

\documentclass{article}
\usepackage{caption}
\DeclareCaptionFormat{myformat}{{\raggedleft #1\par}#3\par}
\captionsetup{format=myformat,singlelinecheck=off,textfont=bf}

\begin{document}
\begin{figure}
\caption{Title of the table}
\end{figure}
\end{document}

相关内容