我的latex文件的基本结构是:
\documentclass{article}
\usepackage{cite}
\begin{document}
% all the content goes here
\bibliographystyle{plain}
\bibliography{biblio.bib}
\end{document}biblio.bib是存储书目的文件。biblio.bib文件的内容包括:
@inproceedings{sase,
title={High-performance complex event processing over streams},
author={Wu, Eugene and Diao, Yanlei and Rizvi, Shariq},
booktitle={Proceedings of the 2006 ACM SIGMOD international conference on Management of data},
pages={407--418},
year={2006},
organization={ACM}
}
@inproceedings{wu2006,
title={High-performance complex event processing over streams},
author={Wu, Eugene and Diao, Yanlei and Rizvi, Shariq},
booktitle={Proceedings of the 2006 ACM SIGMOD international conference on Management of data},
pages={407--418},
year={2006},
organization={ACM}
}
@inproceedings{ishi1995,
title={A synchronization mechanism for continuous media in multimedia communications},
author={Ishibashi, Yutaka and Tasaka, Shuji},
booktitle={INFOCOM'95. Fourteenth Annual Joint Conference of the IEEE Computer and Communications Societies. Bringing Information to People. Proceedings. IEEE},
pages={1010--1019},
year={1995},
organization={IEEE}
}但是参考输出仅显示为第一次引用,而其他两个没有显示。我看过一些视频,建议在添加引用后,构建过程必须按以下顺序完成: 1.使用BibTeX构建一次2.使用PdfLatex构建两次。
我已经遵循了这个过程,但是看不到results.Please对我的帮助。如果你需要更多的信息,请让我知道。
发布于 2016-09-08 05:24:35
为了查看引用部分中的引用,我们必须使用\cite{<myLabel>}在正文中提及它们,并刷新页面,然后它们将显示出来
https://stackoverflow.com/questions/39029558
复制相似问题