Como colocar a legenda da figura em negrito

Como colocar a legenda da figura em negrito

Quando eu crio uma legenda de figura, o LaTeX cria automaticamente a Figure1:parte e depois a legenda. Como deixar a Figure1parte em negrito? Minha figura de códigos TeX é esta:

\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}

Sou um usuário iniciante do TeX e algumas coisas ainda me parecem estranhas. Qualquer ajuda é apreciada.

Minha saída desejada é:Figura 1:algumas informações muito interessantes

Responder1

Você pode usar ocaptionpacote; a labelfontchave permite que você especifique bf:

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

\begin{document}

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

\end{document}

insira a descrição da imagem aqui

Se isso se aplicar a todos os carros alegóricos (não apenas figure), em vez de

\captionsetup[figure]{labelfont=bf}

carregue o pacote da seguinte maneira:

\usepackage[labelfont=bf]{caption}

informação relacionada