关于致谢函中的信息放在两栏 IEEE 期刊

关于致谢函中的信息放在两栏 IEEE 期刊

我正在尝试向 IEEE 期刊提交一篇论文,并且有很多信息需要放在第一页的致谢部分。但是,我发现,如果我将支持我们的机构的致谢部分与作者信息(共有四个)放在一起,那么第一页的左栏就会出现一个巨大的脚注块。因此,IEEE 格式是否会对将致谢部分(在我的情况下是作者信息)放在第一页的右栏进行任何调整?

最好是致谢在左栏的脚注里,作者信息在右栏的脚注里。下图是IEEE提供的word模板,但latex文件示例中没有包含。红框里就是我想要实现的效果。

在此处输入图片描述

下面是包含我想放在我们论文中的信息的 MWE(当然,所有名字都已改为匿名)。如果你把信息放在 overleaf 网站中,你会看到,左下角有一个很大的脚注框。

\documentclass[conference]{IEEEtran}
\IEEEoverridecommandlockouts
\usepackage{cite}
\usepackage{amsmath,amssymb,amsfonts}
\usepackage{algorithmic}
\usepackage{graphicx}
\usepackage{textcomp}
\usepackage{xcolor}
\usepackage{float}
\usepackage{hyperref}

\title{Paper title}

\author{AAA, BBB, CCC, DDD, \IEEEmembership{Junior Member, IEEE}%
\thanks{Manuscript received September X, 20X. This research was supported in part by the Ministry of Magical (MM) of the Empire of the Earth (Taiwan) under Grant Number ABC-DEFG-H-IJK-123
, ABC-DEFG-H-IJK-231, and ABC-DEFG-H-IJK-321 through Language of Spells Research (LSR) Labs, and the computing resource was supported in part by Desert for High-Protein Provider (DHPP) of Tailan. (Corresponding author: DDD.)}

\thanks{AAA is with the Department of Food Recycling, Jump High Laugh High University, ABC, the Empire of the Earth (e-mail: [email protected]).}
\thanks{BBB is with the Department of Food Exploring, Jump High Laugh High University, ABC, the Empire of the Earth (e-mail: [email protected]).}
\thanks{CCC is with the Department of Food Recycling, Jump High Laugh High University, ABC, the Empire of the Earth (e-mail: [email protected]).}
\thanks{DDD is with the Department of Bungee Jumping, Jump High Smile High University, ABC, the Empire of the Earth (e-mail: [email protected]).}
}

\begin{document}
\maketitle

\end{document}

答案1

只是为了好玩:

可以使用保存框和预先格式化\thanks为左块和右块\vsplit

\documentclass[conference]{IEEEtran}
\IEEEoverridecommandlockouts
%\usepackage{cite}
%\usepackage{amsmath,amssymb,amsfonts}
\usepackage{algorithmic}
\usepackage{graphicx}
\usepackage{textcomp}
\usepackage{xcolor}
%\usepackage{float}
%\usepackage{hyperref}% seriously?
\usepackage{lipsum}% MWE only
\usepackage{afterpage}

\title{Paper title}

\author{AAA, BBB, CCC, DDD, \IEEEmembership{Junior Member, IEEE}%
\thanks{Manuscript received September X, 20X. This research was supported in part by the Ministry of Magical (MM) of the Empire of the Earth (Taiwan) under Grant Number ABC-DEFG-H-IJK-123
, ABC-DEFG-H-IJK-231, and ABC-DEFG-H-IJK-321 through Language of Spells Research (LSR) Labs, and the computing resource was supported in part by Desert for High-Protein Provider (DHPP) of Tailan. (Corresponding author: DDD.)}
\thanks{\rule{0pt}{2\baselineskip}}
}

\begin{document}
\maketitle

\afterpage{\let\thanks=\footnotetext
\let\thefootnote=\relax
\thanks{AAA is with the Department of Food Recycling, Jump High Laugh High University, ABC, the Empire of the Earth (e-mail: [email protected]).}
\thanks{BBB is with the Department of Food Exploring, Jump High Laugh High University, ABC, the Empire of the Earth (e-mail: [email protected]).}
\thanks{CCC is with the Department of Food Recycling, Jump High Laugh High University, ABC, the Empire of the Earth (e-mail: [email protected]).}
\thanks{DDD is with the Department of Bungee Jumping, Jump High Smile High University, ABC, the Empire of the Earth (e-mail: [email protected]).}
}

\lipsum[1-8]

\end{document}

相关内容