通过 .bst 文件取消加粗参考书目中的 URL

通过 .bst 文件取消加粗参考书目中的 URL

通过 makebst 创建自己的 .bst 文件后,我想更改参考书目中显示的 URL 格式。目前 URL 是粗体,我希望它不是粗体,而是标准格式。

bib 文件中的特定字段称为网址,文档类型为@misc.bst文件中提到url的部分如下所示:

FUNCTION {format.url}
{
  url
  duplicate$ empty$
    { pop$ "" }
    { "\urlprefix\url{" swap$ * "}" * }
  if$
}

FUNCTION {begin.bib}
{ 
.
.
.
.
  "\providecommand{\url}[1]{\texttt{#1}}"
  write$ newline$
  "\providecommand{\urlprefix}{URL: }"
  write$ newline$
  "\expandafter\ifx\csname urlstyle{rm}\endcsname\relax"
  write$ newline$
.
.
}

在 - 的里面@miscurl 字段的调用函数

  format.url output

谢谢!

相关内容