I am using acronym package. I was wondering if there is a way to force the package skip showing abbreviation for items with less than 3, appearances throughout the document.
For example:
\documentclass{article}
\usepackage{acronym}
\acrodef{SYS}{system}
\acrodef{NET}{network}
\begin{document}
A \ac{NET} is a set of \acp{SYS}. A super-\ac{NET} is a \ac{NET} of \acp{NET}.
\end{document}
This will yield:
A network (NET) is a set of systems (SYSs). A super-NET is a NET of NETs.
However, I want to have:
A network (NET) is a set of systems. A super-NET is a NET of NETs.
So acronym package automatically count the number of appearances and show the full text, without abbreviation, if they appear less than 3 times.
(SYSs), which does not seem to fit with your description? Also, according to the manual "The first time you use an acronym, the full name of the acronym along with the acronym in brackets will be printed...The next time you access the acronym only the acronym will be printed." So,k=1is what happens by default. – Dec 11 '17 at 14:25glossaries. (See, for example, https://tex.stackexchange.com/questions/338667 .) I don't know how to do it with theacronympackage. – Nicola Talbot Dec 11 '17 at 15:29\ac{NET}is used.... – Dec 11 '17 at 17:14