summaryrefslogtreecommitdiff
path: root/fonts/utilities/makefonts/make_pandora
blob: e6973144fb4c05590fd38e436fa0c8777b286d29 (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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
#!/bin/sh

# Generate pk fonts for:
#   pandora with package mfnfss
# Volker Kuhlmann <v.kuhlmann@elec.canterbury.ac.nz>
# 4, 5 Nov 1999

test -f /bin/sh5 && test -z "$RUNNING_SH5" \
  && { UNAMES=`uname -s`; test "x$UNAMES" = xULTRIX; } 2>/dev/null \
  && { RUNNING_SH5=true; export RUNNING_SH5; exec /bin/sh5 $0 ${1+"$@"}; }
unset RUNNING_SH5

test -f /bin/bsh && test -z "$RUNNING_BSH" \
  && { UNAMES=`uname -s`; test "x$UNAMES" = xAIX; } 2>/dev/null \
  && { RUNNING_BSH=true; export RUNNING_BSH; exec /bin/bsh $0 ${1+"$@"}; }
unset RUNNING_BSH

case "$1" in
  -r)
    DVIPS=dvired
    shift
    ;;
  *)
    DVIPS=dvips
    ;;
esac

body()
{
  cat <<-'eof'
	\pagestyle{empty}
	\parindent0in
	\hfuzz=\maxdimen
	\hbadness=10000
	\textheight9.5in
	\textwidth6.5in
	
	\newcommand{\myformula}{\sum a_{b_{c_d}} = c\ }
	\newcommand{\mytext}{text\ }
	\newcommand{\mymath}{$\mathcal{\myformula}\mathrm{\myformula}
		\mathbf{\myformula}\mathsf{\myformula}\mathtt{\myformula}
		\mathnormal{\myformula}\mathit{\myformula}$}
    	\newcommand{\mytextmath}{\mytext\mymath}
	
	\newcommand{\TestSizesSmaller}{{%
		\tiny\mytextmath \scriptsize\mytextmath
		\footnotesize\mytextmath \small\mytextmath}}
	\newcommand{\TestSizesLarger}{{%
	    	\normalsize\mytextmath
	    	\large\mytextmath \Large\mytextmath \LARGE\mytextmath
		\huge\mytextmath \Huge\mytextmath}}
	\newcommand{\TestSizes}{\TestSizesSmaller\TestSizesLarger}

	\newcommand{\TextSmaller}{{%
		\tiny\mytext \scriptsize\mytext
		\footnotesize\mytext \small\mytext}}
	\newcommand{\TextLarger}{{%
	    	\normalsize\mytext
	    	\large\mytext \Large\mytext \LARGE\mytext
		\huge\mytext \Huge\mytext}}
	\newcommand{\TextSizes}{\TextSmaller\TextLarger}

	\newcommand{\TestRM}{rm-family: {\rmfamily\TestSizes}\newline}
	\newcommand{\TestSF}{sf-family: {\sffamily\TestSizes}\newline}
	\newcommand{\TestTT}{tt-family: {\ttfamily\TestSizes}\newline}
	\newcommand{\TestFamilies}{\par\TestRM\TestSF\TestTT\par}
	
	\newcommand{\TestMD}{md-series: {\mdseries\TestFamilies}}
	\newcommand{\TestBF}{bf-series: {\bfseries\TestFamilies}}
	\newcommand{\TestSeries}{\TestBF\TestMD\par}
	
	\newcommand{\TestUP}{up-shape: {\upshape\TestSeries}\par}
	\newcommand{\TestIT}{it-shape: {\itshape\TestSeries}\par}
	\newcommand{\TestSL}{sl-shape: {\slshape\TestSeries}\par}
	\newcommand{\TestSC}{sc-shape: {\scshape\TestSeries}\par}
	\newcommand{\TestShapes}{\TestUP\TestIT\TestSL\TestSC\par}

	\newcommand{\TextShapes}{\let\TestSizes=\TextSizes \TestShapes}
	
	\usepackage{pandora}   % package mfnfss
	%\usepackage{oldgerm}   % package mfnfss
	
	\begin{document}
	%\TestShapes
	\TextShapes
	%\gothfamily\TextShapes \swabfamily\TextShapes \frakfamily\TextShapes
	\end{document}
eof
}

head()
{
  echo '\documentclass['$1'pt]{article}'
  echo '\usepackage['$2']{fontenc}'
}

cd /tmp
mkdir tmp$$ && cd tmp$$ || exit
trap "cd / ; rm -rf /tmp/tmp$$; trap '' 0; exit 0" 0 1 2 15

cat <<-'EOF' >&2

---------------------------------------------------------------------
>>>>>>>>>>>  Generating testfiles for 10pt, 11pt and 12pt. <<<<<<<<<<
---------------------------------------------------------------------
EOF
head 10 OT1 > allcm10.tex
head 11 OT1 > allcm11.tex
head 12 OT1 > allcm12.tex
body >> allcm10.tex
body >> allcm11.tex
body >> allcm12.tex

echo >&2
echo "---------------------------------------------------------------------" >&2
echo ">>>>>>>>>>>  Calling latex...                              <<<<<<<<<<" >&2
echo "---------------------------------------------------------------------" >&2
latex allcm10 >/dev/null
latex allcm11 >/dev/null
latex allcm12 >/dev/null

echo >&2
echo "---------------------------------------------------------------------" >&2
echo ">>>>>>>>>>>  Now, calling $DVIPS to make missing fonts...  <<<<<<<<<<" >&2
echo "---------------------------------------------------------------------" >&2
$DVIPS ${1+"$@"} -f allcm10 > /dev/null
$DVIPS ${1+"$@"} -f allcm11 > /dev/null
$DVIPS ${1+"$@"} -f allcm12 > /dev/null

cd /
rm -rf /tmp/tmp$$