我希望此页脚“978-1-4673-6540-6/15/\$31.00~\copyright 2015 IEEE”仅出现在文章的第一页。请给我一个 latex 代码。我尝试了一些代码,但它出现在所有页面中。谢谢。
答案1
这不是你的责任。IEEE 会在发布后自动放置它们。你不需要这样做。这就是它不在 IEEE 模板中的原因。
答案2
我猜你正在使用IEEEtran
。你必须指定
\IEEEpubid{978-1-4673-6540-6/15/\$31.00~\copyright 2015 IEEE}
之前\maketitle
和之后
\IEEEpubidadjcol
位于第一页第二列的段落之间的某处。
\documentclass[journal]{IEEEtran}
\usepackage{lipsum} % for random text
\begin{document}
\title{A title}
\author{A. Uthor}
\IEEEpubid{978-1-4673-6540-6/15/\$31.00~\copyright 2015 IEEE}
\maketitle
\begin{abstract}
\lipsum*[100]
\end{abstract}
\lipsum[1-5]
\IEEEpubidadjcol % somewhere in the second column
\section{Some title}
\lipsum[3-10]
\end{document}