Jonas wrote:
> Most of the divided words are done correctly, but I get about 4-5
> wrongly divided words each DIN-A4-page which really is starting to
> matter. My question now is, wether there is the possibility to retrieve
> a list of all automatically divided words, so that I can manually check
> them without having to read the whole document once again... 'Cause, if
> I correct one mistake, just another one shows up  later in the
> document... Or - if there are no other possibilities - to disable
> hyphenation?

I'm not aware of the possibility to get a list. But here are some other hints 
that might be useful.

4--5 wrongly hyphenated words per page sounds much. Are you sure you have 
setup the language correctly and the hyphenations patterns are loaded? LaTeX's 
hyphenation algorhitm is not perfect, but it's not _that_ bad.

BTW there are some new, experimental hyphenation patterns for German that are 
already generally better than the LaTeX defaults. You can load them via

\usepackage[ngerman=ngerman-x-latest]{hyphsubst}

As to the corrections: instead of correcting every instance in the document, 
you can add hyphenation exceptions to the preamble, like this:

\hyphenation{%
Some-thing
An-other
}

These will be used for all occurrences in the document (for the main 
language).

I have an external file mylexicon.tex with such exceptions (mainly technical 
terms), which I load via \input in my document's preamble.

> Another thing that matters about word division is, that sometimes words
> are not divided at all, so that they stand over which looks very ugly.
> So why not just put it in the next line?

This is mainly a hint from LaTeX that the line cannot be filled nicely. Look 
here:
http://www.tex.ac.uk/cgi-bin/texfaq2html?label=overfull
You can get rid of this behaviour by something like this in the preamble:

\tolerance 1414
\hbadness 1414
\emergencystretch 1.5em
\hfuzz 0.3pt

Jürgen

Reply via email to