Lines Matching refs:words
7 # read file "words.input" from current directory and produce
11 # words.input contains words seperated
13 # "generated-words.tex"
45 Created by a Perl-script (utils/words.pl)!
60 my %used_words = &process_the_words; # the words, LaTeX makros,
80 # words per section to max width over all fonts
110 my @words = sort (keys %{$word_widths->{$sec}});
111 push @two_letter_words, (grep {length($_) == 2;} @words);
117 (@words))),
120 my @long_words = sort (grep {length($_) > 2;} @words);
173 my $words = $_[1];
177 foreach my $sec (keys %{$words}) {
181 foreach my $word (@{$words->{$sec}}) {
312 open WORDS, "< words.input" or die("no file named \"words.input\" found");
341 my @words = split(/\s+/o, $line);
342 push @sec_words, @words;
343 foreach my $word (@words) {