@techreport 中的字段

@techreport 中的字段

@techreprot我的文件上有这个.bib

@techreport{NortheastGroup,
  author      = {{Northeast Group LLC}},
  title       = {Electricity Theft and Non-Technical Losses: Global Markets, Solutions and Vendors},
  institution = {Northeast Group LLC},
  month = {May},
  year        = {2017}
}

结果,我得到了这个:

在此处输入图片描述

哪些条目与该 [S.1.] 相关?我该如何删除它?

答案1

您遇到的问题的真正原因是您使用的条目类型不适合当前的出版物。

  • @techreport条目类型应专门用于工作文件、讨论文件等,它们是一系列文件的一部分,并由机构(例如学术部门、学校甚至整个组织)赋予编号。

  • 手头的条目似乎根本不符合这个要求。因此,我建议您使用全能@misc条目类型——除非您能找到更合适的条目类型。(由于无法访问出版物,我无法决定哪种类型可能比更合适@misc。)

通过不使用@techreport条目类型,您可以自动摆脱该[S.1]问题。

在此处输入图片描述

\documentclass{article}
\begin{filecontents}[overwrite]{mybib.bib}
@misc{NortheastGroup,
  author      = {{Northeast Group LLC}},
  title       = {Electricity Theft and Non-Technical Losses: 
                 Global Markets, Solutions and Vendors},
  month       = {May},
  year        = {2017}
}
\end{filecontents}

\usepackage[alf]{abntex2cite}
\bibliographystyle{abntex2-alf}

\begin{document}
\cite{NortheastGroup}
\bibliography{mybib}
\end{document}

答案2

你没有提供链接,但我假设你正在使用来自

https://github.com/abntex/abntex2/blob/master/bibtex/bst/abntex2/abntex2-alf.bst

一开始

 FUNCTION {bbl.no.address} {"[S.l.]"}

我不确定这个缩写在葡萄牙语中是否比在英语中更有意义?因此,您可以复制此文件,将该字符串替换为,""或者(可能更好)address在您的条目中添加一个字段bib

相关内容