章节标题,而不是下一页

章节标题,而不是下一页

这是我的代码,

\documentclass[a4paper,twoside,openright,11pt]{scrbook}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{lmodern}
\usepackage[svgnames]{xcolor}
\usepackage{lipsum}
\usepackage[explicit]{titlesec}
\usepackage{tikz}

\titleformat{\section}[block]%        
{\normalsize\bfseries\itshape\tikz[overlay] \shade[left color=red!20!yellow,right color=black!40!white] (0,-1ex) rectangle  (\linewidth,1em);}%
{\thesection}%                   
{1em}%
{\color{Maroon}#1}

\begin{document}
\chapter{Chapter One}
\section{Section One}
\section{Section Two}
\section{Mass}
\section{Time}
\section{Velocity}
\section{Force}
\section{Section}
\section{Lorem}
\section{Badness}
\section{Underfull}
\section{Section One}
\section{The Basic Structure Of an Atom}
\section{Mass}
\section{Time}
\section{Section One}
\section{Section Two}
\section{Mass}
\section{Time}
\section{Velocity}
\section{Force}
\section{Section}
\section{Lorem}
\section{Badness}
\section{Underfull}
\section{Section One}
\section{The Basic Structure Of an Atom}
\section{Mass}
\section{Time}
\end{document}

显示... 在此处输入图片描述 即在页面底部章节标题不是下一页的交叉点。

我确信这是另一个问题的重复,只是我找不到。所以,有人知道如何修复它吗?

答案1

LaTeX 正在尝试排版格式不正确的文档。

通常,标题与后面的文本“绑定”。这是为了避免出现标题单独出现在页面底部而后面的文本出现在下一页的不雅情况。

您的文档没有内容,只有标题,因此所有分页选项都相同,不会产生分页。正如 dcmst 所指出的,在标题之间添加任何内容都会为文本布局提供分页选项。

相关内容