我正在写论文,我想自定义我的参考书目以符合法语风格。在我的 pdf 中,我有“标题”,但我不需要它们。我发现我可以在以下网站上使用 plain-fr:http://www.cuk.ch/articles/4014 这是我的代码:
\documentclass[french]{article}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{lmodern}
\usepackage[a4paper]{geometry}
\usepackage{graphicx}
\usepackage{natbib}
\usepackage{csquotes}
\usepackage[defernumbers=true,backend=bibtex,bibstyle=authoryear,citestyle=authoryear,firstinits=false,maxcitenames=1,maxbibnames=10]{biblatex}
\renewbibmacro{in:}{}
\DefineBibliographyExtras{french}{\restorecommand\mkbibnamefamily}
\usepackage{babel}
\bibliographystyle{plain-fr}
\renewcommand{\baselinestretch}{1.5}
\bibliography{bibliobon}
\begin{document}
example \cite{author}
\printbibliography
\end{document}
当我尝试编译时出现此错误:Package biblatex 错误:“\bibliographystyle”无效。\bibliographystyle{plain-fr}
我该如何使用这种风格?非常感谢您的回答。