Elsevier 引文包含作者、年份(已解决)

Elsevier 引文包含作者、年份(已解决)

在 Elsevier 期刊的审查过程结束后,我被告知参考文献格式错误。我查了一下,发现在文中引用时他们希望有(Name, year),而我得到的是(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}

他们提供了不同的\bibliographystyle答案,但没有一个是正确的。我花了好几天时间在网上尝试各种方法,我想我也许可以在这里得到一个不错的答案。

我阅读了之前关于此问题的所有讨论,但没有一个能改变我的需要。

编辑:我引用使用

(\cite{Engstrom2013a})

在 b enter code hereib 文件中它看起来像这样:

@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}
}

答案1

好吧,我只\bibliographystyle{model5-names}在我的系统上安装了(因此,请自行检查可用的参考书目样式,以了解所需的信息显示——或者最好问他们你应该使用哪种参考书目样式——他们应该最清楚!),但你的情况真正的罪魁祸首是你必须使用命令

\citep{Engstrom2013a}

来得到他们想要的结果(请参阅文p末的\citep)。

具有以下完整 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}

%% 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}

\begin{document}
\cite{Engstrom2013a}

\citet{Engstrom2013a}

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

\bibliography{\jobname}
\end{document}

你得到了想要的结果:

生成的 pdf

相关内容