删除图表标题中的“:”

删除图表标题中的“:”

每次我引用表格或图形时,标题前面都会有“.:” 例如:Figure 1.: The proposed approachTable 2.: Mobile apps categories。我如何删除“:”。我使用的是 Taylor and Francis 模板:

\documentclass[]{interact}
\usepackage[labelsep=space]{caption}
\usepackage{epstopdf}
\theoremstyle{plain}
\newtheorem{theorem}{Theorem}[section]
\newtheorem{lemma}[theorem]{Lemma}
\newtheorem{corollary}[theorem]{Corollary}
\newtheorem{proposition}[theorem]{Proposition}

\theoremstyle{definition}
\newtheorem{definition}[theorem]{Definition}
\newtheorem{example}[theorem]{Example}

\theoremstyle{remark}
\newtheorem{remark}{Remark}
\newtheorem{notation}{Notation}

\usepackage{caption}
\usepackage{subcaption}

\begin{document}
...
\end{document}

感谢你的帮助

答案1

该类interact不兼容caption:你确实收到了警告

Package caption Warning: Unknown document class (or package),
(caption)                standard defaults will be used.

caption如果我删除对和的调用subcaption,我会得到

在此处输入图片描述

这是班级要求的样式。使用caption将覆盖此样式,并且您的稿件可能会因不符合出版商的偏好而被拒绝。

如果您需要子图或子表,请使用subfig,调用它

\usepackage[caption=false]{subfig}

并使用包中定义的子浮点数语法。

相关内容