0

I am using the \usepackage[nottoc,notlot,notlof]{tocbibind} to import my Bibliography. However, I would like to change the name, both in the ToC and the header, I have tried to use commands such as \renewcommand{\bibname}{header} and \renewcommand{\refname}{header} but without success. I'm using babel with English if that matters.

darthbith
  • 7,384
David
  • 1

1 Answers1

0

Just use in your preamble:

\AtBeginDocument{\def\bibname{header}}

It should do the trick.

Bernard
  • 271,350