The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Lingua::LA::Stemmer - Stemmer for Latin

SYNOPSIS

 use Lingua::LA::Stemmer;

 Lingua::LA::Stemmer::stem(\@words);

 # or

 Lingua::LA::Stemmer::stem(@words);

DESCRIPTION

This is a coarse stemming package for latin language. Words are filtered according to the following steps.

o converting 'j' or 'v' to 'i' or 'u'
o removing -que
o matching the end of word against the noun or adjective suffixes
o matching the end of word against the verb suffixes

Of course, it's not perfect. Any suggestion is always welcomed to better this package.

COPYRIGHT

xern <xern@cpan.org>

This module is free software; you can redistribute it or modify it under the same terms as Perl itself.