使一个文档中的表格和图形标题与第二行或第二行的冒号 (:) 对齐

使一个文档中的表格和图形标题与第二行或第二行的冒号 (:) 对齐
\documentclass{article}
\usepackage{graphicx,caption}
\captionsetup{
    indention=1.6cm
}

\begin{document}
    \begin{figure}
        \centering
        \includegraphics[scale=0.5]{example-image}
        \caption{This is the example image. This is the example image. This is the example image. This is the example image.}
    \end{figure}

\begin{table}
    \centering
    \begin{tabular}{|c|c|}
        No&Alphabet\\
        1&a\\
        2&b\\
        3&c\\
    \end{tabular}
    \caption{This is example of table. abcdefghijkl This is example of table. This is example of table. This is example of table. This is example of table. This is example of table.}
\end{table}
\end{document}

我想使第二行的图形和表格标题与冒号 (:) 对齐,因此我尝试添加

\captionsetup{
    indention=1.6cm
 }

在此处输入图片描述

但表格标题中的第二行不能与冒号(:)对齐。

在此处输入图片描述

我认为是因为我手动给出了缩进\captionsetup。如何使大于或等于第二行的自动缩进与文档上的冒号 (:) 对齐?

答案1

你需要改变

\captionsetup{indention=1.6cm}

\captionsetup{format=hang}

相关内容