20 lines
911 B
Plaintext
20 lines
911 B
Plaintext
# -*- mode: snippet -*-
|
|
# name: Article Glossary Acronym and List of Symbols
|
|
# group: Article Templates
|
|
# key: ?article-gls
|
|
# --
|
|
* Glossary, Acronym and List of Symbols :ignore:
|
|
|
|
# glossaries (label, name, description)
|
|
#+latex_header_extra: \newglossaryentry{tree}{name={tree},description={A description for the glossary entry}}
|
|
#+latex_header_extra: \newglossaryentry{shrub}{name={shrub},description={A description for the other glossary entry}}
|
|
|
|
# acronyms (label, abbreviation, full form)
|
|
#+latex_header_extra: \newacronym{bb}{BB}{Two Letter Acronym}
|
|
#+latex_header_extra: \newacronym{qos}{QoS}{quality-of-service}
|
|
|
|
#+LATEX: \printglossary\thispagestyle{plain}
|
|
#+LATEX: \printglossary[type=\acronymtype,title=Abkürzungsverzeichnis]\thispagestyle{plain}
|
|
#+LATEX: \printglossary[type=symbols,style=mysymbols,title=Symbolverzeichnis]\thispagestyle{plain}
|
|
#+LATEX: \glsaddallunused
|