使用 onecolabstract 时页眉不显示在首页上

使用 onecolabstract 时页眉不显示在首页上
\documentclass [10pt, a4paper, twocolumn] {article}

\usepackage {abstract}
\usepackage {fancyhdr}

\pagestyle {fancy}
\lhead {Left}

\renewcommand {\abstractname}{}
\renewcommand {\absnamepos} {empty}

\begin {document}

\title {Title}

\twocolumn[
    \maketitle
    \begin {onecolabstract}
Abstract
    \end {onecolabstract}
    ]

\newpage

\section {}
Section

\newpage

\end {document}

答案1

要使页眉显示在标题页上,只需\thispagestyle{fancy}在 后添加\maketitle。 在您的例子中,它将如下所示:

\twocolumn[
    \maketitle
        \thispagestyle{fancy} %add this
    \begin {onecolabstract}
Abstract
    \end {onecolabstract}
    ]

找到我的答案的参考这里

相关内容