-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
48c398a
commit 6424025
Showing
5 changed files
with
72 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
========== | ||
arxivcheck | ||
========== | ||
.. automodule:: arxivcheck.arxiv | ||
:members: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
======== | ||
Examples | ||
======== | ||
|
||
Given a arxiv id... | ||
-------------------- | ||
|
||
.. code-block:: bash | ||
$ arxivcheck 1601.02785 | ||
Given a arxiv title | ||
------------------- | ||
|
||
.. code-block:: bash | ||
$ arxivcheck -t Periodic Table of Topological | ||
Given a file of titles or ids | ||
----------------------------- | ||
|
||
|
||
.. code-block:: bash | ||
$ arxivcheck -i arxivs.txt | ||
check if has been published, and then returns the updated bib | ||
return outputs like | ||
|
||
.. code-block:: bash | ||
@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} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
======= | ||
Install | ||
======= | ||
|
||
.. code-block:: bash | ||
pip install arxivcheck |