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.
acro,acronymorglossaries. – cgnieder Mar 12 '13 at 21:28longtablefor my last list of abbreviations: clean and simple --- but mine was used for abbreviations of citations that appeared in the footnotes.glossariesis very useful for technical abbreviations. Trytexdoc glossariesbeginto get started. – jon Mar 12 '13 at 22:37