thebibliography 环境

thebibliography 环境

当我写下:

\documentclass{report}
\begin{document}
\begin{thebibliography}{99}
\bibitem{key1} First item 
\bibitem{key2} Second item 
\end{thebibliography}
\end{document}

pdf 显示“参考书目”作为标题。我可以更改它吗?例如,不显示“参考书目”,而是显示“信息来源”。此外,我可以让它出现在目录中吗?

以下是我的完整序言:

\documentclass[12pt,a4paper,twoside]{report}
\usepackage[catalan]{babel}
\addto\captionscatalan{\renewcommand{\bibname}{Fonts d'informació}}
\usepackage[nottoc,numbib]{tocbibind}
\usepackage{graphicx}
\usepackage[left=2.5cm,right=2cm,top=2cm,bottom=2cm]{geometry}
\usepackage{fancyvrb}
\usepackage{color}
\usepackage{float}
\usepackage{verbatim}
\usepackage[utf8]{inputenc}
\usepackage{setspace}
\usepackage{parskip}
\parskip=2mm
\makeindex

感谢您的帮助。

答案1

% arara: pdflatex
% arara: pdflatex

\documentclass{report}
\usepackage[catalan]{babel}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[nottoc]{tocbibind}
\addto\captionscatalan{\renewcommand*{\bibname}{Fonts d'informació}}

\begin{document}
\tableofcontents
\setcounter{chapter}{4}
\begin{thebibliography}{99}
\bibitem{key1} First item 
\bibitem{key2} Second item 
\end{thebibliography}
\end{document}

在此处输入图片描述

在此处输入图片描述

相关内容