我只知道 Latex 的基础知识,并且我在参考书目文件中出现错误,这是一个iet.bst由 IET 修改的参考书目文件,并作为乳胶文件提供以撰写要发表的论文。错误在@webpage 参考书目条目类型中,正如我已经搜索过的,我认为它是关于一些应该是可选的字段,并且在可能错误地弹出之后,错误出现。

来自iet.bst的第1838行是这样的:
ITERATE {call.type$}
Run Code Online (Sandbox Code Playgroud)
关于网页入口类型的代码是这样的:
% Title and url fields required;
% author, note, year, month, and lastchecked fields optional
STRINGS {database}
FUNCTION {webpage}
{ output.bibitem
author empty$
{ editor empty$
'skip$ % author and editor both optional
{ format.editors output.nonnull }
if$
}
{ editor empty$
{ format.authors output.nonnull }
{ "can't use both author and editor fields in " cite$ * warning$ }
if$
}
if$
% author empty$
% 'skip$ …Run Code Online (Sandbox Code Playgroud)