将 Word 文件保存为 Html 会降低方程式的质量

将 Word 文件保存为 Html 会降低方程式的质量

我有一个 Word 文件,我想将其转换为 html。但是,所有方程式都转换为 gif,质量变得非常低。问题是系统会将所有这些东西转换为 gif。事实上,当我将 Word 文件转换为 html 时,我得到了两个部分:完整的 html 文件(我可以查看)和一个文件夹,其中包含所有图像(png 和 gif)、一个 powerpoint 文件、一个 html 标题和一些 xml 文件。第一个 xml 文件具有以下结构:

<xml xmlns:o="urn:schemas-microsoft-com:office:office">
<o:MainFile HRef="../prova.htm"/>
<o:File HRef="item0247.xml"/>
<o:File HRef="props0248.xml"/>
<o:File HRef="themedata.thmx"/>
<o:File HRef="colorschememapping.xml"/>
<o:File HRef="image001.png"/>
<o:File HRef="image002.gif"/>

并对所有图像继续进行(image001 和 image002 是同一幅图像)。

第二:

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<a:clrMap xmlns:a="http://schemas.openxmlformats.org/drawingml/2006/main"             
bg1="lt1" tx1="dk1" bg2="lt2" tx2="dk2" accent1="accent1" accent2="accent2"     
accent3="accent3" accent4="accent4" accent5="accent5" accent6="accent6" 
hlink="hlink" folHlink="folHlink"/>

第三:

<b:Sources SelectedStyle="\APA.XSL" StyleName="APA" 
xmlns:b="http://schemas.openxmlformats.org/officeDocument/2006/bibliography" 
xmlns="http://schemas.openxmlformats.org/officeDocument/2006/bibliography">
</b:Sources>

第四:

<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<ds:datastoreItem ds:itemID="{DE80F531-98CE-45B7-9417-C0B0EB9AEA41}"     
xmlns:ds="http://schemas.openxmlformats.org/officeDocument/2006/customXml">    
<ds:schemaRefs><ds:schemaRef     

ds:uri="http://schemas.openxmlformats.org/officeDocument/2006/bibliography"/>
</ds:schemaRefs></ds:datastoreItem>

这是 png 格式的方程式(事实上,正如你所见,没有任何问题)

enter image description here

这是和 gif 相同的公式

enter image description here

这些是 Word 2007 选项: enter image description here enter image description here enter image description here enter image description here enter image description here enter image description here

那么我该如何解决这个问题呢?

答案1

尝试这个 :

  • 在 Word 中,在文件/选项/高级/图像大小和质量下,选中“不压缩文件中的图像”,并将默认输出更改为高保真。

  • 在另存为对话框、工具/Web 选项/图片中,选择更高质量的屏幕尺寸(例如 1920x1200),并将每英寸像素设置为 120 ppi。

相关内容