Verb phrases (VPs) are central to the syntax and semantics of both English and French. Aligning them across the two languages is a crucial step for translation, bilingual corpora annotation, and linguistic research. This page surveys the main typological differences, alignment strategies, and practical guidelines for working with EnglishFrench VP pairs. Both languages convey tense, aspect, mood, voice, and modality within the verb phrase, but the surface order and the distribution of auxiliaries differ. While the canonical order appears similar, French often places adverbial pronouns before the verb and uses a larger set of clitic pronouns that occupy a fixed preverbal slot. Both languages employ auxiliary verbs be (English) / tre (French) and have (English) / avoir (French) to form perfective aspects. However, French also uses tre as the auxiliary for many intransitive verbs, especially verbs of motion and reflexive constructions. English passive uses be + past participle. French passive uses tre + past participle and agrees in gender and number. Identify the minimal VP constituent in each language and align them regardless of internal word order. This works well for parallel corpora where tokenlevel alignment is not required. Map each element (auxiliary, main verb, modal, negation particles, clitics) to its counterpart, inserting Align VPs based on the roles they encode (Agent, Patient, Experiencer, etc.). This abstracts away from syntactic divergence and is valuable for downstream tasks like AMR or predicateargument extraction. Combine constituentbased alignment for highconfidence pairs (e.g., simple present tense) with wordlevel alignment for complex constructions (passives, reflexives). Machinelearning models can be trained to select the appropriate strategy per sentence. Example annotation: Modern NLP pipelines can extract VPs using dependency parsing. Below is a typical workflow: Evaluation metrics such as Alignment Error Rate (AER) and Span F1 can assess the quality of the extracted alignments. These resources provide annotated data, lexical information, and baseline models useful for building robust EnglishFrench VP alignment systems.EnglishFrench Verb Phrase Alignment
1. Structural Overview
1.1 Basic word order
1.2 Auxiliaries and compound tenses
She has arrived.
French:
Elle est arrive. 1.3 Passive voice
The book was written by the author.
French:
Le livre a t crit par lauteur. 2. Common Alignment Challenges
3. Alignment Strategies
3.1 Constituentbased alignment
3.2 Wordlevel alignment with reordering
NULL where no direct equivalent exists. Tools such as GIZA++ or fast_align can be trained with specially crafted alignment templates.3.3 Semanticrole alignment
3.4 Hybrid approach
4. Practical Guidelines for Manual Annotation
FR: Je ne mange pas
Alignment notes:
English VP: [am] [not] [eating] (aux + neg + main verb)
French VP: [ne] [mange] [pas] (negation bracketing the verb)
Mapping: am NULL, not ne pas, eating mange 5. Automatic Extraction Techniques
aux, aux:pass, neg, compound:prt, and obj relations linked to the main verb (root).6. Resources and Further Reading
