如何在第一页添加版权声明

如何在第一页添加版权声明

我想在稿件第一页添加版权声明,像这样一。

我用了这个代码

\newpage \null \thispagestyle{headings} 
Notice:This work has been submitted to the IEEE for possible publication. 
Copyright may be transferred without notice, after which this version may no 
longer be accessible.\newpage

但问题是

  • 该通知不以标题形式出现,而是以双栏页面中的普通文本形式出现。
  • 它还为该通知页面添加了页码。

答案1

如果您提供了 MWE,那将会有很大帮助,但事实上我们只能猜测。

以下对我有用,但我真的不知道你做了什么。

\documentclass[twocolumn]{article}
\begin{document}
\onecolumn % switch to one column
\pagestyle{empty} % don't print page number
\begin{center}
  \large\bfseries  % font for your notice
  Your copyright notice
\end{center}
\twocolumn % switch to 2 columns
\setcounter{page}{1} % page number for start of manuscript
\pagestyle[headings} % per your code
The rest of your document
\end{document}

摆弄它来获得你想要的东西。

相关内容