#!/bin/sh
#
# Create HTML and PDF output without toc
# One argument: Markdown source with no extension
# H. Conrad Cunningham
# Revised: 2017-11-07 (for Pandoc 2.0) etc.
#
# pandoc --self-contained --latexmathml     -o $1.html  $1.md 
pandoc --self-contained --mathml -V lang="en" -o $1.html  $1.md 
pandoc --self-contained -H nonumber.latex -o $1.tex   $1.md
pdflatex $1.tex
pdflatex $1.tex
rm $1.aux $1.log $1.out

