如何使图片标题变为粗体

如何使图片标题变为粗体

当我创建图形标题时,LaTeX 会自动创建部分Figure1:,然后创建标题。如何将Figure1部分设为粗体?我的图形 TeX 代码如下:

\begin{figure}[ht!]
\includegraphics[width=80mm]{images/tftype.png}|\includegraphics[width=80mm]{images/tftype1.png}
\caption{An overview of structural variants of transcription factors. Each specific variant binds to a certain class of DNA motifs (shown in blue).  Some of the motifs have a high affinity for the TATAAA box were others favor specific sequences somewhere in the promoter region. {\small http://www.nature.com/scitable/resource?action=showFullImageForTopic\&imgSrc=37950/sadava\_14\_15\_FULL.gif}}
\end{figure}

我是 TeX 的新手,有些东西对我来说还很陌生。任何帮助我都感激不尽。

我想要的输出是:图1:一些非常有趣的信息

答案1

您可以使用caption包;labelfont密钥允许您指定bf

\documentclass{article}
\usepackage{caption}
\captionsetup[figure]{labelfont=bf}

\begin{document}

\begin{figure}
\centering
A
\caption{test figure}
\end{figure}

\end{document}

在此处输入图片描述

如果这适用于所有浮点数(不只是figure),而不是

\captionsetup[figure]{labelfont=bf}

按以下方式加载包:

\usepackage[labelfont=bf]{caption}

相关内容