里面可以有标题吗thebibliography
?我需要将参考资料分为“必需”和“可选”。
我尝试简单地在\bibitem
s 之间放置一些文本,但编译器抱怨遇到不属于 的文本\bibitem
。
目前,我更倾向于不涉及 BibTeX 的解决方案,我仍在学习 LaTeX,而对于我正在撰写的论文,我只有少量的参考资料(而且没有那么多时间,真是令人惊讶 :-)。当然,我计划在未来学习 BibTeX。
发帖之前我看了如何将参考书目分成单独编号的部分?其中一个答案提到multibib
它似乎具有这样的功能。无论如何我都会询问是否有其他解决方案,我只需要显示一些额外的文本,而不是真正将参考书目分解为子书目。
答案1
由于您不喜欢使用 BibTeX,这里有一个仅使用标准书目环境的解决方案。
您可以使用\item
命令将标题或文本插入参考书目,例如:
\documentclass{article}
\begin{document}
\begin{thebibliography}{KnuthXX}
\item[]\hspace{-\labelwidth}\hspace{-\labelsep}\textbf{Required}:
\bibitem[Knuth86]{DK86} D.E. Knuth,
The TeXbook, 1986
\item[]\hspace{-\labelwidth}\hspace{-\labelsep}\textbf{Optional}:
\bibitem[Knuth89]{DK89} D.E. Knuth,
Typesetting Concrete Mathematics, 1989
\end{thebibliography}
\end{document}
或者使用两个书目环境:
\documentclass{article}
\begin{document}
\renewcommand{\refname}{Required}
\begin{thebibliography}{KnuthXX}
\bibitem[Knuth86]{DK86} D.E. Knuth,
The TeXbook, 1986
\end{thebibliography}
\renewcommand{\refname}{Optional}
\begin{thebibliography}{KnuthXX}
\bibitem[Knuth89]{DK89} D.E. Knuth,
Typesetting Concrete Mathematics, 1989
\end{thebibliography}
\end{document}
答案2
我的简历中有几类参考文献。我用过bibunits
,而且我对结果很满意。不过我从来没有尝试过手写参考书目,所以我不知道那会有多麻烦。我强烈建议学习 BibTeX。它不会花很长时间,特别是如果你有一个样本可以看的话。