调用stanfordcoreNLP进行自然语言处理时,输入的句子为:If D, then the following conditions shall hold: 1) A. 2) B. 3) C. 然后进行解析,得到的语法分析树漏掉了2)和3)的内容,for循环也只执行了这样一次。请问这是什么原因,该怎么解决sentences = parser.raw_parse(text)for sentence in sentences:sentence.draw()