我想使用「字典」樣式的頁眉,\rightmark--\leftmark
按照中的建議使用fancyhdr
包裹。
然而,在twocolumn
模式中,\rightmark
包含第一的在後一列中進行標記,這是錯誤的:它應該包含第一的在前一列中標記。
我知道使用multicol
包而不是[twocolumn]
選項或\twocolumn
命令會有所幫助,但我想避免multicol
.
這是一個 MWE:
\documentclass[twocolumn]{article}
\usepackage{fancyhdr}
\fancyhf{}{}
\fancyhead[R]{\thepage}
\fancyhead[L]{\rightmark{} -- \leftmark}
\pagestyle{fancy}
\def\mysection#1{\section*{#1}\markboth{#1}{#1}}
% to provide dummy text and lots of sections
\usepackage{lipsum}
\newcounter{xs}
\def\xsect{%
\stepcounter{xs}%
\mysection{Section \Alph{xs}}
\lipsum[\value{xs}]
}
\begin{document}
\xsect\xsect\xsect\xsect\xsect
\xsect\xsect\xsect\xsect\xsect
\end{document}
答案1
\usepackage{fixltx2e}
12345678