2016-08-19 20 views
0

我乳膠文件的基本結構: -無法添加第二個refernce,正如我在名爲.bib文件中添加第二個引用,並建立從乳膠文件,更改不會顯示

\documentclass{article} 
\usepackage{cite} 
\begin{document} 
% all the content goes here 
\bibliographystyle{plain} 
\bibliography{biblio.bib} 
\end{document} 

文獻記錄。圍兜是參考書目存儲的文件。 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} 
} 

但表示只是第一個引用參考輸出,而其他兩個不被shown.I已經看到了一些影片,告知引文添加後,構建過程必須按以下順序完成 1.使用BibTeX構建一次 2.使用PdfLatex構建兩次。

我按照這個程序,但無法看到結果。請幫助我。如果你需要更多的信息,請讓我知道。

+0

errr,剛剛確認,你用\舉{

+0

是的,這是問題所在。當我包括\ cite {}並刷新它,然後它顯示出來。非常感謝您的幫助。我很感激。 –

回答

0

爲了見參考文獻部分,我們不得不提到他們使用\cite{<myLabel>}文本中的引文,並刷新頁面,那麼他們將被顯示

相關問題