4c2f99b0
梁保满
修改组卷
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
|
<html xmlns="http://www.w3.org/1998/Math/MathML">
<head>
<meta charset="UTF-8"/>
<title>MathML示例</title>
<style>
math {
size: 14px;
}
</style>
<script id="MathJax-script" async src="tex-mml-chtml.js"></script>
<script>
MathJax = {
tex: {
inlineMath: [['$', '$']]
}
};
</script>
</head>
<body>
<p>一、我是题干我是题干我是题干我是题干我是题干我是题干我是题干</p>
<p>A.
<math xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math" xmlns:mml="http://www.w3.org/1998/Math/MathML"><mo>(</mo><mfrac><mrow><mn>1</mn></mrow><mrow><mn>2</mn></mrow></mfrac><msup><mrow><mo>)</mo></mrow><mrow><mo>-</mo><mn>1</mn></mrow></msup><mo>+</mo><mn>3</mn><mi>t</mi><mi>a</mi><mi>n</mi><mn>30</mn><mo>°</mo><mo>-</mo><mo>(</mo><msqrt><mn>3</mn></msqrt><mo>-</mo><mi>π</mi><msup><mrow><mo>)</mo></mrow><mrow><mn>0</mn></mrow></msup><mo>-</mo><mroot><mrow><mn>8</mn></mrow><mrow><mn>3</mn></mrow></mroot></math>
</p>
<p>B. 2$a$<sup>2</sup>
<math xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math" xmlns:mml="http://www.w3.org/1998/Math/MathML">
<mfenced open="{" close="">
<mrow>
<mtable columnalign="left">
<mtr>
<mtd>
<mn>4</mn>
<mi>x</mi>
<mo>-</mo>
<mn>6</mn>
<mo><</mo>
<mn>5</mn>
<mo>(</mo>
<mi>x</mi>
<mo>-</mo>
<mn>1</mn>
<mo>)</mo>
<mo>①</mo>
</mtd>
</mtr>
<mtr>
<mtd>
<mfrac>
<mrow>
<mi>x</mi>
</mrow>
<mrow>
<mn>3</mn>
</mrow>
</mfrac>
<mo><</mo>
<mn>2</mn>
<mo>-</mo>
<mfrac>
<mrow>
<mi>x</mi>
<mo>-</mo>
<mn>2</mn>
</mrow>
<mrow>
<mn>6</mn>
</mrow>
</mfrac>
<mi>②</mi>
</mtd>
</mtr>
</mtable>
</mrow>
</mfenced>
</math>
</p>
<p>
C. <math xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math" xmlns:mml="http://www.w3.org/1998/Math/MathML"><mi>y</mi><mo>=</mo><mfrac><mrow><mn>2</mn></mrow><mrow><mi>x</mi></mrow></mfrac></math>
</p>
</body>
</html>
|