在我的论文中,我想引用一本书的不同章节。这本书已经是了bibitem
。现在,例如,我想引用§1.2 p.55, §2.5 p.144
和§3.9 p.200
。如何在thebibliography
不提及所有参考文献整体的环境中实现这一点author+book+publisher
?示例:
\begin{thebibliography}{9}
\bibitem{1}
John A. Rice, Mathematical Statistics and Data Analysis Third Edition,Duxbury Advanced Series (2007)
\bibitem{2} §1.2 p.55
\bibitem{3} §2.5 p.144
\bibitem{4} §3.9 p.200
\bibitem{5}
Alvin C. Rencher, Linear Models in Statistic; Wiley Series in Probability and Statistics (2000)
\begin{thebibliography}{9}
这是一种可能性,但不太好。有没有更优雅的解决方案?
答案1
您可以在引文中添加额外信息,例如\cite[\S1.2]{1}
。
\documentclass{article}
\begin{document}
We refer to \cite[\S1.2 p.55]{Rice07}, and later \cite[\S2.5 p.144, \S3.9 p200]{Rice07}.
\begin{thebibliography}{9}
\bibitem{Rice07}
John A. Rice, Mathematical Statistics and Data Analysis Third Edition, Duxbury Advanced Series (2007)
\bibitem{Rencher00}
Alvin C. Rencher, Linear Models in Statistic; Wiley Series in Probability and Statistics (2000)
\end{thebibliography}
\end{document}
如果是不同作者的部分,可以使用 Bibtex 来解决这个问题如何使用 BibTeX 引用非图书编辑或作者撰写的书籍章节?。Bibtex 还必须crossref
引用其他 bib 条目。