在上一节之后创建新节时如何避免乳胶分页?

How to avoid page break in latex when a new section is created after the previous subsection?

我正在处理乳胶文档。我的包裹是

\documentclass[a4paper,12pt]{article}
\usepackage{amsmath}
\usepackage{color}
\usepackage{ragged2e} 
\usepackage{hyperref}
\usepackage{graphicx}
\usepackage{titlesec}
\newcommand{\sectionbreak}{\clearpage}
\setcounter{tocdepth}{6}
\setcounter{secnumdepth}{6}

一切都很好,但是当第一小节完成并且我使用下一节命令 \section{blah blah} 时,它会在新页面上开始。我在同一页中有很多 space,因此我不想分页。我什至使用了 \nopagebreak 命令,它仍然是一样的。请帮忙!

删除

\newcommand{\sectionbreak}{\clearpage}

命令并在需要时使用 \page break。那满足你的要求。希望能帮助到你!