cgnieder / acro

acronyms for LaTeX
LaTeX Project Public License v1.3c
40 stars 9 forks source link

printing the list in version 3 #230

Closed GregorDall closed 2 years ago

GregorDall commented 2 years ago

Hi,

moving to version 3 I was trying to recreate my old list of abbreviations, which is just a list of short long; short long; ...

could you provide some assistance in creating the template?

Cheers

cgnieder commented 2 years ago

Something like this maybe:

\documentclass{article}
\usepackage{acro}
\usepackage{acro-examples}

\NewAcroTemplate[list]{simple}{%
  \acroheading
  \acropreamble
  \acronymsmapF{%
    \textbf{\acrowrite{short}} \acrowrite{list};
  }{\AcroRerun}%
}

\acsetup{list/template=simple}

\begin{document}

\acuseall
\printacronyms

\end{document}
GregorDall commented 2 years ago

Thanks a lot, works perfectly.