Adding Lexile level to Extra field via BibTex import
I would like include the Lexile level for each book in a collection of childrens' books that I am importing via a BibTex file. I asked ChatGTP to add the Lexile level to the items in the .bib file so that it is added to the Extra field in Zotero and it proposes the following format:
@book{benson_noah_nodate,
title = {Noah et l’énigme du ghost train},
publisher = {Syros},
author = {Benson, Stéphanie},
extra = {Lexile Level: 800L},
}
@book{benton_rabbits_nodate,
title = {The rabbit’s tale},
publisher = {Usborne},
author = {Benton, Lynne},
extra = {Lexile Level: 850L},
}
But this is not working.
@book{benson_noah_nodate,
title = {Noah et l’énigme du ghost train},
publisher = {Syros},
author = {Benson, Stéphanie},
extra = {Lexile Level: 800L},
}
@book{benton_rabbits_nodate,
title = {The rabbit’s tale},
publisher = {Usborne},
author = {Benton, Lynne},
extra = {Lexile Level: 850L},
}
But this is not working.
-
bwiernikThe BibTeX field is “note” not “extra”
-
aurelepYes, simply changing the work "extra" to "note" did the trick – and the line then ends up in an attached note. Thanks!