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手册,试了半个小时,分享出来

猜你喜欢

转载自blog.csdn.net/wasefadg/article/details/80109827
今日推荐