我目前正在撰写biblatex
我的博士论文,希望在每一章中都有参考文献。这也恰好与那里给出的样式配合得很好,但是,一旦我将样式切换到我的情况所需的样式(chem-rsc
,biblatex-chem
包已安装),我首先会收到一条错误消息,告诉我:
Package biblatex warning: 'firstinits' option is deprecated use 'giveninits' instead.
- 然后几乎每一个引用都是这样的:
Package biblatex Warning: 'name:first-last is deprecated, please use 'name:given-family'.
当我使用包中的本机样式时,biblatex
这些警告不会出现,biblatex-chem
包是最新的(13.03.16)
即使我只是尝试biblatex-chem-rsc.tex
从包中编译示例文件,我也会遇到相同的错误...有什么建议我该如何处理这个问题?
梅威瑟:
\documentclass[a4paper]{ltxdoc}
\usepackage{csquotes,lmodern}
\usepackage[T1]{fontenc}
\usepackage[final]{microtype}
\usepackage[backend=bibtex,style=chem-rsc]{biblatex}
\usepackage{hyperref}
\hypersetup{hidelinks}
\addbibresource{biblatex-chem.bib}
\begin{document}
\maketitle
This package provides a style for \pkg{biblatex} which follows the
guidelines of Royal Society of Chemistry. The citation style is numeric
and unsorted. The bibliography style follows the pattern of the layout
used in the journal \emph{Chemical Communications}. The style should be
loaded in the usual way
\begin{verbatim}
\usepackage[style=chem-rsc]{biblatex}
\end{verbatim}
The References section of this document demonstrates the format
generated by the package using the \texttt{biblatex-chem.bib} database
of example records.
\nocite{*}
\printbibliography
\end{document}