• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

lib/TeX/H12-Dec-2016-5,1994,843

t/H12-Dec-2016-13799

ChangesH A D12-Dec-20162.2 KiB9353

MANIFESTH A D12-Dec-2016327 1413

META.jsonH A D12-Dec-2016846 4140

META.ymlH A D12-Dec-2016491 2322

Makefile.PLH A D03-Mar-2011289 119

READMEH A D12-Dec-20161.1 KiB3828

README

1
2			---------------------------
3				TeX::Hyphen
4			---------------------------
5
6This is the README file for the TeX::Hyphen module. This module uses
7TeX style hyphenation patterns to find places in words to hyphenate.
8You can supply any hyphenation file you like. The use goes like this
9
10	use TeX::Hyphen;
11	my $hyp = new TeX::Hyphen 'dehyphn.tex', 'style' => 'german';
12	my $word = "representation";
13	my @points = $hyp->hyphenate($word);
14
15Installation:
16	perl Makefile.PL
17	make
18	make test
19	make install
20
21Problems and bug reports:
22	Please report bug reports to my address. Include word
23	TeX::Hyphen in the Subject line of your mail. Do not include
24	word Help in the Subject line of your mail. If you find this
25	module usefull, I'd appreciate if you let me know as well.
26
27Available from:
28	http://www.adelton.com/perl/TeX-Hyphen/ and from your favorite
29	CPAN site in the authors/id/JANPAZ/ directory.
30
31	Contact the author at jpx dash perl at adelton dot com.
32
33Copyright: (c) 1997--2016 Jan Pazdziora.
34	All rights reserved. This program is free software; you can
35	redistribute it and/or modify it under the same terms as Perl
36	itself.
37
38