章节有新页面,但部分无新页面

章节有新页面,但部分无新页面

我希望我的报告在下一页显示章节标题,但在同一页显示各节。这是一份双页报告。\documentclass[a4paper,12pt,twoside]{report}

\chapter{Introduction}
\chapter{Literature Review} \label{chap:litreview}
\section{Concepts} \label{sect:concepts}
\section{Academic} \label{sect:academic}

在上述情况下,文献综述应从新页开始。但是,如果有足够的空间,概念部分应与文献综述章节在同一页上开始。

我已经看到了基于创建嵌套环境,但这似乎会扰乱我的标记和交叉引用。

您知道我怎样才能在新的一页上开始章节,但又能将节标题保留在与章节标题相同的页面中吗?以及如何在不破坏标签的情况下做到这一点?

答案1

这是报告类的默认行为;以下最小示例应该可以在您的 LaTeX 上运行。

\documentclass[a4paper,12pt,twoside]{report}

\usepackage{lipsum}

\begin{document}
\chapter{Introduction}
\lipsum[1]
\chapter{Literature Review} \label{chap:litreview}
\lipsum[1]
\section{Concepts} \label{sect:concepts}
\lipsum
\section{Academic} \label{sect:academic}
\lipsum
\end{document}

如果上述方法不起作用,那么您可能正在使用旧版本的报告类?

如果上述方法有效,您是否使用命令包含外部文件\include?这会自动插入新页面。

相关内容