
Cuando creo un título de figura, LaTeX crea automáticamente la Figure1:
parte y luego el título. ¿Cómo poner la Figure1
parte en negrita? Mi figura de códigos TeX es 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}
Soy un usuario principiante de TeX y algunas cosas todavía me resultan extrañas. Se agradece cualquier ayuda.
Mi resultado deseado es:Figura 1:alguna información muy interesante
Respuesta1
Puedes usar elcaption
paquete; la labelfont
clave le permite especificar bf
:
\documentclass{article}
\usepackage{caption}
\captionsetup[figure]{labelfont=bf}
\begin{document}
\begin{figure}
\centering
A
\caption{test figure}
\end{figure}
\end{document}
Si esto se aplica a todos los flotadores (no solo figure
), en lugar de
\captionsetup[figure]{labelfont=bf}
Cargue el paquete de la siguiente manera:
\usepackage[labelfont=bf]{caption}