📜  bibtex 删除注释字段中的括号 - TypeScript 代码示例

📅  最后修改于: 2022-03-11 14:48:35.761000             🧑  作者: Mango

代码示例1
# LaTeX - It swap the field from note to addendum 
# that by default has no brackets

\DeclareSourcemap{
  \maps[datatype=bibtex]{
    \map{
      \step[fieldsource=note, final]
      \step[fieldset=addendum, origfieldval, final]
      \step[fieldset=note, null]
    }
  }
}