Skip to content
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

Allow organizations in the "creators" key of .zenodo.json #1956

Open
eric-wieser opened this issue Mar 23, 2020 · 1 comment
Open

Allow organizations in the "creators" key of .zenodo.json #1956

eric-wieser opened this issue Mar 23, 2020 · 1 comment

Comments

@eric-wieser
Copy link

In creating authors for pygae/clifford, we added a .zenodo.json like:

{
  "creators": [
    {
      "name": "The Pygae Team"
    }
  ],
}

However, if we leave it at that, then the bibtex entry treats "The Pygae Team" as a forename / surname pair, and does the wrong thing.

To work around this for bibtex, we can use

{
  "creators": [
    {
      "name": "{The Pygae Team}"
    }
  ],
}

but this then results in ugly braces in the web ui.

Would it be possible to add a field so we can write this:

{
  "creators": [
    {
      "name": "The Pygae Team",
      "is_organization": true
    }
  ],
}

Thanks!

@PatrickKa
Copy link

Not sure if I should open a separate issue since my request is a bit more general: I also would like to be able to specify organizations, but I don't care where or how exactly. The important thing for me is that they then show up as such in the BibTeX export.

Thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants