[Tex/LaTex] correct the hyphenation

hyphenationline-breaking

How to correct the hyphenation in my paper that is entirely wrong? For example, in my paper, there are wrong hyphenations like result-s, s-mall, s-pace, etc. How can I fix this problem. I don't use any package yet.

enter image description here

Sample Code:

\usepackage[english]{babel}

An alternative way is to add:

\righthyphenmin=3

Best Answer

For the words small, space, and results to get hyphenated as s-mall, s-pace, and result-s, somebody or something must have reset two of TeX's fundamental hyphenation-related parameters, viz., \lefthyphenmin and \righthyphenmin. For an English-language setting, the default values of these parameters are

\lefthyphenmin=2

and

\righthyphenmin=3

Something in your document must have managed to set both parameters to 1 (or possibly 0). Be sure to either delete the commands that modify these two parameters or insert the two instructions above in your document (to reset the parameter values to their respective default values).