@zhouchangui/math-ati 0.1.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/.env.local.example +6 -0
- package/AGENTS.md +273 -0
- package/README.md +34 -0
- package/bin/math-ati.js +194 -0
- package/dist/assets/index-BYFoutza.js +22 -0
- package/dist/assets/index-Bk2WFPoL.css +1 -0
- package/dist/index.html +13 -0
- package/package.json +72 -0
- package/prompts/grading.system.md +129 -0
- package/prompts/knowledge-extract.system.md +123 -0
- package/prompts/knowledge-summarize.system.md +127 -0
- package/prompts/learning-summary.system.md +123 -0
- package/prompts/pdf-grading.system.md +80 -0
- package/prompts/pdf-page-extract.system.md +52 -0
- package/prompts/pdf-recheck.system.md +43 -0
- package/prompts/practice-generate.system.md +161 -0
- package/prompts/practice-review.system.md +65 -0
- package/prompts/practice-revise.system.md +56 -0
- package/server/abilityService.js +259 -0
- package/server/agentClient.js +202 -0
- package/server/env.js +4 -0
- package/server/fileStore.js +726 -0
- package/server/grading.js +116 -0
- package/server/index.js +655 -0
- package/server/jobStore.js +169 -0
- package/server/knowledgeBase.js +30 -0
- package/server/knowledgeExtractor.js +360 -0
- package/server/knowledgeFeedback.js +299 -0
- package/server/llmConfig.js +96 -0
- package/server/mistakeLifecycle.js +251 -0
- package/server/pdfSubmissionGrader.js +846 -0
- package/server/practiceGenerator.js +908 -0
- package/server/practicePaperHtml.js +313 -0
- package/server/practiceReviewer.js +307 -0
- package/server/practiceService.js +331 -0
- package/server/promptStore.js +16 -0
- package/server/submissionService.js +184 -0
- package/templates/workspace/.env.local.example +6 -0
- package/templates/workspace/data/global/ability_index.json +5 -0
- package/templates/workspace/data/global/chapters.json +621 -0
- package/templates/workspace/data/global/mastery_index.json +6 -0
- package/templates/workspace/data/global/mistakes_index.json +7 -0
- package/templates/workspace/data/global/student_profile.json +11 -0
- package/templates/workspace/data/knowledge_points.json +1264 -0
- package/templates/workspace/data/mistakes.json +1 -0
- package/vite.config.js +21 -0
|
@@ -0,0 +1,621 @@
|
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"id": "chapter-01",
|
|
4
|
+
"title": "有理数",
|
|
5
|
+
"chapterLabel": "第一章",
|
|
6
|
+
"fullTitle": "第一章 有理数",
|
|
7
|
+
"track": "计算与代数地基",
|
|
8
|
+
"bookStart": 1,
|
|
9
|
+
"bookEnd": 9,
|
|
10
|
+
"pdfStart": 18,
|
|
11
|
+
"pdfEnd": 26,
|
|
12
|
+
"imageFolder": "01_第一章_有理数",
|
|
13
|
+
"imageCount": 8,
|
|
14
|
+
"coverImage": "/chapter-images/01_%E7%AC%AC%E4%B8%80%E7%AB%A0_%E6%9C%89%E7%90%86%E6%95%B0/page-018.png",
|
|
15
|
+
"status": "not_started",
|
|
16
|
+
"mastery": 0,
|
|
17
|
+
"latestAccuracy": null,
|
|
18
|
+
"topErrorTypes": [],
|
|
19
|
+
"assessmentFlows": {
|
|
20
|
+
"knowledge": true,
|
|
21
|
+
"mistakeRepair": true,
|
|
22
|
+
"abilities": [
|
|
23
|
+
"calculation_accuracy"
|
|
24
|
+
]
|
|
25
|
+
}
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"id": "chapter-02",
|
|
29
|
+
"title": "有理数的运算",
|
|
30
|
+
"chapterLabel": "第二章",
|
|
31
|
+
"fullTitle": "第二章 有理数的运算",
|
|
32
|
+
"track": "计算与代数地基",
|
|
33
|
+
"bookStart": 10,
|
|
34
|
+
"bookEnd": 21,
|
|
35
|
+
"pdfStart": 27,
|
|
36
|
+
"pdfEnd": 38,
|
|
37
|
+
"imageFolder": "02_第二章_有理数的运算",
|
|
38
|
+
"imageCount": 12,
|
|
39
|
+
"coverImage": "/chapter-images/02_%E7%AC%AC%E4%BA%8C%E7%AB%A0_%E6%9C%89%E7%90%86%E6%95%B0%E7%9A%84%E8%BF%90%E7%AE%97/page-026.png",
|
|
40
|
+
"status": "not_started",
|
|
41
|
+
"mastery": 0,
|
|
42
|
+
"latestAccuracy": null,
|
|
43
|
+
"topErrorTypes": []
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
"id": "chapter-03",
|
|
47
|
+
"title": "代数式",
|
|
48
|
+
"chapterLabel": "第三章",
|
|
49
|
+
"fullTitle": "第三章 代数式",
|
|
50
|
+
"track": "计算与代数地基",
|
|
51
|
+
"bookStart": 22,
|
|
52
|
+
"bookEnd": 27,
|
|
53
|
+
"pdfStart": 39,
|
|
54
|
+
"pdfEnd": 44,
|
|
55
|
+
"imageFolder": "03_第三章_代数式",
|
|
56
|
+
"imageCount": 6,
|
|
57
|
+
"coverImage": "/chapter-images/03_%E7%AC%AC%E4%B8%89%E7%AB%A0_%E4%BB%A3%E6%95%B0%E5%BC%8F/page-038.png",
|
|
58
|
+
"status": "not_started",
|
|
59
|
+
"mastery": 0,
|
|
60
|
+
"latestAccuracy": null,
|
|
61
|
+
"topErrorTypes": []
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
"id": "chapter-04",
|
|
65
|
+
"title": "整式的加减",
|
|
66
|
+
"chapterLabel": "第四章",
|
|
67
|
+
"fullTitle": "第四章 整式的加减",
|
|
68
|
+
"track": "计算与代数地基",
|
|
69
|
+
"bookStart": 28,
|
|
70
|
+
"bookEnd": 35,
|
|
71
|
+
"pdfStart": 45,
|
|
72
|
+
"pdfEnd": 52,
|
|
73
|
+
"imageFolder": "04_第四章_整式的加减",
|
|
74
|
+
"imageCount": 8,
|
|
75
|
+
"coverImage": "/chapter-images/04_%E7%AC%AC%E5%9B%9B%E7%AB%A0_%E6%95%B4%E5%BC%8F%E7%9A%84%E5%8A%A0%E5%87%8F/page-044.png",
|
|
76
|
+
"status": "not_started",
|
|
77
|
+
"mastery": 0,
|
|
78
|
+
"latestAccuracy": null,
|
|
79
|
+
"topErrorTypes": []
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
"id": "chapter-05",
|
|
83
|
+
"title": "一元一次方程",
|
|
84
|
+
"chapterLabel": "第五章",
|
|
85
|
+
"fullTitle": "第五章 一元一次方程",
|
|
86
|
+
"track": "计算与代数地基",
|
|
87
|
+
"bookStart": 36,
|
|
88
|
+
"bookEnd": 44,
|
|
89
|
+
"pdfStart": 53,
|
|
90
|
+
"pdfEnd": 61,
|
|
91
|
+
"imageFolder": "05_第五章_一元一次方程",
|
|
92
|
+
"imageCount": 9,
|
|
93
|
+
"coverImage": "/chapter-images/05_%E7%AC%AC%E4%BA%94%E7%AB%A0_%E4%B8%80%E5%85%83%E4%B8%80%E6%AC%A1%E6%96%B9%E7%A8%8B/page-052.png",
|
|
94
|
+
"status": "not_started",
|
|
95
|
+
"mastery": 0,
|
|
96
|
+
"latestAccuracy": null,
|
|
97
|
+
"topErrorTypes": []
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
"id": "chapter-06",
|
|
101
|
+
"title": "几何图形初步",
|
|
102
|
+
"chapterLabel": "第六章",
|
|
103
|
+
"fullTitle": "第六章 几何图形初步",
|
|
104
|
+
"track": "几何证明主线",
|
|
105
|
+
"bookStart": 45,
|
|
106
|
+
"bookEnd": 60,
|
|
107
|
+
"pdfStart": 62,
|
|
108
|
+
"pdfEnd": 77,
|
|
109
|
+
"imageFolder": "06_第六章_几何图形初步",
|
|
110
|
+
"imageCount": 16,
|
|
111
|
+
"coverImage": "/chapter-images/06_%E7%AC%AC%E5%85%AD%E7%AB%A0_%E5%87%A0%E4%BD%95%E5%9B%BE%E5%BD%A2%E5%88%9D%E6%AD%A5/page-061.png",
|
|
112
|
+
"status": "not_started",
|
|
113
|
+
"mastery": 0,
|
|
114
|
+
"latestAccuracy": null,
|
|
115
|
+
"topErrorTypes": []
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
"id": "chapter-07",
|
|
119
|
+
"title": "相交线与平行线",
|
|
120
|
+
"chapterLabel": "第七章",
|
|
121
|
+
"fullTitle": "第七章 相交线与平行线",
|
|
122
|
+
"track": "几何证明主线",
|
|
123
|
+
"bookStart": 61,
|
|
124
|
+
"bookEnd": 77,
|
|
125
|
+
"pdfStart": 78,
|
|
126
|
+
"pdfEnd": 94,
|
|
127
|
+
"imageFolder": "07_第七章_相交线与平行线",
|
|
128
|
+
"imageCount": 17,
|
|
129
|
+
"coverImage": "/chapter-images/07_%E7%AC%AC%E4%B8%83%E7%AB%A0_%E7%9B%B8%E4%BA%A4%E7%BA%BF%E4%B8%8E%E5%B9%B3%E8%A1%8C%E7%BA%BF/page-077.png",
|
|
130
|
+
"status": "not_started",
|
|
131
|
+
"mastery": 0,
|
|
132
|
+
"latestAccuracy": null,
|
|
133
|
+
"topErrorTypes": []
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
"id": "chapter-08",
|
|
137
|
+
"title": "实数",
|
|
138
|
+
"chapterLabel": "第八章",
|
|
139
|
+
"fullTitle": "第八章 实数",
|
|
140
|
+
"track": "几何证明主线",
|
|
141
|
+
"bookStart": 78,
|
|
142
|
+
"bookEnd": 86,
|
|
143
|
+
"pdfStart": 95,
|
|
144
|
+
"pdfEnd": 103,
|
|
145
|
+
"imageFolder": "08_第八章_实数",
|
|
146
|
+
"imageCount": 9,
|
|
147
|
+
"coverImage": "/chapter-images/08_%E7%AC%AC%E5%85%AB%E7%AB%A0_%E5%AE%9E%E6%95%B0/page-094.png",
|
|
148
|
+
"status": "not_started",
|
|
149
|
+
"mastery": 0,
|
|
150
|
+
"latestAccuracy": null,
|
|
151
|
+
"topErrorTypes": []
|
|
152
|
+
},
|
|
153
|
+
{
|
|
154
|
+
"id": "chapter-09",
|
|
155
|
+
"title": "平面直角坐标系",
|
|
156
|
+
"chapterLabel": "第九章",
|
|
157
|
+
"fullTitle": "第九章 平面直角坐标系",
|
|
158
|
+
"track": "函数主线",
|
|
159
|
+
"bookStart": 87,
|
|
160
|
+
"bookEnd": 92,
|
|
161
|
+
"pdfStart": 104,
|
|
162
|
+
"pdfEnd": 109,
|
|
163
|
+
"imageFolder": "09_第九章_平面直角坐标系",
|
|
164
|
+
"imageCount": 6,
|
|
165
|
+
"coverImage": "/chapter-images/09_%E7%AC%AC%E4%B9%9D%E7%AB%A0_%E5%B9%B3%E9%9D%A2%E7%9B%B4%E8%A7%92%E5%9D%90%E6%A0%87%E7%B3%BB/page-103.png",
|
|
166
|
+
"status": "not_started",
|
|
167
|
+
"mastery": 0,
|
|
168
|
+
"latestAccuracy": null,
|
|
169
|
+
"topErrorTypes": []
|
|
170
|
+
},
|
|
171
|
+
{
|
|
172
|
+
"id": "chapter-10",
|
|
173
|
+
"title": "二元一次方程组",
|
|
174
|
+
"chapterLabel": "第十章",
|
|
175
|
+
"fullTitle": "第十章 二元一次方程组",
|
|
176
|
+
"track": "计算与代数地基",
|
|
177
|
+
"bookStart": 93,
|
|
178
|
+
"bookEnd": 106,
|
|
179
|
+
"pdfStart": 110,
|
|
180
|
+
"pdfEnd": 123,
|
|
181
|
+
"imageFolder": "10_第十章_二元一次方程组",
|
|
182
|
+
"imageCount": 14,
|
|
183
|
+
"coverImage": "/chapter-images/10_%E7%AC%AC%E5%8D%81%E7%AB%A0_%E4%BA%8C%E5%85%83%E4%B8%80%E6%AC%A1%E6%96%B9%E7%A8%8B%E7%BB%84/page-109.png",
|
|
184
|
+
"status": "not_started",
|
|
185
|
+
"mastery": 0,
|
|
186
|
+
"latestAccuracy": null,
|
|
187
|
+
"topErrorTypes": []
|
|
188
|
+
},
|
|
189
|
+
{
|
|
190
|
+
"id": "chapter-11",
|
|
191
|
+
"title": "不等式与不等式组",
|
|
192
|
+
"chapterLabel": "第十一章",
|
|
193
|
+
"fullTitle": "第十一章 不等式与不等式组",
|
|
194
|
+
"track": "计算与代数地基",
|
|
195
|
+
"bookStart": 107,
|
|
196
|
+
"bookEnd": 117,
|
|
197
|
+
"pdfStart": 124,
|
|
198
|
+
"pdfEnd": 134,
|
|
199
|
+
"imageFolder": "11_第十一章_不等式与不等式组",
|
|
200
|
+
"imageCount": 11,
|
|
201
|
+
"coverImage": "/chapter-images/11_%E7%AC%AC%E5%8D%81%E4%B8%80%E7%AB%A0_%E4%B8%8D%E7%AD%89%E5%BC%8F%E4%B8%8E%E4%B8%8D%E7%AD%89%E5%BC%8F%E7%BB%84/page-123.png",
|
|
202
|
+
"status": "not_started",
|
|
203
|
+
"mastery": 0,
|
|
204
|
+
"latestAccuracy": null,
|
|
205
|
+
"topErrorTypes": []
|
|
206
|
+
},
|
|
207
|
+
{
|
|
208
|
+
"id": "chapter-12",
|
|
209
|
+
"title": "数据的收集、整理与描述",
|
|
210
|
+
"chapterLabel": "第十二章",
|
|
211
|
+
"fullTitle": "第十二章 数据的收集、整理与描述",
|
|
212
|
+
"track": "统计概率主线",
|
|
213
|
+
"bookStart": 118,
|
|
214
|
+
"bookEnd": 125,
|
|
215
|
+
"pdfStart": 135,
|
|
216
|
+
"pdfEnd": 142,
|
|
217
|
+
"imageFolder": "12_第十二章_数据的收集、整理与描述",
|
|
218
|
+
"imageCount": 8,
|
|
219
|
+
"coverImage": "/chapter-images/12_%E7%AC%AC%E5%8D%81%E4%BA%8C%E7%AB%A0_%E6%95%B0%E6%8D%AE%E7%9A%84%E6%94%B6%E9%9B%86%E3%80%81%E6%95%B4%E7%90%86%E4%B8%8E%E6%8F%8F%E8%BF%B0/page-134.png",
|
|
220
|
+
"status": "not_started",
|
|
221
|
+
"mastery": 0,
|
|
222
|
+
"latestAccuracy": null,
|
|
223
|
+
"topErrorTypes": []
|
|
224
|
+
},
|
|
225
|
+
{
|
|
226
|
+
"id": "chapter-13",
|
|
227
|
+
"title": "三角形",
|
|
228
|
+
"chapterLabel": "第十三章",
|
|
229
|
+
"fullTitle": "第十三章 三角形",
|
|
230
|
+
"track": "几何证明主线",
|
|
231
|
+
"bookStart": 126,
|
|
232
|
+
"bookEnd": 138,
|
|
233
|
+
"pdfStart": 143,
|
|
234
|
+
"pdfEnd": 155,
|
|
235
|
+
"imageFolder": "13_第十三章_三角形",
|
|
236
|
+
"imageCount": 13,
|
|
237
|
+
"coverImage": "/chapter-images/13_%E7%AC%AC%E5%8D%81%E4%B8%89%E7%AB%A0_%E4%B8%89%E8%A7%92%E5%BD%A2/page-142.png",
|
|
238
|
+
"status": "not_started",
|
|
239
|
+
"mastery": 0,
|
|
240
|
+
"latestAccuracy": null,
|
|
241
|
+
"topErrorTypes": []
|
|
242
|
+
},
|
|
243
|
+
{
|
|
244
|
+
"id": "chapter-14",
|
|
245
|
+
"title": "全等三角形",
|
|
246
|
+
"chapterLabel": "第十四章",
|
|
247
|
+
"fullTitle": "第十四章 全等三角形",
|
|
248
|
+
"track": "几何证明主线",
|
|
249
|
+
"bookStart": 139,
|
|
250
|
+
"bookEnd": 152,
|
|
251
|
+
"pdfStart": 156,
|
|
252
|
+
"pdfEnd": 169,
|
|
253
|
+
"imageFolder": "14_第十四章_全等三角形",
|
|
254
|
+
"imageCount": 14,
|
|
255
|
+
"coverImage": "/chapter-images/14_%E7%AC%AC%E5%8D%81%E5%9B%9B%E7%AB%A0_%E5%85%A8%E7%AD%89%E4%B8%89%E8%A7%92%E5%BD%A2/page-155.png",
|
|
256
|
+
"status": "not_started",
|
|
257
|
+
"mastery": 0,
|
|
258
|
+
"latestAccuracy": null,
|
|
259
|
+
"topErrorTypes": []
|
|
260
|
+
},
|
|
261
|
+
{
|
|
262
|
+
"id": "chapter-15",
|
|
263
|
+
"title": "轴对称",
|
|
264
|
+
"chapterLabel": "第十五章",
|
|
265
|
+
"fullTitle": "第十五章 轴对称",
|
|
266
|
+
"track": "几何证明主线",
|
|
267
|
+
"bookStart": 153,
|
|
268
|
+
"bookEnd": 161,
|
|
269
|
+
"pdfStart": 170,
|
|
270
|
+
"pdfEnd": 178,
|
|
271
|
+
"imageFolder": "15_第十五章_轴对称",
|
|
272
|
+
"imageCount": 9,
|
|
273
|
+
"coverImage": "/chapter-images/15_%E7%AC%AC%E5%8D%81%E4%BA%94%E7%AB%A0_%E8%BD%B4%E5%AF%B9%E7%A7%B0/page-169.png",
|
|
274
|
+
"status": "not_started",
|
|
275
|
+
"mastery": 0,
|
|
276
|
+
"latestAccuracy": null,
|
|
277
|
+
"topErrorTypes": []
|
|
278
|
+
},
|
|
279
|
+
{
|
|
280
|
+
"id": "chapter-16",
|
|
281
|
+
"title": "整式的乘法",
|
|
282
|
+
"chapterLabel": "第十六章",
|
|
283
|
+
"fullTitle": "第十六章 整式的乘法",
|
|
284
|
+
"track": "计算与代数地基",
|
|
285
|
+
"bookStart": 162,
|
|
286
|
+
"bookEnd": 169,
|
|
287
|
+
"pdfStart": 179,
|
|
288
|
+
"pdfEnd": 186,
|
|
289
|
+
"imageFolder": "16_第十六章_整式的乘法",
|
|
290
|
+
"imageCount": 8,
|
|
291
|
+
"coverImage": "/chapter-images/16_%E7%AC%AC%E5%8D%81%E5%85%AD%E7%AB%A0_%E6%95%B4%E5%BC%8F%E7%9A%84%E4%B9%98%E6%B3%95/page-178.png",
|
|
292
|
+
"status": "not_started",
|
|
293
|
+
"mastery": 0,
|
|
294
|
+
"latestAccuracy": null,
|
|
295
|
+
"topErrorTypes": []
|
|
296
|
+
},
|
|
297
|
+
{
|
|
298
|
+
"id": "chapter-17",
|
|
299
|
+
"title": "因式分解",
|
|
300
|
+
"chapterLabel": "第十七章",
|
|
301
|
+
"fullTitle": "第十七章 因式分解",
|
|
302
|
+
"track": "计算与代数地基",
|
|
303
|
+
"bookStart": 170,
|
|
304
|
+
"bookEnd": 174,
|
|
305
|
+
"pdfStart": 187,
|
|
306
|
+
"pdfEnd": 191,
|
|
307
|
+
"imageFolder": "17_第十七章_因式分解",
|
|
308
|
+
"imageCount": 5,
|
|
309
|
+
"coverImage": "/chapter-images/17_%E7%AC%AC%E5%8D%81%E4%B8%83%E7%AB%A0_%E5%9B%A0%E5%BC%8F%E5%88%86%E8%A7%A3/page-186.png",
|
|
310
|
+
"status": "not_started",
|
|
311
|
+
"mastery": 0,
|
|
312
|
+
"latestAccuracy": null,
|
|
313
|
+
"topErrorTypes": []
|
|
314
|
+
},
|
|
315
|
+
{
|
|
316
|
+
"id": "chapter-18",
|
|
317
|
+
"title": "分式",
|
|
318
|
+
"chapterLabel": "第十八章",
|
|
319
|
+
"fullTitle": "第十八章 分式",
|
|
320
|
+
"track": "计算与代数地基",
|
|
321
|
+
"bookStart": 175,
|
|
322
|
+
"bookEnd": 184,
|
|
323
|
+
"pdfStart": 192,
|
|
324
|
+
"pdfEnd": 201,
|
|
325
|
+
"imageFolder": "18_第十八章_分式",
|
|
326
|
+
"imageCount": 10,
|
|
327
|
+
"coverImage": "/chapter-images/18_%E7%AC%AC%E5%8D%81%E5%85%AB%E7%AB%A0_%E5%88%86%E5%BC%8F/page-191.png",
|
|
328
|
+
"status": "not_started",
|
|
329
|
+
"mastery": 0,
|
|
330
|
+
"latestAccuracy": null,
|
|
331
|
+
"topErrorTypes": []
|
|
332
|
+
},
|
|
333
|
+
{
|
|
334
|
+
"id": "chapter-19",
|
|
335
|
+
"title": "二次根式",
|
|
336
|
+
"chapterLabel": "第十九章",
|
|
337
|
+
"fullTitle": "第十九章 二次根式",
|
|
338
|
+
"track": "计算与代数地基",
|
|
339
|
+
"bookStart": 185,
|
|
340
|
+
"bookEnd": 189,
|
|
341
|
+
"pdfStart": 202,
|
|
342
|
+
"pdfEnd": 206,
|
|
343
|
+
"imageFolder": "19_第十九章_二次根式",
|
|
344
|
+
"imageCount": 5,
|
|
345
|
+
"coverImage": "/chapter-images/19_%E7%AC%AC%E5%8D%81%E4%B9%9D%E7%AB%A0_%E4%BA%8C%E6%AC%A1%E6%A0%B9%E5%BC%8F/page-201.png",
|
|
346
|
+
"status": "not_started",
|
|
347
|
+
"mastery": 0,
|
|
348
|
+
"latestAccuracy": null,
|
|
349
|
+
"topErrorTypes": []
|
|
350
|
+
},
|
|
351
|
+
{
|
|
352
|
+
"id": "chapter-20",
|
|
353
|
+
"title": "勾股定理",
|
|
354
|
+
"chapterLabel": "第二十章",
|
|
355
|
+
"fullTitle": "第二十章 勾股定理",
|
|
356
|
+
"track": "几何证明主线",
|
|
357
|
+
"bookStart": 190,
|
|
358
|
+
"bookEnd": 196,
|
|
359
|
+
"pdfStart": 207,
|
|
360
|
+
"pdfEnd": 213,
|
|
361
|
+
"imageFolder": "20_第二十章_勾股定理",
|
|
362
|
+
"imageCount": 7,
|
|
363
|
+
"coverImage": "/chapter-images/20_%E7%AC%AC%E4%BA%8C%E5%8D%81%E7%AB%A0_%E5%8B%BE%E8%82%A1%E5%AE%9A%E7%90%86/page-206.png",
|
|
364
|
+
"status": "not_started",
|
|
365
|
+
"mastery": 0,
|
|
366
|
+
"latestAccuracy": null,
|
|
367
|
+
"topErrorTypes": []
|
|
368
|
+
},
|
|
369
|
+
{
|
|
370
|
+
"id": "chapter-21",
|
|
371
|
+
"title": "四边形",
|
|
372
|
+
"chapterLabel": "第二十一章",
|
|
373
|
+
"fullTitle": "第二十一章 四边形",
|
|
374
|
+
"track": "几何证明主线",
|
|
375
|
+
"bookStart": 197,
|
|
376
|
+
"bookEnd": 203,
|
|
377
|
+
"pdfStart": 214,
|
|
378
|
+
"pdfEnd": 220,
|
|
379
|
+
"imageFolder": "21_第二十一章_四边形",
|
|
380
|
+
"imageCount": 7,
|
|
381
|
+
"coverImage": "/chapter-images/21_%E7%AC%AC%E4%BA%8C%E5%8D%81%E4%B8%80%E7%AB%A0_%E5%9B%9B%E8%BE%B9%E5%BD%A2/page-213.png",
|
|
382
|
+
"status": "not_started",
|
|
383
|
+
"mastery": 0,
|
|
384
|
+
"latestAccuracy": null,
|
|
385
|
+
"topErrorTypes": []
|
|
386
|
+
},
|
|
387
|
+
{
|
|
388
|
+
"id": "chapter-22",
|
|
389
|
+
"title": "函数",
|
|
390
|
+
"chapterLabel": "第二十二章",
|
|
391
|
+
"fullTitle": "第二十二章 函数",
|
|
392
|
+
"track": "函数主线",
|
|
393
|
+
"bookStart": 204,
|
|
394
|
+
"bookEnd": 209,
|
|
395
|
+
"pdfStart": 221,
|
|
396
|
+
"pdfEnd": 226,
|
|
397
|
+
"imageFolder": "22_第二十二章_函数",
|
|
398
|
+
"imageCount": 6,
|
|
399
|
+
"coverImage": "/chapter-images/22_%E7%AC%AC%E4%BA%8C%E5%8D%81%E4%BA%8C%E7%AB%A0_%E5%87%BD%E6%95%B0/page-220.png",
|
|
400
|
+
"status": "not_started",
|
|
401
|
+
"mastery": 0,
|
|
402
|
+
"latestAccuracy": null,
|
|
403
|
+
"topErrorTypes": []
|
|
404
|
+
},
|
|
405
|
+
{
|
|
406
|
+
"id": "chapter-23",
|
|
407
|
+
"title": "一次函数",
|
|
408
|
+
"chapterLabel": "第二十三章",
|
|
409
|
+
"fullTitle": "第二十三章 一次函数",
|
|
410
|
+
"track": "函数主线",
|
|
411
|
+
"bookStart": 210,
|
|
412
|
+
"bookEnd": 216,
|
|
413
|
+
"pdfStart": 227,
|
|
414
|
+
"pdfEnd": 233,
|
|
415
|
+
"imageFolder": "23_第二十三章_一次函数",
|
|
416
|
+
"imageCount": 7,
|
|
417
|
+
"coverImage": "/chapter-images/23_%E7%AC%AC%E4%BA%8C%E5%8D%81%E4%B8%89%E7%AB%A0_%E4%B8%80%E6%AC%A1%E5%87%BD%E6%95%B0/page-226.png",
|
|
418
|
+
"status": "not_started",
|
|
419
|
+
"mastery": 0,
|
|
420
|
+
"latestAccuracy": null,
|
|
421
|
+
"topErrorTypes": []
|
|
422
|
+
},
|
|
423
|
+
{
|
|
424
|
+
"id": "chapter-24",
|
|
425
|
+
"title": "数据的分析",
|
|
426
|
+
"chapterLabel": "第二十四章",
|
|
427
|
+
"fullTitle": "第二十四章 数据的分析",
|
|
428
|
+
"track": "统计概率主线",
|
|
429
|
+
"bookStart": 217,
|
|
430
|
+
"bookEnd": 227,
|
|
431
|
+
"pdfStart": 234,
|
|
432
|
+
"pdfEnd": 244,
|
|
433
|
+
"imageFolder": "24_第二十四章_数据的分析",
|
|
434
|
+
"imageCount": 11,
|
|
435
|
+
"coverImage": "/chapter-images/24_%E7%AC%AC%E4%BA%8C%E5%8D%81%E5%9B%9B%E7%AB%A0_%E6%95%B0%E6%8D%AE%E7%9A%84%E5%88%86%E6%9E%90/page-233.png",
|
|
436
|
+
"status": "not_started",
|
|
437
|
+
"mastery": 0,
|
|
438
|
+
"latestAccuracy": null,
|
|
439
|
+
"topErrorTypes": []
|
|
440
|
+
},
|
|
441
|
+
{
|
|
442
|
+
"id": "chapter-25",
|
|
443
|
+
"title": "一元二次方程",
|
|
444
|
+
"chapterLabel": "第二十五章",
|
|
445
|
+
"fullTitle": "第二十五章 一元二次方程",
|
|
446
|
+
"track": "计算与代数地基",
|
|
447
|
+
"bookStart": 228,
|
|
448
|
+
"bookEnd": 235,
|
|
449
|
+
"pdfStart": 245,
|
|
450
|
+
"pdfEnd": 252,
|
|
451
|
+
"imageFolder": "25_第二十五章_一元二次方程",
|
|
452
|
+
"imageCount": 8,
|
|
453
|
+
"coverImage": "/chapter-images/25_%E7%AC%AC%E4%BA%8C%E5%8D%81%E4%BA%94%E7%AB%A0_%E4%B8%80%E5%85%83%E4%BA%8C%E6%AC%A1%E6%96%B9%E7%A8%8B/page-244.png",
|
|
454
|
+
"status": "not_started",
|
|
455
|
+
"mastery": 0,
|
|
456
|
+
"latestAccuracy": null,
|
|
457
|
+
"topErrorTypes": []
|
|
458
|
+
},
|
|
459
|
+
{
|
|
460
|
+
"id": "chapter-26",
|
|
461
|
+
"title": "二次函数",
|
|
462
|
+
"chapterLabel": "第二十六章",
|
|
463
|
+
"fullTitle": "第二十六章 二次函数",
|
|
464
|
+
"track": "函数主线",
|
|
465
|
+
"bookStart": 236,
|
|
466
|
+
"bookEnd": 248,
|
|
467
|
+
"pdfStart": 253,
|
|
468
|
+
"pdfEnd": 265,
|
|
469
|
+
"imageFolder": "26_第二十六章_二次函数",
|
|
470
|
+
"imageCount": 13,
|
|
471
|
+
"coverImage": "/chapter-images/26_%E7%AC%AC%E4%BA%8C%E5%8D%81%E5%85%AD%E7%AB%A0_%E4%BA%8C%E6%AC%A1%E5%87%BD%E6%95%B0/page-252.png",
|
|
472
|
+
"status": "not_started",
|
|
473
|
+
"mastery": 0,
|
|
474
|
+
"latestAccuracy": null,
|
|
475
|
+
"topErrorTypes": []
|
|
476
|
+
},
|
|
477
|
+
{
|
|
478
|
+
"id": "chapter-27",
|
|
479
|
+
"title": "反比例函数",
|
|
480
|
+
"chapterLabel": "第二十七章",
|
|
481
|
+
"fullTitle": "第二十七章 反比例函数",
|
|
482
|
+
"track": "函数主线",
|
|
483
|
+
"bookStart": 249,
|
|
484
|
+
"bookEnd": 258,
|
|
485
|
+
"pdfStart": 266,
|
|
486
|
+
"pdfEnd": 275,
|
|
487
|
+
"imageFolder": "27_第二十七章_反比例函数",
|
|
488
|
+
"imageCount": 10,
|
|
489
|
+
"coverImage": "/chapter-images/27_%E7%AC%AC%E4%BA%8C%E5%8D%81%E4%B8%83%E7%AB%A0_%E5%8F%8D%E6%AF%94%E4%BE%8B%E5%87%BD%E6%95%B0/page-265.png",
|
|
490
|
+
"status": "not_started",
|
|
491
|
+
"mastery": 0,
|
|
492
|
+
"latestAccuracy": null,
|
|
493
|
+
"topErrorTypes": []
|
|
494
|
+
},
|
|
495
|
+
{
|
|
496
|
+
"id": "chapter-28",
|
|
497
|
+
"title": "旋转",
|
|
498
|
+
"chapterLabel": "第二十八章",
|
|
499
|
+
"fullTitle": "第二十八章 旋转",
|
|
500
|
+
"track": "几何证明主线",
|
|
501
|
+
"bookStart": 259,
|
|
502
|
+
"bookEnd": 264,
|
|
503
|
+
"pdfStart": 276,
|
|
504
|
+
"pdfEnd": 281,
|
|
505
|
+
"imageFolder": "28_第二十八章_旋转",
|
|
506
|
+
"imageCount": 6,
|
|
507
|
+
"coverImage": "/chapter-images/28_%E7%AC%AC%E4%BA%8C%E5%8D%81%E5%85%AB%E7%AB%A0_%E6%97%8B%E8%BD%AC/page-275.png",
|
|
508
|
+
"status": "not_started",
|
|
509
|
+
"mastery": 0,
|
|
510
|
+
"latestAccuracy": null,
|
|
511
|
+
"topErrorTypes": []
|
|
512
|
+
},
|
|
513
|
+
{
|
|
514
|
+
"id": "chapter-29",
|
|
515
|
+
"title": "圆",
|
|
516
|
+
"chapterLabel": "第二十九章",
|
|
517
|
+
"fullTitle": "第二十九章 圆",
|
|
518
|
+
"track": "几何证明主线",
|
|
519
|
+
"bookStart": 265,
|
|
520
|
+
"bookEnd": 278,
|
|
521
|
+
"pdfStart": 282,
|
|
522
|
+
"pdfEnd": 295,
|
|
523
|
+
"imageFolder": "29_第二十九章_圆",
|
|
524
|
+
"imageCount": 14,
|
|
525
|
+
"coverImage": "/chapter-images/29_%E7%AC%AC%E4%BA%8C%E5%8D%81%E4%B9%9D%E7%AB%A0_%E5%9C%86/page-281.png",
|
|
526
|
+
"status": "not_started",
|
|
527
|
+
"mastery": 0,
|
|
528
|
+
"latestAccuracy": null,
|
|
529
|
+
"topErrorTypes": []
|
|
530
|
+
},
|
|
531
|
+
{
|
|
532
|
+
"id": "chapter-30",
|
|
533
|
+
"title": "直线与圆的位置关系",
|
|
534
|
+
"chapterLabel": "第三十章",
|
|
535
|
+
"fullTitle": "第三十章 直线与圆的位置关系",
|
|
536
|
+
"track": "几何证明主线",
|
|
537
|
+
"bookStart": 279,
|
|
538
|
+
"bookEnd": 287,
|
|
539
|
+
"pdfStart": 296,
|
|
540
|
+
"pdfEnd": 304,
|
|
541
|
+
"imageFolder": "30_第三十章_直线与圆的位置关系",
|
|
542
|
+
"imageCount": 9,
|
|
543
|
+
"coverImage": "/chapter-images/30_%E7%AC%AC%E4%B8%89%E5%8D%81%E7%AB%A0_%E7%9B%B4%E7%BA%BF%E4%B8%8E%E5%9C%86%E7%9A%84%E4%BD%8D%E7%BD%AE%E5%85%B3%E7%B3%BB/page-295.png",
|
|
544
|
+
"status": "not_started",
|
|
545
|
+
"mastery": 0,
|
|
546
|
+
"latestAccuracy": null,
|
|
547
|
+
"topErrorTypes": []
|
|
548
|
+
},
|
|
549
|
+
{
|
|
550
|
+
"id": "chapter-31",
|
|
551
|
+
"title": "相似",
|
|
552
|
+
"chapterLabel": "第三十一章",
|
|
553
|
+
"fullTitle": "第三十一章 相似",
|
|
554
|
+
"track": "几何证明主线",
|
|
555
|
+
"bookStart": 288,
|
|
556
|
+
"bookEnd": 303,
|
|
557
|
+
"pdfStart": 305,
|
|
558
|
+
"pdfEnd": 320,
|
|
559
|
+
"imageFolder": "31_第三十一章_相似",
|
|
560
|
+
"imageCount": 16,
|
|
561
|
+
"coverImage": "/chapter-images/31_%E7%AC%AC%E4%B8%89%E5%8D%81%E4%B8%80%E7%AB%A0_%E7%9B%B8%E4%BC%BC/page-304.png",
|
|
562
|
+
"status": "not_started",
|
|
563
|
+
"mastery": 0,
|
|
564
|
+
"latestAccuracy": null,
|
|
565
|
+
"topErrorTypes": []
|
|
566
|
+
},
|
|
567
|
+
{
|
|
568
|
+
"id": "chapter-32",
|
|
569
|
+
"title": "锐角三角函数",
|
|
570
|
+
"chapterLabel": "第三十二章",
|
|
571
|
+
"fullTitle": "第三十二章 锐角三角函数",
|
|
572
|
+
"track": "函数主线",
|
|
573
|
+
"bookStart": 304,
|
|
574
|
+
"bookEnd": 311,
|
|
575
|
+
"pdfStart": 321,
|
|
576
|
+
"pdfEnd": 328,
|
|
577
|
+
"imageFolder": "32_第三十二章_锐角三角函数",
|
|
578
|
+
"imageCount": 8,
|
|
579
|
+
"coverImage": "/chapter-images/32_%E7%AC%AC%E4%B8%89%E5%8D%81%E4%BA%8C%E7%AB%A0_%E9%94%90%E8%A7%92%E4%B8%89%E8%A7%92%E5%87%BD%E6%95%B0/page-320.png",
|
|
580
|
+
"status": "not_started",
|
|
581
|
+
"mastery": 0,
|
|
582
|
+
"latestAccuracy": null,
|
|
583
|
+
"topErrorTypes": []
|
|
584
|
+
},
|
|
585
|
+
{
|
|
586
|
+
"id": "chapter-33",
|
|
587
|
+
"title": "投影与视图",
|
|
588
|
+
"chapterLabel": "第三十三章",
|
|
589
|
+
"fullTitle": "第三十三章 投影与视图",
|
|
590
|
+
"track": "几何证明主线",
|
|
591
|
+
"bookStart": 312,
|
|
592
|
+
"bookEnd": 320,
|
|
593
|
+
"pdfStart": 329,
|
|
594
|
+
"pdfEnd": 337,
|
|
595
|
+
"imageFolder": "33_第三十三章_投影与视图",
|
|
596
|
+
"imageCount": 9,
|
|
597
|
+
"coverImage": "/chapter-images/33_%E7%AC%AC%E4%B8%89%E5%8D%81%E4%B8%89%E7%AB%A0_%E6%8A%95%E5%BD%B1%E4%B8%8E%E8%A7%86%E5%9B%BE/page-328.png",
|
|
598
|
+
"status": "not_started",
|
|
599
|
+
"mastery": 0,
|
|
600
|
+
"latestAccuracy": null,
|
|
601
|
+
"topErrorTypes": []
|
|
602
|
+
},
|
|
603
|
+
{
|
|
604
|
+
"id": "chapter-34",
|
|
605
|
+
"title": "随机事件的概率",
|
|
606
|
+
"chapterLabel": "第三十四章",
|
|
607
|
+
"fullTitle": "第三十四章 随机事件的概率",
|
|
608
|
+
"track": "统计概率主线",
|
|
609
|
+
"bookStart": 321,
|
|
610
|
+
"bookEnd": 325,
|
|
611
|
+
"pdfStart": 338,
|
|
612
|
+
"pdfEnd": 342,
|
|
613
|
+
"imageFolder": "34_第三十四章_随机事件的概率",
|
|
614
|
+
"imageCount": 6,
|
|
615
|
+
"coverImage": "/chapter-images/34_%E7%AC%AC%E4%B8%89%E5%8D%81%E5%9B%9B%E7%AB%A0_%E9%9A%8F%E6%9C%BA%E4%BA%8B%E4%BB%B6%E7%9A%84%E6%A6%82%E7%8E%87/page-337.png",
|
|
616
|
+
"status": "not_started",
|
|
617
|
+
"mastery": 0,
|
|
618
|
+
"latestAccuracy": null,
|
|
619
|
+
"topErrorTypes": []
|
|
620
|
+
}
|
|
621
|
+
]
|