标题和文本无任何空格

标题和文本无任何空格

我已经将 subsub 部分的“标题”定义如下:

\def\podpodsekce#1{\leavevmode \\ \textbf{#1}\\ \\}

问题是,有时标题在一页的底部,而文本在第二页的开头,或者标题和文本之间有一张图片。我怎样才能让标题和文本没有任何分隔?

以下是简短的可编译代码示例:

\documentclass[12pt, twoside]{article}
\usepackage[czech]{babel}
\usepackage{hyperref,xltxtra,graphicx}
\usepackage{float}

\def\podpodsekce#1{\leavevmode \\ \textbf{#1}\\ \\}

\begin{document}
\podpodsekce{Subsubtitle}
Some text that should be after the title.
\end{document}

答案1

将我的评论变成答案并扩展它:

\subsubsection*{title}

不会在目录中创建条目。所有带星号的分段命令都一样。

更一般地,LaTeX 将每个部门与一个级别相关联,其中\part级别为 -1,\chapter级别为 0,\section级别为 1,一直到\subparagraph级别 5。

计数器的值secnumdepth控制对哪些部门进行编号。

\setcounter{secnumdepth}{2}

表示subsections直到 为止part都会被编号;subsubsections而低于 的将不会被编号。

计数器的值tocdepth控制目录中出现的内容。

\setcounter{tocdepth}{1}

表示sections目录中仅出现及以上内容。

相关内容