We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Currently, src/main/java/org/jabref/logic/bibtexkeypattern/BibtexKeyGenerator.java states
KEY_ILLEGAL_CHARACTERS = "{}(),\\\"-#~^:'`ʹ";
This list of characters is used to display a warning for the field bibtexkey.
Following issue #5982, I digged a bit further about the incompatible characters in a bibtexkey. According to https://tex.stackexchange.com/questions/408530/what-characters-are-allowed-to-use-as-delimiters-for-bibtex-keys , for biber, % and = should not be used, and hence be added to the illegal characters.
%
=
The text was updated successfully, but these errors were encountered:
Remove dash from illegal characters. Fix JabRef#6295 JabRef#6257 JabR…
2b7fad5
…ef#6252
ae8b183
Fixed by #6300. Will be in latest master.
master
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Currently, src/main/java/org/jabref/logic/bibtexkeypattern/BibtexKeyGenerator.java
states
This list of characters is used to display a warning for the field bibtexkey.
Following issue #5982, I digged a bit further about the incompatible characters in a bibtexkey.
According to https://tex.stackexchange.com/questions/408530/what-characters-are-allowed-to-use-as-delimiters-for-bibtex-keys , for biber,
%
and=
should not be used, and hence be added to the illegal characters.The text was updated successfully, but these errors were encountered: