避免在脚注中使用 s

避免在脚注中使用 s

我使用该acronym包创建脚注。我通常用\ac{MyWord}and if plural then标记\acp{MyWord}。要导入该包,我使用:

\usepackage[footnote, printonlyused]{acronym}

我的问题在于使用 时的脚注\acp。它在句子末尾添加了一个“s”,我想避免这种情况。

例子:

\ac{HTML}

在我的例子中创建脚注: 网络中使用的语言。

\acp{HTML}

在我的例子中创建脚注: 网络中使用的语言

我怎样才能摆脱创建的脚注末尾的“s” \acp{HTML}

编辑 1-代码示例:

\documentclass[12pt]{scrartcl}
\usepackage[footnote, printonlyused]{acronym}
\begin{document}
    \section{Test Chapter}
        This is a Test for showing the error. No error with \ac{HTML} using ac, but an unwanted "s" is added with \acp{Action} when using acp.
        \bigskip
    \section*{Acronyms}
    \begin{acronym}[Action]
        \acro{HTML}{Language used in the web.}
        \acro{Action}{Used within the math function as a parameter.}
    \end{acronym}
\end{document}

答案1

您需要重新定义复数形式\acrodefplural

\begin{acronym}[Action]
    \acro{HTML}{Hyper Text Markup Language}
    \acrodefplural{HTML}[HTML]{Hyper Text Markup Languages}
\end{acronym}

相关内容