I have the problem to get the style.
look, I have a content:
1. 一级标题............................1
1.1. 二级标题........................1
1.1.1. 三级标题...............1
1.2. 二级标题........................2
2. 一级标题............................2
3. 一级标题............................3
4. 一级标题............................4
5. 一级标题............................5
and what exactly I wan to do is check the first line space of each P.
I know there is a pStyle in the pPr.
- Code: Select all
<w:p w:rsidR="00706525" w:rsidRDefault="00706525">
<w:pPr>
<w:pStyle w:val="20" />
<w:tabs>
<w:tab w:val="left" w:pos="1050" />
<w:tab w:val="right" w:leader="dot"
w:pos="8296" />
</w:tabs>
<w:rPr>
<w:noProof />
</w:rPr>
</w:pPr>
<w:hyperlink w:anchor="_Toc235354801"
w:history="1">
<w:r w:rsidRPr="004D3C0A">
<w:rPr>
<w:rStyle w:val="a5" />
<w:noProof />
</w:rPr>
should I go to the "word/stylex.xml" ??
Or should I find that in
- Code: Select all
<w:pPr>
<w:tabs>
<w:tab w:val="center" w:pos="4153"/>
<w:tab w:val="right" w:pos="8306"/>
</w:tabs>
<w:snapToGrid w:val="0"/>
<w:jc w:val="left"/>
</w:pPr>
? the tab
I still can read the content of stylex.xml. thanks so much for your attention.