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?
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?
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.
\renewcommand should work. Otherwise you could just ask a new question with all details you have.
– Stefan Kottwitz
Aug 27 '15 at 10:52
\renewcommand wasn't working. This solution didn't either. I'm putting a pin on this issue for now, but I just might follow your recommendation later. Thanks.
– André Fratelli
Aug 27 '15 at 17:17
And, of course,
\addto{\captionsitalian}{\renewcommand{\abstractname}{Contenuto}}
if the language is Italian, and, generally:
\addto{\captionsLANGUAGE}{\renewcommand{\abstractname}{Contenuto}}
captionsenglish is not the same as captionsbritish !?
– Aaron
Jul 09 '21 at 05:21