abstract Adverb = Cat ** { funThe two main ways of forming adverbs are from adjectives and by prepositions from noun phrases.
PositAdvAdj : A -> Adv ; -- warmly PrepNP : Prep -> NP -> Adv ; -- in the houseComparative adverbs have a noun phrase or a sentence as object of comparison.
ComparAdvAdj : CAdv -> A -> NP -> Adv ; -- more warmly than John ComparAdvAdjS : CAdv -> A -> S -> Adv ; -- more warmly than he runsAdverbs can be modified by 'adadjectives', just like adjectives.
AdAdv : AdA -> Adv -> Adv ; -- very quicklyLike adverbs, adadjectives can be produced by adjectives.
PositAdAAdj : A -> AdA ; -- extremelySubordinate clauses can function as adverbs.
SubjS : Subj -> S -> Adv ; -- when she sleepsComparison adverbs also work as numeral adverbs.
AdnCAdv : CAdv -> AdN ; -- less (than five) }