书目输出样式

书目输出样式

我正在写作业并使用 biblatex 包来处理参考书目。现在我的代码输出如下 使用 biblatex 包输出 而我的导师需要我按照这样的格式写推荐信 所需参考书目格式

不同之处在于卷号、期号和月份年份的书写风格/格式不同。我想知道是否有办法进行这些更改,即不再打印 51.12 (2005),第 4203-4215 页,而是打印 51 卷,第 12 期,第 4203-4215 页,2005 年。

参考代码是;

\documentclass[12pt,a4paper]{report}
\usepackage[utf8]{inputenc}

\usepackage[hidelinks]{hyperref}
\hypersetup{colorlinks=true,allcolors=blue}

\usepackage{datetime}
\usepackage{enumitem}
\usepackage[printonlyused,withpage]{acronym}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{mathtools}
\usepackage{amsfonts}
\usepackage[ruled,vlined]{algorithm2e}
\usepackage{graphicx}
\graphicspath{{fig/}{graphs/}}

\usepackage[backend=bibtex,style=numeric,sorting=none,minnames=3]{biblatex}

\usepackage{array}
\usepackage[table]{xcolor}

\usepackage[left=1.5in,right=1in,top=1in,bottom=1in]{geometry}
\renewcommand{\baselinestretch}{1.5}

\addbibresource{references.bib}

% Title Page
\title{Assignment}
\author{Salman}
\date{\today --- \currenttime}


\begin{document}
\maketitle

Compressive Sampling (CS) has been studied in \cite{1614066}. Based on the theory, a exact singal reconstruction technique is proposed in \cite{1580791}.

\printbibliography

\end{document}

bib文件代码为;

    @ARTICLE{1614066, 
    author={D. L. Donoho}, 
    journal={IEEE Transactions on Information Theory}, 
    title={Compressed sensing}, 
    volume={52}, 
    number={4}, 
    pages={1289-1306},
    month={April}, 
    year={2006}
}
@ARTICLE{1580791, 
    author={E. J. Candes and J. Romberg and T. Tao}, 
    journal={IEEE Transactions on Information Theory}, 
    title={Robust uncertainty principles: exact signal reconstruction from highly incomplete frequency information}, 
    volume={52}, 
    number={2}, 
    pages={489-509},
    month={Feb},
    year={2006}
}

谢谢

答案1

屏幕截图中所需的输出看起来非常类似于由以下代码实现的 IEEE 样式:biblatex-ieee

@article由于屏幕截图仅显示类型条目,未使用 DOI 或 URL 等附加功能,因此我无法绝对确定所使用的样式,但@articlesMWE 中两者的输出应该匹配。该样式肯定会将期刊信息打印为

第 51 卷,第 12 期,第 4203-4215 页,2005 年。

\documentclass[american]{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{babel}
\usepackage{csquotes}

\usepackage[style=ieee, backend=biber]{biblatex}

\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@article{donoho, 
  author  = {D. L. Donoho},
  journal = {IEEE Transactions on Information Theory},
  title   = {Compressed sensing}, 
  volume  = {52}, 
  number  = {4}, 
  pages   = {1289-1306},
  month   = {4}, 
  year    = {2006}
}
@article{candes, 
  author  = {E. J. Candes and J. Romberg and T. Tao}, 
  journal = {IEEE Transactions on Information Theory}, 
  title   = {Robust uncertainty principles: exact signal
             reconstruction from highly incomplete frequency information}, 
  volume  = {52}, 
  number  = {2}, 
  pages   = {489-509},
  month   = {2},
  year    = {2006}
}
\end{filecontents}

\addbibresource{\jobname.bib}
\addbibresource{biblatex-examples.bib}


\begin{document}
\cite{donoho,candes,sigfridsson}
\printbibliography
\end{document}

DL Donoho,“压缩感知”,IEEE 信息理论汇刊,第 52 卷,第 4 期,第 1289-1306 页,2006 年 4 月。//EJ Candes、J. Romberg 和 T. Tao,“稳健不确定性原理:从高度不完整的频率信息中精确重建信号”,IEEE 信息理论汇刊,第 52 卷,第 2 期,第 489-509 页,2006 年 2 月。//E. Sigfridsson 和 U. Ryde,“从静电势和矩得出原子电荷的方法比较”,计算化学杂志,第 19 卷,第 4 期,第 1289-1306 页,2006 年 2 月。 4,第 377-395 页,1998 年。doi:10.1002/(SICI)1096-987X(199803)19:4<377::AID-JCC1>3.0.CO;2-P。

相关内容