一頁有兩個頁碼

一頁有兩個頁碼

我正在使用 LyX 來佈局論文集。

設計中每個跨頁都有一個頁碼位置。請尋找下面的範例。不是展示59,而是可以展示嗎58—59?我用來fancyhead定義當前的範例。我的程式碼如下:

\renewcommand*{\chapterpagestyle}{fancy}
\fancyhead{}%
\fancyfoot{}%
\fancyhead[CE]{\rmfamily \small \leftmark}
\fancyhead[CO]{\rmfamily \small\thepage }
\fancyhead[RO, LE]{\rmfamily \small }
\renewcommand{\headrulewidth}{0pt}

任務範例

答案1

您可以將相應的行更改為

\fancyhead[CO]{%
  \rmfamily\small
  \addtocounter{page}{-1}%
  \thepage
  \addtocounter{page}{1}%
  --\thepage
}

我們只需1從 coutner 中減去page,列印頁碼,然後將其加1回來,以便我們可以列印當前頁碼,並且不會弄亂頁碼。

相關內容