如何使用 bibliographystyle 附加文件?

如何使用 bibliographystyle 附加文件?

如何使用 bibliographystyle 附加文件?

我使用了apa-good.bst样式,但不幸的是作者的名字和年份没有加粗。

在此处输入图片描述

答案1

这个怎么样?

\documentclass{article}
\usepackage
[style=ext-authoryear,labelnumber, useprefix=true,
sorting=nyt,maxbibnames=9,maxcitenames=3,uniquelist=false, backend=biber,
doi=true,isbn=true,url=true,
uniquename=false,bibencoding=utf8, date=year, giveninits=true, terseinits=false,
dashed=false, punctfont=true]
{biblatex}
\addbibresource{b.bib}
\DeclareFieldFormat{biblabeldate}{\mkbibbold{\mkbibparens{#1}}}
\renewcommand*{\mkbibnamegiven}[1]{\textbf{#1}}
\renewcommand*{\mkbibnamefamily}[1]{\textbf{#1}}
\begin{document}
\cite{Achenbach75,AchenbachGM80,AdamV04}
\printbibliography
\end{document}

文件b.bib

@book{Achenbach75,
author = {Achenbach, J.},
title = {Wave Propagation in Elastic Solids},
edition = {First Edition},
publisher  = {Elsevier Science Publishing Compancy},
address = {Amsterdam},
year = 1975,
isbn = {9780720403251},
}

@article{AchenbachGM80,
author = {Achenbach, J. and Gautesen, A. K. and Mendelsohn, D. A.},
title = {Ray Analysis of Surface-Wave Interation with an Edge Crack},
journal = {IEEE Transactions on Sonics and Ultrasonics},
volume = {SU-27},
year = 1980,
number = 3,
pages = {124-129},
}

@article{AdamV04,
author = {Adam, M. and von~Estorff, O.},
title = {Reduction of Train-Induced Building Vibrations by Using Open and Filled Trenches},
journal = {Computers and Structures},
pages = {11-24},
year = 2004,
volume = 83,
}

在此处输入图片描述

相关内容