我收到错误:
Overfull \hbox (11.66551pt too wide) in paragraph
代码:
\documentclass{article}
\usepackage{verbatim}
\usepackage{graphicx}
\usepackage{url} % typeset URL's reasonably
\usepackage{listings}
\usepackage{comment}
\usepackage{pslatex} % Use Postscript fonts
\usepackage[numbers, square]{natbib}
\usepackage[usenames,dvipsnames]{pstricks}
\usepackage{epsfig}
\usepackage{pst-grad} % For gradients
\usepackage{pst-plot} % For axes
\usepackage{float}
\restylefloat{figure}
\usepackage{multirow}
\begin{document}
\begin{itemize}
\item Global Analysis Method: External resources such as dictionaries and thesaurus(e.g. WordNet) are used to add terms to the query before the search process
\item Local Analysis Method: Information from retrieved resources is used to formulate the new query. Thus, the success of this method is is highly dependent on the precision of the first search
\end{itemize}
\end{document}
答案1
这不是一个错误,而是一个警告,TeX 无法找到一个合适的位置来换行。
在这种情况下,您的源中缺少空格(单词空格是断行的好地方),在其他情况下,原因会有所不同。您可以忽略它或修复每个案例(或者您可以尝试添加,\sloppy
告诉 latex 降低其标准并减少使用良好的换行符。