我怎样才能在文章中仅输入参考文献?

我怎样才能在文章中仅输入参考文献?

问题:我正在撰写一篇评论论文,其中我只想单独输入参考文献。我该怎么做?

请指导我

我给出的 MWE 包含一些以 Bibliography.bib 形式呈现的参考文献,如下所示。

@article{eringen1964simple,
  title={Simple microfluids},
  author={Eringen, A Cemal},
  journal={International Journal of Engineering Science},
  volume={2},
  number={2},
  pages={205--217},
  year={1964},
  publisher={Elsevier}
}

@article{eringen1966theory,
  title={Theory of micropolar fluids},
  author={Eringen, A Cemal},
  journal={Journal of Mathematics and Mechanics},
  pages={1--18},
  year={1966},
  publisher={JSTOR}
}

@article{peddieson1970recent,
  title={Recent Adv},
  author={Peddieson Jr, J and McNitt, R},
  journal={Eng. Sci},
  volume={5},
  pages={405},
  year={1970}
}

@article{hartmann1937hg,
  title={Hg-dynamics II},
  author={Hartmann, J and Lazarus, F},
  journal={Theory of laminar flow of electrically conductive Liquids in a Homogeneous Magnetic Field},
  volume={15},
  number={7},
  year={1937}
}

@article{pavlov1974magnetohydrodynamic,
  title={Magnetohydrodynamic flow of an incompressible viscous fluid caused by deformation of a plane surface},
  author={Pavlov, KB},
  journal={Magnitnaya Gidrodinamika},
  volume={4},
  number={1},
  pages={146--147},
  year={1974}
}

答案1

假设您想要一个只包含 bib 文件中所有参考文献的文档,那么使用\nocite{*}应该可以。这是 bibtex 的 MWE:

\documentclass{article} 
\begin{document} 
\nocite{*} 
\bibliographystyle{plain} 
\bibliography{Bibliography.bib} 
\end{document}

结合您的.bib文件,将产生以下输出:

在此处输入图片描述


根据参考文献的预期顺序,您可能需要选择不同的 bibliographystyle。虽然plain根据作者的姓氏对参考文献进行排序,但使用unsrt将导致参考文献按照引用的顺序列出,在这种特定情况下,这与它们在文件中出现的顺序相同.bib

相关内容