blob: bf578b4c0afcae745429cdaf6c0e7c85c997761e (
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
|
% GLOSSAR.STY
% Erzeugt ein Glossar oder Abk"urzungsverzeichnis
\makeglossary
% Unterdrückt Ausgabe der Seitenzahl. Um in jeder
% Erklärung auf eine Seite zu verweisen, kann
% definiert werden:
% \newcommand{\glspage}[1]{ (Seite~#1)}
\newcommand{\glspage}[1]{}
% \glentry{Stichwort}{Erklärungstext}
\newcommand{\glentry}[2]
{\glossary{#1@[#1] #2|glspage}}
% Schließt den Buchstaben vor neuer Gruppe ein
\newcommand{\glsgroup}[1]
{{\item[] \textbf{\Large #1}}}
% Bindet das Verzeichnis ein
\newcommand{\glshead}{\section{Glossar}}
\newcommand{\printglossary}
{\InputIfFileExists{\jobname.gls}
{\glshead}
{}}
|