-
Notifications
You must be signed in to change notification settings - Fork 5
/
README
106 lines (67 loc) · 2.2 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
Description
-----------
arxivcheck is a module of
`bibcure <https://github.com/bibcure/bibcure>`__ and
`scihub2pdf <https://github.com/bibcure/scihub2pdf>`__
Install
-------
::
$ sudo pip install arxivcheck
or if you want the full version
::
$ sudo pip install bibcure
Features and how to use
-----------------------
Given a arxiv id...
::
$ arxivcheck 1601.02785
Given a arxiv title
::
$ arxivcheck -t Periodic Table of Topological
Given a file of titles or ids
::
$ arxivcheck -i arxivs.txt
- check if has been published, and then returns the updated bib
return outputs like
::
@article{2007Karianearxiv:math/0703567v2,
author = {Kariane Calta and John Smillie},
journal = {arxiv:math/0703567v2},
title = {Algebraically periodic translation surfaces},
url = {http://arxiv.org/abs/math/0703567v2},
year = {2007}
}
@article{Bradlyn_2016,
doi = {10.1126/science.aaf5037},
url = {https://doi.org/10.1126%2Fscience.aaf5037},
year = 2016,
month = {jul},
publisher = {American Association for the Advancement of Science ({AAAS})},
volume = {353},
number = {6299},
pages = {aaf5037},
author = {Barry Bradlyn and Jennifer Cano and Zhijun Wang and M. G. Vergniory and C. Felser and R. J. Cava and B. Andrei Bernevig},
title = {Beyond Dirac and Weyl fermions: Unconventional quasiparticles in conventional crystals},
journal = {Science}
}
bibcure
-------
::
$ bibcure -i input.bib -o output.bib
Given a bib file...
- check sure the Arxiv items have been published, then update
them(requires internet connection)
- complete all fields(url, journal, etc) of all bib items using DOI
number(requires internet connection)
- find and create DOI number associated with each bib item which has
not DOI field(requires internet connection)
- abbreviate jorunals names
::
$ doitobib 10.1038/s41524-017-0032-0
Given a DOI number...
- get bib item given a doi(requires internet connection)
::
$ titletobib An useful paper
Given a title...
- search papers related and return a bib for the selected
paper(requires internet connection)