多行页眉和自定义首页页眉

多行页眉和自定义首页页眉

我的任务是整理期刊的 LaTeX 文件。现在,这是 LaTeX 代码(不是我的,所以我真的不知道如何解决这个问题)。每篇论文的第一页都有一个“特殊页眉”,其余部分都有正常的花式页眉。

据我了解,当前的“特殊标题”是文档主体的一部分。我想问一下是否有办法让“特殊标题”真正成为标题环境的一部分。我该怎么做?

\documentclass{article}
\usepackage{fancyhdr}
\begin{document}

\thispagestyle{empty}
\pagestyle{fancy}
\fancyhead[LO]{\textsc{Title of Paper}}
\fancyhead[RE]{\textsc{Authors}}
\fancyhead[LE]{\thepage}
\fancyhead[RO]{\thepage}
\fancyfoot{}
\renewcommand{\headrulewidth}{.75pt}
\title{}
\author{}
\date{}
\maketitle
%\setcounter{page}{1}

\vspace{-1.7in}
\hrule
\vspace{0.02in}
{\sf \noindent{\small JOURNAL NAME \hfill OTHER STUFF}\\
\vspace{-.2in}\\
\noindent{\small  ISSN \ 0115-xxxx\hfill Vol. xx  No. x (xxx) pp.
1-13}}

\vspace{0.01in}
\hrule

\end{document}

答案1

由于\maketitle将页面样式设置为plain,最好的办法是重新定义plain页面样式以包含页眉:

\documentclass{article}
\usepackage{fancyhdr}
\begin{document}

\thispagestyle{empty}
\pagestyle{fancy}
\fancyhead[LO]{\textsc{Title of Paper}}
\fancyhead[RE]{\textsc{Authors}}
\fancyhead[LE]{\thepage}
\fancyhead[RO]{\thepage}
\fancyfoot{}
\renewcommand{\headrulewidth}{.75pt}
\fancypagestyle{plain}{%
  \fancyhead{%
    \vspace{-1.7in}
    \hrule
    \vspace{0.02in}
    \small
    \sffamily
    \noindent
    \begin{tabular}{@{}p{\textwidth}@{}}
      JOURNAL NAME \hfill OTHER STUFF\\
      ISSN \ 0115-xxxx\hfill Vol. xx  No. x (xxx) pp. 1-13
    \end{tabular}
    \vspace{0.01in}
    \hrule
  }
}
\title{}
\author{}
\date{}
\maketitle

Some text
\clearpage
Some more text


\end{document}

相关内容