-
Notifications
You must be signed in to change notification settings - Fork 5
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 corporate authors #44
Comments
The official way to have "corporate authors" in LaTeX is to enclose the name in braces. So, the
Unfortunately, though, as you point out, this has to be fixed by Azzaare in
which is very very wrong. I figured out a workaround, though: use non-breaking spaces ("\u00A0") for the name in the |
This is the workaround: 6aa7f8f You can't see it in the Github UI (cf. #46 (comment)), but the |
https://github.com/Humans-of-Julia/BibInternal.jl/releases/tag/v0.3.5 is now available, including Humans-of-Julia/BibInternal.jl#21. So the only work needed here is to adapt the compat bound, and remove some braces from such entries (which is a special instance of #15). |
Oh, wow, I totally missed that, somehow! Ok, I’ll verify the test on top of #52, and if everything works, we can close this. I’ll probably leave the compat bound as-is: fundamentally the plugins still works even with the older version. And unless someone specifically pins the old version, they should get the newest release anyway. If they do pin the old version, they’ll have to deal with any bugs in that version (and presumably, they have a reason for wanting the exact old behavior) |
I've verified that the test passes now, so I'll update and merge #47 after #52 is merged. 🎉
Just to clarify: we don't have an explicit dependency on However, |
In my bibliography, I have some authors that are not a person's name, but some corporation.
Example:
Unfortunately, this name gets printed as
O. F. Inc.
in the bibliography due to the first and middle names being abbreviated.Once Humans-of-Julia/BibInternal.jl#21 is released as BibInternal.jl v0.3.5, one can provide such names with double-braces, e.g.
author = {{OEIS Foundation Inc.}}
to the parser. It remains for DocumenterCitations.jl to remove one layer of braces before printing (and to bump the compat of BibInternal.jl).The text was updated successfully, but these errors were encountered: