latex行溢出问题 Overfull \hbox (1.1499pt too wide) in paragraph

参考:http://en.wikibooks.org/wiki/LaTeX/Errors_and_Warnings#Overfull_hbox


问题来源:在编写latex源文件时,经常会出现Overfull \hbox (1.1499pt too wide) in paragraph提示,查看编译后的pdf,发现该行超出了该有的边界,故需要解决。


解决方法:找到对应的提示行,然后将最后几个单词任意截断,然后另起一行即可。

   eg;  I'm very powerful in computer.    

  change to :  I'm very          

                                      powerful in computer.    

(原文:An overfull \hbox means that there is a hyphenation or justification problem: moving the last word on the line to the next line would make the spaces in the line wider than the current limit)

你可能感兴趣的:(latex)