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.
Asked
Active
Viewed 445 times
0
1 Answers
0
Just use in your preamble:
\AtBeginDocument{\def\bibname{header}}
It should do the trick.
Bernard
- 271,350
\documentclass{...}and ending with\end{document}. – Benedikt Bauer Nov 30 '15 at 12:31\addto\captionsenglish{\renewcommand{\bibname}{header}\renewcommand{\refname}{header}}– egreg Nov 30 '15 at 13:01