我的乳胶文件的基本结构是: -
\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 构建两次。
我已经按照这个程序,但无法看到结果。请帮助我。如果您需要更多信息,请告诉我。