LaTeX 文档被截断

LaTeX 文档被截断

我创建了一个包含章节和子章节的文档,并将其设为目录。文档大约有 20 个章节。但是,在第 9 章节之后,新页面没有开始,而是被截断了,所以我看不到文档的其余部分。我添加了测试文本,但仍然不起作用。有人知道这是为什么吗?下面是我的代码:

\documentclass[12pt]{article}
\begin{document}
\title{Notes on SAT Math}
\maketitle


\newpage
\tableofcontents

\newpage
\section{Exponents and Radicals}

\subsection{Laws of Exponents}
Here are some of the important Laws of Exponents: 

\subsection{Evaluating Expressions with Exponents}

\subsection{Solving equations with Exponents}

\subsection{Simplifying Square Roots}


\section{Percent}
\subsection{Percent change}

\subsection{Simple and Compound Interest}

\subsection{Percent Word Problems}

\section{Exponential vs Linear Growth}
\subsection{Linear Growth and Decay}
\subsection{Exponential Growth and Decay}

\section{Proportion}

\section{Rates}
\subsection{Conversion Factors}

\section{Expressions}
\subsection{Combining Like Terms} 
\subsection{Expansion and Factoring}
\subsection{Combining, dividing, and splitting fractions}

\section{More Equation Solving Strategies}
\subsection{Matching coefficients}
\subsection{Clearing denominators}

\section{Systems of Equations}
\subsection{Substitution}
\subsection{Elimination}
\subsection{Systems with no and infinite solutions}
\subsection{Word Problems}
\subsection{More Complex Systems}
\subsection{Graphs of Systems of Equations}

\section{Inequalities}
\subsection{How to Solve Inequalities}
\subsection{Inequality Word Problems}
\subsection{Graphs of Inequalities}

\section{Word Problems}

\section{Lines}
\subsection{Slope and y-intercept}
\subsection{Slope Intercept and Point Slope Form}
\subsection{Finding the intersection of two lines}
\subsection{Parallel and Perpendicular lines}
\subsection{Horizontal and Vertical Lines}

\section{Interpreting Linear Models}

\section{Functions}
\subsection{What is a Function?}
\subsection{When are Functions Undefined?}
\subsection{Finding the intersection of two lines}
\subsection{Parallel and Perpendicular lines}
\subsection{Horizontal and Vertical Lines}

\section{Quadratics}
\subsection{Tactics for Finding the Roots}
\subsection{Completing the Square}
\subsection{Vertex and Vertex Form}
\subsection{Parallel and Perpendicular lines}
\subsection{Parallel and Perpendicular lines}

\section{Synthetic Division}
\subsection{Performing Synthetic Division}
\subsection{Equivalent Expressions}
\subsection{The Remainder Theorem}

\section{Complex Numbers}

\section{Absolute Value}

\section{Angles}
\subsection{Exterior Angle Theorem}
\subsection{Parallel Lines}
\subsection{Polygons}

\section{Triangles}
\subsection{Isosceles and Equilateral Triangles}
\subsection{Right Triangles}
\subsection{Special Right Triangles}
\subsection{Similar Triangles}
\subsection{Radians}

\section{Circles}
\subsection{Area and circumference}
\subsection{Arc Length}
\subsection{Area of a Sector}
\subsection{Central and Inscribed Angles}
\subsection{Equations of Circles}

\section{Trigonometry}
\subsection{Sine, cosine, and tangent}
\subsection{Trigonometric Identities}
\subsection{Evaluating Trigonometric Expressions}

\section{Reading Data}

\section{Probability}

\section{Statistics I}
\subsection{Mean, median, mode}
\subsection{Range and Standard Deviation}
\subsection{Histograms and Dot Plots}
\subsection{Word problems involving averages}

\section{Statistics II}
\subsection{Statistical Sampling}
\subsection{Using and Interpreting Line of Best Fit}
\subsection{Margin of Error}
\subsection{Confidence Intervals}
\subsection{Experimental Design and Conclusions}


\section{Volume}



\end{document}

答案1

正如 muzimuzhi Z 所说,这里的问题是 LaTeX 不想在紧密相连的章节标题之间分页。这通常是理想的结果,因为您不希望在章节标题和开始章节的小节之间分页。

如果您查看日志输出,您将看到一条overfull \vbox警告,表明最终页面上的内容在垂直方向上超出了正常页面的范围。

您可以在每个小节中放置一些虚拟文本,以允许 LaTeX 进行分页,一切都会顺利。

相关内容