MRLookup

自动提取BibTeX数据并修改BibTeX关键字为AUTHOR_YEAR_TITLE的形式.

当前为 2017-11-14 提交的版本,查看 最新版本

作者
Abel Van
评分
0 0 0
版本
1.5
创建于
2017-11-14
更新于
2017-11-14
大小
4.5 KB
许可证
OSI-SPDX-Short-Identifier
适用于

MRlookup

Extract BibTeX data automatically and modify BibTeX Key to AUTHOR_YEAR_TITLE

Introduction

This script will acts on mrlookup and mathscinet, which will change the bibtex key to AuthorsFirstName+Year+FirstWordofTitle. With the following features:

  • You can set ignore words for the title, the current setting is:
var IgnoreStringInTitle = [
  'a',
  'an',
  'on',
  'the',
  'another'
];
  • You can copy the bibitem to clipboard by simply click on it

How to install?

I only use it on firefox with GreaseMonkey adds on, the script can be installed by the guide.

You may also want to have a look on how to install for other bowsers, but may face compatibility problem, since the click-to-copy function is based on Greasemonkey's GM_setClipboard function.

How to feedback?

If you have any suggestion, you can contact me at van141.abel(at)gmail.com. Also, you can initial an issue

Update Log

Version 1.5

Version 1.4

  • Fix the wrong regular expression for extracting the first word of title

Version 1.3

  • Add rule to clean international character in title and author

Version 1.2

  • Add rule to filter ' and " in Title

Version 1.1

  • Add clean rule of title
  • Recursively remove ignore words in title

Version 1.0

  • the initial version