我在论文的第一页同时出现 IEEE 版权声明和会议标题时遇到了问题,该论文使用IEEE 跨学科课程。
我注意到这\thispagestyle{fancy}
会使版权声明消失!当我评论它时,我恢复了版权声明,但我错过了第一页的标题(标题从第二页开始)。
我的代码是:
\documentclass[10pt, conference]{IEEEtran}
\IEEEoverridecommandlockouts
\usepackage{graphicx}
\usepackage{newlfont}
\usepackage{multicol}
\usepackage{multirow}
\usepackage[table]{xcolor}
\usepackage{tabularx}
\usepackage{cite}
\usepackage{amssymb}
\usepackage[cmex10]{amsmath}
\interdisplaylinepenalty=2500
\usepackage{array}
\usepackage{stfloats}
\usepackage{lipsum}
\usepackage{fancyhdr}
\setlength{\headheight}{15.2pt}
\pagestyle{fancy}
\renewcommand{\headrulewidth}{0pt} % no line in header area
\fancyhead{}
\chead{12$^{th}$ Iranian Conference on Intelligence Systems, 4-6 February 2014, Bam, Iran}
\fancyfoot{}
\begin{document}
\title{Paper Title Goes Here.}
\author{
\IEEEauthorblockN{Author1}
\IEEEauthorblockA{
Dept. of Math and Computer Science\\
Higher Education Complex of Bam \\
Kerman, Iran \\
E-mail:[email protected].
}
\and
\IEEEauthorblockN{Author2}
\IEEEauthorblockA{
Dept. of Math and Computer Science\\
Shahid Bahonar University\\
Kerman, Iran \\
E-mail: [email protected]}
\and
\IEEEauthorblockN{Author3}
\IEEEauthorblockA{
E-mail: [email protected]}
}
%%%%
\IEEEpubid{
\makebox[\columnwidth][l]
{\hfill
978-1-4799-1228-5/13/\$31.00~\copyright~2013 IEEE
}
\hspace{\columnsep}
\makebox[\columnwidth]{}
}
\maketitle
\begin{abstract}
put your abstract in here...
\end{abstract}
\begin{IEEEkeywords}
semantic web, Internet, Security
\end{IEEEkeywords}
%%% This line removes the copyright notice!!!
\thispagestyle{fancy}
\section{First}
\lipsum[1]
\section{Second}
\lipsum[2-10]
\end{document}
输出和 \thispagestyle{fancy}
。标题:是 版权:否
输出没有 \thispagestyle{fancy}
。标题:无版权:是
任何建议都值得赞赏。我的上一篇论文发表时有这个错误。没有人注意到!我不希望 IEEE 因为这个愚蠢的错误而拒绝发表我的下一篇论文。
答案1
如果 IEEE 赞助的会议的组织者希望他们的会议论文使用这样的标题,他们必须有自己的方法来包含与该类兼容的标题IEEEtran
。我无法想象他们建议使用fancyhdr
与 相冲突的包IEEEtran
。@Werner 的解决方案有效,但实际上覆盖了IEEEtran
标题。
conference
删除论文页眉的选项。IEEEtran
我想这是他们的选择,通常应该得到尊重 --- 他们是出版商,他们应该得到他们想要的东西(或者他们应该确保在他们IEEEtran
提供的课程中实现他们想要的东西)。
如果您必须使用该conferece
选项,并且您确实希望在第一页和所有其他页面中都有一个运行标题,那么我建议您摆脱该fancyhdr
包并在序言中添加类似以下内容:
\makeatletter
\let\old@ps@headings\ps@headings
\let\old@ps@IEEEtitlepagestyle\ps@IEEEtitlepagestyle
\def\confheader#1{%
% for all pages except the first
\def\ps@headings{%
\old@ps@headings%
\def\@oddhead{\strut\hfill#1\hfill\strut}%
\def\@evenhead{\strut\hfill#1\hfill\strut}%
}%
% for the first page
\def\ps@IEEEtitlepagestyle{%
\old@ps@IEEEtitlepagestyle%
\def\@oddhead{\strut\hfill#1\hfill\strut}%
\def\@evenhead{\strut\hfill#1\hfill\strut}%
}%
\ps@headings%
}
\makeatother
\confheader{%
12$^{th}$ Iranian Conference on Intelligence Systems,
4-6 February 2014, Bam, Iran
}
另外,我建议您%
在 中以 结束您的行\IEEEpubid
,除非您不希望版权声明与左栏正确右对齐。
\IEEEpubid{%
\makebox[\columnwidth][l]%
{\hfill%
978-1-4799-1228-5/13/\$31.00~\copyright~2013 IEEE%
}%
\hspace{\columnsep}%
\makebox[\columnwidth]{}%
}
答案2
fancyhdr
与页眉/页脚设置冲突(或覆盖)IEEEtran
班级。不过,你可以添加以下行
\makeatletter
\fancyfoot[L]{%
\normalfont\footnotesize%
\raisebox{\footskip}[1.5ex]{%
\makebox[\columnwidth][r]{978-1-4799-1228-5/13/\$31.00~\copyright~2013 IEEE}}}
\makeatother
到您的序言。这会将版权内容插入到[L]
左侧页脚中,并在左栏中升起。但是,您必须设置另一种页面样式,从第 2 页开始排除此内容。因此,第 1 页可能可以使用\thispagestyle{fancy}
,而文档的其余部分可以使用\pagestyle{nocopyright}
,其中您
\fancypagestyle{nocopyright}{%
% <header similar to fancy>
% <footer only page # in centre>
}
这是你需要通过日志来整理一些事情。
答案3
这是我经过几个小时的尝试后得到的结果。
\documentclass[conference]{IEEEtran}
\IEEEoverridecommandlockouts
% make room on the footer of the first page for the copyright note
\IEEEpubid{
}
\newcommand{\conftitle}{IEEE International Conference on Yada Yada}
\usepackage{fancyhdr}
\chead{\conftitle}
\cfoot{\thepage}
% style for the first page only
\fancypagestyle{pageStyleOne}{%
\fancyhf{}
\fancyhead[C]{\conftitle}
% \fancyfoot[C]{\thepage} % do you want page number on the first page?
\fancyfoot[L]{978-x-xxxx-xxxx-x/xx/\$31.00 \copyright2014 IEEE}
}
\makeatletter
\makeatother
\begin{document}
\title{Awesome Paper on Yada Yada}
\maketitle
\thispagestyle{pageStyleOne}
\pagestyle{fancy}
\begin{abstract}
This is the best thing since sliced bread.
\end{abstract}
\section{Introduction}
% text text text
\end{document}