在参考文献中添加序列号

在参考文献中添加序列号

我希望在文中引用如下:

然而,随着对可持续性关注的日益增加(Madu,2001),组织需要采取适当措施来改善其可持续性方面(Amrina & Yusof,2011)。

在相应的参考文献中,我需要一个参考文献列表以及序列号,以便在文本中恢复完整的引用。

  1. Amrina, E., & Yusof, SM (2011)。汽车公司可持续制造评估的关键绩效指标。2011 年 IEEE 工业工程与工程管理国际会议,(第 1093 - 1097 页)。

  2. Madu, C. (2001)。环保制造手册。Kluwer Academic Publishers。

我一直在使用以下代码:

\bibliographystyle{apa-good} % for last name as references
\bibliography{total}

请帮忙。

答案1

biblatex支持独立的引用和参考书目样式。Biblatex 枚举排序的参考书目(使用 authoryear-ibid 样式)使用 Biblatex 的哈佛参考文献, 和如何在作者和年份之间添加逗号

\documentclass{article}
\usepackage{filecontents}
\begin{filecontents*}{refs.bib}
@BOOK
    {KandR,
     AUTHOR  = "Kernighan, Brian W. and Ritchie, Dennis M.",
     TITLE   = "{The C Programming Language Second Edition}",
     PUBLISHER = "Prentice-Hall, Inc.",
     YEAR = 1988
}
\end{filecontents*}
\usepackage[bibstyle=numeric,citestyle=authoryear,backend=bibtex]{biblatex}
\addbibresource{refs.bib}

\DeclareFieldFormat{labelnumberwidth}{#1.}

\renewcommand*{\nameyeardelim}{\addcomma\space}

\begin{document}

In 1988 C was totally awesome. \autocite{KandR}

\printbibliography 
\end{document}

产量

在此处输入图片描述

相关内容