X-Git-Url: http://git.chise.org/gitweb/?p=m17n%2Fm17n-docs.git;a=blobdiff_plain;f=utils%2Flatex.sh;h=6f2fa993547e366b86beedb3745568dd7cb09b32;hp=70b6459a428ce760242c2581f675d16f89c1304f;hb=68e428fbc56b0f22a522a4b8951a47381d99872f;hpb=d93198d780f88fae2c64aa57ad58ff6b7e482dab diff --git a/utils/latex.sh b/utils/latex.sh index 70b6459..6f2fa99 100755 --- a/utils/latex.sh +++ b/utils/latex.sh @@ -1,16 +1,47 @@ #!/bin/sh +# -*- coding: utf-8; -*- # $1: target directory (usr/latex, ja/latex, or dev/latex) # $2: latex commnad (latex, platex, or pdflatex) umask 002 USR_JA_DEV=`dirname $1` -TEXINPUTS=`pwd`/styles:`pwd`/data-${USR_JA_DEV}:.: +TEXINPUTS=`pwd`/styles:.: export TEXINPUTS cd $1 LATEX=$2 -${LATEX} m17n-lib.tex -if [ "${USR_JA_DEV}" = "ja" ] ; then - nkf -e < m17n-lib.idx > temp.idx; mv temp.idx m17n-lib.idx +if [ $USR_JA_DEV = "ja" ] ; then + LATEX=platex + if [ -d /usr/local/teTeX/bin ] ; then + PATH=/usr/local/teTeX/bin:$PATH + fi + SOURCE=m17n-lib-ja + sed -e '/documentclass/ s/a4paper/a4paper,twoside/' \ + -e '/m17n ライブラリ モジュール索引/,/pages/ d' \ + -e '/m17n ライブラリ ファイル/,/textprop_8c/ d' \ + -e '/m17n ライブラリ Directory Documentation/,/dir_000001/ d' \ + -e 's/m17n ライブラリ ページ/Appendix/' \ + < refman.tex > ${SOURCE}.tex +elif [ $USR_JA_DEV = "dev" ] ; then + SOURCE=m17n-lib-dev + sed -e '/documentclass/ s/a4paper/a4paper,twoside/' \ + -e '/The m17n Library Module Index/,/pages/ d' \ + -e '/The m17n Library File Documentation/,/textprop_8c/ d' \ + -e '/The m17n Library Directory Documentation/,/dir_000001/ d' \ + -e 's/The m17n Library Page Documentation/Appendix/' \ + < refman.tex > ${SOURCE}.tex +else + SOURCE=m17n-lib + sed -e '/documentclass/ s/a4paper/a4paper,twoside/' \ + -e '/The m17n Library Module Index/,/pages/ d' \ + -e '/The m17n Library File Documentation/,/textprop_8c/ d' \ + -e '/The m17n Library Directory Documentation/,/dir_000001/ d' \ + -e 's/The m17n Library Page Documentation/Appendix/' \ + < refman.tex > ${SOURCE}.tex fi -makeindex m17n-lib.idx -${LATEX} m17n-lib.tex +${LATEX} ${SOURCE}.tex +#if [ "${USR_JA_DEV}" = "ja" ] ; then +# nkf -e < ${SOURCE}.idx > temp.idx; mv temp.idx ${SOURCE}.idx +#fi +/usr/bin/makeindex ${SOURCE}.idx +${LATEX} ${SOURCE}.tex +${LATEX} ${SOURCE}.tex