[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: hyphenating non-english characters
From: |
Werner LEMBERG |
Subject: |
Re: hyphenating non-english characters |
Date: |
Thu, 01 Aug 2024 11:03:24 +0000 (UTC) |
> Unfortunately, I got stuck at this point, as the hyphenation file
> that I used is encoded in latin1. Sorry for not including it, this
> is the place I got the file from:
> https://ctan.org/tex-archive/language/hungarian/hyphenation
These patterns are very outdated. The current version of the patterns
(which is a file larger than a whopping 500kByte) is part of the
'tex-hyphen' bundle and can be found, among other places, in the
TeXLive git repository at
https://git.texlive.info/texlive/tree/Master/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-hu.tex
> Another weird thing is, while it does contain the á,é,í,ó,ö and ü
> characters, it omits the ő and ű characters entirely.
The abovementioned file is encoded in UTF-8, which you have to convert
to Latin2 by doing, for example,
```
iconv -f utf8 -t latin2 < hyph-hu.tex > hyph-hu.latin2.tex
```
Werner