bmc-mathphys - 如何生成 nameyear 引用?

bmc-mathphys - 如何生成 nameyear 引用?

这是我的 tex 文件:

\documentclass{article}

\bibliographystyle{bmc-mathphys}
\begin{document}
\nocite{JEF_5G}
\bibliography{my_ref}
\end{document}

以下是围兜:

@PREAMBLE{}

@String { AER  = {American Economic Review} }
@String { JIMF = {Journal of International Money and Finance} }


@Article{JEF_5G,
  Title                    = {What Will {5G} Be?},
  Author                   = {Jeffrey G. Andrews and Stefano Buzzi and Wan Choi and Stephen Hanly and Angel Lozano and Anthony C. K. Soong and Jianzhong Charlie Zhang},
  Journal                  = {IEEE J. Sel. Areas Commun., Special Issue on 5G Communication Systems},
  Year                     = {2014},
  Note                     = {{{doi}: 10.1109/JSAC.2014.2328098}},
  Number                   = {6},
  Pages                    = {1065-1081},
  Volume                   = {32},

  Owner                    = {kenadams},
  Timestamp                = {2014.08.14}
}

答案1

引自bmc-mathphys.bst

% Settings:
% It's possible to pass few options to bibtex style via @settings reference. 
% To validate options, need to write that reference (@settings) citeing key (f.e: \citation{foo}) 
% to aux file. From tex file it can be done with \nocite{} command.
%
% Examples:
%     1) To make unsorted bibliography (bibs listed as cited)  
%         a) write to bib file:
%             @settings{label, options="unsort"}
%         b) write in tex file \nocite{label}
%     
%     2) To make author-year bibliography
%         a) write to bib file:
%             @settings{label, options="nameyear"}
%         b) write in tex file \nocite{label}
%     
%     3) To make alphanumerical unsorted bibliography (bibs listed as cited)  
%         a) write to bib file:
%             @settings{label, options="alpha,unsort"}
%         b) write in tex file \nocite{label}
% 
% By default, style produces unsorted bibliography.

按照第 2) 项中的说明,我获得您的 MWE: MWE编译

但是,LuaLaTeX会产生非致命错误。您没有指定正在使用的(参考书目)编译器,因此我没有进一步调查。

相关内容