1. 程式人生 > >latex 中加入參考文獻方法

latex 中加入參考文獻方法

1.·先在百度學術上找到要引用的論文,然後找到BibTeX 格式,點選得到該引用格式資訊,複製下來,

@inproceedings{Long2015Fully,
  title={Fully convolutional networks for semantic segmentation},
  author={Long, Jonathan and Shelhamer, Evan and Darrell, Trevor},
  booktitle={Computer Vision and Pattern Recognition},
  pages={3431-3440},
  year={2015},
}
2.將上面的引用資訊複製到latex中論文對應的.bib檔案中,儲存該.bib檔案

3.在論文需要標註引用的地方 寫上\cite後,會自動出現bib檔案中有的參考文獻,找到並選中。然後儲存。

4.依照上面的方法寫完所有的參考文獻後,點選 build and review 按鈕,生成新的pdf格式。然後需要找到該論文對應的bbl檔案,完整複製,然後貼上在tex檔案的最後,同時將原本的bibliography註釋掉,如下:

%\bibliographystyle{plain}
%\bibliography{cybib}



\begin{thebibliography}{1}


\bibitem{Long2015Fully}
Jonathan Long, Evan Shelhamer, and Trevor Darrell.
\newblock Fully convolutional networks for semantic segmentation.
\newblock In {\em Computer Vision and Pattern Recognition}, pages 3431--3440,
  2015.


\end{thebibliography}