作者被遗漏在参考书目条目中

作者被遗漏在参考书目条目中

在参考书目中,每当我将样式从 更改为 时,其作者姓名就会被长破折号plain替换savetrees

\bibliographystyle{savetrees}
\bibliography{all}

以下是我的。围兜文件。未显示作者的条目是第二个。但只要我稍微修改一下名字,一切就都正常了。

@inproceedings{DBLP:conf/infocom/WeinsbergSM11,
  author    = {Udi Weinsberg and
               Augustin Soule and
               Laurent Massouli{\'e}},
  title     = {Inferring traffic shaping and policy parameters using end
               host measurements},
  booktitle = {INFOCOM},
  year      = {2011},
  pages     = {151-155},
  ee        = {http://dx.doi.org/10.1109/INFCOM.2011.5934941},
  crossref  = {DBLP:conf/infocom/2011},
  bibsource = {DBLP, http://dblp.uni-trier.de}
}
@inproceedings{Kanuparthy:2011:SED:2068816.2068860,
 author = {Partha Kanuparthy and Constantine Dovrolis},
 title = {ShaperProbe: end-to-end detection of ISP traffic shaping using active methods},
 booktitle = {Proceedings of the 2011 ACM SIGCOMM conference on Internet measurement conference},
 series = {IMC '11},
 year = {2011},
 isbn = {978-1-4503-1013-0},
 location = {Berlin, Germany},
 pages = {473--482},
 numpages = {10},
 url = {http://doi.acm.org/10.1145/2068816.2068860},
 doi = {10.1145/2068816.2068860},
 acmid = {2068860},
 publisher = {ACM},
 address = {New York, NY, USA},
 keywords = {active probing, inference, traffic shaping},
}  
@inproceedings{soule2004flow,
  title={Flow classification by histograms: or how to go on safari in the internet},
  author={Augustin Soule and Kav{\'e} Salamatia and Nina Taft and Richard Emilion and Konstantina Papagiannaki},
  booktitle={ACM SIGMETRICS Performance Evaluation Review},
  volume={32},
  number={1},
  pages={49--60},
  year={2004},
  organization={ACM}
}

以下是相应内容的摘录.bbl文件:

\begin{thebibliography}{1}
\expandafter\ifx\csname selectlanguage\endcsname\relax
  \def\selectlanguage#1{\relax}\fi

\bibitem{Kanuparthy:2010:DDI:1833515.1833745}
P.~Kanuparthy and C.~Dovrolis.
\newblock Diffprobe: detecting isp service discrimination.
\newblock In \emph{Proceedings of the 29th conference on Information
  communications}, INFOCOM'10, pp. 1649--1657. IEEE Press, Piscataway, NJ, USA,
  2010.
\newblock ISBN 978-1-4244-5836-3.

\bibitem{Kanuparthy:2011:SED:2068816.2068860}
---.
\newblock Shaperprobe: end-to-end detection of isp traffic shaping using active
  methods.
\newblock In \emph{Proceedings of the 2011 ACM SIGCOMM conference on Internet
  measurement conference}, IMC '11, pp. 473--482. ACM, New York, NY, USA, 2011.
\newblock ISBN 978-1-4503-1013-0.

\bibitem{soule2004flow}
A.~Soule, K.~Salamatia, et~al.
\newblock Flow classification by histograms: or how to go on safari in the
  internet.
\newblock In \emph{ACM SIGMETRICS Performance Evaluation Review}, vol.~32, pp.
  49--60. ACM, 2004.
\end{thebibliography}

我该如何解释这一点?我不知道该如何继续。

答案1

savetrees软件包并没有做任何不寻常的事情——参考书目中的引号破折号是标准符号,表示该论文的作者与前一个条目的作者相同。通过比较您的 .bib 和 .bbl 摘录,我们发现 Kanuparthy:2010 和 2011 的作者是匹配的。

如果您想恢复此行为,请参阅先前对相关问题的解决方案 - 它们主要涉及注释掉或删除name.or.dash相应 .bst 文件中函数的内容,在您的情况下是 的第 864-874 行savetrees.bst

书目文章:如何用参考文献中的作者姓名替换长行

防止 natbib 中的 ibid 跟踪

相关内容