You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The warning message is caused by check_bib_doi(). Within the function, read_bib() is called to extract the BibTeX items as a list. The fields "DOI" and "URL" are reformatted to upper case, while the checks for "doi" and "url" in bib_tbl <- ... search for lowercase versions. This leads to a case mismatch and triggers the warning.
The text was updated successfully, but these errors were encountered:
The warning message is caused by
check_bib_doi()
. Within the function,read_bib()
is called to extract the BibTeX items as a list. The fields"DOI"
and"URL"
are reformatted to upper case, while the checks for"doi"
and"url"
inbib_tbl <- ...
search for lowercase versions. This leads to a case mismatch and triggers the warning.The text was updated successfully, but these errors were encountered: