1. | Ubuntuにはフォントフォルダを開くメニューがないらしい。 (※CentOSにはあったのでちょっと意外)
で /usr/share/fonts/truetype/ を開きます。 |
||
2. | 「mona」とか「kochi」とかフォルダがあるので同じように「ms」というフォルダを作ります。 |
||
3. | XPからパクってきたフォント「msgothic.ttc」「msmincho.ttc」をコピーします。 |
||
4. | フォントキャッシュを更新します。
|
<fontconfig> <match target="pattern"> <test qual="any" name="family"> <string>sans-serif</string> </test> <edit name="family" mode="prepend" binding="strong"> <string>MSPGothic</string> <string>IPAMonaPGothic</string> <string>IPAPGothic</string> <string>VL PGothic</string> <string>Sazanami Gothic</string> <string>Kochi Gothic</string> </edit> </match> <match target="pattern"> <test qual="any" name="family"> <string>serif</string> </test> <edit name="family" mode="prepend" binding="strong"> <string>MSPMincho</string> <string>IPAMonaPMincho</string> <string>IPAPMincho</string> <string>Sazanami Mincho</string> <string>Kochi Mincho</string> </edit> </match> <match target="pattern"> <test qual="any" name="family"> <string>monospace</string> </test> <edit name="family" mode="prepend" binding="strong"> <string>MSGothic</string> <string>IPAMonaGothic</string> <string>IPAGothic</string> <string>VL Gothic</string> <string>Sazanami Gothic</string> <string>Kochi Gothic</string> </edit> </match> </fontconfig> |