Elsevier:参考文献格式以引文、作者、年份开头.. latex

Elsevier:参考文献格式以引文、作者、年份开头.. latex

我无法更改参考文献的格式以使其与我提交的期刊的格式相匹配。期刊提供了一系列样式,但没有一种符合他们的需求。

他们希望在文中引用(Name, Year)如下:

在此处输入图片描述

然后在参考文献中,他们希望按字母顺序排列,首先按照在文中引用的方式排列,然后是作者年份等等。

在此处输入图片描述

有人知道如何实现它吗?

截至目前我使用:

\documentclass[review]{elsarticle}

\usepackage{lineno,hyperref}
\modulolinenumbers[5]

\journal{Journal of \LaTeX\ Templates}

%%%%%%%%%%%%%%%%%%%%%%%
%% Elsevier bibliography styles
%%%%%%%%%%%%%%%%%%%%%%%
%% To change the style, put a % in front of the second line of the current style and
%% remove the % from the second line of the style you would like to use.
%%%%%%%%%%%%%%%%%%%%%%%

\usepackage{mathptmx}
\usepackage{upgreek}
\usepackage{array}
\usepackage{wasysym}
\usepackage{graphicx}


\newcommand*\mycommand[1]{\texttt{\emph{#1}}}
\newcommand{\fB}{f_\mathrm{B}}
\newcommand{\Trca}{T_\mathrm{RCA}}
\newcommand{\Dh}{D_\mathrm{h}}
\newcommand{\fpeak}{f_\mathrm{peak}}
\newcommand{\degC}{^{\circ}\mathrm{C}}
\newcommand{\red}{\textcolor{red}}
%% Numbered
%\bibliographystyle{model1-num-names}

%% Numbered without titles
%\bibliographystyle{model1a-num-names}

%% Harvard
\bibliographystyle{model2-names.bst}\biboptions{authoryear}

%\bibliographystyle{model2-names.bst}\biboptions{square,sort,comma,numbers}
%% Vancouver numbered
%\usepackage{numcompress}\bibliographystyle{model3-num-names}

%% Vancouver name/year
%\usepackage{numcompress}\bibliographystyle{model4-names}\biboptions{authoryear}

%% APA style
%\bibliographystyle{model5-names}\biboptions{authoryear}
%\bibliographystyle{apalike}\biboptions{authoryear}

%% AMA style
%\usepackage{numcompress}\bibliographystyle{model6-num-names}

%% `Elsevier LaTeX' style
%\bibliographystyle{elsarticle-num}
%%%%%%%%%%%%%%%%%%%%%%%

我引用使用:

\citep{Cho2007}

答案1

这里的罪魁祸首是author-year样式和 bst 文件的组合model1a-num-names.bst,它通常与编号标签一起使用......

但有以下解决方法:

%% Numbered without titles % <==========================================
\bibliographystyle{model1a-num-names}\biboptions{authoryear} % <========

因此,以下 mwe 被改变

\RequirePackage{filecontents}
\begin{filecontents*}{\jobname.bib}
@article{Engstrom2013a,
abstract = {Control of the global epidemic tuberculosis is severely hampered by the emergence of drug-resistant Mycobacterium tuberculosis strains. Molecular methods offer a more rapid means of characterizing resistant strains than phenotypic drug susceptibility testing. We have developed a molecular method for detection of rifampicin-resistant M. tuberculosis based on padlock probes and magnetic nanobeads. Padlock probes were designed to target the most common mutations associated with rifampicin resistance in M. tuberculosis, i.e. at codons 516, 526 and 531 in the gene rpoB. For detection of the wild type sequence at all three codons simultaneously, a padlock probe and two gap-fill oligonucleotides were used in a novel assay configuration, requiring three ligation events for circularization. The assay also includes a probe for identification of the M. tuberculosis complex. Circularized probes were amplified by rolling circle amplification. Amplification products were coupled to oligonucleotide-conjugated magnetic nanobeads and detected by measuring the frequency-dependent magnetic response of the beads using a portable AC susceptometer.},
author = {Engstr{\"{o}}m, Anna and {Zard{\'{a}}n G{\'{o}}mez de la Torre}, Teresa and Str{\o}mme, Maria and Nilsson, Mats and Herthnek, David},
doi = {10.1371/journal.pone.0062015},
isbn = {1932-6203},
issn = {19326203},
journal = {PLoS ONE},
number = {4},
pages = {e62015},
pmid = {23630621},
title = {{Detection of Rifampicin Resistance in Mycobacterium tuberculosis by Padlock Probes and Magnetic Nanobead-Based Readout}},
volume = {8},
year = {2013}
}
\end{filecontents*}


\documentclass[review]{elsarticle}

\usepackage{lineno,hyperref}
\modulolinenumbers[5]

\journal{Journal of \LaTeX\ Templates}

%%%%%%%%%%%%%%%%%%%%%%%
%% Elsevier bibliography styles
%%%%%%%%%%%%%%%%%%%%%%%
%% To change the style, put a % in front of the second line of the current style and
%% remove the % from the second line of the style you would like to use.
%%%%%%%%%%%%%%%%%%%%%%%

\usepackage{mathptmx}
\usepackage{upgreek}
\usepackage{array}
\usepackage{wasysym}
\usepackage{graphicx}


\newcommand*\mycommand[1]{\texttt{\emph{#1}}}
\newcommand{\fB}{f_\mathrm{B}}
\newcommand{\Trca}{T_\mathrm{RCA}}
\newcommand{\Dh}{D_\mathrm{h}}
\newcommand{\fpeak}{f_\mathrm{peak}}
\newcommand{\degC}{^{\circ}\mathrm{C}}
\newcommand{\red}{\textcolor{red}}
%% Numbered
%\bibliographystyle{model1-num-names}

%% Numbered without titles % <==========================================
\bibliographystyle{model1a-num-names}\biboptions{authoryear} % <========

%% Harvard
%\bibliographystyle{cas-model2-names.bst}\biboptions{authoryear}

%\bibliographystyle{model2-names.bst}\biboptions{square,sort,comma,numbers}
%% Vancouver numbered
%\usepackage{numcompress}\bibliographystyle{model3-num-names}

%% Vancouver name/year
%\usepackage{numcompress}\bibliographystyle{model4-names}\biboptions{authoryear}

%% APA style
%\bibliographystyle{model5-names}\biboptions{authoryear}
%\bibliographystyle{apalike}\biboptions{authoryear}

%% AMA style
%\usepackage{numcompress}\bibliographystyle{model6-num-names}

%% `Elsevier LaTeX' style
%\bibliographystyle{elsarticle-num}

\begin{document}
\cite{Engstrom2013a}

\citet{Engstrom2013a}

\citep{Engstrom2013a} % <===============================================

\bibliography{\jobname}
\end{document}

您得到了想要的结果(没有标题!):

由此产生的书目

答案2

尝试

\documentclass[review]{elsarticle}
\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@INCOLLECTION{Debreu,
  author       = "Debreu, Gérard and Doe, J. and Doe Dor A.",
  title        = "On the use in economic theory of some central results of mathematical analysis",
  booktitle    = "Advances in mathematical economics", 
  volume       = "1",
  pages        = "1--2",
  publisher    = "Springer, Tokyo",
  year         = "1999",
}
\end{filecontents}
\journal{Journal of \LaTeX\ Templates}
\usepackage{graphicx}
\usepackage{natbib}
\bibpunct[, ]{(}{)}{,}{a}{,}{,}
\begin{document}
\citet{Debreu}
\bibliography{\jobname}
\bibliographystyle{plainnat}
\end{document} 

我无法访问 Elsevierbst文件,因为我从未使用过 Elevier 网站。但plainnat应该可以解决问题。

在此处输入图片描述

相关内容