我有一篇期刊论文需要输入版权页脚。解决方案这里部分解决了我的问题。
然而,页脚的内容是
Copyright~\copyright~2017 IEEE. Personal use of this material is permitted. However, permission to use this material for any other purposes must be obtained from the IEEE by sending a request to [email protected].
太长了,一行放不下。我试过使用换行符\\
或\newline
,但不起作用。在 IEEEtran 中将版权页脚分成多行的正确方法是什么?谢谢。
答案1
我已经想好了。方法是使用迷你页面来展示版权内容。一个例子如下:
\makeatletter
\def\ps@IEEEtitlepagestyle{
\def\@oddfoot{\mycopyrightnotice}
\def\@evenfoot{}
}
\def\mycopyrightnotice{
{\footnotesize
\begin{minipage}{\textwidth}
\centering
Copyright~\copyright~2017 IEEE. Personal use of this material is permitted. However, permission to use this \\
material for any other purposes must be obtained from the IEEE by sending a request to [email protected].
\end{minipage}
}
}