latex怎样添加项目脚注和通信作者
\author{\IEEEauthorblockN{Michael Shell}
\IEEEauthorblockA{School of Electrical and\\Computer Engineering\\
Georgia Institute of Technology\\
Atlanta, Georgia 30332--0250}
\and
\IEEEauthorblockN{Homer Simpson}
\IEEEauthorblockA{Twentieth Century Fox\\
Springfield, USA}
用了\thanks{ Corresponding author和 \footnote{。。。。}都不行。请问怎样在我这样的模板中添加脚注。非常感谢!
问题解决了,还是得看模板里面的东西,E文真麻烦。模板屏蔽了\thanks命令,但是可以打开!
在\documentclass[conference]{IEEEtran}后添加如下命令:
\IEEEoverridecommandlockouts
…
\begin{document}
另外IEEE的期刊论文和会议论文\author{......}中的命令式不同的,形式不同。都可以用\thanks命令。 展开
一般我们使用脚注时不需要额外使用宏包,只需要在该插入脚注的地方插入\footnote{脚注内容}即可,这样的脚注:
自动编号。
首行缩进。
但是一般论文首页脚注位置不需要首行缩进,因此我们引入footmisc宏包,并使用marginal使得不首行缩进。
\documentclass[11pt,a4paper]{article}
\usepackage{CJK}
\usepackage{type1cm}
\usepackage{times}
\usepackage[marginal]{footmisc}
\renewcommand{\thefootnote}{}
\begin{document}
\begin{CJK*}{GBK}{song}
这段文章\footnote{\noindent \textbf{收稿日期}:2000-06-30;\textbf{修回日期}:2000-11-16\\
\textbf{基金项目}:``九五''国家科技攻关资助项目(96-B02-03-05)\\ \textbf{作者简介}:
陆峰(1970-),男,新疆维吾尔自治区乌鲁木齐市人,中国科学院资源与环境信息系统国家重点实验室博士后,
主要从事交通网络的地理信息系统数据模型和网络分析相关算法研究。}.
\end{CJK*}
\end{document}
第5行:引入宏包,使得脚注首行不缩进。
第6行:设置脚注不编号。
第9行:设置脚注内容。