Biburl 无法在 url 中使用 % 符号

Biburl 无法在 url 中使用 % 符号

我试图从这个 url 进行引用http://www.crmsoftwareblog.com/2009/11/what-is-xrm-how-crm-software-can-track-more-than-just-%E2%80%9Ccustomers%E2%80%9D/,但是由于 % 符号,LaTeX 告诉我出现了问题。

我也尝试过转义%,结果是:http://www.crmsoftwareblog.com/2009/11/what-is-xrm-how-crm-software-can-track-more-than-just-\%E2\%80\%9Ccustomers\%E2\%80\%9D/,但是仍然没有用。

你能告诉我如何解决这个问题吗?

答案1

这对我来说很好:

  • 文件percbib.tex

    \documentclass[11pt]{article}
    \usepackage{url}
    \begin{document}
    \nocite{*}
    \bibliographystyle{plain} 
    \bibliography{percbib}
    \end{document}
    
  • 文件percbib.bib

    @Misc{entry,
      author = "Some author",
      title = "Some title",
      year = 2013,
      howpublished = "\url{http://www.crmsoftwareblog.com/2009/11/what-is-xrm-how-crm-software-can-track-more-than-just-%E2%80%9Ccustomers%E2%80%9D/}"
    }
    

相关内容