zotero-chinese / styles

中文 CSL 样式
https://zotero-chinese.com/styles/
Other
5.14k stars 834 forks source link

Zotero插入的个别参考文献格式有误 #150

Closed panasee closed 1 year ago

panasee commented 1 year ago

使用Zotero向word插入参考文献时,有部分期刊文献的引用格式错误地使用了会议论文的格式

CSL 样式:418huazhong-university-of-science-and-technology.csl

插入参考文献时,绝大多数文献格式正确,但是个别文献插入的格式错误如下: [1] X. Qian, J. Zhou, G. Chen. Phonon-engineered extreme thermal conductivity materials. In: Nature Materials: Vol. 20, 2021: 1188-1202 该文献为期刊文献,因此不该出现"In: "以及"Vol."等字样 (在Zotero中"Item Type"为"Journal Article"无误) 我想确认一下这是csl文件的问题还是Zotero内部对文献的分类出了问题。

条目信息

[
    {
        "id": "qianPhononengineeredExtremeThermal2021",
        "type": "article-journal",
        "abstract": "Materials with ultrahigh or low thermal conductivity are desirable for many technological applications, such as thermal management of electronic and photonic devices, heat exchangers, energy converters and thermal insulation. Recent advances in simulation tools (first principles, the atomistic Green’s function and molecular dynamics) and experimental techniques (pump–probe techniques and microfabricated platforms) have led to new insights on phonon transport and scattering in materials and the discovery of new thermal materials, and are enabling the engineering of phonons towards desired thermal properties. We review recent discoveries of both inorganic and organic materials with ultrahigh and low thermal conductivity, highlighting heat-conduction physics, strategies used to change thermal conductivity, and future directions to achieve extreme thermal conductivities in solid-state materials.",
        "container-title": "Nature Materials",
        "DOI": "10.1038/s41563-021-00918-3",
        "ISSN": "1476-4660",
        "language": "en",
        "note": "type: Journal article",
        "page": "1188–1202",
        "title": "Phonon-engineered extreme thermal conductivity materials",
        "URL": "https://doi.org/10.1038/s41563-021-00918-3",
        "volume": "20",
        "author": [
            {
                "family": "Qian",
                "given": "Xin"
            },
            {
                "family": "Zhou",
                "given": "Jiawei"
            },
            {
                "family": "Chen",
                "given": "Gang"
            }
        ],
        "issued": {
            "date-parts": [
                [
                    "2021"
                ]
            ]
        }
    }
]
zepinglee commented 1 year ago

你的 Extra 字段有 type: Journal article,会导致被 citeproc 识别为“Journal article”类型。由于规范中没有这种类型,所以按照默认的“专著”格式输出。

删掉 Extra 中的内容即可。

panasee commented 1 year ago

好的,果然我删掉后就好了,多谢帮助