texstudio中用bib參考文獻
需要官網下載Transactions-WIN-and-MAC-Bibliography-File檔案,因為我要發的是期刊,trans,所以使用IEEEtran.bst和IEEEexample.bib檔案,自己寫的參考文獻名為bibfile.bib,在文章結尾\end{document}之前新增:
\bibliographystyle{IEEEtran}
\bibliography{IEEEexample,bibfile}
然後執行,我執行之後article參考文獻會有online網址索引,要去掉這個網址,需要修改IEEEtrans.bst檔案,將
FUNCTION {article}
{ std.status.using.comma
start.entry
if.url.alt.interword.spacing
format.authors "author" output.warn
name.or.dash
format.article.title "title" output.warn
format.journal "journal" bibinfo.check "journal" output.warn
format.volume output
format.number.if.use.for.article output
format.pages output
format.date "year" output.warn
format.note output
%format.url output
fin.entry
if.url.std.interword.spacing
}
將format.url output登出掉即可,一開始看網上,沒找到答案,就花了半個小時去看Howtodo手冊,試了半個小時,分享出來