我已经将 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
目录中仅出现及以上内容。