如何找出 OOXML 中的段落使用的字体系列?

How to find out what font family is used by a paragraph in OOXML?

假设将特定样式应用于段落。我想找出样式的字体系列是什么。我尝试在 docx 中打开 styles.xml 文件。我找不到很多样式的 w:ascii 属性集。例如,考虑样式 Heading1。这种风格对应的OOXML是

<w:style w:type="paragraph" w:styleId="Heading1">
    <w:name w:val="heading 1"/>
    <w:basedOn w:val="Normal"/>
    <w:next w:val="Normal"/>
    <w:link w:val="Heading1Char"/>
    <w:uiPriority w:val="9"/>
    <w:qFormat/>
    <w:rsid w:val="00FB3E81"/>
    <w:pPr>
        <w:keepNext/>
        <w:keepLines/>
        <w:spacing w:before="240"/>
        <w:outlineLvl w:val="0"/>
    </w:pPr>
    <w:rPr>
        <w:rFonts w:asciiTheme="majorHAnsi" w:eastAsiaTheme="majorEastAsia" w:hAnsiTheme="majorHAnsi" w:cstheme="majorBidi"/>
        <w:color w:val="2E74B5" w:themeColor="accent1" w:themeShade="BF"/>
        <w:sz w:val="32"/>
        <w:szCs w:val="32"/>
    </w:rPr>
</w:style>

w:rFonts 标签中没有 w:ascii 属性来提取字体系列。此样式的字体系列详细信息存储在哪里以及如何提取它以用于 java 应用程序?我正在使用 Apache POI 来解析文档。

检查 w:rFonts。在您引用的示例中, w:asciiTheme="majorHAnsi" 告诉您它正在使用主题中定义为 majorHAnsi 的字体,这是用于标题的主题字体。所以你需要确定主题文件中指定的字体系列,这很可能是 theme1.xml

编辑: 在主题文件中,您会找到 fontScheme,它定义了两种字体,majorFontminorFont。这些对应于 majorHAnsiminorHAnsi 如果正在使用的主题是 Office 附带的标准主题之一,则可能有许多条目取决于正在使用的语言脚本。

        <a:fontScheme name="Office Theme">
        <a:majorFont>
            <a:latin typeface="Calibri Light" panose="020F0302020204030204" />
            <a:ea typeface="" />
            <a:cs typeface="" />
            <a:font script="Jpan" typeface="游ゴシック Light" />
            <a:font script="Hang" typeface="맑은 고딕" />
            <a:font script="Hans" typeface="等线 Light" />
            <a:font script="Hant" typeface="新細明體" />
            <a:font script="Arab" typeface="Times New Roman" />
            <a:font script="Hebr" typeface="Times New Roman" />
            <a:font script="Thai" typeface="Angsana New" />
            <a:font script="Ethi" typeface="Nyala" />
            <a:font script="Beng" typeface="Vrinda" />
            <a:font script="Gujr" typeface="Shruti" />
            <a:font script="Khmr" typeface="MoolBoran" />
            <a:font script="Knda" typeface="Tunga" />
            <a:font script="Guru" typeface="Raavi" />
            <a:font script="Cans" typeface="Euphemia" />
            <a:font script="Cher" typeface="Plantagenet Cherokee" />
            <a:font script="Yiii" typeface="Microsoft Yi Baiti" />
            <a:font script="Tibt" typeface="Microsoft Himalaya" />
            <a:font script="Thaa" typeface="MV Boli" />
            <a:font script="Deva" typeface="Mangal" />
            <a:font script="Telu" typeface="Gautami" />
            <a:font script="Taml" typeface="Latha" />
            <a:font script="Syrc" typeface="Estrangelo Edessa" />
            <a:font script="Orya" typeface="Kalinga" />
            <a:font script="Mlym" typeface="Kartika" />
            <a:font script="Laoo" typeface="DokChampa" />
            <a:font script="Sinh" typeface="Iskoola Pota" />
            <a:font script="Mong" typeface="Mongolian Baiti" />
            <a:font script="Viet" typeface="Times New Roman" />
            <a:font script="Uigh" typeface="Microsoft Uighur" />
            <a:font script="Geor" typeface="Sylfaen" />
        </a:majorFont>
        <a:minorFont>
            <a:latin typeface="Calibri" panose="020F0502020204030204" />
            <a:ea typeface="" />
            <a:cs typeface="" />
            <a:font script="Jpan" typeface="游ゴシック" />
            <a:font script="Hang" typeface="맑은 고딕" />
            <a:font script="Hans" typeface="等线" />
            <a:font script="Hant" typeface="新細明體" />
            <a:font script="Arab" typeface="Arial" />
            <a:font script="Hebr" typeface="Arial" />
            <a:font script="Thai" typeface="Cordia New" />
            <a:font script="Ethi" typeface="Nyala" />
            <a:font script="Beng" typeface="Vrinda" />
            <a:font script="Gujr" typeface="Shruti" />
            <a:font script="Khmr" typeface="DaunPenh" />
            <a:font script="Knda" typeface="Tunga" />
            <a:font script="Guru" typeface="Raavi" />
            <a:font script="Cans" typeface="Euphemia" />
            <a:font script="Cher" typeface="Plantagenet Cherokee" />
            <a:font script="Yiii" typeface="Microsoft Yi Baiti" />
            <a:font script="Tibt" typeface="Microsoft Himalaya" />
            <a:font script="Thaa" typeface="MV Boli" />
            <a:font script="Deva" typeface="Mangal" />
            <a:font script="Telu" typeface="Gautami" />
            <a:font script="Taml" typeface="Latha" />
            <a:font script="Syrc" typeface="Estrangelo Edessa" />
            <a:font script="Orya" typeface="Kalinga" />
            <a:font script="Mlym" typeface="Kartika" />
            <a:font script="Laoo" typeface="DokChampa" />
            <a:font script="Sinh" typeface="Iskoola Pota" />
            <a:font script="Mong" typeface="Mongolian Baiti" />
            <a:font script="Viet" typeface="Arial" />
            <a:font script="Uigh" typeface="Microsoft Uighur" />
            <a:font script="Geor" typeface="Sylfaen" />
        </a:minorFont>
    </a:fontScheme>