表格和图片的 2 个不同标题

表格和图片的 2 个不同标题

我想要两种不同类型的标题。一种用于表格,另一种用于图形。

我对表格使用以下代码:

\usepackage[labelfont=bf,nooneline]{caption}
\setlength{\abovecaptionskip}{3pt}

以下是数字:

\usepackage[labelfont=bf]{caption}

事物之间的差别在于nooneline

有可能的?

答案1

如果您在包加载时传递选项,这些选项将为所有类型的支持字幕设置。但是,如果您使用,\captionsetup[<type>]{<options>}您可以将设置本地化为类型的浮点数<type>

在此处输入图片描述

\documentclass{article}
\usepackage{caption}
\captionsetup[figure]{labelfont=bf}
\captionsetup[table]{labelfont=it}
\begin{document}

\begin{table}[ht]
  \caption{A table caption}
\end{table}

\begin{figure}[ht]
  \caption{A figure caption}
\end{figure}
\end{document}

以这种个性化方式使用每个设置所需的适当设置。

相关内容