英文文献两个作者,引用时如何出现 and? #301
Answered
by
note286
iamforerunner
asked this question in
Q&A
Replies: 2 comments 1 reply
-
\begin{filecontents}{xampl-zh.bib}
@article{desmarais1992carbon,
author = {Des Marais, David J and Strauss, H and Summons, R E and
others},
title = {Carbon Isotope Evidence for the Stepwise Oxidation of the
Proterozoic Environment},
journal = {Nature},
year = {1992},
volume = {359},
pages = {605--609},
}
@article{saito2006jadeite,
author = {Saito, M and Miyazaki, K},
title = {Jadeite-bearing Metagabbro in Serpentinite Mélange of the
{"Kurosegawa Belt" in Izumi Town, Yatsushiro City, Kumamoto
Prefecture, central Kyushu}},
journal = {Bulletin of the geological survey of Japan},
year = {2006},
volume = {57},
number = {5/6},
pages = {169--176},
}
\end{filecontents}
\documentclass{ctexart}
\usepackage[backend=biber,style=gb7714-2015,maxcitenames=2]{biblatex}
\DefineBibliographyStrings{english}{
andincite = { and },
}
\addbibresource{xampl-zh.bib}
\begin{document}
\citet{desmarais1992carbon,saito2006jadeite}
\end{document} Footnotes |
Beta Was this translation helpful? Give feedback.
1 reply
-
\PassOptionsToPackage{maxcitenames=2}{biblatex}
\documentclass{fduthesis}
\fdusetup{style/bib-resource=reference.bib}
\AtBeginEnvironment{document}{\DefineBibliographyStrings{english}{andincite={\space and\space}}}
\begin{document}
\citet{desmarais1992carbon,saito2006jadeite}
\end{document} |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
stone-zeng
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
英文文献两个作者时,引用结果是 Zhang, Wang, 2020。目标结果是 Zhang and Wang, 2018
这段代码用不了了
\DefineBibliographyStrings{english}{ % 针对英文两个作者,弄出 Zhang and Wang, 2020,而非 Zhang, Wang, 2020
andincite = { and },
andincitecn = {和},
andothersincite = {et al.\isdot},
% andothersincitecn = {等{\adddot}} %adddot才能避开标点追踪
andothersincitecn = {等}
}
Beta Was this translation helpful? Give feedback.
All reactions