2014/05/28(水)ubuntuインストール (TeX関連)

ubuntuのTeX関連のインストールメモ。

10.04と違って、ちゃんとUTF8でtexソースを書くようになった。

sudo apt-get install texlive-lang-cjk
sudo apt-get install texlive-fonts-recommended
sudo apt-get install texlive-fonts-extra
sudo apt-get install xdvik-ja
sudo apt-get install dvipsk-ja
sudo apt-get install gv

pdfを見るのに、acroreadはパッケージになく、evinceかfirefoxの内蔵ビューアを使うことにする。ところが、明朝になるべきところがゴシックになってしまう問題あり。そこで、 /etc/fonts/local.conf を
<fontconfig>
<match target="pattern">
    <test qual="any" name="family">
        <string>Ryumin</string>
    </test>
    <edit name="family" mode="prepend" binding="strong">
        <string>IPAexMincho</string>
    </edit>
</match>
<match target="pattern">
    <test qual="any" name="family">
        <string>GothicBBB Medium Identity H</string>
    </test>
    <edit name="family" mode="prepend" binding="strong">
        <string>IPAexGothic</string>
    </edit>
</match>
</fontconfig>
の内容で作成。

更に、文書作成関連として、

sudo apt-get install nkf
sudo apt-get install gnuplot
sudo apt-get install gnuplot-x11
sudo apt-get install gnuplot-doc
sudo apt-get install tgif
sudo apt-get install gimp
sudo apt-get install inkscape
sudo apt-get install mimetex
sudo apt-get install latexdiff

あたりを。
OK キャンセル 確認 その他