#!/bin/sh
## Script to build DVI-output from LaTeX source
## You have to install the tetex packages

dir=200205_magdeburg
file=ltm

cp -a /usr/share/doc/med-doc/talks/${dir}/${file}.tex.gz /tmp
cp -a /usr/share/doc/med-doc/talks/mgp.sty /tmp
gunzip /tmp/${file}.tex.gz
cd /tmp
latex ${file}.tex

echo "DVI build succeded.  You can print it via 'dvips /tmp/${file}.dvi'".
