在IEEE LaTeX conference 模板有一句话
% conference papers do not typically use \thanks and this command % is locked out in conference mode. If really needed, such as for % the acknowledgment of grants, issue a \IEEEoverridecommandlockouts % after \documentclass
也就是说在在会议中屏蔽了thanks命令,解决方法是在模版的开头:
\documentclass
后加
\IEEEoverridecommandlockouts
然后在作者代码块中写:
\author{\IEEEauthorblockN{XXX \thanks{ XXX is corresponding author.}
...
}
在页面左下角就会自动出现脚注了。
可以用于标注作者/ 通信作者/ 致谢内容。
感谢 https://www.cnblogs.com/sunny99/ sumoier对本文的帮助!
标签:conference,LaTeX,acknowledge,IEEE,屏蔽,thanks,致谢 From: https://www.cnblogs.com/Yi-920259020/p/16892546.html