@blocknote/xl-docx-exporter 0.19.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +661 -0
- package/dist/Inter_18pt-Regular-byxnNS-8.js +5 -0
- package/dist/Inter_18pt-Regular-byxnNS-8.js.map +1 -0
- package/dist/blocknote-xl-docx-exporter.js +381 -0
- package/dist/blocknote-xl-docx-exporter.js.map +1 -0
- package/dist/blocknote-xl-docx-exporter.umd.cjs +991 -0
- package/dist/blocknote-xl-docx-exporter.umd.cjs.map +1 -0
- package/dist/styles-CcdeAskf.js +994 -0
- package/dist/styles-CcdeAskf.js.map +1 -0
- package/dist/webpack-stats.json +1 -0
- package/package.json +80 -0
- package/src/docx/__snapshots__/basic/document.xml +685 -0
- package/src/docx/__snapshots__/basic/styles.xml +960 -0
- package/src/docx/__snapshots__/withCustomOptions/core.xml +14 -0
- package/src/docx/__snapshots__/withCustomOptions/document.xml.rels +17 -0
- package/src/docx/__snapshots__/withCustomOptions/footer1.xml +8 -0
- package/src/docx/__snapshots__/withCustomOptions/header1.xml +8 -0
- package/src/docx/defaultSchema/blocks.ts +222 -0
- package/src/docx/defaultSchema/index.ts +9 -0
- package/src/docx/defaultSchema/inlinecontent.ts +29 -0
- package/src/docx/defaultSchema/styles.ts +73 -0
- package/src/docx/docxExporter.test.ts +118 -0
- package/src/docx/docxExporter.ts +269 -0
- package/src/docx/imageUtil.ts +21 -0
- package/src/docx/index.ts +2 -0
- package/src/docx/template/[Content_Types].xml +22 -0
- package/src/docx/template/_rels/.rels +2 -0
- package/src/docx/template/docProps/app.xml +35 -0
- package/src/docx/template/docProps/core.xml +16 -0
- package/src/docx/template/template blocknote.docx +0 -0
- package/src/docx/template/word/_rels/document.xml.rels +24 -0
- package/src/docx/template/word/document.xml +325 -0
- package/src/docx/template/word/fontTable.xml +2 -0
- package/src/docx/template/word/media/image1.jpeg +0 -0
- package/src/docx/template/word/settings.xml +71 -0
- package/src/docx/template/word/styles.xml +990 -0
- package/src/docx/template/word/theme/theme1.xml +2 -0
- package/src/docx/template/word/webSettings.xml +2 -0
- package/src/docx/util/Table.tsx +43 -0
- package/src/index.ts +1 -0
- package/src/vite-env.d.ts +11 -0
- package/types/src/Exporter.d.ts +26 -0
- package/types/src/context/BlockNoteContext.d.ts +59 -0
- package/types/src/context/BlockNoteContext.test.d.ts +1 -0
- package/types/src/context/ServerBlockNoteEditor.d.ts +137 -0
- package/types/src/context/ServerBlockNoteEditor.test.d.ts +1 -0
- package/types/src/context/react/ReactServer.test.d.ts +2 -0
- package/types/src/docx/blocks.d.ts +433 -0
- package/types/src/docx/defaultSchema/blocks.d.ts +3 -0
- package/types/src/docx/defaultSchema/index.d.ts +559 -0
- package/types/src/docx/defaultSchema/inlinecontent.d.ts +3 -0
- package/types/src/docx/defaultSchema/styles.d.ts +3 -0
- package/types/src/docx/docxExporter.d.ts +53 -0
- package/types/src/docx/docxExporter.test.d.ts +1 -0
- package/types/src/docx/imageUtil.d.ts +4 -0
- package/types/src/docx/index.d.ts +2 -0
- package/types/src/docx/inlinecontent.d.ts +12 -0
- package/types/src/docx/styles.d.ts +55 -0
- package/types/src/docx/util/Table.d.ts +3 -0
- package/types/src/docxExporter.d.ts +255 -0
- package/types/src/docxExporter.test.d.ts +1 -0
- package/types/src/index.d.ts +1 -0
- package/types/src/mapping.d.ts +29 -0
- package/types/src/pdf/blocks.d.ts +434 -0
- package/types/src/pdf/defaultSchema/blocks.d.ts +5 -0
- package/types/src/pdf/defaultSchema/index.d.ts +510 -0
- package/types/src/pdf/defaultSchema/inlinecontent.d.ts +5 -0
- package/types/src/pdf/defaultSchema/styles.d.ts +4 -0
- package/types/src/pdf/index.d.ts +2 -0
- package/types/src/pdf/inlinecontent.d.ts +13 -0
- package/types/src/pdf/pdfExporter.d.ts +35 -0
- package/types/src/pdf/pdfExporter.test.d.ts +1 -0
- package/types/src/pdf/styles.d.ts +55 -0
- package/types/src/pdf/types.d.ts +2 -0
- package/types/src/pdf/util/listItem.d.ts +9 -0
- package/types/src/pdf/util/loadFontDataUrl.d.ts +3 -0
- package/types/src/pdf/util/table/Table.d.ts +6 -0
- package/types/src/pdfExporter.d.ts +256 -0
- package/types/src/pdfExporter.test.d.ts +1 -0
- package/types/src/react-email/defaultSchema/blocks.d.ts +5 -0
- package/types/src/react-email/defaultSchema/index.d.ts +560 -0
- package/types/src/react-email/defaultSchema/inlinecontent.d.ts +5 -0
- package/types/src/react-email/defaultSchema/styles.d.ts +4 -0
- package/types/src/react-email/reactEmailExporter.d.ts +13 -0
- package/types/src/react-email/reactEmailExporter.test.d.ts +8 -0
- package/types/src/testDocument.d.ts +505 -0
- package/types/src/transformer.d.ts +20 -0
- package/types/src/util/fileUtil.d.ts +22 -0
- package/types/src/util/imageUtil.d.ts +4 -0
- package/types/src/yjs/index.d.ts +2 -0
|
@@ -0,0 +1,325 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
|
2
|
+
<w:document xmlns:wpc="http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas"
|
|
3
|
+
xmlns:cx="http://schemas.microsoft.com/office/drawing/2014/chartex"
|
|
4
|
+
xmlns:cx1="http://schemas.microsoft.com/office/drawing/2015/9/8/chartex"
|
|
5
|
+
xmlns:cx2="http://schemas.microsoft.com/office/drawing/2015/10/21/chartex"
|
|
6
|
+
xmlns:cx3="http://schemas.microsoft.com/office/drawing/2016/5/9/chartex"
|
|
7
|
+
xmlns:cx4="http://schemas.microsoft.com/office/drawing/2016/5/10/chartex"
|
|
8
|
+
xmlns:cx5="http://schemas.microsoft.com/office/drawing/2016/5/11/chartex"
|
|
9
|
+
xmlns:cx6="http://schemas.microsoft.com/office/drawing/2016/5/12/chartex"
|
|
10
|
+
xmlns:cx7="http://schemas.microsoft.com/office/drawing/2016/5/13/chartex"
|
|
11
|
+
xmlns:cx8="http://schemas.microsoft.com/office/drawing/2016/5/14/chartex"
|
|
12
|
+
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
13
|
+
xmlns:aink="http://schemas.microsoft.com/office/drawing/2016/ink"
|
|
14
|
+
xmlns:am3d="http://schemas.microsoft.com/office/drawing/2017/model3d"
|
|
15
|
+
xmlns:o="urn:schemas-microsoft-com:office:office"
|
|
16
|
+
xmlns:oel="http://schemas.microsoft.com/office/2019/extlst"
|
|
17
|
+
xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships"
|
|
18
|
+
xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math"
|
|
19
|
+
xmlns:v="urn:schemas-microsoft-com:vml"
|
|
20
|
+
xmlns:wp14="http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing"
|
|
21
|
+
xmlns:wp="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing"
|
|
22
|
+
xmlns:w10="urn:schemas-microsoft-com:office:word"
|
|
23
|
+
xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"
|
|
24
|
+
xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml"
|
|
25
|
+
xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml"
|
|
26
|
+
xmlns:w16cex="http://schemas.microsoft.com/office/word/2018/wordml/cex"
|
|
27
|
+
xmlns:w16cid="http://schemas.microsoft.com/office/word/2016/wordml/cid"
|
|
28
|
+
xmlns:w16="http://schemas.microsoft.com/office/word/2018/wordml"
|
|
29
|
+
xmlns:w16du="http://schemas.microsoft.com/office/word/2023/wordml/word16du"
|
|
30
|
+
xmlns:w16sdtdh="http://schemas.microsoft.com/office/word/2020/wordml/sdtdatahash"
|
|
31
|
+
xmlns:w16se="http://schemas.microsoft.com/office/word/2015/wordml/symex"
|
|
32
|
+
xmlns:wpg="http://schemas.microsoft.com/office/word/2010/wordprocessingGroup"
|
|
33
|
+
xmlns:wpi="http://schemas.microsoft.com/office/word/2010/wordprocessingInk"
|
|
34
|
+
xmlns:wne="http://schemas.microsoft.com/office/word/2006/wordml"
|
|
35
|
+
xmlns:wps="http://schemas.microsoft.com/office/word/2010/wordprocessingShape"
|
|
36
|
+
mc:Ignorable="w14 w15 w16se w16cid w16 w16cex w16sdtdh w16du wp14">
|
|
37
|
+
<w:body>
|
|
38
|
+
<w:p w14:paraId="35EB9E06" w14:textId="5011DD7A" w:rsidR="005B06B8"
|
|
39
|
+
w:rsidRDefault="005B06B8" w:rsidP="005B06B8">
|
|
40
|
+
<w:pPr>
|
|
41
|
+
<w:rPr>
|
|
42
|
+
<w:lang w:val="nl-NL" />
|
|
43
|
+
</w:rPr>
|
|
44
|
+
</w:pPr>
|
|
45
|
+
<w:proofErr w:type="spellStart" />
|
|
46
|
+
<w:r>
|
|
47
|
+
<w:rPr>
|
|
48
|
+
<w:lang w:val="nl-NL" />
|
|
49
|
+
</w:rPr>
|
|
50
|
+
<w:t>Fdsfsf</w:t>
|
|
51
|
+
</w:r>
|
|
52
|
+
<w:proofErr w:type="spellEnd" />
|
|
53
|
+
</w:p>
|
|
54
|
+
<w:p w14:paraId="29250D32" w14:textId="643BF791" w:rsidR="005B06B8"
|
|
55
|
+
w:rsidRDefault="005B06B8" w:rsidP="005B06B8">
|
|
56
|
+
<w:pPr>
|
|
57
|
+
<w:rPr>
|
|
58
|
+
<w:lang w:val="nl-NL" />
|
|
59
|
+
</w:rPr>
|
|
60
|
+
</w:pPr>
|
|
61
|
+
<w:proofErr w:type="spellStart" />
|
|
62
|
+
<w:r>
|
|
63
|
+
<w:rPr>
|
|
64
|
+
<w:lang w:val="nl-NL" />
|
|
65
|
+
</w:rPr>
|
|
66
|
+
<w:t>Dsfsfdf</w:t>
|
|
67
|
+
</w:r>
|
|
68
|
+
<w:proofErr w:type="spellEnd" />
|
|
69
|
+
</w:p>
|
|
70
|
+
<w:p w14:paraId="39B58116" w14:textId="7189F38E" w:rsidR="005B06B8"
|
|
71
|
+
w:rsidRDefault="005B06B8" w:rsidP="005B06B8">
|
|
72
|
+
<w:pPr>
|
|
73
|
+
<w:rPr>
|
|
74
|
+
<w:lang w:val="nl-NL" />
|
|
75
|
+
</w:rPr>
|
|
76
|
+
</w:pPr>
|
|
77
|
+
<w:proofErr w:type="spellStart" />
|
|
78
|
+
<w:r>
|
|
79
|
+
<w:rPr>
|
|
80
|
+
<w:lang w:val="nl-NL" />
|
|
81
|
+
</w:rPr>
|
|
82
|
+
<w:t>Sdfsdfsdfsdf</w:t>
|
|
83
|
+
</w:r>
|
|
84
|
+
<w:proofErr w:type="spellEnd" />
|
|
85
|
+
</w:p>
|
|
86
|
+
<w:p w14:paraId="6A1E7E66" w14:textId="77777777" w:rsidR="005B06B8"
|
|
87
|
+
w:rsidRDefault="005B06B8" w:rsidP="005B06B8">
|
|
88
|
+
<w:pPr>
|
|
89
|
+
<w:rPr>
|
|
90
|
+
<w:lang w:val="nl-NL" />
|
|
91
|
+
</w:rPr>
|
|
92
|
+
</w:pPr>
|
|
93
|
+
<w:proofErr w:type="spellStart" />
|
|
94
|
+
<w:r>
|
|
95
|
+
<w:rPr>
|
|
96
|
+
<w:lang w:val="nl-NL" />
|
|
97
|
+
</w:rPr>
|
|
98
|
+
<w:t>Sdfsdfdfsdfsdfsfsdfsdf</w:t>
|
|
99
|
+
</w:r>
|
|
100
|
+
<w:proofErr w:type="spellEnd" />
|
|
101
|
+
<w:r w:rsidRPr="005B06B8">
|
|
102
|
+
<w:rPr>
|
|
103
|
+
<w:lang w:val="nl-NL" />
|
|
104
|
+
</w:rPr>
|
|
105
|
+
<w:t xml:space="preserve"> </w:t>
|
|
106
|
+
</w:r>
|
|
107
|
+
<w:proofErr w:type="spellStart" />
|
|
108
|
+
<w:r>
|
|
109
|
+
<w:rPr>
|
|
110
|
+
<w:lang w:val="nl-NL" />
|
|
111
|
+
</w:rPr>
|
|
112
|
+
<w:t>Sdfsdfdfsdfsdfsfsdfsdf</w:t>
|
|
113
|
+
</w:r>
|
|
114
|
+
<w:proofErr w:type="spellEnd" />
|
|
115
|
+
<w:r w:rsidRPr="005B06B8">
|
|
116
|
+
<w:rPr>
|
|
117
|
+
<w:lang w:val="nl-NL" />
|
|
118
|
+
</w:rPr>
|
|
119
|
+
<w:t xml:space="preserve"> </w:t>
|
|
120
|
+
</w:r>
|
|
121
|
+
<w:proofErr w:type="spellStart" />
|
|
122
|
+
<w:r>
|
|
123
|
+
<w:rPr>
|
|
124
|
+
<w:lang w:val="nl-NL" />
|
|
125
|
+
</w:rPr>
|
|
126
|
+
<w:t>Sdfsdfdfsdfsdfsfsdfs</w:t>
|
|
127
|
+
</w:r>
|
|
128
|
+
<w:proofErr w:type="spellEnd" />
|
|
129
|
+
<w:r w:rsidRPr="005B06B8">
|
|
130
|
+
<w:rPr>
|
|
131
|
+
<w:lang w:val="nl-NL" />
|
|
132
|
+
</w:rPr>
|
|
133
|
+
<w:t xml:space="preserve"> </w:t>
|
|
134
|
+
</w:r>
|
|
135
|
+
<w:proofErr w:type="spellStart" />
|
|
136
|
+
<w:r>
|
|
137
|
+
<w:rPr>
|
|
138
|
+
<w:lang w:val="nl-NL" />
|
|
139
|
+
</w:rPr>
|
|
140
|
+
<w:t>Sdfsdfdfsdfsdfsfsdfsdf</w:t>
|
|
141
|
+
</w:r>
|
|
142
|
+
<w:proofErr w:type="spellEnd" />
|
|
143
|
+
<w:r w:rsidRPr="005B06B8">
|
|
144
|
+
<w:rPr>
|
|
145
|
+
<w:lang w:val="nl-NL" />
|
|
146
|
+
</w:rPr>
|
|
147
|
+
<w:t xml:space="preserve"> </w:t>
|
|
148
|
+
</w:r>
|
|
149
|
+
<w:proofErr w:type="spellStart" />
|
|
150
|
+
<w:r>
|
|
151
|
+
<w:rPr>
|
|
152
|
+
<w:lang w:val="nl-NL" />
|
|
153
|
+
</w:rPr>
|
|
154
|
+
<w:t>Sdfsdfdfsdfsdfsfsdfsdf</w:t>
|
|
155
|
+
</w:r>
|
|
156
|
+
<w:proofErr w:type="spellEnd" />
|
|
157
|
+
</w:p>
|
|
158
|
+
<w:p w14:paraId="0C617DBD" w14:textId="1E9AEF48" w:rsidR="005B06B8" w:rsidRPr="005B06B8"
|
|
159
|
+
w:rsidRDefault="005B06B8" w:rsidP="005B06B8">
|
|
160
|
+
<w:pPr>
|
|
161
|
+
<w:rPr>
|
|
162
|
+
<w:lang w:val="nl-NL" />
|
|
163
|
+
</w:rPr>
|
|
164
|
+
</w:pPr>
|
|
165
|
+
<w:r>
|
|
166
|
+
<w:rPr>
|
|
167
|
+
<w:lang w:val="nl-NL" />
|
|
168
|
+
</w:rPr>
|
|
169
|
+
<w:t xml:space="preserve">New </w:t>
|
|
170
|
+
</w:r>
|
|
171
|
+
<w:hyperlink r:id="rId4" w:history="1">
|
|
172
|
+
<w:r w:rsidRPr="00F64863">
|
|
173
|
+
<w:rPr>
|
|
174
|
+
<w:rStyle w:val="Hyperlink" />
|
|
175
|
+
<w:lang w:val="nl-NL" />
|
|
176
|
+
</w:rPr>
|
|
177
|
+
<w:t>block</w:t>
|
|
178
|
+
</w:r>
|
|
179
|
+
</w:hyperlink>
|
|
180
|
+
</w:p>
|
|
181
|
+
<w:p w14:paraId="04113760" w14:textId="13217F8C" w:rsidR="005B06B8" w:rsidRPr="005B06B8"
|
|
182
|
+
w:rsidRDefault="005B06B8" w:rsidP="00996C0B">
|
|
183
|
+
<w:pPr>
|
|
184
|
+
<w:rPr>
|
|
185
|
+
<w:lang w:val="nl-NL" />
|
|
186
|
+
</w:rPr>
|
|
187
|
+
</w:pPr>
|
|
188
|
+
</w:p>
|
|
189
|
+
<w:p w14:paraId="77F67AA5" w14:textId="6CCD209A" w:rsidR="00996C0B"
|
|
190
|
+
w:rsidRDefault="00996C0B" w:rsidP="00996C0B">
|
|
191
|
+
<w:pPr>
|
|
192
|
+
<w:pStyle w:val="Heading1" />
|
|
193
|
+
</w:pPr>
|
|
194
|
+
<w:r>
|
|
195
|
+
<w:t>Title</w:t>
|
|
196
|
+
</w:r>
|
|
197
|
+
</w:p>
|
|
198
|
+
<w:p w14:paraId="0CA94C06" w14:textId="606BBD69" w:rsidR="00996C0B"
|
|
199
|
+
w:rsidRDefault="00F64863" w:rsidP="00996C0B">
|
|
200
|
+
<w:pPr>
|
|
201
|
+
<w:rPr>
|
|
202
|
+
<w:lang w:val="nl-NL" />
|
|
203
|
+
</w:rPr>
|
|
204
|
+
</w:pPr>
|
|
205
|
+
<w:proofErr w:type="spellStart" />
|
|
206
|
+
<w:r>
|
|
207
|
+
<w:rPr>
|
|
208
|
+
<w:lang w:val="nl-NL" />
|
|
209
|
+
</w:rPr>
|
|
210
|
+
<w:t>S</w:t>
|
|
211
|
+
</w:r>
|
|
212
|
+
<w:r w:rsidR="00996C0B">
|
|
213
|
+
<w:rPr>
|
|
214
|
+
<w:lang w:val="nl-NL" />
|
|
215
|
+
</w:rPr>
|
|
216
|
+
<w:t>dfsdfdsfdf</w:t>
|
|
217
|
+
</w:r>
|
|
218
|
+
<w:proofErr w:type="spellEnd" />
|
|
219
|
+
</w:p>
|
|
220
|
+
<w:p w14:paraId="76F399E4" w14:textId="77777777" w:rsidR="00F64863"
|
|
221
|
+
w:rsidRDefault="00F64863" w:rsidP="00996C0B">
|
|
222
|
+
<w:pPr>
|
|
223
|
+
<w:rPr>
|
|
224
|
+
<w:lang w:val="nl-NL" />
|
|
225
|
+
</w:rPr>
|
|
226
|
+
</w:pPr>
|
|
227
|
+
</w:p>
|
|
228
|
+
<w:p w14:paraId="3E48D37E" w14:textId="77777777" w:rsidR="00F64863"
|
|
229
|
+
w:rsidRDefault="00F64863" w:rsidP="00F64863">
|
|
230
|
+
<w:pPr>
|
|
231
|
+
<w:keepNext />
|
|
232
|
+
</w:pPr>
|
|
233
|
+
<w:r>
|
|
234
|
+
<w:rPr>
|
|
235
|
+
<w:noProof />
|
|
236
|
+
<w:lang w:val="nl-NL" />
|
|
237
|
+
</w:rPr>
|
|
238
|
+
<w:drawing>
|
|
239
|
+
<wp:inline distT="0" distB="0" distL="0" distR="0" wp14:anchorId="0B534BD3"
|
|
240
|
+
wp14:editId="52434271">
|
|
241
|
+
<wp:extent cx="1917981" cy="2637064" />
|
|
242
|
+
<wp:effectExtent l="0" t="0" r="0" b="5080" />
|
|
243
|
+
<wp:docPr id="1998791571" name="Picture 1" descr="Cow in pasture" />
|
|
244
|
+
<wp:cNvGraphicFramePr>
|
|
245
|
+
<a:graphicFrameLocks
|
|
246
|
+
xmlns:a="http://schemas.openxmlformats.org/drawingml/2006/main"
|
|
247
|
+
noChangeAspect="1" />
|
|
248
|
+
</wp:cNvGraphicFramePr>
|
|
249
|
+
<a:graphic xmlns:a="http://schemas.openxmlformats.org/drawingml/2006/main">
|
|
250
|
+
<a:graphicData
|
|
251
|
+
uri="http://schemas.openxmlformats.org/drawingml/2006/picture">
|
|
252
|
+
<pic:pic
|
|
253
|
+
xmlns:pic="http://schemas.openxmlformats.org/drawingml/2006/picture">
|
|
254
|
+
<pic:nvPicPr>
|
|
255
|
+
<pic:cNvPr id="1998791571" name="Picture 1998791571"
|
|
256
|
+
descr="Cow in pasture" />
|
|
257
|
+
<pic:cNvPicPr />
|
|
258
|
+
</pic:nvPicPr>
|
|
259
|
+
<pic:blipFill>
|
|
260
|
+
<a:blip r:embed="rId5" cstate="print">
|
|
261
|
+
<a:extLst>
|
|
262
|
+
<a:ext uri="{28A0092B-C50C-407E-A947-70E740481C1C}">
|
|
263
|
+
<a14:useLocalDpi
|
|
264
|
+
xmlns:a14="http://schemas.microsoft.com/office/drawing/2010/main"
|
|
265
|
+
val="0" />
|
|
266
|
+
</a:ext>
|
|
267
|
+
</a:extLst>
|
|
268
|
+
</a:blip>
|
|
269
|
+
<a:stretch>
|
|
270
|
+
<a:fillRect />
|
|
271
|
+
</a:stretch>
|
|
272
|
+
</pic:blipFill>
|
|
273
|
+
<pic:spPr>
|
|
274
|
+
<a:xfrm>
|
|
275
|
+
<a:off x="0" y="0" />
|
|
276
|
+
<a:ext cx="1938860" cy="2665771" />
|
|
277
|
+
</a:xfrm>
|
|
278
|
+
<a:prstGeom prst="rect">
|
|
279
|
+
<a:avLst />
|
|
280
|
+
</a:prstGeom>
|
|
281
|
+
</pic:spPr>
|
|
282
|
+
</pic:pic>
|
|
283
|
+
</a:graphicData>
|
|
284
|
+
</a:graphic>
|
|
285
|
+
</wp:inline>
|
|
286
|
+
</w:drawing>
|
|
287
|
+
</w:r>
|
|
288
|
+
</w:p>
|
|
289
|
+
<w:p w14:paraId="75B910DF" w14:textId="7940F280" w:rsidR="00F64863" w:rsidRPr="00996C0B"
|
|
290
|
+
w:rsidRDefault="00F64863" w:rsidP="00F64863">
|
|
291
|
+
<w:pPr>
|
|
292
|
+
<w:pStyle w:val="Caption" />
|
|
293
|
+
<w:rPr>
|
|
294
|
+
<w:lang w:val="nl-NL" />
|
|
295
|
+
</w:rPr>
|
|
296
|
+
</w:pPr>
|
|
297
|
+
<w:r>
|
|
298
|
+
<w:t xml:space="preserve">Caption </w:t>
|
|
299
|
+
</w:r>
|
|
300
|
+
<w:fldSimple w:instr=" SEQ Figuur \* ARABIC ">
|
|
301
|
+
<w:r>
|
|
302
|
+
<w:rPr>
|
|
303
|
+
<w:noProof />
|
|
304
|
+
</w:rPr>
|
|
305
|
+
<w:t>1</w:t>
|
|
306
|
+
</w:r>
|
|
307
|
+
</w:fldSimple>
|
|
308
|
+
</w:p>
|
|
309
|
+
<w:p w14:paraId="2148A42C" w14:textId="59EB18E2" w:rsidR="005B06B8" w:rsidRPr="005B06B8"
|
|
310
|
+
w:rsidRDefault="005B06B8" w:rsidP="005B06B8">
|
|
311
|
+
<w:pPr>
|
|
312
|
+
<w:rPr>
|
|
313
|
+
<w:lang w:val="nl-NL" />
|
|
314
|
+
</w:rPr>
|
|
315
|
+
</w:pPr>
|
|
316
|
+
</w:p>
|
|
317
|
+
<w:sectPr w:rsidR="005B06B8" w:rsidRPr="005B06B8">
|
|
318
|
+
<w:pgSz w:w="11906" w:h="16838" />
|
|
319
|
+
<w:pgMar w:top="1440" w:right="1440" w:bottom="1440" w:left="1440" w:header="708"
|
|
320
|
+
w:footer="708" w:gutter="0" />
|
|
321
|
+
<w:cols w:space="708" />
|
|
322
|
+
<w:docGrid w:linePitch="360" />
|
|
323
|
+
</w:sectPr>
|
|
324
|
+
</w:body>
|
|
325
|
+
</w:document>
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
|
2
|
+
<w:fonts xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" 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:w16du="http://schemas.microsoft.com/office/word/2023/wordml/word16du" xmlns:w16sdtdh="http://schemas.microsoft.com/office/word/2020/wordml/sdtdatahash" xmlns:w16se="http://schemas.microsoft.com/office/word/2015/wordml/symex" mc:Ignorable="w14 w15 w16se w16cid w16 w16cex w16sdtdh w16du"><w:font w:name="Aptos"><w:panose1 w:val="020B0004020202020204"/><w:charset w:val="00"/><w:family w:val="swiss"/><w:pitch w:val="variable"/><w:sig w:usb0="20000287" w:usb1="00000003" w:usb2="00000000" w:usb3="00000000" w:csb0="0000019F" w:csb1="00000000"/></w:font><w:font w:name="Times New Roman"><w:panose1 w:val="02020603050405020304"/><w:charset w:val="00"/><w:family w:val="roman"/><w:pitch w:val="variable"/><w:sig w:usb0="E0002EFF" w:usb1="C000785B" w:usb2="00000009" w:usb3="00000000" w:csb0="000001FF" w:csb1="00000000"/></w:font><w:font w:name="Inter"><w:altName w:val="Cambria"/><w:panose1 w:val="020B0604020202020204"/><w:charset w:val="00"/><w:family w:val="roman"/><w:pitch w:val="default"/></w:font><w:font w:name="Times New Roman (Body CS)"><w:altName w:val="Times New Roman"/><w:panose1 w:val="020B0604020202020204"/><w:charset w:val="00"/><w:family w:val="roman"/><w:notTrueType/><w:pitch w:val="default"/></w:font><w:font w:name="Aptos Display"><w:panose1 w:val="020B0004020202020204"/><w:charset w:val="00"/><w:family w:val="swiss"/><w:pitch w:val="variable"/><w:sig w:usb0="20000287" w:usb1="00000003" w:usb2="00000000" w:usb3="00000000" w:csb0="0000019F" w:csb1="00000000"/></w:font></w:fonts>
|
|
Binary file
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
|
2
|
+
<w:settings xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
3
|
+
xmlns:o="urn:schemas-microsoft-com:office:office"
|
|
4
|
+
xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships"
|
|
5
|
+
xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math"
|
|
6
|
+
xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w10="urn:schemas-microsoft-com:office:word"
|
|
7
|
+
xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"
|
|
8
|
+
xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml"
|
|
9
|
+
xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml"
|
|
10
|
+
xmlns:w16cex="http://schemas.microsoft.com/office/word/2018/wordml/cex"
|
|
11
|
+
xmlns:w16cid="http://schemas.microsoft.com/office/word/2016/wordml/cid"
|
|
12
|
+
xmlns:w16="http://schemas.microsoft.com/office/word/2018/wordml"
|
|
13
|
+
xmlns:w16du="http://schemas.microsoft.com/office/word/2023/wordml/word16du"
|
|
14
|
+
xmlns:w16sdtdh="http://schemas.microsoft.com/office/word/2020/wordml/sdtdatahash"
|
|
15
|
+
xmlns:w16se="http://schemas.microsoft.com/office/word/2015/wordml/symex"
|
|
16
|
+
xmlns:sl="http://schemas.openxmlformats.org/schemaLibrary/2006/main"
|
|
17
|
+
mc:Ignorable="w14 w15 w16se w16cid w16 w16cex w16sdtdh w16du">
|
|
18
|
+
<w:zoom w:percent="156" />
|
|
19
|
+
<w:proofState w:spelling="clean" w:grammar="clean" />
|
|
20
|
+
<w:defaultTabStop w:val="720" />
|
|
21
|
+
<w:characterSpacingControl w:val="doNotCompress" />
|
|
22
|
+
<w:compat>
|
|
23
|
+
<w:compatSetting w:name="compatibilityMode" w:uri="http://schemas.microsoft.com/office/word"
|
|
24
|
+
w:val="15" />
|
|
25
|
+
<w:compatSetting w:name="overrideTableStyleFontSizeAndJustification"
|
|
26
|
+
w:uri="http://schemas.microsoft.com/office/word" w:val="1" />
|
|
27
|
+
<w:compatSetting w:name="enableOpenTypeFeatures"
|
|
28
|
+
w:uri="http://schemas.microsoft.com/office/word" w:val="1" />
|
|
29
|
+
<w:compatSetting w:name="doNotFlipMirrorIndents"
|
|
30
|
+
w:uri="http://schemas.microsoft.com/office/word" w:val="1" />
|
|
31
|
+
<w:compatSetting w:name="differentiateMultirowTableHeaders"
|
|
32
|
+
w:uri="http://schemas.microsoft.com/office/word" w:val="1" />
|
|
33
|
+
<w:compatSetting w:name="useWord2013TrackBottomHyphenation"
|
|
34
|
+
w:uri="http://schemas.microsoft.com/office/word" w:val="0" />
|
|
35
|
+
</w:compat>
|
|
36
|
+
<w:rsids>
|
|
37
|
+
<w:rsidRoot w:val="005B06B8" />
|
|
38
|
+
<w:rsid w:val="003B0B06" />
|
|
39
|
+
<w:rsid w:val="005B06B8" />
|
|
40
|
+
<w:rsid w:val="0072556D" />
|
|
41
|
+
<w:rsid w:val="0084671B" />
|
|
42
|
+
<w:rsid w:val="00894EE4" />
|
|
43
|
+
<w:rsid w:val="008A6ED7" />
|
|
44
|
+
<w:rsid w:val="00996C0B" />
|
|
45
|
+
<w:rsid w:val="009A2A5B" />
|
|
46
|
+
<w:rsid w:val="00D078F7" />
|
|
47
|
+
<w:rsid w:val="00F64863" />
|
|
48
|
+
</w:rsids>
|
|
49
|
+
<m:mathPr>
|
|
50
|
+
<m:mathFont m:val="Cambria Math" />
|
|
51
|
+
<m:brkBin m:val="before" />
|
|
52
|
+
<m:brkBinSub m:val="--" />
|
|
53
|
+
<m:smallFrac m:val="0" />
|
|
54
|
+
<m:dispDef />
|
|
55
|
+
<m:lMargin m:val="0" />
|
|
56
|
+
<m:rMargin m:val="0" />
|
|
57
|
+
<m:defJc m:val="centerGroup" />
|
|
58
|
+
<m:wrapIndent m:val="1440" />
|
|
59
|
+
<m:intLim m:val="subSup" />
|
|
60
|
+
<m:naryLim m:val="undOvr" />
|
|
61
|
+
</m:mathPr>
|
|
62
|
+
<w:themeFontLang w:val="en-NL" />
|
|
63
|
+
<w:clrSchemeMapping w:bg1="light1" w:t1="dark1" w:bg2="light2" w:t2="dark2" w:accent1="accent1"
|
|
64
|
+
w:accent2="accent2" w:accent3="accent3" w:accent4="accent4" w:accent5="accent5"
|
|
65
|
+
w:accent6="accent6" w:hyperlink="hyperlink" w:followedHyperlink="followedHyperlink" />
|
|
66
|
+
<w:decimalSymbol w:val="," />
|
|
67
|
+
<w:listSeparator w:val="," />
|
|
68
|
+
<w14:docId w14:val="3E6095AC" />
|
|
69
|
+
<w15:chartTrackingRefBased />
|
|
70
|
+
<w15:docId w15:val="{60AFDF41-4986-5447-BC2D-9A57C167E055}" />
|
|
71
|
+
</w:settings>
|