Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Umstieg auf Glossaries-Package #134

Open
wants to merge 20 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions .vscode/tex_snippets.code-snippets
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,7 @@
"Glossar": {
"prefix": ["gls", "dhgegls"], // auf welchem namen der snippet auffindbar ist
"scope": "latex,tex", // welche files der snippet betreffen soll
"body": ["\\newglossaryentry{${1:gls-id}}",
" {${2:name}}",
" {${3:desc}}"
"body": ["\\newglossaryentry{${1:gls-id}}{name=${2:name}}{description=${3:desc}}"
ZeroPointMax marked this conversation as resolved.
Show resolved Hide resolved
], // einzufügender snippet
"description": "Insert \\newglossaryentry" // beschreibung
},
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -347,15 +347,15 @@ An einem Beispiel:
Die Pluralform lässt sich mit

```latex
\glspl{3}
\glspl{key}
```

aufrufen.
Ebenso kann der erste Buchstabe einer Abkürzung groß geschrieben werden (wenn er in der Abkürzung selbst klein geschrieben ist): ``\Gls{key}``.
Das ist kombinierbar mit ``\glspl{key}``, also:

```latex
\Glspl{3}
\Glspl{key}
```

Das Abkürzungsverzeichnis wird dann automatisch erstellt. Dabei ist zu beachten, dass unter Umständen bis zu zwei Kompilierungen notwendig sind, wenn eine Abkürzung hinzugefügt oder entfernt wurde, damit das Verzeichnis korrekt erstellt wird.
Expand Down