latex 插入url引用(注意带下划线_的url引用)

先在bib文件里编辑url引用,再\cite,

@misc{bworld,
  author = {Ingo Lütkebohle},
  title = {{BWorld Robot Control Software}},
  howpublished = "\url{http://aiweb.techfak.uni-bielefeld.de/content/bworld-robot-control-software/}",
  year = {2008}, 
  note = "[Online; accessed 19-July-2008]"
}
或者直接
@misc{bworld,
  author = {Ingo Lütkebohle},
  title = {{BWorld Robot Control Software}},
  howpublished = {http://aiweb.techfak.uni-bielefeld.de/content/bworld-robot-control-software/},
  year = {2008}, 
  note = "[Online; accessed 19-July-2008]"
}

注意要在tex文件里加上\usepackage{url}


如果没有author, title之类的就删掉对应那行即可。


对于带下划线_的url引用,直接写会报错:missing $ inserted。

可以在下划线_之前加上转义符号\,变成\_。


你可能感兴趣的:(latex 插入url引用(注意带下划线_的url引用))