의 경우 \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
'Std.'를 제거하려면 모든 @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}