X-Git-Url: http://git.chise.org/gitweb/?p=m17n%2Fm17n-docs.git;a=blobdiff_plain;f=utils%2Flatex.sh;h=b1a6f50709a6ec6a985980982f88b173b463307a;hp=73a6be5983f659dfa5f1b80e03f165843cfc8deb;hb=cddce316732c615cb8e023223c12787955bc9862;hpb=cea45781a047bf922e23002883a9bf1e57bd0712 diff --git a/utils/latex.sh b/utils/latex.sh index 73a6be5..b1a6f50 100755 --- a/utils/latex.sh +++ b/utils/latex.sh @@ -5,27 +5,40 @@ umask 002 USR_JA_DEV=`dirname $1` -TEXINPUTS=`pwd`/styles:`pwd`/data-${USR_JA_DEV}:.: +TEXINPUTS=`pwd`/styles:.: export TEXINPUTS cd $1 LATEX=$2 if [ $USR_JA_DEV = "ja" ] ; then LATEX=platex + SOURCE=m17n-lib-ja sed -e '/documentclass/ s/a4paper/a4paper,twoside/' \ - -e '/M17N ¥é¥¤¥Ö¥é¥ê ¥â¥¸¥å¡¼¥ëº÷°ú/,/pages/ d' \ - -e '/M17N ¥é¥¤¥Ö¥é¥ê ¥Õ¥¡¥¤¥ë¤Î²òÀâ/,/textprop_8c/ d' \ - -e 's/M17N ¥é¥¤¥Ö¥é¥ê ¥Ú¡¼¥¸¤Î²òÀâ/Appendix/' \ - < refman.tex > m17n-lib.tex + -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 's/The M17N Library Page Documentation/Appendix/' \ - < refman.tex > m17n-lib.tex + -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 -${LATEX} m17n-lib.tex +${LATEX} ${SOURCE}.tex if [ "${USR_JA_DEV}" = "ja" ] ; then - nkf -e < m17n-lib.idx > temp.idx; mv temp.idx m17n-lib.idx + nkf -e < ${SOURCE}.idx > temp.idx; mv temp.idx ${SOURCE}.idx fi -makeindex m17n-lib.idx -${LATEX} m17n-lib.tex +makeindex ${SOURCE}.idx +${LATEX} ${SOURCE}.tex +${LATEX} ${SOURCE}.tex