引用参考文献

引用参考文献

我该如何在 BibTeX 中做到这一点 -

http://www.reading.ac.uk/library/finding-info/guides/lib-citing-cited-ref.aspx

有任何想法吗?

答案1

natbib使用具有许多功能的包和BibTeX。

bibtex 文件(ex.bib)例如:

@Article{john_doe,
 author = {{Doe}, J.},
 title = "{\it Some title}",
 journal = {Book or journal},
 year = {2014},
 volume = "{\bf 1}",
 pages = {5--10},
}

源文件(ex.tex)为:

\documentclass[12pt]{report}
\usepackage{natbib}

\begin{document}

Some text here \citep[cited by][]{john_doe}.


\bibliographystyle{apalike} %just an example of citation style
\bibliography{ex}{}

\end{document}

这将生成以下两页文件:

第 1 页

第 2 页

但请记住,引用您未读过的出版物在道德上是不正确的。

相关内容