Is there a way in the report class to change the name of a document header? For example, change \chapter{Test Chapter} from
Chapter 1
Test Chapter
to
Part 1
Test Chapter
I don't want to use \part, just to change the name applied to the \chapter command.
Example Input:
\documentclass{report}
\begin{document}
\chapter{Test Chapter}
Test text
\end{document}
Expected Output:
Part 1
Test Chapter
Test text
Thanks!
\renewcommand*{\chaptername}{Flobbel}If you usebabelorpolyglossiayou may need to make sure that the language-specific definitions don't overwrite this:\usepackage{etoolbox} \appto\captionsngerman{\renewcommand*{\chaptername}{Flobbel}}if your language isngerman– moewe Jul 31 '18 at 15:52