質問編集履歴

2

すみません、cloud9上にフォントを新たにインストールする方法を教えていただけますでしょうか?(・_・;)

2018/05/15 13:38

投稿

space-hippy
space-hippy

スコア136

test CHANGED
File without changes
test CHANGED
File without changes

1

さらに調査し、dotファイルにutf-8の記述可能に

2018/05/15 13:38

投稿

space-hippy
space-hippy

スコア136

test CHANGED
File without changes
test CHANGED
@@ -1,4 +1,48 @@
1
+ dot言語
2
+
3
+
4
+
5
+ digraph G {
6
+
7
+ node[fontname="MS UI GOTHIC",charset="UTF-8"];
8
+
9
+ 28[shape="Mrecord",label="{スズキ | a}"];
10
+
11
+ 54[shape="Mrecord",label="{佐藤 | c}"];
12
+
13
+ 65[shape="Mrecord",label="{yamada | f}"];
14
+
15
+ 66[shape="Mrecord",label="{yamaguchi | g}"];
16
+
17
+ 55[shape="Mrecord",label="{ito | b}"];
18
+
19
+ 68[shape="Mrecord",label="{yamamoto | h}"];
20
+
21
+ 69[shape="Mrecord",label="{小林 | こば}"];
22
+
23
+ 70[shape="Mrecord",label="{c | c}"];
24
+
25
+ 28 -> 54;
26
+
27
+ 54 -> 65;
28
+
29
+ 54 -> 66;
30
+
31
+ 28 -> 55;
32
+
33
+ 55 -> 68;
34
+
35
+ 28 -> 69;
36
+
37
+ 69 -> 70;
38
+
39
+ }
40
+
41
+ 追記
42
+
43
+ 何とかこのように出力させるところまで漕ぎつきましたが、それでも文字化けは解消しません
44
+
1
- ### 前提・実現したいこと
45
+ ```### 前提・実現したいこと
2
46
 
3
47
 
4
48