The template provided here can be used with latex and/or pdflatex.

use with latex:
----------------
 #run latex and bibtex to produce a dvi-style
 latex sps2007 
 bibtex sps2007
 latex sps2007 #needed TWICE to get references right
 latex sps2007 #

 #produce postscript that will display properly when converted to pdf
 dvips -Ppdf -osps2007.ps sps2007

 #make pdf by using Adobe Acrobat Distiller (commercial program
 #available on windows and on some unix platforms) or by using the 
 #following command
 ps2pdf -sPAPERSIZE=a4 sps2007.ps #don't forget: A4

 #use either of the following commands to check if your pdf 
 #displays and prints correctly:
   acroread sps2007.pdf
   xpdf  sps2007.pdf


use with pdflatex:
----------------
 #note: pdflatex only supports a limited number of picture formats
 #in particular it does NOT support eps-figures. However, you can
 #easily convert eps-figures to pdf-figures using the command epstopdf
 #which is part of the ghostscript distribution

 #run latex and bibtex to produce a dvi-style
 pdflatex sps2007
 bibtex sps2007
 pdflatex sps2007 #needed TWICE to get references right 
 pdflatex sps2007 #

 #use either of the following commands to check if your pdf 
 #displays and prints correctly:
   acroread sps2007.pdf
   xpdf  sps2007.pdf