在参考书目中显示字段名称

在参考书目中显示字段名称

我正在使用以下 Bibtex 来生成参考书目。

@inproceedings{ichinose:imcom17,
  title={Pipeline-based processing of the deep learning framework caffe},
  author={Ichinose, Ayae and Takefusa, Atsuko and Nakada, Hidemoto and Oguchi, Masato},
  booktitle={Proceedings of the 11th International Conference on Ubiquitous Information Management and Communication},
  pages={97},
  year={2017},
  organization={ACM}
}

使用 ACM-reference_format,输出如下所示

Ayae Ichinose, Atsuko Takefusa, Hidemoto Nakada, and Masato Oguchi. 2017. Pipeline-based processing of the deep
learning framework caffe. In Proceedings of the 11th International Conference on Ubiquitous Information Management
and Communication. ACM, 97

我想显示字段名称,这里是 97 之前的“页面”。我该如何启用此功能?

Ayae Ichinose, Atsuko Takefusa, Hidemoto Nakada, and Masato Oguchi. 2017. Pipeline-based processing of the deep
    learning framework caffe. In Proceedings of the 11th International Conference on Ubiquitous Information Management
    and Communication. ACM, pages: 97

答案1

书目条目包含错误:该字段不应该

 pages={97},

相反,根据https://dl.acm.org/citation.cfm?id=3022323, 它应该是

 pages = {97:1--97:8},
 articleno = {97},
 numpages = {8},

即,该作品是书中第 97 个 [!] 条目,长度为 8 页。简单的设置pages=97是不正确的。

使用ACM-Reference-Format-Journals书目样式,可以得到以下输出。观察字符串。显示...Article 97, 8 pages是相当不正确的。pages=97-105

在此处输入图片描述


为了进行比较,以下是参考书目样式产生的输出plainnat。请注意,该pages字段现在显示为pages 97:1-97:8

在此处输入图片描述

(为了使输出更加相似,可能希望注释掉下面显示的代码中的isbn和字段。)doi


\RequirePackage{filecontents}
\begin{filecontents}{mybib.bib}
%%% see https://dl.acm.org/citation.cfm?id=3022323
@inproceedings{Ichinose:2017,
 author   = {Ichinose, Ayae and Takefusa, Atsuko and Nakada, Hidemoto and Oguchi, Masato},
 title    = {Pipeline-based Processing of the Deep Learning Framework Caffe},
 booktitle= {Proceedings of the 11th International Conference on 
             Ubiquitous Information Management and Communication},
 series   = {IMCOM '17},
 year     = {2017},
 isbn     = {978-1-4503-4888-1},
 location = {Beppu, Japan},
 pages    = {97:1--97:8},
 articleno= {97},
 numpages = {8},
 url      = {http://doi.acm.org/10.1145/3022227.3022323},
 doi      = {10.1145/3022227.3022323},
 acmid    = {3022323},
 publisher= {ACM},
 address  = {New York, NY, USA},
 keywords = {cloud computing, deep learning, distributed processing, 
             life-log analysis, machine learning},
} 
\end{filecontents}

\documentclass{article}
\usepackage{geometry,natbib}
\usepackage[hyphens]{url}
\bibliographystyle{ACM-Reference-Format-Journals}
% or : \bibliographystyle{plainnat}

\begin{document}
\cite{Ichinose:2017}
\bibliography{mybib}
\end{document}

相关内容