参考书目作为章节

参考书目作为章节

我正在尝试制作简单的参考书目列表。例如,我在文本中有一个参考点 [1],它需要自动出现在参考书目列表中。

在文档中,我使用了以下\usepackage{hyperref}插入的代码:

\cite{1}

\begin{thebibliography}{1}
\bibitem{1} 
Michel Goossens, Frank Mittelbach, and Alexander Samarin. 
\textit{The \LaTeX\ Companion}. 
Addison-Wesley, Reading, Massachusetts, 1993.
\end{thebibliography}

到目前为止,我遇到了一些问题:

  • 参考书目未出现在索引中。
  • 参考书目页面未显示为章节

答案1

我猜,您说的“索引”指的是目录。要在那里添加参考书目,您可以使用\addcontentsline{toc}{chapter}{Bibliography}。或者,您可以使用类似biblatex这样的工具,它有选项可以自动将其添加到目录中。

\documentclass{book}

\begin{document}

    \tableofcontents

    \chapter{normal chap}
    \cite{1}

    \begin{thebibliography}{1} 
        \addcontentsline{toc}{chapter}{Bibliography}
        \bibitem{1} Michel Goossens, Frank Mittelbach, and Alexander Samarin. \textit{The \LaTeX\ Companion}. Addison-Wesley, Reading, Massachusetts, 1993. 
    \end{thebibliography}

\end{document}

在此处输入图片描述 在此处输入图片描述

相关内容