调整图片标题

调整图片标题

当标题为空时,我得到类似“图 11-”的内容。如何从空标题中删除所有破折号“-”。

\documentclass[a4paper,11pt]{book}
\usepackage[francais]{babel}
\usepackage{chngcntr}  % continuous figure number
\usepackage{tikz}
\usepackage{float}
\counterwithout{figure}{chapter}

\begin{document}
{


\begin{figure}[H]\centering
\begin{tikzpicture}
\coordinate (A) at (3,9);
\coordinate (B) at (2,6);
\draw (A)--(B);
\end{tikzpicture}
\caption{}
\end{figure}

\end{document}

答案1

使用 caption 包并将其添加到序言中:

\captionsetup[figure]{name={Fig.},labelsep=space}

相关内容