参考书目条目开头的文本引用(BibLaTeX)

参考书目条目开头的文本引用(BibLaTeX)

我想用文本样式的引用来开始我的参考书目条目。

我有 bib 文件mybib.bib

@article{art1,
author = {Foster, Joe and Burton, Nathan and Cook, Andrew},
journal = {Journal 1},
pages = {1-10},
title = {{Title 1}},
volume = {1},
year = {2018}
}

使用\citet{art1}我得到Foster 等人(2018 年),如所愿。我希望参考书目中的格式化参考以(Foster 等人(2018)), IE,

(Foster 等人(2018 年))Joe Foster、Nathan Burton 和 Andrew Cook。标题 1。期刊 1,1:1-10,2018 年。

我曾尝试将该biblatex包与 结合使用authoryear

\documentclass{article}
\usepackage[backend=bibtex,natbib=true,style=authoryear,maxcitenames=2,maxbibnames=99,dashed=false,doi,url]{biblatex}
\begin{document}    
Citation 1: \citet{art1}
\printbibliography{mybib}
\end{document}

有人能帮助我吗?

答案1

introcite完成biblatex-ext了工作!见下文

\documentclass{article}
\usepackage{csquotes}
\usepackage[backend=bibtex, natbib=true, citestyle=ext-authoryear, bibstyle=ext-authortitle, introcite=plain, maxcitenames=2, maxbibnames=99]{biblatex}
\addbibresource{mybib.bib}

\DeclareNameAlias{sortname}{given-family} % given-family format

\DeclareFieldFormat{bbx@introcite}{\mkbibbold{\mkbibparens{#1}}} % introcite in bold face and between parentheses
\renewcommand*{\introcitepunct}{\addspace} % remove colon between introcite and authors


\begin{document}
\citep{art1}

\citep{art2}

\printbibliography
\end{document}

mybib.bib

@article{art1,
author = {Foster, Joe and Burton, Nathan},
journal = {First journal},
pages = {1-10},
title = {{First Title}},
volume = {1},
number = {10},
month = {1},
year = {2018},
}
@inproceedings{art2,
author = {Foster, Joe and Burton, Nathan and Cook, Andrew},
booktitle = {Proceedings of the 2nd Conference},
pages = {11-20},
title = {{Second Title}},
year = {2018},
month = {12},
}

在此处输入图片描述

相关内容