我正在写作业并使用 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 等附加功能,因此我无法绝对确定所使用的样式,但@articles
MWE 中两者的输出应该匹配。该样式肯定会将期刊信息打印为
第 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}