[Tex/LaTex] Creating a list of abbreviations with KOMA-Script

acronymskoma-script

I could not find the commands for creating a list of abbreviations with KOMA-Script. Could someone please tell it to me? Also could someone please tell me if the abbreviations list has to be at the beginning or at the end of the document? Thank you.

EDIT: I tried the following:

\documentclass[a4paper,11pt]{scrreprt}
\usepackage[komastyle,automark]{scrpage2}
\usepackage{ngerman}
\usepackage[utf8]{inputenc} 

\usepackage[acronym]{glossaries}
\makeglossaries

%%% Abkuerzungen
\newacronym{hvs}{hvs}{human visual system}

\begin{document}

\tableofcontents%
\newpage
\pagestyle{headings}%
\pagenumbering{arabic}%
\setcounter{page}{1}
\parskip1.5ex 

\addcontentsline{toc}{chapter}{Abkürzungen}

%Text
Denn der menschliche Wahrnehmungsapparat, auch \gls{hvs} genannt, nimmt höherfrequente Bildinhalte schlechter wahr als niederfrequente.

\printglossary[title=Abk\"urzungen]
\end{document}

But I don't get the glossary to be shown at the end. What is wrong??? I used the perl script makeglossaries on command line.

Best Answer

Written before substantial edit of question:

KOMA-Script does not provide such commands. It is intended by the developer to use one of the packages out there in the wild. Which one fits best your needs you must find out yourself, take a look on some CTAN topics: ab­brev, acronym and glos­sary.

From my personal view I can only tell you that I successfully used glossaries together with KOMA-Script. There is also an related item in the glossaries FAQ: How do I change the default translations provided by the glossaries package? (Thanks to Nicola Talbot for pointing me to this).

KOMA-Script provides commands for (re-)definition of language-dependent terms (in documentation for recent version this is section 10.4), one of them is for glossary titles. See also this answer to How to change the name of document elements like “Figure”, “Contents”, “Bibliography” etc.?


Answer to edit:

Excerpt from documentation of glossaries, v3.04:

  • Section 2.5 (Package Options, Acronym options)

    acronym This creates a new glossary with the label acronym. This is equivalent to: \newglossary[alg]{acronym}{acr}{acn}{\acronymname} If the acronym package option is used, \acronymtype is set to acronym …

  • Section 10 (Displaying a glossary)

    \printglossary[〈options〉] where 〈options〉 is a 〈key〉=〈value〉 list of options. The following keys are available:
    type The value of this key specifies which glossary to print. If omitted, the default glossary is assumed. For example, to print the list of acronyms: \printglossary[type=\acronymtype]
    title This is the glossary’s title (overriding the title specified when the glossary was defined).

So you simply should have written

\printglossary[type=\acronymtype,title=Abkürzungen]

or used the KOMA-Script specific solution linked above for the title.