我想從第二頁開始在頂部的每個頁面上重複某些程式碼區塊。這是假設標頭已定義。有沒有可以偵測頁數的套件?
謝謝
答案1
使用兩種頁面樣式,例如first
和main
。然後在你的文件中做一些類似的事情:
\documentclass...
% define the first and main pagestyles, or use existing ones
% ...
\pagestyle{main}
\begin{document}
% some text (which might set its own page style)
\thispagestyle{first} % for the first page
% more text on the first page then \pagestyle{main} comes into effect on the following pages