我想引用一些书籍作为参考文献并将页码添加到参考文献中,
例如我有这个参考书目条目:
@book{ref2,
title={Introduction to Information Systems: Supporting and Transforming Business},
author={Rainer, R.K. and Cegielski, C.G.},
isbn={9780470473528},
year={2010},
publisher={John Wiley \& Sons}
}
我想要引用第 xi 页,或者第 4 页,如下所示:
R.K. Rainer and C.G. Cegielski. Introduction to Information Systems :
Supporting and Transforming Business. John Wiley & Sons, 2010. p. 4.
经过一些搜索,我发现可以通过向 cite 命令添加一些参数来实现这一点,如下所示:
\cite[options]{ref2}
我尝试了在搜索时发现的不同方法:
\cite[chap.~1,p.~4]{ref2}
\cite[p.~4]{ref2}
\cite[extras={,p.~4}]{ref2}
\cite[extras={p.~4}]{ref2}
但它没有显示,它只显示 bib 条目(标题、作者、出版商......),我试图改变参考书目样式但相同(我使用了普通样式、ieeetr 和 alpha)。
对于编译,我认为它是有效的,因为当改变样式时结果会改变。
有什么建议吗?谢谢^^。
答案1
有了plain
书目风格,我能够使用
\cite[pg.100]{ref}
它运行得很好。它在文档中显示如下:
[5,第 100 页]
但是,对于其他书目样式,我没有解决方案。
答案2
尝试\bibliographystyle{unsrt}
使用这样的 BibTeX 条目:
@book{Test,
author= {Test, A.},
year=2016,
title= {A Book About BibTeX},
publisher= {A Publisher},
note = "pg. 4"
}
然后简单地\cite{Test}
。
有关 BibTeX 条目和必填字段的更多信息,请参阅BibTeX 文档 :)
。