[关闭]
@yiranblade 2018-04-15T11:08:07.000000Z 字数 153641 阅读 670

作业出题系统

API文档


1,试题编写计划
内容:课程名称、试题的指标点分布、题目类别分布、题型分布、赋分方案、试题难度系数、指标点的比重和以及题目类别的比重和。对编写计划的增删改查。
2,题库部分。
支持增删改查
存储包括题目的内容,答案,知识点,题型,题目类别,引用数、所在章节、难度系数、支撑指标点。
3,自动出题。
根据编写计划自动抽取题目,按照“最近最久未使用”,“重复度<%30”.
4,试题生成。
按照格式生成试卷,答案,以及编写计划的word文档。

目录

用户身份码及试题类型码难度等说明

类型 code 备注
用户身份码 101|102 分别代表root和普通用户
试题类型 1|2|3|4 选择题1,填空题2,简答题3,应用题4
试题难度 1001|1002|1003|1004|1005 分别对应5个等级的难度
指标点 3.1等 按照你给的那个参考设定
层次(indicatorLevel) 1|2|3 分别代表基础、简单应用、综合应用

用户模块

添加用户

  1. POST /questionbank/user HTTP/1.1
  2. Host: localhost:8080
  3. Content-Type: application/json
  4. Cache-Control: no-cache
  5. Postman-Token: 1b470cba-105d-8bca-59a1-a571ebe18d80
  6. {
  7. "username":"04143160",
  8. "userpassword":"123456",
  9. "role":"2001"
  10. }
  1. {
  2. "code": 200,
  3. "data": "请求成功"
  4. }

用户登录

  1. POST /questionbank/user/login HTTP/1.1
  2. Host: localhost:8080
  3. Content-Type: application/x-www-form-urlencoded
  4. Cache-Control: no-cache
  5. Postman-Token: 34378f0b-c487-873d-f745-a27c3ee3ef03
  6. userName=04143160&userPassword=123456
  1. {
  2. "code": 200,
  3. "data": "请求成功"
  4. }

更新用户信息

  1. PUT /questionbank/user HTTP/1.1
  2. Host: localhost:8080
  3. Content-Type: application/json
  4. Cache-Control: no-cache
  5. Postman-Token: 3f18d217-85ed-48ae-7d2c-c73055aa2cd1
  6. {
  7. "username":"04143160",
  8. "userpassword":"2345678",
  9. "role":"2001"
  10. }
  1. {
  2. "code": 200,
  3. "data": "请求成功"
  4. }

删除用户信息

  1. DELETE /questionbank/user/04143160 HTTP/1.1
  2. Host: localhost:8080
  3. Content-Type: multipart/form-data; boundary=----WebKitFormBoundary7MA4YWxkTrZu0gW
  4. Cache-Control: no-cache
  5. Postman-Token: f937015a-b54b-de27-876c-3e044f7bb91e
  6. ------WebKitFormBoundary7MA4YWxkTrZu0gW--
  1. {
  2. "code": 200,
  3. "data": "请求成功"
  4. }

出题计划模块

增添新的出题计划

  1. POST /questionbank/paper/9 HTTP/1.1
  2. Host: localhost:8080
  3. Content-Type: application/json
  4. Cache-Control: no-cache
  5. Postman-Token: f0208434-86cc-3eac-bb63-7aae47953d0a
  6. {
  7. "schedule":{
  8. "professionId":2,
  9. "subjectId":2,
  10. "teacherId":"04143160",
  11. "grade":"软件15级",
  12. "testTime":"7.8 10:00-12:00",
  13. "abType":1,
  14. "testType":0,
  15. "avgRecord":70,
  16. "term":"2016-2017学年第一学期"
  17. },
  18. "scheduleInfo":[{
  19. "type":1,
  20. "orders":1,
  21. "level":1001,
  22. "indicator":"1.5",
  23. "indicatorLevel":1
  24. },{
  25. "type":2,
  26. "orders":1,
  27. "level":1001,
  28. "indicator":"2.1",
  29. "indicatorLevel":1
  30. },{
  31. "type":3,
  32. "orders":1,
  33. "level":1002,
  34. "indicator":"4.1",
  35. "indicatorLevel":1
  36. },{
  37. "type":3,
  38. "orders":1,
  39. "level":1003,
  40. "indicator":"4.3",
  41. "indicatorLevel":1
  42. }],
  43. "setMark":[{
  44. "type":1,
  45. "count":1,
  46. "mark":10
  47. },{"type":2,
  48. "count":1,
  49. "mark":10},
  50. {"type":3,
  51. "count":1,
  52. "mark":10},
  53. {"type":4,
  54. "count":1,
  55. "mark":10}]
  56. }
  1. {
  2. "code": 200,
  3. "data": "请求成功"
  4. }

获取所有的出题计划

  1. GET /questionbank/schedule HTTP/1.1
  2. Host: localhost:8080
  3. Content-Type: application/json
  4. Cache-Control: no-cache
  5. Postman-Token: aee0df52-ec1a-eb9c-f8e0-8a76ae1e6439
  1. {
  2. "code": 200,
  3. "data": [
  4. {
  5. "schedule": {
  6. "scheduleId": 10,
  7. "professionId": 2,
  8. "subjectId": 2,
  9. "teacherId": "04143160",
  10. "grade": "软件15级",
  11. "testTime": "7.8 10:00-12:00",
  12. "abType": 1,
  13. "testType": 0,
  14. "avgRecord": 70,
  15. "createtime": "2018-04-15 12:38:55.0",
  16. "term": "2016-2017学年第一学期"
  17. },
  18. "scheduleInfo": [
  19. {
  20. "scheduleinfoId": 5,
  21. "scheduleId": 10,
  22. "type": 1,
  23. "orders": 1,
  24. "level": 1001,
  25. "indicator": "1.5",
  26. "indicatorLevel": 1,
  27. "createtime": "2018-04-15 12:38:55.0"
  28. },
  29. {
  30. "scheduleinfoId": 6,
  31. "scheduleId": 10,
  32. "type": 2,
  33. "orders": 1,
  34. "level": 1001,
  35. "indicator": "2.1",
  36. "indicatorLevel": 1,
  37. "createtime": "2018-04-15 12:38:55.0"
  38. },
  39. {
  40. "scheduleinfoId": 7,
  41. "scheduleId": 10,
  42. "type": 3,
  43. "orders": 1,
  44. "level": 1002,
  45. "indicator": "4.1",
  46. "indicatorLevel": 1,
  47. "createtime": "2018-04-15 12:38:56.0"
  48. },
  49. {
  50. "scheduleinfoId": 8,
  51. "scheduleId": 10,
  52. "type": 3,
  53. "orders": 1,
  54. "level": 1003,
  55. "indicator": "4.3",
  56. "indicatorLevel": 1,
  57. "createtime": "2018-04-15 12:38:56.0"
  58. }
  59. ],
  60. "setMark": [
  61. {
  62. "setmarkId": 5,
  63. "type": 1,
  64. "count": 1,
  65. "mark": 10,
  66. "createtime": "2018-04-15 12:38:56.0",
  67. "scheduleId": 10
  68. },
  69. {
  70. "setmarkId": 6,
  71. "type": 2,
  72. "count": 1,
  73. "mark": 10,
  74. "createtime": "2018-04-15 12:38:56.0",
  75. "scheduleId": 10
  76. },
  77. {
  78. "setmarkId": 7,
  79. "type": 3,
  80. "count": 1,
  81. "mark": 10,
  82. "createtime": "2018-04-15 12:38:56.0",
  83. "scheduleId": 10
  84. },
  85. {
  86. "setmarkId": 8,
  87. "type": 4,
  88. "count": 1,
  89. "mark": 10,
  90. "createtime": "2018-04-15 12:38:56.0",
  91. "scheduleId": 10
  92. }
  93. ]
  94. }
  95. ]
  96. }

修改出题计划

  1. PUT /questionbank/schedule HTTP/1.1
  2. Host: localhost:8080
  3. Content-Type: application/json
  4. Cache-Control: no-cache
  5. Postman-Token: 41b90605-e4da-fb5f-6ed1-69bf66247eb3
  6. {
  7. "schedule":{
  8. "scheduleId":9,
  9. "professionId":2,
  10. "subjectId":2,
  11. "teacherId":"04143160",
  12. "grade":"软件15级",
  13. "testTime":"7.8 10:00-12:00",
  14. "abType":1,
  15. "testType":0,
  16. "avgRecord":70,
  17. "term":"2016-2017学年第一学期"
  18. },
  19. "scheduleInfo":[{
  20. "scheduleinfoId":1,
  21. "type":1,
  22. "orders":1,
  23. "level":1001,
  24. "indicator":"1.5",
  25. "indicatorLevel":1
  26. },{
  27. "scheduleinfoId":2,
  28. "type":2,
  29. "orders":1,
  30. "level":1001,
  31. "indicator":"2.1",
  32. "indicatorLevel":1
  33. },{
  34. "scheduleinfoId":3,
  35. "type":3,
  36. "orders":1,
  37. "level":1002,
  38. "indicator":"4.1",
  39. "indicatorLevel":1
  40. },{
  41. "scheduleinfoId":4,
  42. "type":3,
  43. "orders":1,
  44. "level":1003,
  45. "indicator":"4.3",
  46. "indicatorLevel":1
  47. }],
  48. "setMark":[{
  49. "setMarkId":1,
  50. "type":1,
  51. "count":1,
  52. "mark":10
  53. },{"setMarkId":2,
  54. "type":2,
  55. "count":1,
  56. "mark":10},
  57. {
  58. "setMarkId":3,
  59. "type":3,
  60. "count":1,
  61. "mark":10},
  62. {
  63. "setMarkId":4,
  64. "type":4,
  65. "count":1,
  66. "mark":10}]
  67. }
  1. {
  2. "code": 200,
  3. "data": "请求成功"
  4. }

删除出题计划

  1. DELETE /questionbank/schedule/10 HTTP/1.1
  2. Host: localhost:8080
  3. Content-Type: multipart/form-data; boundary=----WebKitFormBoundary7MA4YWxkTrZu0gW
  4. Cache-Control: no-cache
  5. Postman-Token: 06582464-29cd-834c-8df6-ca17600b6e5f
  6. ------WebKitFormBoundary7MA4YWxkTrZu0gW--
  1. {
  2. "code": 200,
  3. "data": "请求成功"
  4. }

题库管理模块

添加选择题

  1. POST /questionbank/question/choice HTTP/1.1
  2. Host: localhost:8080
  3. Content-Type: application/json
  4. Cache-Control: no-cache
  5. Postman-Token: f0ad938c-20e0-64d9-9658-eec247cf9bfd
  6. {
  7. "choiceOne":"A,内存和外存",
  8. "choiceTwo":"B,静态和动态特征",
  9. "choiceThree":"C,共享和独占使用计算机资源",
  10. "choiceFour":"D,顺序和非顺序执行机器指令",
  11. "answer":"B",
  12. "content":"进程和程序的本质区别是( )",
  13. "type":1,
  14. "level":1002,
  15. "subjectId":2,
  16. "teacherId":"04143160",
  17. "indicator":"2.1"
  18. }
  1. {
  2. "code": 200,
  3. "data": "请求成功"
  4. }

添加填空题

  1. POST /questionbank/question/fullblank HTTP/1.1
  2. Host: localhost:8080
  3. Content-Type: application/json
  4. Cache-Control: no-cache
  5. Postman-Token: b66ca1ae-27f9-dc5c-c439-3a7fcdabf921
  6. {
  7. "answer":"数据,PCB",
  8. "content":"进程由三部分组成,分别是程序 ,_________________和________________.。",
  9. "type":2,
  10. "level":1001,
  11. "subjectId":2,
  12. "teacherId":"04143160",
  13. "indicator":"4.1"
  14. }
  1. {
  2. "code": 200,
  3. "data": "请求成功"
  4. }

添加简答题

  1. POST /questionbank/question/shortanswer HTTP/1.1
  2. Host: localhost:8080
  3. Content-Type: application/json
  4. Cache-Control: no-cache
  5. Postman-Token: 4a0868e0-1bd2-037f-d43b-8512cd27d54b
  6. {
  7. "answer":"从资源管理者角度看,操作系统是计算机资源有效使用的管理者,提供了处理机管理、存储管理、设备管理、文件管理等;从用户角度来说,对操作系统提供了作业级和程序级的两种接口;第三种观点是从进程管理的观点来研究操作系统,这些观点彼此并不矛盾,代表了站在不同的角度来看操作系统,每一种观点都有助于理解、分析和设计操作系统。",
  8. "content":"简述操作系统的主要作用。",
  9. "type":3,
  10. "level":1003,
  11. "subjectId":2,
  12. "teacherId":"04143160",
  13. "indicator":"4.2"
  14. }
  1. {
  2. "code": 200,
  3. "data": "请求成功"
  4. }

添加应用题

  1. POST /questionbank/question/solving HTTP/1.1
  2. Host: localhost:8080
  3. Content-Type: application/json
  4. Cache-Control: no-cache
  5. Postman-Token: 32153f2b-a6a9-a3f3-3f0f-5f223e24cf9a
  6. {
  7. "answer":"因为页面数为8=23,故需要3位二进制数表示.每页有1024个字节,1024=210,于是页内地址需要10位二进制数表示.32个物理,需要5位二进制数表示(32=25).(1)页的逻辑地址由页号和页内地址组成,所以需要3+10=13位二进制数表示.(2)页的绝对地址由块号和页内地址的拼接,所以需要5+10=15位二进制数表示.",
  8. "content":"一个由8个页面,每页有1024个字节组成的进程的逻辑地址空间,把它装入到有32个物理块的存储器中,问: (1)逻辑地址需要多少位表示 (二进制)\n(2)绝对地址需要多少位表示 (二进制) \n(3)若分配给进程的物理块数为3,并且有如下的页表: \n块号\n0 2\n1 4\n2 7\n试把逻辑地址0x908转换成物理地址。\n",
  9. "type":4,
  10. "level":1005,
  11. "subjectId":1,
  12. "teacherId":"04143160",
  13. "indicator":"4.3"
  14. }
  1. {
  2. "code": 200,
  3. "data": "请求成功"
  4. }

删除题目

  1. DELETE /questionbank/question HTTP/1.1
  2. Host: localhost:8080
  3. Content-Type: application/json
  4. Cache-Control: no-cache
  5. Postman-Token: 7ad49c0f-1478-6da4-eaf2-c549ccd9dccc
  6. [10]
  1. {
  2. "code": 200,
  3. "data": "请求成功"
  4. }

获取所有题目根据题型

  1. GET /questionbank/question/1 HTTP/1.1
  2. Host: localhost:8080
  3. Content-Type: application/json
  4. Cache-Control: no-cache
  5. Postman-Token: 30f8ff80-2932-da01-7575-a9bdaba17914
  1. {
  2. "code": 200,
  3. "data": [
  4. {
  5. "questionTypeId": 2,
  6. "choiceId": 1,
  7. "choiceOne": "A.硬件",
  8. "choiceTwo": "B.操作系统",
  9. "choiceThree": "C.编译系统",
  10. "choiceFour": "D.应用程序",
  11. "answer": "B",
  12. "content": "对计算机系统起着控制和管理作用的是( )",
  13. "type": 1,
  14. "level": 1001,
  15. "subjectId": 2,
  16. "teacherId": "04143160",
  17. "indicator": "1.5"
  18. },
  19. {
  20. "questionTypeId": 7,
  21. "choiceId": 2,
  22. "choiceOne": "A,内存和外存",
  23. "choiceTwo": "B,静态和动态特征",
  24. "choiceThree": "C,共享和独占使用计算机资源",
  25. "choiceFour": "D,顺序和非顺序执行机器指令",
  26. "answer": "B",
  27. "content": "进程和程序的本质区别是( )",
  28. "type": 1,
  29. "level": 1002,
  30. "subjectId": 2,
  31. "teacherId": "04143160",
  32. "indicator": "2.1"
  33. }
  34. ]
  35. }

修改选择题

  1. PUT /questionbank/question/choice HTTP/1.1
  2. Host: localhost:8080
  3. Content-Type: application/json
  4. Cache-Control: no-cache
  5. Postman-Token: c56f2765-f04d-4fa5-7570-ee9a8c713e00
  6. { "questionTypeId": 2,
  7. "choiceId": 1,
  8. "choiceOne": "A.硬件",
  9. "choiceTwo": "B.操作系统",
  10. "choiceThree": "C.编译系统",
  11. "choiceFour": "D.应用程序",
  12. "answer": "B",
  13. "content": "对计算机系统起着控制和管理作用的是( )",
  14. "type": 1,
  15. "level": 1001,
  16. "subjectId": 2,
  17. "teacherId": "04143160",
  18. "indicator": "1.6"
  19. }
  1. {
  2. "code": 200,
  3. "data": "请求成功"
  4. }

修改填空题

  1. PUT /questionbank/question/fullblank HTTP/1.1
  2. Host: localhost:8080
  3. Content-Type: application/json
  4. Cache-Control: no-cache
  5. Postman-Token: 8cc01853-410d-0bf8-19e6-6bbb5a5eb6d1
  6. {
  7. "questionTypeId": 3,
  8. "fullBlankId": 1,
  9. "answer": "编程接口",
  10. "content": "用户使用操作系统的服务是通过两类接口,一种是作业控制级接口,另一种是__________ __。",
  11. "type": 2,
  12. "level": 1001,
  13. "subjectId": 2,
  14. "teacherId": "04143160",
  15. "indicator": "2.2"
  16. }
  1. {
  2. "code": 200,
  3. "data": "请求成功"
  4. }

修改简答题

  1. PUT /questionbank/question/shortanswer HTTP/1.1
  2. Host: localhost:8080
  3. Content-Type: application/json
  4. Cache-Control: no-cache
  5. Postman-Token: 8269aace-696d-2b73-f1ed-af09579d5a63
  6. {
  7. "questionTypeId": 5,
  8. "shortAnswerId": 1,
  9. "answer": "顺序执行:a.程序执行的顺序性:严格地按照程序指令的顺序执行。\n程序结果的不可再现性:并发程序执行的结果与其执行的相对速度有关,是不确定的",
  10. "content": "阐述程序的顺序执行和并发执行有何不同特性。",
  11. "type": 3,
  12. "level": 1002,
  13. "subjectId": 2,
  14. "teacherId": "04143161",
  15. "indicator": "4.1"
  16. }
  1. {
  2. "code": 200,
  3. "data": "请求成功"
  4. }

修改应用题

  1. PUT /questionbank/question/solving HTTP/1.1
  2. Host: localhost:8080
  3. Content-Type: application/json
  4. Cache-Control: no-cache
  5. Postman-Token: 38071afd-8cea-26c5-ae8c-62d0a1834af4
  6. {
  7. "questionTypeId": 6,
  8. "solvingId": 1,
  9. "content": "某系统采用页式存储管理,运行一个共有9页的作业,依次访问的页面的次序为123782141231526393526,若前五页已装入主存且维持五个页在主存工作,试问用FIFO置换算法时,完成该作业所产生的缺页中断次数和淘汰页面的次序?",
  10. "answer": "缺页7次 A B C A B C A B C A B C",
  11. "type": 4,
  12. "level": 1003,
  13. "subjectId": 2,
  14. "teacherId": "04143162",
  15. "indicator": "4.3"
  16. }
  1. {
  2. "code": 200,
  3. "data": "请求成功"
  4. }

信息管理模块

添加教师

  1. POST /questionbank/teacher HTTP/1.1
  2. Host: localhost:8080
  3. Content-Type: application/json
  4. Cache-Control: no-cache
  5. Postman-Token: d51d7412-8d3a-4a1e-847b-3e3d81caf766
  6. {
  7. "teacherId":"04143163",
  8. "professionId":2,
  9. "teacherName":"喵帕斯"
  10. }
  1. {
  2. "code": 200,
  3. "data": "请求成功"
  4. }

更新教师

  1. PUT /questionbank/teacher HTTP/1.1
  2. Host: localhost:8080
  3. Content-Type: application/json
  4. Cache-Control: no-cache
  5. Postman-Token: 79d89451-92e3-d759-6006-f543d4c8dd38
  6. {
  7. "teacherId":"04143163",
  8. "professionId":2,
  9. "teacherName":"三笠"
  10. }
  1. {
  2. "code": 200,
  3. "data": "请求成功"
  4. }

删除教师

  1. DELETE /questionbank/teacher/04143163 HTTP/1.1
  2. Host: localhost:8080
  3. Content-Type: multipart/form-data; boundary=----WebKitFormBoundary7MA4YWxkTrZu0gW
  4. Cache-Control: no-cache
  5. Postman-Token: 6f0cd744-75fb-2a0e-a99e-a6b6c81a2beb
  6. ------WebKitFormBoundary7MA4YWxkTrZu0gW
  1. {
  2. "code": 200,
  3. "data": "请求成功"
  4. }

获取所有教师信息

  1. GET /questionbank/teacher/all HTTP/1.1
  2. Host: localhost:8080
  3. Content-Type: application/json
  4. Cache-Control: no-cache
  5. Postman-Token: 6452ba23-e53f-5cda-88eb-10ed3d8a19c5
  1. {
  2. "code": 200,
  3. "data": [
  4. {
  5. "teacherId": "04143160",
  6. "professionId": 1,
  7. "teacherName": "喵帕斯"
  8. },
  9. {
  10. "teacherId": "04143161",
  11. "professionId": 2,
  12. "teacherName": "路飞"
  13. },
  14. {
  15. "teacherId": "04143162",
  16. "professionId": 3,
  17. "teacherName": "鸣人"
  18. }
  19. ]
  20. }

添加专业

  1. POST /questionbank/profession HTTP/1.1
  2. Host: localhost:8080
  3. Content-Type: application/json
  4. Cache-Control: no-cache
  5. Postman-Token: 53baa13c-e092-5927-4a65-769ae2a08f19
  6. {
  7. "professionName":"操作系统D"
  8. }
  1. {
  2. "code": 200,
  3. "data": "请求成功"
  4. }

更新专业

  1. PUT /questionbank/profession HTTP/1.1
  2. Host: localhost:8080
  3. Content-Type: application/json
  4. Cache-Control: no-cache
  5. Postman-Token: 1a592db3-12aa-a3c6-8a43-214c58b0477a
  6. {
  7. "professionId":4,
  8. "professionName":"操作系统D"
  9. }
  1. {
  2. "code": 200,
  3. "data": "请求成功"
  4. }

删除专业

  1. DELETE /questionbank/profession/4 HTTP/1.1
  2. Host: localhost:8080
  3. Content-Type: multipart/form-data; boundary=----WebKitFormBoundary7MA4YWxkTrZu0gW
  4. Cache-Control: no-cache
  5. Postman-Token: 3df04fde-8696-6e03-daaa-35e0f20c788a
  6. ------WebKitFormBoundary7MA4YWxkTrZu0gW
  1. {
  2. "code": 200,
  3. "data": "请求成功"
  4. }

获取所有专业信息

  1. GET /questionbank/profession/all HTTP/1.1
  2. Host: localhost:8080
  3. Content-Type: application/json
  4. Cache-Control: no-cache
  5. Postman-Token: 6452ba23-e53f-5cda-88eb-10ed3d8a19c5
  1. {
  2. "code": 200,
  3. "data": [
  4. {
  5. "professionId": 1,
  6. "professionName": "软件工程"
  7. },
  8. {
  9. "professionId": 2,
  10. "professionName": "计算机科学与技术"
  11. },
  12. {
  13. "professionId": 3,
  14. "professionName": "网络工程"
  15. }
  16. ]
  17. }

添加科目

  1. POST /questionbank/subject HTTP/1.1
  2. Host: localhost:8080
  3. Content-Type: application/json
  4. Cache-Control: no-cache
  5. Postman-Token: be6b12c4-9aee-1d79-4373-01f26d7bb047
  6. {
  7. "subjectName":"计算机网络",
  8. "professionId":3
  9. }
  1. {
  2. "code": 200,
  3. "data": "请求成功"
  4. }

更新科目

  1. PUT /questionbank/subject HTTP/1.1
  2. Host: localhost:8080
  3. Content-Type: application/json
  4. Cache-Control: no-cache
  5. Postman-Token: ae469b3d-c579-cecc-6ffe-0405aa9df596
  6. {
  7. "subjectId":4,
  8. "subjectName":"计算机网络",
  9. "professionId":3
  10. }
  1. {
  2. "code": 200,
  3. "data": "请求成功"
  4. }

删除科目

  1. DELETE /questionbank/subject/4 HTTP/1.1
  2. Host: localhost:8080
  3. Content-Type: multipart/form-data; boundary=----WebKitFormBoundary7MA4YWxkTrZu0gW
  4. Cache-Control: no-cache
  5. Postman-Token: d65b3c97-f146-cac6-b577-74375810fb08
  6. ------WebKitFormBoundary7MA4YWxkTrZu0gW
  1. {
  2. "code": 200,
  3. "data": "请求成功"
  4. }

获取所有科目信息

  1. GET /questionbank/subject/all HTTP/1.1
  2. Host: localhost:8080
  3. Content-Type: application/json
  4. Cache-Control: no-cache
  5. Postman-Token: ff8f2e96-4143-5860-7b61-e2fc93695634
  1. {
  2. "code": 200,
  3. "data": [
  4. {
  5. "subjectId": 1,
  6. "subjectName": "操作系统A",
  7. "professionId": 1
  8. },
  9. {
  10. "subjectId": 2,
  11. "subjectName": "操作系统C",
  12. "professionId": 3
  13. },
  14. {
  15. "subjectId": 3,
  16. "subjectName": "操作系统B",
  17. "professionId": 2
  18. }
  19. ]
  20. }

文档管理模块

生成新的试卷

  1. GET /questionbank/paper/9 HTTP/1.1
  2. Host: localhost:8080
  3. Content-Type: application/json
  4. Cache-Control: no-cache
  5. Postman-Token: e62a0cad-ee35-7d8e-ae8e-d544bf244205
  1. {
  2. "code": 200,
  3. "data": "请求成功"
  4. }题库中可能不存在该计划相关的试题"
  5. }如果成功创建试卷的话
  6. {
  7. "code": 200,
  8. "data": {
  9. "paperId": 1,
  10. "subjectId": 2,
  11. "teacherId": "1",
  12. "content": "/opt/eclipse/paper79334.doc",
  13. "createtime": null,
  14. "scheduleId": 9
  15. }
  16. }

获得试卷答案

  1. GET /questionbank/paper/9 HTTP/1.1
  2. Host: localhost:8080
  3. Content-Type: application/json
  4. Cache-Control: no-cache
  5. Postman-Token: e62a0cad-ee35-7d8e-ae8e-d544bf244205
  1. {
  2. "code": 200,
  3. "data": {
  4. "paperAnswerid": 1,
  5. "paperid": 1,
  6. "content": "/opt/eclipse/paperAnswer82323.doc",
  7. "createtime": 1523783015000
  8. }
  9. }

获得出题计划文档

  1. GET /questionbank/schedulepaper/9 HTTP/1.1
  2. Host: localhost:8080
  3. Content-Type: application/json
  4. Cache-Control: no-cache
  5. Postman-Token: 1b71d41c-9965-c1ca-93be-9e9a0a3336d9
  1. {
  2. "code": 200,
  3. "data": {
  4. "schedulePaperid": null,
  5. "scheduleid": 9,
  6. "content": "/opt/eclipse/paperSchedule55696.doc",
  7. "createtime": null
  8. }
  9. }

下载文档

  1. POST /questionbank/download HTTP/1.1
  2. Host: localhost:8080
  3. Content-Type: application/x-www-form-urlencoded
  4. Cache-Control: no-cache
  5. Postman-Token: febe40d1-6b4e-2fb0-a91e-fcba344b4060
  6. fileName=paperSchedule55696.doc&filePath=%2Fopt%2Feclipse%2FpaperSchedule55696.doc
  1. <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
  2. <?mso-application progid="Word.Document"?>
  3. <pkg:package xmlns:pkg="http://schemas.microsoft.com/office/2006/xmlPackage">
  4. <pkg:part pkg:contentType="application/vnd.openxmlformats-package.relationships+xml" pkg:name="/_rels/.rels" pkg:padding="512">
  5. <pkg:xmlData>
  6. <Relationships xmlns="http://schemas.openxmlformats.org/package/2006/relationships">
  7. <Relationship Id="rId3" Target="docProps/app.xml" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties"/>
  8. <Relationship Id="rId2" Target="docProps/core.xml" Type="http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties"/>
  9. <Relationship Id="rId1" Target="word/document.xml" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument"/>
  10. <Relationship Id="rId4" Target="docProps/custom.xml" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/custom-properties"/>
  11. </Relationships>
  12. </pkg:xmlData>
  13. </pkg:part>
  14. <pkg:part pkg:contentType="application/vnd.openxmlformats-package.relationships+xml" pkg:name="/word/_rels/document.xml.rels" pkg:padding="256">
  15. <pkg:xmlData>
  16. <Relationships xmlns="http://schemas.openxmlformats.org/package/2006/relationships">
  17. <Relationship Id="rId8" Target="theme/theme1.xml" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/theme"/>
  18. <Relationship Id="rId3" Target="settings.xml" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/settings"/>
  19. <Relationship Id="rId7" Target="fontTable.xml" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/fontTable"/>
  20. <Relationship Id="rId2" Target="styles.xml" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/styles"/>
  21. <Relationship Id="rId1" Target="numbering.xml" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/numbering"/>
  22. <Relationship Id="rId6" Target="endnotes.xml" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/endnotes"/>
  23. <Relationship Id="rId5" Target="footnotes.xml" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/footnotes"/>
  24. <Relationship Id="rId4" Target="webSettings.xml" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/webSettings"/>
  25. </Relationships>
  26. </pkg:xmlData>
  27. </pkg:part>
  28. <pkg:part pkg:contentType="application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml" pkg:name="/word/document.xml">
  29. <pkg:xmlData>
  30. <w:document mc:Ignorable="w14 w15 wp14" xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:w10="urn:schemas-microsoft-com:office:word" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml" xmlns:wne="http://schemas.microsoft.com/office/word/2006/wordml" xmlns:wp="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing" xmlns:wp14="http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing" xmlns:wpc="http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas" xmlns:wpg="http://schemas.microsoft.com/office/word/2010/wordprocessingGroup" xmlns:wpi="http://schemas.microsoft.com/office/word/2010/wordprocessingInk" xmlns:wps="http://schemas.microsoft.com/office/word/2010/wordprocessingShape">
  31. <w:body>
  32. <w:p w:rsidR="00F06332" w:rsidRDefault="00860BE6">
  33. <w:pPr>
  34. <w:spacing w:after="156" w:afterLines="50" w:line="60" w:lineRule="atLeast"/>
  35. <w:rPr>
  36. <w:rFonts w:hint="eastAsia"/>
  37. <w:szCs w:val="21"/>
  38. </w:rPr>
  39. </w:pPr>
  40. <w:bookmarkStart w:id="0" w:name="_GoBack"/>
  41. <w:bookmarkEnd w:id="0"/>
  42. <w:r>
  43. <w:rPr>
  44. <w:noProof/>
  45. <w:szCs w:val="21"/>
  46. </w:rPr>
  47. <w:pict>
  48. <v:rect fillcolor="black" id="_x0000_s1053" strokeweight=".26mm" style="position:absolute;left:0;text-align:left;margin-left:23.25pt;margin-top:3.3pt;width:9.8pt;height:9.75pt;z-index:6"/>
  49. </w:pict>
  50. </w:r>
  51. <w:r w:rsidR="00F06332">
  52. <w:rPr>
  53. <w:szCs w:val="21"/>
  54. <w:lang w:eastAsia="zh-CN" w:val="en-US"/>
  55. </w:rPr>
  56. <w:pict>
  57. <v:rect id="_x0000_s1026" style="position:absolute;left:0;text-align:left;margin-left:129.75pt;margin-top:2.85pt;width:9.8pt;height:9.75pt;z-index:3"/>
  58. </w:pict>
  59. </w:r>
  60. <w:r w:rsidR="00F06332">
  61. <w:rPr>
  62. <w:szCs w:val="21"/>
  63. <w:lang w:eastAsia="zh-CN" w:val="en-US"/>
  64. </w:rPr>
  65. <w:pict>
  66. <v:rect id="_x0000_s1027" style="position:absolute;left:0;text-align:left;margin-left:78.75pt;margin-top:3.3pt;width:9.8pt;height:9.75pt;z-index:1"/>
  67. </w:pict>
  68. </w:r>
  69. <w:r w:rsidR="00F06332">
  70. <w:rPr>
  71. <w:rFonts w:hint="eastAsia"/>
  72. <w:szCs w:val="21"/>
  73. </w:rPr>
  74. <w:t>A</w:t>
  75. </w:r>
  76. <w:r w:rsidR="00F06332">
  77. <w:rPr>
  78. <w:rFonts w:hint="eastAsia"/>
  79. <w:szCs w:val="21"/>
  80. </w:rPr>
  81. <w:t></w:t>
  82. </w:r>
  83. <w:r>
  84. <w:rPr>
  85. <w:rFonts w:hint="eastAsia"/>
  86. <w:szCs w:val="21"/>
  87. </w:rPr>
  88. <w:t xml:space="preserve"/>
  89. </w:r>
  90. <w:r w:rsidR="00F06332">
  91. <w:rPr>
  92. <w:rFonts w:hint="eastAsia"/>
  93. </w:rPr>
  94. <w:t xml:space="preserve"/>
  95. </w:r>
  96. <w:r w:rsidR="00F06332">
  97. <w:rPr>
  98. <w:rFonts w:hint="eastAsia"/>
  99. <w:szCs w:val="21"/>
  100. </w:rPr>
  101. <w:t>B</w:t>
  102. </w:r>
  103. <w:r w:rsidR="00F06332">
  104. <w:rPr>
  105. <w:rFonts w:hint="eastAsia"/>
  106. <w:szCs w:val="21"/>
  107. </w:rPr>
  108. <w:t></w:t>
  109. </w:r>
  110. <w:r w:rsidR="00F06332">
  111. <w:rPr>
  112. <w:rFonts w:hint="eastAsia"/>
  113. <w:szCs w:val="21"/>
  114. </w:rPr>
  115. <w:t xml:space="preserve">C</w:t>
  116. </w:r>
  117. <w:r w:rsidR="00F06332">
  118. <w:rPr>
  119. <w:rFonts w:hint="eastAsia"/>
  120. <w:szCs w:val="21"/>
  121. </w:rPr>
  122. <w:t></w:t>
  123. </w:r>
  124. </w:p>
  125. <w:p w:rsidR="00F06332" w:rsidRDefault="005847BB">
  126. <w:pPr>
  127. <w:spacing w:after="156" w:afterLines="50" w:line="60" w:lineRule="atLeast"/>
  128. <w:jc w:val="center"/>
  129. <w:rPr>
  130. <w:rFonts w:hint="eastAsia"/>
  131. <w:b/>
  132. <w:sz w:val="32"/>
  133. <w:szCs w:val="32"/>
  134. </w:rPr>
  135. </w:pPr>
  136. <w:r>
  137. <w:rPr>
  138. <w:b/>
  139. <w:sz w:val="32"/>
  140. <w:szCs w:val="32"/>
  141. </w:rPr>
  142. <w:t>2016-2017学年第一学期</w:t>
  143. </w:r>
  144. <w:r w:rsidR="00F06332">
  145. <w:rPr>
  146. <w:rFonts w:hint="eastAsia"/>
  147. <w:b/>
  148. <w:sz w:val="32"/>
  149. <w:szCs w:val="32"/>
  150. </w:rPr>
  151. <w:t>试卷编写计划</w:t>
  152. </w:r>
  153. </w:p>
  154. <w:p w:rsidR="00F06332" w:rsidRDefault="00F06332">
  155. <w:pPr>
  156. <w:spacing w:after="156" w:afterLines="50" w:line="140" w:lineRule="exact"/>
  157. <w:jc w:val="center"/>
  158. <w:rPr>
  159. <w:rFonts w:hint="eastAsia"/>
  160. <w:sz w:val="28"/>
  161. <w:szCs w:val="28"/>
  162. </w:rPr>
  163. </w:pPr>
  164. </w:p>
  165. <w:p w:rsidR="00F06332" w:rsidRDefault="00F06332">
  166. <w:pPr>
  167. <w:spacing w:line="480" w:lineRule="exact"/>
  168. <w:rPr>
  169. <w:rFonts w:hint="eastAsia"/>
  170. <w:sz w:val="24"/>
  171. <w:u w:val="single"/>
  172. </w:rPr>
  173. </w:pPr>
  174. <w:r>
  175. <w:rPr>
  176. <w:rFonts w:hint="eastAsia"/>
  177. <w:sz w:val="24"/>
  178. </w:rPr>
  179. <w:t>开课单位</w:t>
  180. </w:r>
  181. <w:r>
  182. <w:rPr>
  183. <w:rFonts w:hint="eastAsia"/>
  184. <w:b/>
  185. <w:sz w:val="24"/>
  186. </w:rPr>
  187. <w:t>:</w:t>
  188. </w:r>
  189. <w:r>
  190. <w:rPr>
  191. <w:rFonts w:hint="eastAsia"/>
  192. <w:sz w:val="24"/>
  193. </w:rPr>
  194. <w:t xml:space="preserve"/>
  195. </w:r>
  196. <w:r>
  197. <w:rPr>
  198. <w:rFonts w:hint="eastAsia"/>
  199. <w:i/>
  200. <w:sz w:val="24"/>
  201. <w:u w:val="single"/>
  202. </w:rPr>
  203. <w:t xml:space="preserve"/>
  204. </w:r>
  205. <w:r>
  206. <w:rPr>
  207. <w:rFonts w:hint="eastAsia"/>
  208. <w:sz w:val="24"/>
  209. <w:u w:val="single"/>
  210. </w:rPr>
  211. <w:t xml:space="preserve"/>
  212. </w:r>
  213. <w:r w:rsidR="00197347">
  214. <w:rPr>
  215. <w:sz w:val="24"/>
  216. <w:u w:val="single"/>
  217. </w:rPr>
  218. <w:t xml:space="preserve"/>
  219. </w:r>
  220. <w:r w:rsidR="005847BB">
  221. <w:rPr>
  222. <w:rFonts w:hint="eastAsia"/>
  223. <w:sz w:val="24"/>
  224. <w:u w:val="single"/>
  225. </w:rPr>
  226. <w:t></w:t>
  227. </w:r>
  228. <w:r w:rsidR="005847BB">
  229. <w:rPr>
  230. <w:sz w:val="24"/>
  231. <w:u w:val="single"/>
  232. </w:rPr>
  233. <w:t>计算机学院</w:t>
  234. </w:r>
  235. <w:r w:rsidR="00197347">
  236. <w:rPr>
  237. <w:sz w:val="24"/>
  238. <w:u w:val="single"/>
  239. </w:rPr>
  240. <w:t xml:space="preserve"/>
  241. </w:r>
  242. <w:r>
  243. <w:rPr>
  244. <w:rFonts w:hint="eastAsia"/>
  245. <w:sz w:val="24"/>
  246. <w:u w:val="single"/>
  247. </w:rPr>
  248. <w:t xml:space="preserve"/>
  249. </w:r>
  250. <w:r w:rsidR="00D11A8C">
  251. <w:rPr>
  252. <w:sz w:val="24"/>
  253. <w:u w:val="single"/>
  254. </w:rPr>
  255. <w:t xml:space="preserve"/>
  256. </w:r>
  257. <w:r>
  258. <w:rPr>
  259. <w:rFonts w:hint="eastAsia"/>
  260. <w:sz w:val="24"/>
  261. <w:u w:val="single"/>
  262. </w:rPr>
  263. <w:t xml:space="preserve"/>
  264. </w:r>
  265. <w:r>
  266. <w:rPr>
  267. <w:rFonts w:hint="eastAsia"/>
  268. <w:sz w:val="24"/>
  269. </w:rPr>
  270. <w:tab/>
  271. </w:r>
  272. <w:r>
  273. <w:rPr>
  274. <w:rFonts w:hint="eastAsia"/>
  275. <w:sz w:val="24"/>
  276. </w:rPr>
  277. <w:t>课程名称</w:t>
  278. </w:r>
  279. <w:r>
  280. <w:rPr>
  281. <w:rFonts w:hint="eastAsia"/>
  282. <w:b/>
  283. <w:sz w:val="24"/>
  284. </w:rPr>
  285. <w:t xml:space="preserve">: </w:t>
  286. </w:r>
  287. <w:r w:rsidR="005847BB">
  288. <w:rPr>
  289. <w:rFonts w:hint="eastAsia"/>
  290. <w:sz w:val="24"/>
  291. <w:u w:val="single"/>
  292. </w:rPr>
  293. <w:t xml:space="preserve"></w:t>
  294. </w:r>
  295. <w:r w:rsidR="005847BB">
  296. <w:rPr>
  297. <w:sz w:val="24"/>
  298. <w:u w:val="single"/>
  299. </w:rPr>
  300. <w:t>操作系统C</w:t>
  301. </w:r>
  302. <w:r w:rsidR="005847BB">
  303. <w:rPr>
  304. <w:rFonts w:hint="eastAsia"/>
  305. <w:sz w:val="24"/>
  306. <w:u w:val="single"/>
  307. </w:rPr>
  308. <w:t></w:t>
  309. </w:r>
  310. <w:r w:rsidR="00197347">
  311. <w:rPr>
  312. <w:rFonts w:hint="eastAsia"/>
  313. <w:sz w:val="24"/>
  314. <w:u w:val="single"/>
  315. </w:rPr>
  316. <w:t xml:space="preserve"/>
  317. </w:r>
  318. <w:r w:rsidR="00197347">
  319. <w:rPr>
  320. <w:sz w:val="24"/>
  321. <w:u w:val="single"/>
  322. </w:rPr>
  323. <w:t xml:space="preserve"/>
  324. </w:r>
  325. <w:r w:rsidR="00D11A8C">
  326. <w:rPr>
  327. <w:sz w:val="24"/>
  328. <w:u w:val="single"/>
  329. </w:rPr>
  330. <w:t xml:space="preserve"/>
  331. </w:r>
  332. <w:r>
  333. <w:rPr>
  334. <w:rFonts w:hint="eastAsia"/>
  335. <w:sz w:val="24"/>
  336. <w:u w:val="single"/>
  337. </w:rPr>
  338. <w:t xml:space="preserve"/>
  339. </w:r>
  340. </w:p>
  341. <w:p w:rsidR="00F06332" w:rsidRDefault="00F06332">
  342. <w:pPr>
  343. <w:spacing w:line="480" w:lineRule="exact"/>
  344. <w:rPr>
  345. <w:rFonts w:hint="eastAsia"/>
  346. <w:sz w:val="24"/>
  347. <w:u w:val="single"/>
  348. </w:rPr>
  349. </w:pPr>
  350. <w:r>
  351. <w:rPr>
  352. <w:rFonts w:hint="eastAsia"/>
  353. <w:sz w:val="24"/>
  354. </w:rPr>
  355. <w:t>计划学时</w:t>
  356. </w:r>
  357. <w:r>
  358. <w:rPr>
  359. <w:rFonts w:hint="eastAsia"/>
  360. <w:b/>
  361. <w:sz w:val="24"/>
  362. </w:rPr>
  363. <w:t>:</w:t>
  364. </w:r>
  365. <w:r>
  366. <w:rPr>
  367. <w:rFonts w:hint="eastAsia"/>
  368. <w:sz w:val="24"/>
  369. </w:rPr>
  370. <w:t xml:space="preserve"/>
  371. </w:r>
  372. <w:r>
  373. <w:rPr>
  374. <w:rFonts w:hint="eastAsia"/>
  375. <w:i/>
  376. <w:sz w:val="24"/>
  377. <w:u w:val="single"/>
  378. </w:rPr>
  379. <w:t xml:space="preserve"/>
  380. </w:r>
  381. <w:r>
  382. <w:rPr>
  383. <w:rFonts w:hint="eastAsia"/>
  384. <w:sz w:val="24"/>
  385. <w:u w:val="single"/>
  386. </w:rPr>
  387. <w:t xml:space="preserve"/>
  388. </w:r>
  389. <w:r w:rsidR="00197347">
  390. <w:rPr>
  391. <w:sz w:val="24"/>
  392. <w:u w:val="single"/>
  393. </w:rPr>
  394. <w:t xml:space="preserve"/>
  395. </w:r>
  396. <w:r>
  397. <w:rPr>
  398. <w:rFonts w:hint="eastAsia"/>
  399. <w:sz w:val="24"/>
  400. <w:u w:val="single"/>
  401. </w:rPr>
  402. <w:t xml:space="preserve"/>
  403. </w:r>
  404. <w:r w:rsidR="005847BB">
  405. <w:rPr>
  406. <w:rFonts w:hint="eastAsia"/>
  407. <w:sz w:val="24"/>
  408. <w:u w:val="single"/>
  409. </w:rPr>
  410. <w:t></w:t>
  411. </w:r>
  412. <w:r w:rsidR="005847BB">
  413. <w:rPr>
  414. <w:sz w:val="24"/>
  415. <w:u w:val="single"/>
  416. </w:rPr>
  417. <w:t>48</w:t>
  418. </w:r>
  419. <w:r w:rsidR="005847BB">
  420. <w:rPr>
  421. <w:rFonts w:hint="eastAsia"/>
  422. <w:sz w:val="24"/>
  423. <w:u w:val="single"/>
  424. </w:rPr>
  425. <w:t></w:t>
  426. </w:r>
  427. <w:r>
  428. <w:rPr>
  429. <w:rFonts w:hint="eastAsia"/>
  430. <w:sz w:val="24"/>
  431. <w:u w:val="single"/>
  432. </w:rPr>
  433. <w:t xml:space="preserve"/>
  434. </w:r>
  435. <w:r>
  436. <w:rPr>
  437. <w:rFonts w:hint="eastAsia"/>
  438. <w:sz w:val="24"/>
  439. </w:rPr>
  440. <w:tab/>
  441. </w:r>
  442. <w:r>
  443. <w:rPr>
  444. <w:rFonts w:hint="eastAsia"/>
  445. <w:sz w:val="24"/>
  446. </w:rPr>
  447. <w:t>命题教师</w:t>
  448. </w:r>
  449. <w:r>
  450. <w:rPr>
  451. <w:rFonts w:hint="eastAsia"/>
  452. <w:b/>
  453. <w:sz w:val="24"/>
  454. </w:rPr>
  455. <w:t xml:space="preserve">: </w:t>
  456. </w:r>
  457. <w:r>
  458. <w:rPr>
  459. <w:rFonts w:hint="eastAsia"/>
  460. <w:sz w:val="24"/>
  461. <w:u w:val="single"/>
  462. </w:rPr>
  463. <w:t xml:space="preserve"/>
  464. </w:r>
  465. <w:r w:rsidR="00197347">
  466. <w:rPr>
  467. <w:sz w:val="24"/>
  468. <w:u w:val="single"/>
  469. </w:rPr>
  470. <w:t xml:space="preserve"/>
  471. </w:r>
  472. <w:r w:rsidR="005847BB">
  473. <w:rPr>
  474. <w:rFonts w:hint="eastAsia"/>
  475. <w:sz w:val="24"/>
  476. <w:u w:val="single"/>
  477. </w:rPr>
  478. <w:t xml:space="preserve"></w:t>
  479. </w:r>
  480. <w:r w:rsidR="005847BB">
  481. <w:rPr>
  482. <w:sz w:val="24"/>
  483. <w:u w:val="single"/>
  484. </w:rPr>
  485. <w:t>喵帕斯</w:t>
  486. </w:r>
  487. <w:r w:rsidR="005847BB">
  488. <w:rPr>
  489. <w:rFonts w:hint="eastAsia"/>
  490. <w:sz w:val="24"/>
  491. <w:u w:val="single"/>
  492. </w:rPr>
  493. <w:t></w:t>
  494. </w:r>
  495. <w:r>
  496. <w:rPr>
  497. <w:rFonts w:hint="eastAsia"/>
  498. <w:sz w:val="24"/>
  499. <w:u w:val="single"/>
  500. </w:rPr>
  501. <w:t xml:space="preserve"/>
  502. </w:r>
  503. </w:p>
  504. <w:p w:rsidR="00F06332" w:rsidRDefault="00F06332">
  505. <w:pPr>
  506. <w:spacing w:line="480" w:lineRule="exact"/>
  507. <w:rPr>
  508. <w:rFonts w:hint="eastAsia"/>
  509. <w:sz w:val="24"/>
  510. </w:rPr>
  511. </w:pPr>
  512. <w:r>
  513. <w:rPr>
  514. <w:rFonts w:hint="eastAsia"/>
  515. <w:sz w:val="24"/>
  516. </w:rPr>
  517. <w:t>考试年级、专业:</w:t>
  518. </w:r>
  519. <w:r>
  520. <w:rPr>
  521. <w:rFonts w:hint="eastAsia"/>
  522. <w:sz w:val="24"/>
  523. <w:u w:val="single"/>
  524. </w:rPr>
  525. <w:t xml:space="preserve"/>
  526. </w:r>
  527. <w:r w:rsidR="005847BB">
  528. <w:rPr>
  529. <w:rFonts w:hint="eastAsia"/>
  530. <w:sz w:val="24"/>
  531. <w:u w:val="single"/>
  532. </w:rPr>
  533. <w:t></w:t>
  534. </w:r>
  535. <w:r w:rsidR="005847BB">
  536. <w:rPr>
  537. <w:sz w:val="24"/>
  538. <w:u w:val="single"/>
  539. </w:rPr>
  540. <w:t>软件15级</w:t>
  541. </w:r>
  542. <w:r w:rsidR="005847BB">
  543. <w:rPr>
  544. <w:rFonts w:hint="eastAsia"/>
  545. <w:sz w:val="24"/>
  546. <w:u w:val="single"/>
  547. </w:rPr>
  548. <w:t></w:t>
  549. </w:r>
  550. <w:r>
  551. <w:rPr>
  552. <w:rFonts w:hint="eastAsia"/>
  553. <w:sz w:val="24"/>
  554. <w:u w:val="single"/>
  555. </w:rPr>
  556. <w:t xml:space="preserve"/>
  557. </w:r>
  558. <w:r w:rsidR="00197347">
  559. <w:rPr>
  560. <w:sz w:val="24"/>
  561. <w:u w:val="single"/>
  562. </w:rPr>
  563. <w:t xml:space="preserve"/>
  564. </w:r>
  565. <w:r>
  566. <w:rPr>
  567. <w:rFonts w:hint="eastAsia"/>
  568. <w:sz w:val="24"/>
  569. <w:u w:val="single"/>
  570. </w:rPr>
  571. <w:t xml:space="preserve"/>
  572. </w:r>
  573. <w:r w:rsidR="00D11A8C">
  574. <w:rPr>
  575. <w:sz w:val="24"/>
  576. <w:u w:val="single"/>
  577. </w:rPr>
  578. <w:t xml:space="preserve"/>
  579. </w:r>
  580. <w:r>
  581. <w:rPr>
  582. <w:rFonts w:hint="eastAsia"/>
  583. <w:sz w:val="24"/>
  584. <w:u w:val="single"/>
  585. </w:rPr>
  586. <w:t xml:space="preserve"/>
  587. </w:r>
  588. </w:p>
  589. <w:p w:rsidR="00F06332" w:rsidRDefault="00F06332">
  590. <w:pPr>
  591. <w:spacing w:line="480" w:lineRule="exact"/>
  592. <w:rPr>
  593. <w:rFonts w:hint="eastAsia"/>
  594. <w:sz w:val="24"/>
  595. <w:u w:val="single"/>
  596. </w:rPr>
  597. </w:pPr>
  598. <w:r>
  599. <w:rPr>
  600. <w:rFonts w:hint="eastAsia"/>
  601. <w:sz w:val="24"/>
  602. </w:rPr>
  603. <w:t>命题日期:</w:t>
  604. </w:r>
  605. <w:r>
  606. <w:rPr>
  607. <w:rFonts w:hint="eastAsia"/>
  608. <w:sz w:val="24"/>
  609. <w:u w:val="single"/>
  610. </w:rPr>
  611. <w:t xml:space="preserve"/>
  612. </w:r>
  613. <w:r w:rsidR="005847BB">
  614. <w:rPr>
  615. <w:rFonts w:hint="eastAsia"/>
  616. <w:sz w:val="24"/>
  617. <w:u w:val="single"/>
  618. </w:rPr>
  619. <w:t></w:t>
  620. </w:r>
  621. <w:r w:rsidR="005847BB">
  622. <w:rPr>
  623. <w:sz w:val="24"/>
  624. <w:u w:val="single"/>
  625. </w:rPr>
  626. <w:t>2018-04-11 14:08:08.0</w:t>
  627. </w:r>
  628. <w:r w:rsidR="005847BB">
  629. <w:rPr>
  630. <w:rFonts w:hint="eastAsia"/>
  631. <w:sz w:val="24"/>
  632. <w:u w:val="single"/>
  633. </w:rPr>
  634. <w:t></w:t>
  635. </w:r>
  636. <w:r w:rsidR="00197347">
  637. <w:rPr>
  638. <w:sz w:val="24"/>
  639. <w:u w:val="single"/>
  640. </w:rPr>
  641. <w:t xml:space="preserve"/>
  642. </w:r>
  643. <w:r>
  644. <w:rPr>
  645. <w:rFonts w:hint="eastAsia"/>
  646. <w:sz w:val="24"/>
  647. <w:u w:val="single"/>
  648. </w:rPr>
  649. <w:t xml:space="preserve"/>
  650. </w:r>
  651. <w:r>
  652. <w:rPr>
  653. <w:rFonts w:hint="eastAsia"/>
  654. <w:sz w:val="24"/>
  655. </w:rPr>
  656. <w:t xml:space="preserve"/>
  657. </w:r>
  658. <w:r>
  659. <w:rPr>
  660. <w:rFonts w:hint="eastAsia"/>
  661. <w:sz w:val="24"/>
  662. </w:rPr>
  663. <w:t>考试时间:</w:t>
  664. </w:r>
  665. <w:r w:rsidR="005847BB">
  666. <w:rPr>
  667. <w:rFonts w:hint="eastAsia"/>
  668. <w:sz w:val="24"/>
  669. <w:u w:val="single"/>
  670. </w:rPr>
  671. <w:t xml:space="preserve"/>
  672. </w:r>
  673. <w:r w:rsidR="005847BB">
  674. <w:rPr>
  675. <w:sz w:val="24"/>
  676. <w:u w:val="single"/>
  677. </w:rPr>
  678. <w:t>7.8 10:00-12:00</w:t>
  679. </w:r>
  680. <w:r>
  681. <w:rPr>
  682. <w:rFonts w:hint="eastAsia"/>
  683. <w:sz w:val="24"/>
  684. <w:u w:val="single"/>
  685. </w:rPr>
  686. <w:t xml:space="preserve"/>
  687. </w:r>
  688. <w:r w:rsidR="00197347">
  689. <w:rPr>
  690. <w:sz w:val="24"/>
  691. <w:u w:val="single"/>
  692. </w:rPr>
  693. <w:t xml:space="preserve"/>
  694. </w:r>
  695. <w:r>
  696. <w:rPr>
  697. <w:rFonts w:hint="eastAsia"/>
  698. <w:sz w:val="24"/>
  699. <w:u w:val="single"/>
  700. </w:rPr>
  701. <w:t xml:space="preserve"/>
  702. </w:r>
  703. <w:r w:rsidR="00D11A8C">
  704. <w:rPr>
  705. <w:sz w:val="24"/>
  706. <w:u w:val="single"/>
  707. </w:rPr>
  708. <w:t xml:space="preserve"/>
  709. </w:r>
  710. <w:r>
  711. <w:rPr>
  712. <w:rFonts w:hint="eastAsia"/>
  713. <w:sz w:val="24"/>
  714. <w:u w:val="single"/>
  715. </w:rPr>
  716. <w:t xml:space="preserve"/>
  717. </w:r>
  718. </w:p>
  719. <w:p w:rsidR="00F06332" w:rsidRDefault="00CF72A7">
  720. <w:pPr>
  721. <w:spacing w:line="480" w:lineRule="exact"/>
  722. <w:rPr>
  723. <w:rFonts w:hint="eastAsia"/>
  724. <w:sz w:val="24"/>
  725. </w:rPr>
  726. </w:pPr>
  727. <w:r>
  728. <w:rPr>
  729. <w:rFonts w:hint="eastAsia"/>
  730. <w:b/>
  731. <w:noProof/>
  732. <w:sz w:val="28"/>
  733. <w:szCs w:val="28"/>
  734. </w:rPr>
  735. <w:pict>
  736. <v:rect fillcolor="black" id="_x0000_s1055" strokeweight=".26mm" style="position:absolute;left:0;text-align:left;margin-left:372pt;margin-top:9.4pt;width:9.8pt;height:9.75pt;z-index:8"/>
  737. </w:pict>
  738. </w:r>
  739. <w:r>
  740. <w:rPr>
  741. <w:rFonts w:hint="eastAsia"/>
  742. <w:b/>
  743. <w:noProof/>
  744. <w:sz w:val="28"/>
  745. <w:szCs w:val="28"/>
  746. </w:rPr>
  747. <w:pict>
  748. <v:rect fillcolor="black" id="_x0000_s1054" strokeweight=".26mm" style="position:absolute;left:0;text-align:left;margin-left:133.5pt;margin-top:9.4pt;width:9.8pt;height:9.75pt;z-index:7"/>
  749. </w:pict>
  750. </w:r>
  751. <w:r w:rsidR="00F06332">
  752. <w:rPr>
  753. <w:sz w:val="24"/>
  754. <w:lang w:eastAsia="zh-CN" w:val="en-US"/>
  755. </w:rPr>
  756. <w:pict>
  757. <v:rect id="_x0000_s1044" style="position:absolute;left:0;text-align:left;margin-left:416.25pt;margin-top:9.6pt;width:9.8pt;height:9.75pt;z-index:5"/>
  758. </w:pict>
  759. </w:r>
  760. <w:r w:rsidR="00F06332">
  761. <w:rPr>
  762. <w:sz w:val="24"/>
  763. <w:lang w:eastAsia="zh-CN" w:val="en-US"/>
  764. </w:rPr>
  765. <w:pict>
  766. <v:rect id="_x0000_s1046" style="position:absolute;left:0;text-align:left;margin-left:316.5pt;margin-top:9.85pt;width:9.8pt;height:9.75pt;z-index:4"/>
  767. </w:pict>
  768. </w:r>
  769. <w:r w:rsidR="00F06332">
  770. <w:rPr>
  771. <w:sz w:val="24"/>
  772. <w:lang w:eastAsia="zh-CN" w:val="en-US"/>
  773. </w:rPr>
  774. <w:pict>
  775. <v:rect id="_x0000_s1048" style="position:absolute;left:0;text-align:left;margin-left:78.75pt;margin-top:9.4pt;width:9.8pt;height:9.75pt;z-index:2"/>
  776. </w:pict>
  777. </w:r>
  778. <w:r w:rsidR="00F06332">
  779. <w:rPr>
  780. <w:rFonts w:hint="eastAsia"/>
  781. <w:sz w:val="24"/>
  782. </w:rPr>
  783. <w:t>AB</w:t>
  784. </w:r>
  785. <w:r w:rsidR="00F06332">
  786. <w:rPr>
  787. <w:rFonts w:hint="eastAsia"/>
  788. <w:sz w:val="24"/>
  789. </w:rPr>
  790. <w:t>巻制</w:t>
  791. </w:r>
  792. <w:r w:rsidR="00F06332">
  793. <w:rPr>
  794. <w:rFonts w:hint="eastAsia"/>
  795. <w:b/>
  796. <w:sz w:val="24"/>
  797. </w:rPr>
  798. <w:t></w:t>
  799. </w:r>
  800. <w:r w:rsidR="00F06332">
  801. <w:rPr>
  802. <w:rFonts w:hint="eastAsia"/>
  803. <w:b/>
  804. <w:sz w:val="24"/>
  805. </w:rPr>
  806. <w:t xml:space="preserve"/>
  807. </w:r>
  808. <w:r w:rsidR="00F06332">
  809. <w:rPr>
  810. <w:rFonts w:hint="eastAsia"/>
  811. <w:sz w:val="24"/>
  812. </w:rPr>
  813. <w:t></w:t>
  814. </w:r>
  815. <w:r w:rsidR="00F06332">
  816. <w:rPr>
  817. <w:rFonts w:hint="eastAsia"/>
  818. <w:sz w:val="24"/>
  819. </w:rPr>
  820. <w:t xml:space="preserve"/>
  821. </w:r>
  822. <w:r w:rsidR="00F06332">
  823. <w:rPr>
  824. <w:rFonts w:hint="eastAsia"/>
  825. <w:sz w:val="24"/>
  826. </w:rPr>
  827. <w:t></w:t>
  828. </w:r>
  829. <w:r w:rsidR="00F06332">
  830. <w:rPr>
  831. <w:rFonts w:hint="eastAsia"/>
  832. <w:sz w:val="24"/>
  833. </w:rPr>
  834. <w:t xml:space="preserve"/>
  835. </w:r>
  836. <w:r w:rsidR="00F06332">
  837. <w:rPr>
  838. <w:rFonts w:hint="eastAsia"/>
  839. <w:sz w:val="24"/>
  840. </w:rPr>
  841. <w:tab/>
  842. </w:r>
  843. <w:r w:rsidR="00F06332">
  844. <w:rPr>
  845. <w:rFonts w:hint="eastAsia"/>
  846. <w:sz w:val="24"/>
  847. </w:rPr>
  848. <w:t>考试方式:</w:t>
  849. </w:r>
  850. <w:r w:rsidR="00F06332">
  851. <w:rPr>
  852. <w:rFonts w:hint="eastAsia"/>
  853. <w:sz w:val="24"/>
  854. </w:rPr>
  855. <w:t xml:space="preserve"/>
  856. </w:r>
  857. <w:r w:rsidR="00F06332">
  858. <w:rPr>
  859. <w:rFonts w:hint="eastAsia"/>
  860. <w:sz w:val="24"/>
  861. </w:rPr>
  862. <w:t>开卷</w:t>
  863. </w:r>
  864. <w:r w:rsidR="00F06332">
  865. <w:rPr>
  866. <w:rFonts w:hint="eastAsia"/>
  867. <w:sz w:val="24"/>
  868. </w:rPr>
  869. <w:t xml:space="preserve"/>
  870. </w:r>
  871. <w:r w:rsidR="00F06332">
  872. <w:rPr>
  873. <w:rFonts w:hint="eastAsia"/>
  874. <w:sz w:val="24"/>
  875. </w:rPr>
  876. <w:t>闭卷</w:t>
  877. </w:r>
  878. <w:r w:rsidR="00F06332">
  879. <w:rPr>
  880. <w:rFonts w:hint="eastAsia"/>
  881. <w:sz w:val="24"/>
  882. </w:rPr>
  883. <w:t xml:space="preserve"/>
  884. </w:r>
  885. <w:r w:rsidR="00F06332">
  886. <w:rPr>
  887. <w:rFonts w:hint="eastAsia"/>
  888. <w:sz w:val="24"/>
  889. </w:rPr>
  890. <w:t>其他</w:t>
  891. </w:r>
  892. </w:p>
  893. <w:p w:rsidR="00F06332" w:rsidRDefault="00F06332">
  894. <w:pPr>
  895. <w:spacing w:line="480" w:lineRule="exact"/>
  896. <w:rPr>
  897. <w:rFonts w:hint="eastAsia"/>
  898. <w:sz w:val="24"/>
  899. <w:u w:val="single"/>
  900. </w:rPr>
  901. </w:pPr>
  902. <w:r>
  903. <w:rPr>
  904. <w:rFonts w:hint="eastAsia"/>
  905. <w:sz w:val="24"/>
  906. </w:rPr>
  907. <w:t>预估平均成绩:</w:t>
  908. </w:r>
  909. <w:r>
  910. <w:rPr>
  911. <w:rFonts w:hint="eastAsia"/>
  912. <w:sz w:val="24"/>
  913. <w:u w:val="single"/>
  914. </w:rPr>
  915. <w:t xml:space="preserve"/>
  916. </w:r>
  917. <w:r w:rsidR="00197347">
  918. <w:rPr>
  919. <w:sz w:val="24"/>
  920. <w:u w:val="single"/>
  921. </w:rPr>
  922. <w:t xml:space="preserve"/>
  923. </w:r>
  924. <w:r w:rsidR="005847BB">
  925. <w:rPr>
  926. <w:rFonts w:hint="eastAsia"/>
  927. <w:sz w:val="24"/>
  928. <w:u w:val="single"/>
  929. </w:rPr>
  930. <w:t></w:t>
  931. </w:r>
  932. <w:r w:rsidR="005847BB">
  933. <w:rPr>
  934. <w:sz w:val="24"/>
  935. <w:u w:val="single"/>
  936. </w:rPr>
  937. <w:t>70</w:t>
  938. </w:r>
  939. <w:r w:rsidR="005847BB">
  940. <w:rPr>
  941. <w:rFonts w:hint="eastAsia"/>
  942. <w:sz w:val="24"/>
  943. <w:u w:val="single"/>
  944. </w:rPr>
  945. <w:t></w:t>
  946. </w:r>
  947. <w:r w:rsidR="00197347">
  948. <w:rPr>
  949. <w:sz w:val="24"/>
  950. <w:u w:val="single"/>
  951. </w:rPr>
  952. <w:t xml:space="preserve"/>
  953. </w:r>
  954. <w:r>
  955. <w:rPr>
  956. <w:rFonts w:hint="eastAsia"/>
  957. <w:sz w:val="24"/>
  958. <w:u w:val="single"/>
  959. </w:rPr>
  960. <w:t xml:space="preserve"/>
  961. </w:r>
  962. </w:p>
  963. <w:p w:rsidP="00844BA3" w:rsidR="00B51253" w:rsidRDefault="00B51253">
  964. <w:pPr>
  965. <w:spacing w:before="156" w:beforeLines="50"/>
  966. <w:jc w:val="center"/>
  967. <w:rPr>
  968. <w:b/>
  969. <w:sz w:val="28"/>
  970. <w:szCs w:val="28"/>
  971. </w:rPr>
  972. </w:pPr>
  973. <w:r>
  974. <w:rPr>
  975. <w:rFonts w:hint="eastAsia"/>
  976. <w:b/>
  977. <w:sz w:val="28"/>
  978. <w:szCs w:val="28"/>
  979. </w:rPr>
  980. <w:t>试题</w:t>
  981. </w:r>
  982. <w:r>
  983. <w:rPr>
  984. <w:b/>
  985. <w:sz w:val="28"/>
  986. <w:szCs w:val="28"/>
  987. </w:rPr>
  988. <w:t>与毕业要求指标点</w:t>
  989. </w:r>
  990. <w:r>
  991. <w:rPr>
  992. <w:rFonts w:hint="eastAsia"/>
  993. <w:b/>
  994. <w:sz w:val="28"/>
  995. <w:szCs w:val="28"/>
  996. </w:rPr>
  997. <w:t>支撑</w:t>
  998. </w:r>
  999. <w:r>
  1000. <w:rPr>
  1001. <w:b/>
  1002. <w:sz w:val="28"/>
  1003. <w:szCs w:val="28"/>
  1004. </w:rPr>
  1005. <w:t>关系</w:t>
  1006. </w:r>
  1007. <w:r w:rsidR="00B20A57">
  1008. <w:rPr>
  1009. <w:rFonts w:hint="eastAsia"/>
  1010. <w:b/>
  1011. <w:sz w:val="28"/>
  1012. <w:szCs w:val="28"/>
  1013. </w:rPr>
  1014. <w:t></w:t>
  1015. </w:r>
  1016. </w:p>
  1017. <w:tbl>
  1018. <w:tblPr>
  1019. <w:tblW w:type="auto" w:w="0"/>
  1020. <w:tblBorders>
  1021. <w:top w:color="auto" w:space="0" w:sz="4" w:val="single"/>
  1022. <w:left w:color="auto" w:space="0" w:sz="4" w:val="single"/>
  1023. <w:bottom w:color="auto" w:space="0" w:sz="4" w:val="single"/>
  1024. <w:right w:color="auto" w:space="0" w:sz="4" w:val="single"/>
  1025. <w:insideH w:color="auto" w:space="0" w:sz="4" w:val="single"/>
  1026. <w:insideV w:color="auto" w:space="0" w:sz="4" w:val="single"/>
  1027. </w:tblBorders>
  1028. <w:tblLook w:firstColumn="1" w:firstRow="1" w:lastColumn="0" w:lastRow="0" w:noHBand="0" w:noVBand="1" w:val="04A0"/>
  1029. </w:tblPr>
  1030. <w:tblGrid>
  1031. <w:gridCol w:w="553"/>
  1032. <w:gridCol w:w="1071"/>
  1033. <w:gridCol w:w="1060"/>
  1034. <w:gridCol w:w="2337"/>
  1035. <w:gridCol w:w="1384"/>
  1036. <w:gridCol w:w="1678"/>
  1037. </w:tblGrid>
  1038. <w:tr w:rsidR="00D2673F" w:rsidRPr="005D5E20" w:rsidTr="00C30083">
  1039. <w:trPr>
  1040. <w:trHeight w:val="946"/>
  1041. </w:trPr>
  1042. <w:tc>
  1043. <w:tcPr>
  1044. <w:tcW w:type="dxa" w:w="1624"/>
  1045. <w:gridSpan w:val="2"/>
  1046. <w:shd w:color="auto" w:fill="auto" w:val="clear"/>
  1047. <w:vAlign w:val="center"/>
  1048. </w:tcPr>
  1049. <w:p w:rsidP="005D5E20" w:rsidR="00D2673F" w:rsidRDefault="00D2673F" w:rsidRPr="005D5E20">
  1050. <w:pPr>
  1051. <w:spacing w:line="360" w:lineRule="auto"/>
  1052. <w:jc w:val="center"/>
  1053. <w:rPr>
  1054. <w:b/>
  1055. <w:szCs w:val="21"/>
  1056. </w:rPr>
  1057. </w:pPr>
  1058. <w:r w:rsidRPr="005D5E20">
  1059. <w:rPr>
  1060. <w:rFonts w:hint="eastAsia"/>
  1061. <w:b/>
  1062. <w:szCs w:val="21"/>
  1063. </w:rPr>
  1064. <w:t>题号</w:t>
  1065. </w:r>
  1066. </w:p>
  1067. </w:tc>
  1068. <w:tc>
  1069. <w:tcPr>
  1070. <w:tcW w:type="dxa" w:w="1060"/>
  1071. <w:shd w:color="auto" w:fill="auto" w:val="clear"/>
  1072. <w:vAlign w:val="center"/>
  1073. </w:tcPr>
  1074. <w:p w:rsidP="005D5E20" w:rsidR="00D2673F" w:rsidRDefault="00D2673F" w:rsidRPr="005D5E20">
  1075. <w:pPr>
  1076. <w:spacing w:line="360" w:lineRule="auto"/>
  1077. <w:jc w:val="center"/>
  1078. <w:rPr>
  1079. <w:b/>
  1080. <w:szCs w:val="21"/>
  1081. </w:rPr>
  1082. </w:pPr>
  1083. <w:r w:rsidRPr="005D5E20">
  1084. <w:rPr>
  1085. <w:rFonts w:hint="eastAsia"/>
  1086. <w:b/>
  1087. <w:szCs w:val="21"/>
  1088. </w:rPr>
  1089. <w:t>总分</w:t>
  1090. </w:r>
  1091. </w:p>
  1092. </w:tc>
  1093. <w:tc>
  1094. <w:tcPr>
  1095. <w:tcW w:type="dxa" w:w="2337"/>
  1096. <w:shd w:color="auto" w:fill="auto" w:val="clear"/>
  1097. <w:vAlign w:val="center"/>
  1098. </w:tcPr>
  1099. <w:p w:rsidP="005D5E20" w:rsidR="00D2673F" w:rsidRDefault="00D2673F" w:rsidRPr="005D5E20">
  1100. <w:pPr>
  1101. <w:spacing w:line="360" w:lineRule="auto"/>
  1102. <w:jc w:val="center"/>
  1103. <w:rPr>
  1104. <w:rFonts w:hint="eastAsia"/>
  1105. <w:b/>
  1106. <w:szCs w:val="21"/>
  1107. </w:rPr>
  1108. </w:pPr>
  1109. <w:r w:rsidRPr="005D5E20">
  1110. <w:rPr>
  1111. <w:rFonts w:hint="eastAsia"/>
  1112. <w:b/>
  1113. <w:szCs w:val="21"/>
  1114. </w:rPr>
  1115. <w:t>支撑指标点</w:t>
  1116. </w:r>
  1117. </w:p>
  1118. </w:tc>
  1119. <w:tc>
  1120. <w:tcPr>
  1121. <w:tcW w:type="dxa" w:w="1384"/>
  1122. <w:vAlign w:val="center"/>
  1123. </w:tcPr>
  1124. <w:p w:rsidP="005D5E20" w:rsidR="00D2673F" w:rsidRDefault="00D2673F" w:rsidRPr="005D5E20">
  1125. <w:pPr>
  1126. <w:spacing w:line="360" w:lineRule="auto"/>
  1127. <w:jc w:val="center"/>
  1128. <w:rPr>
  1129. <w:rFonts w:hint="eastAsia"/>
  1130. <w:b/>
  1131. <w:szCs w:val="21"/>
  1132. </w:rPr>
  1133. </w:pPr>
  1134. <w:r>
  1135. <w:rPr>
  1136. <w:rFonts w:hint="eastAsia"/>
  1137. <w:b/>
  1138. <w:szCs w:val="21"/>
  1139. </w:rPr>
  1140. <w:t>内容</w:t>
  1141. </w:r>
  1142. </w:p>
  1143. </w:tc>
  1144. <w:tc>
  1145. <w:tcPr>
  1146. <w:tcW w:type="dxa" w:w="1384"/>
  1147. </w:tcPr>
  1148. <w:p w:rsidP="00D2673F" w:rsidR="00D2673F" w:rsidRDefault="00D2673F">
  1149. <w:pPr>
  1150. <w:spacing w:line="360" w:lineRule="auto"/>
  1151. <w:jc w:val="center"/>
  1152. <w:rPr>
  1153. <w:rFonts w:hint="eastAsia"/>
  1154. <w:b/>
  1155. <w:szCs w:val="21"/>
  1156. </w:rPr>
  1157. </w:pPr>
  1158. <w:r>
  1159. <w:rPr>
  1160. <w:rFonts w:hint="eastAsia"/>
  1161. <w:b/>
  1162. <w:szCs w:val="21"/>
  1163. </w:rPr>
  1164. <w:t>层次</w:t>
  1165. </w:r>
  1166. </w:p>
  1167. </w:tc>
  1168. </w:tr>
  1169. <w:tr w:rsidR="00D2673F" w:rsidRPr="005D5E20" w:rsidTr="00C30083">
  1170. <w:tc>
  1171. <w:tcPr>
  1172. <w:tcW w:type="dxa" w:w="553"/>
  1173. <w:vMerge w:val="restart"/>
  1174. <w:shd w:color="auto" w:fill="auto" w:val="clear"/>
  1175. <w:vAlign w:val="center"/>
  1176. </w:tcPr>
  1177. <w:p w:rsidP="005D5E20" w:rsidR="00D2673F" w:rsidRDefault="00D2673F" w:rsidRPr="005D5E20">
  1178. <w:pPr>
  1179. <w:spacing w:line="360" w:lineRule="auto"/>
  1180. <w:jc w:val="center"/>
  1181. <w:rPr>
  1182. <w:szCs w:val="21"/>
  1183. </w:rPr>
  1184. </w:pPr>
  1185. <w:r w:rsidRPr="005D5E20">
  1186. <w:rPr>
  1187. <w:rFonts w:hint="eastAsia"/>
  1188. <w:szCs w:val="21"/>
  1189. </w:rPr>
  1190. <w:t></w:t>
  1191. </w:r>
  1192. </w:p>
  1193. </w:tc>
  1194. <w:tc>
  1195. <w:tcPr>
  1196. <w:tcW w:type="dxa" w:w="1071"/>
  1197. <w:shd w:color="auto" w:fill="auto" w:val="clear"/>
  1198. </w:tcPr>
  1199. <w:p w:rsidP="005D5E20" w:rsidR="00D2673F" w:rsidRDefault="00D2673F" w:rsidRPr="005D5E20">
  1200. <w:pPr>
  1201. <w:spacing w:line="360" w:lineRule="auto"/>
  1202. <w:jc w:val="center"/>
  1203. <w:rPr>
  1204. <w:szCs w:val="21"/>
  1205. </w:rPr>
  1206. </w:pPr>
  1207. <w:r>
  1208. <w:rPr>
  1209. <w:rFonts w:hint="eastAsia"/>
  1210. <w:szCs w:val="21"/>
  1211. </w:rPr>
  1212. <w:t></w:t>
  1213. </w:r>
  1214. <w:r>
  1215. <w:rPr>
  1216. <w:szCs w:val="21"/>
  1217. </w:rPr>
  1218. <w:t>1</w:t>
  1219. </w:r>
  1220. <w:r>
  1221. <w:rPr>
  1222. <w:rFonts w:hint="eastAsia"/>
  1223. <w:szCs w:val="21"/>
  1224. </w:rPr>
  1225. <w:t></w:t>
  1226. </w:r>
  1227. </w:p>
  1228. </w:tc>
  1229. <w:tc>
  1230. <w:tcPr>
  1231. <w:tcW w:type="dxa" w:w="1060"/>
  1232. <w:shd w:color="auto" w:fill="auto" w:val="clear"/>
  1233. </w:tcPr>
  1234. <w:p w:rsidP="005D5E20" w:rsidR="00D2673F" w:rsidRDefault="00D2673F" w:rsidRPr="005D5E20">
  1235. <w:pPr>
  1236. <w:spacing w:line="360" w:lineRule="auto"/>
  1237. <w:jc w:val="center"/>
  1238. <w:rPr>
  1239. <w:szCs w:val="21"/>
  1240. </w:rPr>
  1241. </w:pPr>
  1242. <w:r>
  1243. <w:rPr>
  1244. <w:rFonts w:hint="eastAsia"/>
  1245. <w:szCs w:val="21"/>
  1246. </w:rPr>
  1247. <w:t></w:t>
  1248. </w:r>
  1249. <w:r>
  1250. <w:rPr>
  1251. <w:szCs w:val="21"/>
  1252. </w:rPr>
  1253. <w:t>10</w:t>
  1254. </w:r>
  1255. <w:r>
  1256. <w:rPr>
  1257. <w:rFonts w:hint="eastAsia"/>
  1258. <w:szCs w:val="21"/>
  1259. </w:rPr>
  1260. <w:t></w:t>
  1261. </w:r>
  1262. </w:p>
  1263. </w:tc>
  1264. <w:tc>
  1265. <w:tcPr>
  1266. <w:tcW w:type="dxa" w:w="2337"/>
  1267. <w:shd w:color="auto" w:fill="auto" w:val="clear"/>
  1268. </w:tcPr>
  1269. <w:p w:rsidP="00F451CB" w:rsidR="00D2673F" w:rsidRDefault="00D2673F" w:rsidRPr="00F451CB">
  1270. <w:pPr>
  1271. <w:spacing w:line="360" w:lineRule="auto"/>
  1272. <w:jc w:val="center"/>
  1273. <w:rPr>
  1274. <w:szCs w:val="21"/>
  1275. </w:rPr>
  1276. </w:pPr>
  1277. <w:r>
  1278. <w:rPr>
  1279. <w:rFonts w:hint="eastAsia"/>
  1280. <w:szCs w:val="21"/>
  1281. </w:rPr>
  1282. <w:t></w:t>
  1283. </w:r>
  1284. <w:r>
  1285. <w:rPr>
  1286. <w:szCs w:val="21"/>
  1287. </w:rPr>
  1288. <w:t>1.5</w:t>
  1289. </w:r>
  1290. <w:r>
  1291. <w:rPr>
  1292. <w:rFonts w:hint="eastAsia"/>
  1293. <w:szCs w:val="21"/>
  1294. </w:rPr>
  1295. <w:t></w:t>
  1296. </w:r>
  1297. </w:p>
  1298. <w:p w:rsidP="00F451CB" w:rsidR="00D2673F" w:rsidRDefault="00D2673F" w:rsidRPr="005D5E20">
  1299. <w:pPr>
  1300. <w:spacing w:line="360" w:lineRule="auto"/>
  1301. <w:jc w:val="center"/>
  1302. <w:rPr>
  1303. <w:szCs w:val="21"/>
  1304. </w:rPr>
  1305. </w:pPr>
  1306. </w:p>
  1307. </w:tc>
  1308. <w:tc>
  1309. <w:tcPr>
  1310. <w:tcW w:type="dxa" w:w="1384"/>
  1311. </w:tcPr>
  1312. <w:p w:rsidP="00CE17DA" w:rsidR="00D2673F" w:rsidRDefault="00D2673F" w:rsidRPr="004B35D2">
  1313. <w:pPr>
  1314. <w:spacing w:line="360" w:lineRule="auto"/>
  1315. <w:ind w:firstLine="210" w:firstLineChars="100"/>
  1316. <w:rPr>
  1317. <w:rFonts w:ascii="宋体" w:cs="黑体" w:hAnsi="宋体" w:hint="eastAsia"/>
  1318. <w:i/>
  1319. <w:color w:val="FF0000"/>
  1320. <w:kern w:val="0"/>
  1321. </w:rPr>
  1322. </w:pPr>
  1323. <w:r>
  1324. <w:rPr>
  1325. <w:szCs w:val="21"/>
  1326. </w:rPr>
  1327. <w:t>所有章节</w:t>
  1328. </w:r>
  1329. </w:p>
  1330. </w:tc>
  1331. <w:tc>
  1332. <w:tcPr>
  1333. <w:tcW w:type="dxa" w:w="1384"/>
  1334. </w:tcPr>
  1335. <w:p w:rsidP="008F53D4" w:rsidR="00D2673F" w:rsidRDefault="00D2673F">
  1336. <w:pPr>
  1337. <w:spacing w:line="360" w:lineRule="auto"/>
  1338. <w:rPr>
  1339. <w:szCs w:val="21"/>
  1340. </w:rPr>
  1341. </w:pPr>
  1342. <w:r>
  1343. <w:rPr>
  1344. <w:rFonts w:hint="eastAsia"/>
  1345. <w:szCs w:val="21"/>
  1346. </w:rPr>
  1347. <w:t></w:t>
  1348. </w:r>
  1349. <w:r>
  1350. <w:rPr>
  1351. <w:szCs w:val="21"/>
  1352. </w:rPr>
  1353. <w:t>1</w:t>
  1354. </w:r>
  1355. <w:r>
  1356. <w:rPr>
  1357. <w:rFonts w:hint="eastAsia"/>
  1358. <w:szCs w:val="21"/>
  1359. </w:rPr>
  1360. <w:t></w:t>
  1361. </w:r>
  1362. </w:p>
  1363. </w:tc>
  1364. </w:tr>
  1365. <w:tr w:rsidR="00D2673F" w:rsidRPr="005D5E20" w:rsidTr="00C30083">
  1366. <w:tc>
  1367. <w:tcPr>
  1368. <w:tcW w:type="dxa" w:w="553"/>
  1369. <w:vMerge w:val="restart"/>
  1370. <w:shd w:color="auto" w:fill="auto" w:val="clear"/>
  1371. <w:vAlign w:val="center"/>
  1372. </w:tcPr>
  1373. <w:p w:rsidP="005D5E20" w:rsidR="00D2673F" w:rsidRDefault="00D2673F" w:rsidRPr="005D5E20">
  1374. <w:pPr>
  1375. <w:spacing w:line="360" w:lineRule="auto"/>
  1376. <w:jc w:val="center"/>
  1377. <w:rPr>
  1378. <w:szCs w:val="21"/>
  1379. </w:rPr>
  1380. </w:pPr>
  1381. <w:r w:rsidRPr="005D5E20">
  1382. <w:rPr>
  1383. <w:rFonts w:hint="eastAsia"/>
  1384. <w:szCs w:val="21"/>
  1385. </w:rPr>
  1386. <w:t></w:t>
  1387. </w:r>
  1388. </w:p>
  1389. </w:tc>
  1390. <w:tc>
  1391. <w:tcPr>
  1392. <w:tcW w:type="dxa" w:w="1071"/>
  1393. <w:shd w:color="auto" w:fill="auto" w:val="clear"/>
  1394. </w:tcPr>
  1395. <w:p w:rsidP="005D5E20" w:rsidR="00D2673F" w:rsidRDefault="00D2673F" w:rsidRPr="005D5E20">
  1396. <w:pPr>
  1397. <w:spacing w:line="360" w:lineRule="auto"/>
  1398. <w:jc w:val="center"/>
  1399. <w:rPr>
  1400. <w:szCs w:val="21"/>
  1401. </w:rPr>
  1402. </w:pPr>
  1403. <w:r>
  1404. <w:rPr>
  1405. <w:rFonts w:hint="eastAsia"/>
  1406. <w:szCs w:val="21"/>
  1407. </w:rPr>
  1408. <w:t></w:t>
  1409. </w:r>
  1410. <w:r>
  1411. <w:rPr>
  1412. <w:szCs w:val="21"/>
  1413. </w:rPr>
  1414. <w:t>1</w:t>
  1415. </w:r>
  1416. <w:r>
  1417. <w:rPr>
  1418. <w:rFonts w:hint="eastAsia"/>
  1419. <w:szCs w:val="21"/>
  1420. </w:rPr>
  1421. <w:t></w:t>
  1422. </w:r>
  1423. </w:p>
  1424. </w:tc>
  1425. <w:tc>
  1426. <w:tcPr>
  1427. <w:tcW w:type="dxa" w:w="1060"/>
  1428. <w:shd w:color="auto" w:fill="auto" w:val="clear"/>
  1429. </w:tcPr>
  1430. <w:p w:rsidP="005D5E20" w:rsidR="00D2673F" w:rsidRDefault="00D2673F" w:rsidRPr="005D5E20">
  1431. <w:pPr>
  1432. <w:spacing w:line="360" w:lineRule="auto"/>
  1433. <w:jc w:val="center"/>
  1434. <w:rPr>
  1435. <w:szCs w:val="21"/>
  1436. </w:rPr>
  1437. </w:pPr>
  1438. <w:r>
  1439. <w:rPr>
  1440. <w:rFonts w:hint="eastAsia"/>
  1441. <w:szCs w:val="21"/>
  1442. </w:rPr>
  1443. <w:t></w:t>
  1444. </w:r>
  1445. <w:r>
  1446. <w:rPr>
  1447. <w:szCs w:val="21"/>
  1448. </w:rPr>
  1449. <w:t>10</w:t>
  1450. </w:r>
  1451. <w:r>
  1452. <w:rPr>
  1453. <w:rFonts w:hint="eastAsia"/>
  1454. <w:szCs w:val="21"/>
  1455. </w:rPr>
  1456. <w:t></w:t>
  1457. </w:r>
  1458. </w:p>
  1459. </w:tc>
  1460. <w:tc>
  1461. <w:tcPr>
  1462. <w:tcW w:type="dxa" w:w="2337"/>
  1463. <w:shd w:color="auto" w:fill="auto" w:val="clear"/>
  1464. </w:tcPr>
  1465. <w:p w:rsidP="00F451CB" w:rsidR="00D2673F" w:rsidRDefault="00D2673F" w:rsidRPr="00F451CB">
  1466. <w:pPr>
  1467. <w:spacing w:line="360" w:lineRule="auto"/>
  1468. <w:jc w:val="center"/>
  1469. <w:rPr>
  1470. <w:szCs w:val="21"/>
  1471. </w:rPr>
  1472. </w:pPr>
  1473. <w:r>
  1474. <w:rPr>
  1475. <w:rFonts w:hint="eastAsia"/>
  1476. <w:szCs w:val="21"/>
  1477. </w:rPr>
  1478. <w:t></w:t>
  1479. </w:r>
  1480. <w:r>
  1481. <w:rPr>
  1482. <w:szCs w:val="21"/>
  1483. </w:rPr>
  1484. <w:t>1.5</w:t>
  1485. </w:r>
  1486. <w:r>
  1487. <w:rPr>
  1488. <w:rFonts w:hint="eastAsia"/>
  1489. <w:szCs w:val="21"/>
  1490. </w:rPr>
  1491. <w:t></w:t>
  1492. </w:r>
  1493. </w:p>
  1494. <w:p w:rsidP="00F451CB" w:rsidR="00D2673F" w:rsidRDefault="00D2673F" w:rsidRPr="005D5E20">
  1495. <w:pPr>
  1496. <w:spacing w:line="360" w:lineRule="auto"/>
  1497. <w:jc w:val="center"/>
  1498. <w:rPr>
  1499. <w:szCs w:val="21"/>
  1500. </w:rPr>
  1501. </w:pPr>
  1502. </w:p>
  1503. </w:tc>
  1504. <w:tc>
  1505. <w:tcPr>
  1506. <w:tcW w:type="dxa" w:w="1384"/>
  1507. </w:tcPr>
  1508. <w:p w:rsidP="00CE17DA" w:rsidR="00D2673F" w:rsidRDefault="00D2673F" w:rsidRPr="004B35D2">
  1509. <w:pPr>
  1510. <w:spacing w:line="360" w:lineRule="auto"/>
  1511. <w:ind w:firstLine="210" w:firstLineChars="100"/>
  1512. <w:rPr>
  1513. <w:rFonts w:ascii="宋体" w:cs="黑体" w:hAnsi="宋体" w:hint="eastAsia"/>
  1514. <w:i/>
  1515. <w:color w:val="FF0000"/>
  1516. <w:kern w:val="0"/>
  1517. </w:rPr>
  1518. </w:pPr>
  1519. <w:r>
  1520. <w:rPr>
  1521. <w:szCs w:val="21"/>
  1522. </w:rPr>
  1523. <w:t>所有章节</w:t>
  1524. </w:r>
  1525. </w:p>
  1526. </w:tc>
  1527. <w:tc>
  1528. <w:tcPr>
  1529. <w:tcW w:type="dxa" w:w="1384"/>
  1530. </w:tcPr>
  1531. <w:p w:rsidP="008F53D4" w:rsidR="00D2673F" w:rsidRDefault="00D2673F">
  1532. <w:pPr>
  1533. <w:spacing w:line="360" w:lineRule="auto"/>
  1534. <w:rPr>
  1535. <w:szCs w:val="21"/>
  1536. </w:rPr>
  1537. </w:pPr>
  1538. <w:r>
  1539. <w:rPr>
  1540. <w:rFonts w:hint="eastAsia"/>
  1541. <w:szCs w:val="21"/>
  1542. </w:rPr>
  1543. <w:t></w:t>
  1544. </w:r>
  1545. <w:r>
  1546. <w:rPr>
  1547. <w:szCs w:val="21"/>
  1548. </w:rPr>
  1549. <w:t>1</w:t>
  1550. </w:r>
  1551. <w:r>
  1552. <w:rPr>
  1553. <w:rFonts w:hint="eastAsia"/>
  1554. <w:szCs w:val="21"/>
  1555. </w:rPr>
  1556. <w:t></w:t>
  1557. </w:r>
  1558. </w:p>
  1559. </w:tc>
  1560. </w:tr>
  1561. <w:tr w:rsidR="00D2673F" w:rsidRPr="005D5E20" w:rsidTr="00C30083">
  1562. <w:tc>
  1563. <w:tcPr>
  1564. <w:tcW w:type="dxa" w:w="553"/>
  1565. <w:vMerge w:val="restart"/>
  1566. <w:shd w:color="auto" w:fill="auto" w:val="clear"/>
  1567. <w:vAlign w:val="center"/>
  1568. </w:tcPr>
  1569. <w:p w:rsidP="005D5E20" w:rsidR="00D2673F" w:rsidRDefault="00D2673F" w:rsidRPr="005D5E20">
  1570. <w:pPr>
  1571. <w:spacing w:line="360" w:lineRule="auto"/>
  1572. <w:jc w:val="center"/>
  1573. <w:rPr>
  1574. <w:szCs w:val="21"/>
  1575. </w:rPr>
  1576. </w:pPr>
  1577. <w:r w:rsidRPr="005D5E20">
  1578. <w:rPr>
  1579. <w:rFonts w:hint="eastAsia"/>
  1580. <w:szCs w:val="21"/>
  1581. </w:rPr>
  1582. <w:t></w:t>
  1583. </w:r>
  1584. </w:p>
  1585. </w:tc>
  1586. <w:tc>
  1587. <w:tcPr>
  1588. <w:tcW w:type="dxa" w:w="1071"/>
  1589. <w:shd w:color="auto" w:fill="auto" w:val="clear"/>
  1590. </w:tcPr>
  1591. <w:p w:rsidP="005D5E20" w:rsidR="00D2673F" w:rsidRDefault="00D2673F" w:rsidRPr="005D5E20">
  1592. <w:pPr>
  1593. <w:spacing w:line="360" w:lineRule="auto"/>
  1594. <w:jc w:val="center"/>
  1595. <w:rPr>
  1596. <w:szCs w:val="21"/>
  1597. </w:rPr>
  1598. </w:pPr>
  1599. <w:r>
  1600. <w:rPr>
  1601. <w:rFonts w:hint="eastAsia"/>
  1602. <w:szCs w:val="21"/>
  1603. </w:rPr>
  1604. <w:t></w:t>
  1605. </w:r>
  1606. <w:r>
  1607. <w:rPr>
  1608. <w:szCs w:val="21"/>
  1609. </w:rPr>
  1610. <w:t>1</w:t>
  1611. </w:r>
  1612. <w:r>
  1613. <w:rPr>
  1614. <w:rFonts w:hint="eastAsia"/>
  1615. <w:szCs w:val="21"/>
  1616. </w:rPr>
  1617. <w:t></w:t>
  1618. </w:r>
  1619. </w:p>
  1620. </w:tc>
  1621. <w:tc>
  1622. <w:tcPr>
  1623. <w:tcW w:type="dxa" w:w="1060"/>
  1624. <w:shd w:color="auto" w:fill="auto" w:val="clear"/>
  1625. </w:tcPr>
  1626. <w:p w:rsidP="005D5E20" w:rsidR="00D2673F" w:rsidRDefault="00D2673F" w:rsidRPr="005D5E20">
  1627. <w:pPr>
  1628. <w:spacing w:line="360" w:lineRule="auto"/>
  1629. <w:jc w:val="center"/>
  1630. <w:rPr>
  1631. <w:szCs w:val="21"/>
  1632. </w:rPr>
  1633. </w:pPr>
  1634. <w:r>
  1635. <w:rPr>
  1636. <w:rFonts w:hint="eastAsia"/>
  1637. <w:szCs w:val="21"/>
  1638. </w:rPr>
  1639. <w:t></w:t>
  1640. </w:r>
  1641. <w:r>
  1642. <w:rPr>
  1643. <w:szCs w:val="21"/>
  1644. </w:rPr>
  1645. <w:t>10</w:t>
  1646. </w:r>
  1647. <w:r>
  1648. <w:rPr>
  1649. <w:rFonts w:hint="eastAsia"/>
  1650. <w:szCs w:val="21"/>
  1651. </w:rPr>
  1652. <w:t></w:t>
  1653. </w:r>
  1654. </w:p>
  1655. </w:tc>
  1656. <w:tc>
  1657. <w:tcPr>
  1658. <w:tcW w:type="dxa" w:w="2337"/>
  1659. <w:shd w:color="auto" w:fill="auto" w:val="clear"/>
  1660. </w:tcPr>
  1661. <w:p w:rsidP="00F451CB" w:rsidR="00D2673F" w:rsidRDefault="00D2673F" w:rsidRPr="00F451CB">
  1662. <w:pPr>
  1663. <w:spacing w:line="360" w:lineRule="auto"/>
  1664. <w:jc w:val="center"/>
  1665. <w:rPr>
  1666. <w:szCs w:val="21"/>
  1667. </w:rPr>
  1668. </w:pPr>
  1669. <w:r>
  1670. <w:rPr>
  1671. <w:rFonts w:hint="eastAsia"/>
  1672. <w:szCs w:val="21"/>
  1673. </w:rPr>
  1674. <w:t></w:t>
  1675. </w:r>
  1676. <w:r>
  1677. <w:rPr>
  1678. <w:szCs w:val="21"/>
  1679. </w:rPr>
  1680. <w:t>4.1</w:t>
  1681. </w:r>
  1682. <w:r>
  1683. <w:rPr>
  1684. <w:rFonts w:hint="eastAsia"/>
  1685. <w:szCs w:val="21"/>
  1686. </w:rPr>
  1687. <w:t></w:t>
  1688. </w:r>
  1689. </w:p>
  1690. <w:p w:rsidP="00F451CB" w:rsidR="00D2673F" w:rsidRDefault="00D2673F" w:rsidRPr="005D5E20">
  1691. <w:pPr>
  1692. <w:spacing w:line="360" w:lineRule="auto"/>
  1693. <w:jc w:val="center"/>
  1694. <w:rPr>
  1695. <w:szCs w:val="21"/>
  1696. </w:rPr>
  1697. </w:pPr>
  1698. </w:p>
  1699. </w:tc>
  1700. <w:tc>
  1701. <w:tcPr>
  1702. <w:tcW w:type="dxa" w:w="1384"/>
  1703. </w:tcPr>
  1704. <w:p w:rsidP="00CE17DA" w:rsidR="00D2673F" w:rsidRDefault="00D2673F" w:rsidRPr="004B35D2">
  1705. <w:pPr>
  1706. <w:spacing w:line="360" w:lineRule="auto"/>
  1707. <w:ind w:firstLine="210" w:firstLineChars="100"/>
  1708. <w:rPr>
  1709. <w:rFonts w:ascii="宋体" w:cs="黑体" w:hAnsi="宋体" w:hint="eastAsia"/>
  1710. <w:i/>
  1711. <w:color w:val="FF0000"/>
  1712. <w:kern w:val="0"/>
  1713. </w:rPr>
  1714. </w:pPr>
  1715. <w:r>
  1716. <w:rPr>
  1717. <w:szCs w:val="21"/>
  1718. </w:rPr>
  1719. <w:t>所有章节</w:t>
  1720. </w:r>
  1721. </w:p>
  1722. </w:tc>
  1723. <w:tc>
  1724. <w:tcPr>
  1725. <w:tcW w:type="dxa" w:w="1384"/>
  1726. </w:tcPr>
  1727. <w:p w:rsidP="008F53D4" w:rsidR="00D2673F" w:rsidRDefault="00D2673F">
  1728. <w:pPr>
  1729. <w:spacing w:line="360" w:lineRule="auto"/>
  1730. <w:rPr>
  1731. <w:szCs w:val="21"/>
  1732. </w:rPr>
  1733. </w:pPr>
  1734. <w:r>
  1735. <w:rPr>
  1736. <w:rFonts w:hint="eastAsia"/>
  1737. <w:szCs w:val="21"/>
  1738. </w:rPr>
  1739. <w:t></w:t>
  1740. </w:r>
  1741. <w:r>
  1742. <w:rPr>
  1743. <w:szCs w:val="21"/>
  1744. </w:rPr>
  1745. <w:t>1</w:t>
  1746. </w:r>
  1747. <w:r>
  1748. <w:rPr>
  1749. <w:rFonts w:hint="eastAsia"/>
  1750. <w:szCs w:val="21"/>
  1751. </w:rPr>
  1752. <w:t></w:t>
  1753. </w:r>
  1754. </w:p>
  1755. </w:tc>
  1756. </w:tr>
  1757. <w:tr w:rsidR="00D2673F" w:rsidRPr="005D5E20" w:rsidTr="00C30083">
  1758. <w:tc>
  1759. <w:tcPr>
  1760. <w:tcW w:type="dxa" w:w="553"/>
  1761. <w:vMerge w:val="restart"/>
  1762. <w:shd w:color="auto" w:fill="auto" w:val="clear"/>
  1763. <w:vAlign w:val="center"/>
  1764. </w:tcPr>
  1765. <w:p w:rsidP="005D5E20" w:rsidR="00D2673F" w:rsidRDefault="00D2673F" w:rsidRPr="005D5E20">
  1766. <w:pPr>
  1767. <w:spacing w:line="360" w:lineRule="auto"/>
  1768. <w:jc w:val="center"/>
  1769. <w:rPr>
  1770. <w:szCs w:val="21"/>
  1771. </w:rPr>
  1772. </w:pPr>
  1773. <w:r w:rsidRPr="005D5E20">
  1774. <w:rPr>
  1775. <w:rFonts w:hint="eastAsia"/>
  1776. <w:szCs w:val="21"/>
  1777. </w:rPr>
  1778. <w:t></w:t>
  1779. </w:r>
  1780. </w:p>
  1781. </w:tc>
  1782. <w:tc>
  1783. <w:tcPr>
  1784. <w:tcW w:type="dxa" w:w="1071"/>
  1785. <w:shd w:color="auto" w:fill="auto" w:val="clear"/>
  1786. </w:tcPr>
  1787. <w:p w:rsidP="005D5E20" w:rsidR="00D2673F" w:rsidRDefault="00D2673F" w:rsidRPr="005D5E20">
  1788. <w:pPr>
  1789. <w:spacing w:line="360" w:lineRule="auto"/>
  1790. <w:jc w:val="center"/>
  1791. <w:rPr>
  1792. <w:szCs w:val="21"/>
  1793. </w:rPr>
  1794. </w:pPr>
  1795. <w:r>
  1796. <w:rPr>
  1797. <w:rFonts w:hint="eastAsia"/>
  1798. <w:szCs w:val="21"/>
  1799. </w:rPr>
  1800. <w:t></w:t>
  1801. </w:r>
  1802. <w:r>
  1803. <w:rPr>
  1804. <w:szCs w:val="21"/>
  1805. </w:rPr>
  1806. <w:t>1</w:t>
  1807. </w:r>
  1808. <w:r>
  1809. <w:rPr>
  1810. <w:rFonts w:hint="eastAsia"/>
  1811. <w:szCs w:val="21"/>
  1812. </w:rPr>
  1813. <w:t></w:t>
  1814. </w:r>
  1815. </w:p>
  1816. </w:tc>
  1817. <w:tc>
  1818. <w:tcPr>
  1819. <w:tcW w:type="dxa" w:w="1060"/>
  1820. <w:shd w:color="auto" w:fill="auto" w:val="clear"/>
  1821. </w:tcPr>
  1822. <w:p w:rsidP="005D5E20" w:rsidR="00D2673F" w:rsidRDefault="00D2673F" w:rsidRPr="005D5E20">
  1823. <w:pPr>
  1824. <w:spacing w:line="360" w:lineRule="auto"/>
  1825. <w:jc w:val="center"/>
  1826. <w:rPr>
  1827. <w:szCs w:val="21"/>
  1828. </w:rPr>
  1829. </w:pPr>
  1830. <w:r>
  1831. <w:rPr>
  1832. <w:rFonts w:hint="eastAsia"/>
  1833. <w:szCs w:val="21"/>
  1834. </w:rPr>
  1835. <w:t></w:t>
  1836. </w:r>
  1837. <w:r>
  1838. <w:rPr>
  1839. <w:szCs w:val="21"/>
  1840. </w:rPr>
  1841. <w:t>10</w:t>
  1842. </w:r>
  1843. <w:r>
  1844. <w:rPr>
  1845. <w:rFonts w:hint="eastAsia"/>
  1846. <w:szCs w:val="21"/>
  1847. </w:rPr>
  1848. <w:t></w:t>
  1849. </w:r>
  1850. </w:p>
  1851. </w:tc>
  1852. <w:tc>
  1853. <w:tcPr>
  1854. <w:tcW w:type="dxa" w:w="2337"/>
  1855. <w:shd w:color="auto" w:fill="auto" w:val="clear"/>
  1856. </w:tcPr>
  1857. <w:p w:rsidP="00F451CB" w:rsidR="00D2673F" w:rsidRDefault="00D2673F" w:rsidRPr="00F451CB">
  1858. <w:pPr>
  1859. <w:spacing w:line="360" w:lineRule="auto"/>
  1860. <w:jc w:val="center"/>
  1861. <w:rPr>
  1862. <w:szCs w:val="21"/>
  1863. </w:rPr>
  1864. </w:pPr>
  1865. <w:r>
  1866. <w:rPr>
  1867. <w:rFonts w:hint="eastAsia"/>
  1868. <w:szCs w:val="21"/>
  1869. </w:rPr>
  1870. <w:t></w:t>
  1871. </w:r>
  1872. <w:r>
  1873. <w:rPr>
  1874. <w:szCs w:val="21"/>
  1875. </w:rPr>
  1876. <w:t>4.3</w:t>
  1877. </w:r>
  1878. <w:r>
  1879. <w:rPr>
  1880. <w:rFonts w:hint="eastAsia"/>
  1881. <w:szCs w:val="21"/>
  1882. </w:rPr>
  1883. <w:t></w:t>
  1884. </w:r>
  1885. </w:p>
  1886. <w:p w:rsidP="00F451CB" w:rsidR="00D2673F" w:rsidRDefault="00D2673F" w:rsidRPr="005D5E20">
  1887. <w:pPr>
  1888. <w:spacing w:line="360" w:lineRule="auto"/>
  1889. <w:jc w:val="center"/>
  1890. <w:rPr>
  1891. <w:szCs w:val="21"/>
  1892. </w:rPr>
  1893. </w:pPr>
  1894. </w:p>
  1895. </w:tc>
  1896. <w:tc>
  1897. <w:tcPr>
  1898. <w:tcW w:type="dxa" w:w="1384"/>
  1899. </w:tcPr>
  1900. <w:p w:rsidP="00CE17DA" w:rsidR="00D2673F" w:rsidRDefault="00D2673F" w:rsidRPr="004B35D2">
  1901. <w:pPr>
  1902. <w:spacing w:line="360" w:lineRule="auto"/>
  1903. <w:ind w:firstLine="210" w:firstLineChars="100"/>
  1904. <w:rPr>
  1905. <w:rFonts w:ascii="宋体" w:cs="黑体" w:hAnsi="宋体" w:hint="eastAsia"/>
  1906. <w:i/>
  1907. <w:color w:val="FF0000"/>
  1908. <w:kern w:val="0"/>
  1909. </w:rPr>
  1910. </w:pPr>
  1911. <w:r>
  1912. <w:rPr>
  1913. <w:szCs w:val="21"/>
  1914. </w:rPr>
  1915. <w:t>所有章节</w:t>
  1916. </w:r>
  1917. </w:p>
  1918. </w:tc>
  1919. <w:tc>
  1920. <w:tcPr>
  1921. <w:tcW w:type="dxa" w:w="1384"/>
  1922. </w:tcPr>
  1923. <w:p w:rsidP="008F53D4" w:rsidR="00D2673F" w:rsidRDefault="00D2673F">
  1924. <w:pPr>
  1925. <w:spacing w:line="360" w:lineRule="auto"/>
  1926. <w:rPr>
  1927. <w:szCs w:val="21"/>
  1928. </w:rPr>
  1929. </w:pPr>
  1930. <w:r>
  1931. <w:rPr>
  1932. <w:rFonts w:hint="eastAsia"/>
  1933. <w:szCs w:val="21"/>
  1934. </w:rPr>
  1935. <w:t></w:t>
  1936. </w:r>
  1937. <w:r>
  1938. <w:rPr>
  1939. <w:szCs w:val="21"/>
  1940. </w:rPr>
  1941. <w:t>1</w:t>
  1942. </w:r>
  1943. <w:r>
  1944. <w:rPr>
  1945. <w:rFonts w:hint="eastAsia"/>
  1946. <w:szCs w:val="21"/>
  1947. </w:rPr>
  1948. <w:t></w:t>
  1949. </w:r>
  1950. </w:p>
  1951. </w:tc>
  1952. </w:tr>
  1953. <w:tr w:rsidR="00D2673F" w:rsidRPr="005D5E20" w:rsidTr="00C30083">
  1954. <w:tc>
  1955. <w:tcPr>
  1956. <w:tcW w:type="dxa" w:w="553"/>
  1957. <w:vMerge/>
  1958. <w:shd w:color="auto" w:fill="auto" w:val="clear"/>
  1959. </w:tcPr>
  1960. <w:p w:rsidP="005D5E20" w:rsidR="00D2673F" w:rsidRDefault="00D2673F" w:rsidRPr="005D5E20">
  1961. <w:pPr>
  1962. <w:spacing w:line="360" w:lineRule="auto"/>
  1963. <w:jc w:val="center"/>
  1964. <w:rPr>
  1965. <w:szCs w:val="21"/>
  1966. </w:rPr>
  1967. </w:pPr>
  1968. </w:p>
  1969. </w:tc>
  1970. <w:tc>
  1971. <w:tcPr>
  1972. <w:tcW w:type="dxa" w:w="1071"/>
  1973. <w:shd w:color="auto" w:fill="auto" w:val="clear"/>
  1974. </w:tcPr>
  1975. <w:p w:rsidP="00D2673F" w:rsidR="00D2673F" w:rsidRDefault="00D2673F" w:rsidRPr="005D5E20">
  1976. <w:pPr>
  1977. <w:spacing w:line="360" w:lineRule="auto"/>
  1978. <w:rPr>
  1979. <w:szCs w:val="21"/>
  1980. </w:rPr>
  1981. </w:pPr>
  1982. </w:p>
  1983. </w:tc>
  1984. <w:tc>
  1985. <w:tcPr>
  1986. <w:tcW w:type="dxa" w:w="1060"/>
  1987. <w:shd w:color="auto" w:fill="auto" w:val="clear"/>
  1988. </w:tcPr>
  1989. <w:p w:rsidP="00D2673F" w:rsidR="00D2673F" w:rsidRDefault="00D2673F" w:rsidRPr="005D5E20">
  1990. <w:pPr>
  1991. <w:spacing w:line="360" w:lineRule="auto"/>
  1992. <w:rPr>
  1993. <w:szCs w:val="21"/>
  1994. </w:rPr>
  1995. </w:pPr>
  1996. </w:p>
  1997. </w:tc>
  1998. <w:tc>
  1999. <w:tcPr>
  2000. <w:tcW w:type="dxa" w:w="2337"/>
  2001. <w:shd w:color="auto" w:fill="auto" w:val="clear"/>
  2002. </w:tcPr>
  2003. <w:p w:rsidP="00D2673F" w:rsidR="00D2673F" w:rsidRDefault="00D2673F" w:rsidRPr="00F451CB">
  2004. <w:pPr>
  2005. <w:spacing w:line="360" w:lineRule="auto"/>
  2006. <w:rPr>
  2007. <w:rFonts w:hint="eastAsia"/>
  2008. <w:szCs w:val="21"/>
  2009. </w:rPr>
  2010. </w:pPr>
  2011. </w:p>
  2012. </w:tc>
  2013. <w:tc>
  2014. <w:tcPr>
  2015. <w:tcW w:type="dxa" w:w="1384"/>
  2016. </w:tcPr>
  2017. <w:p w:rsidP="00D2673F" w:rsidR="00D2673F" w:rsidRDefault="00D2673F" w:rsidRPr="005D5E20">
  2018. <w:pPr>
  2019. <w:spacing w:line="360" w:lineRule="auto"/>
  2020. <w:rPr>
  2021. <w:rFonts w:hint="eastAsia"/>
  2022. <w:szCs w:val="21"/>
  2023. </w:rPr>
  2024. </w:pPr>
  2025. </w:p>
  2026. </w:tc>
  2027. <w:tc>
  2028. <w:tcPr>
  2029. <w:tcW w:type="dxa" w:w="1384"/>
  2030. </w:tcPr>
  2031. <w:p w:rsidP="00D2673F" w:rsidR="00D2673F" w:rsidRDefault="00D2673F" w:rsidRPr="005D5E20">
  2032. <w:pPr>
  2033. <w:spacing w:line="360" w:lineRule="auto"/>
  2034. <w:rPr>
  2035. <w:rFonts w:hint="eastAsia"/>
  2036. <w:szCs w:val="21"/>
  2037. </w:rPr>
  2038. </w:pPr>
  2039. </w:p>
  2040. </w:tc>
  2041. </w:tr>
  2042. <w:tr w:rsidR="00D2673F" w:rsidRPr="005D5E20" w:rsidTr="00C30083">
  2043. <w:tc>
  2044. <w:tcPr>
  2045. <w:tcW w:type="dxa" w:w="553"/>
  2046. <w:vMerge/>
  2047. <w:shd w:color="auto" w:fill="auto" w:val="clear"/>
  2048. </w:tcPr>
  2049. <w:p w:rsidP="005D5E20" w:rsidR="00D2673F" w:rsidRDefault="00D2673F" w:rsidRPr="005D5E20">
  2050. <w:pPr>
  2051. <w:spacing w:line="360" w:lineRule="auto"/>
  2052. <w:jc w:val="center"/>
  2053. <w:rPr>
  2054. <w:szCs w:val="21"/>
  2055. </w:rPr>
  2056. </w:pPr>
  2057. </w:p>
  2058. </w:tc>
  2059. <w:tc>
  2060. <w:tcPr>
  2061. <w:tcW w:type="dxa" w:w="1071"/>
  2062. <w:shd w:color="auto" w:fill="auto" w:val="clear"/>
  2063. </w:tcPr>
  2064. <w:p w:rsidP="005D5E20" w:rsidR="00D2673F" w:rsidRDefault="00D2673F" w:rsidRPr="005D5E20">
  2065. <w:pPr>
  2066. <w:spacing w:line="360" w:lineRule="auto"/>
  2067. <w:jc w:val="center"/>
  2068. <w:rPr>
  2069. <w:szCs w:val="21"/>
  2070. </w:rPr>
  2071. </w:pPr>
  2072. </w:p>
  2073. </w:tc>
  2074. <w:tc>
  2075. <w:tcPr>
  2076. <w:tcW w:type="dxa" w:w="1060"/>
  2077. <w:shd w:color="auto" w:fill="auto" w:val="clear"/>
  2078. </w:tcPr>
  2079. <w:p w:rsidP="005D5E20" w:rsidR="00D2673F" w:rsidRDefault="00D2673F" w:rsidRPr="005D5E20">
  2080. <w:pPr>
  2081. <w:spacing w:line="360" w:lineRule="auto"/>
  2082. <w:jc w:val="center"/>
  2083. <w:rPr>
  2084. <w:szCs w:val="21"/>
  2085. </w:rPr>
  2086. </w:pPr>
  2087. </w:p>
  2088. </w:tc>
  2089. <w:tc>
  2090. <w:tcPr>
  2091. <w:tcW w:type="dxa" w:w="2337"/>
  2092. <w:shd w:color="auto" w:fill="auto" w:val="clear"/>
  2093. </w:tcPr>
  2094. <w:p w:rsidP="008F53D4" w:rsidR="00D2673F" w:rsidRDefault="00D2673F" w:rsidRPr="005D5E20">
  2095. <w:pPr>
  2096. <w:spacing w:line="360" w:lineRule="auto"/>
  2097. <w:rPr>
  2098. <w:szCs w:val="21"/>
  2099. </w:rPr>
  2100. </w:pPr>
  2101. </w:p>
  2102. </w:tc>
  2103. <w:tc>
  2104. <w:tcPr>
  2105. <w:tcW w:type="dxa" w:w="1384"/>
  2106. </w:tcPr>
  2107. <w:p w:rsidP="00A56312" w:rsidR="00D2673F" w:rsidRDefault="00D2673F" w:rsidRPr="005D5E20">
  2108. <w:pPr>
  2109. <w:spacing w:line="360" w:lineRule="auto"/>
  2110. <w:rPr>
  2111. <w:rFonts w:hint="eastAsia"/>
  2112. <w:szCs w:val="21"/>
  2113. </w:rPr>
  2114. </w:pPr>
  2115. <w:r>
  2116. <w:rPr>
  2117. <w:rFonts w:hint="eastAsia"/>
  2118. <w:szCs w:val="21"/>
  2119. </w:rPr>
  2120. <w:t xml:space="preserve"/>
  2121. </w:r>
  2122. <w:r>
  2123. <w:rPr>
  2124. <w:szCs w:val="21"/>
  2125. </w:rPr>
  2126. <w:t xml:space="preserve"/>
  2127. </w:r>
  2128. <w:r>
  2129. <w:rPr>
  2130. <w:rFonts w:hint="eastAsia"/>
  2131. <w:szCs w:val="21"/>
  2132. </w:rPr>
  2133. <w:t></w:t>
  2134. </w:r>
  2135. <w:r>
  2136. <w:rPr>
  2137. <w:szCs w:val="21"/>
  2138. </w:rPr>
  2139. <w:t>有章节</w:t>
  2140. </w:r>
  2141. </w:p>
  2142. </w:tc>
  2143. <w:tc>
  2144. <w:tcPr>
  2145. <w:tcW w:type="dxa" w:w="1384"/>
  2146. </w:tcPr>
  2147. <w:p w:rsidP="00A56312" w:rsidR="00D2673F" w:rsidRDefault="00D2673F">
  2148. <w:pPr>
  2149. <w:spacing w:line="360" w:lineRule="auto"/>
  2150. <w:rPr>
  2151. <w:rFonts w:hint="eastAsia"/>
  2152. <w:szCs w:val="21"/>
  2153. </w:rPr>
  2154. </w:pPr>
  2155. </w:p>
  2156. </w:tc>
  2157. </w:tr>
  2158. <w:tr w:rsidR="00D2673F" w:rsidRPr="005D5E20" w:rsidTr="00C30083">
  2159. <w:tc>
  2160. <w:tcPr>
  2161. <w:tcW w:type="dxa" w:w="553"/>
  2162. <w:vMerge/>
  2163. <w:shd w:color="auto" w:fill="auto" w:val="clear"/>
  2164. </w:tcPr>
  2165. <w:p w:rsidP="005D5E20" w:rsidR="00D2673F" w:rsidRDefault="00D2673F" w:rsidRPr="005D5E20">
  2166. <w:pPr>
  2167. <w:spacing w:line="360" w:lineRule="auto"/>
  2168. <w:jc w:val="center"/>
  2169. <w:rPr>
  2170. <w:szCs w:val="21"/>
  2171. </w:rPr>
  2172. </w:pPr>
  2173. </w:p>
  2174. </w:tc>
  2175. <w:tc>
  2176. <w:tcPr>
  2177. <w:tcW w:type="dxa" w:w="1071"/>
  2178. <w:shd w:color="auto" w:fill="auto" w:val="clear"/>
  2179. </w:tcPr>
  2180. <w:p w:rsidP="005D5E20" w:rsidR="00D2673F" w:rsidRDefault="00D2673F" w:rsidRPr="005D5E20">
  2181. <w:pPr>
  2182. <w:spacing w:line="360" w:lineRule="auto"/>
  2183. <w:jc w:val="center"/>
  2184. <w:rPr>
  2185. <w:szCs w:val="21"/>
  2186. </w:rPr>
  2187. </w:pPr>
  2188. </w:p>
  2189. </w:tc>
  2190. <w:tc>
  2191. <w:tcPr>
  2192. <w:tcW w:type="dxa" w:w="1060"/>
  2193. <w:shd w:color="auto" w:fill="auto" w:val="clear"/>
  2194. </w:tcPr>
  2195. <w:p w:rsidP="005D5E20" w:rsidR="00D2673F" w:rsidRDefault="00D2673F" w:rsidRPr="005D5E20">
  2196. <w:pPr>
  2197. <w:spacing w:line="360" w:lineRule="auto"/>
  2198. <w:jc w:val="center"/>
  2199. <w:rPr>
  2200. <w:szCs w:val="21"/>
  2201. </w:rPr>
  2202. </w:pPr>
  2203. </w:p>
  2204. </w:tc>
  2205. <w:tc>
  2206. <w:tcPr>
  2207. <w:tcW w:type="dxa" w:w="2337"/>
  2208. <w:shd w:color="auto" w:fill="auto" w:val="clear"/>
  2209. </w:tcPr>
  2210. <w:p w:rsidP="005D5E20" w:rsidR="00D2673F" w:rsidRDefault="00D2673F" w:rsidRPr="005D5E20">
  2211. <w:pPr>
  2212. <w:spacing w:line="360" w:lineRule="auto"/>
  2213. <w:jc w:val="center"/>
  2214. <w:rPr>
  2215. <w:szCs w:val="21"/>
  2216. </w:rPr>
  2217. </w:pPr>
  2218. </w:p>
  2219. </w:tc>
  2220. <w:tc>
  2221. <w:tcPr>
  2222. <w:tcW w:type="dxa" w:w="1384"/>
  2223. </w:tcPr>
  2224. <w:p w:rsidP="005D5E20" w:rsidR="00D2673F" w:rsidRDefault="00D2673F" w:rsidRPr="005D5E20">
  2225. <w:pPr>
  2226. <w:spacing w:line="360" w:lineRule="auto"/>
  2227. <w:jc w:val="center"/>
  2228. <w:rPr>
  2229. <w:szCs w:val="21"/>
  2230. </w:rPr>
  2231. </w:pPr>
  2232. </w:p>
  2233. </w:tc>
  2234. <w:tc>
  2235. <w:tcPr>
  2236. <w:tcW w:type="dxa" w:w="1384"/>
  2237. </w:tcPr>
  2238. <w:p w:rsidP="005D5E20" w:rsidR="00D2673F" w:rsidRDefault="00D2673F" w:rsidRPr="005D5E20">
  2239. <w:pPr>
  2240. <w:spacing w:line="360" w:lineRule="auto"/>
  2241. <w:jc w:val="center"/>
  2242. <w:rPr>
  2243. <w:szCs w:val="21"/>
  2244. </w:rPr>
  2245. </w:pPr>
  2246. </w:p>
  2247. </w:tc>
  2248. </w:tr>
  2249. <w:tr w:rsidR="00D2673F" w:rsidRPr="005D5E20" w:rsidTr="00C30083">
  2250. <w:tc>
  2251. <w:tcPr>
  2252. <w:tcW w:type="dxa" w:w="553"/>
  2253. <w:vMerge/>
  2254. <w:shd w:color="auto" w:fill="auto" w:val="clear"/>
  2255. </w:tcPr>
  2256. <w:p w:rsidP="005D5E20" w:rsidR="00D2673F" w:rsidRDefault="00D2673F" w:rsidRPr="005D5E20">
  2257. <w:pPr>
  2258. <w:spacing w:line="360" w:lineRule="auto"/>
  2259. <w:jc w:val="center"/>
  2260. <w:rPr>
  2261. <w:szCs w:val="21"/>
  2262. </w:rPr>
  2263. </w:pPr>
  2264. </w:p>
  2265. </w:tc>
  2266. <w:tc>
  2267. <w:tcPr>
  2268. <w:tcW w:type="dxa" w:w="1071"/>
  2269. <w:shd w:color="auto" w:fill="auto" w:val="clear"/>
  2270. </w:tcPr>
  2271. <w:p w:rsidP="005D5E20" w:rsidR="00D2673F" w:rsidRDefault="00D2673F" w:rsidRPr="005D5E20">
  2272. <w:pPr>
  2273. <w:spacing w:line="360" w:lineRule="auto"/>
  2274. <w:jc w:val="center"/>
  2275. <w:rPr>
  2276. <w:szCs w:val="21"/>
  2277. </w:rPr>
  2278. </w:pPr>
  2279. </w:p>
  2280. </w:tc>
  2281. <w:tc>
  2282. <w:tcPr>
  2283. <w:tcW w:type="dxa" w:w="1060"/>
  2284. <w:shd w:color="auto" w:fill="auto" w:val="clear"/>
  2285. </w:tcPr>
  2286. <w:p w:rsidP="005D5E20" w:rsidR="00D2673F" w:rsidRDefault="00D2673F" w:rsidRPr="005D5E20">
  2287. <w:pPr>
  2288. <w:spacing w:line="360" w:lineRule="auto"/>
  2289. <w:jc w:val="center"/>
  2290. <w:rPr>
  2291. <w:szCs w:val="21"/>
  2292. </w:rPr>
  2293. </w:pPr>
  2294. </w:p>
  2295. </w:tc>
  2296. <w:tc>
  2297. <w:tcPr>
  2298. <w:tcW w:type="dxa" w:w="2337"/>
  2299. <w:shd w:color="auto" w:fill="auto" w:val="clear"/>
  2300. </w:tcPr>
  2301. <w:p w:rsidP="005D5E20" w:rsidR="00D2673F" w:rsidRDefault="00D2673F" w:rsidRPr="005D5E20">
  2302. <w:pPr>
  2303. <w:spacing w:line="360" w:lineRule="auto"/>
  2304. <w:jc w:val="center"/>
  2305. <w:rPr>
  2306. <w:szCs w:val="21"/>
  2307. </w:rPr>
  2308. </w:pPr>
  2309. </w:p>
  2310. </w:tc>
  2311. <w:tc>
  2312. <w:tcPr>
  2313. <w:tcW w:type="dxa" w:w="1384"/>
  2314. </w:tcPr>
  2315. <w:p w:rsidP="005D5E20" w:rsidR="00D2673F" w:rsidRDefault="00D2673F" w:rsidRPr="005D5E20">
  2316. <w:pPr>
  2317. <w:spacing w:line="360" w:lineRule="auto"/>
  2318. <w:jc w:val="center"/>
  2319. <w:rPr>
  2320. <w:szCs w:val="21"/>
  2321. </w:rPr>
  2322. </w:pPr>
  2323. </w:p>
  2324. </w:tc>
  2325. <w:tc>
  2326. <w:tcPr>
  2327. <w:tcW w:type="dxa" w:w="1384"/>
  2328. </w:tcPr>
  2329. <w:p w:rsidP="005D5E20" w:rsidR="00D2673F" w:rsidRDefault="00D2673F" w:rsidRPr="005D5E20">
  2330. <w:pPr>
  2331. <w:spacing w:line="360" w:lineRule="auto"/>
  2332. <w:jc w:val="center"/>
  2333. <w:rPr>
  2334. <w:szCs w:val="21"/>
  2335. </w:rPr>
  2336. </w:pPr>
  2337. </w:p>
  2338. </w:tc>
  2339. </w:tr>
  2340. <w:tr w:rsidR="00D2673F" w:rsidRPr="005D5E20" w:rsidTr="00C30083">
  2341. <w:tc>
  2342. <w:tcPr>
  2343. <w:tcW w:type="dxa" w:w="553"/>
  2344. <w:vMerge/>
  2345. <w:shd w:color="auto" w:fill="auto" w:val="clear"/>
  2346. </w:tcPr>
  2347. <w:p w:rsidP="005D5E20" w:rsidR="00D2673F" w:rsidRDefault="00D2673F" w:rsidRPr="005D5E20">
  2348. <w:pPr>
  2349. <w:spacing w:line="360" w:lineRule="auto"/>
  2350. <w:jc w:val="center"/>
  2351. <w:rPr>
  2352. <w:szCs w:val="21"/>
  2353. </w:rPr>
  2354. </w:pPr>
  2355. </w:p>
  2356. </w:tc>
  2357. <w:tc>
  2358. <w:tcPr>
  2359. <w:tcW w:type="dxa" w:w="1071"/>
  2360. <w:shd w:color="auto" w:fill="auto" w:val="clear"/>
  2361. </w:tcPr>
  2362. <w:p w:rsidP="005D5E20" w:rsidR="00D2673F" w:rsidRDefault="00D2673F" w:rsidRPr="005D5E20">
  2363. <w:pPr>
  2364. <w:spacing w:line="360" w:lineRule="auto"/>
  2365. <w:jc w:val="center"/>
  2366. <w:rPr>
  2367. <w:szCs w:val="21"/>
  2368. </w:rPr>
  2369. </w:pPr>
  2370. </w:p>
  2371. </w:tc>
  2372. <w:tc>
  2373. <w:tcPr>
  2374. <w:tcW w:type="dxa" w:w="1060"/>
  2375. <w:shd w:color="auto" w:fill="auto" w:val="clear"/>
  2376. </w:tcPr>
  2377. <w:p w:rsidP="005D5E20" w:rsidR="00D2673F" w:rsidRDefault="00D2673F" w:rsidRPr="005D5E20">
  2378. <w:pPr>
  2379. <w:spacing w:line="360" w:lineRule="auto"/>
  2380. <w:jc w:val="center"/>
  2381. <w:rPr>
  2382. <w:szCs w:val="21"/>
  2383. </w:rPr>
  2384. </w:pPr>
  2385. </w:p>
  2386. </w:tc>
  2387. <w:tc>
  2388. <w:tcPr>
  2389. <w:tcW w:type="dxa" w:w="2337"/>
  2390. <w:shd w:color="auto" w:fill="auto" w:val="clear"/>
  2391. </w:tcPr>
  2392. <w:p w:rsidP="005D5E20" w:rsidR="00D2673F" w:rsidRDefault="00D2673F" w:rsidRPr="005D5E20">
  2393. <w:pPr>
  2394. <w:spacing w:line="360" w:lineRule="auto"/>
  2395. <w:jc w:val="center"/>
  2396. <w:rPr>
  2397. <w:szCs w:val="21"/>
  2398. </w:rPr>
  2399. </w:pPr>
  2400. </w:p>
  2401. </w:tc>
  2402. <w:tc>
  2403. <w:tcPr>
  2404. <w:tcW w:type="dxa" w:w="1384"/>
  2405. </w:tcPr>
  2406. <w:p w:rsidP="00715B94" w:rsidR="00D2673F" w:rsidRDefault="00D2673F" w:rsidRPr="005D5E20">
  2407. <w:pPr>
  2408. <w:spacing w:line="360" w:lineRule="auto"/>
  2409. <w:jc w:val="center"/>
  2410. <w:rPr>
  2411. <w:rFonts w:hint="eastAsia"/>
  2412. <w:szCs w:val="21"/>
  2413. </w:rPr>
  2414. </w:pPr>
  2415. <w:r>
  2416. <w:rPr>
  2417. <w:rFonts w:hint="eastAsia"/>
  2418. <w:szCs w:val="21"/>
  2419. </w:rPr>
  2420. <w:t>所有章节</w:t>
  2421. </w:r>
  2422. </w:p>
  2423. </w:tc>
  2424. <w:tc>
  2425. <w:tcPr>
  2426. <w:tcW w:type="dxa" w:w="1384"/>
  2427. </w:tcPr>
  2428. <w:p w:rsidP="00715B94" w:rsidR="00D2673F" w:rsidRDefault="00D2673F">
  2429. <w:pPr>
  2430. <w:spacing w:line="360" w:lineRule="auto"/>
  2431. <w:jc w:val="center"/>
  2432. <w:rPr>
  2433. <w:rFonts w:hint="eastAsia"/>
  2434. <w:szCs w:val="21"/>
  2435. </w:rPr>
  2436. </w:pPr>
  2437. </w:p>
  2438. </w:tc>
  2439. </w:tr>
  2440. <w:tr w:rsidR="00D2673F" w:rsidRPr="005D5E20" w:rsidTr="00C30083">
  2441. <w:tc>
  2442. <w:tcPr>
  2443. <w:tcW w:type="dxa" w:w="553"/>
  2444. <w:vMerge/>
  2445. <w:shd w:color="auto" w:fill="auto" w:val="clear"/>
  2446. </w:tcPr>
  2447. <w:p w:rsidP="005D5E20" w:rsidR="00D2673F" w:rsidRDefault="00D2673F">
  2448. <w:pPr>
  2449. <w:spacing w:line="360" w:lineRule="auto"/>
  2450. <w:jc w:val="center"/>
  2451. <w:rPr>
  2452. <w:rFonts w:hint="eastAsia"/>
  2453. <w:szCs w:val="21"/>
  2454. </w:rPr>
  2455. </w:pPr>
  2456. </w:p>
  2457. </w:tc>
  2458. <w:tc>
  2459. <w:tcPr>
  2460. <w:tcW w:type="dxa" w:w="1071"/>
  2461. <w:shd w:color="auto" w:fill="auto" w:val="clear"/>
  2462. </w:tcPr>
  2463. <w:p w:rsidP="005D5E20" w:rsidR="00D2673F" w:rsidRDefault="00D2673F" w:rsidRPr="005D5E20">
  2464. <w:pPr>
  2465. <w:spacing w:line="360" w:lineRule="auto"/>
  2466. <w:jc w:val="center"/>
  2467. <w:rPr>
  2468. <w:rFonts w:hint="eastAsia"/>
  2469. <w:szCs w:val="21"/>
  2470. </w:rPr>
  2471. </w:pPr>
  2472. </w:p>
  2473. </w:tc>
  2474. <w:tc>
  2475. <w:tcPr>
  2476. <w:tcW w:type="dxa" w:w="1060"/>
  2477. <w:shd w:color="auto" w:fill="auto" w:val="clear"/>
  2478. </w:tcPr>
  2479. <w:p w:rsidP="005D5E20" w:rsidR="00D2673F" w:rsidRDefault="00D2673F" w:rsidRPr="005D5E20">
  2480. <w:pPr>
  2481. <w:spacing w:line="360" w:lineRule="auto"/>
  2482. <w:jc w:val="center"/>
  2483. <w:rPr>
  2484. <w:szCs w:val="21"/>
  2485. </w:rPr>
  2486. </w:pPr>
  2487. </w:p>
  2488. </w:tc>
  2489. <w:tc>
  2490. <w:tcPr>
  2491. <w:tcW w:type="dxa" w:w="2337"/>
  2492. <w:shd w:color="auto" w:fill="auto" w:val="clear"/>
  2493. </w:tcPr>
  2494. <w:p w:rsidP="005D5E20" w:rsidR="00D2673F" w:rsidRDefault="00D2673F" w:rsidRPr="00F451CB">
  2495. <w:pPr>
  2496. <w:spacing w:line="360" w:lineRule="auto"/>
  2497. <w:jc w:val="center"/>
  2498. <w:rPr>
  2499. <w:rFonts w:hint="eastAsia"/>
  2500. <w:szCs w:val="21"/>
  2501. </w:rPr>
  2502. </w:pPr>
  2503. </w:p>
  2504. </w:tc>
  2505. <w:tc>
  2506. <w:tcPr>
  2507. <w:tcW w:type="dxa" w:w="1384"/>
  2508. </w:tcPr>
  2509. <w:p w:rsidP="00715B94" w:rsidR="00D2673F" w:rsidRDefault="00D2673F">
  2510. <w:pPr>
  2511. <w:spacing w:line="360" w:lineRule="auto"/>
  2512. <w:jc w:val="center"/>
  2513. <w:rPr>
  2514. <w:rFonts w:hint="eastAsia"/>
  2515. <w:szCs w:val="21"/>
  2516. </w:rPr>
  2517. </w:pPr>
  2518. <w:r>
  2519. <w:rPr>
  2520. <w:rFonts w:hint="eastAsia"/>
  2521. <w:szCs w:val="21"/>
  2522. </w:rPr>
  2523. <w:t>所有章节</w:t>
  2524. </w:r>
  2525. </w:p>
  2526. </w:tc>
  2527. <w:tc>
  2528. <w:tcPr>
  2529. <w:tcW w:type="dxa" w:w="1384"/>
  2530. </w:tcPr>
  2531. <w:p w:rsidP="00715B94" w:rsidR="00D2673F" w:rsidRDefault="00D2673F">
  2532. <w:pPr>
  2533. <w:spacing w:line="360" w:lineRule="auto"/>
  2534. <w:jc w:val="center"/>
  2535. <w:rPr>
  2536. <w:rFonts w:hint="eastAsia"/>
  2537. <w:szCs w:val="21"/>
  2538. </w:rPr>
  2539. </w:pPr>
  2540. </w:p>
  2541. </w:tc>
  2542. </w:tr>
  2543. </w:tbl>
  2544. <w:p w:rsidP="00844BA3" w:rsidR="00893BD8" w:rsidRDefault="00893BD8">
  2545. <w:pPr>
  2546. <w:spacing w:before="156" w:beforeLines="50"/>
  2547. <w:jc w:val="center"/>
  2548. <w:rPr>
  2549. <w:rFonts w:hint="eastAsia"/>
  2550. </w:rPr>
  2551. </w:pPr>
  2552. <w:r>
  2553. <w:rPr>
  2554. <w:rFonts w:hint="eastAsia"/>
  2555. <w:b/>
  2556. <w:sz w:val="28"/>
  2557. <w:szCs w:val="28"/>
  2558. </w:rPr>
  2559. <w:t>试题设计双向细目表</w:t>
  2560. </w:r>
  2561. </w:p>
  2562. <w:tbl>
  2563. <w:tblPr>
  2564. <w:tblW w:type="auto" w:w="0"/>
  2565. <w:tblInd w:type="dxa" w:w="94"/>
  2566. <w:tblBorders>
  2567. <w:top w:color="auto" w:space="0" w:sz="4" w:val="single"/>
  2568. <w:left w:color="auto" w:space="0" w:sz="4" w:val="single"/>
  2569. <w:bottom w:color="auto" w:space="0" w:sz="4" w:val="single"/>
  2570. <w:right w:color="auto" w:space="0" w:sz="4" w:val="single"/>
  2571. <w:insideH w:color="auto" w:space="0" w:sz="4" w:val="single"/>
  2572. <w:insideV w:color="auto" w:space="0" w:sz="4" w:val="single"/>
  2573. </w:tblBorders>
  2574. <w:tblLayout w:type="fixed"/>
  2575. <w:tblLook w:firstColumn="0" w:firstRow="0" w:lastColumn="0" w:lastRow="0" w:noHBand="0" w:noVBand="0" w:val="0000"/>
  2576. </w:tblPr>
  2577. <w:tblGrid>
  2578. <w:gridCol w:w="2354"/>
  2579. <w:gridCol w:w="1670"/>
  2580. <w:gridCol w:w="1670"/>
  2581. <w:gridCol w:w="1670"/>
  2582. <w:gridCol w:w="1306"/>
  2583. </w:tblGrid>
  2584. <w:tr w:rsidR="00893BD8" w:rsidTr="00172A57">
  2585. <w:trPr>
  2586. <w:trHeight w:val="1242"/>
  2587. </w:trPr>
  2588. <w:tc>
  2589. <w:tcPr>
  2590. <w:tcW w:type="dxa" w:w="2354"/>
  2591. <w:tcBorders>
  2592. <w:bottom w:color="auto" w:space="0" w:sz="4" w:val="single"/>
  2593. <w:right w:color="auto" w:space="0" w:sz="4" w:val="single"/>
  2594. <w:tl2br w:color="auto" w:space="0" w:sz="4" w:val="single"/>
  2595. </w:tcBorders>
  2596. <w:vAlign w:val="center"/>
  2597. </w:tcPr>
  2598. <w:p w:rsidP="00893BD8" w:rsidR="00893BD8" w:rsidRDefault="00893BD8">
  2599. <w:pPr>
  2600. <w:ind w:firstLine="1050" w:firstLineChars="500"/>
  2601. <w:rPr>
  2602. <w:rFonts w:hint="eastAsia"/>
  2603. <w:color w:val="000000"/>
  2604. <w:szCs w:val="21"/>
  2605. </w:rPr>
  2606. </w:pPr>
  2607. <w:r>
  2608. <w:rPr>
  2609. <w:rFonts w:hint="eastAsia"/>
  2610. <w:color w:val="000000"/>
  2611. <w:szCs w:val="21"/>
  2612. </w:rPr>
  2613. <w:t>层次</w:t>
  2614. </w:r>
  2615. </w:p>
  2616. <w:p w:rsidP="00172A57" w:rsidR="00893BD8" w:rsidRDefault="003F0ADF">
  2617. <w:pPr>
  2618. <w:rPr>
  2619. <w:color w:val="000000"/>
  2620. <w:szCs w:val="21"/>
  2621. </w:rPr>
  2622. </w:pPr>
  2623. <w:r>
  2624. <w:rPr>
  2625. <w:rFonts w:hint="eastAsia"/>
  2626. <w:color w:val="000000"/>
  2627. <w:szCs w:val="21"/>
  2628. </w:rPr>
  2629. <w:t>支撑的</w:t>
  2630. </w:r>
  2631. <w:r w:rsidR="00893BD8">
  2632. <w:rPr>
  2633. <w:rFonts w:hint="eastAsia"/>
  2634. <w:color w:val="000000"/>
  2635. <w:szCs w:val="21"/>
  2636. </w:rPr>
  2637. <w:t>毕业</w:t>
  2638. </w:r>
  2639. </w:p>
  2640. <w:p w:rsidP="00172A57" w:rsidR="00893BD8" w:rsidRDefault="00893BD8">
  2641. <w:pPr>
  2642. <w:rPr>
  2643. <w:rFonts w:hint="eastAsia"/>
  2644. <w:color w:val="000000"/>
  2645. <w:szCs w:val="21"/>
  2646. </w:rPr>
  2647. </w:pPr>
  2648. <w:r>
  2649. <w:rPr>
  2650. <w:rFonts w:hint="eastAsia"/>
  2651. <w:color w:val="000000"/>
  2652. <w:szCs w:val="21"/>
  2653. </w:rPr>
  2654. <w:t>要求指标点</w:t>
  2655. </w:r>
  2656. </w:p>
  2657. </w:tc>
  2658. <w:tc>
  2659. <w:tcPr>
  2660. <w:tcW w:type="dxa" w:w="1670"/>
  2661. <w:tcBorders>
  2662. <w:left w:color="auto" w:space="0" w:sz="4" w:val="single"/>
  2663. <w:bottom w:color="auto" w:space="0" w:sz="4" w:val="single"/>
  2664. <w:right w:color="auto" w:space="0" w:sz="4" w:val="single"/>
  2665. </w:tcBorders>
  2666. <w:vAlign w:val="center"/>
  2667. </w:tcPr>
  2668. <w:p w:rsidP="00172A57" w:rsidR="00893BD8" w:rsidRDefault="00893BD8">
  2669. <w:pPr>
  2670. <w:ind w:left="42"/>
  2671. <w:jc w:val="center"/>
  2672. <w:rPr>
  2673. <w:rFonts w:hint="eastAsia"/>
  2674. <w:color w:val="000000"/>
  2675. <w:szCs w:val="21"/>
  2676. </w:rPr>
  2677. </w:pPr>
  2678. <w:r>
  2679. <w:rPr>
  2680. <w:rFonts w:hint="eastAsia"/>
  2681. <w:color w:val="000000"/>
  2682. <w:szCs w:val="21"/>
  2683. </w:rPr>
  2684. <w:t>基础</w:t>
  2685. </w:r>
  2686. <w:r w:rsidR="00151A2B">
  2687. <w:rPr>
  2688. <w:rFonts w:hint="eastAsia"/>
  2689. <w:color w:val="000000"/>
  2690. <w:szCs w:val="21"/>
  2691. </w:rPr>
  2692. <w:t></w:t>
  2693. </w:r>
  2694. <w:r w:rsidR="00151A2B">
  2695. <w:rPr>
  2696. <w:rFonts w:hint="eastAsia"/>
  2697. <w:color w:val="000000"/>
  2698. <w:szCs w:val="21"/>
  2699. </w:rPr>
  2700. <w:t>%</w:t>
  2701. </w:r>
  2702. <w:r w:rsidR="00151A2B">
  2703. <w:rPr>
  2704. <w:rFonts w:hint="eastAsia"/>
  2705. <w:color w:val="000000"/>
  2706. <w:szCs w:val="21"/>
  2707. </w:rPr>
  2708. <w:t></w:t>
  2709. </w:r>
  2710. </w:p>
  2711. </w:tc>
  2712. <w:tc>
  2713. <w:tcPr>
  2714. <w:tcW w:type="dxa" w:w="1670"/>
  2715. <w:tcBorders>
  2716. <w:left w:color="auto" w:space="0" w:sz="4" w:val="single"/>
  2717. <w:bottom w:color="auto" w:space="0" w:sz="4" w:val="single"/>
  2718. <w:right w:color="auto" w:space="0" w:sz="4" w:val="single"/>
  2719. </w:tcBorders>
  2720. <w:vAlign w:val="center"/>
  2721. </w:tcPr>
  2722. <w:p w:rsidP="00172A57" w:rsidR="00893BD8" w:rsidRDefault="00893BD8">
  2723. <w:pPr>
  2724. <w:jc w:val="center"/>
  2725. <w:rPr>
  2726. <w:rFonts w:hint="eastAsia"/>
  2727. <w:color w:val="000000"/>
  2728. <w:szCs w:val="21"/>
  2729. </w:rPr>
  2730. </w:pPr>
  2731. <w:r>
  2732. <w:rPr>
  2733. <w:rFonts w:hint="eastAsia"/>
  2734. <w:color w:val="000000"/>
  2735. <w:szCs w:val="21"/>
  2736. </w:rPr>
  2737. <w:t>简单应用</w:t>
  2738. </w:r>
  2739. <w:r w:rsidR="00151A2B">
  2740. <w:rPr>
  2741. <w:rFonts w:hint="eastAsia"/>
  2742. <w:color w:val="000000"/>
  2743. <w:szCs w:val="21"/>
  2744. </w:rPr>
  2745. <w:t></w:t>
  2746. </w:r>
  2747. <w:r w:rsidR="00151A2B">
  2748. <w:rPr>
  2749. <w:rFonts w:hint="eastAsia"/>
  2750. <w:color w:val="000000"/>
  2751. <w:szCs w:val="21"/>
  2752. </w:rPr>
  2753. <w:t>%</w:t>
  2754. </w:r>
  2755. <w:r w:rsidR="00151A2B">
  2756. <w:rPr>
  2757. <w:rFonts w:hint="eastAsia"/>
  2758. <w:color w:val="000000"/>
  2759. <w:szCs w:val="21"/>
  2760. </w:rPr>
  2761. <w:t></w:t>
  2762. </w:r>
  2763. </w:p>
  2764. </w:tc>
  2765. <w:tc>
  2766. <w:tcPr>
  2767. <w:tcW w:type="dxa" w:w="1670"/>
  2768. <w:tcBorders>
  2769. <w:left w:color="auto" w:space="0" w:sz="4" w:val="single"/>
  2770. <w:bottom w:color="auto" w:space="0" w:sz="4" w:val="single"/>
  2771. <w:right w:color="auto" w:space="0" w:sz="4" w:val="single"/>
  2772. </w:tcBorders>
  2773. <w:vAlign w:val="center"/>
  2774. </w:tcPr>
  2775. <w:p w:rsidP="00151A2B" w:rsidR="00893BD8" w:rsidRDefault="00893BD8">
  2776. <w:pPr>
  2777. <w:jc w:val="center"/>
  2778. <w:rPr>
  2779. <w:rFonts w:hint="eastAsia"/>
  2780. <w:color w:val="000000"/>
  2781. <w:szCs w:val="21"/>
  2782. </w:rPr>
  2783. </w:pPr>
  2784. <w:r>
  2785. <w:rPr>
  2786. <w:rFonts w:hint="eastAsia"/>
  2787. <w:color w:val="000000"/>
  2788. <w:szCs w:val="21"/>
  2789. </w:rPr>
  2790. <w:t>综合应用</w:t>
  2791. </w:r>
  2792. <w:r w:rsidR="00151A2B">
  2793. <w:rPr>
  2794. <w:rFonts w:hint="eastAsia"/>
  2795. <w:color w:val="000000"/>
  2796. <w:szCs w:val="21"/>
  2797. </w:rPr>
  2798. <w:t></w:t>
  2799. </w:r>
  2800. <w:r w:rsidR="00151A2B">
  2801. <w:rPr>
  2802. <w:rFonts w:hint="eastAsia"/>
  2803. <w:color w:val="000000"/>
  2804. <w:szCs w:val="21"/>
  2805. </w:rPr>
  2806. <w:t>%</w:t>
  2807. </w:r>
  2808. <w:r w:rsidR="00151A2B">
  2809. <w:rPr>
  2810. <w:rFonts w:hint="eastAsia"/>
  2811. <w:color w:val="000000"/>
  2812. <w:szCs w:val="21"/>
  2813. </w:rPr>
  2814. <w:t></w:t>
  2815. </w:r>
  2816. </w:p>
  2817. </w:tc>
  2818. <w:tc>
  2819. <w:tcPr>
  2820. <w:tcW w:type="dxa" w:w="1306"/>
  2821. <w:tcBorders>
  2822. <w:left w:color="auto" w:space="0" w:sz="4" w:val="single"/>
  2823. <w:bottom w:color="auto" w:space="0" w:sz="4" w:val="single"/>
  2824. </w:tcBorders>
  2825. <w:vAlign w:val="center"/>
  2826. </w:tcPr>
  2827. <w:p w:rsidP="00172A57" w:rsidR="00893BD8" w:rsidRDefault="00893BD8">
  2828. <w:pPr>
  2829. <w:jc w:val="center"/>
  2830. <w:rPr>
  2831. <w:rFonts w:hint="eastAsia"/>
  2832. <w:color w:val="000000"/>
  2833. <w:szCs w:val="21"/>
  2834. </w:rPr>
  2835. </w:pPr>
  2836. <w:r>
  2837. <w:rPr>
  2838. <w:rFonts w:hint="eastAsia"/>
  2839. <w:color w:val="000000"/>
  2840. <w:szCs w:val="21"/>
  2841. </w:rPr>
  2842. <w:t>比重和</w:t>
  2843. </w:r>
  2844. <w:r w:rsidR="00151A2B">
  2845. <w:rPr>
  2846. <w:rFonts w:hint="eastAsia"/>
  2847. <w:color w:val="000000"/>
  2848. <w:szCs w:val="21"/>
  2849. </w:rPr>
  2850. <w:t></w:t>
  2851. </w:r>
  2852. <w:r w:rsidR="00151A2B">
  2853. <w:rPr>
  2854. <w:rFonts w:hint="eastAsia"/>
  2855. <w:color w:val="000000"/>
  2856. <w:szCs w:val="21"/>
  2857. </w:rPr>
  2858. <w:t>%</w:t>
  2859. </w:r>
  2860. <w:r w:rsidR="00151A2B">
  2861. <w:rPr>
  2862. <w:rFonts w:hint="eastAsia"/>
  2863. <w:color w:val="000000"/>
  2864. <w:szCs w:val="21"/>
  2865. </w:rPr>
  2866. <w:t></w:t>
  2867. </w:r>
  2868. </w:p>
  2869. </w:tc>
  2870. </w:tr>
  2871. <w:tr w:rsidR="00695F6F" w:rsidTr="00C30083">
  2872. <w:trPr>
  2873. <w:trHeight w:val="1138"/>
  2874. </w:trPr>
  2875. <w:tc>
  2876. <w:tcPr>
  2877. <w:tcW w:type="dxa" w:w="2354"/>
  2878. <w:tcBorders>
  2879. <w:top w:color="auto" w:space="0" w:sz="4" w:val="single"/>
  2880. <w:left w:color="auto" w:space="0" w:sz="4" w:val="single"/>
  2881. <w:bottom w:color="auto" w:space="0" w:sz="4" w:val="single"/>
  2882. <w:right w:color="auto" w:space="0" w:sz="4" w:val="single"/>
  2883. </w:tcBorders>
  2884. <w:vAlign w:val="center"/>
  2885. </w:tcPr>
  2886. <w:p w:rsidP="00BF298B" w:rsidR="00695F6F" w:rsidRDefault="00695F6F">
  2887. <w:pPr>
  2888. <w:jc w:val="center"/>
  2889. <w:rPr>
  2890. <w:rFonts w:hint="eastAsia"/>
  2891. </w:rPr>
  2892. </w:pPr>
  2893. </w:p>
  2894. <w:p w:rsidP="00BF298B" w:rsidR="00695F6F" w:rsidRDefault="00695F6F" w:rsidRPr="005107F0">
  2895. <w:pPr>
  2896. <w:jc w:val="center"/>
  2897. <w:rPr>
  2898. <w:rFonts w:hint="eastAsia"/>
  2899. </w:rPr>
  2900. </w:pPr>
  2901. <w:r>
  2902. <w:rPr>
  2903. <w:rFonts w:hint="eastAsia"/>
  2904. </w:rPr>
  2905. <w:t>比重和</w:t>
  2906. </w:r>
  2907. </w:p>
  2908. </w:tc>
  2909. <w:tc>
  2910. <w:tcPr>
  2911. <w:tcW w:type="dxa" w:w="1670"/>
  2912. <w:tcBorders>
  2913. <w:top w:color="auto" w:space="0" w:sz="4" w:val="single"/>
  2914. <w:left w:color="auto" w:space="0" w:sz="4" w:val="single"/>
  2915. <w:right w:color="auto" w:space="0" w:sz="4" w:val="single"/>
  2916. </w:tcBorders>
  2917. <w:vAlign w:val="center"/>
  2918. </w:tcPr>
  2919. <w:p w:rsidP="00E14668" w:rsidR="00695F6F" w:rsidRDefault="00695F6F" w:rsidRPr="005107F0">
  2920. <w:pPr>
  2921. <w:jc w:val="center"/>
  2922. <w:rPr>
  2923. <w:rFonts w:hint="eastAsia"/>
  2924. </w:rPr>
  2925. </w:pPr>
  2926. <w:r>
  2927. <w:rPr>
  2928. <w:rFonts w:ascii="楷体_GB2312" w:eastAsia="楷体_GB2312" w:hint="eastAsia"/>
  2929. <w:color w:val="000000"/>
  2930. </w:rPr>
  2931. <w:t></w:t>
  2932. </w:r>
  2933. <w:r>
  2934. <w:rPr>
  2935. <w:rFonts w:ascii="楷体_GB2312" w:eastAsia="楷体_GB2312"/>
  2936. <w:color w:val="000000"/>
  2937. </w:rPr>
  2938. <w:t>0</w:t>
  2939. </w:r>
  2940. <w:r>
  2941. <w:rPr>
  2942. <w:rFonts w:ascii="楷体_GB2312" w:eastAsia="楷体_GB2312" w:hint="eastAsia"/>
  2943. <w:color w:val="000000"/>
  2944. </w:rPr>
  2945. <w:t></w:t>
  2946. </w:r>
  2947. </w:p>
  2948. </w:tc>
  2949. <w:tc>
  2950. <w:tcPr>
  2951. <w:tcW w:type="dxa" w:w="1670"/>
  2952. <w:tcBorders>
  2953. <w:top w:color="auto" w:space="0" w:sz="4" w:val="single"/>
  2954. <w:left w:color="auto" w:space="0" w:sz="4" w:val="single"/>
  2955. <w:right w:color="auto" w:space="0" w:sz="4" w:val="single"/>
  2956. </w:tcBorders>
  2957. <w:vAlign w:val="center"/>
  2958. </w:tcPr>
  2959. <w:p w:rsidP="009E2274" w:rsidR="00695F6F" w:rsidRDefault="00695F6F" w:rsidRPr="005107F0">
  2960. <w:pPr>
  2961. <w:jc w:val="center"/>
  2962. <w:rPr>
  2963. <w:rFonts w:hint="eastAsia"/>
  2964. </w:rPr>
  2965. </w:pPr>
  2966. <w:r>
  2967. <w:rPr>
  2968. <w:rFonts w:hint="eastAsia"/>
  2969. </w:rPr>
  2970. <w:t></w:t>
  2971. </w:r>
  2972. <w:r>
  2973. <w:t>0</w:t>
  2974. </w:r>
  2975. <w:r>
  2976. <w:rPr>
  2977. <w:rFonts w:hint="eastAsia"/>
  2978. </w:rPr>
  2979. <w:t></w:t>
  2980. </w:r>
  2981. </w:p>
  2982. </w:tc>
  2983. <w:tc>
  2984. <w:tcPr>
  2985. <w:tcW w:type="dxa" w:w="1670"/>
  2986. <w:tcBorders>
  2987. <w:top w:color="auto" w:space="0" w:sz="4" w:val="single"/>
  2988. <w:left w:color="auto" w:space="0" w:sz="4" w:val="single"/>
  2989. <w:right w:color="auto" w:space="0" w:sz="4" w:val="single"/>
  2990. </w:tcBorders>
  2991. <w:vAlign w:val="center"/>
  2992. </w:tcPr>
  2993. <w:p w:rsidP="00D012E5" w:rsidR="00695F6F" w:rsidRDefault="00695F6F" w:rsidRPr="005107F0">
  2994. <w:pPr>
  2995. <w:jc w:val="center"/>
  2996. <w:rPr>
  2997. <w:rFonts w:hint="eastAsia"/>
  2998. </w:rPr>
  2999. </w:pPr>
  3000. <w:r>
  3001. <w:rPr>
  3002. <w:rFonts w:ascii="楷体_GB2312" w:eastAsia="楷体_GB2312" w:hint="eastAsia"/>
  3003. <w:color w:val="000000"/>
  3004. </w:rPr>
  3005. <w:t></w:t>
  3006. </w:r>
  3007. <w:r>
  3008. <w:rPr>
  3009. <w:rFonts w:ascii="楷体_GB2312" w:eastAsia="楷体_GB2312"/>
  3010. <w:color w:val="000000"/>
  3011. </w:rPr>
  3012. <w:t>0</w:t>
  3013. </w:r>
  3014. <w:r>
  3015. <w:rPr>
  3016. <w:rFonts w:ascii="楷体_GB2312" w:eastAsia="楷体_GB2312" w:hint="eastAsia"/>
  3017. <w:color w:val="000000"/>
  3018. </w:rPr>
  3019. <w:t></w:t>
  3020. </w:r>
  3021. </w:p>
  3022. </w:tc>
  3023. <w:tc>
  3024. <w:tcPr>
  3025. <w:tcW w:type="dxa" w:w="1306"/>
  3026. <w:tcBorders>
  3027. <w:top w:color="auto" w:space="0" w:sz="4" w:val="single"/>
  3028. <w:left w:color="auto" w:space="0" w:sz="4" w:val="single"/>
  3029. <w:bottom w:color="auto" w:space="0" w:sz="4" w:val="single"/>
  3030. <w:right w:color="auto" w:space="0" w:sz="4" w:val="single"/>
  3031. </w:tcBorders>
  3032. <w:vAlign w:val="center"/>
  3033. </w:tcPr>
  3034. <w:p w:rsidP="0071365C" w:rsidR="00695F6F" w:rsidRDefault="00695F6F" w:rsidRPr="005107F0">
  3035. <w:pPr>
  3036. <w:jc w:val="center"/>
  3037. <w:rPr>
  3038. <w:rFonts w:hint="eastAsia"/>
  3039. </w:rPr>
  3040. </w:pPr>
  3041. <w:r>
  3042. <w:rPr>
  3043. <w:rFonts w:hint="eastAsia"/>
  3044. <w:color w:val="000000"/>
  3045. <w:szCs w:val="21"/>
  3046. </w:rPr>
  3047. <w:t></w:t>
  3048. </w:r>
  3049. <w:r>
  3050. <w:rPr>
  3051. <w:color w:val="000000"/>
  3052. <w:szCs w:val="21"/>
  3053. </w:rPr>
  3054. <w:t>0</w:t>
  3055. </w:r>
  3056. <w:r>
  3057. <w:rPr>
  3058. <w:rFonts w:hint="eastAsia"/>
  3059. <w:color w:val="000000"/>
  3060. <w:szCs w:val="21"/>
  3061. </w:rPr>
  3062. <w:t></w:t>
  3063. </w:r>
  3064. </w:p>
  3065. </w:tc>
  3066. </w:tr>
  3067. </w:tbl>
  3068. <w:p w:rsidR="00893BD8" w:rsidRDefault="00893BD8">
  3069. <w:pPr>
  3070. <w:ind w:firstLine="315" w:firstLineChars="150"/>
  3071. </w:pPr>
  3072. </w:p>
  3073. <w:p w:rsidR="00F06332" w:rsidRDefault="00F06332">
  3074. <w:pPr>
  3075. <w:ind w:firstLine="315" w:firstLineChars="150"/>
  3076. <w:rPr>
  3077. <w:rFonts w:hint="eastAsia"/>
  3078. </w:rPr>
  3079. </w:pPr>
  3080. <w:r>
  3081. <w:rPr>
  3082. <w:rFonts w:hint="eastAsia"/>
  3083. </w:rPr>
  3084. <w:t>注:</w:t>
  3085. </w:r>
  3086. <w:r>
  3087. <w:rPr>
  3088. <w:rFonts w:hint="eastAsia"/>
  3089. </w:rPr>
  3090. <w:t>1</w:t>
  3091. </w:r>
  3092. <w:r>
  3093. <w:rPr>
  3094. <w:rFonts w:hint="eastAsia"/>
  3095. </w:rPr>
  3096. <w:t>、比重按百分比填写。</w:t>
  3097. </w:r>
  3098. </w:p>
  3099. <w:p w:rsidR="00F06332" w:rsidRDefault="00F06332">
  3100. <w:r>
  3101. <w:rPr>
  3102. <w:rFonts w:hint="eastAsia"/>
  3103. </w:rPr>
  3104. <w:t xml:space="preserve">2</w:t>
  3105. </w:r>
  3106. <w:r>
  3107. <w:rPr>
  3108. <w:rFonts w:hint="eastAsia"/>
  3109. </w:rPr>
  3110. <w:t></w:t>
  3111. </w:r>
  3112. <w:r>
  3113. <w:rPr>
  3114. <w:rFonts w:hint="eastAsia"/>
  3115. </w:rPr>
  3116. <w:t>AB</w:t>
  3117. </w:r>
  3118. <w:r>
  3119. <w:rPr>
  3120. <w:rFonts w:hint="eastAsia"/>
  3121. </w:rPr>
  3122. <w:t>巻制指同一场考试中同时使用</w:t>
  3123. </w:r>
  3124. <w:r>
  3125. <w:rPr>
  3126. <w:rFonts w:hint="eastAsia"/>
  3127. </w:rPr>
  3128. <w:t>A</w:t>
  3129. </w:r>
  3130. <w:r>
  3131. <w:rPr>
  3132. <w:rFonts w:hint="eastAsia"/>
  3133. </w:rPr>
  3134. <w:t></w:t>
  3135. </w:r>
  3136. <w:r>
  3137. <w:rPr>
  3138. <w:rFonts w:hint="eastAsia"/>
  3139. </w:rPr>
  3140. <w:t>B</w:t>
  3141. </w:r>
  3142. <w:r>
  3143. <w:rPr>
  3144. <w:rFonts w:hint="eastAsia"/>
  3145. </w:rPr>
  3146. <w:t>卷。</w:t>
  3147. </w:r>
  3148. </w:p>
  3149. <w:p w:rsidR="00172A57" w:rsidRDefault="00172A57">
  3150. <w:pPr>
  3151. <w:rPr>
  3152. <w:rFonts w:hint="eastAsia"/>
  3153. </w:rPr>
  3154. </w:pPr>
  3155. <w:r>
  3156. <w:t xml:space="preserve">3</w:t>
  3157. </w:r>
  3158. <w:r>
  3159. <w:rPr>
  3160. <w:rFonts w:hint="eastAsia"/>
  3161. </w:rPr>
  3162. <w:t>、命题应依据教学大纲</w:t>
  3163. </w:r>
  3164. <w:r w:rsidRPr="006225C7">
  3165. <w:rPr>
  3166. <w:rFonts w:hint="eastAsia"/>
  3167. </w:rPr>
  3168. <w:t></w:t>
  3169. </w:r>
  3170. <w:r>
  3171. <w:rPr>
  3172. <w:rFonts w:hint="eastAsia"/>
  3173. </w:rPr>
  3174. <w:t>试题</w:t>
  3175. </w:r>
  3176. <w:r w:rsidRPr="006225C7">
  3177. <w:rPr>
  3178. <w:rFonts w:hint="eastAsia"/>
  3179. </w:rPr>
  3180. <w:t>近三年的重复率不得超过</w:t>
  3181. </w:r>
  3182. <w:r w:rsidRPr="006225C7">
  3183. <w:t>30%</w:t>
  3184. </w:r>
  3185. <w:r>
  3186. <w:rPr>
  3187. <w:rFonts w:hint="eastAsia"/>
  3188. </w:rPr>
  3189. <w:t></w:t>
  3190. </w:r>
  3191. </w:p>
  3192. <w:p w:rsidR="00BD4CF1" w:rsidRDefault="00BD4CF1">
  3193. <w:pPr>
  3194. <w:rPr>
  3195. <w:rFonts w:hint="eastAsia"/>
  3196. </w:rPr>
  3197. </w:pPr>
  3198. </w:p>
  3199. <w:p w:rsidR="00BD4CF1" w:rsidRDefault="00BD4CF1">
  3200. <w:pPr>
  3201. <w:rPr>
  3202. <w:rFonts w:hint="eastAsia"/>
  3203. </w:rPr>
  3204. </w:pPr>
  3205. </w:p>
  3206. <w:p w:rsidP="0045352E" w:rsidR="001B22AF" w:rsidRDefault="0045352E" w:rsidRPr="0045352E">
  3207. <w:pPr>
  3208. <w:jc w:val="center"/>
  3209. <w:rPr>
  3210. <w:rFonts w:hint="eastAsia"/>
  3211. <w:b/>
  3212. <w:sz w:val="28"/>
  3213. <w:szCs w:val="28"/>
  3214. </w:rPr>
  3215. </w:pPr>
  3216. <w:r w:rsidRPr="0045352E">
  3217. <w:rPr>
  3218. <w:rFonts w:hint="eastAsia"/>
  3219. <w:b/>
  3220. <w:sz w:val="28"/>
  3221. <w:szCs w:val="28"/>
  3222. </w:rPr>
  3223. <w:t>试题赋分方案表</w:t>
  3224. </w:r>
  3225. </w:p>
  3226. <w:p w:rsidR="00172A57" w:rsidRDefault="00172A57">
  3227. <w:pPr>
  3228. <w:rPr>
  3229. <w:rFonts w:hint="eastAsia"/>
  3230. </w:rPr>
  3231. </w:pPr>
  3232. </w:p>
  3233. <w:tbl>
  3234. <w:tblPr>
  3235. <w:tblW w:type="auto" w:w="0"/>
  3236. <w:tblInd w:type="dxa" w:w="94"/>
  3237. <w:tblBorders>
  3238. <w:top w:color="auto" w:space="0" w:sz="4" w:val="single"/>
  3239. <w:left w:color="auto" w:space="0" w:sz="4" w:val="single"/>
  3240. <w:bottom w:color="auto" w:space="0" w:sz="4" w:val="single"/>
  3241. <w:right w:color="auto" w:space="0" w:sz="4" w:val="single"/>
  3242. <w:insideH w:color="auto" w:space="0" w:sz="4" w:val="single"/>
  3243. <w:insideV w:color="auto" w:space="0" w:sz="4" w:val="single"/>
  3244. </w:tblBorders>
  3245. <w:tblLayout w:type="fixed"/>
  3246. <w:tblLook w:firstColumn="0" w:firstRow="0" w:lastColumn="0" w:lastRow="0" w:noHBand="0" w:noVBand="0" w:val="0000"/>
  3247. </w:tblPr>
  3248. <w:tblGrid>
  3249. <w:gridCol w:w="2354"/>
  3250. <w:gridCol w:w="2354"/>
  3251. <w:gridCol w:w="3962"/>
  3252. </w:tblGrid>
  3253. <w:tr w:rsidR="00F06332">
  3254. <w:trPr>
  3255. <w:trHeight w:val="801"/>
  3256. </w:trPr>
  3257. <w:tc>
  3258. <w:tcPr>
  3259. <w:tcW w:type="dxa" w:w="2354"/>
  3260. <w:tcBorders>
  3261. <w:top w:color="auto" w:space="0" w:sz="4" w:val="single"/>
  3262. <w:bottom w:color="auto" w:space="0" w:sz="4" w:val="single"/>
  3263. </w:tcBorders>
  3264. <w:vAlign w:val="center"/>
  3265. </w:tcPr>
  3266. <w:p w:rsidR="00F06332" w:rsidRDefault="00F06332">
  3267. <w:pPr>
  3268. <w:jc w:val="center"/>
  3269. <w:rPr>
  3270. <w:szCs w:val="21"/>
  3271. </w:rPr>
  3272. </w:pPr>
  3273. <w:r>
  3274. <w:rPr>
  3275. <w:rFonts w:hint="eastAsia"/>
  3276. <w:szCs w:val="21"/>
  3277. </w:rPr>
  3278. <w:t></w:t>
  3279. </w:r>
  3280. <w:r>
  3281. <w:rPr>
  3282. <w:rFonts w:hint="eastAsia"/>
  3283. <w:szCs w:val="21"/>
  3284. </w:rPr>
  3285. <w:t xml:space="preserve"/>
  3286. </w:r>
  3287. <w:r>
  3288. <w:rPr>
  3289. <w:rFonts w:hint="eastAsia"/>
  3290. <w:szCs w:val="21"/>
  3291. </w:rPr>
  3292. <w:t></w:t>
  3293. </w:r>
  3294. </w:p>
  3295. </w:tc>
  3296. <w:tc>
  3297. <w:tcPr>
  3298. <w:tcW w:type="dxa" w:w="2354"/>
  3299. <w:tcBorders>
  3300. <w:top w:color="auto" w:space="0" w:sz="4" w:val="single"/>
  3301. <w:bottom w:color="auto" w:space="0" w:sz="4" w:val="single"/>
  3302. </w:tcBorders>
  3303. <w:vAlign w:val="center"/>
  3304. </w:tcPr>
  3305. <w:p w:rsidR="00F06332" w:rsidRDefault="00F06332">
  3306. <w:pPr>
  3307. <w:jc w:val="center"/>
  3308. <w:rPr>
  3309. <w:szCs w:val="21"/>
  3310. </w:rPr>
  3311. </w:pPr>
  3312. <w:r>
  3313. <w:rPr>
  3314. <w:rFonts w:hint="eastAsia"/>
  3315. <w:szCs w:val="21"/>
  3316. </w:rPr>
  3317. <w:t></w:t>
  3318. </w:r>
  3319. <w:r>
  3320. <w:rPr>
  3321. <w:rFonts w:hint="eastAsia"/>
  3322. <w:szCs w:val="21"/>
  3323. </w:rPr>
  3324. <w:t xml:space="preserve"/>
  3325. </w:r>
  3326. <w:r>
  3327. <w:rPr>
  3328. <w:rFonts w:hint="eastAsia"/>
  3329. <w:szCs w:val="21"/>
  3330. </w:rPr>
  3331. <w:t></w:t>
  3332. </w:r>
  3333. </w:p>
  3334. </w:tc>
  3335. <w:tc>
  3336. <w:tcPr>
  3337. <w:tcW w:type="dxa" w:w="3962"/>
  3338. <w:tcBorders>
  3339. <w:top w:color="auto" w:space="0" w:sz="4" w:val="single"/>
  3340. <w:bottom w:color="auto" w:space="0" w:sz="4" w:val="single"/>
  3341. </w:tcBorders>
  3342. <w:vAlign w:val="center"/>
  3343. </w:tcPr>
  3344. <w:p w:rsidR="00F06332" w:rsidRDefault="00F06332">
  3345. <w:pPr>
  3346. <w:jc w:val="center"/>
  3347. <w:rPr>
  3348. <w:rFonts w:hint="eastAsia"/>
  3349. <w:szCs w:val="21"/>
  3350. </w:rPr>
  3351. </w:pPr>
  3352. <w:r>
  3353. <w:rPr>
  3354. <w:rFonts w:hint="eastAsia"/>
  3355. <w:szCs w:val="21"/>
  3356. </w:rPr>
  3357. <w:t></w:t>
  3358. </w:r>
  3359. <w:r>
  3360. <w:rPr>
  3361. <w:rFonts w:hint="eastAsia"/>
  3362. <w:szCs w:val="21"/>
  3363. </w:rPr>
  3364. <w:t xml:space="preserve"/>
  3365. </w:r>
  3366. <w:r>
  3367. <w:rPr>
  3368. <w:rFonts w:hint="eastAsia"/>
  3369. <w:szCs w:val="21"/>
  3370. </w:rPr>
  3371. <w:t></w:t>
  3372. </w:r>
  3373. <w:r>
  3374. <w:rPr>
  3375. <w:rFonts w:hint="eastAsia"/>
  3376. <w:szCs w:val="21"/>
  3377. </w:rPr>
  3378. <w:t xml:space="preserve"/>
  3379. </w:r>
  3380. <w:r>
  3381. <w:rPr>
  3382. <w:rFonts w:hint="eastAsia"/>
  3383. <w:szCs w:val="21"/>
  3384. </w:rPr>
  3385. <w:t></w:t>
  3386. </w:r>
  3387. <w:r>
  3388. <w:rPr>
  3389. <w:rFonts w:hint="eastAsia"/>
  3390. <w:szCs w:val="21"/>
  3391. </w:rPr>
  3392. <w:t xml:space="preserve"/>
  3393. </w:r>
  3394. <w:r>
  3395. <w:rPr>
  3396. <w:rFonts w:hint="eastAsia"/>
  3397. <w:szCs w:val="21"/>
  3398. </w:rPr>
  3399. <w:t></w:t>
  3400. </w:r>
  3401. <w:r>
  3402. <w:rPr>
  3403. <w:rFonts w:hint="eastAsia"/>
  3404. <w:szCs w:val="21"/>
  3405. </w:rPr>
  3406. <w:t xml:space="preserve"/>
  3407. </w:r>
  3408. <w:r>
  3409. <w:rPr>
  3410. <w:rFonts w:hint="eastAsia"/>
  3411. <w:szCs w:val="21"/>
  3412. </w:rPr>
  3413. <w:t></w:t>
  3414. </w:r>
  3415. <w:r>
  3416. <w:rPr>
  3417. <w:rFonts w:hint="eastAsia"/>
  3418. <w:szCs w:val="21"/>
  3419. </w:rPr>
  3420. <w:t xml:space="preserve"/>
  3421. </w:r>
  3422. <w:r>
  3423. <w:rPr>
  3424. <w:rFonts w:hint="eastAsia"/>
  3425. <w:szCs w:val="21"/>
  3426. </w:rPr>
  3427. <w:t></w:t>
  3428. </w:r>
  3429. </w:p>
  3430. </w:tc>
  3431. </w:tr>
  3432. <w:tr w:rsidR="00F06332">
  3433. <w:trPr>
  3434. <w:trHeight w:val="454"/>
  3435. </w:trPr>
  3436. <w:tc>
  3437. <w:tcPr>
  3438. <w:tcW w:type="dxa" w:w="2354"/>
  3439. <w:tcBorders>
  3440. <w:bottom w:val="nil"/>
  3441. </w:tcBorders>
  3442. <w:vAlign w:val="center"/>
  3443. </w:tcPr>
  3444. <w:p w:rsidR="00F06332" w:rsidRDefault="003F5851">
  3445. <w:pPr>
  3446. <w:jc w:val="center"/>
  3447. <w:rPr>
  3448. <w:rFonts w:hint="eastAsia"/>
  3449. </w:rPr>
  3450. </w:pPr>
  3451. <w:r>
  3452. <w:rPr>
  3453. <w:rFonts w:hint="eastAsia"/>
  3454. </w:rPr>
  3455. <w:t>选择题</w:t>
  3456. </w:r>
  3457. </w:p>
  3458. </w:tc>
  3459. <w:tc>
  3460. <w:tcPr>
  3461. <w:tcW w:type="dxa" w:w="2354"/>
  3462. <w:tcBorders>
  3463. <w:bottom w:val="nil"/>
  3464. </w:tcBorders>
  3465. <w:vAlign w:val="center"/>
  3466. </w:tcPr>
  3467. <w:p w:rsidR="00F06332" w:rsidRDefault="00695F6F">
  3468. <w:pPr>
  3469. <w:jc w:val="center"/>
  3470. <w:rPr>
  3471. <w:sz w:val="24"/>
  3472. </w:rPr>
  3473. </w:pPr>
  3474. <w:r>
  3475. <w:rPr>
  3476. <w:rFonts w:hint="eastAsia"/>
  3477. <w:sz w:val="24"/>
  3478. </w:rPr>
  3479. <w:t></w:t>
  3480. </w:r>
  3481. <w:r>
  3482. <w:rPr>
  3483. <w:sz w:val="24"/>
  3484. </w:rPr>
  3485. <w:t>1</w:t>
  3486. </w:r>
  3487. <w:r>
  3488. <w:rPr>
  3489. <w:rFonts w:hint="eastAsia"/>
  3490. <w:sz w:val="24"/>
  3491. </w:rPr>
  3492. <w:t></w:t>
  3493. </w:r>
  3494. </w:p>
  3495. </w:tc>
  3496. <w:tc>
  3497. <w:tcPr>
  3498. <w:tcW w:type="dxa" w:w="3962"/>
  3499. <w:tcBorders>
  3500. <w:bottom w:val="nil"/>
  3501. </w:tcBorders>
  3502. <w:vAlign w:val="center"/>
  3503. </w:tcPr>
  3504. <w:p w:rsidP="00D11A8C" w:rsidR="00F06332" w:rsidRDefault="003F5851">
  3505. <w:pPr>
  3506. <w:jc w:val="center"/>
  3507. <w:rPr>
  3508. <w:rFonts w:hint="eastAsia"/>
  3509. <w:sz w:val="24"/>
  3510. </w:rPr>
  3511. </w:pPr>
  3512. <w:r>
  3513. <w:rPr>
  3514. <w:rFonts w:hint="eastAsia"/>
  3515. <w:sz w:val="24"/>
  3516. </w:rPr>
  3517. <w:t>每题</w:t>
  3518. </w:r>
  3519. <w:r w:rsidR="00695F6F">
  3520. <w:rPr>
  3521. <w:rFonts w:hint="eastAsia"/>
  3522. <w:sz w:val="24"/>
  3523. </w:rPr>
  3524. <w:t></w:t>
  3525. </w:r>
  3526. <w:r w:rsidR="00695F6F">
  3527. <w:rPr>
  3528. <w:sz w:val="24"/>
  3529. </w:rPr>
  3530. <w:t>10</w:t>
  3531. </w:r>
  3532. <w:r w:rsidR="00695F6F">
  3533. <w:rPr>
  3534. <w:rFonts w:hint="eastAsia"/>
  3535. <w:sz w:val="24"/>
  3536. </w:rPr>
  3537. <w:t></w:t>
  3538. </w:r>
  3539. <w:r>
  3540. <w:rPr>
  3541. <w:rFonts w:hint="eastAsia"/>
  3542. <w:sz w:val="24"/>
  3543. </w:rPr>
  3544. <w:t></w:t>
  3545. </w:r>
  3546. </w:p>
  3547. </w:tc>
  3548. </w:tr>
  3549. <w:tr w:rsidR="00F06332">
  3550. <w:trPr>
  3551. <w:trHeight w:val="454"/>
  3552. </w:trPr>
  3553. <w:tc>
  3554. <w:tcPr>
  3555. <w:tcW w:type="dxa" w:w="2354"/>
  3556. <w:tcBorders>
  3557. <w:top w:val="nil"/>
  3558. <w:bottom w:val="nil"/>
  3559. </w:tcBorders>
  3560. <w:vAlign w:val="center"/>
  3561. </w:tcPr>
  3562. <w:p w:rsidR="00F06332" w:rsidRDefault="00D627B2">
  3563. <w:pPr>
  3564. <w:jc w:val="center"/>
  3565. </w:pPr>
  3566. <w:r>
  3567. <w:rPr>
  3568. <w:rFonts w:hint="eastAsia"/>
  3569. </w:rPr>
  3570. <w:t>填空</w:t>
  3571. </w:r>
  3572. <w:r w:rsidR="00A22DCE">
  3573. <w:rPr>
  3574. <w:rFonts w:hint="eastAsia"/>
  3575. </w:rPr>
  3576. <w:t></w:t>
  3577. </w:r>
  3578. </w:p>
  3579. <w:p w:rsidR="00D627B2" w:rsidRDefault="00D627B2">
  3580. <w:pPr>
  3581. <w:jc w:val="center"/>
  3582. <w:rPr>
  3583. <w:rFonts w:hint="eastAsia"/>
  3584. </w:rPr>
  3585. </w:pPr>
  3586. <w:r>
  3587. <w:rPr>
  3588. <w:rFonts w:hint="eastAsia"/>
  3589. </w:rPr>
  3590. <w:t>简答题</w:t>
  3591. </w:r>
  3592. </w:p>
  3593. </w:tc>
  3594. <w:tc>
  3595. <w:tcPr>
  3596. <w:tcW w:type="dxa" w:w="2354"/>
  3597. <w:tcBorders>
  3598. <w:top w:val="nil"/>
  3599. <w:bottom w:val="nil"/>
  3600. </w:tcBorders>
  3601. <w:vAlign w:val="center"/>
  3602. </w:tcPr>
  3603. <w:p w:rsidP="00D11A8C" w:rsidR="00D627B2" w:rsidRDefault="00695F6F">
  3604. <w:pPr>
  3605. <w:jc w:val="center"/>
  3606. <w:rPr>
  3607. <w:sz w:val="24"/>
  3608. </w:rPr>
  3609. </w:pPr>
  3610. <w:r>
  3611. <w:rPr>
  3612. <w:rFonts w:hint="eastAsia"/>
  3613. <w:sz w:val="24"/>
  3614. </w:rPr>
  3615. <w:t></w:t>
  3616. </w:r>
  3617. <w:r>
  3618. <w:rPr>
  3619. <w:sz w:val="24"/>
  3620. </w:rPr>
  3621. <w:t>1</w:t>
  3622. </w:r>
  3623. <w:r>
  3624. <w:rPr>
  3625. <w:rFonts w:hint="eastAsia"/>
  3626. <w:sz w:val="24"/>
  3627. </w:rPr>
  3628. <w:t></w:t>
  3629. </w:r>
  3630. </w:p>
  3631. <w:p w:rsidP="00D11A8C" w:rsidR="00F06332" w:rsidRDefault="00695F6F">
  3632. <w:pPr>
  3633. <w:jc w:val="center"/>
  3634. <w:rPr>
  3635. <w:sz w:val="24"/>
  3636. </w:rPr>
  3637. </w:pPr>
  3638. <w:r>
  3639. <w:rPr>
  3640. <w:rFonts w:hint="eastAsia"/>
  3641. <w:sz w:val="24"/>
  3642. </w:rPr>
  3643. <w:t></w:t>
  3644. </w:r>
  3645. <w:r>
  3646. <w:rPr>
  3647. <w:sz w:val="24"/>
  3648. </w:rPr>
  3649. <w:t>1</w:t>
  3650. </w:r>
  3651. <w:r>
  3652. <w:rPr>
  3653. <w:rFonts w:hint="eastAsia"/>
  3654. <w:sz w:val="24"/>
  3655. </w:rPr>
  3656. <w:t></w:t>
  3657. </w:r>
  3658. </w:p>
  3659. </w:tc>
  3660. <w:tc>
  3661. <w:tcPr>
  3662. <w:tcW w:type="dxa" w:w="3962"/>
  3663. <w:tcBorders>
  3664. <w:top w:val="nil"/>
  3665. <w:bottom w:val="nil"/>
  3666. </w:tcBorders>
  3667. <w:vAlign w:val="center"/>
  3668. </w:tcPr>
  3669. <w:p w:rsidP="00D11A8C" w:rsidR="00D627B2" w:rsidRDefault="00D627B2">
  3670. <w:pPr>
  3671. <w:jc w:val="center"/>
  3672. <w:rPr>
  3673. <w:rFonts w:hint="eastAsia"/>
  3674. <w:sz w:val="24"/>
  3675. </w:rPr>
  3676. </w:pPr>
  3677. <w:r>
  3678. <w:rPr>
  3679. <w:rFonts w:hint="eastAsia"/>
  3680. <w:sz w:val="24"/>
  3681. </w:rPr>
  3682. <w:t></w:t>
  3683. </w:r>
  3684. <w:r>
  3685. <w:rPr>
  3686. <w:sz w:val="24"/>
  3687. </w:rPr>
  3688. <w:t></w:t>
  3689. </w:r>
  3690. <w:r w:rsidR="00695F6F">
  3691. <w:rPr>
  3692. <w:rFonts w:hint="eastAsia"/>
  3693. <w:sz w:val="24"/>
  3694. </w:rPr>
  3695. <w:t></w:t>
  3696. </w:r>
  3697. <w:r w:rsidR="00695F6F">
  3698. <w:rPr>
  3699. <w:sz w:val="24"/>
  3700. </w:rPr>
  3701. <w:t>10</w:t>
  3702. </w:r>
  3703. <w:r w:rsidR="00695F6F">
  3704. <w:rPr>
  3705. <w:rFonts w:hint="eastAsia"/>
  3706. <w:sz w:val="24"/>
  3707. </w:rPr>
  3708. <w:t></w:t>
  3709. </w:r>
  3710. <w:r>
  3711. <w:rPr>
  3712. <w:rFonts w:hint="eastAsia"/>
  3713. <w:sz w:val="24"/>
  3714. </w:rPr>
  3715. <w:t></w:t>
  3716. </w:r>
  3717. </w:p>
  3718. <w:p w:rsidP="00D11A8C" w:rsidR="00F06332" w:rsidRDefault="00A22DCE">
  3719. <w:pPr>
  3720. <w:jc w:val="center"/>
  3721. <w:rPr>
  3722. <w:rFonts w:hint="eastAsia"/>
  3723. <w:sz w:val="24"/>
  3724. </w:rPr>
  3725. </w:pPr>
  3726. <w:r>
  3727. <w:rPr>
  3728. <w:rFonts w:hint="eastAsia"/>
  3729. <w:sz w:val="24"/>
  3730. </w:rPr>
  3731. <w:t>每题</w:t>
  3732. </w:r>
  3733. <w:r w:rsidR="00695F6F">
  3734. <w:rPr>
  3735. <w:rFonts w:hint="eastAsia"/>
  3736. <w:sz w:val="24"/>
  3737. </w:rPr>
  3738. <w:t></w:t>
  3739. </w:r>
  3740. <w:r w:rsidR="00695F6F">
  3741. <w:rPr>
  3742. <w:sz w:val="24"/>
  3743. </w:rPr>
  3744. <w:t>10</w:t>
  3745. </w:r>
  3746. <w:r w:rsidR="00695F6F">
  3747. <w:rPr>
  3748. <w:rFonts w:hint="eastAsia"/>
  3749. <w:sz w:val="24"/>
  3750. </w:rPr>
  3751. <w:t></w:t>
  3752. </w:r>
  3753. <w:r>
  3754. <w:rPr>
  3755. <w:rFonts w:hint="eastAsia"/>
  3756. <w:sz w:val="24"/>
  3757. </w:rPr>
  3758. <w:t></w:t>
  3759. </w:r>
  3760. </w:p>
  3761. </w:tc>
  3762. </w:tr>
  3763. <w:tr w:rsidR="00F06332">
  3764. <w:trPr>
  3765. <w:trHeight w:val="454"/>
  3766. </w:trPr>
  3767. <w:tc>
  3768. <w:tcPr>
  3769. <w:tcW w:type="dxa" w:w="2354"/>
  3770. <w:tcBorders>
  3771. <w:top w:val="nil"/>
  3772. <w:bottom w:val="nil"/>
  3773. </w:tcBorders>
  3774. <w:vAlign w:val="center"/>
  3775. </w:tcPr>
  3776. <w:p w:rsidR="00F06332" w:rsidRDefault="00A22DCE">
  3777. <w:pPr>
  3778. <w:jc w:val="center"/>
  3779. <w:rPr>
  3780. <w:rFonts w:hint="eastAsia"/>
  3781. </w:rPr>
  3782. </w:pPr>
  3783. <w:r>
  3784. <w:rPr>
  3785. <w:rFonts w:hint="eastAsia"/>
  3786. </w:rPr>
  3787. <w:t>应用题</w:t>
  3788. </w:r>
  3789. </w:p>
  3790. </w:tc>
  3791. <w:tc>
  3792. <w:tcPr>
  3793. <w:tcW w:type="dxa" w:w="2354"/>
  3794. <w:tcBorders>
  3795. <w:top w:val="nil"/>
  3796. <w:bottom w:val="nil"/>
  3797. </w:tcBorders>
  3798. <w:vAlign w:val="center"/>
  3799. </w:tcPr>
  3800. <w:p w:rsidR="00F06332" w:rsidRDefault="00695F6F">
  3801. <w:pPr>
  3802. <w:jc w:val="center"/>
  3803. <w:rPr>
  3804. <w:sz w:val="24"/>
  3805. </w:rPr>
  3806. </w:pPr>
  3807. <w:r>
  3808. <w:rPr>
  3809. <w:rFonts w:hint="eastAsia"/>
  3810. <w:sz w:val="24"/>
  3811. </w:rPr>
  3812. <w:t></w:t>
  3813. </w:r>
  3814. <w:r>
  3815. <w:rPr>
  3816. <w:sz w:val="24"/>
  3817. </w:rPr>
  3818. <w:t>1</w:t>
  3819. </w:r>
  3820. <w:r>
  3821. <w:rPr>
  3822. <w:rFonts w:hint="eastAsia"/>
  3823. <w:sz w:val="24"/>
  3824. </w:rPr>
  3825. <w:t></w:t>
  3826. </w:r>
  3827. </w:p>
  3828. </w:tc>
  3829. <w:tc>
  3830. <w:tcPr>
  3831. <w:tcW w:type="dxa" w:w="3962"/>
  3832. <w:tcBorders>
  3833. <w:top w:val="nil"/>
  3834. <w:bottom w:val="nil"/>
  3835. </w:tcBorders>
  3836. <w:vAlign w:val="center"/>
  3837. </w:tcPr>
  3838. <w:p w:rsidP="00637555" w:rsidR="00F06332" w:rsidRDefault="002E1837">
  3839. <w:pPr>
  3840. <w:jc w:val="center"/>
  3841. <w:rPr>
  3842. <w:rFonts w:hint="eastAsia"/>
  3843. <w:sz w:val="24"/>
  3844. </w:rPr>
  3845. </w:pPr>
  3846. <w:r>
  3847. <w:rPr>
  3848. <w:rFonts w:hint="eastAsia"/>
  3849. <w:sz w:val="24"/>
  3850. </w:rPr>
  3851. <w:t>每题</w:t>
  3852. </w:r>
  3853. <w:r w:rsidR="00695F6F">
  3854. <w:rPr>
  3855. <w:rFonts w:hint="eastAsia"/>
  3856. <w:sz w:val="24"/>
  3857. </w:rPr>
  3858. <w:t></w:t>
  3859. </w:r>
  3860. <w:r w:rsidR="00695F6F">
  3861. <w:rPr>
  3862. <w:sz w:val="24"/>
  3863. </w:rPr>
  3864. <w:t>10</w:t>
  3865. </w:r>
  3866. <w:r w:rsidR="00695F6F">
  3867. <w:rPr>
  3868. <w:rFonts w:hint="eastAsia"/>
  3869. <w:sz w:val="24"/>
  3870. </w:rPr>
  3871. <w:t></w:t>
  3872. </w:r>
  3873. <w:r>
  3874. <w:rPr>
  3875. <w:rFonts w:hint="eastAsia"/>
  3876. <w:sz w:val="24"/>
  3877. </w:rPr>
  3878. <w:t></w:t>
  3879. </w:r>
  3880. </w:p>
  3881. </w:tc>
  3882. </w:tr>
  3883. <w:tr w:rsidR="00F06332">
  3884. <w:trPr>
  3885. <w:trHeight w:val="454"/>
  3886. </w:trPr>
  3887. <w:tc>
  3888. <w:tcPr>
  3889. <w:tcW w:type="dxa" w:w="2354"/>
  3890. <w:tcBorders>
  3891. <w:top w:val="nil"/>
  3892. <w:bottom w:val="nil"/>
  3893. </w:tcBorders>
  3894. <w:vAlign w:val="center"/>
  3895. </w:tcPr>
  3896. <w:p w:rsidR="00F06332" w:rsidRDefault="00F06332">
  3897. <w:pPr>
  3898. <w:jc w:val="center"/>
  3899. <w:rPr>
  3900. <w:rFonts w:hint="eastAsia"/>
  3901. </w:rPr>
  3902. </w:pPr>
  3903. </w:p>
  3904. </w:tc>
  3905. <w:tc>
  3906. <w:tcPr>
  3907. <w:tcW w:type="dxa" w:w="2354"/>
  3908. <w:tcBorders>
  3909. <w:top w:val="nil"/>
  3910. <w:bottom w:val="nil"/>
  3911. </w:tcBorders>
  3912. <w:vAlign w:val="center"/>
  3913. </w:tcPr>
  3914. <w:p w:rsidR="00F06332" w:rsidRDefault="00F06332">
  3915. <w:pPr>
  3916. <w:jc w:val="center"/>
  3917. <w:rPr>
  3918. <w:sz w:val="24"/>
  3919. </w:rPr>
  3920. </w:pPr>
  3921. </w:p>
  3922. </w:tc>
  3923. <w:tc>
  3924. <w:tcPr>
  3925. <w:tcW w:type="dxa" w:w="3962"/>
  3926. <w:tcBorders>
  3927. <w:top w:val="nil"/>
  3928. <w:bottom w:val="nil"/>
  3929. </w:tcBorders>
  3930. <w:vAlign w:val="center"/>
  3931. </w:tcPr>
  3932. <w:p w:rsidR="00F06332" w:rsidRDefault="00F06332">
  3933. <w:pPr>
  3934. <w:jc w:val="center"/>
  3935. <w:rPr>
  3936. <w:rFonts w:hint="eastAsia"/>
  3937. <w:sz w:val="24"/>
  3938. </w:rPr>
  3939. </w:pPr>
  3940. </w:p>
  3941. </w:tc>
  3942. </w:tr>
  3943. <w:tr w:rsidR="00F06332">
  3944. <w:trPr>
  3945. <w:trHeight w:val="454"/>
  3946. </w:trPr>
  3947. <w:tc>
  3948. <w:tcPr>
  3949. <w:tcW w:type="dxa" w:w="2354"/>
  3950. <w:tcBorders>
  3951. <w:top w:val="nil"/>
  3952. <w:bottom w:val="nil"/>
  3953. </w:tcBorders>
  3954. <w:vAlign w:val="center"/>
  3955. </w:tcPr>
  3956. <w:p w:rsidR="00F06332" w:rsidRDefault="00F06332">
  3957. <w:pPr>
  3958. <w:jc w:val="center"/>
  3959. <w:rPr>
  3960. <w:rFonts w:hint="eastAsia"/>
  3961. </w:rPr>
  3962. </w:pPr>
  3963. </w:p>
  3964. </w:tc>
  3965. <w:tc>
  3966. <w:tcPr>
  3967. <w:tcW w:type="dxa" w:w="2354"/>
  3968. <w:tcBorders>
  3969. <w:top w:val="nil"/>
  3970. <w:bottom w:val="nil"/>
  3971. </w:tcBorders>
  3972. <w:vAlign w:val="center"/>
  3973. </w:tcPr>
  3974. <w:p w:rsidR="00F06332" w:rsidRDefault="00F06332">
  3975. <w:pPr>
  3976. <w:jc w:val="center"/>
  3977. <w:rPr>
  3978. <w:sz w:val="24"/>
  3979. </w:rPr>
  3980. </w:pPr>
  3981. </w:p>
  3982. </w:tc>
  3983. <w:tc>
  3984. <w:tcPr>
  3985. <w:tcW w:type="dxa" w:w="3962"/>
  3986. <w:tcBorders>
  3987. <w:top w:val="nil"/>
  3988. <w:bottom w:val="nil"/>
  3989. </w:tcBorders>
  3990. <w:vAlign w:val="center"/>
  3991. </w:tcPr>
  3992. <w:p w:rsidP="00637555" w:rsidR="00F06332" w:rsidRDefault="00F06332">
  3993. <w:pPr>
  3994. <w:jc w:val="center"/>
  3995. <w:rPr>
  3996. <w:rFonts w:hint="eastAsia"/>
  3997. <w:sz w:val="24"/>
  3998. </w:rPr>
  3999. </w:pPr>
  4000. </w:p>
  4001. </w:tc>
  4002. </w:tr>
  4003. <w:tr w:rsidR="00F06332">
  4004. <w:trPr>
  4005. <w:trHeight w:val="454"/>
  4006. </w:trPr>
  4007. <w:tc>
  4008. <w:tcPr>
  4009. <w:tcW w:type="dxa" w:w="2354"/>
  4010. <w:tcBorders>
  4011. <w:top w:val="nil"/>
  4012. <w:bottom w:color="auto" w:space="0" w:sz="4" w:val="single"/>
  4013. </w:tcBorders>
  4014. <w:vAlign w:val="center"/>
  4015. </w:tcPr>
  4016. <w:p w:rsidR="00F06332" w:rsidRDefault="00F06332">
  4017. <w:pPr>
  4018. <w:jc w:val="center"/>
  4019. <w:rPr>
  4020. <w:rFonts w:hint="eastAsia"/>
  4021. </w:rPr>
  4022. </w:pPr>
  4023. <w:r>
  4024. <w:rPr>
  4025. <w:rFonts w:hint="eastAsia"/>
  4026. </w:rPr>
  4027. <w:t>合计</w:t>
  4028. </w:r>
  4029. </w:p>
  4030. </w:tc>
  4031. <w:tc>
  4032. <w:tcPr>
  4033. <w:tcW w:type="dxa" w:w="2354"/>
  4034. <w:tcBorders>
  4035. <w:top w:val="nil"/>
  4036. <w:bottom w:color="auto" w:space="0" w:sz="4" w:val="single"/>
  4037. </w:tcBorders>
  4038. <w:vAlign w:val="center"/>
  4039. </w:tcPr>
  4040. <w:p w:rsidR="00F06332" w:rsidRDefault="00695F6F">
  4041. <w:pPr>
  4042. <w:jc w:val="center"/>
  4043. </w:pPr>
  4044. <w:r>
  4045. <w:t>4</w:t>
  4046. </w:r>
  4047. </w:p>
  4048. </w:tc>
  4049. <w:tc>
  4050. <w:tcPr>
  4051. <w:tcW w:type="dxa" w:w="3962"/>
  4052. <w:tcBorders>
  4053. <w:top w:val="nil"/>
  4054. <w:bottom w:color="auto" w:space="0" w:sz="4" w:val="single"/>
  4055. </w:tcBorders>
  4056. <w:vAlign w:val="center"/>
  4057. </w:tcPr>
  4058. <w:p w:rsidR="00F06332" w:rsidRDefault="00695F6F">
  4059. <w:pPr>
  4060. <w:jc w:val="center"/>
  4061. <w:rPr>
  4062. <w:rFonts w:hint="eastAsia"/>
  4063. </w:rPr>
  4064. </w:pPr>
  4065. <w:r>
  4066. <w:rPr>
  4067. <w:rFonts w:hint="eastAsia"/>
  4068. </w:rPr>
  4069. <w:t></w:t>
  4070. </w:r>
  4071. <w:r>
  4072. <w:t>40</w:t>
  4073. </w:r>
  4074. <w:r>
  4075. <w:rPr>
  4076. <w:rFonts w:hint="eastAsia"/>
  4077. </w:rPr>
  4078. <w:t></w:t>
  4079. </w:r>
  4080. <w:r w:rsidR="00F06332">
  4081. <w:rPr>
  4082. <w:rFonts w:ascii="宋体" w:hAnsi="宋体" w:hint="eastAsia"/>
  4083. </w:rPr>
  4084. <w:t>(分)</w:t>
  4085. </w:r>
  4086. </w:p>
  4087. </w:tc>
  4088. </w:tr>
  4089. </w:tbl>
  4090. <w:p w:rsidP="00065BE5" w:rsidR="00F06332" w:rsidRDefault="00F06332">
  4091. <w:pPr>
  4092. <w:jc w:val="left"/>
  4093. </w:pPr>
  4094. <w:r>
  4095. <w:rPr>
  4096. <w:rFonts w:hint="eastAsia"/>
  4097. <w:szCs w:val="21"/>
  4098. </w:rPr>
  4099. <w:t>注:题型可按</w:t>
  4100. </w:r>
  4101. <w:r w:rsidR="001159E5" w:rsidRPr="001159E5">
  4102. <w:rPr>
  4103. <w:rFonts w:hint="eastAsia"/>
  4104. </w:rPr>
  4105. <w:t>填空题、单项选择题、多项选择题、判断题、</w:t>
  4106. </w:r>
  4107. <w:r>
  4108. <w:rPr>
  4109. <w:rFonts w:hint="eastAsia"/>
  4110. </w:rPr>
  4111. <w:t>简答、论述、分析、计算、证明、案例分析、作文、程序设计等形式填写。如有其它形式请按实际命题内容填写。</w:t>
  4112. </w:r>
  4113. </w:p>
  4114. <w:p w:rsidR="00F06332" w:rsidRDefault="00F06332">
  4115. <w:pPr>
  4116. <w:spacing w:line="200" w:lineRule="exact"/>
  4117. <w:jc w:val="left"/>
  4118. <w:rPr>
  4119. <w:rFonts w:hint="eastAsia"/>
  4120. <w:sz w:val="24"/>
  4121. </w:rPr>
  4122. </w:pPr>
  4123. </w:p>
  4124. <w:p w:rsidR="00F06332" w:rsidRDefault="00F06332">
  4125. <w:pPr>
  4126. <w:jc w:val="center"/>
  4127. <w:rPr>
  4128. <w:rFonts w:hint="eastAsia"/>
  4129. <w:b/>
  4130. <w:sz w:val="28"/>
  4131. <w:szCs w:val="28"/>
  4132. </w:rPr>
  4133. </w:pPr>
  4134. <w:r>
  4135. <w:rPr>
  4136. <w:rFonts w:hint="eastAsia"/>
  4137. <w:b/>
  4138. <w:sz w:val="28"/>
  4139. <w:szCs w:val="28"/>
  4140. </w:rPr>
  4141. <w:t></w:t>
  4142. </w:r>
  4143. <w:r>
  4144. <w:rPr>
  4145. <w:rFonts w:hint="eastAsia"/>
  4146. <w:b/>
  4147. <w:sz w:val="28"/>
  4148. <w:szCs w:val="28"/>
  4149. </w:rPr>
  4150. <w:t xml:space="preserve"/>
  4151. </w:r>
  4152. <w:r>
  4153. <w:rPr>
  4154. <w:rFonts w:hint="eastAsia"/>
  4155. <w:b/>
  4156. <w:sz w:val="28"/>
  4157. <w:szCs w:val="28"/>
  4158. </w:rPr>
  4159. <w:t></w:t>
  4160. </w:r>
  4161. <w:r>
  4162. <w:rPr>
  4163. <w:rFonts w:hint="eastAsia"/>
  4164. <w:b/>
  4165. <w:sz w:val="28"/>
  4166. <w:szCs w:val="28"/>
  4167. </w:rPr>
  4168. <w:t xml:space="preserve"/>
  4169. </w:r>
  4170. <w:r>
  4171. <w:rPr>
  4172. <w:rFonts w:hint="eastAsia"/>
  4173. <w:b/>
  4174. <w:sz w:val="28"/>
  4175. <w:szCs w:val="28"/>
  4176. </w:rPr>
  4177. <w:t></w:t>
  4178. </w:r>
  4179. <w:r>
  4180. <w:rPr>
  4181. <w:rFonts w:hint="eastAsia"/>
  4182. <w:b/>
  4183. <w:sz w:val="28"/>
  4184. <w:szCs w:val="28"/>
  4185. </w:rPr>
  4186. <w:t xml:space="preserve"/>
  4187. </w:r>
  4188. <w:r>
  4189. <w:rPr>
  4190. <w:rFonts w:hint="eastAsia"/>
  4191. <w:b/>
  4192. <w:sz w:val="28"/>
  4193. <w:szCs w:val="28"/>
  4194. </w:rPr>
  4195. <w:t></w:t>
  4196. </w:r>
  4197. <w:r>
  4198. <w:rPr>
  4199. <w:rFonts w:hint="eastAsia"/>
  4200. <w:b/>
  4201. <w:sz w:val="28"/>
  4202. <w:szCs w:val="28"/>
  4203. </w:rPr>
  4204. <w:t xml:space="preserve"/>
  4205. </w:r>
  4206. <w:r>
  4207. <w:rPr>
  4208. <w:rFonts w:hint="eastAsia"/>
  4209. <w:b/>
  4210. <w:sz w:val="28"/>
  4211. <w:szCs w:val="28"/>
  4212. </w:rPr>
  4213. <w:t></w:t>
  4214. </w:r>
  4215. <w:r>
  4216. <w:rPr>
  4217. <w:rFonts w:hint="eastAsia"/>
  4218. <w:b/>
  4219. <w:sz w:val="28"/>
  4220. <w:szCs w:val="28"/>
  4221. </w:rPr>
  4222. <w:t xml:space="preserve"/>
  4223. </w:r>
  4224. <w:r>
  4225. <w:rPr>
  4226. <w:rFonts w:hint="eastAsia"/>
  4227. <w:b/>
  4228. <w:sz w:val="28"/>
  4229. <w:szCs w:val="28"/>
  4230. </w:rPr>
  4231. <w:t></w:t>
  4232. </w:r>
  4233. </w:p>
  4234. <w:p w:rsidR="00F06332" w:rsidRDefault="00F06332">
  4235. <w:pPr>
  4236. <w:spacing w:line="260" w:lineRule="exact"/>
  4237. <w:rPr>
  4238. <w:rFonts w:hint="eastAsia"/>
  4239. <w:sz w:val="32"/>
  4240. </w:rPr>
  4241. </w:pPr>
  4242. </w:p>
  4243. <w:tbl>
  4244. <w:tblPr>
  4245. <w:tblW w:type="auto" w:w="0"/>
  4246. <w:tblInd w:type="dxa" w:w="108"/>
  4247. <w:tblBorders>
  4248. <w:top w:color="auto" w:space="0" w:sz="4" w:val="single"/>
  4249. <w:left w:color="auto" w:space="0" w:sz="4" w:val="single"/>
  4250. <w:bottom w:color="auto" w:space="0" w:sz="4" w:val="single"/>
  4251. <w:right w:color="auto" w:space="0" w:sz="4" w:val="single"/>
  4252. <w:insideH w:color="auto" w:space="0" w:sz="4" w:val="single"/>
  4253. <w:insideV w:color="auto" w:space="0" w:sz="4" w:val="single"/>
  4254. </w:tblBorders>
  4255. <w:tblLayout w:type="fixed"/>
  4256. <w:tblLook w:firstColumn="0" w:firstRow="0" w:lastColumn="0" w:lastRow="0" w:noHBand="0" w:noVBand="0" w:val="0000"/>
  4257. </w:tblPr>
  4258. <w:tblGrid>
  4259. <w:gridCol w:w="2163"/>
  4260. <w:gridCol w:w="2163"/>
  4261. <w:gridCol w:w="2163"/>
  4262. <w:gridCol w:w="2167"/>
  4263. </w:tblGrid>
  4264. <w:tr w:rsidR="00F06332">
  4265. <w:trPr>
  4266. <w:trHeight w:val="772"/>
  4267. </w:trPr>
  4268. <w:tc>
  4269. <w:tcPr>
  4270. <w:tcW w:type="dxa" w:w="2163"/>
  4271. <w:vAlign w:val="center"/>
  4272. </w:tcPr>
  4273. <w:p w:rsidR="00F06332" w:rsidRDefault="00F06332">
  4274. <w:pPr>
  4275. <w:jc w:val="center"/>
  4276. <w:rPr>
  4277. <w:rFonts w:hint="eastAsia"/>
  4278. </w:rPr>
  4279. </w:pPr>
  4280. <w:r>
  4281. <w:rPr>
  4282. <w:rFonts w:hint="eastAsia"/>
  4283. </w:rPr>
  4284. <w:t>开课单位</w:t>
  4285. </w:r>
  4286. </w:p>
  4287. <w:p w:rsidR="00F06332" w:rsidRDefault="00F06332">
  4288. <w:pPr>
  4289. <w:ind w:hanging="17" w:hangingChars="8" w:leftChars="-8"/>
  4290. <w:jc w:val="center"/>
  4291. <w:rPr>
  4292. <w:rFonts w:hint="eastAsia"/>
  4293. </w:rPr>
  4294. </w:pPr>
  4295. <w:r>
  4296. <w:rPr>
  4297. <w:rFonts w:hint="eastAsia"/>
  4298. </w:rPr>
  4299. <w:t>负责人签、章</w:t>
  4300. </w:r>
  4301. </w:p>
  4302. </w:tc>
  4303. <w:tc>
  4304. <w:tcPr>
  4305. <w:tcW w:type="dxa" w:w="2163"/>
  4306. <w:vAlign w:val="center"/>
  4307. </w:tcPr>
  4308. <w:p w:rsidR="00F06332" w:rsidRDefault="00F06332">
  4309. <w:pPr>
  4310. <w:jc w:val="center"/>
  4311. <w:rPr>
  4312. <w:rFonts w:hint="eastAsia"/>
  4313. </w:rPr>
  4314. </w:pPr>
  4315. </w:p>
  4316. </w:tc>
  4317. <w:tc>
  4318. <w:tcPr>
  4319. <w:tcW w:type="dxa" w:w="2163"/>
  4320. <w:vAlign w:val="center"/>
  4321. </w:tcPr>
  4322. <w:p w:rsidR="00F06332" w:rsidRDefault="00F06332">
  4323. <w:pPr>
  4324. <w:jc w:val="center"/>
  4325. <w:rPr>
  4326. <w:rFonts w:hint="eastAsia"/>
  4327. </w:rPr>
  4328. </w:pPr>
  4329. <w:r>
  4330. <w:rPr>
  4331. <w:rFonts w:hint="eastAsia"/>
  4332. </w:rPr>
  4333. <w:t>系(教研室)</w:t>
  4334. </w:r>
  4335. </w:p>
  4336. <w:p w:rsidR="00F06332" w:rsidRDefault="00F06332">
  4337. <w:pPr>
  4338. <w:jc w:val="center"/>
  4339. <w:rPr>
  4340. <w:rFonts w:hint="eastAsia"/>
  4341. </w:rPr>
  4342. </w:pPr>
  4343. <w:r>
  4344. <w:rPr>
  4345. <w:rFonts w:hint="eastAsia"/>
  4346. </w:rPr>
  4347. <w:t>主任签名</w:t>
  4348. </w:r>
  4349. </w:p>
  4350. </w:tc>
  4351. <w:tc>
  4352. <w:tcPr>
  4353. <w:tcW w:type="dxa" w:w="2167"/>
  4354. <w:vAlign w:val="center"/>
  4355. </w:tcPr>
  4356. <w:p w:rsidR="00F06332" w:rsidRDefault="00F06332">
  4357. <w:pPr>
  4358. <w:jc w:val="center"/>
  4359. <w:rPr>
  4360. <w:rFonts w:hint="eastAsia"/>
  4361. </w:rPr>
  4362. </w:pPr>
  4363. </w:p>
  4364. </w:tc>
  4365. </w:tr>
  4366. <w:tr w:rsidR="00F06332">
  4367. <w:trPr>
  4368. <w:trHeight w:val="624"/>
  4369. </w:trPr>
  4370. <w:tc>
  4371. <w:tcPr>
  4372. <w:tcW w:type="dxa" w:w="2163"/>
  4373. <w:vAlign w:val="center"/>
  4374. </w:tcPr>
  4375. <w:p w:rsidR="00F06332" w:rsidRDefault="00F06332">
  4376. <w:pPr>
  4377. <w:jc w:val="center"/>
  4378. <w:rPr>
  4379. <w:rFonts w:hint="eastAsia"/>
  4380. </w:rPr>
  4381. </w:pPr>
  4382. <w:r>
  4383. <w:rPr>
  4384. <w:rFonts w:hint="eastAsia"/>
  4385. </w:rPr>
  4386. <w:t>命题教师签名</w:t>
  4387. </w:r>
  4388. </w:p>
  4389. </w:tc>
  4390. <w:tc>
  4391. <w:tcPr>
  4392. <w:tcW w:type="dxa" w:w="2163"/>
  4393. <w:vAlign w:val="center"/>
  4394. </w:tcPr>
  4395. <w:p w:rsidR="00F06332" w:rsidRDefault="00F06332">
  4396. <w:pPr>
  4397. <w:jc w:val="center"/>
  4398. <w:rPr>
  4399. <w:rFonts w:hint="eastAsia"/>
  4400. </w:rPr>
  4401. </w:pPr>
  4402. </w:p>
  4403. </w:tc>
  4404. <w:tc>
  4405. <w:tcPr>
  4406. <w:tcW w:type="dxa" w:w="2163"/>
  4407. <w:vAlign w:val="center"/>
  4408. </w:tcPr>
  4409. <w:p w:rsidR="00F06332" w:rsidRDefault="00F06332">
  4410. <w:pPr>
  4411. <w:jc w:val="center"/>
  4412. <w:rPr>
  4413. <w:rFonts w:hint="eastAsia"/>
  4414. </w:rPr>
  4415. </w:pPr>
  4416. <w:r>
  4417. <w:rPr>
  4418. <w:rFonts w:hint="eastAsia"/>
  4419. </w:rPr>
  4420. <w:t>教务员交题签名</w:t>
  4421. </w:r>
  4422. </w:p>
  4423. </w:tc>
  4424. <w:tc>
  4425. <w:tcPr>
  4426. <w:tcW w:type="dxa" w:w="2167"/>
  4427. <w:vAlign w:val="center"/>
  4428. </w:tcPr>
  4429. <w:p w:rsidR="00F06332" w:rsidRDefault="00F06332">
  4430. <w:pPr>
  4431. <w:jc w:val="center"/>
  4432. <w:rPr>
  4433. <w:rFonts w:hint="eastAsia"/>
  4434. </w:rPr>
  4435. </w:pPr>
  4436. </w:p>
  4437. </w:tc>
  4438. </w:tr>
  4439. <w:tr w:rsidR="00F06332">
  4440. <w:trPr>
  4441. <w:trHeight w:val="1545"/>
  4442. </w:trPr>
  4443. <w:tc>
  4444. <w:tcPr>
  4445. <w:tcW w:type="dxa" w:w="2163"/>
  4446. <w:vAlign w:val="center"/>
  4447. </w:tcPr>
  4448. <w:p w:rsidR="00F06332" w:rsidRDefault="00F06332">
  4449. <w:pPr>
  4450. <w:jc w:val="center"/>
  4451. <w:rPr>
  4452. <w:rFonts w:hint="eastAsia"/>
  4453. </w:rPr>
  4454. </w:pPr>
  4455. <w:r>
  4456. <w:rPr>
  4457. <w:rFonts w:hint="eastAsia"/>
  4458. </w:rPr>
  4459. <w:t></w:t>
  4460. </w:r>
  4461. <w:r>
  4462. <w:rPr>
  4463. <w:rFonts w:hint="eastAsia"/>
  4464. </w:rPr>
  4465. <w:t xml:space="preserve"/>
  4466. </w:r>
  4467. <w:r>
  4468. <w:rPr>
  4469. <w:rFonts w:hint="eastAsia"/>
  4470. </w:rPr>
  4471. <w:t></w:t>
  4472. </w:r>
  4473. </w:p>
  4474. </w:tc>
  4475. <w:tc>
  4476. <w:tcPr>
  4477. <w:tcW w:type="dxa" w:w="6493"/>
  4478. <w:gridSpan w:val="3"/>
  4479. </w:tcPr>
  4480. <w:p w:rsidR="00F06332" w:rsidRDefault="00F06332">
  4481. <w:pPr>
  4482. <w:jc w:val="left"/>
  4483. <w:rPr>
  4484. <w:rFonts w:hint="eastAsia"/>
  4485. </w:rPr>
  4486. </w:pPr>
  4487. </w:p>
  4488. </w:tc>
  4489. </w:tr>
  4490. </w:tbl>
  4491. <w:p w:rsidR="00F06332" w:rsidRDefault="00F06332">
  4492. <w:pPr>
  4493. <w:spacing w:line="360" w:lineRule="exact"/>
  4494. <w:jc w:val="left"/>
  4495. <w:rPr>
  4496. <w:rFonts w:hint="eastAsia"/>
  4497. <w:sz w:val="24"/>
  4498. </w:rPr>
  4499. </w:pPr>
  4500. </w:p>
  4501. <w:p w:rsidR="00F06332" w:rsidRDefault="00F06332">
  4502. <w:pPr>
  4503. <w:spacing w:line="360" w:lineRule="exact"/>
  4504. <w:jc w:val="left"/>
  4505. <w:rPr>
  4506. <w:rFonts w:hint="eastAsia"/>
  4507. <w:szCs w:val="21"/>
  4508. </w:rPr>
  4509. </w:pPr>
  4510. <w:r>
  4511. <w:rPr>
  4512. <w:rFonts w:hint="eastAsia"/>
  4513. <w:szCs w:val="21"/>
  4514. </w:rPr>
  4515. <w:lastRenderedPageBreak/>
  4516. <w:t>试卷编写计划相关要求:</w:t>
  4517. </w:r>
  4518. </w:p>
  4519. <w:p w:rsidR="00F06332" w:rsidRDefault="00F06332">
  4520. <w:pPr>
  4521. <w:numPr>
  4522. <w:ilvl w:val="0"/>
  4523. <w:numId w:val="1"/>
  4524. </w:numPr>
  4525. <w:spacing w:line="360" w:lineRule="exact"/>
  4526. <w:jc w:val="left"/>
  4527. <w:rPr>
  4528. <w:rFonts w:hint="eastAsia"/>
  4529. <w:szCs w:val="21"/>
  4530. </w:rPr>
  4531. </w:pPr>
  4532. <w:r>
  4533. <w:rPr>
  4534. <w:rFonts w:hint="eastAsia"/>
  4535. <w:szCs w:val="21"/>
  4536. </w:rPr>
  4537. <w:t>本表一式二份,一份交考试管理中心,一份院系备查。</w:t>
  4538. </w:r>
  4539. </w:p>
  4540. <w:p w:rsidR="00F06332" w:rsidRDefault="00F06332">
  4541. <w:pPr>
  4542. <w:numPr>
  4543. <w:ilvl w:val="0"/>
  4544. <w:numId w:val="1"/>
  4545. </w:numPr>
  4546. <w:spacing w:line="360" w:lineRule="exact"/>
  4547. <w:jc w:val="left"/>
  4548. <w:rPr>
  4549. <w:rFonts w:hint="eastAsia"/>
  4550. <w:szCs w:val="21"/>
  4551. </w:rPr>
  4552. </w:pPr>
  4553. <w:r>
  4554. <w:rPr>
  4555. <w:rFonts w:hint="eastAsia"/>
  4556. <w:szCs w:val="21"/>
  4557. </w:rPr>
  4558. <w:t>本表上交时请将试题</w:t>
  4559. </w:r>
  4560. <w:r w:rsidR="00B20A57">
  4561. <w:rPr>
  4562. <w:rFonts w:hint="eastAsia"/>
  4563. <w:szCs w:val="21"/>
  4564. </w:rPr>
  4565. <w:t></w:t>
  4566. </w:r>
  4567. <w:r>
  4568. <w:rPr>
  4569. <w:rFonts w:hint="eastAsia"/>
  4570. <w:szCs w:val="21"/>
  4571. </w:rPr>
  4572. <w:t>标准答案</w:t>
  4573. </w:r>
  4574. <w:r w:rsidR="00B20A57">
  4575. <w:rPr>
  4576. <w:rFonts w:hint="eastAsia"/>
  4577. <w:szCs w:val="21"/>
  4578. </w:rPr>
  4579. <w:t></w:t>
  4580. </w:r>
  4581. <w:r w:rsidR="008860DB">
  4582. <w:rPr>
  4583. <w:rFonts w:hint="eastAsia"/>
  4584. <w:szCs w:val="21"/>
  4585. </w:rPr>
  4586. <w:t>命题</w:t>
  4587. </w:r>
  4588. <w:r w:rsidR="00B20A57">
  4589. <w:rPr>
  4590. <w:rFonts w:hint="eastAsia"/>
  4591. <w:szCs w:val="21"/>
  4592. </w:rPr>
  4593. <w:t>质量审核表</w:t>
  4594. </w:r>
  4595. <w:r>
  4596. <w:rPr>
  4597. <w:rFonts w:hint="eastAsia"/>
  4598. <w:szCs w:val="21"/>
  4599. </w:rPr>
  4600. <w:t>一并交上。</w:t>
  4601. </w:r>
  4602. </w:p>
  4603. <w:p w:rsidR="00F06332" w:rsidRDefault="00F06332">
  4604. <w:pPr>
  4605. <w:numPr>
  4606. <w:ilvl w:val="0"/>
  4607. <w:numId w:val="1"/>
  4608. </w:numPr>
  4609. <w:spacing w:line="360" w:lineRule="exact"/>
  4610. <w:jc w:val="left"/>
  4611. <w:rPr>
  4612. <w:rFonts w:hint="eastAsia"/>
  4613. <w:szCs w:val="21"/>
  4614. </w:rPr>
  4615. </w:pPr>
  4616. <w:r>
  4617. <w:rPr>
  4618. <w:rFonts w:hint="eastAsia"/>
  4619. <w:szCs w:val="21"/>
  4620. </w:rPr>
  4621. <w:t>上交本表及试题和标准答案时无相关人员签名,考试管理中心概不承印试卷。</w:t>
  4622. </w:r>
  4623. </w:p>
  4624. <w:p w:rsidR="00F06332" w:rsidRDefault="00F06332">
  4625. <w:pPr>
  4626. <w:numPr>
  4627. <w:ilvl w:val="0"/>
  4628. <w:numId w:val="1"/>
  4629. </w:numPr>
  4630. <w:spacing w:line="360" w:lineRule="exact"/>
  4631. <w:jc w:val="left"/>
  4632. <w:rPr>
  4633. <w:rFonts w:hint="eastAsia"/>
  4634. <w:szCs w:val="21"/>
  4635. </w:rPr>
  4636. </w:pPr>
  4637. <w:r>
  4638. <w:rPr>
  4639. <w:rFonts w:hint="eastAsia"/>
  4640. <w:szCs w:val="21"/>
  4641. </w:rPr>
  4642. <w:t>本表适用于</w:t>
  4643. </w:r>
  4644. <w:r w:rsidR="00844BA3">
  4645. <w:rPr>
  4646. <w:rFonts w:hint="eastAsia"/>
  4647. <w:szCs w:val="21"/>
  4648. </w:rPr>
  4649. <w:t>计算机科学与技术专业</w:t>
  4650. </w:r>
  4651. <w:r>
  4652. <w:rPr>
  4653. <w:rFonts w:hint="eastAsia"/>
  4654. <w:szCs w:val="21"/>
  4655. </w:rPr>
  4656. <w:t>考核课程及试题库的命题。</w:t>
  4657. </w:r>
  4658. </w:p>
  4659. <w:sectPr w:rsidR="00F06332">
  4660. <w:pgSz w:h="16838" w:w="11906"/>
  4661. <w:pgMar w:bottom="1440" w:footer="992" w:gutter="0" w:header="851" w:left="1800" w:right="1466" w:top="1440"/>
  4662. <w:cols w:space="720"/>
  4663. <w:docGrid w:linePitch="312" w:type="lines"/>
  4664. </w:sectPr>
  4665. </w:body>
  4666. </w:document>
  4667. </pkg:xmlData>
  4668. </pkg:part>
  4669. <pkg:part pkg:contentType="application/vnd.openxmlformats-officedocument.wordprocessingml.footnotes+xml" pkg:name="/word/footnotes.xml">
  4670. <pkg:xmlData>
  4671. <w:footnotes mc:Ignorable="w14 w15 wp14" xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:w10="urn:schemas-microsoft-com:office:word" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml" xmlns:wne="http://schemas.microsoft.com/office/word/2006/wordml" xmlns:wp="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing" xmlns:wp14="http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing" xmlns:wpc="http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas" xmlns:wpg="http://schemas.microsoft.com/office/word/2010/wordprocessingGroup" xmlns:wpi="http://schemas.microsoft.com/office/word/2010/wordprocessingInk" xmlns:wps="http://schemas.microsoft.com/office/word/2010/wordprocessingShape">
  4672. <w:footnote w:id="-1" w:type="separator">
  4673. <w:p w:rsidP="00940991" w:rsidR="00864C3B" w:rsidRDefault="00864C3B">
  4674. <w:r>
  4675. <w:separator/>
  4676. </w:r>
  4677. </w:p>
  4678. </w:footnote>
  4679. <w:footnote w:id="0" w:type="continuationSeparator">
  4680. <w:p w:rsidP="00940991" w:rsidR="00864C3B" w:rsidRDefault="00864C3B">
  4681. <w:r>
  4682. <w:continuationSeparator/>
  4683. </w:r>
  4684. </w:p>
  4685. </w:footnote>
  4686. </w:footnotes>
  4687. </pkg:xmlData>
  4688. </pkg:part>
  4689. <pkg:part pkg:contentType="application/vnd.openxmlformats-officedocument.wordprocessingml.endnotes+xml" pkg:name="/word/endnotes.xml">
  4690. <pkg:xmlData>
  4691. <w:endnotes mc:Ignorable="w14 w15 wp14" xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:w10="urn:schemas-microsoft-com:office:word" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml" xmlns:wne="http://schemas.microsoft.com/office/word/2006/wordml" xmlns:wp="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing" xmlns:wp14="http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing" xmlns:wpc="http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas" xmlns:wpg="http://schemas.microsoft.com/office/word/2010/wordprocessingGroup" xmlns:wpi="http://schemas.microsoft.com/office/word/2010/wordprocessingInk" xmlns:wps="http://schemas.microsoft.com/office/word/2010/wordprocessingShape">
  4692. <w:endnote w:id="-1" w:type="separator">
  4693. <w:p w:rsidP="00940991" w:rsidR="00864C3B" w:rsidRDefault="00864C3B">
  4694. <w:r>
  4695. <w:separator/>
  4696. </w:r>
  4697. </w:p>
  4698. </w:endnote>
  4699. <w:endnote w:id="0" w:type="continuationSeparator">
  4700. <w:p w:rsidP="00940991" w:rsidR="00864C3B" w:rsidRDefault="00864C3B">
  4701. <w:r>
  4702. <w:continuationSeparator/>
  4703. </w:r>
  4704. </w:p>
  4705. </w:endnote>
  4706. </w:endnotes>
  4707. </pkg:xmlData>
  4708. </pkg:part>
  4709. <pkg:part pkg:contentType="application/vnd.openxmlformats-officedocument.theme+xml" pkg:name="/word/theme/theme1.xml">
  4710. <pkg:xmlData>
  4711. <a:theme name="Office 主题" xmlns:a="http://schemas.openxmlformats.org/drawingml/2006/main">
  4712. <a:themeElements>
  4713. <a:clrScheme name="Office">
  4714. <a:dk1>
  4715. <a:sysClr lastClr="000000" val="windowText"/>
  4716. </a:dk1>
  4717. <a:lt1>
  4718. <a:sysClr lastClr="FFFFFF" val="window"/>
  4719. </a:lt1>
  4720. <a:dk2>
  4721. <a:srgbClr val="44546A"/>
  4722. </a:dk2>
  4723. <a:lt2>
  4724. <a:srgbClr val="E7E6E6"/>
  4725. </a:lt2>
  4726. <a:accent1>
  4727. <a:srgbClr val="5B9BD5"/>
  4728. </a:accent1>
  4729. <a:accent2>
  4730. <a:srgbClr val="ED7D31"/>
  4731. </a:accent2>
  4732. <a:accent3>
  4733. <a:srgbClr val="A5A5A5"/>
  4734. </a:accent3>
  4735. <a:accent4>
  4736. <a:srgbClr val="FFC000"/>
  4737. </a:accent4>
  4738. <a:accent5>
  4739. <a:srgbClr val="4472C4"/>
  4740. </a:accent5>
  4741. <a:accent6>
  4742. <a:srgbClr val="70AD47"/>
  4743. </a:accent6>
  4744. <a:hlink>
  4745. <a:srgbClr val="0563C1"/>
  4746. </a:hlink>
  4747. <a:folHlink>
  4748. <a:srgbClr val="954F72"/>
  4749. </a:folHlink>
  4750. </a:clrScheme>
  4751. <a:fontScheme name="Office">
  4752. <a:majorFont>
  4753. <a:latin panose="020F0302020204030204" typeface="Calibri Light"/>
  4754. <a:ea typeface=""/>
  4755. <a:cs typeface=""/>
  4756. <a:font script="Jpan" typeface="MS ゴシック"/>
  4757. <a:font script="Hang" typeface="맑은 고딕"/>
  4758. <a:font script="Hans" typeface="宋体"/>
  4759. <a:font script="Hant" typeface="新細明體"/>
  4760. <a:font script="Arab" typeface="Times New Roman"/>
  4761. <a:font script="Hebr" typeface="Times New Roman"/>
  4762. <a:font script="Thai" typeface="Angsana New"/>
  4763. <a:font script="Ethi" typeface="Nyala"/>
  4764. <a:font script="Beng" typeface="Vrinda"/>
  4765. <a:font script="Gujr" typeface="Shruti"/>
  4766. <a:font script="Khmr" typeface="MoolBoran"/>
  4767. <a:font script="Knda" typeface="Tunga"/>
  4768. <a:font script="Guru" typeface="Raavi"/>
  4769. <a:font script="Cans" typeface="Euphemia"/>
  4770. <a:font script="Cher" typeface="Plantagenet Cherokee"/>
  4771. <a:font script="Yiii" typeface="Microsoft Yi Baiti"/>
  4772. <a:font script="Tibt" typeface="Microsoft Himalaya"/>
  4773. <a:font script="Thaa" typeface="MV Boli"/>
  4774. <a:font script="Deva" typeface="Mangal"/>
  4775. <a:font script="Telu" typeface="Gautami"/>
  4776. <a:font script="Taml" typeface="Latha"/>
  4777. <a:font script="Syrc" typeface="Estrangelo Edessa"/>
  4778. <a:font script="Orya" typeface="Kalinga"/>
  4779. <a:font script="Mlym" typeface="Kartika"/>
  4780. <a:font script="Laoo" typeface="DokChampa"/>
  4781. <a:font script="Sinh" typeface="Iskoola Pota"/>
  4782. <a:font script="Mong" typeface="Mongolian Baiti"/>
  4783. <a:font script="Viet" typeface="Times New Roman"/>
  4784. <a:font script="Uigh" typeface="Microsoft Uighur"/>
  4785. <a:font script="Geor" typeface="Sylfaen"/>
  4786. </a:majorFont>
  4787. <a:minorFont>
  4788. <a:latin panose="020F0502020204030204" typeface="Calibri"/>
  4789. <a:ea typeface=""/>
  4790. <a:cs typeface=""/>
  4791. <a:font script="Jpan" typeface="MS 明朝"/>
  4792. <a:font script="Hang" typeface="맑은 고딕"/>
  4793. <a:font script="Hans" typeface="宋体"/>
  4794. <a:font script="Hant" typeface="新細明體"/>
  4795. <a:font script="Arab" typeface="Arial"/>
  4796. <a:font script="Hebr" typeface="Arial"/>
  4797. <a:font script="Thai" typeface="Cordia New"/>
  4798. <a:font script="Ethi" typeface="Nyala"/>
  4799. <a:font script="Beng" typeface="Vrinda"/>
  4800. <a:font script="Gujr" typeface="Shruti"/>
  4801. <a:font script="Khmr" typeface="DaunPenh"/>
  4802. <a:font script="Knda" typeface="Tunga"/>
  4803. <a:font script="Guru" typeface="Raavi"/>
  4804. <a:font script="Cans" typeface="Euphemia"/>
  4805. <a:font script="Cher" typeface="Plantagenet Cherokee"/>
  4806. <a:font script="Yiii" typeface="Microsoft Yi Baiti"/>
  4807. <a:font script="Tibt" typeface="Microsoft Himalaya"/>
  4808. <a:font script="Thaa" typeface="MV Boli"/>
  4809. <a:font script="Deva" typeface="Mangal"/>
  4810. <a:font script="Telu" typeface="Gautami"/>
  4811. <a:font script="Taml" typeface="Latha"/>
  4812. <a:font script="Syrc" typeface="Estrangelo Edessa"/>
  4813. <a:font script="Orya" typeface="Kalinga"/>
  4814. <a:font script="Mlym" typeface="Kartika"/>
  4815. <a:font script="Laoo" typeface="DokChampa"/>
  4816. <a:font script="Sinh" typeface="Iskoola Pota"/>
  4817. <a:font script="Mong" typeface="Mongolian Baiti"/>
  4818. <a:font script="Viet" typeface="Arial"/>
  4819. <a:font script="Uigh" typeface="Microsoft Uighur"/>
  4820. <a:font script="Geor" typeface="Sylfaen"/>
  4821. </a:minorFont>
  4822. </a:fontScheme>
  4823. <a:fmtScheme name="Office">
  4824. <a:fillStyleLst>
  4825. <a:solidFill>
  4826. <a:schemeClr val="phClr"/>
  4827. </a:solidFill>
  4828. <a:gradFill rotWithShape="1">
  4829. <a:gsLst>
  4830. <a:gs pos="0">
  4831. <a:schemeClr val="phClr">
  4832. <a:lumMod val="110000"/>
  4833. <a:satMod val="105000"/>
  4834. <a:tint val="67000"/>
  4835. </a:schemeClr>
  4836. </a:gs>
  4837. <a:gs pos="50000">
  4838. <a:schemeClr val="phClr">
  4839. <a:lumMod val="105000"/>
  4840. <a:satMod val="103000"/>
  4841. <a:tint val="73000"/>
  4842. </a:schemeClr>
  4843. </a:gs>
  4844. <a:gs pos="100000">
  4845. <a:schemeClr val="phClr">
  4846. <a:lumMod val="105000"/>
  4847. <a:satMod val="109000"/>
  4848. <a:tint val="81000"/>
  4849. </a:schemeClr>
  4850. </a:gs>
  4851. </a:gsLst>
  4852. <a:lin ang="5400000" scaled="0"/>
  4853. </a:gradFill>
  4854. <a:gradFill rotWithShape="1">
  4855. <a:gsLst>
  4856. <a:gs pos="0">
  4857. <a:schemeClr val="phClr">
  4858. <a:satMod val="103000"/>
  4859. <a:lumMod val="102000"/>
  4860. <a:tint val="94000"/>
  4861. </a:schemeClr>
  4862. </a:gs>
  4863. <a:gs pos="50000">
  4864. <a:schemeClr val="phClr">
  4865. <a:satMod val="110000"/>
  4866. <a:lumMod val="100000"/>
  4867. <a:shade val="100000"/>
  4868. </a:schemeClr>
  4869. </a:gs>
  4870. <a:gs pos="100000">
  4871. <a:schemeClr val="phClr">
  4872. <a:lumMod val="99000"/>
  4873. <a:satMod val="120000"/>
  4874. <a:shade val="78000"/>
  4875. </a:schemeClr>
  4876. </a:gs>
  4877. </a:gsLst>
  4878. <a:lin ang="5400000" scaled="0"/>
  4879. </a:gradFill>
  4880. </a:fillStyleLst>
  4881. <a:lnStyleLst>
  4882. <a:ln algn="ctr" cap="flat" cmpd="sng" w="6350">
  4883. <a:solidFill>
  4884. <a:schemeClr val="phClr"/>
  4885. </a:solidFill>
  4886. <a:prstDash val="solid"/>
  4887. <a:miter lim="800000"/>
  4888. </a:ln>
  4889. <a:ln algn="ctr" cap="flat" cmpd="sng" w="12700">
  4890. <a:solidFill>
  4891. <a:schemeClr val="phClr"/>
  4892. </a:solidFill>
  4893. <a:prstDash val="solid"/>
  4894. <a:miter lim="800000"/>
  4895. </a:ln>
  4896. <a:ln algn="ctr" cap="flat" cmpd="sng" w="19050">
  4897. <a:solidFill>
  4898. <a:schemeClr val="phClr"/>
  4899. </a:solidFill>
  4900. <a:prstDash val="solid"/>
  4901. <a:miter lim="800000"/>
  4902. </a:ln>
  4903. </a:lnStyleLst>
  4904. <a:effectStyleLst>
  4905. <a:effectStyle>
  4906. <a:effectLst/>
  4907. </a:effectStyle>
  4908. <a:effectStyle>
  4909. <a:effectLst/>
  4910. </a:effectStyle>
  4911. <a:effectStyle>
  4912. <a:effectLst>
  4913. <a:outerShdw algn="ctr" blurRad="57150" dir="5400000" dist="19050" rotWithShape="0">
  4914. <a:srgbClr val="000000">
  4915. <a:alpha val="63000"/>
  4916. </a:srgbClr>
  4917. </a:outerShdw>
  4918. </a:effectLst>
  4919. </a:effectStyle>
  4920. </a:effectStyleLst>
  4921. <a:bgFillStyleLst>
  4922. <a:solidFill>
  4923. <a:schemeClr val="phClr"/>
  4924. </a:solidFill>
  4925. <a:solidFill>
  4926. <a:schemeClr val="phClr">
  4927. <a:tint val="95000"/>
  4928. <a:satMod val="170000"/>
  4929. </a:schemeClr>
  4930. </a:solidFill>
  4931. <a:gradFill rotWithShape="1">
  4932. <a:gsLst>
  4933. <a:gs pos="0">
  4934. <a:schemeClr val="phClr">
  4935. <a:tint val="93000"/>
  4936. <a:satMod val="150000"/>
  4937. <a:shade val="98000"/>
  4938. <a:lumMod val="102000"/>
  4939. </a:schemeClr>
  4940. </a:gs>
  4941. <a:gs pos="50000">
  4942. <a:schemeClr val="phClr">
  4943. <a:tint val="98000"/>
  4944. <a:satMod val="130000"/>
  4945. <a:shade val="90000"/>
  4946. <a:lumMod val="103000"/>
  4947. </a:schemeClr>
  4948. </a:gs>
  4949. <a:gs pos="100000">
  4950. <a:schemeClr val="phClr">
  4951. <a:shade val="63000"/>
  4952. <a:satMod val="120000"/>
  4953. </a:schemeClr>
  4954. </a:gs>
  4955. </a:gsLst>
  4956. <a:lin ang="5400000" scaled="0"/>
  4957. </a:gradFill>
  4958. </a:bgFillStyleLst>
  4959. </a:fmtScheme>
  4960. </a:themeElements>
  4961. <a:objectDefaults/>
  4962. <a:extraClrSchemeLst/>
  4963. <a:extLst>
  4964. <a:ext uri="{05A4C25C-085E-4340-85A3-A5531E510DB2}">
  4965. <thm15:themeFamily id="{62F939B6-93AF-4DB8-9C6B-D6C7DFDC589F}" name="Office Theme" vid="{4A3C46E8-61CC-4603-A589-7422A47A8E4A}" xmlns:thm15="http://schemas.microsoft.com/office/thememl/2012/main"/>
  4966. </a:ext>
  4967. </a:extLst>
  4968. </a:theme>
  4969. </pkg:xmlData>
  4970. </pkg:part>
  4971. <pkg:part pkg:contentType="application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml" pkg:name="/word/settings.xml">
  4972. <pkg:xmlData>
  4973. <w:settings mc:Ignorable="w14 w15" xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:sl="http://schemas.openxmlformats.org/schemaLibrary/2006/main" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:w10="urn:schemas-microsoft-com:office:word" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml">
  4974. <w:zoom w:percent="100"/>
  4975. <w:bordersDoNotSurroundHeader/>
  4976. <w:bordersDoNotSurroundFooter/>
  4977. <w:stylePaneFormatFilter w:allStyles="1" w:alternateStyleNames="0" w:clearFormatting="1" w:customStyles="0" w:directFormattingOnNumbering="1" w:directFormattingOnParagraphs="1" w:directFormattingOnRuns="1" w:directFormattingOnTables="1" w:headingStyles="0" w:latentStyles="0" w:numberingStyles="0" w:stylesInUse="0" w:tableStyles="0" w:top3HeadingStyles="1" w:val="3F01" w:visibleStyles="0"/>
  4978. <w:doNotTrackMoves/>
  4979. <w:defaultTabStop w:val="420"/>
  4980. <w:drawingGridHorizontalSpacing w:val="2"/>
  4981. <w:drawingGridVerticalSpacing w:val="3"/>
  4982. <w:displayHorizontalDrawingGridEvery w:val="0"/>
  4983. <w:displayVerticalDrawingGridEvery w:val="2"/>
  4984. <w:characterSpacingControl w:val="compressPunctuation"/>
  4985. <w:doNotValidateAgainstSchema/>
  4986. <w:doNotDemarcateInvalidXml/>
  4987. <w:hdrShapeDefaults>
  4988. <o:shapedefaults fillcolor="#9cbee0" spidmax="2049" strokecolor="#739cc3" v:ext="edit">
  4989. <v:fill color="#9cbee0" color2="#bbd5f0" type="gradient">
  4990. <o:fill type="gradientUnscaled" v:ext="view"/>
  4991. </v:fill>
  4992. <v:stroke color="#739cc3" weight="1.25pt"/>
  4993. </o:shapedefaults>
  4994. </w:hdrShapeDefaults>
  4995. <w:footnotePr>
  4996. <w:footnote w:id="-1"/>
  4997. <w:footnote w:id="0"/>
  4998. </w:footnotePr>
  4999. <w:endnotePr>
  5000. <w:endnote w:id="-1"/>
  5001. <w:endnote w:id="0"/>
  5002. </w:endnotePr>
  5003. <w:compat>
  5004. <w:spaceForUL/>
  5005. <w:balanceSingleByteDoubleByteWidth/>
  5006. <w:doNotLeaveBackslashAlone/>
  5007. <w:ulTrailSpace/>
  5008. <w:doNotExpandShiftReturn/>
  5009. <w:adjustLineHeightInTable/>
  5010. <w:doNotBreakWrappedTables/>
  5011. <w:doNotWrapTextWithPunct/>
  5012. <w:doNotUseEastAsianBreakRules/>
  5013. <w:growAutofit/>
  5014. <w:useFELayout/>
  5015. <w:useNormalStyleForList/>
  5016. <w:doNotUseIndentAsNumberingTabStop/>
  5017. <w:useAltKinsokuLineBreakRules/>
  5018. <w:allowSpaceOfSameStyleInTable/>
  5019. <w:doNotSuppressIndentation/>
  5020. <w:doNotAutofitConstrainedTables/>
  5021. <w:autofitToFirstFixedWidthCell/>
  5022. <w:displayHangulFixedWidth/>
  5023. <w:splitPgBreakAndParaMark/>
  5024. <w:doNotVertAlignCellWithSp/>
  5025. <w:doNotBreakConstrainedForcedTable/>
  5026. <w:doNotVertAlignInTxbx/>
  5027. <w:useAnsiKerningPairs/>
  5028. <w:cachedColBalance/>
  5029. <w:compatSetting w:name="compatibilityMode" w:uri="http://schemas.microsoft.com/office/word" w:val="11"/>
  5030. </w:compat>
  5031. <w:rsids>
  5032. <w:rsidRoot w:val="00172A27"/>
  5033. <w:rsid w:val="00005691"/>
  5034. <w:rsid w:val="000234C0"/>
  5035. <w:rsid w:val="000355A9"/>
  5036. <w:rsid w:val="00065BE5"/>
  5037. <w:rsid w:val="000734DD"/>
  5038. <w:rsid w:val="000825F1"/>
  5039. <w:rsid w:val="000D6C4E"/>
  5040. <w:rsid w:val="001159E5"/>
  5041. <w:rsid w:val="00144386"/>
  5042. <w:rsid w:val="00151A2B"/>
  5043. <w:rsid w:val="00172A57"/>
  5044. <w:rsid w:val="00197347"/>
  5045. <w:rsid w:val="001A4089"/>
  5046. <w:rsid w:val="001B22AF"/>
  5047. <w:rsid w:val="001D6DA6"/>
  5048. <w:rsid w:val="001E4B35"/>
  5049. <w:rsid w:val="001F0C78"/>
  5050. <w:rsid w:val="002211E5"/>
  5051. <w:rsid w:val="00224387"/>
  5052. <w:rsid w:val="002644EC"/>
  5053. <w:rsid w:val="00266745"/>
  5054. <w:rsid w:val="002738DE"/>
  5055. <w:rsid w:val="00276E8A"/>
  5056. <w:rsid w:val="0029175E"/>
  5057. <w:rsid w:val="00294118"/>
  5058. <w:rsid w:val="002E1837"/>
  5059. <w:rsid w:val="002F0B0D"/>
  5060. <w:rsid w:val="0033597C"/>
  5061. <w:rsid w:val="00357D33"/>
  5062. <w:rsid w:val="003608B6"/>
  5063. <w:rsid w:val="00364E03"/>
  5064. <w:rsid w:val="0037276F"/>
  5065. <w:rsid w:val="0038072F"/>
  5066. <w:rsid w:val="003F0ADF"/>
  5067. <w:rsid w:val="003F5851"/>
  5068. <w:rsid w:val="00403472"/>
  5069. <w:rsid w:val="00444A2F"/>
  5070. <w:rsid w:val="0045352E"/>
  5071. <w:rsid w:val="00466C01"/>
  5072. <w:rsid w:val="00477E4D"/>
  5073. <w:rsid w:val="0049045B"/>
  5074. <w:rsid w:val="004B35D2"/>
  5075. <w:rsid w:val="004F7557"/>
  5076. <w:rsid w:val="00511072"/>
  5077. <w:rsid w:val="005527FC"/>
  5078. <w:rsid w:val="00565ADB"/>
  5079. <w:rsid w:val="005847BB"/>
  5080. <w:rsid w:val="00585556"/>
  5081. <w:rsid w:val="005D5E20"/>
  5082. <w:rsid w:val="00606D37"/>
  5083. <w:rsid w:val="006217F8"/>
  5084. <w:rsid w:val="006332E9"/>
  5085. <w:rsid w:val="00637555"/>
  5086. <w:rsid w:val="0065031C"/>
  5087. <w:rsid w:val="00656DB1"/>
  5088. <w:rsid w:val="00695F6F"/>
  5089. <w:rsid w:val="0071365C"/>
  5090. <w:rsid w:val="00715B94"/>
  5091. <w:rsid w:val="00773D28"/>
  5092. <w:rsid w:val="007B0D40"/>
  5093. <w:rsid w:val="007C39C2"/>
  5094. <w:rsid w:val="007D0FEE"/>
  5095. <w:rsid w:val="007D1B3C"/>
  5096. <w:rsid w:val="0080788E"/>
  5097. <w:rsid w:val="00830DD1"/>
  5098. <w:rsid w:val="00844BA3"/>
  5099. <w:rsid w:val="00854626"/>
  5100. <w:rsid w:val="00860BE6"/>
  5101. <w:rsid w:val="00864C3B"/>
  5102. <w:rsid w:val="008656FC"/>
  5103. <w:rsid w:val="00870649"/>
  5104. <w:rsid w:val="0087657C"/>
  5105. <w:rsid w:val="008860DB"/>
  5106. <w:rsid w:val="00893BD8"/>
  5107. <w:rsid w:val="008D3671"/>
  5108. <w:rsid w:val="008F53D4"/>
  5109. <w:rsid w:val="0091215C"/>
  5110. <w:rsid w:val="00916962"/>
  5111. <w:rsid w:val="009172EF"/>
  5112. <w:rsid w:val="00921CBB"/>
  5113. <w:rsid w:val="00940991"/>
  5114. <w:rsid w:val="009719C9"/>
  5115. <w:rsid w:val="0098486D"/>
  5116. <w:rsid w:val="009E2274"/>
  5117. <w:rsid w:val="00A22DCE"/>
  5118. <w:rsid w:val="00A56312"/>
  5119. <w:rsid w:val="00A748A4"/>
  5120. <w:rsid w:val="00A9230F"/>
  5121. <w:rsid w:val="00B20A57"/>
  5122. <w:rsid w:val="00B37F57"/>
  5123. <w:rsid w:val="00B51253"/>
  5124. <w:rsid w:val="00B5142C"/>
  5125. <w:rsid w:val="00B6152F"/>
  5126. <w:rsid w:val="00B651F8"/>
  5127. <w:rsid w:val="00B73EFE"/>
  5128. <w:rsid w:val="00B82B7C"/>
  5129. <w:rsid w:val="00BD4CF1"/>
  5130. <w:rsid w:val="00BE26E2"/>
  5131. <w:rsid w:val="00BF298B"/>
  5132. <w:rsid w:val="00C23B01"/>
  5133. <w:rsid w:val="00C30083"/>
  5134. <w:rsid w:val="00C55857"/>
  5135. <w:rsid w:val="00C70E6B"/>
  5136. <w:rsid w:val="00CE17DA"/>
  5137. <w:rsid w:val="00CE25B6"/>
  5138. <w:rsid w:val="00CE55A0"/>
  5139. <w:rsid w:val="00CF72A7"/>
  5140. <w:rsid w:val="00D012E5"/>
  5141. <w:rsid w:val="00D061B1"/>
  5142. <w:rsid w:val="00D11A8C"/>
  5143. <w:rsid w:val="00D23BD5"/>
  5144. <w:rsid w:val="00D2673F"/>
  5145. <w:rsid w:val="00D627B2"/>
  5146. <w:rsid w:val="00D91214"/>
  5147. <w:rsid w:val="00D97B17"/>
  5148. <w:rsid w:val="00DA3FE7"/>
  5149. <w:rsid w:val="00DE1138"/>
  5150. <w:rsid w:val="00DF4A86"/>
  5151. <w:rsid w:val="00E14668"/>
  5152. <w:rsid w:val="00E217C0"/>
  5153. <w:rsid w:val="00E30A03"/>
  5154. <w:rsid w:val="00E75E7B"/>
  5155. <w:rsid w:val="00ED390B"/>
  5156. <w:rsid w:val="00EF25A1"/>
  5157. <w:rsid w:val="00EF715E"/>
  5158. <w:rsid w:val="00F06332"/>
  5159. <w:rsid w:val="00F451CB"/>
  5160. <w:rsid w:val="00F46E9F"/>
  5161. <w:rsid w:val="00F744EA"/>
  5162. <w:rsid w:val="00F92355"/>
  5163. <w:rsid w:val="00FA0F5C"/>
  5164. <w:rsid w:val="00FA1ED5"/>
  5165. <w:rsid w:val="00FC7FC4"/>
  5166. <w:rsid w:val="00FD1A4E"/>
  5167. <w:rsid w:val="00FF18AE"/>
  5168. <w:rsid w:val="00FF29DA"/>
  5169. </w:rsids>
  5170. <m:mathPr>
  5171. <m:mathFont m:val="Cambria Math"/>
  5172. <m:brkBin m:val="before"/>
  5173. <m:brkBinSub m:val="--"/>
  5174. <m:smallFrac m:val="0"/>
  5175. <m:dispDef/>
  5176. <m:lMargin m:val="0"/>
  5177. <m:rMargin m:val="0"/>
  5178. <m:defJc m:val="centerGroup"/>
  5179. <m:wrapIndent m:val="1440"/>
  5180. <m:intLim m:val="subSup"/>
  5181. <m:naryLim m:val="undOvr"/>
  5182. </m:mathPr>
  5183. <w:themeFontLang w:eastAsia="zh-CN" w:val="en-US"/>
  5184. <w:clrSchemeMapping w:accent1="accent1" w:accent2="accent2" w:accent3="accent3" w:accent4="accent4" w:accent5="accent5" w:accent6="accent6" w:bg1="light1" w:bg2="light2" w:followedHyperlink="followedHyperlink" w:hyperlink="hyperlink" w:t1="dark1" w:t2="dark2"/>
  5185. <w:doNotIncludeSubdocsInStats/>
  5186. <w:shapeDefaults>
  5187. <o:shapedefaults fillcolor="#9cbee0" spidmax="2049" strokecolor="#739cc3" v:ext="edit">
  5188. <v:fill color="#9cbee0" color2="#bbd5f0" type="gradient">
  5189. <o:fill type="gradientUnscaled" v:ext="view"/>
  5190. </v:fill>
  5191. <v:stroke color="#739cc3" weight="1.25pt"/>
  5192. </o:shapedefaults>
  5193. <o:shapelayout v:ext="edit">
  5194. <o:idmap data="1" v:ext="edit"/>
  5195. </o:shapelayout>
  5196. </w:shapeDefaults>
  5197. <w:decimalSymbol w:val="."/>
  5198. <w:listSeparator w:val=","/>
  5199. <w15:chartTrackingRefBased/>
  5200. <w15:docId w15:val="{55878739-1166-40FF-9249-2D8CBAB87E36}"/>
  5201. </w:settings>
  5202. </pkg:xmlData>
  5203. </pkg:part>
  5204. <pkg:part pkg:contentType="application/vnd.openxmlformats-officedocument.wordprocessingml.webSettings+xml" pkg:name="/word/webSettings.xml">
  5205. <pkg:xmlData>
  5206. <w:webSettings mc:Ignorable="w14 w15" 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">
  5207. <w:encoding w:val="x-cp20936"/>
  5208. <w:optimizeForBrowser/>
  5209. <w:allowPNG/>
  5210. </w:webSettings>
  5211. </pkg:xmlData>
  5212. </pkg:part>
  5213. <pkg:part pkg:contentType="application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml" pkg:name="/word/styles.xml">
  5214. <pkg:xmlData>
  5215. <w:styles mc:Ignorable="w14 w15" 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">
  5216. <w:docDefaults>
  5217. <w:rPrDefault>
  5218. <w:rPr>
  5219. <w:rFonts w:ascii="Times New Roman" w:cs="Times New Roman" w:eastAsia="宋体" w:hAnsi="Times New Roman"/>
  5220. <w:lang w:bidi="ar-SA" w:eastAsia="zh-CN" w:val="en-US"/>
  5221. </w:rPr>
  5222. </w:rPrDefault>
  5223. <w:pPrDefault/>
  5224. </w:docDefaults>
  5225. <w:latentStyles w:count="371" w:defLockedState="0" w:defQFormat="0" w:defSemiHidden="0" w:defUIPriority="0" w:defUnhideWhenUsed="0">
  5226. <w:lsdException w:name="Normal" w:qFormat="1"/>
  5227. <w:lsdException w:name="heading 1" w:qFormat="1"/>
  5228. <w:lsdException w:name="heading 2" w:qFormat="1" w:semiHidden="1" w:unhideWhenUsed="1"/>
  5229. <w:lsdException w:name="heading 3" w:qFormat="1" w:semiHidden="1" w:unhideWhenUsed="1"/>
  5230. <w:lsdException w:name="heading 4" w:qFormat="1" w:semiHidden="1" w:unhideWhenUsed="1"/>
  5231. <w:lsdException w:name="heading 5" w:qFormat="1" w:semiHidden="1" w:unhideWhenUsed="1"/>
  5232. <w:lsdException w:name="heading 6" w:qFormat="1" w:semiHidden="1" w:unhideWhenUsed="1"/>
  5233. <w:lsdException w:name="heading 7" w:qFormat="1" w:semiHidden="1" w:unhideWhenUsed="1"/>
  5234. <w:lsdException w:name="heading 8" w:qFormat="1" w:semiHidden="1" w:unhideWhenUsed="1"/>
  5235. <w:lsdException w:name="heading 9" w:qFormat="1" w:semiHidden="1" w:unhideWhenUsed="1"/>
  5236. <w:lsdException w:name="caption" w:qFormat="1" w:semiHidden="1" w:unhideWhenUsed="1"/>
  5237. <w:lsdException w:name="Title" w:qFormat="1"/>
  5238. <w:lsdException w:name="Default Paragraph Font" w:semiHidden="1"/>
  5239. <w:lsdException w:name="Subtitle" w:qFormat="1"/>
  5240. <w:lsdException w:name="Strong" w:qFormat="1"/>
  5241. <w:lsdException w:name="Emphasis" w:qFormat="1"/>
  5242. <w:lsdException w:name="HTML Top of Form" w:semiHidden="1" w:uiPriority="99" w:unhideWhenUsed="1"/>
  5243. <w:lsdException w:name="HTML Bottom of Form" w:semiHidden="1" w:uiPriority="99" w:unhideWhenUsed="1"/>
  5244. <w:lsdException w:name="Normal Table" w:semiHidden="1" w:uiPriority="99" w:unhideWhenUsed="1"/>
  5245. <w:lsdException w:name="No List" w:semiHidden="1" w:uiPriority="99" w:unhideWhenUsed="1"/>
  5246. <w:lsdException w:name="Outline List 1" w:semiHidden="1" w:uiPriority="99" w:unhideWhenUsed="1"/>
  5247. <w:lsdException w:name="Outline List 2" w:semiHidden="1" w:uiPriority="99" w:unhideWhenUsed="1"/>
  5248. <w:lsdException w:name="Outline List 3" w:semiHidden="1" w:uiPriority="99" w:unhideWhenUsed="1"/>
  5249. <w:lsdException w:name="Table Simple 1" w:semiHidden="1" w:uiPriority="99" w:unhideWhenUsed="1"/>
  5250. <w:lsdException w:name="Table Simple 2" w:semiHidden="1" w:uiPriority="99" w:unhideWhenUsed="1"/>
  5251. <w:lsdException w:name="Table Simple 3" w:semiHidden="1" w:uiPriority="99" w:unhideWhenUsed="1"/>
  5252. <w:lsdException w:name="Table Classic 1" w:semiHidden="1" w:uiPriority="99" w:unhideWhenUsed="1"/>
  5253. <w:lsdException w:name="Table Classic 2" w:semiHidden="1" w:uiPriority="99" w:unhideWhenUsed="1"/>
  5254. <w:lsdException w:name="Table Classic 3" w:semiHidden="1" w:uiPriority="99" w:unhideWhenUsed="1"/>
  5255. <w:lsdException w:name="Table Classic 4" w:semiHidden="1" w:uiPriority="99" w:unhideWhenUsed="1"/>
  5256. <w:lsdException w:name="Table Colorful 1" w:semiHidden="1" w:uiPriority="99" w:unhideWhenUsed="1"/>
  5257. <w:lsdException w:name="Table Colorful 2" w:semiHidden="1" w:uiPriority="99" w:unhideWhenUsed="1"/>
  5258. <w:lsdException w:name="Table Colorful 3" w:semiHidden="1" w:uiPriority="99" w:unhideWhenUsed="1"/>
  5259. <w:lsdException w:name="Table Columns 1" w:semiHidden="1" w:uiPriority="99" w:unhideWhenUsed="1"/>
  5260. <w:lsdException w:name="Table Columns 2" w:semiHidden="1" w:uiPriority="99" w:unhideWhenUsed="1"/>
  5261. <w:lsdException w:name="Table Columns 3" w:semiHidden="1" w:uiPriority="99" w:unhideWhenUsed="1"/>
  5262. <w:lsdException w:name="Table Columns 4" w:semiHidden="1" w:uiPriority="99" w:unhideWhenUsed="1"/>
  5263. <w:lsdException w:name="Table Columns 5" w:semiHidden="1" w:uiPriority="99" w:unhideWhenUsed="1"/>
  5264. <w:lsdException w:name="Table Grid 1" w:semiHidden="1" w:uiPriority="99" w:unhideWhenUsed="1"/>
  5265. <w:lsdException w:name="Table Grid 2" w:semiHidden="1" w:uiPriority="99" w:unhideWhenUsed="1"/>
  5266. <w:lsdException w:name="Table Grid 3" w:semiHidden="1" w:uiPriority="99" w:unhideWhenUsed="1"/>
  5267. <w:lsdException w:name="Table Grid 4" w:semiHidden="1" w:uiPriority="99" w:unhideWhenUsed="1"/>
  5268. <w:lsdException w:name="Table Grid 5" w:semiHidden="1" w:uiPriority="99" w:unhideWhenUsed="1"/>
  5269. <w:lsdException w:name="Table Grid 6" w:semiHidden="1" w:uiPriority="99" w:unhideWhenUsed="1"/>
  5270. <w:lsdException w:name="Table Grid 7" w:semiHidden="1" w:uiPriority="99" w:unhideWhenUsed="1"/>
  5271. <w:lsdException w:name="Table Grid 8" w:semiHidden="1" w:uiPriority="99" w:unhideWhenUsed="1"/>
  5272. <w:lsdException w:name="Table List 1" w:semiHidden="1" w:uiPriority="99" w:unhideWhenUsed="1"/>
  5273. <w:lsdException w:name="Table List 2" w:semiHidden="1" w:uiPriority="99" w:unhideWhenUsed="1"/>
  5274. <w:lsdException w:name="Table List 3" w:semiHidden="1" w:uiPriority="99" w:unhideWhenUsed="1"/>
  5275. <w:lsdException w:name="Table List 4" w:semiHidden="1" w:uiPriority="99" w:unhideWhenUsed="1"/>
  5276. <w:lsdException w:name="Table List 5" w:semiHidden="1" w:uiPriority="99" w:unhideWhenUsed="1"/>
  5277. <w:lsdException w:name="Table List 6" w:semiHidden="1" w:uiPriority="99" w:unhideWhenUsed="1"/>
  5278. <w:lsdException w:name="Table List 7" w:semiHidden="1" w:uiPriority="99" w:unhideWhenUsed="1"/>
  5279. <w:lsdException w:name="Table List 8" w:semiHidden="1" w:uiPriority="99" w:unhideWhenUsed="1"/>
  5280. <w:lsdException w:name="Table 3D effects 1" w:semiHidden="1" w:uiPriority="99" w:unhideWhenUsed="1"/>
  5281. <w:lsdException w:name="Table 3D effects 2" w:semiHidden="1" w:uiPriority="99" w:unhideWhenUsed="1"/>
  5282. <w:lsdException w:name="Table 3D effects 3" w:semiHidden="1" w:uiPriority="99" w:unhideWhenUsed="1"/>
  5283. <w:lsdException w:name="Table Contemporary" w:semiHidden="1" w:uiPriority="99" w:unhideWhenUsed="1"/>
  5284. <w:lsdException w:name="Table Elegant" w:semiHidden="1" w:uiPriority="99" w:unhideWhenUsed="1"/>
  5285. <w:lsdException w:name="Table Professional" w:semiHidden="1" w:uiPriority="99" w:unhideWhenUsed="1"/>
  5286. <w:lsdException w:name="Table Subtle 1" w:semiHidden="1" w:uiPriority="99" w:unhideWhenUsed="1"/>
  5287. <w:lsdException w:name="Table Subtle 2" w:semiHidden="1" w:uiPriority="99" w:unhideWhenUsed="1"/>
  5288. <w:lsdException w:name="Table Web 1" w:semiHidden="1" w:uiPriority="99" w:unhideWhenUsed="1"/>
  5289. <w:lsdException w:name="Table Web 2" w:semiHidden="1" w:uiPriority="99" w:unhideWhenUsed="1"/>
  5290. <w:lsdException w:name="Table Web 3" w:semiHidden="1" w:uiPriority="99" w:unhideWhenUsed="1"/>
  5291. <w:lsdException w:name="Balloon Text" w:semiHidden="1"/>
  5292. <w:lsdException w:name="Table Grid" w:semiHidden="1" w:uiPriority="99" w:unhideWhenUsed="1"/>
  5293. <w:lsdException w:name="Table Theme" w:semiHidden="1" w:uiPriority="99" w:unhideWhenUsed="1"/>
  5294. <w:lsdException w:name="Placeholder Text" w:semiHidden="1" w:uiPriority="99" w:unhideWhenUsed="1"/>
  5295. <w:lsdException w:name="No Spacing" w:qFormat="1" w:uiPriority="99"/>
  5296. <w:lsdException w:name="Light Shading" w:uiPriority="99"/>
  5297. <w:lsdException w:name="Light List" w:uiPriority="99"/>
  5298. <w:lsdException w:name="Light Grid" w:uiPriority="99"/>
  5299. <w:lsdException w:name="Medium Shading 1" w:uiPriority="99"/>
  5300. <w:lsdException w:name="Medium Shading 2" w:uiPriority="99"/>
  5301. <w:lsdException w:name="Medium List 1" w:uiPriority="99"/>
  5302. <w:lsdException w:name="Medium List 2" w:uiPriority="99"/>
  5303. <w:lsdException w:name="Medium Grid 1" w:uiPriority="99"/>
  5304. <w:lsdException w:name="Medium Grid 2" w:qFormat="1" w:uiPriority="1"/>
  5305. <w:lsdException w:name="Medium Grid 3" w:uiPriority="60"/>
  5306. <w:lsdException w:name="Dark List" w:uiPriority="61"/>
  5307. <w:lsdException w:name="Colorful Shading" w:uiPriority="62"/>
  5308. <w:lsdException w:name="Colorful List" w:uiPriority="63"/>
  5309. <w:lsdException w:name="Colorful Grid" w:uiPriority="64"/>
  5310. <w:lsdException w:name="Light Shading Accent 1" w:uiPriority="65"/>
  5311. <w:lsdException w:name="Light List Accent 1" w:uiPriority="66"/>
  5312. <w:lsdException w:name="Light Grid Accent 1" w:uiPriority="67"/>
  5313. <w:lsdException w:name="Medium Shading 1 Accent 1" w:uiPriority="68"/>
  5314. <w:lsdException w:name="Medium Shading 2 Accent 1" w:uiPriority="69"/>
  5315. <w:lsdException w:name="Medium List 1 Accent 1" w:uiPriority="70"/>
  5316. <w:lsdException w:name="Revision" w:semiHidden="1" w:uiPriority="71" w:unhideWhenUsed="1"/>
  5317. <w:lsdException w:name="List Paragraph" w:qFormat="1" w:uiPriority="72"/>
  5318. <w:lsdException w:name="Quote" w:qFormat="1" w:uiPriority="73"/>
  5319. <w:lsdException w:name="Intense Quote" w:qFormat="1" w:uiPriority="60"/>
  5320. <w:lsdException w:name="Medium List 2 Accent 1" w:uiPriority="61"/>
  5321. <w:lsdException w:name="Medium Grid 1 Accent 1" w:uiPriority="62"/>
  5322. <w:lsdException w:name="Medium Grid 2 Accent 1" w:uiPriority="63"/>
  5323. <w:lsdException w:name="Medium Grid 3 Accent 1" w:uiPriority="64"/>
  5324. <w:lsdException w:name="Dark List Accent 1" w:uiPriority="65"/>
  5325. <w:lsdException w:name="Colorful Shading Accent 1" w:uiPriority="99"/>
  5326. <w:lsdException w:name="Colorful List Accent 1" w:qFormat="1" w:uiPriority="34"/>
  5327. <w:lsdException w:name="Colorful Grid Accent 1" w:qFormat="1" w:uiPriority="29"/>
  5328. <w:lsdException w:name="Light Shading Accent 2" w:qFormat="1" w:uiPriority="30"/>
  5329. <w:lsdException w:name="Light List Accent 2" w:uiPriority="66"/>
  5330. <w:lsdException w:name="Light Grid Accent 2" w:uiPriority="67"/>
  5331. <w:lsdException w:name="Medium Shading 1 Accent 2" w:uiPriority="68"/>
  5332. <w:lsdException w:name="Medium Shading 2 Accent 2" w:uiPriority="69"/>
  5333. <w:lsdException w:name="Medium List 1 Accent 2" w:uiPriority="70"/>
  5334. <w:lsdException w:name="Medium List 2 Accent 2" w:uiPriority="71"/>
  5335. <w:lsdException w:name="Medium Grid 1 Accent 2" w:uiPriority="72"/>
  5336. <w:lsdException w:name="Medium Grid 2 Accent 2" w:uiPriority="73"/>
  5337. <w:lsdException w:name="Medium Grid 3 Accent 2" w:uiPriority="60"/>
  5338. <w:lsdException w:name="Dark List Accent 2" w:uiPriority="61"/>
  5339. <w:lsdException w:name="Colorful Shading Accent 2" w:uiPriority="62"/>
  5340. <w:lsdException w:name="Colorful List Accent 2" w:uiPriority="63"/>
  5341. <w:lsdException w:name="Colorful Grid Accent 2" w:uiPriority="64"/>
  5342. <w:lsdException w:name="Light Shading Accent 3" w:uiPriority="65"/>
  5343. <w:lsdException w:name="Light List Accent 3" w:uiPriority="66"/>
  5344. <w:lsdException w:name="Light Grid Accent 3" w:uiPriority="67"/>
  5345. <w:lsdException w:name="Medium Shading 1 Accent 3" w:uiPriority="68"/>
  5346. <w:lsdException w:name="Medium Shading 2 Accent 3" w:uiPriority="69"/>
  5347. <w:lsdException w:name="Medium List 1 Accent 3" w:uiPriority="70"/>
  5348. <w:lsdException w:name="Medium List 2 Accent 3" w:uiPriority="71"/>
  5349. <w:lsdException w:name="Medium Grid 1 Accent 3" w:uiPriority="72"/>
  5350. <w:lsdException w:name="Medium Grid 2 Accent 3" w:uiPriority="73"/>
  5351. <w:lsdException w:name="Medium Grid 3 Accent 3" w:uiPriority="60"/>
  5352. <w:lsdException w:name="Dark List Accent 3" w:uiPriority="61"/>
  5353. <w:lsdException w:name="Colorful Shading Accent 3" w:uiPriority="62"/>
  5354. <w:lsdException w:name="Colorful List Accent 3" w:uiPriority="63"/>
  5355. <w:lsdException w:name="Colorful Grid Accent 3" w:uiPriority="64"/>
  5356. <w:lsdException w:name="Light Shading Accent 4" w:uiPriority="65"/>
  5357. <w:lsdException w:name="Light List Accent 4" w:uiPriority="66"/>
  5358. <w:lsdException w:name="Light Grid Accent 4" w:uiPriority="67"/>
  5359. <w:lsdException w:name="Medium Shading 1 Accent 4" w:uiPriority="68"/>
  5360. <w:lsdException w:name="Medium Shading 2 Accent 4" w:uiPriority="69"/>
  5361. <w:lsdException w:name="Medium List 1 Accent 4" w:uiPriority="70"/>
  5362. <w:lsdException w:name="Medium List 2 Accent 4" w:uiPriority="71"/>
  5363. <w:lsdException w:name="Medium Grid 1 Accent 4" w:uiPriority="72"/>
  5364. <w:lsdException w:name="Medium Grid 2 Accent 4" w:uiPriority="73"/>
  5365. <w:lsdException w:name="Medium Grid 3 Accent 4" w:uiPriority="60"/>
  5366. <w:lsdException w:name="Dark List Accent 4" w:uiPriority="61"/>
  5367. <w:lsdException w:name="Colorful Shading Accent 4" w:uiPriority="62"/>
  5368. <w:lsdException w:name="Colorful List Accent 4" w:uiPriority="63"/>
  5369. <w:lsdException w:name="Colorful Grid Accent 4" w:uiPriority="64"/>
  5370. <w:lsdException w:name="Light Shading Accent 5" w:uiPriority="65"/>
  5371. <w:lsdException w:name="Light List Accent 5" w:uiPriority="66"/>
  5372. <w:lsdException w:name="Light Grid Accent 5" w:uiPriority="67"/>
  5373. <w:lsdException w:name="Medium Shading 1 Accent 5" w:uiPriority="68"/>
  5374. <w:lsdException w:name="Medium Shading 2 Accent 5" w:uiPriority="69"/>
  5375. <w:lsdException w:name="Medium List 1 Accent 5" w:uiPriority="70"/>
  5376. <w:lsdException w:name="Medium List 2 Accent 5" w:uiPriority="71"/>
  5377. <w:lsdException w:name="Medium Grid 1 Accent 5" w:uiPriority="72"/>
  5378. <w:lsdException w:name="Medium Grid 2 Accent 5" w:uiPriority="73"/>
  5379. <w:lsdException w:name="Medium Grid 3 Accent 5" w:uiPriority="60"/>
  5380. <w:lsdException w:name="Dark List Accent 5" w:uiPriority="61"/>
  5381. <w:lsdException w:name="Colorful Shading Accent 5" w:uiPriority="62"/>
  5382. <w:lsdException w:name="Colorful List Accent 5" w:uiPriority="63"/>
  5383. <w:lsdException w:name="Colorful Grid Accent 5" w:uiPriority="64"/>
  5384. <w:lsdException w:name="Light Shading Accent 6" w:uiPriority="65"/>
  5385. <w:lsdException w:name="Light List Accent 6" w:uiPriority="66"/>
  5386. <w:lsdException w:name="Light Grid Accent 6" w:uiPriority="67"/>
  5387. <w:lsdException w:name="Medium Shading 1 Accent 6" w:uiPriority="68"/>
  5388. <w:lsdException w:name="Medium Shading 2 Accent 6" w:uiPriority="69"/>
  5389. <w:lsdException w:name="Medium List 1 Accent 6" w:uiPriority="70"/>
  5390. <w:lsdException w:name="Medium List 2 Accent 6" w:uiPriority="71"/>
  5391. <w:lsdException w:name="Medium Grid 1 Accent 6" w:uiPriority="72"/>
  5392. <w:lsdException w:name="Medium Grid 2 Accent 6" w:uiPriority="73"/>
  5393. <w:lsdException w:name="Medium Grid 3 Accent 6" w:uiPriority="60"/>
  5394. <w:lsdException w:name="Dark List Accent 6" w:uiPriority="61"/>
  5395. <w:lsdException w:name="Colorful Shading Accent 6" w:uiPriority="62"/>
  5396. <w:lsdException w:name="Colorful List Accent 6" w:uiPriority="63"/>
  5397. <w:lsdException w:name="Colorful Grid Accent 6" w:uiPriority="64"/>
  5398. <w:lsdException w:name="Subtle Emphasis" w:qFormat="1" w:uiPriority="65"/>
  5399. <w:lsdException w:name="Intense Emphasis" w:qFormat="1" w:uiPriority="66"/>
  5400. <w:lsdException w:name="Subtle Reference" w:qFormat="1" w:uiPriority="67"/>
  5401. <w:lsdException w:name="Intense Reference" w:qFormat="1" w:uiPriority="68"/>
  5402. <w:lsdException w:name="Book Title" w:qFormat="1" w:uiPriority="69"/>
  5403. <w:lsdException w:name="Bibliography" w:semiHidden="1" w:uiPriority="70" w:unhideWhenUsed="1"/>
  5404. <w:lsdException w:name="TOC Heading" w:qFormat="1" w:semiHidden="1" w:uiPriority="71" w:unhideWhenUsed="1"/>
  5405. <w:lsdException w:name="Plain Table 1" w:uiPriority="41"/>
  5406. <w:lsdException w:name="Plain Table 2" w:uiPriority="42"/>
  5407. <w:lsdException w:name="Plain Table 3" w:uiPriority="43"/>
  5408. <w:lsdException w:name="Plain Table 4" w:uiPriority="44"/>
  5409. <w:lsdException w:name="Plain Table 5" w:uiPriority="45"/>
  5410. <w:lsdException w:name="Grid Table Light" w:uiPriority="40"/>
  5411. <w:lsdException w:name="Grid Table 1 Light" w:uiPriority="46"/>
  5412. <w:lsdException w:name="Grid Table 2" w:uiPriority="47"/>
  5413. <w:lsdException w:name="Grid Table 3" w:uiPriority="48"/>
  5414. <w:lsdException w:name="Grid Table 4" w:uiPriority="49"/>
  5415. <w:lsdException w:name="Grid Table 5 Dark" w:uiPriority="50"/>
  5416. <w:lsdException w:name="Grid Table 6 Colorful" w:uiPriority="51"/>
  5417. <w:lsdException w:name="Grid Table 7 Colorful" w:uiPriority="52"/>
  5418. <w:lsdException w:name="Grid Table 1 Light Accent 1" w:uiPriority="46"/>
  5419. <w:lsdException w:name="Grid Table 2 Accent 1" w:uiPriority="47"/>
  5420. <w:lsdException w:name="Grid Table 3 Accent 1" w:uiPriority="48"/>
  5421. <w:lsdException w:name="Grid Table 4 Accent 1" w:uiPriority="49"/>
  5422. <w:lsdException w:name="Grid Table 5 Dark Accent 1" w:uiPriority="50"/>
  5423. <w:lsdException w:name="Grid Table 6 Colorful Accent 1" w:uiPriority="51"/>
  5424. <w:lsdException w:name="Grid Table 7 Colorful Accent 1" w:uiPriority="52"/>
  5425. <w:lsdException w:name="Grid Table 1 Light Accent 2" w:uiPriority="46"/>
  5426. <w:lsdException w:name="Grid Table 2 Accent 2" w:uiPriority="47"/>
  5427. <w:lsdException w:name="Grid Table 3 Accent 2" w:uiPriority="48"/>
  5428. <w:lsdException w:name="Grid Table 4 Accent 2" w:uiPriority="49"/>
  5429. <w:lsdException w:name="Grid Table 5 Dark Accent 2" w:uiPriority="50"/>
  5430. <w:lsdException w:name="Grid Table 6 Colorful Accent 2" w:uiPriority="51"/>
  5431. <w:lsdException w:name="Grid Table 7 Colorful Accent 2" w:uiPriority="52"/>
  5432. <w:lsdException w:name="Grid Table 1 Light Accent 3" w:uiPriority="46"/>
  5433. <w:lsdException w:name="Grid Table 2 Accent 3" w:uiPriority="47"/>
  5434. <w:lsdException w:name="Grid Table 3 Accent 3" w:uiPriority="48"/>
  5435. <w:lsdException w:name="Grid Table 4 Accent 3" w:uiPriority="49"/>
  5436. <w:lsdException w:name="Grid Table 5 Dark Accent 3" w:uiPriority="50"/>
  5437. <w:lsdException w:name="Grid Table 6 Colorful Accent 3" w:uiPriority="51"/>
  5438. <w:lsdException w:name="Grid Table 7 Colorful Accent 3" w:uiPriority="52"/>
  5439. <w:lsdException w:name="Grid Table 1 Light Accent 4" w:uiPriority="46"/>
  5440. <w:lsdException w:name="Grid Table 2 Accent 4" w:uiPriority="47"/>
  5441. <w:lsdException w:name="Grid Table 3 Accent 4" w:uiPriority="48"/>
  5442. <w:lsdException w:name="Grid Table 4 Accent 4" w:uiPriority="49"/>
  5443. <w:lsdException w:name="Grid Table 5 Dark Accent 4" w:uiPriority="50"/>
  5444. <w:lsdException w:name="Grid Table 6 Colorful Accent 4" w:uiPriority="51"/>
  5445. <w:lsdException w:name="Grid Table 7 Colorful Accent 4" w:uiPriority="52"/>
  5446. <w:lsdException w:name="Grid Table 1 Light Accent 5" w:uiPriority="46"/>
  5447. <w:lsdException w:name="Grid Table 2 Accent 5" w:uiPriority="47"/>
  5448. <w:lsdException w:name="Grid Table 3 Accent 5" w:uiPriority="48"/>
  5449. <w:lsdException w:name="Grid Table 4 Accent 5" w:uiPriority="49"/>
  5450. <w:lsdException w:name="Grid Table 5 Dark Accent 5" w:uiPriority="50"/>
  5451. <w:lsdException w:name="Grid Table 6 Colorful Accent 5" w:uiPriority="51"/>
  5452. <w:lsdException w:name="Grid Table 7 Colorful Accent 5" w:uiPriority="52"/>
  5453. <w:lsdException w:name="Grid Table 1 Light Accent 6" w:uiPriority="46"/>
  5454. <w:lsdException w:name="Grid Table 2 Accent 6" w:uiPriority="47"/>
  5455. <w:lsdException w:name="Grid Table 3 Accent 6" w:uiPriority="48"/>
  5456. <w:lsdException w:name="Grid Table 4 Accent 6" w:uiPriority="49"/>
  5457. <w:lsdException w:name="Grid Table 5 Dark Accent 6" w:uiPriority="50"/>
  5458. <w:lsdException w:name="Grid Table 6 Colorful Accent 6" w:uiPriority="51"/>
  5459. <w:lsdException w:name="Grid Table 7 Colorful Accent 6" w:uiPriority="52"/>
  5460. <w:lsdException w:name="List Table 1 Light" w:uiPriority="46"/>
  5461. <w:lsdException w:name="List Table 2" w:uiPriority="47"/>
  5462. <w:lsdException w:name="List Table 3" w:uiPriority="48"/>
  5463. <w:lsdException w:name="List Table 4" w:uiPriority="49"/>
  5464. <w:lsdException w:name="List Table 5 Dark" w:uiPriority="50"/>
  5465. <w:lsdException w:name="List Table 6 Colorful" w:uiPriority="51"/>
  5466. <w:lsdException w:name="List Table 7 Colorful" w:uiPriority="52"/>
  5467. <w:lsdException w:name="List Table 1 Light Accent 1" w:uiPriority="46"/>
  5468. <w:lsdException w:name="List Table 2 Accent 1" w:uiPriority="47"/>
  5469. <w:lsdException w:name="List Table 3 Accent 1" w:uiPriority="48"/>
  5470. <w:lsdException w:name="List Table 4 Accent 1" w:uiPriority="49"/>
  5471. <w:lsdException w:name="List Table 5 Dark Accent 1" w:uiPriority="50"/>
  5472. <w:lsdException w:name="List Table 6 Colorful Accent 1" w:uiPriority="51"/>
  5473. <w:lsdException w:name="List Table 7 Colorful Accent 1" w:uiPriority="52"/>
  5474. <w:lsdException w:name="List Table 1 Light Accent 2" w:uiPriority="46"/>
  5475. <w:lsdException w:name="List Table 2 Accent 2" w:uiPriority="47"/>
  5476. <w:lsdException w:name="List Table 3 Accent 2" w:uiPriority="48"/>
  5477. <w:lsdException w:name="List Table 4 Accent 2" w:uiPriority="49"/>
  5478. <w:lsdException w:name="List Table 5 Dark Accent 2" w:uiPriority="50"/>
  5479. <w:lsdException w:name="List Table 6 Colorful Accent 2" w:uiPriority="51"/>
  5480. <w:lsdException w:name="List Table 7 Colorful Accent 2" w:uiPriority="52"/>
  5481. <w:lsdException w:name="List Table 1 Light Accent 3" w:uiPriority="46"/>
  5482. <w:lsdException w:name="List Table 2 Accent 3" w:uiPriority="47"/>
  5483. <w:lsdException w:name="List Table 3 Accent 3" w:uiPriority="48"/>
  5484. <w:lsdException w:name="List Table 4 Accent 3" w:uiPriority="49"/>
  5485. <w:lsdException w:name="List Table 5 Dark Accent 3" w:uiPriority="50"/>
  5486. <w:lsdException w:name="List Table 6 Colorful Accent 3" w:uiPriority="51"/>
  5487. <w:lsdException w:name="List Table 7 Colorful Accent 3" w:uiPriority="52"/>
  5488. <w:lsdException w:name="List Table 1 Light Accent 4" w:uiPriority="46"/>
  5489. <w:lsdException w:name="List Table 2 Accent 4" w:uiPriority="47"/>
  5490. <w:lsdException w:name="List Table 3 Accent 4" w:uiPriority="48"/>
  5491. <w:lsdException w:name="List Table 4 Accent 4" w:uiPriority="49"/>
  5492. <w:lsdException w:name="List Table 5 Dark Accent 4" w:uiPriority="50"/>
  5493. <w:lsdException w:name="List Table 6 Colorful Accent 4" w:uiPriority="51"/>
  5494. <w:lsdException w:name="List Table 7 Colorful Accent 4" w:uiPriority="52"/>
  5495. <w:lsdException w:name="List Table 1 Light Accent 5" w:uiPriority="46"/>
  5496. <w:lsdException w:name="List Table 2 Accent 5" w:uiPriority="47"/>
  5497. <w:lsdException w:name="List Table 3 Accent 5" w:uiPriority="48"/>
  5498. <w:lsdException w:name="List Table 4 Accent 5" w:uiPriority="49"/>
  5499. <w:lsdException w:name="List Table 5 Dark Accent 5" w:uiPriority="50"/>
  5500. <w:lsdException w:name="List Table 6 Colorful Accent 5" w:uiPriority="51"/>
  5501. <w:lsdException w:name="List Table 7 Colorful Accent 5" w:uiPriority="52"/>
  5502. <w:lsdException w:name="List Table 1 Light Accent 6" w:uiPriority="46"/>
  5503. <w:lsdException w:name="List Table 2 Accent 6" w:uiPriority="47"/>
  5504. <w:lsdException w:name="List Table 3 Accent 6" w:uiPriority="48"/>
  5505. <w:lsdException w:name="List Table 4 Accent 6" w:uiPriority="49"/>
  5506. <w:lsdException w:name="List Table 5 Dark Accent 6" w:uiPriority="50"/>
  5507. <w:lsdException w:name="List Table 6 Colorful Accent 6" w:uiPriority="51"/>
  5508. <w:lsdException w:name="List Table 7 Colorful Accent 6" w:uiPriority="52"/>
  5509. </w:latentStyles>
  5510. <w:style w:default="1" w:styleId="a" w:type="paragraph">
  5511. <w:name w:val="Normal"/>
  5512. <w:qFormat/>
  5513. <w:pPr>
  5514. <w:widowControl w:val="0"/>
  5515. <w:jc w:val="both"/>
  5516. </w:pPr>
  5517. <w:rPr>
  5518. <w:color w:val="333333"/>
  5519. <w:kern w:val="2"/>
  5520. <w:sz w:val="21"/>
  5521. <w:szCs w:val="24"/>
  5522. </w:rPr>
  5523. </w:style>
  5524. <w:style w:default="1" w:styleId="a0" w:type="character">
  5525. <w:name w:val="Default Paragraph Font"/>
  5526. <w:semiHidden/>
  5527. </w:style>
  5528. <w:style w:default="1" w:styleId="a1" w:type="table">
  5529. <w:name w:val="Normal Table"/>
  5530. <w:uiPriority w:val="99"/>
  5531. <w:semiHidden/>
  5532. <w:unhideWhenUsed/>
  5533. <w:tblPr>
  5534. <w:tblInd w:type="dxa" w:w="0"/>
  5535. <w:tblCellMar>
  5536. <w:top w:type="dxa" w:w="0"/>
  5537. <w:left w:type="dxa" w:w="108"/>
  5538. <w:bottom w:type="dxa" w:w="0"/>
  5539. <w:right w:type="dxa" w:w="108"/>
  5540. </w:tblCellMar>
  5541. </w:tblPr>
  5542. </w:style>
  5543. <w:style w:default="1" w:styleId="a2" w:type="numbering">
  5544. <w:name w:val="No List"/>
  5545. <w:uiPriority w:val="99"/>
  5546. <w:semiHidden/>
  5547. <w:unhideWhenUsed/>
  5548. </w:style>
  5549. <w:style w:styleId="a3" w:type="paragraph">
  5550. <w:name w:val="header"/>
  5551. <w:basedOn w:val="a"/>
  5552. <w:pPr>
  5553. <w:pBdr>
  5554. <w:bottom w:color="auto" w:space="1" w:sz="6" w:val="single"/>
  5555. </w:pBdr>
  5556. <w:tabs>
  5557. <w:tab w:pos="4153" w:val="center"/>
  5558. <w:tab w:pos="8306" w:val="right"/>
  5559. </w:tabs>
  5560. <w:snapToGrid w:val="0"/>
  5561. <w:jc w:val="center"/>
  5562. </w:pPr>
  5563. <w:rPr>
  5564. <w:sz w:val="18"/>
  5565. <w:szCs w:val="18"/>
  5566. </w:rPr>
  5567. </w:style>
  5568. <w:style w:styleId="a4" w:type="paragraph">
  5569. <w:name w:val="footer"/>
  5570. <w:basedOn w:val="a"/>
  5571. <w:pPr>
  5572. <w:tabs>
  5573. <w:tab w:pos="4153" w:val="center"/>
  5574. <w:tab w:pos="8306" w:val="right"/>
  5575. </w:tabs>
  5576. <w:snapToGrid w:val="0"/>
  5577. <w:jc w:val="left"/>
  5578. </w:pPr>
  5579. <w:rPr>
  5580. <w:sz w:val="18"/>
  5581. <w:szCs w:val="18"/>
  5582. </w:rPr>
  5583. </w:style>
  5584. <w:style w:styleId="a5" w:type="paragraph">
  5585. <w:name w:val="Balloon Text"/>
  5586. <w:basedOn w:val="a"/>
  5587. <w:semiHidden/>
  5588. <w:rPr>
  5589. <w:sz w:val="18"/>
  5590. <w:szCs w:val="18"/>
  5591. </w:rPr>
  5592. </w:style>
  5593. <w:style w:styleId="a6" w:type="table">
  5594. <w:name w:val="Table Grid"/>
  5595. <w:basedOn w:val="a1"/>
  5596. <w:uiPriority w:val="99"/>
  5597. <w:unhideWhenUsed/>
  5598. <w:rsid w:val="00466C01"/>
  5599. <w:tblPr>
  5600. <w:tblBorders>
  5601. <w:top w:color="auto" w:space="0" w:sz="4" w:val="single"/>
  5602. <w:left w:color="auto" w:space="0" w:sz="4" w:val="single"/>
  5603. <w:bottom w:color="auto" w:space="0" w:sz="4" w:val="single"/>
  5604. <w:right w:color="auto" w:space="0" w:sz="4" w:val="single"/>
  5605. <w:insideH w:color="auto" w:space="0" w:sz="4" w:val="single"/>
  5606. <w:insideV w:color="auto" w:space="0" w:sz="4" w:val="single"/>
  5607. </w:tblBorders>
  5608. </w:tblPr>
  5609. </w:style>
  5610. </w:styles>
  5611. </pkg:xmlData>
  5612. </pkg:part>
  5613. <pkg:part pkg:contentType="application/vnd.openxmlformats-officedocument.custom-properties+xml" pkg:name="/docProps/custom.xml" pkg:padding="256">
  5614. <pkg:xmlData>
  5615. <Properties xmlns="http://schemas.openxmlformats.org/officeDocument/2006/custom-properties" xmlns:vt="http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes">
  5616. <property fmtid="{D5CDD505-2E9C-101B-9397-08002B2CF9AE}" name="KSOProductBuildVer" pid="2">
  5617. <vt:lpwstr>2052-9.1.0.4468</vt:lpwstr>
  5618. </property>
  5619. </Properties>
  5620. </pkg:xmlData>
  5621. </pkg:part>
  5622. <pkg:part pkg:contentType="application/vnd.openxmlformats-package.core-properties+xml" pkg:name="/docProps/core.xml" pkg:padding="256">
  5623. <pkg:xmlData>
  5624. <cp:coreProperties xmlns:cp="http://schemas.openxmlformats.org/package/2006/metadata/core-properties" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:dcmitype="http://purl.org/dc/dcmitype/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  5625. <dc:title>西安邮电学院试卷编写计划</dc:title>
  5626. <dc:subject/>
  5627. <dc:creator>USER</dc:creator>
  5628. <cp:keywords/>
  5629. <cp:lastModifiedBy>李璠涛</cp:lastModifiedBy>
  5630. <cp:revision>2</cp:revision>
  5631. <cp:lastPrinted>2011-06-24T02:17:00Z</cp:lastPrinted>
  5632. <dcterms:created xsi:type="dcterms:W3CDTF">2018-04-13T06:49:00Z</dcterms:created>
  5633. <dcterms:modified xsi:type="dcterms:W3CDTF">2018-04-13T06:49:00Z</dcterms:modified>
  5634. </cp:coreProperties>
  5635. </pkg:xmlData>
  5636. </pkg:part>
  5637. <pkg:part pkg:contentType="application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml" pkg:name="/word/numbering.xml">
  5638. <pkg:xmlData>
  5639. <w:numbering mc:Ignorable="w14 w15 wp14" xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:w10="urn:schemas-microsoft-com:office:word" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml" xmlns:wne="http://schemas.microsoft.com/office/word/2006/wordml" xmlns:wp="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing" xmlns:wp14="http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing" xmlns:wpc="http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas" xmlns:wpg="http://schemas.microsoft.com/office/word/2010/wordprocessingGroup" xmlns:wpi="http://schemas.microsoft.com/office/word/2010/wordprocessingInk" xmlns:wps="http://schemas.microsoft.com/office/word/2010/wordprocessingShape">
  5640. <w:abstractNum w15:restartNumberingAfterBreak="0" w:abstractNumId="0">
  5641. <w:nsid w:val="484541DC"/>
  5642. <w:multiLevelType w:val="multilevel"/>
  5643. <w:tmpl w:val="484541DC"/>
  5644. <w:lvl w:ilvl="0">
  5645. <w:start w:val="1"/>
  5646. <w:numFmt w:val="decimal"/>
  5647. <w:lvlText w:val="%1."/>
  5648. <w:lvlJc w:val="left"/>
  5649. <w:pPr>
  5650. <w:tabs>
  5651. <w:tab w:pos="360" w:val="num"/>
  5652. </w:tabs>
  5653. <w:ind w:hanging="360" w:left="360"/>
  5654. </w:pPr>
  5655. <w:rPr>
  5656. <w:rFonts w:hint="eastAsia"/>
  5657. </w:rPr>
  5658. </w:lvl>
  5659. <w:lvl w:ilvl="1">
  5660. <w:start w:val="1"/>
  5661. <w:numFmt w:val="lowerLetter"/>
  5662. <w:lvlText w:val="%2)"/>
  5663. <w:lvlJc w:val="left"/>
  5664. <w:pPr>
  5665. <w:tabs>
  5666. <w:tab w:pos="840" w:val="num"/>
  5667. </w:tabs>
  5668. <w:ind w:hanging="420" w:left="840"/>
  5669. </w:pPr>
  5670. </w:lvl>
  5671. <w:lvl w:ilvl="2">
  5672. <w:start w:val="1"/>
  5673. <w:numFmt w:val="lowerRoman"/>
  5674. <w:lvlText w:val="%3."/>
  5675. <w:lvlJc w:val="right"/>
  5676. <w:pPr>
  5677. <w:tabs>
  5678. <w:tab w:pos="1260" w:val="num"/>
  5679. </w:tabs>
  5680. <w:ind w:hanging="420" w:left="1260"/>
  5681. </w:pPr>
  5682. </w:lvl>
  5683. <w:lvl w:ilvl="3">
  5684. <w:start w:val="1"/>
  5685. <w:numFmt w:val="decimal"/>
  5686. <w:lvlText w:val="%4."/>
  5687. <w:lvlJc w:val="left"/>
  5688. <w:pPr>
  5689. <w:tabs>
  5690. <w:tab w:pos="1680" w:val="num"/>
  5691. </w:tabs>
  5692. <w:ind w:hanging="420" w:left="1680"/>
  5693. </w:pPr>
  5694. </w:lvl>
  5695. <w:lvl w:ilvl="4">
  5696. <w:start w:val="1"/>
  5697. <w:numFmt w:val="lowerLetter"/>
  5698. <w:lvlText w:val="%5)"/>
  5699. <w:lvlJc w:val="left"/>
  5700. <w:pPr>
  5701. <w:tabs>
  5702. <w:tab w:pos="2100" w:val="num"/>
  5703. </w:tabs>
  5704. <w:ind w:hanging="420" w:left="2100"/>
  5705. </w:pPr>
  5706. </w:lvl>
  5707. <w:lvl w:ilvl="5">
  5708. <w:start w:val="1"/>
  5709. <w:numFmt w:val="lowerRoman"/>
  5710. <w:lvlText w:val="%6."/>
  5711. <w:lvlJc w:val="right"/>
  5712. <w:pPr>
  5713. <w:tabs>
  5714. <w:tab w:pos="2520" w:val="num"/>
  5715. </w:tabs>
  5716. <w:ind w:hanging="420" w:left="2520"/>
  5717. </w:pPr>
  5718. </w:lvl>
  5719. <w:lvl w:ilvl="6">
  5720. <w:start w:val="1"/>
  5721. <w:numFmt w:val="decimal"/>
  5722. <w:lvlText w:val="%7."/>
  5723. <w:lvlJc w:val="left"/>
  5724. <w:pPr>
  5725. <w:tabs>
  5726. <w:tab w:pos="2940" w:val="num"/>
  5727. </w:tabs>
  5728. <w:ind w:hanging="420" w:left="2940"/>
  5729. </w:pPr>
  5730. </w:lvl>
  5731. <w:lvl w:ilvl="7">
  5732. <w:start w:val="1"/>
  5733. <w:numFmt w:val="lowerLetter"/>
  5734. <w:lvlText w:val="%8)"/>
  5735. <w:lvlJc w:val="left"/>
  5736. <w:pPr>
  5737. <w:tabs>
  5738. <w:tab w:pos="3360" w:val="num"/>
  5739. </w:tabs>
  5740. <w:ind w:hanging="420" w:left="3360"/>
  5741. </w:pPr>
  5742. </w:lvl>
  5743. <w:lvl w:ilvl="8">
  5744. <w:start w:val="1"/>
  5745. <w:numFmt w:val="lowerRoman"/>
  5746. <w:lvlText w:val="%9."/>
  5747. <w:lvlJc w:val="right"/>
  5748. <w:pPr>
  5749. <w:tabs>
  5750. <w:tab w:pos="3780" w:val="num"/>
  5751. </w:tabs>
  5752. <w:ind w:hanging="420" w:left="3780"/>
  5753. </w:pPr>
  5754. </w:lvl>
  5755. </w:abstractNum>
  5756. <w:num w:numId="1">
  5757. <w:abstractNumId w:val="0"/>
  5758. </w:num>
  5759. </w:numbering>
  5760. </pkg:xmlData>
  5761. </pkg:part>
  5762. <pkg:part pkg:contentType="application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml" pkg:name="/word/fontTable.xml">
  5763. <pkg:xmlData>
  5764. <w:fonts mc:Ignorable="w14 w15" 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">
  5765. <w:font w:name="Times New Roman">
  5766. <w:panose1 w:val="02020603050405020304"/>
  5767. <w:charset w:val="00"/>
  5768. <w:family w:val="roman"/>
  5769. <w:pitch w:val="variable"/>
  5770. <w:sig w:csb0="000001FF" w:csb1="00000000" w:usb0="E0002EFF" w:usb1="C000785B" w:usb2="00000009" w:usb3="00000000"/>
  5771. </w:font>
  5772. <w:font w:name="宋体">
  5773. <w:altName w:val="SimSun"/>
  5774. <w:panose1 w:val="02010600030101010101"/>
  5775. <w:charset w:val="86"/>
  5776. <w:family w:val="auto"/>
  5777. <w:pitch w:val="variable"/>
  5778. <w:sig w:csb0="00040001" w:csb1="00000000" w:usb0="00000003" w:usb1="288F0000" w:usb2="00000016" w:usb3="00000000"/>
  5779. </w:font>
  5780. <w:font w:name="黑体">
  5781. <w:altName w:val="SimHei"/>
  5782. <w:panose1 w:val="02010609060101010101"/>
  5783. <w:charset w:val="86"/>
  5784. <w:family w:val="modern"/>
  5785. <w:pitch w:val="fixed"/>
  5786. <w:sig w:csb0="00040001" w:csb1="00000000" w:usb0="800002BF" w:usb1="38CF7CFA" w:usb2="00000016" w:usb3="00000000"/>
  5787. </w:font>
  5788. <w:font w:name="楷体_GB2312">
  5789. <w:altName w:val="楷体"/>
  5790. <w:charset w:val="86"/>
  5791. <w:family w:val="modern"/>
  5792. <w:pitch w:val="fixed"/>
  5793. <w:sig w:csb0="00040000" w:csb1="00000000" w:usb0="00000001" w:usb1="080E0000" w:usb2="00000010" w:usb3="00000000"/>
  5794. </w:font>
  5795. <w:font w:name="Calibri Light">
  5796. <w:panose1 w:val="020F0302020204030204"/>
  5797. <w:charset w:val="00"/>
  5798. <w:family w:val="swiss"/>
  5799. <w:pitch w:val="variable"/>
  5800. <w:sig w:csb0="000001FF" w:csb1="00000000" w:usb0="E0002AFF" w:usb1="C000247B" w:usb2="00000009" w:usb3="00000000"/>
  5801. </w:font>
  5802. <w:font w:name="Calibri">
  5803. <w:panose1 w:val="020F0502020204030204"/>
  5804. <w:charset w:val="00"/>
  5805. <w:family w:val="swiss"/>
  5806. <w:pitch w:val="variable"/>
  5807. <w:sig w:csb0="000001FF" w:csb1="00000000" w:usb0="E0002AFF" w:usb1="C000247B" w:usb2="00000009" w:usb3="00000000"/>
  5808. </w:font>
  5809. </w:fonts>
  5810. </pkg:xmlData>
  5811. </pkg:part>
  5812. <pkg:part pkg:contentType="application/vnd.openxmlformats-officedocument.extended-properties+xml" pkg:name="/docProps/app.xml" pkg:padding="256">
  5813. <pkg:xmlData>
  5814. <Properties xmlns="http://schemas.openxmlformats.org/officeDocument/2006/extended-properties" xmlns:vt="http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes">
  5815. <Template>Normal.dotm</Template>
  5816. <TotalTime>1</TotalTime>
  5817. <Pages>3</Pages>
  5818. <Words>220</Words>
  5819. <Characters>1260</Characters>
  5820. <Application>Microsoft Office Word</Application>
  5821. <DocSecurity>0</DocSecurity>
  5822. <PresentationFormat/>
  5823. <Lines>10</Lines>
  5824. <Paragraphs>2</Paragraphs>
  5825. <Slides>0</Slides>
  5826. <Notes>0</Notes>
  5827. <HiddenSlides>0</HiddenSlides>
  5828. <MMClips>0</MMClips>
  5829. <ScaleCrop>false</ScaleCrop>
  5830. <Company>Microsoft</Company>
  5831. <LinksUpToDate>false</LinksUpToDate>
  5832. <CharactersWithSpaces>1478</CharactersWithSpaces>
  5833. <SharedDoc>false</SharedDoc>
  5834. <HyperlinksChanged>false</HyperlinksChanged>
  5835. <AppVersion>15.0000</AppVersion>
  5836. </Properties>
  5837. </pkg:xmlData>
  5838. </pkg:part>
  5839. </pkg:package>
添加新批注
在作者公开此批注前,只有你和作者可见。
回复批注