\captionof 选项:图形的粗体名称

\captionof 选项:图形的粗体名称

我正在使用该capt-of包装来存放我的数字,以避免浮动。

我使用以下方法将图形固定在我想要的位置:

\begin{center}
  \includegraphics[width=0.8\textwidth]{figure1.png}
\captionof{figure}{bla bla}\label{fig1}
\end{center}

我得到了类似的结果:Figure 1: bla bla.无论如何,我想知道我是否可以将标题的样式从 更改Figure 1:\textbf{Figure 1.}

答案1

您可以使用caption提供相同宏的包。

字幕格式

\documentclass{article}

\usepackage[labelfont=bf, labelsep=period]{caption}
\usepackage{graphicx}

\begin{document}
\begin{center}
  \includegraphics[width=0.8\textwidth]{example-image-duck}
  \captionof{figure}{bla bla}\label{fig1}
\end{center}
\end{document}

相关内容