我在LaTeX工作,当我创建一个pdf文件(使用LaTeX按钮或pdfLaTeX按钮或使用yap)时,pdf只有前两页。没有错误。它就停止了。如果我通过添加文本使第一页更长,它仍然在第2页的末尾停止。有什么想法吗?
好的,回复第一条评论,这是代码
\documentclass{article}
\title{Outline of Book}
\author{Peter L. Flom}
\begin{document}
\maketitle
\section*{Preface}
\subsection*{Audience}
\subsection*{What makes this book different?}
\subsection*{Necessary background}
\subsection*{How to read this book}
\section{Introduction}
\subsection{The purpose of logistic regression}
\subsection{The need for logistic regression}
\subsection{Types of logistic regression}
\section{General issues in logistic regression}
\subsection{Transforming independent and dependent variables}
\subsection{Interactions}
\subsection{Model selection}
\subsection{Parameter estimates, confidence intervals, p values}
\subsection{Summary and further reading}
\section{Dichotomous logistic regression}
\subsection{Introduction, theory, examples}
\subsection{Exploratory plots and analysis}
\subsection{Basic model fitting}
\subsection{Advanced and special issues in model fitting}
\subsection{Diagnostic and descriptive plots and analysis}
\subsection{Traps and gotchas}
\subsection{Power analysis}
\subsection{Summary and further reading}
\subsection{Exercises}
\section{Ordinal logistic regression}
\subsection{Introduction, theory, examples}
\subsubsection{Introduction - what are ordinal variables?}
\subsubsection{Theory of the model}
\subsubsection{Examples for this chapter}
\subsection{Exploratory plots and analysis}
\subsection{Basic model fitting}
\subsection{Advanced and special issues in model fitting}
\subsection{Diagnostic and descriptive plots and analysis}
\subsection{Traps and gotchas}
\subsection{Power analysis}
\subsection{Summary and further reading}
\subsection{Exercises}
\section{Multinomial logistic regression}
\subsection{Introduction, theory, examples}
\subsection{Exploratory plots and analysis}
\subsection{Basic model fitting}
\subsection{Advanced and special issues in model fitting}
\subsection{Diagnostic and descriptive plots and analysis}
\subsection{Traps and gotchas}
\subsection{Power analysis}
\subsection{Summary and further reading}
\subsection{Exercises}
\section{Choosing a model}
\subsection{NOIR and its problems}
\subsection{Linear vs. ordinal}
\subsection{Ordinal vs. multinomial}
\subsection{Summary and further reading}
\subsection{Exercises}
\section{Extensions and related models}
\subsection{Other logistic models}
\subsection{Multilevel models - PROC NLMIXED and GLIMMIX}
\subsection{Loglinear models - PROC CATMOD}
\section{Summary}
\end{document}
感谢
彼得
答案 0 :(得分:6)
LaTeX宏\ section,\ subsection等用于在它们后面加上一些文本。他们刻意防止紧随其后的材料破裂。由于你有一系列的切片宏没有别的东西,所以没有任何地方可以发生中断。如果你查看你的日志,你会看到一个过满的vbox:我得到了
Overfull \vbox (712.84044pt too high) has occurred while \output is active []
这意味着\ box 255(实际上包含排版页面)的内容太大了,并且从底部开始运行。因为部分命令从未打算像这样使用,所以你可能不得不重新考虑你的方法,或者编写你自己的版本,不要破坏断行。
答案 1 :(得分:2)
在这些section和subsection命令之后添加一个波浪号(〜)。如果您没有某个部分的内容,LaTeX将不会破坏该框(波浪线是一个不间断的空间并将计为内容)。
即
\section*{Preface}~
\subsection*{Audience}~
...
为了达到你的目标(大纲),最好使用嵌套枚举:
\begin{enumerate}
\item Preface
\begin{enumerate}
\item Audience
\item What makes this book different?
\item Necessary background
\item How to read this book
\end{enumerate}
\item Introduction
\begin{enumerate}
\item The purpose of logistic regression
\item The need for logistic regression
\item Types of logistic regression
\end{enumerate}
...
\end{enumerate}
请参阅其他帖子以了解枚举环境的自定义。
答案 2 :(得分:1)
需要更多信息!你能用最少的文件重现这种行为吗?
我将做的是:
\subject{}
公式等)。我的猜测是,您使用了一些TeX
命令来“切换”文档的状态,并以某种方式从某个点删除所有文本。
就像在单个单词上使用\em
命令一样,并使文档的其余部分用粗体字表示。
答案 3 :(得分:0)
我仍然不确定发生了什么,但当我在每个部分添加一些文字时,问题就消失了。
答案 4 :(得分:0)
所以我遇到了一个不同的问题,但是我只想指出,当我搜索类似的问题时,使用Overleaf编译Latex文档时,它停在了2页上,因为我没有正确结束小数部分(我的尾花括号太少了)。我只是在查看日志后才发现这一点。