nkf
ikeda@ikeda-VirtualBox:~$ sudo apt-get install nkf
Ubuntu 上の日本語TeXのデフォルトの日本語エンコードはEUC.
TeX ファイルなどはEUCに変換しておく. nkf -e foosjis.tex >foo.tex
つぎのようなシェルスクリプトを用意しておくと便利かも
toeuc
#!/bin/csh
foreach i ($*)
if ( -f $i ) then
nkf -euc $i > /var/tmp/toeuc.$$
cp /var/tmp/toeuc.$$ $i
rm -f /var/tmp/toeuc.$$
endif
end
tosjis
#!/bin/csh
foreach i ($*)
if ( -f $i ) then
nkf -sjis $i > /var/tmp/tosjis.$$
cp /var/tmp/tosjis.$$ $i
rm -f /var/tmp/tosjis.$$
endif
end