Latex 文章中的标题

Latex 文章中的标题

我正在用 latex 写一篇文章。我想把期刊名称放在第一页的页眉上,把文章标题放在奇数页上,把作者姓名放在其余的偶数页上。我尝试使用 pagestyle{ fancy} 但无法以这种方式自定义。有人能帮我吗?提前谢谢。

答案1

这将为您提供第一页以及偶数页和奇数页所需的页眉。

% hdrprob.tex  SE 575772
\documentclass[twoside]{article}
\usepackage{fancyhdr}
\usepackage{lipsum}

\pagestyle{fancy}
\fancyhead{}
\fancyhead[CO]{Article title}
\fancyhead[CE]{The Authors}
\renewcommand{\headrulewidth}{0pt}

\fancypagestyle{plain}{%
\fancyhf{}
\fancyhead[C]{THE JOURNAL}
\fancyfoot[C]{\thepage}
}

\begin{document}
\thispagestyle{plain}
\lipsum[1-12]

\end{document}

相关内容