![]() ![]() ![]() |
|
Steps for entering sentences:
Note 2: To highlight an area using the mouse, place the caret at the beginning of the area and hit Select. Then move the mouse to the end of the area and hit Adjust.
Input Format
An input sentence will be processed according to the following rules:
(...)
or [...]
will be deleted. The
only exception is when [..]
immediately follows a
word. In this case, it signals an index variable. See
explanation. below.
. |
? |
# |
" |
' |
, |
- |
carriage return | tab | space |
All other characters are considered to be letters of a word except for
$
and square brackets []
to be described
below.
word[chars] |
Examples: John[i], himself[j] |
In other words, chars
is considered to be an index
variable. Note: no intervening space is permitted.
*
and #
are ignored.
%
is a comment character. The rest of the line will
be ignored.
Example:
[1:13a] *Who does mary like john % Vacuous operator
'
is treated specially. It is not
discarded. It marks the end of a word but also forms the beginning of
the next. For example, John's
is analyzed as two words,
John
and 's
.
eng(..)
is added to the word:
word$word' |
Example: katta$buy, katta$keep |
word'
maps into the feature eng(word')
. This
can be used to select appropriate translations. Note: no intervening
spaces are allowed.
![]() ![]() ![]() |