35

I'm trying to customize the Abstract of a memoir document using the following command:

 \renewcommand{\abstractname}{Executive Summary}

The problem is that it actually has no effect. How can I achieve this?

lockstep
  • 250,273

2 Answers2

47

Your command is correct. However, I guess you're using the babel langage package which overrides it. In that case, use the \addto command of babel, i.e. replace

\renewcommand{\abstractname}{Executive Summary}

by

\addto{\captionsenglish}{\renewcommand{\abstractname}{Executive Summary}}

That applies to further names as well, such as \prefacename, \refname etc. You can use one \addto command for all. If you use a different language, replace \captionsenglish by the similar command corresponding to the language.

Stefan Kottwitz
  • 231,401
3

And, of course,

\addto{\captionsitalian}{\renewcommand{\abstractname}{Contenuto}}

if the language is Italian, and, generally:

\addto{\captionsLANGUAGE}{\renewcommand{\abstractname}{Contenuto}}