我正在使用以下格式将 6 位作者添加到使用 IEEE 会议格式的论文中。但姓名超出了允许的列宽度。我不知道原因是什么,但有些作者的名字很长。任何可能的解决方案,因为这个问题不允许并接受论文。
代码如下:
\author{Ibrahim~ Aaronjacob\IEEEauthorrefmark{1},~~Raza\IEEEauthorrefmark{1},~Ibrahim~Abdallah \IEEEauthorrefmark{4},~ Aaronjacob~Abdallah\IEEEauthorrefmark{3},~ Ibrahim~Abdallah\IEEEauthorrefmark{1},~ Aaronjacob~Abdallah\IEEEauthorrefmark{4} \\ \IEEEauthorblockA{\IEEEauthorrefmark{1}Department of Electrical and Computer Engineering, USA}
\\\IEEEauthorblockA{\IEEEauthorrefmark{4}Division of Information and Computing Technology}\\
\IEEEauthorblockA{\IEEEauthorrefmark{3}Department of Electrical Engineering and Computer Science, USA}\\
}
答案1
用来\\
将作者分散到多行。另外,不要过度使用连字符~
。
\documentclass[conference]{IEEEtran}
\title{A title}
\author{%
Ibrahim~Aaronjacob\IEEEauthorrefmark{1},
Raza\IEEEauthorrefmark{1},
Ibrahim~Abdallah\IEEEauthorrefmark{4},
Aaronjacob~Abdallah\IEEEauthorrefmark{3}, \\
Ibrahim~Abdallah\IEEEauthorrefmark{1},
Aaronjacob~Abdallah\IEEEauthorrefmark{4}
\\
\IEEEauthorblockA{%
\IEEEauthorrefmark{1}Department of Electrical and Computer Engineering, USA
}
\IEEEauthorblockA{%
\IEEEauthorrefmark{4}Division of Information and Computing Technology
}
\IEEEauthorblockA{%
\IEEEauthorrefmark{3}Department of Electrical Engineering and Computer Science, USA
}
}
\begin{document}
\maketitle
\end{document}