您將如何實現這種樣式的標題?

您將如何實現這種樣式的標題?

第一頁--->期刊號及名稱

在此輸入影像描述

第二頁--->標題和頁碼

在此輸入影像描述

第三頁就像第一頁等等......

答案1

我建議你使用該fancyhdr包。

\documentclass[twoside]{article}

\usepackage{fancyhdr}
\pagestyle{fancy}
\fancyhead{}\fancyfoot{} % clear all header and footer fields
\renewcommand{\headrulewidth}{0pt} % no header rule
\fancyhead[LE,RO]{\thepage}
\fancyhead[CE]{\em The Journal of Finance}
\fancyhead[CO]{\em The American Put Option and Its Critical Stock Price}

\usepackage{lipsum} % for filler text
\begin{document}

\setcounter{page}{2334}
\lipsum[1-15] % generate 3 pages of text
\end{document}

相關內容