In LaTeX documents, you can change the names of certain sections, like "References," to better fit your document's context. This is done using the \renewcommand{\
command. For example, in an "article" document, the default label for references is "References," while in "report" and "book" documents, it's "Bibliography."
Here's how you can do it:
\documentclass{article} \usepackage{ngerman} \renewcommand{\refname}{Quellen} % Change label to "Quellen" \begin{document} Quelle anstelle Literatur %... Text %... \begin{thebibliography}{9} % ... \end{thebibliography} \end{document}
\documentclass{report} \usepackage{ngerman} \renewcommand{\bibname}{Quellen} % Change label to "Quellen" \begin{document} Quelle anstelle Literatur %... Text %... \begin{thebibliography}{9} % ... \end{thebibliography} \end{document}