回答編集履歴
2
説明追加
test
CHANGED
@@ -2,7 +2,11 @@
|
|
2
2
|
|
3
3
|
|
4
4
|
|
5
|
+
- /mathrm という文字がグラフ中にも表示されてしまいます。
|
6
|
+
|
7
|
+
|
8
|
+
|
5
|
-
私のところではうまく動いています。
|
9
|
+
私のところではうまく動いています。```/```ではなく```\```です。
|
6
10
|
|
7
11
|
|
8
12
|
|
1
説明追加
test
CHANGED
@@ -1 +1,27 @@
|
|
1
1
|
[立体に直すには\mathrmを使う。](http://hydro.iis.u-tokyo.ac.jp/~akira/page/Python/contents/plot/graph/text.html)をお読みください。
|
2
|
+
|
3
|
+
|
4
|
+
|
5
|
+
私のところではうまく動いています。不思議ですね。
|
6
|
+
|
7
|
+
|
8
|
+
|
9
|
+
```python
|
10
|
+
|
11
|
+
import matplotlib.pyplot as plt
|
12
|
+
|
13
|
+
fig = plt.figure()
|
14
|
+
|
15
|
+
ax = fig.add_subplot(1, 1, 1)
|
16
|
+
|
17
|
+
ax.plot([1,2,5,2])
|
18
|
+
|
19
|
+
plt.ylabel("密度[$\mathrm{g/cm^3}$]",fontname='MS Gothic',fontsize=10,labelpad=15)
|
20
|
+
|
21
|
+
plt.show()
|
22
|
+
|
23
|
+
```
|
24
|
+
|
25
|
+
実行結果
|
26
|
+
|
27
|
+
![イタリックを止める](629c3622c3bb1b070a4f3c1053b18b72.png)
|