MiKTeX and proTeXtchanging the name of the list of acronyms

Information and discussion about MikTeX distribution for Windows and the related proTeXt: Installing, updating, configuring
Post Reply
Andy22
Posts: 16
Joined: Wed Jul 25, 2007 10:11 am

changing the name of the list of acronyms

Post by Andy22 »

I'm using the glossaries-package wit the acronym option

Code: Select all

\usepackage[toc,acronym,nonumberlist]{glossaries}
.

I need to change the name of the acronym list from "Acronyme" to "Abkürzungen".

But

Code: Select all

\renewcommand{\acronymname}{Abkürzungen}
does not work.

It seems that I can not change any of the names provided by the package like \symbolname, \entryname and so on.

What am I doing wrong?

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org
LaTeX Beginner's Guide LaTeX Cookbook LaTeX TikZ graphics TikZによるLaTeXグラフィックス
User avatar
localghost
Site Moderator
Posts: 9201
Joined: Fri Feb 02, 2007 12:06 pm

changing the name of the list of acronyms

Post by localghost »

Since you are writing in german, I presume that you are using the babel package. If not, you should do so.

Code: Select all

\usepackage[ngerman]{babel}
With this the way you are trying to redefine the names doesn't work (as you already experienced). You may have to do that in another but very similar way.

Code: Select all

\addto{\captionsngerman}{
  \renewcommand{\acronymname}{Abkürzungen}
}
Refer to the documentation of the glossaries package and try to find out in which way the package cooperates with or supports the babel package.
How to make a "Minimal Example"
Board Rules
Avoidable Mistakes[/size]

¹ System: openSUSE 42.2 (Linux 4.4.52), TeX Live 2016 (vanilla), TeXworks 0.6.1
Andy22
Posts: 16
Joined: Wed Jul 25, 2007 10:11 am

Re: changing the name of the list of acronyms

Post by Andy22 »

Thanks for the answer.

As you presumed right I use babel. But I use it since my first tex-project and I never came across something I could not rename in the way I mentioned.
Post Reply