我尝试编写一本以下风格的书:有没有办法修改上面的水平线,使其不包含单词“Sisältö”或除页码之外的任何其他文本?
\documentclass[10pt]{book}
\usepackage[utf8]{inputenc}
\usepackage[finnish]{babel}
\usepackage{blindtext}
\usepackage[a5paper]{geometry}
%\usepackage[a5paper, top=2in, bottom=1.5in, left=1in, right=1in]{geometry}
\usepackage{scrextend}
\changefontsizes{10.0pt} % Change base font size
\usepackage{lettrine}
\usepackage{fancyhdr}
\fancyhead[LE,RO]{\thepage}
\fancyfoot{}
\fancyhead[RO,LE]{\thepage}
\fancyhead[LO]{\leftmark}
\fancyhead[RE]{\rightmark}
\cfoot{} % get rid of the page number
\linespread{1.3}
\vbadness=20000
\pagestyle{fancy}
\begin{document}
\tableofcontents
\newpage
\section*{Chapter one}
\addcontentsline{toc}{section}{beginning}
First lines.
\newpage
\section*{Chapter two}
\addcontentsline{toc}{section}{somewhere}
Some text.
\newpage
\section*{Chapter two}
\addcontentsline{toc}{section}{end}
The end.
\end{document}
答案1
如果您只希望页眉中包含规则和页码,而页脚中不包含任何内容,请执行以下操作
\pagestyle{fancy}
\fancyhf{} % clear all fields
\fancyhead[RO,LE]{\thepage}
就这样。不要设置与 相关的任何其他内容fancyhdr
。