更改 biblatex 中的参考样式

更改 biblatex 中的参考样式
\documentclass[]{article}
\usepackage[style=authoryear-icomp,
            natbib=true,
            url=false,        
            doi=false,         
            isbn=false,
            backend=biber,
            bibstyle=numeric,
            maxbibnames=1,
            mincitenames=1,
            maxcitenames=1]{biblatex}
\DeclareNameAlias{author}{last-first}
\bibliography{Bibliography}
\begin{document}
Text \citep{Eliasson1991, Bravi2017}
\input{Reference/Bibliography}
\printbibliography
\end{document}

我的书目.bib:

@article{Eliasson1991,
author = {Eliasson, Ann-Christin and Gordon, Andrew M and Forssberg, Hans},
doi = {10.1111/j.1469-8749.1991.tb14943.x},
isbn = {0012-1622 (Print)},
issn = {14698749},
journal = {Developmental Medicine {\&} Child Neurology},
keywords = {Cerebral Cortex,Cerebral Cortex: physiopathology,Cerebral Palsy,Cerebral Palsy: diagnosis,Cerebral Palsy: physiopathology,Child,Hemiplegia,Hemiplegia: diagnosis,Hemiplegia: physiopathology,Humans,Isometric Contraction,Isometric Contraction: physiology,Motor Neurons,Motor Neurons: physiology,Motor Skills,Motor Skills: physiology,Neurologic Examination,Neurologic Examination: instrumentation,Psychomotor Performance,Pyramidal Tracts,Pyramidal Tracts: physiopathology},
month = {nov},
number = {8},
pages = {661--670},
pmid = {1916022},
title = {{Basic Coordination of Manipulative Forces of Children With Cerebral Palsy}},
url = {http://doi.wiley.com/10.1111/j.1469-8749.1991.tb14943.x},
volume = {33},
year = {1991}
}

@article{Bravi2017,
author = {Bravi, Riccardo and Cohen, Erez J. and Martinelli, Alessio and Gottard, Anna and Minciacchi, Diego},
doi = {10.3389/fnint.2017.00021},
issn = {1662-5145},
journal = {Frontiers in Integrative Neuroscience},
keywords = {augmented feedback,human motor control,laterality of motor control,sensorimotor integration,timing of action},
month = {sep},
pages = {21},
publisher = {Frontiers},
title = {{When Non-Dominant Is Better than Dominant: Kinesiotape Modulates Asymmetries in Timed Performance during a Synchronization-Continuation Task}},
url = {http://journal.frontiersin.org/article/10.3389/fnint.2017.00021/full},
volume = {11},
year = {2017}
}

我对此有两个问题:

(1)引用名称出现超过 1 个,我只需要一个,后面跟着 et.al (第一张图片)

(2) 例如,Eliasson 的引文名称包括名字 (AC),但另一个引文没有 - 请参阅其他引文。我不知道为什么会发生这种情况?我只需要像其他人一样的姓氏。参见示例

(3)我不喜欢参考文献的格式(第二张图片)。我怎样才能改成自然格式:(作者。期刊名称。期刊21, 557–62 (2011)。

这里

答案1

如果你想要自然风格,你需要biblatex-nature

\documentclass[british]{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{babel}
\usepackage{csquotes}

\usepackage[style=nature, backend=biber]{biblatex}

\addbibresource{biblatex-examples.bib}

\begin{document}
\cite{sigfridsson}
\printbibliography
\end{document}

《自然》风格的引文和书目参考:“Sigfridsson,E. & Ryde,U. 从静电势和矩中得出原子电荷的方法比较。计算化学杂志**19**,377–395(1998)。”

这在 Overleaf 上也非常有效:https://www.overleaf.com/read/btqwrxdsgdps

如果你坚持使用作者-年份引用和natbib命令,你需要

\usepackage[style=nature, citestyle=authoryear, backend=biber, natbib=true]{biblatex}

在 Overleaf 上仍然可以正常工作:https://www.overleaf.com/read/jvqbxkzcnqdc

相关内容