[Tex/LaTex] How to represent this abbreviation in the acro package

acroacronyms

I have the following abbreviation:

TIS – Traffic Information System

The plural form of this abbreviation remains as TIS although the abbreviated sentence gets the "s" in the end

Plural:

TIS – Traffic Information Systems

How can I cover this use case using the acro package for abbreviations

Best Answer

As explained in section 4.3 Plural Forms of the acro manual you can set a custom plural ending for a short form. In this case just set it empty:

\documentclass{article}

\usepackage{acro}

\DeclareAcronym{tis}{
  short = TIS ,
  long = Traffic Information System ,
  short-plural = ,
}

\begin{document}

singular:
\ac{tis}

plural:
\acfp{tis}

\end{document}

enter image description here

Related Question