如何在 bib 文件中写入“Journal”等关键字

如何在 bib 文件中写入“Journal”等关键字

我正在尝试编写一个参考书目文件。

有些条目没有出现在参考部分。该条目出现了一个空白行。我发现其中一个条目的“Journal”字段中有一个关键字“journal”。

请告诉我如何解析这个特殊的关键字。

    @article{Does voice matter?couper2004does,
  title={Does voice matter? An interactive voice response (IVR) experiment},
  author={Couper, Mick P and Singer, Eleanor and Tourangeau, Roger},
  journal={JOURNAL OF OFFICIAL STATISTICS-STOCKHOLM-},
  volume={20},
  number={3},
  pages={551--570},
  year={2004},
  publisher={ALMQVIST \& WIKSELL INTERNATIONAL}
}

第四行中的期刊和JOURNAL 都以相同的颜色突出显示。因此,我在参考文献部分仅得到一个空白条目。

在此处输入图片描述

最小工作示例:

\documentclass{acm_proc_article-sp}
\usepackage{url}
\usepackage{cite}

\title{hello}
\author{rana}

\begin{document}

\nocite{*}

\bibliographystyle{acm}
\bibliography{myfile}


\end{document}

参考书目文件 myfile 包含许多类似上述条目的条目。但编译后生成的 PDF 中的参考部分,开始的几个条目是空的,如快照所示。

如果需要更多详细信息,请告诉我。

答案1

您需要避免在输入键中使用有问题的字符,例如空格和问号。然后它就可以正常工作,至少对于标准类来说是这样article

\documentclass{article}%acm_proc_article-sp}
\usepackage{url}
\usepackage{cite}
\usepackage{filecontents}

\begin{filecontents}{\jobname.bib}
@article{couper2004does,
  title={Does voice matter? An interactive voice response (IVR) experiment},
  author={Couper, Mick P and Singer, Eleanor and Tourangeau, Roger},
  journal={JOURNAL OF OFFICIAL STATISTICS-STOCKHOLM-},
  volume={20},
  number={3},
  pages={551--570},
  year={2004},
  publisher={ALMQVIST \& WIKSELL INTERNATIONAL}
}
\end{filecontents}


\begin{document}

\nocite{*}

\bibliographystyle{acm}
\bibliography{\jobname}


\end{document}

参考

相关内容