Aspose.Words for Java word转html,表格中的文字显示不全

转换结果、原文件、转换前后对比图见附件。 使用Aspose.Words for Java 20.10版本。
word表格中的文字显示不全.zip (478.0 KB)

转换代码如下:
Document document = new Document(sourceFileName);
HtmlFixedSaveOptions options = new HtmlFixedSaveOptions();
options.setUseTargetMachineFonts(false);
options.setUseHighQualityRendering(true);
options.setEncoding(Charset.forName(“UTF-8”));
options.setExportEmbeddedFonts(true);
options.setShowPageBorder(true);
document.acceptAllRevisions();
document.save(targetFileName, options);

@xiangma,

在使用Aspose.Words for Java的最新许可版本(20.10)进行初始测试之后,我们最终无法重现此问题。我已将DOCX Word文档转换为HTML_Fixed格式,并将其附加在此处以供参考。

您在上述HTML中看到相同的问题吗?