标题中有多余的点

标题中有多余的点

我尝试直接处理标题、目录和章节名称中的段落点/符号。

章节、目录、小节、章节名称等一切都很完美。

但我发现偶数页的页眉上多了一个点。截图在这里。太糟糕了。

我尽力了……但现在我想请你帮忙。请删除这个点,不要改变其他内容。

   %document information
    \documentclass[10pt,a4paper]{book}

% packages
\usepackage[T2A]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[russian]{babel}

\usepackage{titlesec}
\titleformat{\section}
  {\normalfont\Large\bfseries}{\thesection}{1em}{}

\renewcommand{\thesection}{\textsection\arabic{section}.}

\usepackage{fancyhdr}
\pagestyle{fancy}
\fancyhead{}
\fancyhead [CE] {\nouppercase{\slshape \large \rightmark}}
\fancyhead [CO] {\nouppercase{\slshape \large \leftmark}}

\begin{document}
\tableofcontents

\chapter{eh eh}
\section{omg}

\chapter{oh no}
\section{lmao}
\end{document}

在此处输入图片描述

答案1

在你的序言中替换

\titleformat{\section}
  {\normalfont\Large\bfseries}{\textsection\thesection}{1em}{}

\renewcommand{\thesection}{\arabic{section}.}

\titleformat{\section}
{\normalfont\Large\bfseries}{²textsection\thesection.}{1em}{}

您的最后一个命令的结果是,对章节的交叉引用将在章节编号后添加一个点。

**添加:*

这是包含目录解决方案的代码

\documentclass[10pt,a4paper]{book}
\usepackage[showframe]{geometry}
% packages
\usepackage[T2A]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[russian]{babel}

\usepackage{titlesec, titletoc}

\titleformat{\section}
  {\normalfont\Large\bfseries}{\thesection.}{1em}{}
\renewcommand{\thesection}{\textsection\arabic{section}}
\titlecontents{section}[2.7em]{\addvspace{0.5ex}}%
 {\contentslabel[\thecontentslabel.]{1.25em}\hskip0.8em}%numbered
 {}%numberless%
 {\enspace\titlerule*[0.7pc]{.}\contentspage}%

\usepackage{fancyhdr}
\pagestyle{fancy}
\fancyhead{}
\fancyhead [CE] {\nouppercase{\slshape \large \rightmark}}
\fancyhead [CO] {\nouppercase{\slshape \large \leftmark}}

\begin{document}

\tableofcontents

\chapter{eh eh}
\section{omg}

\chapter{oh no}
\section{lmao}

\end{document} 

在此处输入图片描述

相关内容