使用雜項截斷引文

使用雜項截斷引文

我在我的作品中使用@misc 來引用一個網站。這是圍兜條目和引用它的文字。

@misc{OpenMP,
title = {{OpenMP API for parallel programming, version 2.0}},
note = {\url{http://openmp.org/wp/}},
}

 OpenMP \cite{OpenMP} is a parallel programming model.

當使用 Latex、bibtex、latex 和 Latex 編譯時,我得到這樣的截斷引用

OpenMP (Ope) is a parallel programming model.

當我期待的時候

OpenMP (OpenMP) is a parallel programming model.

我該如何修正這個問題。理想情況下,我希望在引用的文本中使用整個“OpenMP”而不是“Ope”。

謝謝

答案1

根據 bibtex 手冊(即texdoc bibtex),該欄位key

用於按字母順序排列、交叉引用以及在缺少「作者」資訊(第 4 節中描述)時建立標籤。

因此條目可以寫成

@misc{OpenMP,
  key   = {OpenMP},
  title = {{OpenMP} {API} for parallel programming, version 2.0},
  note  = {\url{http://openmp.org/wp/}},
}

相關內容