The title of "References" does not change to the new title. I am sure that the problem is with apa7 package. When changing the document class to article, the title changes.
\AtEndPreamble{%
\@ifpackageloaded{biblatex}{% the user has loaded biblatex
\@ifundefined{def@man}{%
\defbibheading{bibliography}{\section*{\normalfont\textbf\refname}}%
}{%
\defbibheading{bibliography}{\clearpage\section*{\normalfont\textbf\refname}}%
}
}{}
}
To:
\AtEndPreamble{%
\@ifpackageloaded{biblatex}{% the user has loaded biblatex
\@ifundefined{def@man}{%
\defbibheading{bibliography}[\refname]{\section*{\normalfont\textbf{#1}}}%
}{%
\defbibheading{bibliography}[\refname]{\clearpage\section*{\normalfont\textbf{#1}}}%
}
}{}
}
Minimal example:
The title of "References" does not change to the new title. I am sure that the problem is with apa7 package. When changing the document class to article, the title changes.
Possible solution based on this discussion:
Change
To: