forked from GitHub/gf-core
124 lines
3.7 KiB
HTML
124 lines
3.7 KiB
HTML
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
|
<HTML>
|
|
<HEAD>
|
|
<META NAME="generator" CONTENT="http://txt2tags.sf.net">
|
|
<TITLE> The construction of verb phrases</TITLE>
|
|
</HEAD><BODY BGCOLOR="white" TEXT="black">
|
|
<P ALIGN="center"><CENTER><H1> The construction of verb phrases</H1>
|
|
<FONT SIZE="4">
|
|
<I>Last update: 2006-02-27 09:41:31 CET</I><BR>
|
|
</FONT></CENTER>
|
|
|
|
<P></P>
|
|
<HR NOSHADE SIZE=1>
|
|
<P></P>
|
|
<UL>
|
|
<LI><A HREF="#toc1">Complementization rules</A>
|
|
<LI><A HREF="#toc2">Other ways of forming verb phrases</A>
|
|
<LI><A HREF="#toc3">Complements to copula</A>
|
|
<LI><A HREF="#toc4">Coercions</A>
|
|
</UL>
|
|
|
|
<P></P>
|
|
<HR NOSHADE SIZE=1>
|
|
<P></P>
|
|
<P>
|
|
Produced by
|
|
gfdoc - a rudimentary GF document generator.
|
|
(c) Aarne Ranta (<A HREF="mailto:aarne@cs.chalmers.se">aarne@cs.chalmers.se</A>) 2002 under GNU GPL.
|
|
</P>
|
|
<PRE>
|
|
abstract Verb = Cat ** {
|
|
</PRE>
|
|
<P></P>
|
|
<A NAME="toc1"></A>
|
|
<H2>Complementization rules</H2>
|
|
<P>
|
|
Verb phrases are constructed from verbs by providing their
|
|
complements. There is one rule for each verb category.
|
|
</P>
|
|
<PRE>
|
|
fun
|
|
UseV : V -> VP ; -- sleep
|
|
ComplV2 : V2 -> NP -> VP ; -- use it
|
|
ComplV3 : V3 -> NP -> NP -> VP ; -- send a message to her
|
|
|
|
ComplVV : VV -> VP -> VP ; -- want to run
|
|
ComplVS : VS -> S -> VP ; -- know that she runs
|
|
ComplVQ : VQ -> QS -> VP ; -- ask if she runs
|
|
|
|
ComplVA : VA -> AP -> VP ; -- look red
|
|
ComplV2A : V2A -> NP -> AP -> VP ; -- paint the house red
|
|
</PRE>
|
|
<P></P>
|
|
<A NAME="toc2"></A>
|
|
<H2>Other ways of forming verb phrases</H2>
|
|
<P>
|
|
Verb phrases can also be constructed reflexively and from
|
|
copula-preceded complements.
|
|
</P>
|
|
<PRE>
|
|
ReflV2 : V2 -> VP ; -- use itself
|
|
UseComp : Comp -> VP ; -- be warm
|
|
</PRE>
|
|
<P></P>
|
|
<P>
|
|
Passivization of two-place verbs is another way to use
|
|
them. In many languages, the result is a participle that
|
|
is used as complement to a copula (<I>is used</I>), but other
|
|
auxiliary verbs are possible (Ger. <I>wird angewendet</I>, It.
|
|
<I>viene usato</I>), as well as special verb forms (Fin. <I>käytetään</I>,
|
|
Swe. <I>används</I>).
|
|
</P>
|
|
<P>
|
|
<B>Note</B>. the rule can be overgenerating, since the <CODE>V2</CODE> need not
|
|
take a direct object.
|
|
</P>
|
|
<PRE>
|
|
PassV2 : V2 -> VP ; -- be used
|
|
</PRE>
|
|
<P></P>
|
|
<P>
|
|
Adverbs can be added to verb phrases. Many languages make
|
|
a distinction between adverbs that are attached in the end
|
|
vs. next to (or before) the verb.
|
|
</P>
|
|
<PRE>
|
|
AdvVP : VP -> Adv -> VP ; -- sleep here
|
|
AdVVP : AdV -> VP -> VP ; -- always sleep
|
|
</PRE>
|
|
<P></P>
|
|
<P>
|
|
<B>Agents of passives</B> are constructed as adverbs with the
|
|
preposition <A HREF="Structural.html">Structural</A><CODE>.8agent_Prep</CODE>.
|
|
</P>
|
|
<A NAME="toc3"></A>
|
|
<H2>Complements to copula</H2>
|
|
<P>
|
|
Adjectival phrases, noun phrases, and adverbs can be used.
|
|
</P>
|
|
<PRE>
|
|
CompAP : AP -> Comp ; -- (be) small
|
|
CompNP : NP -> Comp ; -- (be) a soldier
|
|
CompAdv : Adv -> Comp ; -- (be) here
|
|
</PRE>
|
|
<P></P>
|
|
<A NAME="toc4"></A>
|
|
<H2>Coercions</H2>
|
|
<P>
|
|
Verbs can change subcategorization patterns in systematic ways,
|
|
but this is very much language-dependent. The following two
|
|
work in all the languages we cover.
|
|
</P>
|
|
<PRE>
|
|
UseVQ : VQ -> V2 ; -- ask (a question)
|
|
UseVS : VS -> V2 ; -- know (a secret)
|
|
|
|
}
|
|
</PRE>
|
|
<P></P>
|
|
|
|
<!-- html code generated by txt2tags 2.3 (http://txt2tags.sf.net) -->
|
|
<!-- cmdline: txt2tags -thtml -\-toc abstract/Verb.txt -->
|
|
</BODY></HTML>
|