【IEEE Conf Latex】如何在IEEE Conf的latex模板中实现参考文献作者人数超过3就显示为“et al.”的功能

【IEEE Conf Latex】如何在IEEE Conf的latex模板中实现参考文献作者人数超过3就显示为“et al.”的功能

问题说明:

当我们在使用IEEE Conf的latex模板写作论文时,最后自动生成的REFERENCES时默认显示所有作者姓名的,这就可能导致参考文献的篇幅过长,导致超过论文最大页数要求(尤其是针对会议论文)。此时一个好的解决方法就是将超过3位作者的参考文献改成“et al.”的形式来显示!

解决方法:

  1. 打开IEEEtrans.bst
  2. 定位到以下代码位置(大概在第97行~111行):
% #0 turns off the forced use of "et al."
% #1 enables
FUNCTION {default.is.forced.et.al} { #0 }

% The maximum number of names that can be present beyond which an "et al."
% usage is forced. Be sure that num.names.shown.with.forced.et.al (below)
% is not greater than this value!
% Note: There are many instances of references in IEEE journals which have
% a very large number of authors as well as instances in which "et al." is
% used profusely.
FUNCTION {default.max.num.names.before.forced.et.al} { #1 }

% The number of names that will be shown with a forced "et al.".
% Must be less than or equal to max.num.names.before.forced.et.al
FUNCTION {default.num.names.shown.with.forced.et.al} { #10 }
  1. 修改以上代码成以下内容:
% #0 turns off the forced use of "et al."
% #1 enables
FUNCTION {default.is.forced.et.al} { #1 }

% The maximum number of names that can be present beyond which an "et al."
% usage is forced. Be sure that num.names.shown.with.forced.et.al (below)
% is not greater than this value!
% Note: There are many instances of references in IEEE journals which have
% a very large number of authors as well as instances in which "et al." is
% used profusely.
FUNCTION {default.max.num.names.before.forced.et.al} { #3 }

% The number of names that will be shown with a forced "et al.".
% Must be less than or equal to max.num.names.before.forced.et.al
FUNCTION {default.num.names.shown.with.forced.et.al} { #2 }

如果此时编译显示出错或者没有改变,就选择“从头编译”,done!

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值