我正在使用该fancyhdr
软件包为我的文档创建标题。它工作得很好,但在右侧奇数页上我得到的是“1.1. 第 1 节”,但我想要的是“1.1 第 1 节”。你能帮我把点抹掉吗?
\documentclass[12pt,twoside]{report}
\usepackage[english]{babel}
\usepackage{blindtext}
\usepackage{fancyhdr}
\pagestyle{fancy}
\renewcommand{\chaptermark}[1]{\markboth{#1}{}} %chapter oben ohne Nummer
\renewcommand*\MakeUppercase[1]{#1} %macht das nich alles Großgeschrieben wird
\fancyhead{} %löscht den Standardtext oben
\fancyhead[LE] {\leftmark} %chaptername=current language bezeichnung für Kapitel, \chaptermark= Titel; Text in{} wird links bzw. rechts gestzt (gerade und ungerade Seiten)
\fancyhead[RO] {\rightmark}
\fancyfoot{}
\fancyfoot[LE,RO] {\thepage} %the page returns page number; R=Right O=Odd page L=LEft E=even page
\renewcommand{\headrulewidth}{0.6pt} %dicke vom Strich
\renewcommand{\footrulewidth}{0pt}
\fancypagestyle{plain}{} % empty pagestyle plan (für Seiten mit Chapter o.ä)
\fancypagestyle{plain}{
\fancyhf{} % clear all header and footer fields
\fancyfoot[LE,RO]{\thepage}
\renewcommand{\footrulewidth}{0pt}
\renewcommand{\headrulewidth}{0pt}
}
\begin{document}
\chapter{Chapter1}
\blindtext
\section{Section1}
\blindtext
\subsection{subsection1}
\Blindtext
\end{document}
答案1
添加 \renewcommand{\sectionmark}[1]{\markright{\thesection ~ \ #1}}
\documentclass[12pt,twoside]{report}
\usepackage[english]{babel}
\usepackage{blindtext}
\usepackage{fancyhdr}
\pagestyle{fancy}
\renewcommand{\chaptermark}[1]{\markboth{#1}{}} %chapter oben ohne Nummer
\renewcommand{\sectionmark}[1]{\markright{\thesection ~ \ #1}} % added <<<<<<<<<<<<<<<<<<<<<<
\renewcommand*\MakeUppercase[1]{#1} %macht das nich alles Großgeschrieben wird
\fancyhead{} %löscht den Standardtext oben
\fancyhead[LE] {\leftmark} %chaptername=current language bezeichnung für Kapitel, \chaptermark= Titel; Text in{} wird links bzw. rechts gestzt (gerade und ungerade Seiten)
\fancyhead[RO] {\rightmark}
\fancyfoot{}
\fancyfoot[LE,RO] {\thepage} %the page returns page number; R=Right O=Odd page L=LEft E=even page
\renewcommand{\headrulewidth}{0.6pt} %dicke vom Strich
\renewcommand{\footrulewidth}{0pt}
\fancypagestyle{plain}{} % empty pagestyle plan (für Seiten mit Chapter o.ä)
\fancypagestyle{plain}{
\fancyhf{} % clear all header and footer fields
\fancyfoot[LE,RO]{\thepage}
\renewcommand{\footrulewidth}{0pt}
\renewcommand{\headrulewidth}{0pt}
}
\begin{document}
\chapter{Chapter1}
\blindtext
\section{Section1}
\blindtext
\subsection{subsection1}
\Blindtext
\end{document}
答案2
答案3
添加点\sectionmark
,其定义为
\def\sectionmark##1{%
\markright {\MakeUppercase{%
\ifnum \c@secnumdepth >\z@
\thesection. \ %
\fi
##1}}}}
在标准类report
和中book
,请参阅texdoc classes
。您可以重新定义\sectionmark
为删除点@SimonDispa 的回答显示。