Difference between revisions of "Apertium-recursive/Cookbook"

From Apertium
Jump to navigation Jump to search
(cases and prepositions)
m (syntax update)
Line 3: Line 3:
 
=== Noun-Adjective Gender Agreement ===
 
=== Noun-Adjective Gender Agreement ===
   
NP -> adj n { 1(gender=2.gender) _1 2 } ;
+
NP -> adj n { 1[gender=2.gender] _1 2 } ;
   
 
This will copy the gender tag of the noun to the adjective.
 
This will copy the gender tag of the noun to the adjective.
Line 16: Line 16:
   
 
NP -> n.$gender.$number { 1 } |
 
NP -> n.$gender.$number { 1 } |
adj NP.$gender.$number { 2 _1 1(gender=2.gender) } ;
+
adj NP.$gender.$number { 2 _1 1[gender=2.gender] } ;
DP -> det NP { 1(number=2.number) _1 2 } ;
+
DP -> det NP { 1[number=2.number] _1 2 } ;
   
 
These rules will match a determiner, 0 or more adjectives, and a noun and make all the adjectives agree with the noun in gender and the determiner agree with the noun in number. The adjectives will also be output after the noun in the reverse of their input order.
 
These rules will match a determiner, 0 or more adjectives, and a noun and make all the adjectives agree with the noun in gender and the determiner agree with the noun in number. The adjectives will also be output after the noun in the reverse of their input order.
Line 25: Line 25:
 
v_inf: _.<inf>;
 
v_inf: _.<inf>;
 
v_fin: _.tense.person.number;
 
v_fin: _.tense.person.number;
v: (if (1.tense = inf) 1[v_inf]
+
v: (if (1.tense = inf) 1(v_inf)
else 1[v_fin]);
+
else 1(v_fin));
   
 
When outputting a verb, this will not try to add person and number tags if the tense is <code><inf></code>.
 
When outputting a verb, this will not try to add person and number tags if the tense is <code><inf></code>.
Line 40: Line 40:
 
{ 1 }
 
{ 1 }
 
else
 
else
{ *[pr](lemh=1.case>preps) _ 1 } ) ;
+
{ *(pr)[lemh=1.case>preps] _ 1 } ) ;
   
 
=== Case to Preposition on Another Level ===
 
=== Case to Preposition on Another Level ===
Line 48: Line 48:
 
NP -> n [$preps=1.case>preps] { 1 } ;
 
NP -> n [$preps=1.case>preps] { 1 } ;
 
DP -> det NP.$preps { 1 _1 2 } ;
 
DP -> det NP.$preps { 1 _1 2 } ;
PP -> DP ?(1.preps not = NOpr) { *[pr](lemh=1.preps) _ 1 } ;
+
PP -> DP ?(1.preps not = NOpr) { *(pr)[lemh=1.preps] _ 1 } ;
   
 
Now things can be added to the <code>NP</code> rule to deal with adjectives and the <code>DP</code> rule could match just an <code>NP</code> and insert determiners and so on.
 
Now things can be added to the <code>NP</code> rule to deal with adjectives and the <code>DP</code> rule could match just an <code>NP</code> and insert determiners and so on.

Revision as of 16:48, 6 August 2019

This page is intended to be a collection of solutions to common transfer problems. It is sorted vaguely be complexity, so it could potentially also serve as a tutorial. Functioning rulesets for each of these examples can be found at https://github.com/apertium/apertium-recursive/tree/master/tests/cookbook.

Noun-Adjective Gender Agreement

NP -> adj n { 1[gender=2.gender] _1 2 } ;

This will copy the gender tag of the noun to the adjective.

Reordering

NP -> adj n { 2 _1 1 } ;

This will reverse the order of the noun and adjective.

Agreement across Multiple Levels

NP -> n.$gender.$number { 1 } |
      adj NP.$gender.$number { 2 _1 1[gender=2.gender] } ;
DP -> det NP { 1[number=2.number] _1 2 } ;

These rules will match a determiner, 0 or more adjectives, and a noun and make all the adjectives agree with the noun in gender and the determiner agree with the noun in number. The adjectives will also be output after the noun in the reverse of their input order.

Selecting Output Patterns

v_inf: _.<inf>;
v_fin: _.tense.person.number;
v: (if (1.tense = inf) 1(v_inf)
    else 1(v_fin));

When outputting a verb, this will not try to add person and number tags if the tense is <inf>.

Case to Preposition

case = nom acc dat gen loc abl;
preps = NOpr to of at from;

case > preps : nom NOpr, acc NOpr, dat to, gen of, loc at, abl from;

NP -> n (if (1.case>preps = NOpr)
            { 1 }
         else
            { *(pr)[lemh=1.case>preps] _ 1 } ) ;

Case to Preposition on Another Level

If you want to do something like the previous example, but you want to be able to have determiners and adjectives between the preposition and the noun, you could do something like making preps a flag on the NP and passing up:

NP -> n [$preps=1.case>preps] { 1 } ;
DP -> det NP.$preps { 1 _1 2 } ;
PP -> DP ?(1.preps not = NOpr) { *(pr)[lemh=1.preps] _ 1 } ;

Now things can be added to the NP rule to deal with adjectives and the DP rule could match just an NP and insert determiners and so on.