如何在 `caption` 包中使用颜色?

如何在 `caption` 包中使用颜色?

我正在使用caption包来自定义论文中的标题。我当前的代码是:

\usepackage[width=0.6\textwidth ,font={small, sf,it},labelfont=bf,
labelsep=endash, format=plain,labelsep=period]{caption}

但我想给标题标签添加颜色。如下图所示: 标题 http://img24.ir/uploads/1365940937491.png

答案1

标题文档在第 25 页提供了这样一个例子。

\usepackage{xcolor}
\DeclareCaptionFont{blue}{\color{blue}}
\captionsetup{labelfont={blue,bf}}

正如 Axel Sommerfeld 所提到的,下面的方法也可以起作用:

\usepackage{xcolor}
\captionsetup{labelfont={color=blue,bf}}

这里有一个小例子:

在此处输入图片描述

\documentclass[10pt]{article}
\usepackage{xcolor}
\usepackage[width=0.6\textwidth ,font={small, sf,it},labelfont={color=blue,bf},
labelsep=endash, format=plain,labelsep=period]{caption}
\begin{document}
\begin{figure}
\caption{Eiffel Tower, Paris}
\end{figure}
\end{document}

相关内容