mirror of https://github.com/python/cpython
Add easy-to-use support for A4 paper.
This commit is contained in:
parent
efad443351
commit
3504952781
|
@ -17,7 +17,7 @@ L2H_INIT_FILE=$TOPDIR/perl/l2hinit.perl
|
||||||
|
|
||||||
# This is needed to support kpathsea based TeX installations. Others are
|
# This is needed to support kpathsea based TeX installations. Others are
|
||||||
# not supported. ;-)
|
# not supported. ;-)
|
||||||
TEXINPUTS=`dirname $MYDIR`/texinputs:$TEXINPUTS
|
TEXINPUTS=$TOPDIR/texinputs:$TEXINPUTS
|
||||||
export TEXINPUTS
|
export TEXINPUTS
|
||||||
|
|
||||||
LOGFILE=/usr/tmp/mkhowto-$LOGNAME-$$.how
|
LOGFILE=/usr/tmp/mkhowto-$LOGNAME-$$.how
|
||||||
|
@ -157,10 +157,14 @@ while [ "$1" ] ; do
|
||||||
-H|--help|--hel|--he)
|
-H|--help|--hel|--he)
|
||||||
usage 0
|
usage 0
|
||||||
;;
|
;;
|
||||||
-a|--address|--addres|--addre|-addr|--add|--ad|--a)
|
-a|--address|--addres|--addre|-addr|--add|--ad)
|
||||||
ADDRESS="$2"
|
ADDRESS="$2"
|
||||||
shift 2
|
shift 2
|
||||||
;;
|
;;
|
||||||
|
--a4)
|
||||||
|
TEXINPUTS=$TOPDIR/paper-a4:$TEXINPUTS
|
||||||
|
shift 1
|
||||||
|
;;
|
||||||
--link|--lin|--li)
|
--link|--lin|--li)
|
||||||
LINK="$2"
|
LINK="$2"
|
||||||
shift 2
|
shift 2
|
||||||
|
|
Loading…
Reference in New Issue