Biber 的麻烦

Biber 的麻烦

我正在使用 latex 写一篇文章,但目前我的参考书目管理出现了问题(我使用 biblatex 包,后端是 biber 1.8)。生成的 bbl 文件似乎将文章摘要中的“%”符号视为注释命令,因此危及了文件的其余部分。有没有办法告诉 biber 不要导入我的文章摘要,或者(更好的办法)告诉他在摘要字段中用“/%?”替换“%”。我阅读了提供的指南,但它们超出了我的 IT 技能。提前致谢

答案1

只需将一个文件放在biber.conf包含 .tex 文件的同一文件夹中,在其中写入以下内容:

<!-- biber ignores Abstract field  -->
<!-- No escape of special characters like % or & necessary -->
<config>
  <sourcemap>
    <maps datatype="bibtex" map_overwrite="1">
      <map>
        <map_step map_field_set="ABSTRACT" map_null="1"/>
      </map>
    </maps>
  </sourcemap>
</config>

相关内容