我想在报告末尾添加参考文献列表,但当我使用命令时\begin{thebibliography}
,我得到的标题是“第 1 章”。以下是示例:
\renewcommand{\bibname}{References}
\begin{thebibliography}{10}
\bibitem{notes} John W. Dower {\em Readings compiled for History 21.479.} 1991.
\bibitem{impj} The Japan Reader {\em Imperial Japan 1800-1945} 1973: Random House, N.Y.
\end{thebibliography}
只是\renewcommand{\bibname}{}
删除了“参考书目”标题。页面顶部仍然显示“第 1 章”(因为我使用了命令\chapter*{chaptername}
)。我知道报告类将把参考书目定义为一章,文章类将其定义为一节,但我依赖于使用报告类。提前致谢!!
答案1
尝试使用该tocbibind
包。它将为参考书目部分选择正确的章节/部分标题样式。
\documentclass{report}
\usepackage{tocbibind}
\begin{document}
\renewcommand{\bibname}{References}
\begin{thebibliography}{10}
\bibitem{notes} John W. Dower {\emph{Readings compiled for History 21.479.}} 1991.
\bibitem{impj} The Japan Reader {\emph{Imperial Japan 1800-1945}} 1973: Random House, N.Y.
\end{thebibliography}
\end{document}
答案2
您可以暂时禁用该\chapter
功能,然后将其移植到任何\section
可以使用的方式
\let\chapter\section
如果您需要\chapter
参考书目之后的功能,那么也可以恢复它:
\documentclass{report}
% Store \chapter functionality in \oldchapter
\let\oldchapter\chapter
\begin{document}
% Let \chapter act just like \section
\let\chapter\section
\renewcommand{\bibname}{References}
\begin{thebibliography}{10}
\bibitem{notes} John W. Dower \emph{Readings compiled for History 21.479.} 1991.
\bibitem{impj} The Japan Reader \emph{Imperial Japan 1800-1945} 1973: Random House, N.Y.
\end{thebibliography}
%% Restore original \chapter functionality
%\let\chapter\oldchapter
\end{document}