summaryrefslogtreecommitdiff
path: root/macros/latex/contrib/acro/examples/acro.example.texsx-505891.tex
blob: da888fdaba98b335eb91d1ddfd524143ef761ece (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
\documentclass{article}

\usepackage{acro}

\DeclareAcroProperty{alt2}
\DeclareAcroProperty{alt2-format}

\RenewAcroTemplate[list]{description}{%
  \acroheading
  \acropreamble
  \begin{description}
    \acronymsmapF{
      \item [%
          \acrowrite{short}%
          \acroifT{alt}{/}\acrowrite{alt}%
          \acroifT{alt2}{/}\acrowrite{alt2}%
        ]
        \acrowrite{list}%
        \acroifanyT{foreign,extra}{ (}%
        \acroifT{foreign}{%
          \acrowrite{foreign}%
          \acroifT{foreign-short}{, \acrowrite{foreign-short}}%
          \acroifT{extra}{, }%
        }%
        \acrowrite{extra}%
        \acroifanyT{foreign,extra}{)}%
        \acropagefill
        \acropages
          {\acrotranslate{page}\nobreakspace}%
          {\acrotranslate{pages}\nobreakspace}%
    }
    { \item \AcroRerun }
  \end {description}
}

\DeclareAcronym{one}{ short = one , alt = two, alt2 = three, long = common description }
\DeclareAcronym{four}{ short = four , long = another description }

\begin{document}

\printacronyms[display=all]

\end{document}