<(common.inc.plp)><: Html({ title => 'latin alphabet cheat sheet', version => 'v1.0', description => [ ], keywords => [qw' latin roman alphabet script letter unicode font glyph abc writing comparison character sample test language spelling cursive fraktur blind deaf '], stylesheet => [qw'light dark red'], }); :>

Latin alphabet

Also see other alphabets and common chars.

<: use Shiar_Sheet::FormatChar; my $glyphs = Shiar_Sheet::FormatChar->new; unless (exists $get{v}) { $glyphs->{unicode}--; $glyphs->{digraph}--; } my %scriptname = ( latn => 'Latin', latfsuet => 'Sütterlin', ase => 'ASL shapes', brai => 'Braille', morse => 'Morse', ); my @table = do 'writing-latn.inc.pl'; if ($! or $@) { printf "

Table data not found: %s.

\n", $! || $@; } else { print $glyphs->table([map { ref $_ ne 'ARRAY' ? ".>$scriptname{$_}" : exists $get{uc} ? map {uc} @$_ : @$_ } @table]); } print "
\n";