blob: b9c9da261f097b36b51ee41932dd2cd468120b52 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
#! /bin/sh
# build_web_page.sh
# Run the python script using various styles needed for the html page.
# 2010-Feb-16 Jim Hefferon
# Regular LaTeX article
python style_showcase.py -t latex_article
# AMS article
python style_showcase.py -t amsart -d amsart
# KOMA-Script article
python style_showcase.py -t scrarctl -d scrartcl
# acmconf article
python style_showcase.py -t acmconf -d acmconf -e"\\ConferenceShortName{test}" -e"\\ConferenceName{Test}"
# IEEEtran article
python style_showcase.py -t IEEEtran -d IEEEtran
# aastex
python style_showcase.py -t aastex -d aastex -s"10pt,preprint"
# elsarticle
python style_showcase.py -t elsarticle -d elsarticle
# ijmart
python style_showcase.py -t ijmart -d ijmart
|