Why text variable="publisher" in journal use Exra field if there is Publisher: in Extra
Hi all,
I found a strange issue,
For example, the
a simplified csl file: https://pastebin.com/qBHKJE0f
an example item of zotero RFD format: https://pastebin.com/TLZybd0L
Any ideas to avoid this?
I found a strange issue,
<text variable="publisher"/> in item type journal use Extra field if there is Publisher: in Extra .For example, the
Extra field is: Publisher: 222Korean Society of Food and Cookery Science999 , 222Korean Society of Food and Cookery Science999 would display in Word if <text variable="publisher"/> was used in the csl.a simplified csl file: https://pastebin.com/qBHKJE0f
an example item of zotero RFD format: https://pastebin.com/TLZybd0L
Any ideas to avoid this?
Upgrade Storage
Publisher: Wiley
Translator: Last || First
See http://Zotero.org/support/kb/item_types_and_fields
You should write your citation style to only show the publisher for certain item types if you don’t want it to show for others.
No, I do not want to show the Extra contents.
The
noteshould be used for theJournalin CSL if we want to show theExtra, I did not use it, why it still show theExtracontents, moreover, if I changed the text 'Publisher' inExtrato any other text, it would not show the publisher222Korean Society of Food and Cookery Science999You either need to delete the publisher information from the item or edit your citation style to only show the publisher variable for non-journal items
No. When I use this style https://github.com/citation-style-language/styles/blob/master/chinese-gb7714-2005-numeric.csl
for this item https://www.koreascience.or.kr/article/JAKO201227942002591.page
duplicate container title (publisher)
Korean Journal of Food and Cookery Scienceoccurs, display as:[1] SON J-Y, KANG K-O. Effect of an oil-water fryer on quality properties of deep frying oil used for chicken[J]. Korean Journal of Food and Cookery Science, Korean Society of Food and Cookery Science, 2012, 28(4): 443–450.The csl should be edited or the
Extrafield should be emptied as theExtrashows asPublisher: Korean Society of Food and Cookery ScienceAn issue and pull request have been submitted.
This code
<text variable="publisher"/>is changed to
<choose>
<if type="book graphic legal_case legislation" match="any">
<text variable="publisher"/>
</if>
</choose>
in the PR https://github.com/citation-style-language/styles/pull/5737