使用 IEEE Transactions 类时,如何在 LyX 文件中添加页脚?
答案1
首先更改文档 > 设置... > 页面布局,并将页面样式更改为花式:
然后添加到您的文档 > 设置... > LaTeX 序言
\fancyfoot[L]{Left footer}
\fancyfoot[C]{Center footer}
\fancyfoot[R]{Right footer}
% Update \maketitle to change page style for first page
\let\oldmaketitle\maketitle
\renewcommand{\maketitle}{%
\oldmaketitle
\thispagestyle{fancy}% Title page has fancy
}
调整\maketitle
将页脚添加到第一页,其样式根据 IEEE 文档类而有所不同。如果您不想要它,那么您可以删除该部分代码。