You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
438 B
13 lines
438 B
\usepackage{xparse}
|
|
\DeclareDocumentCommand{\newdualentry}{ O{} O{} m m m m } {
|
|
\newglossaryentry{gls-#3}{name={#5},text={#5\glsadd{#3}},
|
|
description={#6},#1
|
|
}
|
|
\makeglossaries
|
|
\newacronym{#3}{#4}{see Glossary on: \gls{gls-#3}}
|
|
}
|
|
|
|
\newdualentry{iommu}{IOMMU}{Input/Output Memory Management Unit}{... desc ...}
|
|
\newdualentry{bar}{BAR}{Base Address Register}{... desc ...}
|
|
|
|
\newacronym{dsa}{DSA}{Intel Data Streaming Accelerator}
|