我对标题有疑问。我的代码是:
\documentclass[a4paper,11pt.,leqno]{article}
\pagestyle{fancy}
\fancyhead{}
\fancyfoot{}
\fancyhead[LO, LE]{\thepage}
\renewcommand{\headrulewidth}{0pt}
\renewcommand{\footrulewidth}{0pt}
\begin{document}
...
\end{document}
这使得页码位于顶部和左侧。在命令中,\fancyhead{}
我试图写标题。但是当我这样做时,我有两个标题:一个位于页面中央,另一个位于右侧。我只想有一个。而且他必须有一个字体:\scshape\centering。我不知道怎么做。
标题应如下所示:
答案1
由于您需要对偶数页和奇数页进行不同的定位,因此您需要 class twoside
选项。要使标题居中,请使用\fancyhead[C]{<contents>}
;无需重新定义\footrulewidth
,因为它默认设置为 0pt。要清除预定义字段,使用 就足够了\fancyhf{}
。
\documentclass[a4paper,11pt,leqno,twoside]{article}
\usepackage{fancyhdr}
\usepackage{lipsum}% just to generate text for the example
\pagestyle{fancy}
\fancyhf{}
\fancyhead[LE,RO]{\scriptsize\thepage}
\fancyhead[C]{\scriptsize\MakeUppercase{On the Zeroes of the Riemann Zeta Function}}
\renewcommand{\headrulewidth}{0pt}
\begin{document}
\section{Test Section}
\lipsum[1-20]
\end{document}
答案2
尝试这个:
\documentclass[a4paper,11pt,leqno]{article}
\usepackage{fancyhdr}
\pagestyle{fancy}
\fancyhead{}
\fancyfoot{}
\fancyhead[LO, LE]{\thepage}
\fancyhead[CO]{\textsc{On the zeroes of the Riemann}}
\renewcommand{\headrulewidth}{0pt}
\renewcommand{\footrulewidth}{0pt}
\usepackage{lipsum}
\begin{document}
\lipsum[1-10]
\end{document}
答案3
以下是更正后的3行:
\documentclass[a4paper,11pt,leqno]{article}
\usepackage{fancyhdr}
\pagestyle{fancy}
标题应该是自动的(部分等)还是手动写的?