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
YourReferenceHere seems to be hard-coded on this line:
cffconvert/src/cffconvert/lib/cff_1_x_x/bibtex.py
Line 31 in b6045d7
It would be better to replace this with something like:
try: ref_alias = self.author[10:].replace(" and ",", ").split(",")[0] + self.year[10:12] except: ref_alias = "YourReferenceHere" return "@misc{"+ref_alias+",\n" + joined + "\n}\n"
The text was updated successfully, but these errors were encountered:
No branches or pull requests
YourReferenceHere seems to be hard-coded on this line:
cffconvert/src/cffconvert/lib/cff_1_x_x/bibtex.py
Line 31 in b6045d7
It would be better to replace this with something like:
The text was updated successfully, but these errors were encountered: