我想要一个作者日期风格法语版本可能
现在我有
\bibliography{my-bib-file}
\bibliographystyle{apalike}
多谢
答案1
以下是作者年份样式的法语书目示例。autolang=other
如果书目中有字段,则此选项允许将字符串翻译为书目项目的语言langid=
。
\documentclass[12pt,german, english,french]{report}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{babel}
\usepackage{csquotes}% recommended in output (biblatex)
\usepackage[backend=biber, style=authoryear, autolang=other]{biblatex}
\usepackage{filecontents}
\begin{filecontents}{otherbibli.bib}
@online{msdn2,
label = {MSDN2},
title = {Comparatif entre C\# et Visual Basic .NET},
author = {Microsoft},
date = {2014-01-01},
url = {http://support.microsoft.com/kb/308470},
urldate = {2014-04-12}
}
@Book{Neu,
Title = {Mathematische Grundlagen des Quantummechanick},
Author = {John von Neumann},
Date = {1996},
Edition = {2},
Publisher = {Springer},
Langid = {german}
}
@Book{Schwartz,
Title = {Topologie générale et Analyse fonctionnelle},
Author = {Laurent Schwartz},
Date = {1970},
Publisher = {Hermann}
}
@Article{Wigner,
Title = {On Unitary Representations of the Inhomogeneous Lorentz Group},
Author = {Eugene P. Wigner},
Date = {1939},
Journaltitle = {Ann. Math.},
Number = {1},
Pages = {149-204},
Series = {2},
Volume = {40}
}
\end{filecontents}
\addbibresource{otherbibli.bib}
\begin{document}
\nocite{*}
\printbibliography
\addcontentsline{toc}{chapter}{Bibliographie}
\end{document}