新型脚注不再缩进

新型脚注不再缩进

感谢一些建议,我写了以下命令以避免手动编辑脚注的编号。

\newcounter{fncntr}
\newcommand{\fnmark}[1]{\refstepcounter{fncntr}\label{#1}\footnotemark[\getrefnumber{#1}]}
\newcommand{\fntext}[2]{\footnotetext[\getrefnumber{#1}]{#2}}

我现在正尝试更改这个新的脚注命令的缩进以删除其默认缩进。

以下是文件:

\documentclass{book}

\usepackage{refcount}

\newcounter{fncntr}
\newcommand{\fnmark}[1]{\refstepcounter{fncntr}\label{#1}\footnotemark[\getrefnumber{#1}]}
\newcommand{\fntext}[2]{\footnotetext[\getrefnumber{#1}]{#2}}

\begin{document}

Here is the text\fnmark{one}

\fntext{one}{Here is the footnote.}

\end{document}

请问我该如何实现这个目标?

相关内容