删除脚注标记后的点

删除脚注标记后的点

我的脚注编号有问题。我的所有脚注在脚注标记后都有一个点:

在此处输入图片描述

现在,负责发表我论文的编辑让我删除编号后面的点。有什么建议可以帮我做到这一点吗?

这是我的部分代码:

\documentclass[openany,ngerman]{book}
\usepackage[main=french,italian, spanish, portuguese, latin, greek]{babel}
\usepackage[small]{dgruyter}
\usepackage{microtype}
\baretabulars
\usepackage{fontspec}
\usepackage{amsmath,amsfonts,amssymb}
\usepackage{graphicx,lmodern}
\usepackage{slantsc}
\usepackage{tablefootnote}

\begin{document}
Cette méthode procède par une analyse de correspondances ...\footnote{Pour des informations complémentaires, ...}
\end{document}

我必须使用dgruyter样式表;您可以在这里找到它:dgruyter.sty

我将非常感激任何形式的帮助!

答案1

这是法国 babel 的一个特点。

\renewcommand*{\dotFFN}{}

將會将其刪除。

答案2

尝试此代码

\renewcommand{\thefootnote}{\arabic{footnote}}

此代码重新定义了脚注编号格式:数字后面没有点。在 \begin{document}

相关内容