Sorry, your browser cannot access this site
This page requires browser support (enable) JavaScript
Learn more >

举例

main.tex

指定引用所在文件和引用样式

\documentclass{article}

\begin{document}
 
\bibliographystyle{ACM-Reference-Format}
\bibliography{main} % 引用在文件/main.bib中

... are employed for improving network fault tolerance \cite{DBLP:journals/ton/JayaveluRY09}

\end{document}

main.bib

```bibtex
@article{DBLP:journals/ton/JayaveluRY09, % 这个DBLP:journals/ton/JayaveluRY09是引用这个reference的label
author = {Giridhar Jayavelu and
Srinivasan Ramasubramanian and
Ossama Younis},
title = {Maintaining colored trees for disjoint multipath routing under node
failures},
journal =

评论