BibTex:引用 IEEE 標準

BibTex:引用 IEEE 標準

我下載的引文如下圖所示:

@ARTICLE{893287, 
author={}, 
journal={IEEE Std. 1516-2000}, title={IEEE Standard for Modeling and Simulation (M Amp;S) High Level Architecture (HLA) - Framework and Rules}, 
year={2000}, 
month={ }, 
volume={}, 
number={}, 
pages={i -22}, 
keywords={Keywords: architecture, class attribute, federate, federation, federation execution, federation object model, framework, high level architecture, instance attribute, interaction class, joined federate, object class, object model template, rules, runtime infrastructure, simulation object model;}, 
doi={10.1109/IEEESTD.2000.92296}, 
ISSN={},}

排版後的樣子是這樣的:

[1] IEEE 建模和模擬標準 (m amp;s) 高階架構 (hla) - 框架與規則。 IEEE 標準。 1516-2000,第 i --22 頁,2000 年。

但我想知道它是否應該看起來像這樣:

[2] IEEE 標準 1516-2000。 IEEE 建模與模擬標準 (M&S) 高階架構 (HLA) - 框架與規則。技術報告,IEEE。

後一個是我在閱讀別人的參考書目時發現的,我認為它看起來比我的好(例如它有多發性硬化症代替米安時)。不過我對此並不確定。

那麼 [1] 和 [2] 哪個比較好?有規則嗎?

答案1

差別在於資料欄位的保護。如果您想保留原始格式,則需要在大寫字母等周圍放置一對額外的大括號。

IEEE 下載引文機制會吐出這些奇怪的 BibTeX 條目,正如您所發現的那樣,這當然是不可接受的。因此,從 IEEE 下載後幾乎總是有一些工作要做,例如,期刊名稱顯示為,journal={some journal, IEEE Transactions on}您每次都必須恢復它。

\documentclass{IEEEtran}
\usepackage{filecontents}
\usepackage{lipsum}
\begin{filecontents*}{testing.bib}
@ARTICLE{893287, 
author={}, 
journal={IEEE Std. 1516-2000}, 
title={{IEEE Standard for Modeling and Simulation {(M\&S)} High Level Architecture {(HLA)} - Framework and Rules}}, 
year={2000}, 
volume={}, 
pages={i -22}, 
doi={10.1109/IEEESTD.2000.92296}, 
}
\end{filecontents*}

\title{IEEE article}
\author{Theman Dlegend}

\begin{document}\maketitle
\lipsum[1]See \cite{893287} for more info 
\bibliographystyle{ieeetran}
\bibliography{testing}
\end{document}

在此輸入影像描述

答案2

它們都不正確,更正後的格式應如下(僅是一個示例,在第 10 頁中進行了演示) 如何使用 IEEEtran BIBTEX 樣式)。

在此輸入影像描述

如果您想在 IEEE 標準中引用您的參考文獻,您應該按照 IEEE 的要求進行操作。這是 如何使用 IEEEtran BIBTEX 樣式官方 BibTeX 風格

享受引用!

答案3

我的回答不純粹是關於 LaTex。我建議您使用諸如佐特羅。它是 Firefox 的插件,用於管理您的參考書目。只需點擊一下,即可從 pdf 格式或網頁中一次提取來源的所有書目資訊。您可以儲存您的 pdf 文件,組織您的收藏。

但對於你的情況,我會推薦 Zotero,因為 Zotero 為你創建一個 BibTex 文件,其中包含你選擇的元素。 Zotero 為您執行 IEEE(或任何其他)格式化,這是「選項」功能表中的簡單選項。

答案4

也許有一個簡單的答案。 IEEE 標準看起來不像期刊,因此不應該這樣定義它。如果您在 @misc 中定義標題 + 發布者 + url,這將是更合適的參考。

相關內容