\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}
这在 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