2006-12-12 08:04:09 +01:00
|
|
|
#!/bin/sh -e
|
|
|
|
|
2006-12-28 03:20:09 +01:00
|
|
|
REQUIRED="pdflatex"
|
2007-01-08 20:55:34 +01:00
|
|
|
SYNOPSIS="converts markdown-formatted text to PDF, using pdflatex."
|
2006-12-12 08:04:09 +01:00
|
|
|
|
|
|
|
### common.sh
|
|
|
|
|
2006-12-22 21:16:03 +01:00
|
|
|
### tempdir.sh
|
2006-12-12 08:04:09 +01:00
|
|
|
|
2006-12-22 21:16:03 +01:00
|
|
|
texname=output
|
|
|
|
logfile=$THIS_TEMPDIR/log
|
2007-01-08 20:55:34 +01:00
|
|
|
origdir=$(pwd)
|
2006-12-12 08:04:09 +01:00
|
|
|
|
2007-01-08 20:55:34 +01:00
|
|
|
pandoc -s -r markdown -w latex "$@" -o - >$THIS_TEMPDIR/$texname.tex \
|
|
|
|
2>$logfile
|
2006-12-12 08:04:09 +01:00
|
|
|
|
2007-01-08 20:55:34 +01:00
|
|
|
if [ "$OUTPUT" = "-" ]; then
|
|
|
|
firstinfile="$(echo $ARGS | sed -ne '1p')"
|
|
|
|
firstinfilebase="${firstinfile%.*}"
|
|
|
|
destname="${firstinfilebase:-stdin}.pdf"
|
|
|
|
else
|
|
|
|
destname="$OUTPUT"
|
|
|
|
fi
|
2006-12-12 08:04:09 +01:00
|
|
|
|
|
|
|
(
|
|
|
|
cd $THIS_TEMPDIR
|
2007-01-08 20:55:34 +01:00
|
|
|
TEXINPUTS=$TEXINPUTS:$origdir pdflatex -interaction=batchmode \
|
|
|
|
$texname.tex >/dev/null 2>&1 || {
|
|
|
|
errorcode=$?
|
|
|
|
err "${THIS}: pdfLaTeX error context:"
|
2007-01-07 06:12:56 +01:00
|
|
|
sed -ne '/^!/,/^[[:space:]]*$/p' \
|
2007-01-07 06:09:07 +01:00
|
|
|
-ne '/^[Ll]a[Tt]e[Xx] [Ww]arning/,/^[[:space:]]*$/p' \
|
|
|
|
-ne '/^[Ee]rror/,/^[[:space:]]*$/p' $texname.log >&2
|
2006-12-22 21:16:03 +01:00
|
|
|
if grep -q "File \`ucs.sty' not found" $texname.log; then
|
2007-01-07 06:09:07 +01:00
|
|
|
err "${THIS}: Please install the 'unicode' package from CTAN:"
|
|
|
|
err " http://www.ctan.org/tex-archive/macros/latex/contrib/unicode/"
|
2006-12-22 21:16:03 +01:00
|
|
|
fi
|
|
|
|
if grep -q "File \`fancyvrb.sty' not found" $texname.log; then
|
2007-01-07 06:09:07 +01:00
|
|
|
err "${THIS}: Please install the 'fancyvrb' package from CTAN:"
|
|
|
|
err " http://www.ctan.org/tex-archive/macros/latex/contrib/fancyvrb/"
|
2006-12-12 08:04:09 +01:00
|
|
|
fi
|
2007-01-08 20:55:34 +01:00
|
|
|
exit $errorcode
|
|
|
|
}
|
2006-12-22 21:16:03 +01:00
|
|
|
) || exit $?
|
2006-12-12 08:04:09 +01:00
|
|
|
|
|
|
|
is_target_exists=
|
2006-12-22 21:16:03 +01:00
|
|
|
if [ -f "$destname" ]; then
|
2006-12-12 08:04:09 +01:00
|
|
|
is_target_exists=1
|
2006-12-22 21:16:03 +01:00
|
|
|
mv "$destname" "$destname~"
|
2006-12-12 08:04:09 +01:00
|
|
|
fi
|
|
|
|
|
2006-12-22 21:16:03 +01:00
|
|
|
mv -f $THIS_TEMPDIR/$texname.pdf "$destname"
|
2006-12-12 08:04:09 +01:00
|
|
|
|
2006-12-22 21:16:03 +01:00
|
|
|
errn "Created $destname"
|
2006-12-12 08:04:09 +01:00
|
|
|
[ -z "$is_target_exists" ] || {
|
2006-12-22 21:16:03 +01:00
|
|
|
errn " (previous file has been backed up as $destname~)"
|
2006-12-12 08:04:09 +01:00
|
|
|
}
|
|
|
|
err .
|