0
val lexicon: Lexicon = Lexicon.getDefaultLexicon()
val realised: Realiser = Realiser(lexicon)
val word: WordElement = lexicon.getWord("I", LexicalCategory.PRONOUN)
val inflected = InflectedWordElement(word)
inflected.setFeature(Feature.PERSON, Person.THIRD)
inflected.setFeature(Feature.NUMBER, NumberAgreement.PLURAL)
realised.realise(inflected).realisation

我想得到“他们”,但我得到了“他们”。我试图找到一些特征“SUBJECT”或“OBJECT”,但我只找到了“POSSESIVE”和“REFLEXIVE”。我怎样才能澄清我的条件只根据主语代词?

4

1 回答 1

0
inflected.setFeature(
    InternalFeature.DISCOURSE_FUNCTION,
    DiscourseFunction.SUBJECT
)

最后一个之前的这个字符串解决了我的问题。不幸的是,文档不包括它。

于 2022-01-09T06:57:39.817 回答