-
-
Notifications
You must be signed in to change notification settings - Fork 101
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add support for Biber date format #32
Conversation
The previous code was generating invalid dates such as 2018-01-01-01.
Please describe the problem which you are trying to solve along with an example BibTeX excerpt. |
Description of the problem:The biblatex has extended support for producing datestamps, as outputed for instance by a bibliography manager like zotero. This could be a problem in this script as it assumes the standard bibtex format. Description of the changes:In the more general case, if a example BibTeX excerptfor instance,
transforms into:
|
So you are suggesting to increase the scope of the tool from just the BibTeX format to consider both the BibTeX and Biber formats? P.S. I found a nice comparison at https://tex.stackexchange.com/a/25702 |
Exactly. The advantage I see in using biblatex are mainly the unicode encoding (for instance for authors) and the format of the date which follows iso 8601. Maybe the tool could parse a new boolean variable to switch behavior from the old to the new scheme? |
This project uses https://bibtexparser.readthedocs.io/en/master/ to parse references. I can't immediately see that it officially supports the Biber format? |
Indeed, I see no trace of the |
Do you want me to add a warning about the fact that the library does not aim to fully support ```biblatex`` but that this serves as a working solution? |
I would like this feature, as all my references are in biblatex format. |
for the moment, it does not provide with a fully compliance with biblatex, but at least it provides with a fix to not mess with the date ... |
Well, at least it will let me automate the process, because, right now, my references fail to load as I don't have a |
The previous code was generating invalid dates such as 2018-01-01-01.