我的 pdf 文件中无缘无故出现了这些随机的实心方块。我试图找出问题所在,并将其与特定类型的命令联系起来。但是,无论我使用什么命令,我仍然会不时看到它们。这是一个简单的 TeX 输入示例。
\begin{itemize}
\item Outer item 1.
\begin{itemize}
\item The code is easy to read/understand given the comments/documentation.
\end{itemize}
\end{itemize}
下面是生成的 pdf 的快照。有趣的是,如果我将内部 itemize 中的文本句子缩短,它在这种情况下不会出现。
我在 OS X、El Capitan 上使用 Tex Live 2015。
答案1
如果设置了,则黑框由 overfull \hbox
es生成。这通常由类选项完成。\overfullrule
draft
解决方案:
解决 es 过满的问题
\hbox
。这里,
\slash
可以/
让 TeX 更容易地找到连字点:comments\slash documentation.
甚至
comments\slash\hspace{0pt}documentation.
解决方法:
draft
从类选项列表中删除选项。或者设置
\overfullrule
为零:\setlength{\overfullrule}{0pt}