對於\bibliographystyle{IEEEtran}
,當我們建立標準參考時,如下所示
@standard{IEC,
title = "{Electromagnetic Compatibility (EMC) - Part 4-2: Testing and Measurement Techniques – Electrostatic Discharge (ESD) Immunity Test}",
organization = "IEC",
address = "Piscataway, NJ",
number = "61000-4-2",
year = "2008"
}
引用後的輸出如下圖所示:
Electromagnetic Compatibility (EMC) - Part 4-2: Testing and Measurement
Techniques Electrostatic Discharge (ESD) Immunity Test, IEC Std.
61 000-4-2, 2008
我想刪除這個詞“標準。”從輸出“IEC 標準 61 000-4-2,2008 年”所以只有“IEC 61 000-4-2,2008”被展示。
答案1
刪除“標準”從所有 @standard 條目中,執行以下操作。
找到該文件IEEEtran.bst
。它包含以下部分:
%%%%%%%%%%%%%%%%%%%%%%
%% STRING CONSTANTS %%
%%%%%%%%%%%%%%%%%%%%%%
...
FUNCTION {bbl.standard}{ "Std." }
...
複製該文件,重新命名(例如IEEEtran-no-std.bst
)並將其保存在與 LaTeX 文件相同的目錄中。換線
FUNCTION {bbl.standard}{ "Std." }
到
FUNCTION {bbl.standard}{ "" }
然後將您的 LaTeX 文件更改為:
\bibliographystyle{IEEEtran-no-std}