docx-cloner 0.2.0 → 0.2.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- OTc0OTQ0ZjIzMTFkNDAzZGU2ODUwZmM3MWM2ZDNlMjQyYTZlNTkwNw==
4
+ M2ZkMzBlZTA2M2JhNDg4YzZjMjEzZjE2ZDYyOGU1MTA2YzQ0YWMwYw==
5
5
  data.tar.gz: !binary |-
6
- NDM0MjBmNTg4ZWUzZGVjNWNkNGI4OWYwNjIxODQ1MmY5Y2VmYWRkZg==
6
+ YzFjODcxMzIwMWQ1NTlkMGQxNGFmMWM5ZTJkZTQwZDc2NGYzMTU0MA==
7
7
  !binary "U0hBNTEy":
8
8
  metadata.gz: !binary |-
9
- OTY5ODY1Y2Y4ZDYwZDA0NzY5Zjg0NmQ5YzU2Zjk0Mjg3MTA5OGYzNmI3ZDVj
10
- ZGUzM2Q0YzM1YzkxMDllMzg3MTFhYzRhZGVjYzU4Y2UzMmE4OWEyNDk2ZjIz
11
- MjI5N2JiOTBhMWIxMDZkZWM5YWFhZWMyYWM5ZDNkZDM4ODE3ZGE=
9
+ MWYxNTlmNGRkN2FkYmRlZjJjYjYyMGFhNmVmN2RkNGUxODMzMDdiYTNlOGIx
10
+ MjMyMzA5MTUxNmY1MTBiYWFhZmYwMTQ2OTk5YWY1ZWNmMjk4ZDA3MDFiOTY4
11
+ NTY1MGE3MDhkYjMwNWI2NGMxMWE4MmRiMjU2ZTk2YWE2ZWQ5MjU=
12
12
  data.tar.gz: !binary |-
13
- ZDQxYmQ0MTY5MWZhMDY3YjAzZGE3OWM5ODdlZDc0YWE2ZmE3ZTg2NzBkNTBh
14
- ZmY2YzA2MzVkMWVjZjk3MTA0NTViY2E5MzZmNDE4YmFkMzIzZTcyZDUzNzQ0
15
- NWU2OTA1MTljNDJjMDE1NWRiZjAxYWQ0N2U4MTYwYzAxNmYwMTQ=
13
+ MjU4NzY3N2Q3Y2Q5YjJiYzEzOTgxYWRkMjk1NjM1NDMyYjJjNjRlY2YwNzRh
14
+ Mjc4YzI5YTRhNGIxY2ZjMzdjODZkMzg2ODI5YTgyZGNlYzkwOTA4MTAxODBl
15
+ ZTg5Y2NkMzgyZjY1YTFkYmE1YWNhNWIzYTAwNzVlNDZkNjRlOTg=
data/README.md CHANGED
@@ -21,7 +21,7 @@ Or install it yourself as:
21
21
  * set_text
22
22
  * set_row_tr
23
23
 
24
- it's so easy to use it with DSL:
24
+ it's so easy to use it with DSL:
25
25
 
26
26
  #encoding: utf-8
27
27
  require 'docx/dsl'
@@ -34,9 +34,11 @@ Or install it yourself as:
34
34
  docx_cloner 'source.docx', 'dest.docx' do
35
35
  #replace the text of '{Name}' in 'source.docx'
36
36
  set_text '{Name}', '周大福'
37
+
37
38
  #multi lines replace
38
- set_row_tr ["{名称1}", "{00.01}"], [["自行车1", "125.00"], ["大卡车1", "256500.00"]]
39
- end
39
+ tags = ["{名称1}", "{00.01}"]
40
+ data = [["自行车1", "125.00"], ["大卡车1", "256500.00"]]
41
+ set_row_tr tags, data
40
42
  end
41
43
  end
42
44
  end
@@ -21,8 +21,8 @@ ABC
21
21
  extend Docx::DSL
22
22
  docx_cloner 'source.docx', 'dest.docx' do
23
23
  set_text '{Name}', '周大福'
24
- set_row 'tr' do |t|
25
- t[:tags] = ["{名称1}", "{00.01}"]
26
- t[:data] = [["自行车1", "125.00"], ["大卡车1", "256500.00"]]
27
- end
24
+
25
+ tags = ["{名称1}", "{00.01}"]
26
+ data = [["自行车1", "125.00"], ["大卡车1", "256500.00"]]
27
+ set_row_tr tags, data
28
28
  end
@@ -6,10 +6,9 @@
6
6
  extend 'Docx::DSL'
7
7
  docx_cloner 'source.docx', 'dest.docx' do
8
8
  set_text '{Name}', '周大福'
9
- set_row 'tr' do |t|
10
- t[:tags] = ["{名称1}", "{00.01}"]
11
- t[:data] = [["自行车1", "125.00"], ["大卡车1", "256500.00"]]
12
- end
9
+ tags = ["{名称1}", "{00.01}"]
10
+ data = [["自行车1", "125.00"], ["大卡车1", "256500.00"]]
11
+ set_row_tr tags, data
13
12
  end
14
13
  """
15
14
  其中:
@@ -1,5 +1,5 @@
1
1
  module Docx
2
2
  module Cloner
3
- VERSION = "0.2.0"
3
+ VERSION = "0.2.1"
4
4
  end
5
5
  end
@@ -30,8 +30,8 @@ module Docx
30
30
  }.call
31
31
 
32
32
  def method_missing name, *args
33
- puts "name: #{name}"
34
- puts "args: #{args}"
33
+ #puts "name: #{name}"
34
+ #puts "args: #{args}"
35
35
  /set_row_(.+)/.match name do
36
36
  return set_row *(args << $1) if $1
37
37
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: docx-cloner
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - homeway
@@ -52,11 +52,9 @@ files:
52
52
  - README.md
53
53
  - Rakefile
54
54
  - docx-cloner.gemspec
55
- - docx-examples/read-single-tags-body.xml
56
55
  - docx-examples/read-single-tags.docx
57
56
  - docx-examples/source.docx
58
57
  - docx-examples/test.rb
59
- - docx-examples/wp.xml
60
58
  - features/dsl.feature
61
59
  - features/read.feature
62
60
  - features/replace.feature
@@ -1,1383 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
2
- <w:document xmlns:wpc="http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas" xmlns:mo="http://schemas.microsoft.com/office/mac/office/2008/main" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:mv="urn:schemas-microsoft-com:mac:vml" xmlns:o="urn:schemas-microsoft-com:office:office" 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: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 wp14">
3
- <w:body>
4
- <w:tbl>
5
- <w:tblPr>
6
- <w:tblStyle w:val="CoverTable"/>
7
- <w:tblW w:w="10800" w:type="dxa"/>
8
- <w:tblLook w:val="04E0" w:firstRow="1" w:lastRow="1" w:firstColumn="1" w:lastColumn="0" w:noHBand="0" w:noVBand="1"/>
9
- </w:tblPr>
10
- <w:tblGrid>
11
- <w:gridCol w:w="10800"/>
12
- </w:tblGrid>
13
- <w:tr w:rsidR="00A20C5E" w14:paraId="24DF3D97" w14:textId="77777777">
14
- <w:trPr>
15
- <w:cnfStyle w:val="100000000000" w:firstRow="1" w:lastRow="0" w:firstColumn="0" w:lastColumn="0" w:oddVBand="0" w:evenVBand="0" w:oddHBand="0" w:evenHBand="0" w:firstRowFirstColumn="0" w:firstRowLastColumn="0" w:lastRowFirstColumn="0" w:lastRowLastColumn="0"/>
16
- <w:trHeight w:hRule="exact" w:val="288"/>
17
- </w:trPr>
18
- <w:tc>
19
- <w:tcPr>
20
- <w:tcW w:w="10800" w:type="dxa"/>
21
- </w:tcPr>
22
- <w:p w14:paraId="59441B7C" w14:textId="77777777" w:rsidR="00594A47" w:rsidRDefault="00594A47"/>
23
- </w:tc>
24
- </w:tr>
25
- <w:tr w:rsidR="00A20C5E" w14:paraId="7C10138A" w14:textId="77777777">
26
- <w:trPr>
27
- <w:cnfStyle w:val="000000100000" w:firstRow="0" w:lastRow="0" w:firstColumn="0" w:lastColumn="0" w:oddVBand="0" w:evenVBand="0" w:oddHBand="1" w:evenHBand="0" w:firstRowFirstColumn="0" w:firstRowLastColumn="0" w:lastRowFirstColumn="0" w:lastRowLastColumn="0"/>
28
- <w:trHeight w:hRule="exact" w:val="144"/>
29
- </w:trPr>
30
- <w:tc>
31
- <w:tcPr>
32
- <w:tcW w:w="10800" w:type="dxa"/>
33
- </w:tcPr>
34
- <w:p w14:paraId="234A7FA8" w14:textId="77777777" w:rsidR="00594A47" w:rsidRDefault="00594A47"/>
35
- </w:tc>
36
- </w:tr>
37
- <w:tr w:rsidR="00A20C5E" w14:paraId="5FC0436B" w14:textId="77777777">
38
- <w:trPr>
39
- <w:cnfStyle w:val="000000010000" w:firstRow="0" w:lastRow="0" w:firstColumn="0" w:lastColumn="0" w:oddVBand="0" w:evenVBand="0" w:oddHBand="0" w:evenHBand="1" w:firstRowFirstColumn="0" w:firstRowLastColumn="0" w:lastRowFirstColumn="0" w:lastRowLastColumn="0"/>
40
- <w:trHeight w:val="10080"/>
41
- </w:trPr>
42
- <w:tc>
43
- <w:tcPr>
44
- <w:tcW w:w="10800" w:type="dxa"/>
45
- </w:tcPr>
46
- <w:tbl>
47
- <w:tblPr>
48
- <w:tblStyle w:val="CoverCenter"/>
49
- <w:tblW w:w="5000" w:type="pct"/>
50
- <w:tblLook w:val="04A0" w:firstRow="1" w:lastRow="0" w:firstColumn="1" w:lastColumn="0" w:noHBand="0" w:noVBand="1"/>
51
- </w:tblPr>
52
- <w:tblGrid>
53
- <w:gridCol w:w="4499"/>
54
- <w:gridCol w:w="6301"/>
55
- </w:tblGrid>
56
- <w:tr w:rsidR="00A20C5E" w14:paraId="2D87CEC1" w14:textId="77777777">
57
- <w:tc>
58
- <w:tcPr>
59
- <w:tcW w:w="2083" w:type="pct"/>
60
- <w:tcMar>
61
- <w:top w:w="360" w:type="dxa"/>
62
- <w:right w:w="360" w:type="dxa"/>
63
- </w:tcMar>
64
- </w:tcPr>
65
- <w:p w14:paraId="0FCA883A" w14:textId="77777777" w:rsidR="00594A47" w:rsidRDefault="00E242DB">
66
- <w:pPr>
67
- <w:pStyle w:val="Header-Left"/>
68
- <w:rPr>
69
- <w:rFonts w:hint="eastAsia"/>
70
- <w:lang w:eastAsia="zh-CN"/>
71
- </w:rPr>
72
- </w:pPr>
73
- <w:r>
74
- <w:rPr>
75
- <w:rFonts w:hint="eastAsia"/>
76
- <w:lang w:eastAsia="zh-CN"/>
77
- </w:rPr>
78
- <w:t>Docx</w:t>
79
- </w:r>
80
- <w:r>
81
- <w:rPr>
82
- <w:rFonts w:hint="eastAsia"/>
83
- <w:lang w:eastAsia="zh-CN"/>
84
- </w:rPr>
85
- <w:t>测试文档</w:t>
86
- </w:r>
87
- </w:p>
88
- <w:p w14:paraId="67D8CC8B" w14:textId="77777777" w:rsidR="00594A47" w:rsidRDefault="00E242DB" w:rsidP="00E242DB">
89
- <w:pPr>
90
- <w:pStyle w:val="Header-Details"/>
91
- <w:rPr>
92
- <w:lang w:eastAsia="zh-CN"/>
93
- </w:rPr>
94
- </w:pPr>
95
- <w:r>
96
- <w:rPr>
97
- <w:rFonts w:hint="eastAsia"/>
98
- <w:lang w:eastAsia="zh-CN"/>
99
- </w:rPr>
100
- <w:t>homeway.xue@gmail.com</w:t>
101
- </w:r>
102
- </w:p>
103
- </w:tc>
104
- <w:tc>
105
- <w:tcPr>
106
- <w:tcW w:w="2917" w:type="pct"/>
107
- </w:tcPr>
108
- <w:tbl>
109
- <w:tblPr>
110
- <w:tblW w:w="0" w:type="auto"/>
111
- <w:jc w:val="center"/>
112
- <w:tblCellMar>
113
- <w:left w:w="0" w:type="dxa"/>
114
- <w:right w:w="0" w:type="dxa"/>
115
- </w:tblCellMar>
116
- <w:tblLook w:val="04A0" w:firstRow="1" w:lastRow="0" w:firstColumn="1" w:lastColumn="0" w:noHBand="0" w:noVBand="1"/>
117
- </w:tblPr>
118
- <w:tblGrid>
119
- <w:gridCol w:w="5224"/>
120
- </w:tblGrid>
121
- <w:tr w:rsidR="00A20C5E" w14:paraId="468482CC" w14:textId="77777777">
122
- <w:trPr>
123
- <w:trHeight w:hRule="exact" w:val="8640"/>
124
- <w:jc w:val="center"/>
125
- </w:trPr>
126
- <w:tc>
127
- <w:tcPr>
128
- <w:tcW w:w="0" w:type="auto"/>
129
- <w:vAlign w:val="bottom"/>
130
- </w:tcPr>
131
- <w:p w14:paraId="032BE889" w14:textId="77777777" w:rsidR="00594A47" w:rsidRDefault="00AF6251">
132
- <w:pPr>
133
- <w:pStyle w:val="Picture"/>
134
- </w:pPr>
135
- <w:r>
136
- <w:rPr>
137
- <w:lang w:eastAsia="zh-CN"/>
138
- </w:rPr>
139
- <w:drawing>
140
- <wp:inline distT="0" distB="0" distL="0" distR="0" wp14:anchorId="3DAE7352" wp14:editId="688ADE56">
141
- <wp:extent cx="3349003" cy="5440680"/>
142
- <wp:effectExtent l="19050" t="19050" r="22847" b="26670"/>
143
- <wp:docPr id="17" name="Placeholder" descr="C:\Users\Steph\Pictures\Microsoft Clip Organizer\j0403398.jpg"/>
144
- <wp:cNvGraphicFramePr>
145
- <a:graphicFrameLocks xmlns:a="http://schemas.openxmlformats.org/drawingml/2006/main" noChangeAspect="1"/>
146
- </wp:cNvGraphicFramePr>
147
- <a:graphic xmlns:a="http://schemas.openxmlformats.org/drawingml/2006/main">
148
- <a:graphicData uri="http://schemas.openxmlformats.org/drawingml/2006/picture">
149
- <pic:pic xmlns:pic="http://schemas.openxmlformats.org/drawingml/2006/picture">
150
- <pic:nvPicPr>
151
- <pic:cNvPr id="5" name="Picture 4" descr="C:\Users\Steph\Pictures\Microsoft Clip Organizer\j0403398.jpg"/>
152
- <pic:cNvPicPr>
153
- <a:picLocks noChangeAspect="1" noChangeArrowheads="1"/>
154
- </pic:cNvPicPr>
155
- </pic:nvPicPr>
156
- <pic:blipFill>
157
- <a:blip r:embed="rId8"/>
158
- <a:srcRect l="3514" r="3514"/>
159
- <a:stretch>
160
- <a:fillRect/>
161
- </a:stretch>
162
- </pic:blipFill>
163
- <pic:spPr bwMode="auto">
164
- <a:xfrm>
165
- <a:off x="0" y="0"/>
166
- <a:ext cx="3349003" cy="5440680"/>
167
- </a:xfrm>
168
- <a:prstGeom prst="rect">
169
- <a:avLst/>
170
- </a:prstGeom>
171
- <a:noFill/>
172
- <a:ln w="12700">
173
- <a:solidFill>
174
- <a:schemeClr val="tx1">
175
- <a:lumMod val="75000"/>
176
- <a:lumOff val="25000"/>
177
- </a:schemeClr>
178
- </a:solidFill>
179
- <a:miter lim="800000"/>
180
- <a:headEnd/>
181
- <a:tailEnd/>
182
- </a:ln>
183
- <a:effectLst>
184
- <a:innerShdw blurRad="63500" dir="13500000">
185
- <a:prstClr val="black">
186
- <a:alpha val="30000"/>
187
- </a:prstClr>
188
- </a:innerShdw>
189
- </a:effectLst>
190
- </pic:spPr>
191
- </pic:pic>
192
- </a:graphicData>
193
- </a:graphic>
194
- </wp:inline>
195
- </w:drawing>
196
- </w:r>
197
- </w:p>
198
- </w:tc>
199
- </w:tr>
200
- <w:tr w:rsidR="00A20C5E" w14:paraId="1A1FB800" w14:textId="77777777">
201
- <w:trPr>
202
- <w:trHeight w:hRule="exact" w:val="288"/>
203
- <w:jc w:val="center"/>
204
- </w:trPr>
205
- <w:tc>
206
- <w:tcPr>
207
- <w:tcW w:w="0" w:type="auto"/>
208
- <w:shd w:val="clear" w:color="auto" w:fill="8FA5BA" w:themeFill="background2"/>
209
- </w:tcPr>
210
- <w:p w14:paraId="649A9A56" w14:textId="77777777" w:rsidR="00594A47" w:rsidRDefault="00594A47">
211
- <w:pPr>
212
- <w:rPr>
213
- <w:color w:val="FFFFFF" w:themeColor="background1"/>
214
- </w:rPr>
215
- </w:pPr>
216
- </w:p>
217
- </w:tc>
218
- </w:tr>
219
- <w:tr w:rsidR="00A20C5E" w14:paraId="095DBE5B" w14:textId="77777777">
220
- <w:trPr>
221
- <w:trHeight w:hRule="exact" w:val="144"/>
222
- <w:jc w:val="center"/>
223
- </w:trPr>
224
- <w:tc>
225
- <w:tcPr>
226
- <w:tcW w:w="0" w:type="auto"/>
227
- <w:shd w:val="clear" w:color="auto" w:fill="D4E2F0" w:themeFill="accent1"/>
228
- </w:tcPr>
229
- <w:p w14:paraId="4DE29AE9" w14:textId="77777777" w:rsidR="00594A47" w:rsidRDefault="00594A47">
230
- <w:pPr>
231
- <w:rPr>
232
- <w:color w:val="FFFFFF" w:themeColor="background1"/>
233
- </w:rPr>
234
- </w:pPr>
235
- </w:p>
236
- </w:tc>
237
- </w:tr>
238
- </w:tbl>
239
- <w:p w14:paraId="6C5C5723" w14:textId="77777777" w:rsidR="00594A47" w:rsidRDefault="00594A47">
240
- <w:pPr>
241
- <w:rPr>
242
- <w:color w:val="FFFFFF" w:themeColor="background1"/>
243
- </w:rPr>
244
- </w:pPr>
245
- </w:p>
246
- </w:tc>
247
- </w:tr>
248
- </w:tbl>
249
- <w:p w14:paraId="4E139176" w14:textId="77777777" w:rsidR="00594A47" w:rsidRDefault="00594A47">
250
- <w:pPr>
251
- <w:rPr>
252
- <w:color w:val="FFFFFF" w:themeColor="background1"/>
253
- </w:rPr>
254
- </w:pPr>
255
- </w:p>
256
- </w:tc>
257
- </w:tr>
258
- <w:tr w:rsidR="00A20C5E" w14:paraId="501F72ED" w14:textId="77777777">
259
- <w:trPr>
260
- <w:cnfStyle w:val="010000000000" w:firstRow="0" w:lastRow="1" w:firstColumn="0" w:lastColumn="0" w:oddVBand="0" w:evenVBand="0" w:oddHBand="0" w:evenHBand="0" w:firstRowFirstColumn="0" w:firstRowLastColumn="0" w:lastRowFirstColumn="0" w:lastRowLastColumn="0"/>
261
- <w:trHeight w:val="3312"/>
262
- </w:trPr>
263
- <w:tc>
264
- <w:tcPr>
265
- <w:tcW w:w="10800" w:type="dxa"/>
266
- <w:vAlign w:val="bottom"/>
267
- </w:tcPr>
268
- <w:tbl>
269
- <w:tblPr>
270
- <w:tblW w:w="0" w:type="auto"/>
271
- <w:tblCellMar>
272
- <w:left w:w="14" w:type="dxa"/>
273
- <w:bottom w:w="432" w:type="dxa"/>
274
- <w:right w:w="14" w:type="dxa"/>
275
- </w:tblCellMar>
276
- <w:tblLook w:val="04A0" w:firstRow="1" w:lastRow="0" w:firstColumn="1" w:lastColumn="0" w:noHBand="0" w:noVBand="1"/>
277
- </w:tblPr>
278
- <w:tblGrid>
279
- <w:gridCol w:w="5130"/>
280
- <w:gridCol w:w="2358"/>
281
- <w:gridCol w:w="3297"/>
282
- </w:tblGrid>
283
- <w:tr w:rsidR="00A20C5E" w14:paraId="67F5EEFE" w14:textId="77777777">
284
- <w:trPr>
285
- <w:trHeight w:val="1557"/>
286
- </w:trPr>
287
- <w:tc>
288
- <w:tcPr>
289
- <w:tcW w:w="5130" w:type="dxa"/>
290
- <w:vAlign w:val="bottom"/>
291
- </w:tcPr>
292
- <w:p w14:paraId="6DE73AC2" w14:textId="77777777" w:rsidR="00594A47" w:rsidRDefault="008460CD">
293
- <w:pPr>
294
- <w:pStyle w:val="ad"/>
295
- </w:pPr>
296
- <w:r>
297
- <w:fldChar w:fldCharType="begin"/>
298
- </w:r>
299
- <w:r>
300
- <w:instrText xml:space="preserve"> PLACEHOLDER "[Insert Date]" \* MERGEFORMAT </w:instrText>
301
- </w:r>
302
- <w:r>
303
- <w:fldChar w:fldCharType="separate"/>
304
- </w:r>
305
- <w:r w:rsidR="00AF6251">
306
- <w:rPr>
307
- <w:lang w:val="zh-CN"/>
308
- </w:rPr>
309
- <w:t>[</w:t>
310
- </w:r>
311
- <w:r w:rsidR="00AF6251">
312
- <w:rPr>
313
- <w:lang w:val="zh-CN"/>
314
- </w:rPr>
315
- <w:t>插入日期</w:t>
316
- </w:r>
317
- <w:r w:rsidR="00AF6251">
318
- <w:rPr>
319
- <w:lang w:val="zh-CN"/>
320
- </w:rPr>
321
- <w:t>]</w:t>
322
- </w:r>
323
- <w:r>
324
- <w:rPr>
325
- <w:lang w:val="zh-CN"/>
326
- </w:rPr>
327
- <w:fldChar w:fldCharType="end"/>
328
- </w:r>
329
- </w:p>
330
- </w:tc>
331
- <w:sdt>
332
- <w:sdtPr>
333
- <w:id w:val="14677901"/>
334
- <w:placeholder>
335
- <w:docPart w:val="C3F2611479793D48912BB3A10E4935B9"/>
336
- </w:placeholder>
337
- </w:sdtPr>
338
- <w:sdtEndPr/>
339
- <w:sdtContent>
340
- <w:tc>
341
- <w:tcPr>
342
- <w:tcW w:w="2358" w:type="dxa"/>
343
- <w:vAlign w:val="bottom"/>
344
- </w:tcPr>
345
- <w:p w14:paraId="5AC60AFA" w14:textId="77777777" w:rsidR="00594A47" w:rsidRDefault="006A0A53" w:rsidP="006A0A53">
346
- <w:pPr>
347
- <w:pStyle w:val="a5"/>
348
- </w:pPr>
349
- <w:r>
350
- <w:rPr>
351
- <w:rFonts w:hint="eastAsia"/>
352
- </w:rPr>
353
- <w:t>读者</w:t>
354
- </w:r>
355
- </w:p>
356
- </w:tc>
357
- </w:sdtContent>
358
- </w:sdt>
359
- <w:sdt>
360
- <w:sdtPr>
361
- <w:rPr>
362
- <w:b/>
363
- <w:caps/>
364
- <w:color w:val="D4E2F0" w:themeColor="accent1"/>
365
- <w:sz w:val="100"/>
366
- <w:szCs w:val="100"/>
367
- </w:rPr>
368
- <w:id w:val="14677900"/>
369
- <w:placeholder>
370
- <w:docPart w:val="497B953C051BE441AC65D2205F4F80A8"/>
371
- </w:placeholder>
372
- </w:sdtPr>
373
- <w:sdtEndPr/>
374
- <w:sdtContent>
375
- <w:tc>
376
- <w:tcPr>
377
- <w:tcW w:w="3297" w:type="dxa"/>
378
- <w:tcMar>
379
- <w:right w:w="432" w:type="dxa"/>
380
- </w:tcMar>
381
- <w:vAlign w:val="bottom"/>
382
- </w:tcPr>
383
- <w:p w14:paraId="7AA0053D" w14:textId="77777777" w:rsidR="00594A47" w:rsidRDefault="006A0A53" w:rsidP="006A0A53">
384
- <w:pPr>
385
- <w:spacing w:line="1000" w:lineRule="exact"/>
386
- <w:jc w:val="right"/>
387
- <w:rPr>
388
- <w:b/>
389
- <w:caps/>
390
- <w:color w:val="D4E2F0" w:themeColor="accent1"/>
391
- <w:sz w:val="100"/>
392
- <w:szCs w:val="100"/>
393
- </w:rPr>
394
- </w:pPr>
395
- <w:r>
396
- <w:rPr>
397
- <w:rFonts w:hint="eastAsia"/>
398
- <w:b/>
399
- <w:caps/>
400
- <w:color w:val="D4E2F0" w:themeColor="accent1"/>
401
- <w:sz w:val="100"/>
402
- <w:szCs w:val="100"/>
403
- </w:rPr>
404
- <w:t>打开</w:t>
405
- </w:r>
406
- </w:p>
407
- </w:tc>
408
- </w:sdtContent>
409
- </w:sdt>
410
- </w:tr>
411
- </w:tbl>
412
- <w:p w14:paraId="60DE6D99" w14:textId="77777777" w:rsidR="00594A47" w:rsidRDefault="00594A47">
413
- <w:pPr>
414
- <w:rPr>
415
- <w:color w:val="FFFFFF" w:themeColor="background1"/>
416
- </w:rPr>
417
- </w:pPr>
418
- </w:p>
419
- </w:tc>
420
- </w:tr>
421
- </w:tbl>
422
- <w:sdt>
423
- <w:sdtPr>
424
- <w:id w:val="6002713"/>
425
- <w:placeholder>
426
- <w:docPart w:val="34200E08FB91D44BA9A986FE816FE74A"/>
427
- </w:placeholder>
428
- </w:sdtPr>
429
- <w:sdtEndPr/>
430
- <w:sdtContent>
431
- <w:p w14:paraId="6188E0F6" w14:textId="77777777" w:rsidR="00594A47" w:rsidRDefault="006A0A53">
432
- <w:pPr>
433
- <w:pStyle w:val="1"/>
434
- </w:pPr>
435
- <w:r>
436
- <w:rPr>
437
- <w:rFonts w:hint="eastAsia"/>
438
- </w:rPr>
439
- <w:t>主题</w:t>
440
- </w:r>
441
- </w:p>
442
- </w:sdtContent>
443
- </w:sdt>
444
- <w:sdt>
445
- <w:sdtPr>
446
- <w:id w:val="6002714"/>
447
- <w:placeholder>
448
- <w:docPart w:val="9BEB0F7179E4D3408542872538DF32EF"/>
449
- </w:placeholder>
450
- </w:sdtPr>
451
- <w:sdtEndPr/>
452
- <w:sdtContent>
453
- <w:p w14:paraId="4E9418BB" w14:textId="23E8C963" w:rsidR="00342A6D" w:rsidRDefault="00342A6D" w:rsidP="006A0A53">
454
- <w:pPr>
455
- <w:pStyle w:val="ab"/>
456
- <w:spacing w:after="120"/>
457
- <w:rPr>
458
- <w:rFonts w:hint="eastAsia"/>
459
- <w:lang w:eastAsia="zh-CN"/>
460
- </w:rPr>
461
- </w:pPr>
462
- <w:r>
463
- <w:rPr>
464
- <w:rFonts w:hint="eastAsia"/>
465
- <w:lang w:eastAsia="zh-CN"/>
466
- </w:rPr>
467
- <w:t>这是一个单词</w:t>
468
- </w:r>
469
- <w:r>
470
- <w:rPr>
471
- <w:rFonts w:hint="eastAsia"/>
472
- <w:lang w:eastAsia="zh-CN"/>
473
- </w:rPr>
474
- <w:t xml:space="preserve"> </w:t>
475
- </w:r>
476
- <w:r w:rsidR="000F595B">
477
- <w:rPr>
478
- <w:rFonts w:hint="eastAsia"/>
479
- <w:lang w:eastAsia="zh-CN"/>
480
- </w:rPr>
481
- <w:t>{</w:t>
482
- </w:r>
483
- <w:r>
484
- <w:rPr>
485
- <w:rFonts w:hint="eastAsia"/>
486
- <w:lang w:eastAsia="zh-CN"/>
487
- </w:rPr>
488
- <w:t>n</w:t>
489
- </w:r>
490
- <w:r w:rsidR="000F595B">
491
- <w:rPr>
492
- <w:rFonts w:hint="eastAsia"/>
493
- <w:lang w:eastAsia="zh-CN"/>
494
- </w:rPr>
495
- <w:t>ame}</w:t>
496
- </w:r>
497
- <w:r>
498
- <w:rPr>
499
- <w:rFonts w:hint="eastAsia"/>
500
- <w:lang w:eastAsia="zh-CN"/>
501
- </w:rPr>
502
- <w:t>测试</w:t>
503
- </w:r>
504
- </w:p>
505
- <w:p w14:paraId="2A0B9E5A" w14:textId="77777777" w:rsidR="00342A6D" w:rsidRDefault="00342A6D" w:rsidP="00342A6D">
506
- <w:pPr>
507
- <w:pStyle w:val="ab"/>
508
- <w:spacing w:after="120"/>
509
- <w:rPr>
510
- <w:rFonts w:hint="eastAsia"/>
511
- <w:lang w:eastAsia="zh-CN"/>
512
- </w:rPr>
513
- </w:pPr>
514
- <w:r>
515
- <w:rPr>
516
- <w:rFonts w:hint="eastAsia"/>
517
- <w:lang w:eastAsia="zh-CN"/>
518
- </w:rPr>
519
- <w:t>这是一个单词</w:t>
520
- </w:r>
521
- <w:r>
522
- <w:rPr>
523
- <w:rFonts w:hint="eastAsia"/>
524
- <w:lang w:eastAsia="zh-CN"/>
525
- </w:rPr>
526
- <w:t xml:space="preserve"> {Name}</w:t>
527
- </w:r>
528
- <w:r>
529
- <w:rPr>
530
- <w:rFonts w:hint="eastAsia"/>
531
- <w:lang w:eastAsia="zh-CN"/>
532
- </w:rPr>
533
- <w:t>测试</w:t>
534
- </w:r>
535
- </w:p>
536
- <w:p w14:paraId="66920D3F" w14:textId="295C94C5" w:rsidR="00342A6D" w:rsidRDefault="00342A6D" w:rsidP="00342A6D">
537
- <w:pPr>
538
- <w:pStyle w:val="ab"/>
539
- <w:spacing w:after="120"/>
540
- <w:rPr>
541
- <w:rFonts w:hint="eastAsia"/>
542
- <w:lang w:eastAsia="zh-CN"/>
543
- </w:rPr>
544
- </w:pPr>
545
- <w:r>
546
- <w:rPr>
547
- <w:rFonts w:hint="eastAsia"/>
548
- <w:lang w:eastAsia="zh-CN"/>
549
- </w:rPr>
550
- <w:t>这是一个单词</w:t>
551
- </w:r>
552
- <w:r>
553
- <w:rPr>
554
- <w:rFonts w:hint="eastAsia"/>
555
- <w:lang w:eastAsia="zh-CN"/>
556
- </w:rPr>
557
- <w:t xml:space="preserve"> {N</w:t>
558
- </w:r>
559
- <w:r>
560
- <w:rPr>
561
- <w:rFonts w:hint="eastAsia"/>
562
- <w:lang w:eastAsia="zh-CN"/>
563
- </w:rPr>
564
- <w:t>AME</w:t>
565
- </w:r>
566
- <w:r>
567
- <w:rPr>
568
- <w:rFonts w:hint="eastAsia"/>
569
- <w:lang w:eastAsia="zh-CN"/>
570
- </w:rPr>
571
- <w:t>}</w:t>
572
- </w:r>
573
- <w:r>
574
- <w:rPr>
575
- <w:rFonts w:hint="eastAsia"/>
576
- <w:lang w:eastAsia="zh-CN"/>
577
- </w:rPr>
578
- <w:t>测试</w:t>
579
- </w:r>
580
- </w:p>
581
- <w:p w14:paraId="7CC6E1F0" w14:textId="44087120" w:rsidR="00342A6D" w:rsidRDefault="00342A6D" w:rsidP="00342A6D">
582
- <w:pPr>
583
- <w:pStyle w:val="ab"/>
584
- <w:spacing w:after="120"/>
585
- <w:rPr>
586
- <w:rFonts w:hint="eastAsia"/>
587
- <w:lang w:eastAsia="zh-CN"/>
588
- </w:rPr>
589
- </w:pPr>
590
- <w:r>
591
- <w:rPr>
592
- <w:rFonts w:hint="eastAsia"/>
593
- <w:lang w:eastAsia="zh-CN"/>
594
- </w:rPr>
595
- <w:t>这是一个单词</w:t>
596
- </w:r>
597
- <w:r>
598
- <w:rPr>
599
- <w:rFonts w:hint="eastAsia"/>
600
- <w:lang w:eastAsia="zh-CN"/>
601
- </w:rPr>
602
- <w:t xml:space="preserve"> {</w:t>
603
- </w:r>
604
- <w:r>
605
- <w:rPr>
606
- <w:rFonts w:hint="eastAsia"/>
607
- <w:lang w:eastAsia="zh-CN"/>
608
- </w:rPr>
609
- <w:t>{</w:t>
610
- </w:r>
611
- <w:r w:rsidR="00F83A84">
612
- <w:rPr>
613
- <w:rFonts w:hint="eastAsia"/>
614
- <w:lang w:eastAsia="zh-CN"/>
615
- </w:rPr>
616
- <w:t>名字</w:t>
617
- </w:r>
618
- <w:r>
619
- <w:rPr>
620
- <w:rFonts w:hint="eastAsia"/>
621
- <w:lang w:eastAsia="zh-CN"/>
622
- </w:rPr>
623
- <w:t>}</w:t>
624
- </w:r>
625
- <w:r>
626
- <w:rPr>
627
- <w:rFonts w:hint="eastAsia"/>
628
- <w:lang w:eastAsia="zh-CN"/>
629
- </w:rPr>
630
- <w:t>}</w:t>
631
- </w:r>
632
- <w:r>
633
- <w:rPr>
634
- <w:rFonts w:hint="eastAsia"/>
635
- <w:lang w:eastAsia="zh-CN"/>
636
- </w:rPr>
637
- <w:t>测试</w:t>
638
- </w:r>
639
- </w:p>
640
- <w:p w14:paraId="2F1200E3" w14:textId="18840EF5" w:rsidR="00F83A84" w:rsidRDefault="00F83A84" w:rsidP="00F83A84">
641
- <w:pPr>
642
- <w:pStyle w:val="ab"/>
643
- <w:spacing w:after="120"/>
644
- <w:rPr>
645
- <w:rFonts w:hint="eastAsia"/>
646
- <w:lang w:eastAsia="zh-CN"/>
647
- </w:rPr>
648
- </w:pPr>
649
- <w:r>
650
- <w:rPr>
651
- <w:rFonts w:hint="eastAsia"/>
652
- <w:lang w:eastAsia="zh-CN"/>
653
- </w:rPr>
654
- <w:t>这是一个单词</w:t>
655
- </w:r>
656
- <w:r>
657
- <w:rPr>
658
- <w:rFonts w:hint="eastAsia"/>
659
- <w:lang w:eastAsia="zh-CN"/>
660
- </w:rPr>
661
- <w:t xml:space="preserve"> </w:t>
662
- </w:r>
663
- <w:r>
664
- <w:rPr>
665
- <w:rFonts w:hint="eastAsia"/>
666
- <w:lang w:eastAsia="zh-CN"/>
667
- </w:rPr>
668
- <w:t>$</w:t>
669
- </w:r>
670
- <w:r>
671
- <w:rPr>
672
- <w:rFonts w:hint="eastAsia"/>
673
- <w:lang w:eastAsia="zh-CN"/>
674
- </w:rPr>
675
- <w:t>名字</w:t>
676
- </w:r>
677
- <w:r>
678
- <w:rPr>
679
- <w:rFonts w:hint="eastAsia"/>
680
- <w:lang w:eastAsia="zh-CN"/>
681
- </w:rPr>
682
- <w:t>$</w:t>
683
- </w:r>
684
- <w:bookmarkStart w:id="0" w:name="_GoBack"/>
685
- <w:bookmarkEnd w:id="0"/>
686
- <w:r>
687
- <w:rPr>
688
- <w:rFonts w:hint="eastAsia"/>
689
- <w:lang w:eastAsia="zh-CN"/>
690
- </w:rPr>
691
- <w:t>测试</w:t>
692
- </w:r>
693
- </w:p>
694
- <w:p w14:paraId="5B2B28AA" w14:textId="27584BF4" w:rsidR="000F595B" w:rsidRDefault="000F595B" w:rsidP="006A0A53">
695
- <w:pPr>
696
- <w:pStyle w:val="ab"/>
697
- <w:spacing w:after="120"/>
698
- <w:rPr>
699
- <w:rFonts w:hint="eastAsia"/>
700
- <w:lang w:eastAsia="zh-CN"/>
701
- </w:rPr>
702
- </w:pPr>
703
- <w:r>
704
- <w:rPr>
705
- <w:rFonts w:hint="eastAsia"/>
706
- <w:lang w:eastAsia="zh-CN"/>
707
- </w:rPr>
708
- <w:t>大家好!</w:t>
709
- </w:r>
710
- </w:p>
711
- <w:p w14:paraId="21C3DFCC" w14:textId="77777777" w:rsidR="006A0A53" w:rsidRDefault="006A0A53" w:rsidP="006A0A53">
712
- <w:pPr>
713
- <w:pStyle w:val="ab"/>
714
- <w:spacing w:after="120"/>
715
- </w:pPr>
716
- <w:r>
717
- <w:rPr>
718
- <w:rFonts w:hint="eastAsia"/>
719
- </w:rPr>
720
- <w:t>当</w:t>
721
- </w:r>
722
- <w:r w:rsidR="00E242DB">
723
- <w:rPr>
724
- <w:rFonts w:hint="eastAsia"/>
725
- </w:rPr>
726
- <w:t>『</w:t>
727
- </w:r>
728
- <w:r w:rsidR="00E242DB">
729
- <w:rPr>
730
- <w:rFonts w:hint="eastAsia"/>
731
- </w:rPr>
732
- <w:t>Name</w:t>
733
- </w:r>
734
- <w:r w:rsidR="00E242DB">
735
- <w:rPr>
736
- <w:rFonts w:hint="eastAsia"/>
737
- </w:rPr>
738
- <w:t>』</w:t>
739
- </w:r>
740
- <w:r>
741
- <w:rPr>
742
- <w:rFonts w:hint="eastAsia"/>
743
- </w:rPr>
744
- <w:t>打开折页册时,这将是他们最先看到的文字,此处是简短扼要地摘要您所提供之产品或服务的好位置。</w:t>
745
- </w:r>
746
- <w:r>
747
- <w:rPr>
748
- <w:rFonts w:hint="eastAsia"/>
749
- </w:rPr>
750
- <w:t xml:space="preserve"> </w:t>
751
- </w:r>
752
- </w:p>
753
- <w:p w14:paraId="726D4702" w14:textId="77777777" w:rsidR="00594A47" w:rsidRDefault="006A0A53" w:rsidP="006A0A53">
754
- <w:pPr>
755
- <w:pStyle w:val="ab"/>
756
- <w:spacing w:after="120"/>
757
- </w:pPr>
758
- <w:r>
759
- <w:rPr>
760
- <w:rFonts w:hint="eastAsia"/>
761
- </w:rPr>
762
- <w:t>尽量以令人信服及引人入胜的方式来叙述这段文字,读者才会想阅读折页册的其他内容。请务必让简介的范围保持精简,如此您才能在折页册的有限篇幅中充分涵盖您所提出的概念。</w:t>
763
- </w:r>
764
- </w:p>
765
- </w:sdtContent>
766
- </w:sdt>
767
- <w:p w14:paraId="654A16E1" w14:textId="77777777" w:rsidR="00594A47" w:rsidRDefault="00AF6251">
768
- <w:pPr>
769
- <w:pStyle w:val="ab"/>
770
- <w:jc w:val="center"/>
771
- </w:pPr>
772
- <w:r>
773
- <w:rPr>
774
- <w:noProof/>
775
- <w:lang w:eastAsia="zh-CN"/>
776
- </w:rPr>
777
- <w:drawing>
778
- <wp:inline distT="0" distB="0" distL="0" distR="0" wp14:anchorId="3280895F" wp14:editId="0822CC38">
779
- <wp:extent cx="5486400" cy="1465118"/>
780
- <wp:effectExtent l="76200" t="50800" r="101600" b="160655"/>
781
- <wp:docPr id="2" name="Diagram 2"/>
782
- <wp:cNvGraphicFramePr/>
783
- <a:graphic xmlns:a="http://schemas.openxmlformats.org/drawingml/2006/main">
784
- <a:graphicData uri="http://schemas.openxmlformats.org/drawingml/2006/diagram">
785
- <dgm:relIds xmlns:dgm="http://schemas.openxmlformats.org/drawingml/2006/diagram" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" r:dm="rId9" r:lo="rId10" r:qs="rId11" r:cs="rId12"/>
786
- </a:graphicData>
787
- </a:graphic>
788
- </wp:inline>
789
- </w:drawing>
790
- </w:r>
791
- </w:p>
792
- <w:sdt>
793
- <w:sdtPr>
794
- <w:id w:val="6002722"/>
795
- <w:placeholder>
796
- <w:docPart w:val="9D2FA0AB6BD32B4481448EBC2C05263C"/>
797
- </w:placeholder>
798
- </w:sdtPr>
799
- <w:sdtEndPr/>
800
- <w:sdtContent>
801
- <w:p w14:paraId="665C9904" w14:textId="77777777" w:rsidR="00594A47" w:rsidRDefault="006A0A53">
802
- <w:pPr>
803
- <w:pStyle w:val="1"/>
804
- </w:pPr>
805
- <w:r>
806
- <w:rPr>
807
- <w:rFonts w:hint="eastAsia"/>
808
- </w:rPr>
809
- <w:t>主题</w:t>
810
- </w:r>
811
- </w:p>
812
- </w:sdtContent>
813
- </w:sdt>
814
- <w:sdt>
815
- <w:sdtPr>
816
- <w:id w:val="6002725"/>
817
- <w:placeholder>
818
- <w:docPart w:val="AD9706BC8998A44B874FC6B4FC2D96D8"/>
819
- </w:placeholder>
820
- </w:sdtPr>
821
- <w:sdtEndPr/>
822
- <w:sdtContent>
823
- <w:p w14:paraId="09672225" w14:textId="77777777" w:rsidR="00594A47" w:rsidRDefault="006A0A53">
824
- <w:pPr>
825
- <w:pStyle w:val="ab"/>
826
- </w:pPr>
827
- <w:r w:rsidRPr="006A0A53">
828
- <w:rPr>
829
- <w:rFonts w:hint="eastAsia"/>
830
- </w:rPr>
831
- <w:t>尽量以令人信服及引人入胜的方式来叙述这段文字,读者才会想阅读折页册的其他内容。请务必让简介的范围保持精简,如此您才能在折页册的有限篇幅中充分涵盖您所提出的概念。</w:t>
832
- </w:r>
833
- </w:p>
834
- </w:sdtContent>
835
- </w:sdt>
836
- <w:tbl>
837
- <w:tblPr>
838
- <w:tblW w:w="5000" w:type="pct"/>
839
- <w:tblCellMar>
840
- <w:left w:w="0" w:type="dxa"/>
841
- <w:right w:w="0" w:type="dxa"/>
842
- </w:tblCellMar>
843
- <w:tblLook w:val="04A0" w:firstRow="1" w:lastRow="0" w:firstColumn="1" w:lastColumn="0" w:noHBand="0" w:noVBand="1"/>
844
- </w:tblPr>
845
- <w:tblGrid>
846
- <w:gridCol w:w="4789"/>
847
- <w:gridCol w:w="4960"/>
848
- </w:tblGrid>
849
- <w:tr w:rsidR="00A20C5E" w14:paraId="7423E7DD" w14:textId="77777777">
850
- <w:tc>
851
- <w:tcPr>
852
- <w:tcW w:w="2500" w:type="pct"/>
853
- </w:tcPr>
854
- <w:tbl>
855
- <w:tblPr>
856
- <w:tblStyle w:val="FinancialTable"/>
857
- <w:tblW w:w="5000" w:type="pct"/>
858
- <w:tblLook w:val="04E0" w:firstRow="1" w:lastRow="1" w:firstColumn="1" w:lastColumn="0" w:noHBand="0" w:noVBand="1"/>
859
- </w:tblPr>
860
- <w:tblGrid>
861
- <w:gridCol w:w="3495"/>
862
- <w:gridCol w:w="1294"/>
863
- </w:tblGrid>
864
- <w:tr w:rsidR="00A20C5E" w14:paraId="4F541305" w14:textId="77777777">
865
- <w:trPr>
866
- <w:cnfStyle w:val="100000000000" w:firstRow="1" w:lastRow="0" w:firstColumn="0" w:lastColumn="0" w:oddVBand="0" w:evenVBand="0" w:oddHBand="0" w:evenHBand="0" w:firstRowFirstColumn="0" w:firstRowLastColumn="0" w:lastRowFirstColumn="0" w:lastRowLastColumn="0"/>
867
- </w:trPr>
868
- <w:sdt>
869
- <w:sdtPr>
870
- <w:id w:val="6002729"/>
871
- <w:placeholder>
872
- <w:docPart w:val="6A0716ED42B0ED4A968C943D6009E1F3"/>
873
- </w:placeholder>
874
- <w:text/>
875
- </w:sdtPr>
876
- <w:sdtEndPr/>
877
- <w:sdtContent>
878
- <w:tc>
879
- <w:tcPr>
880
- <w:tcW w:w="3649" w:type="pct"/>
881
- <w:vAlign w:val="center"/>
882
- </w:tcPr>
883
- <w:p w14:paraId="5495AA4D" w14:textId="77777777" w:rsidR="00594A47" w:rsidRDefault="006A0A53" w:rsidP="006A0A53">
884
- <w:pPr>
885
- <w:pStyle w:val="TableHeading-Left"/>
886
- </w:pPr>
887
- <w:r>
888
- <w:rPr>
889
- <w:rFonts w:hint="eastAsia"/>
890
- </w:rPr>
891
- <w:t>产品</w:t>
892
- </w:r>
893
- </w:p>
894
- </w:tc>
895
- </w:sdtContent>
896
- </w:sdt>
897
- <w:sdt>
898
- <w:sdtPr>
899
- <w:id w:val="6002731"/>
900
- <w:placeholder>
901
- <w:docPart w:val="6752C425EE116F45982743970C77D666"/>
902
- </w:placeholder>
903
- <w:text/>
904
- </w:sdtPr>
905
- <w:sdtEndPr/>
906
- <w:sdtContent>
907
- <w:tc>
908
- <w:tcPr>
909
- <w:tcW w:w="1351" w:type="pct"/>
910
- <w:vAlign w:val="center"/>
911
- </w:tcPr>
912
- <w:p w14:paraId="0CB3230B" w14:textId="77777777" w:rsidR="00594A47" w:rsidRDefault="006A0A53" w:rsidP="006A0A53">
913
- <w:pPr>
914
- <w:pStyle w:val="TableHeading-Center"/>
915
- </w:pPr>
916
- <w:r>
917
- <w:rPr>
918
- <w:rFonts w:hint="eastAsia"/>
919
- </w:rPr>
920
- <w:t>金额</w:t>
921
- </w:r>
922
- </w:p>
923
- </w:tc>
924
- </w:sdtContent>
925
- </w:sdt>
926
- </w:tr>
927
- <w:tr w:rsidR="00A20C5E" w14:paraId="3F8DBCDC" w14:textId="77777777">
928
- <w:sdt>
929
- <w:sdtPr>
930
- <w:id w:val="6002755"/>
931
- <w:placeholder>
932
- <w:docPart w:val="9143B2772504E2448E7489CAABD4B282"/>
933
- </w:placeholder>
934
- <w:text/>
935
- </w:sdtPr>
936
- <w:sdtEndPr/>
937
- <w:sdtContent>
938
- <w:tc>
939
- <w:tcPr>
940
- <w:tcW w:w="3649" w:type="pct"/>
941
- <w:vAlign w:val="center"/>
942
- </w:tcPr>
943
- <w:p w14:paraId="676A7F3B" w14:textId="77777777" w:rsidR="00594A47" w:rsidRDefault="006A0A53" w:rsidP="006A0A53">
944
- <w:pPr>
945
- <w:pStyle w:val="TableText-Left"/>
946
- </w:pPr>
947
- <w:r>
948
- <w:rPr>
949
- <w:rFonts w:hint="eastAsia"/>
950
- </w:rPr>
951
- <w:t>名称</w:t>
952
- </w:r>
953
- </w:p>
954
- </w:tc>
955
- </w:sdtContent>
956
- </w:sdt>
957
- <w:tc>
958
- <w:tcPr>
959
- <w:tcW w:w="1351" w:type="pct"/>
960
- <w:vAlign w:val="center"/>
961
- </w:tcPr>
962
- <w:p w14:paraId="7B9FE128" w14:textId="77777777" w:rsidR="00594A47" w:rsidRDefault="00AF6251">
963
- <w:pPr>
964
- <w:pStyle w:val="TableText-Decimal"/>
965
- </w:pPr>
966
- <w:r>
967
- <w:rPr>
968
- <w:lang w:val="zh-CN"/>
969
- </w:rPr>
970
- <w:t>00.00</w:t>
971
- </w:r>
972
- </w:p>
973
- </w:tc>
974
- </w:tr>
975
- <w:tr w:rsidR="00A20C5E" w14:paraId="68964D18" w14:textId="77777777">
976
- <w:trPr>
977
- <w:cnfStyle w:val="000000010000" w:firstRow="0" w:lastRow="0" w:firstColumn="0" w:lastColumn="0" w:oddVBand="0" w:evenVBand="0" w:oddHBand="0" w:evenHBand="1" w:firstRowFirstColumn="0" w:firstRowLastColumn="0" w:lastRowFirstColumn="0" w:lastRowLastColumn="0"/>
978
- </w:trPr>
979
- <w:sdt>
980
- <w:sdtPr>
981
- <w:id w:val="3192532"/>
982
- <w:placeholder>
983
- <w:docPart w:val="F1939C5D3D47EF45BF6A876827F6F4C6"/>
984
- </w:placeholder>
985
- <w:text/>
986
- </w:sdtPr>
987
- <w:sdtEndPr/>
988
- <w:sdtContent>
989
- <w:tc>
990
- <w:tcPr>
991
- <w:tcW w:w="3649" w:type="pct"/>
992
- <w:vAlign w:val="center"/>
993
- </w:tcPr>
994
- <w:p w14:paraId="3B930B2E" w14:textId="77777777" w:rsidR="00594A47" w:rsidRDefault="006A0A53">
995
- <w:pPr>
996
- <w:pStyle w:val="TableText-Left"/>
997
- </w:pPr>
998
- <w:r>
999
- <w:rPr>
1000
- <w:rFonts w:hint="eastAsia"/>
1001
- </w:rPr>
1002
- <w:t>名称</w:t>
1003
- </w:r>
1004
- </w:p>
1005
- </w:tc>
1006
- </w:sdtContent>
1007
- </w:sdt>
1008
- <w:tc>
1009
- <w:tcPr>
1010
- <w:tcW w:w="1351" w:type="pct"/>
1011
- <w:vAlign w:val="center"/>
1012
- </w:tcPr>
1013
- <w:p w14:paraId="1320B396" w14:textId="77777777" w:rsidR="00594A47" w:rsidRDefault="00AF6251">
1014
- <w:pPr>
1015
- <w:pStyle w:val="TableText-Decimal"/>
1016
- </w:pPr>
1017
- <w:r>
1018
- <w:rPr>
1019
- <w:lang w:val="zh-CN"/>
1020
- </w:rPr>
1021
- <w:t>00.00</w:t>
1022
- </w:r>
1023
- </w:p>
1024
- </w:tc>
1025
- </w:tr>
1026
- <w:tr w:rsidR="00A20C5E" w14:paraId="28E2E5BD" w14:textId="77777777">
1027
- <w:sdt>
1028
- <w:sdtPr>
1029
- <w:id w:val="3192534"/>
1030
- <w:placeholder>
1031
- <w:docPart w:val="CAD47AF63227A146AE9BDED7F7274FA6"/>
1032
- </w:placeholder>
1033
- <w:text/>
1034
- </w:sdtPr>
1035
- <w:sdtEndPr/>
1036
- <w:sdtContent>
1037
- <w:tc>
1038
- <w:tcPr>
1039
- <w:tcW w:w="3649" w:type="pct"/>
1040
- <w:vAlign w:val="center"/>
1041
- </w:tcPr>
1042
- <w:p w14:paraId="6918761F" w14:textId="77777777" w:rsidR="00594A47" w:rsidRDefault="006A0A53">
1043
- <w:pPr>
1044
- <w:pStyle w:val="TableText-Left"/>
1045
- </w:pPr>
1046
- <w:r>
1047
- <w:rPr>
1048
- <w:rFonts w:hint="eastAsia"/>
1049
- </w:rPr>
1050
- <w:t>名称</w:t>
1051
- </w:r>
1052
- </w:p>
1053
- </w:tc>
1054
- </w:sdtContent>
1055
- </w:sdt>
1056
- <w:tc>
1057
- <w:tcPr>
1058
- <w:tcW w:w="1351" w:type="pct"/>
1059
- <w:vAlign w:val="center"/>
1060
- </w:tcPr>
1061
- <w:p w14:paraId="6A786C62" w14:textId="77777777" w:rsidR="00594A47" w:rsidRDefault="00AF6251">
1062
- <w:pPr>
1063
- <w:pStyle w:val="TableText-Decimal"/>
1064
- </w:pPr>
1065
- <w:r>
1066
- <w:rPr>
1067
- <w:lang w:val="zh-CN"/>
1068
- </w:rPr>
1069
- <w:t>00.00</w:t>
1070
- </w:r>
1071
- </w:p>
1072
- </w:tc>
1073
- </w:tr>
1074
- <w:tr w:rsidR="00A20C5E" w14:paraId="62796633" w14:textId="77777777">
1075
- <w:trPr>
1076
- <w:cnfStyle w:val="000000010000" w:firstRow="0" w:lastRow="0" w:firstColumn="0" w:lastColumn="0" w:oddVBand="0" w:evenVBand="0" w:oddHBand="0" w:evenHBand="1" w:firstRowFirstColumn="0" w:firstRowLastColumn="0" w:lastRowFirstColumn="0" w:lastRowLastColumn="0"/>
1077
- </w:trPr>
1078
- <w:sdt>
1079
- <w:sdtPr>
1080
- <w:id w:val="3192536"/>
1081
- <w:placeholder>
1082
- <w:docPart w:val="28B4A119AA4C1C4B8F98011800FA218D"/>
1083
- </w:placeholder>
1084
- <w:text/>
1085
- </w:sdtPr>
1086
- <w:sdtEndPr/>
1087
- <w:sdtContent>
1088
- <w:tc>
1089
- <w:tcPr>
1090
- <w:tcW w:w="3649" w:type="pct"/>
1091
- <w:vAlign w:val="center"/>
1092
- </w:tcPr>
1093
- <w:p w14:paraId="239439FC" w14:textId="77777777" w:rsidR="00594A47" w:rsidRDefault="006A0A53">
1094
- <w:pPr>
1095
- <w:pStyle w:val="TableText-Left"/>
1096
- </w:pPr>
1097
- <w:r>
1098
- <w:rPr>
1099
- <w:rFonts w:hint="eastAsia"/>
1100
- </w:rPr>
1101
- <w:t>名称</w:t>
1102
- </w:r>
1103
- </w:p>
1104
- </w:tc>
1105
- </w:sdtContent>
1106
- </w:sdt>
1107
- <w:tc>
1108
- <w:tcPr>
1109
- <w:tcW w:w="1351" w:type="pct"/>
1110
- <w:vAlign w:val="center"/>
1111
- </w:tcPr>
1112
- <w:p w14:paraId="0881467A" w14:textId="77777777" w:rsidR="00594A47" w:rsidRDefault="00AF6251">
1113
- <w:pPr>
1114
- <w:pStyle w:val="TableText-Decimal"/>
1115
- </w:pPr>
1116
- <w:r>
1117
- <w:rPr>
1118
- <w:lang w:val="zh-CN"/>
1119
- </w:rPr>
1120
- <w:t>00.00</w:t>
1121
- </w:r>
1122
- </w:p>
1123
- </w:tc>
1124
- </w:tr>
1125
- <w:tr w:rsidR="00A20C5E" w14:paraId="4208A2DA" w14:textId="77777777">
1126
- <w:sdt>
1127
- <w:sdtPr>
1128
- <w:id w:val="3192538"/>
1129
- <w:placeholder>
1130
- <w:docPart w:val="5A47A360745A4F47A8F424E05EECD15A"/>
1131
- </w:placeholder>
1132
- <w:text/>
1133
- </w:sdtPr>
1134
- <w:sdtEndPr/>
1135
- <w:sdtContent>
1136
- <w:tc>
1137
- <w:tcPr>
1138
- <w:tcW w:w="3649" w:type="pct"/>
1139
- <w:vAlign w:val="center"/>
1140
- </w:tcPr>
1141
- <w:p w14:paraId="66528EFD" w14:textId="77777777" w:rsidR="00594A47" w:rsidRDefault="006A0A53">
1142
- <w:pPr>
1143
- <w:pStyle w:val="TableText-Left"/>
1144
- </w:pPr>
1145
- <w:r>
1146
- <w:rPr>
1147
- <w:rFonts w:hint="eastAsia"/>
1148
- </w:rPr>
1149
- <w:t>名称</w:t>
1150
- </w:r>
1151
- </w:p>
1152
- </w:tc>
1153
- </w:sdtContent>
1154
- </w:sdt>
1155
- <w:tc>
1156
- <w:tcPr>
1157
- <w:tcW w:w="1351" w:type="pct"/>
1158
- <w:vAlign w:val="center"/>
1159
- </w:tcPr>
1160
- <w:p w14:paraId="08445F4C" w14:textId="77777777" w:rsidR="00594A47" w:rsidRDefault="00AF6251">
1161
- <w:pPr>
1162
- <w:pStyle w:val="TableText-Decimal"/>
1163
- </w:pPr>
1164
- <w:r>
1165
- <w:rPr>
1166
- <w:lang w:val="zh-CN"/>
1167
- </w:rPr>
1168
- <w:t>000.00</w:t>
1169
- </w:r>
1170
- </w:p>
1171
- </w:tc>
1172
- </w:tr>
1173
- <w:tr w:rsidR="00A20C5E" w14:paraId="62BC15C0" w14:textId="77777777">
1174
- <w:trPr>
1175
- <w:cnfStyle w:val="000000010000" w:firstRow="0" w:lastRow="0" w:firstColumn="0" w:lastColumn="0" w:oddVBand="0" w:evenVBand="0" w:oddHBand="0" w:evenHBand="1" w:firstRowFirstColumn="0" w:firstRowLastColumn="0" w:lastRowFirstColumn="0" w:lastRowLastColumn="0"/>
1176
- </w:trPr>
1177
- <w:sdt>
1178
- <w:sdtPr>
1179
- <w:id w:val="3192540"/>
1180
- <w:placeholder>
1181
- <w:docPart w:val="A3A5BB8E9A45E043A07304D32878D615"/>
1182
- </w:placeholder>
1183
- <w:text/>
1184
- </w:sdtPr>
1185
- <w:sdtEndPr/>
1186
- <w:sdtContent>
1187
- <w:tc>
1188
- <w:tcPr>
1189
- <w:tcW w:w="3649" w:type="pct"/>
1190
- <w:vAlign w:val="center"/>
1191
- </w:tcPr>
1192
- <w:p w14:paraId="605C6088" w14:textId="77777777" w:rsidR="00594A47" w:rsidRDefault="006A0A53">
1193
- <w:pPr>
1194
- <w:pStyle w:val="TableText-Left"/>
1195
- </w:pPr>
1196
- <w:r>
1197
- <w:rPr>
1198
- <w:rFonts w:hint="eastAsia"/>
1199
- </w:rPr>
1200
- <w:t>名称</w:t>
1201
- </w:r>
1202
- </w:p>
1203
- </w:tc>
1204
- </w:sdtContent>
1205
- </w:sdt>
1206
- <w:tc>
1207
- <w:tcPr>
1208
- <w:tcW w:w="1351" w:type="pct"/>
1209
- <w:vAlign w:val="center"/>
1210
- </w:tcPr>
1211
- <w:p w14:paraId="52F02B5B" w14:textId="77777777" w:rsidR="00594A47" w:rsidRDefault="00AF6251">
1212
- <w:pPr>
1213
- <w:pStyle w:val="TableText-Decimal"/>
1214
- </w:pPr>
1215
- <w:r>
1216
- <w:rPr>
1217
- <w:lang w:val="zh-CN"/>
1218
- </w:rPr>
1219
- <w:t>00.00</w:t>
1220
- </w:r>
1221
- </w:p>
1222
- </w:tc>
1223
- </w:tr>
1224
- <w:tr w:rsidR="00A20C5E" w14:paraId="71C5C676" w14:textId="77777777">
1225
- <w:sdt>
1226
- <w:sdtPr>
1227
- <w:id w:val="3192542"/>
1228
- <w:placeholder>
1229
- <w:docPart w:val="C30AB6F41730EB4AAB09208F76B73374"/>
1230
- </w:placeholder>
1231
- <w:text/>
1232
- </w:sdtPr>
1233
- <w:sdtEndPr/>
1234
- <w:sdtContent>
1235
- <w:tc>
1236
- <w:tcPr>
1237
- <w:tcW w:w="3649" w:type="pct"/>
1238
- <w:vAlign w:val="center"/>
1239
- </w:tcPr>
1240
- <w:p w14:paraId="649B62D4" w14:textId="77777777" w:rsidR="00594A47" w:rsidRDefault="006A0A53">
1241
- <w:pPr>
1242
- <w:pStyle w:val="TableText-Left"/>
1243
- </w:pPr>
1244
- <w:r>
1245
- <w:rPr>
1246
- <w:rFonts w:hint="eastAsia"/>
1247
- </w:rPr>
1248
- <w:t>名称</w:t>
1249
- </w:r>
1250
- </w:p>
1251
- </w:tc>
1252
- </w:sdtContent>
1253
- </w:sdt>
1254
- <w:tc>
1255
- <w:tcPr>
1256
- <w:tcW w:w="1351" w:type="pct"/>
1257
- <w:vAlign w:val="center"/>
1258
- </w:tcPr>
1259
- <w:p w14:paraId="382B576D" w14:textId="77777777" w:rsidR="00594A47" w:rsidRDefault="00AF6251">
1260
- <w:pPr>
1261
- <w:pStyle w:val="TableText-Decimal"/>
1262
- </w:pPr>
1263
- <w:r>
1264
- <w:rPr>
1265
- <w:lang w:val="zh-CN"/>
1266
- </w:rPr>
1267
- <w:t>00.00</w:t>
1268
- </w:r>
1269
- </w:p>
1270
- </w:tc>
1271
- </w:tr>
1272
- <w:tr w:rsidR="00A20C5E" w14:paraId="00B7F4EA" w14:textId="77777777">
1273
- <w:trPr>
1274
- <w:cnfStyle w:val="010000000000" w:firstRow="0" w:lastRow="1" w:firstColumn="0" w:lastColumn="0" w:oddVBand="0" w:evenVBand="0" w:oddHBand="0" w:evenHBand="0" w:firstRowFirstColumn="0" w:firstRowLastColumn="0" w:lastRowFirstColumn="0" w:lastRowLastColumn="0"/>
1275
- </w:trPr>
1276
- <w:tc>
1277
- <w:tcPr>
1278
- <w:tcW w:w="3649" w:type="pct"/>
1279
- <w:vAlign w:val="center"/>
1280
- </w:tcPr>
1281
- <w:p w14:paraId="4B5BA337" w14:textId="77777777" w:rsidR="00594A47" w:rsidRDefault="00AF6251">
1282
- <w:pPr>
1283
- <w:pStyle w:val="TableText-Right"/>
1284
- </w:pPr>
1285
- <w:r>
1286
- <w:rPr>
1287
- <w:lang w:val="zh-CN"/>
1288
- </w:rPr>
1289
- <w:t>总计</w:t>
1290
- </w:r>
1291
- </w:p>
1292
- </w:tc>
1293
- <w:tc>
1294
- <w:tcPr>
1295
- <w:tcW w:w="1351" w:type="pct"/>
1296
- <w:vAlign w:val="center"/>
1297
- </w:tcPr>
1298
- <w:p w14:paraId="159142AF" w14:textId="77777777" w:rsidR="00594A47" w:rsidRDefault="00AF6251">
1299
- <w:pPr>
1300
- <w:pStyle w:val="TableText-Decimal"/>
1301
- </w:pPr>
1302
- <w:r>
1303
- <w:rPr>
1304
- <w:lang w:val="zh-CN"/>
1305
- </w:rPr>
1306
- <w:t>0,000.00</w:t>
1307
- </w:r>
1308
- </w:p>
1309
- </w:tc>
1310
- </w:tr>
1311
- </w:tbl>
1312
- <w:p w14:paraId="2C3B7779" w14:textId="77777777" w:rsidR="00594A47" w:rsidRDefault="00594A47">
1313
- <w:pPr>
1314
- <w:pStyle w:val="ab"/>
1315
- <w:spacing w:before="200"/>
1316
- </w:pPr>
1317
- </w:p>
1318
- </w:tc>
1319
- <w:tc>
1320
- <w:tcPr>
1321
- <w:tcW w:w="2500" w:type="pct"/>
1322
- </w:tcPr>
1323
- <w:p w14:paraId="006314DC" w14:textId="77777777" w:rsidR="00594A47" w:rsidRDefault="00AF6251">
1324
- <w:r>
1325
- <w:rPr>
1326
- <w:noProof/>
1327
- <w:lang w:eastAsia="zh-CN"/>
1328
- </w:rPr>
1329
- <w:drawing>
1330
- <wp:inline distT="0" distB="0" distL="0" distR="0" wp14:anchorId="3A01377E" wp14:editId="5BBAAA9F">
1331
- <wp:extent cx="3148330" cy="1700048"/>
1332
- <wp:effectExtent l="0" t="0" r="1270" b="1905"/>
1333
- <wp:docPr id="3" name="Chart 3"/>
1334
- <wp:cNvGraphicFramePr/>
1335
- <a:graphic xmlns:a="http://schemas.openxmlformats.org/drawingml/2006/main">
1336
- <a:graphicData uri="http://schemas.openxmlformats.org/drawingml/2006/chart">
1337
- <c:chart xmlns:c="http://schemas.openxmlformats.org/drawingml/2006/chart" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" r:id="rId14"/>
1338
- </a:graphicData>
1339
- </a:graphic>
1340
- </wp:inline>
1341
- </w:drawing>
1342
- </w:r>
1343
- </w:p>
1344
- </w:tc>
1345
- </w:tr>
1346
- </w:tbl>
1347
- <w:sdt>
1348
- <w:sdtPr>
1349
- <w:id w:val="6002743"/>
1350
- <w:placeholder>
1351
- <w:docPart w:val="EF8DCCD28DE7CF4FBD598CB9B6B98E3D"/>
1352
- </w:placeholder>
1353
- </w:sdtPr>
1354
- <w:sdtEndPr/>
1355
- <w:sdtContent>
1356
- <w:p w14:paraId="20830ABA" w14:textId="77777777" w:rsidR="00594A47" w:rsidRDefault="006A0A53">
1357
- <w:pPr>
1358
- <w:pStyle w:val="ab"/>
1359
- <w:spacing w:before="200"/>
1360
- </w:pPr>
1361
- <w:r w:rsidRPr="006A0A53">
1362
- <w:rPr>
1363
- <w:rFonts w:hint="eastAsia"/>
1364
- </w:rPr>
1365
- <w:t>尽量以令人信服及引人入胜的方式来叙述这段文字,读者才会想阅读折页册的其他内容。请务必让简介的范围保持精简,如此您才能在折页册的有限篇幅中充分涵盖您所提出的概念。</w:t>
1366
- </w:r>
1367
- </w:p>
1368
- </w:sdtContent>
1369
- </w:sdt>
1370
- <w:p w14:paraId="5E3F4E5F" w14:textId="77777777" w:rsidR="00594A47" w:rsidRDefault="00594A47"/>
1371
- <w:sectPr w:rsidR="00594A47" w:rsidSect="00594A47">
1372
- <w:headerReference w:type="even" r:id="rId15"/>
1373
- <w:headerReference w:type="default" r:id="rId16"/>
1374
- <w:footerReference w:type="default" r:id="rId17"/>
1375
- <w:headerReference w:type="first" r:id="rId18"/>
1376
- <w:pgSz w:w="11909" w:h="16834" w:code="9"/>
1377
- <w:pgMar w:top="720" w:right="1080" w:bottom="432" w:left="1080" w:header="720" w:footer="432" w:gutter="0"/>
1378
- <w:cols w:space="720"/>
1379
- <w:titlePg/>
1380
- <w:docGrid w:linePitch="360"/>
1381
- </w:sectPr>
1382
- </w:body>
1383
- </w:document>