Tired of copying and pasting bibtex entries? Here's a new way to manage your bibtex entries — do not manage them!
adstex automatically identifies all citation keys (e.g., identifiers, author+year)
in your TeX source files and use
NASA's Astrophysics Data System (ADS)
to generate corresponding bibtex entries!
adstex was featured in an ADS blog post "User-Developed Tools for ADS"!
-
Write your papers without worrying about the bibtex entries. Simply put down arXiv IDs, ADS bibcodes, DOIs, or first author & year citation keys in your
\citecommands, and then useadstexto automatically generate the bibtex file for you. -
adstexrecognizes all variants of the\citecommands, and works with various styles of citation keys. For example,adstexwould work with all the following:\citet{2404.14498} \citep[e.g.,][]{Mao:Geha:2021, Drlica‑Wagner2019} \citealt{10.1093/mnras/stx3111, 2024ApJ...976..118G}
-
adstexworks along with your existing bibtex files. It simply skips (or updates) those citation keys that already have corresponding bibtex entries. -
adstexwill also update existing bibtex entries for you! Citing an arXiv preprint which is now published in a journal? No problem,adstexwill detect this and automatically update the bibtex entry. (This is amazing, yes, I know!) -
adstexalso detects citation keys that actually refer to the same paper (e.g., you use an author:year citation key but another collaborator uses an arxiv ID as key for the same paper), and will prompt you to fix these issues.
You can install adstex from conda-forge
conda install adstex --channel conda-forgeOr from PyPI
pip install adstexadstex requires an API token to use ADS. Here's how to obtain one:
-
Visit NASA/ADS to sign up for an account if you don't have one.
-
Visit the API Token page, log in with your ADS account and you will see an API token string. Copy that token string.
-
Set your token string to an environment variable named
ADS_API_TOKEN. You can do that by running:# If you use bash or bash-like shells -- export ADS_API_TOKEN="your token string here"
# If you use csh or csh-like shells -- setenv ADS_API_TOKEN "your token string here"
You can put this line into your
~/.bashrcor~/.cshrcfile.
Once you finish the paper (sorry, can't help with that!), simply run adstex
with the following command (Internet connection is needed for adstex to work.):
adstex your_tex_source.texadstex will automatically build the bibtex files, and write to the bibtex
source that you specified in your tex source file.
-
If you want to have more control on the output file (or if you are using adstex v0.2.x), use the
-ooption:adstex your_tex_source.tex -o your_bib_source.bib
Once
adstexis done, it will write all bibtex entries in the file that you specified with the-ooption. -
You can also provide multiple TeX source files at once:
adstex your_tex_source1.tex [your_tex_source2.tex [...]] -o your_bib_source.bib -
For citation keys that are arXiv IDs, ADS bibcodes, or DOIs,
adstexwill automatically find the corresponding bibtex entries. -
For first author + year citation keys,
adstexwill search on NASA ADS and provide you a list of candidate papers to select from. If you don't see the paper you are looking for, you can directly enter an ADS bibcode or arXiv ID when prompted.
Here are some useful optional arguments that you can specify. You can also find a complete option list by running:
adstex --help-
--use-coauthors(new in v0.6.0): Use coauthors in the citation key in the ADS search. The citation keys should have the format offirstauthor:coauthor1:coauthor2:year. -
--include-physics: Include the physics database when searchingauthor:yearon ADS. Without this option, only the astronomy database is used. -
--parallel: Enable multiple threads to speed up the ADS search. -
--no-update: Ignore all keys that are already in the bib file. This option will speed up the search, but will not update any arXiv papers that are published in journals. -
--no-backup: Do not generate the backup bib file when runningadstex.
If you want to set any of these optional features as the default behavior,
you can set the ADSTEX_ARGS environment variable in your ~/.bashrc or ~/.cshrc file.
Here's an example:
# If you use bash or bash-like shells --
export ADSTEX_ARGS="--use-coauthors --include-physics --parallel"# If you use csh or csh-like shells --
setenv ADSTEX_ARGS "--use-coauthors --include-physics --parallel"When running adstex, you can add --ignore-env-args to ignore everything set in ADSTEX_ARGS.
-
Can
adstexrecognize citation keys with multiple authors or compound surnames?Not always;
adstexuses regular expression, not AI.For citation keys with multiple authors, if you use a separator to separate the surnames, (e.g.,
\cite{Press:Schechter:1974}),adstexwill be able to identify the first author and year to conduct a search on the ADS. If you wantadstexto also use the coauthor in the citation key (in this example, Schechter), please add the--use-coauthorsargument when runningadstex.For compound surnames, your best bets are joining the words without the spaces (e.g.,
\cite{deSitter:1913}), and keeping the hyphens (e.g.,\cite{Boylan-Kolchin:1913}).Note that in the event that
adstexcannot find the correct paper from a first author + year citation key, it will prompt you to enter an identifier (ADS bibcode, arXiv ID, or DOI) for that key. -
I have some other bibtex files, how to ask
adstexto skip citation keys that already have existing entries in those files?Use the
-roption to provide additional existing bibtex files.adstexwill read in these files without modifying them (only the file specified by-owill be modified). Here's an example command:adstex main.tex -o main.bib -r software.bib classic.bib
-
How do I use
adstexas a reference manager? Or can I useadstexwith other reference managers (e.g., JabRef, Mendeley, Zotero)?adstexis not a reference manager, and will not be one. The philosophy behindadstexis to not manage the references, because NASA's ADS is already doing that for us (and is doing an excellent job)! Soadstexsimply generates the bibtex file using the ADS on the fly.If you are already using a reference manager, you may want to continue to use it to generate bibtex files. You can then use
adstexto fetch just the new entries (see FAQ #2). You can also useadstexto update all existing entries with the latest version from the ADS by running:adstex your_bibtex_file.bib
-
Does this work with the ADS astronomy database only?
For citation keys that are arXiv IDs, ADS bibcodes, or DOIs,
adstexwould work with any entry as long as it is in the ADS.For first author + year citation keys, by default
adstexwould only search the astronomy database on NASA ADS. However, you can use--include-physicsto include the ADS physics database.adstexonly works with the ADS, and hence the name of this program :) -
adstexseems to run very slowly. Is there any way to speed it up?By default,
adstexcheck if existing entries have any updates (e.g., arXiv preprint becoming a journal paper), and this process may slow down the execution. You can use--no-updateto turn this feature off, so thatadstexwill only look for new entries.In addition, you can turn on parallel execution by adding the
--parallel(-p) option. You can further specify the number of threads it uses with--threads=x(default is 8). -
I have different citation keys that point to the same paper in my tex file, can
adstexmerge and remove the repetitions?adstexwill warn you (near the end of its execution) if it detects multiple keys that point to the same paper. It will list all those citation keys, but it will not merge them automatically.adstexnever edits the tex source files; hence, you need to update the citation keys in the tex source files manually. -
Is there a way to use
adstexwith Overleaf?If you or your institution has an Overleaf subscription, you can use Overleaf's git or Dropbox integration to fetch the source files to your local machine, run
adstexlocally, and then push back to Overleaf via git (in the case of Dropbox, no pushing needed).If you don't have access to Overleaf's premium features, you can still just download the tex source file and bib file, run
adstexlocally, and then upload the updated bib file back to Overleaf (tex source file will not be changed byadstex). -
I got a
SSLCertVerificationError! How to fix it?This error usually happens when the ADS SSL certification has been updated, but your local SSL certification has not yet. The error should go away once the local certification is updated too.
With
adstex0.4.0+, you can use the--disable-ssl-verificationoption to temporarily disable the verification of SSL certification. This option can be handy if you don't have control of your local SSL certification installation. Note that with this option, your ADS API key may be vulnerable to a man-in-the-middle attack. You can generate new ADS API key on ADS website if you think your API key may have been compromise. -
adstexsaves me so much time. How do I acknowledge it?First of all, thank you :)
adstexwon't exist without NASA's ADS, so please do acknowledge them by adding the following to your acknowledgements section:This research has made use of NASA's Astrophysics Data System.
(Note:
adstexis not affiliated with nor endorsed by NASA's ADS.)Then, if you would like to also acknowledge
adstex, you can add the following to your acknowledgements section:This research has made use of adstex (\url{https://github.com/yymao/adstex}).