This commit is contained in:
csh 2023-02-13 15:10:31 +08:00
parent 3af1d35304
commit 780d9ecb6d
49 changed files with 107 additions and 1017 deletions

View File

@ -257,8 +257,8 @@ Begin
_AddTitle(docx, '插入图像案例', 2);
picture := TOfficeObj('TPicture');
picture.Descr := '插入图像案例';
readfile(rwbinary(), '', docx.GetPath() + '\\funcext\\TSOffice\\template\\tinysoft.gif', 0, 1024*1024, data);
picture.Image := data;
picture.Image := TOfficeTemplate('tinysoft.gif',true);
if ifnil(picture.Image) then return;
p := docx.AddPicture(picture, -1);
//添加图像外边框
p.Format.Ln.SolidFill.SchemeClr.Val := 'accent1';
@ -1125,10 +1125,8 @@ Begin
_PrintMsg('FAQ');
_AddTitle(docx, '附注二FAQ', 1); //附注FAQ标题
[err,fh] := io_open( _ReplaceFileName(docx.GetPath() + '\\funcext\\TSOffice\\template\\faq.txt') );
if err then return t;
[err, data] := io_read(fh);
io_close(fh);
data := TOfficeTemplate('faq.txt');
if ifnil(data) then return;
lines := str2array(string(data), '\n');
numId := docx.NumberingObject().NumberId('bullet', 1); //项目编号
for i:=0 to length(lines)-1 do Begin

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -1,4 +1,4 @@
// Version 1.1.5
// Version 1.1.6
Function TOfficeObj(n);
Begin

File diff suppressed because one or more lines are too long

View File

@ -1,4 +1,4 @@
// Version 1.1.5
// Version 1.1.6
Type TSDocxFile = Class
///Version: V1.0 2022-09-20
@ -49,12 +49,12 @@ Type TSDocxFile = Class
///返回:[err, info]
Function NewFile();
Begin
path := GetPath();
if path[1] = '/' then
defaultFileName := path + '/funcext/TSOffice/template/default.docx';
else
defaultFileName := path + '\\funcext\\TSOffice\\template\\default.docx';
return OpenFile('', defaultFileName);
def := TOfficeTemplate('default.docx', true);
[err, errmsg] := zipfile_.LoadFromMem(def);
if err=0 then Begin
document_ := new docxDocument(zipfile_);
End;
return array(err, errmsg);
End;
///保存文件
@ -107,7 +107,7 @@ Type TSDocxFile = Class
styleName := level = 0 ? 'Title' : 'Heading ' $ level;
style := StyleObject().GetStyle(styleName);
if not ifObj(style) and ifInt(level) and level >= 0 and level <= 9 then
style := StyleObject().AddDefaultStyle(GetPath(), styleName);
style := StyleObject().AddDefaultStyle(styleName);
return document_.Body().AddHeading(title, getPosNode(posOpt), ifObj(style) ? style.StyleId : nil);
End;
@ -438,6 +438,8 @@ Type TSDocxFile = Class
ps := Paragraphs();
for i:=0 to length(ps)-1 do Begin
node := class(TSXml).GetNode(ps[i].node_, 'w:r/w:drawing/wp:inline/wp:docPr');
if not ifObj(node) then
node := class(TSXml).GetNode(ps[i].node_, 'w:r/w:pict/v:shape/v:textbox/w:txbxContent/wp:docPr');
if not ifObj(node) then
node := class(TSXml).GetNode(ps[i].node_, 'w:r/mc:AlternateContent/mc:Choice/w:drawing/wp:anchor/wp:docPr');
if ifObj(node) then Begin

View File

@ -1,4 +1,4 @@
// Version 1.1.5
// Version 1.1.6
Type TSExcelFile = Class
///Version: V1.0 2022-08-08
@ -52,12 +52,14 @@ Type TSExcelFile = Class
///返回: [err, info]
Function NewFile();
Begin
path := ExtractFileDir(ExtractFileDir(PluginPath()));
if path[1] = '/' then
defaultFileName := path + '/funcext/TSOffice/template/default.xlsx';
else
defaultFileName := path + '\\funcext\\TSOffice\\template\\default.xlsx';
return OpenFile('', defaultFileName);
def := TOfficeTemplate('default.xlsx', true);
[err, errmsg] := zipfile_.LoadFromMem(def);
if err = 0 then
begin
workbook_ := new xlsxWorkBook(zipfile_);
workbook_.Load();
end
return array(err, errmsg);
End;
///保存文件

View File

@ -150,25 +150,21 @@ Type TDocxStyles = Class
///插入缺省的段落样式Title、Heading1-9
///返回TDocxStyle对象
Function AddDefaultStyle(path, Name);
Function AddDefaultStyle(Name);
Begin
styleId := AnsiReplaceText(Name, ' ', '');
charId := StyleId + 'Char';
if path[1] = '/' then Begin
styleFname := path + '/funcext/TSOffice/template/wStyle' + styleId + '.xml';
cStyleFname := path + '/funcext/TSOffice/template/wStyle/' + charId + '.xml';
End
else Begin
styleFname := path + '\\funcext\\TSOffice\\template\\wStyle\\' + styleId + '.xml';
cStyleFname := path + '\\funcext\\TSOffice\\template\\wStyle\\' + charId + '.xml';
End;
if not ReadFile(rwraw(), '', styleFname, 0, 100 * 1024, xmlData) then
return nil;
styleFname := 'wStyle/' + styleId + '.xml';
cStyleFname := 'wStyle/' + charId + '.xml';
xmlData := TOfficeTemplate(styleFname);
if ifnil(xmlData) then
return xmlData;
o := AddStyleByInnerXml(styleId, xmlData);
charStyle := idMap_[charId];
if not ifObj(charStyle) then Begin
if ReadFile(rwraw(), '', cStyleFname, 0, 100 * 1024, xmlData) then Begin
xmlData := TOfficeTemplate(cStyleFname);
if ifstring(xmlData) then Begin
AddStyleByInnerXml(charId, xmlData);
End;
End;

View File

@ -5,12 +5,8 @@ Type TNumbering = Class
docx_ := docx;
numberingXml_ := docx.Zip().Get('word/numbering.xml');
if not ifObj(numberingXml_) then Begin
path := docx.GetPath();
if path[1] = '/' then
fName := path + '/funcext/TSOffice/template/template/numbering/numbering.xml';
else
fName := path + '\\funcext\\TSOffice\\template\\numbering\\numbering.xml';
if ReadFile(rwraw(), '', fName, 0, 100 * 1024, xmlData) then Begin
xmlData := TOfficeTemplate('numbering/numbering.xml');
if ifString(xmlData) then Begin
docx.Zip().Add('word/numbering.xml', xmlData);
rels := 'word/_rels/document.xml.rels';
relsObj := docx.Zip().Get(rels);
@ -173,14 +169,8 @@ Type TNumbering = Class
//系统默认支持的项目编号样式
Function AddDefaultStyle(Name);
Begin
path := docx_.GetPath();
if path[1] = '/' then Begin
styleFname := path + '/funcext/TSOffice/template/numbering/' + name + '.xml';
End
else Begin
styleFname := path + '\\funcext\\TSOffice\\template\\numbering\\' + name + '.xml';
End;
if not ReadFile(rwraw(), '', styleFname, 0, 100 * 1024, xmlData) then
xmlData := TOfficeTemplate('numbering/' + name + '.xml');
if not ifString(xmlData) then
return nil;
return AddStyleByInnerXml(xmlData);
End;

View File

@ -1,53 +0,0 @@
*如何读取属性值?
对象的Value()函数可以获取属性值,例如:
★读取段落对象文字大小:
size := paragraph.Font.Value('Size');
★读取段落对象StyleID段落格式ID
styleId := paragraph.Format.Value('StyleId');
★读取段落对象numId数字编号ID
numId := paragraph.Format.NumPr.Value('numId');
*如何修改属性值?
Apply()函数可以修改属性值,例如:
★修改段落对象文字大小:
paragraph.Font.Size := 32;
paragraph.Apply();
*如何设置段落的项目编号?
★推荐先获取文档中已有的项目符号numId再设置新段落的项目编号
numId := oldParagraph.Format.NumPr.Value('numId'); //获取已有段落项目编号ID
newParagraph.Format.NumPr.ID := numID; //设置新段落numID
newParagraph.Format.NumPr.Level := numID; //设置项目编号级别
newParagraph.Apply();
★docx.Numberings()可以获取文档中已有的TNumberId对象列表但编程的角度理解项目编码样式比较麻烦。
★docx.NumberingObject()TNumbering对象可以用户自己插入项目编码innerXml串或自定义TNumberId对象
★系统默认提供的样式:
numId := docx.NumberingObject().NumberId('SingleLevel', 'decimal'); //数字型一级样式[如1、]
numId := docx.NumberingObject().NumberId('SingleLevel', 'chinese'); //中文型一级样式[如:一、]
numId := docx.NumberingObject().NumberId('multilevel', 'decimal'); //数字型多级样式[如1.1.1]
numId := docx.NumberingObject().NumberId('bullet', index); //项目编号index取值0-6
*如何设置段落的样式?
★推荐先获取文档中已有的段落样式;再设置新段落的样式:
styleId := oldParagraph.Format.Value('StyleId'); //获取已有段落StyleId
newParagraph.Format.StyleId := StyleId; //设置新段落StyleId
newParagraph.Apply();
★docx.StyleObject()TDocxStyles对象可以用户自己插入段落样式innerXml串或自定义TDocxStyle对象
*如何设置字符集(中文支持)?
★用户的脚本可能是UFT8格式或可能是GBK码格式系统提供API自动设置当前字符集环境
TOfficeApi().CodePage('中文'); //系统检测当前的环境字符集
...
p.Run.SetText('系统可以自动识别这里的中文字符集utf8或gbk');
★不设置默认当前字符集为UTF8
*报告模板功能TDocxFile::ExecInnerTSLWord中执行[TSL]...[/TSL]时的字符集是啥?
是GBK。
*TDocxFile::NewFile()创建的缺省word文档格式说明
1.5倍行距、默认5号字体、宋体。
*缺省文档格式不是我想要的,怎么办?
★用户可以利用word或wps生成自己想要格式的空文档调用TDocxFile::OpenFile()打开即可。
★用户甚至可以设计好文档封面、目录、页脚、页眉再调用TDocxFile::OpenFile()打开。
★用户可以在word文档中内嵌TSL代码调用TDocxFile::ExecInnerTSL()操作word文档。

View File

@ -1,17 +0,0 @@
<w:abstractNum w:abstractNumId="0">
<w:nsid w:val="72D8F0C1" />
<w:multiLevelType w:val="singleLevel" />
<w:tmpl w:val="72D8F0C1" />
<w:lvl w:ilvl="0" w:tentative="0">
<w:start w:val="1" />
<w:numFmt w:val="bullet" />
<w:lvlText w:val="" />
<w:lvlJc w:val="left" />
<w:pPr>
<w:ind w:left="420" w:hanging="420" />
</w:pPr>
<w:rPr>
<w:rFonts w:hint="default" w:ascii="Wingdings" w:hAnsi="Wingdings" />
</w:rPr>
</w:lvl>
</w:abstractNum>

View File

@ -1,17 +0,0 @@
<w:abstractNum w:abstractNumId="1">
<w:nsid w:val="72D8F0C2" />
<w:multiLevelType w:val="singleLevel" />
<w:tmpl w:val="72D8F0C2" />
<w:lvl w:ilvl="0" w:tentative="0">
<w:start w:val="1" />
<w:numFmt w:val="bullet" />
<w:lvlText w:val="" />
<w:lvlJc w:val="left" />
<w:pPr>
<w:ind w:left="420" w:hanging="420" />
</w:pPr>
<w:rPr>
<w:rFonts w:hint="default" w:ascii="Wingdings" w:hAnsi="Wingdings" />
</w:rPr>
</w:lvl>
</w:abstractNum>

View File

@ -1,17 +0,0 @@
<w:abstractNum w:abstractNumId="2">
<w:nsid w:val="72D8F0C3" />
<w:multiLevelType w:val="singleLevel" />
<w:tmpl w:val="72D8F0C3" />
<w:lvl w:ilvl="0" w:tentative="0">
<w:start w:val="1" />
<w:numFmt w:val="bullet" />
<w:lvlText w:val="" />
<w:lvlJc w:val="left" />
<w:pPr>
<w:ind w:left="420" w:hanging="420" />
</w:pPr>
<w:rPr>
<w:rFonts w:hint="default" w:ascii="Wingdings" w:hAnsi="Wingdings" />
</w:rPr>
</w:lvl>
</w:abstractNum>

View File

@ -1,17 +0,0 @@
<w:abstractNum w:abstractNumId="3">
<w:nsid w:val="72D8F0C4" />
<w:multiLevelType w:val="singleLevel" />
<w:tmpl w:val="72D8F0C4" />
<w:lvl w:ilvl="0" w:tentative="0">
<w:start w:val="1" />
<w:numFmt w:val="bullet" />
<w:lvlText w:val="" />
<w:lvlJc w:val="left" />
<w:pPr>
<w:ind w:left="420" w:hanging="420" />
</w:pPr>
<w:rPr>
<w:rFonts w:hint="default" w:ascii="Wingdings" w:hAnsi="Wingdings" />
</w:rPr>
</w:lvl>
</w:abstractNum>

View File

@ -1,17 +0,0 @@
<w:abstractNum w:abstractNumId="4">
<w:nsid w:val="72D8F0C5" />
<w:multiLevelType w:val="singleLevel" />
<w:tmpl w:val="72D8F0C5" />
<w:lvl w:ilvl="0" w:tentative="0">
<w:start w:val="1" />
<w:numFmt w:val="bullet" />
<w:lvlText w:val="" />
<w:lvlJc w:val="left" />
<w:pPr>
<w:ind w:left="420" w:hanging="420" />
</w:pPr>
<w:rPr>
<w:rFonts w:hint="default" w:ascii="Wingdings" w:hAnsi="Wingdings" />
</w:rPr>
</w:lvl>
</w:abstractNum>

View File

@ -1,17 +0,0 @@
<w:abstractNum w:abstractNumId="5">
<w:nsid w:val="72D8F0C6" />
<w:multiLevelType w:val="singleLevel" />
<w:tmpl w:val="72D8F0C6" />
<w:lvl w:ilvl="0" w:tentative="0">
<w:start w:val="1" />
<w:numFmt w:val="bullet" />
<w:lvlText w:val="" />
<w:lvlJc w:val="left" />
<w:pPr>
<w:ind w:left="420" w:hanging="420" />
</w:pPr>
<w:rPr>
<w:rFonts w:hint="default" w:ascii="Wingdings" w:hAnsi="Wingdings" />
</w:rPr>
</w:lvl>
</w:abstractNum>

View File

@ -1,17 +0,0 @@
<w:abstractNum w:abstractNumId="6">
<w:nsid w:val="72D8F0C7" />
<w:multiLevelType w:val="singleLevel" />
<w:tmpl w:val="72D8F0C7" />
<w:lvl w:ilvl="0" w:tentative="0">
<w:start w:val="1" />
<w:numFmt w:val="bullet" />
<w:lvlText w:val="" />
<w:lvlJc w:val="left" />
<w:pPr>
<w:ind w:left="420" w:hanging="420" />
</w:pPr>
<w:rPr>
<w:rFonts w:hint="default" w:ascii="Wingdings" w:hAnsi="Wingdings" />
</w:rPr>
</w:lvl>
</w:abstractNum>

View File

@ -1,113 +0,0 @@
<w:abstractNum w:abstractNumId="7" w15:restartNumberingAfterBreak="0">
<w:nsid w:val="72D8F0C9" />
<w:multiLevelType w:val="multilevel" />
<w:tmpl w:val="72D8F0C9" />
<w:lvl w:ilvl="0" w:tentative="0">
<w:start w:val="1" />
<w:numFmt w:val="decimal" />
<w:lvlText w:val="%1." />
<w:lvlJc w:val="left" />
<w:pPr>
<w:ind w:left="425" w:hanging="425" />
</w:pPr>
<w:rPr>
<w:rFonts w:hint="default" />
</w:rPr>
</w:lvl>
<w:lvl w:ilvl="1" w:tentative="0">
<w:start w:val="1" />
<w:numFmt w:val="decimal" />
<w:lvlText w:val="%1.%2." />
<w:lvlJc w:val="left" />
<w:pPr>
<w:ind w:left="567" w:hanging="567" />
</w:pPr>
<w:rPr>
<w:rFonts w:hint="default" w:ascii="宋体" w:hAnsi="宋体" w:eastAsia="宋体" w:cs="宋体" />
</w:rPr>
</w:lvl>
<w:lvl w:ilvl="2" w:tentative="0">
<w:start w:val="1" />
<w:numFmt w:val="decimal" />
<w:lvlText w:val="%1.%2.%3." />
<w:lvlJc w:val="left" />
<w:pPr>
<w:ind w:left="709" w:hanging="709" />
</w:pPr>
<w:rPr>
<w:rFonts w:hint="default" />
</w:rPr>
</w:lvl>
<w:lvl w:ilvl="3" w:tentative="0">
<w:start w:val="1" />
<w:numFmt w:val="decimal" />
<w:lvlText w:val="%1.%2.%3.%4." />
<w:lvlJc w:val="left" />
<w:pPr>
<w:ind w:left="850" w:hanging="850" />
</w:pPr>
<w:rPr>
<w:rFonts w:hint="default" />
</w:rPr>
</w:lvl>
<w:lvl w:ilvl="4" w:tentative="0">
<w:start w:val="1" />
<w:numFmt w:val="decimal" />
<w:lvlText w:val="%1.%2.%3.%4.%5." />
<w:lvlJc w:val="left" />
<w:pPr>
<w:ind w:left="991" w:hanging="991" />
</w:pPr>
<w:rPr>
<w:rFonts w:hint="default" />
</w:rPr>
</w:lvl>
<w:lvl w:ilvl="5" w:tentative="0">
<w:start w:val="1" />
<w:numFmt w:val="decimal" />
<w:lvlText w:val="%1.%2.%3.%4.%5.%6." />
<w:lvlJc w:val="left" />
<w:pPr>
<w:ind w:left="1134" w:hanging="1134" />
</w:pPr>
<w:rPr>
<w:rFonts w:hint="default" />
</w:rPr>
</w:lvl>
<w:lvl w:ilvl="6" w:tentative="0">
<w:start w:val="1" />
<w:numFmt w:val="decimal" />
<w:lvlText w:val="%1.%2.%3.%4.%5.%6.%7." />
<w:lvlJc w:val="left" />
<w:pPr>
<w:ind w:left="1275" w:hanging="1275" />
</w:pPr>
<w:rPr>
<w:rFonts w:hint="default" />
</w:rPr>
</w:lvl>
<w:lvl w:ilvl="7" w:tentative="0">
<w:start w:val="1" />
<w:numFmt w:val="decimal" />
<w:lvlText w:val="%1.%2.%3.%4.%5.%6.%7.%8." />
<w:lvlJc w:val="left" />
<w:pPr>
<w:ind w:left="1418" w:hanging="1418" />
</w:pPr>
<w:rPr>
<w:rFonts w:hint="default" />
</w:rPr>
</w:lvl>
<w:lvl w:ilvl="8" w:tentative="0">
<w:start w:val="1" />
<w:numFmt w:val="decimal" />
<w:lvlText w:val="%1.%2.%3.%4.%5.%6.%7.%8.%9." />
<w:lvlJc w:val="left" />
<w:pPr>
<w:ind w:left="1558" w:hanging="1558" />
</w:pPr>
<w:rPr>
<w:rFonts w:hint="default" />
</w:rPr>
</w:lvl>
</w:abstractNum>

View File

@ -1,271 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<w:numbering xmlns:wpc="http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas" xmlns:cx="http://schemas.microsoft.com/office/drawing/2014/chartex" xmlns:cx1="http://schemas.microsoft.com/office/drawing/2015/9/8/chartex" xmlns:cx2="http://schemas.microsoft.com/office/drawing/2015/10/21/chartex" xmlns:cx3="http://schemas.microsoft.com/office/drawing/2016/5/9/chartex" xmlns:cx4="http://schemas.microsoft.com/office/drawing/2016/5/10/chartex" xmlns:cx5="http://schemas.microsoft.com/office/drawing/2016/5/11/chartex" xmlns:cx6="http://schemas.microsoft.com/office/drawing/2016/5/12/chartex" xmlns:cx7="http://schemas.microsoft.com/office/drawing/2016/5/13/chartex" xmlns:cx8="http://schemas.microsoft.com/office/drawing/2016/5/14/chartex" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:aink="http://schemas.microsoft.com/office/drawing/2016/ink" xmlns:am3d="http://schemas.microsoft.com/office/drawing/2017/model3d" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:oel="http://schemas.microsoft.com/office/2019/extlst" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:wp14="http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing" xmlns:wp="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing" xmlns:w10="urn:schemas-microsoft-com:office:word" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml" xmlns:w16cex="http://schemas.microsoft.com/office/word/2018/wordml/cex" xmlns:w16cid="http://schemas.microsoft.com/office/word/2016/wordml/cid" xmlns:w16="http://schemas.microsoft.com/office/word/2018/wordml" xmlns:w16sdtdh="http://schemas.microsoft.com/office/word/2020/wordml/sdtdatahash" xmlns:w16se="http://schemas.microsoft.com/office/word/2015/wordml/symex" xmlns:wpg="http://schemas.microsoft.com/office/word/2010/wordprocessingGroup" xmlns:wpi="http://schemas.microsoft.com/office/word/2010/wordprocessingInk" xmlns:wne="http://schemas.microsoft.com/office/word/2006/wordml" xmlns:wps="http://schemas.microsoft.com/office/word/2010/wordprocessingShape" mc:Ignorable="w14 w15 w16se w16cid w16 w16cex w16sdtdh wp14">
<w:abstractNum w:abstractNumId="0">
<w:nsid w:val="72D8F0C1"/>
<w:multiLevelType w:val="singleLevel"/>
<w:tmpl w:val="72D8F0C1"/>
<w:lvl w:ilvl="0" w:tentative="0">
<w:start w:val="1"/>
<w:numFmt w:val="bullet"/>
<w:lvlText w:val=""/>
<w:lvlJc w:val="left"/>
<w:pPr>
<w:ind w:left="420" w:hanging="420"/>
</w:pPr>
<w:rPr>
<w:rFonts w:hint="default" w:ascii="Wingdings" w:hAnsi="Wingdings"/>
</w:rPr>
</w:lvl>
</w:abstractNum>
<w:abstractNum w:abstractNumId="1">
<w:nsid w:val="72D8F0C2"/>
<w:multiLevelType w:val="singleLevel"/>
<w:tmpl w:val="72D8F0C2"/>
<w:lvl w:ilvl="0" w:tentative="0">
<w:start w:val="1"/>
<w:numFmt w:val="bullet"/>
<w:lvlText w:val=""/>
<w:lvlJc w:val="left"/>
<w:pPr>
<w:ind w:left="420" w:hanging="420"/>
</w:pPr>
<w:rPr>
<w:rFonts w:hint="default" w:ascii="Wingdings" w:hAnsi="Wingdings"/>
</w:rPr>
</w:lvl>
</w:abstractNum>
<w:abstractNum w:abstractNumId="2">
<w:nsid w:val="72D8F0C3"/>
<w:multiLevelType w:val="singleLevel"/>
<w:tmpl w:val="72D8F0C3"/>
<w:lvl w:ilvl="0" w:tentative="0">
<w:start w:val="1"/>
<w:numFmt w:val="bullet"/>
<w:lvlText w:val=""/>
<w:lvlJc w:val="left"/>
<w:pPr>
<w:ind w:left="420" w:hanging="420"/>
</w:pPr>
<w:rPr>
<w:rFonts w:hint="default" w:ascii="Wingdings" w:hAnsi="Wingdings"/>
</w:rPr>
</w:lvl>
</w:abstractNum>
<w:abstractNum w:abstractNumId="3">
<w:nsid w:val="72D8F0C4"/>
<w:multiLevelType w:val="singleLevel"/>
<w:tmpl w:val="72D8F0C4"/>
<w:lvl w:ilvl="0" w:tentative="0">
<w:start w:val="1"/>
<w:numFmt w:val="bullet"/>
<w:lvlText w:val=""/>
<w:lvlJc w:val="left"/>
<w:pPr>
<w:ind w:left="420" w:hanging="420"/>
</w:pPr>
<w:rPr>
<w:rFonts w:hint="default" w:ascii="Wingdings" w:hAnsi="Wingdings"/>
</w:rPr>
</w:lvl>
</w:abstractNum>
<w:abstractNum w:abstractNumId="4">
<w:nsid w:val="72D8F0C5"/>
<w:multiLevelType w:val="singleLevel"/>
<w:tmpl w:val="72D8F0C5"/>
<w:lvl w:ilvl="0" w:tentative="0">
<w:start w:val="1"/>
<w:numFmt w:val="bullet"/>
<w:lvlText w:val=""/>
<w:lvlJc w:val="left"/>
<w:pPr>
<w:ind w:left="420" w:hanging="420"/>
</w:pPr>
<w:rPr>
<w:rFonts w:hint="default" w:ascii="Wingdings" w:hAnsi="Wingdings"/>
</w:rPr>
</w:lvl>
</w:abstractNum>
<w:abstractNum w:abstractNumId="5">
<w:nsid w:val="72D8F0C6"/>
<w:multiLevelType w:val="singleLevel"/>
<w:tmpl w:val="72D8F0C6"/>
<w:lvl w:ilvl="0" w:tentative="0">
<w:start w:val="1"/>
<w:numFmt w:val="bullet"/>
<w:lvlText w:val=""/>
<w:lvlJc w:val="left"/>
<w:pPr>
<w:ind w:left="420" w:hanging="420"/>
</w:pPr>
<w:rPr>
<w:rFonts w:hint="default" w:ascii="Wingdings" w:hAnsi="Wingdings"/>
</w:rPr>
</w:lvl>
</w:abstractNum>
<w:abstractNum w:abstractNumId="6">
<w:nsid w:val="72D8F0C7"/>
<w:multiLevelType w:val="singleLevel"/>
<w:tmpl w:val="72D8F0C7"/>
<w:lvl w:ilvl="0" w:tentative="0">
<w:start w:val="1"/>
<w:numFmt w:val="bullet"/>
<w:lvlText w:val=""/>
<w:lvlJc w:val="left"/>
<w:pPr>
<w:ind w:left="420" w:hanging="420"/>
</w:pPr>
<w:rPr>
<w:rFonts w:hint="default" w:ascii="Wingdings" w:hAnsi="Wingdings"/>
</w:rPr>
</w:lvl>
</w:abstractNum>
<w:abstractNum w:abstractNumId="7" w15:restartNumberingAfterBreak="0">
<w:nsid w:val="72D8F0C9"/>
<w:multiLevelType w:val="multilevel"/>
<w:tmpl w:val="72D8F0C9"/>
<w:lvl w:ilvl="0" w:tentative="0">
<w:start w:val="1"/>
<w:numFmt w:val="decimal"/>
<w:lvlText w:val="%1."/>
<w:lvlJc w:val="left"/>
<w:pPr>
<w:ind w:left="425" w:hanging="425"/>
</w:pPr>
<w:rPr>
<w:rFonts w:hint="default"/>
</w:rPr>
</w:lvl>
<w:lvl w:ilvl="1" w:tentative="0">
<w:start w:val="1"/>
<w:numFmt w:val="decimal"/>
<w:lvlText w:val="%1.%2."/>
<w:lvlJc w:val="left"/>
<w:pPr>
<w:ind w:left="850" w:hanging="453"/>
</w:pPr>
<w:rPr>
<w:rFonts w:hint="default"/>
</w:rPr>
</w:lvl>
<w:lvl w:ilvl="2" w:tentative="0">
<w:start w:val="1"/>
<w:numFmt w:val="decimal"/>
<w:lvlText w:val="%1.%2.%3."/>
<w:lvlJc w:val="left"/>
<w:pPr>
<w:ind w:left="1508" w:hanging="708"/>
</w:pPr>
<w:rPr>
<w:rFonts w:hint="default"/>
</w:rPr>
</w:lvl>
<w:lvl w:ilvl="3" w:tentative="0">
<w:start w:val="1"/>
<w:numFmt w:val="decimal"/>
<w:lvlText w:val="%1.%2.%3.%4."/>
<w:lvlJc w:val="left"/>
<w:pPr>
<w:ind w:left="2053" w:hanging="853"/>
</w:pPr>
<w:rPr>
<w:rFonts w:hint="default"/>
</w:rPr>
</w:lvl>
<w:lvl w:ilvl="4" w:tentative="0">
<w:start w:val="1"/>
<w:numFmt w:val="decimal"/>
<w:lvlText w:val="%1.%2.%3.%4.%5."/>
<w:lvlJc w:val="left"/>
<w:pPr>
<w:ind w:left="2495" w:hanging="895"/>
</w:pPr>
<w:rPr>
<w:rFonts w:hint="default"/>
</w:rPr>
</w:lvl>
<w:lvl w:ilvl="5" w:tentative="0">
<w:start w:val="1"/>
<w:numFmt w:val="decimal"/>
<w:lvlText w:val="%1.%2.%3.%4.%5.%6."/>
<w:lvlJc w:val="left"/>
<w:pPr>
<w:ind w:left="3136" w:hanging="1136"/>
</w:pPr>
<w:rPr>
<w:rFonts w:hint="default"/>
</w:rPr>
</w:lvl>
<w:lvl w:ilvl="6" w:tentative="0">
<w:start w:val="1"/>
<w:numFmt w:val="decimal"/>
<w:lvlText w:val="%1.%2.%3.%4.%5.%6.%7."/>
<w:lvlJc w:val="left"/>
<w:pPr>
<w:ind w:left="3673" w:hanging="1273"/>
</w:pPr>
<w:rPr>
<w:rFonts w:hint="default"/>
</w:rPr>
</w:lvl>
<w:lvl w:ilvl="7" w:tentative="0">
<w:start w:val="1"/>
<w:numFmt w:val="decimal"/>
<w:lvlText w:val="%1.%2.%3.%4.%5.%6.%7.%8."/>
<w:lvlJc w:val="left"/>
<w:pPr>
<w:ind w:left="4218" w:hanging="1418"/>
</w:pPr>
<w:rPr>
<w:rFonts w:hint="default"/>
</w:rPr>
</w:lvl>
<w:lvl w:ilvl="8" w:tentative="0">
<w:start w:val="1"/>
<w:numFmt w:val="decimal"/>
<w:lvlText w:val="%1.%2.%3.%4.%5.%6.%7.%8.%9."/>
<w:lvlJc w:val="left"/>
<w:pPr>
<w:ind w:left="4648" w:hanging="1448"/>
</w:pPr>
<w:rPr>
<w:rFonts w:hint="default"/>
</w:rPr>
</w:lvl>
</w:abstractNum>
<w:abstractNum w:abstractNumId="8" w15:restartNumberingAfterBreak="0">
<w:nsid w:val="72D8F0CA"/>
<w:multiLevelType w:val="singleLevel"/>
<w:tmpl w:val="72D8F0CA"/>
<w:lvl w:ilvl="0" w:tentative="0">
<w:start w:val="1"/>
<w:numFmt w:val="chineseCounting"/>
<w:suff w:val="nothing"/>
<w:lvlText w:val="%1、"/>
<w:lvlJc w:val="left"/>
<w:pPr>
<w:ind w:left="0" w:firstLine="420"/>
</w:pPr>
<w:rPr>
<w:rFonts w:hint="eastAsia"/>
</w:rPr>
</w:lvl>
</w:abstractNum>
<w:abstractNum w:abstractNumId="9" w15:restartNumberingAfterBreak="0">
<w:nsid w:val="72D8F0CB"/>
<w:multiLevelType w:val="singleLevel"/>
<w:tmpl w:val="72D8F0CB"/>
<w:lvl w:ilvl="0" w:tentative="0">
<w:start w:val="1"/>
<w:numFmt w:val="decimal"/>
<w:suff w:val="nothing"/>
<w:lvlText w:val="%1、"/>
<w:lvlJc w:val="left"/>
<w:pPr>
<w:ind w:left="0" w:firstLine="420"/>
</w:pPr>
<w:rPr>
<w:rFonts w:hint="eastAsia"/>
</w:rPr>
</w:lvl>
</w:abstractNum>
</w:numbering>

View File

@ -1,18 +0,0 @@
<w:abstractNum w:abstractNumId="8" w15:restartNumberingAfterBreak="0">
<w:nsid w:val="72D8F0CA" />
<w:multiLevelType w:val="singleLevel" />
<w:tmpl w:val="72D8F0CA" />
<w:lvl w:ilvl="0" w:tentative="0">
<w:start w:val="1" />
<w:numFmt w:val="chineseCounting" />
<w:suff w:val="nothing" />
<w:lvlText w:val="%1、" />
<w:lvlJc w:val="left" />
<w:pPr>
<w:ind w:left="0" w:firstLine="420" />
</w:pPr>
<w:rPr>
<w:rFonts w:hint="eastAsia" />
</w:rPr>
</w:lvl>
</w:abstractNum>

View File

@ -1,18 +0,0 @@
<w:abstractNum w:abstractNumId="9" w15:restartNumberingAfterBreak="0">
<w:nsid w:val="72D8F0CB" />
<w:multiLevelType w:val="singleLevel" />
<w:tmpl w:val="72D8F0CB" />
<w:lvl w:ilvl="0" w:tentative="0">
<w:start w:val="1" />
<w:numFmt w:val="decimal" />
<w:suff w:val="nothing" />
<w:lvlText w:val="%1、" />
<w:lvlJc w:val="left" />
<w:pPr>
<w:ind w:left="0" w:firstLine="420" />
</w:pPr>
<w:rPr>
<w:rFonts w:hint="eastAsia" />
</w:rPr>
</w:lvl>
</w:abstractNum>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.5 KiB

View File

@ -1,23 +0,0 @@
<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="00FC693F" />
<w:pPr>
<w:keepNext />
<w:keepLines />
<w:spacing w:before="480" w:after="0" />
<w:outlineLvl w:val="0" />
</w:pPr>
<w:rPr>
<w:rFonts w:asciiTheme="majorHAnsi" w:eastAsiaTheme="majorEastAsia" w:hAnsiTheme="majorHAnsi" w:cstheme="majorBidi" />
<w:b />
<w:bCs />
<w:color w:val="365F91" w:themeColor="accent1" w:themeShade="BF" />
<w:sz w:val="28" />
<w:szCs w:val="28" />
</w:rPr>
</w:style>

View File

@ -1,15 +0,0 @@
<w:style w:type="character" w:customStyle="1" w:styleId="Heading1Char">
<w:name w:val="Heading 1 Char" />
<w:basedOn w:val="DefaultParagraphFont" />
<w:link w:val="Heading1" />
<w:uiPriority w:val="9" />
<w:rsid w:val="00FC693F" />
<w:rPr>
<w:rFonts w:asciiTheme="majorHAnsi" w:eastAsiaTheme="majorEastAsia" w:hAnsiTheme="majorHAnsi" w:cstheme="majorBidi" />
<w:b />
<w:bCs />
<w:color w:val="365F91" w:themeColor="accent1" w:themeShade="BF" />
<w:sz w:val="28" />
<w:szCs w:val="28" />
</w:rPr>
</w:style>

View File

@ -1,24 +0,0 @@
<w:style w:type="paragraph" w:styleId="Heading2">
<w:name w:val="heading 2" />
<w:basedOn w:val="Normal" />
<w:next w:val="Normal" />
<w:link w:val="Heading2Char" />
<w:uiPriority w:val="9" />
<w:unhideWhenUsed />
<w:qFormat />
<w:rsid w:val="00FC693F" />
<w:pPr>
<w:keepNext />
<w:keepLines />
<w:spacing w:before="200" w:after="0" />
<w:outlineLvl w:val="1" />
</w:pPr>
<w:rPr>
<w:rFonts w:asciiTheme="majorHAnsi" w:eastAsiaTheme="majorEastAsia" w:hAnsiTheme="majorHAnsi" w:cstheme="majorBidi" />
<w:b />
<w:bCs />
<w:color w:val="4F81BD" w:themeColor="accent1" />
<w:sz w:val="26" />
<w:szCs w:val="26" />
</w:rPr>
</w:style>

View File

@ -1,15 +0,0 @@
<w:style w:type="character" w:customStyle="1" w:styleId="Heading2Char">
<w:name w:val="Heading 2 Char" />
<w:basedOn w:val="DefaultParagraphFont" />
<w:link w:val="Heading2" />
<w:uiPriority w:val="9" />
<w:rsid w:val="00FC693F" />
<w:rPr>
<w:rFonts w:asciiTheme="majorHAnsi" w:eastAsiaTheme="majorEastAsia" w:hAnsiTheme="majorHAnsi" w:cstheme="majorBidi" />
<w:b />
<w:bCs />
<w:color w:val="4F81BD" w:themeColor="accent1" />
<w:sz w:val="26" />
<w:szCs w:val="26" />
</w:rPr>
</w:style>

View File

@ -1,22 +0,0 @@
<w:style w:type="paragraph" w:styleId="Heading3">
<w:name w:val="heading 3" />
<w:basedOn w:val="Normal" />
<w:next w:val="Normal" />
<w:link w:val="Heading3Char" />
<w:uiPriority w:val="9" />
<w:unhideWhenUsed />
<w:qFormat />
<w:rsid w:val="00FC693F" />
<w:pPr>
<w:keepNext />
<w:keepLines />
<w:spacing w:before="200" w:after="0" />
<w:outlineLvl w:val="2" />
</w:pPr>
<w:rPr>
<w:rFonts w:asciiTheme="majorHAnsi" w:eastAsiaTheme="majorEastAsia" w:hAnsiTheme="majorHAnsi" w:cstheme="majorBidi" />
<w:b />
<w:bCs />
<w:color w:val="4F81BD" w:themeColor="accent1" />
</w:rPr>
</w:style>

View File

@ -1,13 +0,0 @@
<w:style w:type="character" w:customStyle="1" w:styleId="Heading3Char">
<w:name w:val="Heading 3 Char" />
<w:basedOn w:val="DefaultParagraphFont" />
<w:link w:val="Heading3" />
<w:uiPriority w:val="9" />
<w:rsid w:val="00FC693F" />
<w:rPr>
<w:rFonts w:asciiTheme="majorHAnsi" w:eastAsiaTheme="majorEastAsia" w:hAnsiTheme="majorHAnsi" w:cstheme="majorBidi" />
<w:b />
<w:bCs />
<w:color w:val="4F81BD" w:themeColor="accent1" />
</w:rPr>
</w:style>

View File

@ -1,25 +0,0 @@
<w:style w:type="paragraph" w:styleId="Heading4">
<w:name w:val="heading 4" />
<w:basedOn w:val="Normal" />
<w:next w:val="Normal" />
<w:link w:val="Heading4Char" />
<w:uiPriority w:val="9" />
<w:semiHidden />
<w:unhideWhenUsed />
<w:qFormat />
<w:rsid w:val="00FC693F" />
<w:pPr>
<w:keepNext />
<w:keepLines />
<w:spacing w:before="200" w:after="0" />
<w:outlineLvl w:val="3" />
</w:pPr>
<w:rPr>
<w:rFonts w:asciiTheme="majorHAnsi" w:eastAsiaTheme="majorEastAsia" w:hAnsiTheme="majorHAnsi" w:cstheme="majorBidi" />
<w:b />
<w:bCs />
<w:i />
<w:iCs />
<w:color w:val="4F81BD" w:themeColor="accent1" />
</w:rPr>
</w:style>

View File

@ -1,16 +0,0 @@
<w:style w:type="character" w:customStyle="1" w:styleId="Heading4Char">
<w:name w:val="Heading 4 Char" />
<w:basedOn w:val="DefaultParagraphFont" />
<w:link w:val="Heading4" />
<w:uiPriority w:val="9" />
<w:semiHidden />
<w:rsid w:val="00FC693F" />
<w:rPr>
<w:rFonts w:asciiTheme="majorHAnsi" w:eastAsiaTheme="majorEastAsia" w:hAnsiTheme="majorHAnsi" w:cstheme="majorBidi" />
<w:b />
<w:bCs />
<w:i />
<w:iCs />
<w:color w:val="4F81BD" w:themeColor="accent1" />
</w:rPr>
</w:style>

View File

@ -1,21 +0,0 @@
<w:style w:type="paragraph" w:styleId="Heading5">
<w:name w:val="heading 5" />
<w:basedOn w:val="Normal" />
<w:next w:val="Normal" />
<w:link w:val="Heading5Char" />
<w:uiPriority w:val="9" />
<w:semiHidden />
<w:unhideWhenUsed />
<w:qFormat />
<w:rsid w:val="00FC693F" />
<w:pPr>
<w:keepNext />
<w:keepLines />
<w:spacing w:before="200" w:after="0" />
<w:outlineLvl w:val="4" />
</w:pPr>
<w:rPr>
<w:rFonts w:asciiTheme="majorHAnsi" w:eastAsiaTheme="majorEastAsia" w:hAnsiTheme="majorHAnsi" w:cstheme="majorBidi" />
<w:color w:val="243F60" w:themeColor="accent1" w:themeShade="7F" />
</w:rPr>
</w:style>

View File

@ -1,12 +0,0 @@
<w:style w:type="character" w:customStyle="1" w:styleId="Heading5Char">
<w:name w:val="Heading 5 Char" />
<w:basedOn w:val="DefaultParagraphFont" />
<w:link w:val="Heading5" />
<w:uiPriority w:val="9" />
<w:semiHidden />
<w:rsid w:val="00FC693F" />
<w:rPr>
<w:rFonts w:asciiTheme="majorHAnsi" w:eastAsiaTheme="majorEastAsia" w:hAnsiTheme="majorHAnsi" w:cstheme="majorBidi" />
<w:color w:val="243F60" w:themeColor="accent1" w:themeShade="7F" />
</w:rPr>
</w:style>

View File

@ -1,23 +0,0 @@
<w:style w:type="paragraph" w:styleId="Heading6">
<w:name w:val="heading 6" />
<w:basedOn w:val="Normal" />
<w:next w:val="Normal" />
<w:link w:val="Heading6Char" />
<w:uiPriority w:val="9" />
<w:semiHidden />
<w:unhideWhenUsed />
<w:qFormat />
<w:rsid w:val="00FC693F" />
<w:pPr>
<w:keepNext />
<w:keepLines />
<w:spacing w:before="200" w:after="0" />
<w:outlineLvl w:val="5" />
</w:pPr>
<w:rPr>
<w:rFonts w:asciiTheme="majorHAnsi" w:eastAsiaTheme="majorEastAsia" w:hAnsiTheme="majorHAnsi" w:cstheme="majorBidi" />
<w:i />
<w:iCs />
<w:color w:val="243F60" w:themeColor="accent1" w:themeShade="7F" />
</w:rPr>
</w:style>

View File

@ -1,14 +0,0 @@
<w:style w:type="character" w:customStyle="1" w:styleId="Heading6Char">
<w:name w:val="Heading 6 Char" />
<w:basedOn w:val="DefaultParagraphFont" />
<w:link w:val="Heading6" />
<w:uiPriority w:val="9" />
<w:semiHidden />
<w:rsid w:val="00FC693F" />
<w:rPr>
<w:rFonts w:asciiTheme="majorHAnsi" w:eastAsiaTheme="majorEastAsia" w:hAnsiTheme="majorHAnsi" w:cstheme="majorBidi" />
<w:i />
<w:iCs />
<w:color w:val="243F60" w:themeColor="accent1" w:themeShade="7F" />
</w:rPr>
</w:style>

View File

@ -1,23 +0,0 @@
<w:style w:type="paragraph" w:styleId="Heading7">
<w:name w:val="heading 7" />
<w:basedOn w:val="Normal" />
<w:next w:val="Normal" />
<w:link w:val="Heading7Char" />
<w:uiPriority w:val="9" />
<w:semiHidden />
<w:unhideWhenUsed />
<w:qFormat />
<w:rsid w:val="00FC693F" />
<w:pPr>
<w:keepNext />
<w:keepLines />
<w:spacing w:before="200" w:after="0" />
<w:outlineLvl w:val="6" />
</w:pPr>
<w:rPr>
<w:rFonts w:asciiTheme="majorHAnsi" w:eastAsiaTheme="majorEastAsia" w:hAnsiTheme="majorHAnsi" w:cstheme="majorBidi" />
<w:i />
<w:iCs />
<w:color w:val="404040" w:themeColor="text1" w:themeTint="BF" />
</w:rPr>
</w:style>

View File

@ -1,14 +0,0 @@
<w:style w:type="character" w:customStyle="1" w:styleId="Heading7Char">
<w:name w:val="Heading 7 Char" />
<w:basedOn w:val="DefaultParagraphFont" />
<w:link w:val="Heading7" />
<w:uiPriority w:val="9" />
<w:semiHidden />
<w:rsid w:val="00FC693F" />
<w:rPr>
<w:rFonts w:asciiTheme="majorHAnsi" w:eastAsiaTheme="majorEastAsia" w:hAnsiTheme="majorHAnsi" w:cstheme="majorBidi" />
<w:i />
<w:iCs />
<w:color w:val="404040" w:themeColor="text1" w:themeTint="BF" />
</w:rPr>
</w:style>

View File

@ -1,23 +0,0 @@
<w:style w:type="paragraph" w:styleId="Heading8">
<w:name w:val="heading 8" />
<w:basedOn w:val="Normal" />
<w:next w:val="Normal" />
<w:link w:val="Heading8Char" />
<w:uiPriority w:val="9" />
<w:semiHidden />
<w:unhideWhenUsed />
<w:qFormat />
<w:rsid w:val="00FC693F" />
<w:pPr>
<w:keepNext />
<w:keepLines />
<w:spacing w:before="200" w:after="0" />
<w:outlineLvl w:val="7" />
</w:pPr>
<w:rPr>
<w:rFonts w:asciiTheme="majorHAnsi" w:eastAsiaTheme="majorEastAsia" w:hAnsiTheme="majorHAnsi" w:cstheme="majorBidi" />
<w:color w:val="4F81BD" w:themeColor="accent1" />
<w:sz w:val="20" />
<w:szCs w:val="20" />
</w:rPr>
</w:style>

View File

@ -1,14 +0,0 @@
<w:style w:type="character" w:customStyle="1" w:styleId="Heading8Char">
<w:name w:val="Heading 8 Char" />
<w:basedOn w:val="DefaultParagraphFont" />
<w:link w:val="Heading8" />
<w:uiPriority w:val="9" />
<w:semiHidden />
<w:rsid w:val="00FC693F" />
<w:rPr>
<w:rFonts w:asciiTheme="majorHAnsi" w:eastAsiaTheme="majorEastAsia" w:hAnsiTheme="majorHAnsi" w:cstheme="majorBidi" />
<w:color w:val="4F81BD" w:themeColor="accent1" />
<w:sz w:val="20" />
<w:szCs w:val="20" />
</w:rPr>
</w:style>

View File

@ -1,25 +0,0 @@
<w:style w:type="paragraph" w:styleId="Heading9">
<w:name w:val="heading 9" />
<w:basedOn w:val="Normal" />
<w:next w:val="Normal" />
<w:link w:val="Heading9Char" />
<w:uiPriority w:val="9" />
<w:semiHidden />
<w:unhideWhenUsed />
<w:qFormat />
<w:rsid w:val="00FC693F" />
<w:pPr>
<w:keepNext />
<w:keepLines />
<w:spacing w:before="200" w:after="0" />
<w:outlineLvl w:val="8" />
</w:pPr>
<w:rPr>
<w:rFonts w:asciiTheme="majorHAnsi" w:eastAsiaTheme="majorEastAsia" w:hAnsiTheme="majorHAnsi" w:cstheme="majorBidi" />
<w:i />
<w:iCs />
<w:color w:val="404040" w:themeColor="text1" w:themeTint="BF" />
<w:sz w:val="20" />
<w:szCs w:val="20" />
</w:rPr>
</w:style>

View File

@ -1,16 +0,0 @@
<w:style w:type="character" w:customStyle="1" w:styleId="Heading9Char">
<w:name w:val="Heading 9 Char" />
<w:basedOn w:val="DefaultParagraphFont" />
<w:link w:val="Heading9" />
<w:uiPriority w:val="9" />
<w:semiHidden />
<w:rsid w:val="00FC693F" />
<w:rPr>
<w:rFonts w:asciiTheme="majorHAnsi" w:eastAsiaTheme="majorEastAsia" w:hAnsiTheme="majorHAnsi" w:cstheme="majorBidi" />
<w:i />
<w:iCs />
<w:color w:val="404040" w:themeColor="text1" w:themeTint="BF" />
<w:sz w:val="20" />
<w:szCs w:val="20" />
</w:rPr>
</w:style>

View File

@ -1,24 +0,0 @@
<w:style w:type="paragraph" w:styleId="Title">
<w:name w:val="Title" />
<w:basedOn w:val="Normal" />
<w:next w:val="Normal" />
<w:link w:val="TitleChar" />
<w:uiPriority w:val="10" />
<w:qFormat />
<w:rsid w:val="00FC693F" />
<w:pPr>
<w:pBdr>
<w:bottom w:val="single" w:sz="8" w:space="4" w:color="4F81BD" w:themeColor="accent1" />
</w:pBdr>
<w:spacing w:after="300" w:line="240" w:lineRule="auto" />
<w:contextualSpacing />
</w:pPr>
<w:rPr>
<w:rFonts w:asciiTheme="majorHAnsi" w:eastAsiaTheme="majorEastAsia" w:hAnsiTheme="majorHAnsi" w:cstheme="majorBidi" />
<w:color w:val="17365D" w:themeColor="text2" w:themeShade="BF" />
<w:spacing w:val="5" />
<w:kern w:val="28" />
<w:sz w:val="52" />
<w:szCs w:val="52" />
</w:rPr>
</w:style>

View File

@ -1,15 +0,0 @@
<w:style w:type="character" w:customStyle="1" w:styleId="TitleChar">
<w:name w:val="Title Char" />
<w:basedOn w:val="DefaultParagraphFont" />
<w:link w:val="Title" />
<w:uiPriority w:val="10" />
<w:rsid w:val="00FC693F" />
<w:rPr>
<w:rFonts w:asciiTheme="majorHAnsi" w:eastAsiaTheme="majorEastAsia" w:hAnsiTheme="majorHAnsi" w:cstheme="majorBidi" />
<w:color w:val="17365D" w:themeColor="text2" w:themeShade="BF" />
<w:spacing w:val="5" />
<w:kern w:val="28" />
<w:sz w:val="52" />
<w:szCs w:val="52" />
</w:rPr>
</w:style>

View File

@ -1,5 +1,11 @@
# 更新日志
## 2023-2-13
### V1.1.6
重大更新:移除了`document`文件夹
## 2023-2-3
### V1.1.5