diff options
Diffstat (limited to 'Master/texmf-dist/fonts/source/public/tipa')
93 files changed, 15425 insertions, 0 deletions
diff --git a/Master/texmf-dist/fonts/source/public/tipa/gentfm.sh b/Master/texmf-dist/fonts/source/public/tipa/gentfm.sh new file mode 100644 index 00000000000..f7f3dea67ae --- /dev/null +++ b/Master/texmf-dist/fonts/source/public/tipa/gentfm.sh @@ -0,0 +1,34 @@ +#!/bin/sh + +modename="ljfour" + +tipafonts="tipa10.mf tipa12.mf tipa17.mf tipa8.mf tipa9.mf\ + tipabx10.mf tipabx12.mf tipabx8.mf tipabx9.mf\ + tipasl10.mf tipasl12.mf tipasl8.mf tipasl9.mf\ + tipass10.mf tipass12.mf tipass17.mf tipass8.mf tipass9.mf\ + tipab10.mf tipabs10.mf tipasb10.mf tipasi10.mf\ + tipatt10.mf tipatt12.mf tipatt8.mf tipatt9.mf tipats10.mf" + +tipxfonts="tipx10.mf tipx12.mf tipx17.mf tipx8.mf tipx9.mf\ + tipxbx10.mf tipxbx12.mf tipxbx8.mf tipxbx9.mf\ + tipxsl10.mf tipxsl12.mf tipxsl8.mf tipxsl9.mf\ + tipxss10.mf tipxss12.mf tipxss17.mf tipxss8.mf tipxss9.mf\ + tipxb10.mf tipxbs10.mf tipxsb10.mf tipxsi10.mf\ + tipxtt10.mf tipxtt12.mf tipxtt8.mf tipxtt9.mf tipxts10.mf" + +xipafonts="xipa10.mf xipab10.mf xipasl10.mf xipass10.mf\ + xipabs10 xipasi10 xipasb10" + +xipxfonts="xipx10.mf xipxb10.mf xipxsl10.mf xipxss10.mf\ + xipxbs10 xipxsi10 xipxsb10" + +allfonts="$tipafonts $tipxfonts $xipafonts $xipxfonts" + +for i in $allfonts +do + mf '\mode='$modename'; input' $i +done + +install -c -m 644 *.tfm ../tfm + +exit 0 diff --git a/Master/texmf-dist/fonts/source/public/tipa/gentipa.sh b/Master/texmf-dist/fonts/source/public/tipa/gentipa.sh new file mode 100644 index 00000000000..2da32b7d62a --- /dev/null +++ b/Master/texmf-dist/fonts/source/public/tipa/gentipa.sh @@ -0,0 +1,91 @@ +#!/bin/sh + +# gentipa.sh --- a shell script for producing TIPA parameter files. +# +# 1996/06/24 first version +# 2001/11/07 bs10 (= BXSL10), sb10 (=SSBX10), si10 (=SSSL10) added. +# 2001/12/21 tt8, tt9, tt10, tt12, ts10 (=SLTT10) added. + +AWK=gawk + +DATE="2003/01/01" +VERSION="1.2" + +PARAMFILE="tipaprm.def" + +FILES="tipa8 tipa9 tipa10 tipa12 tipa17 tipasl8 tipasl9 tipasl10 tipasl12 \ + tipabx8 tipabx9 tipabx10 tipabx12 tipass8 tipass9 tipass10 tipass12 \ + tipass17 tipab10 tipabs10 tipasb10 tipasi10 \ + tipatt8 tipatt9 tipatt10 tipatt12 tipats10" + +for FNAME in $FILES +do + case "$FNAME" in + tipa8) NUM=3; FID="TIPA"; FSIZE="8"; FDESC="Roman 8" ;; + tipa9) NUM=4; FID="TIPA"; FSIZE="9"; FDESC="Roman 9" ;; + tipa10) NUM=5; FID="TIPA"; FSIZE="10";FDESC="Roman 10" ;; + tipa12) NUM=6; FID="TIPA"; FSIZE="12";FDESC="Roman 12" ;; + tipa17) NUM=7; FID="TIPA"; FSIZE="17.28";FDESC="Roman 17.28" ;; + tipasl8) NUM=8; FID="TIPASL";FSIZE="8"; FDESC="Slanted Roman 8" ;; + tipasl9) NUM=9; FID="TIPASL";FSIZE="9"; FDESC="Slanted Roman 9" ;; + tipasl10) NUM=10;FID="TIPASL";FSIZE="10";FDESC="Slanted Roman 10" ;; + tipasl12) NUM=11;FID="TIPASL";FSIZE="12";FDESC="Slanted Roman 12" ;; + tipabx8) NUM=12;FID="TIPABX";FSIZE="8"; FDESC="Bold Extended Roman 8" ;; + tipabx9) NUM=13;FID="TIPABX";FSIZE="9"; FDESC="Bold Extended Roman 9" ;; + tipabx10) NUM=14;FID="TIPABX";FSIZE="10";FDESC="Bold Extended Roman 10" ;; + tipabx12) NUM=15;FID="TIPABX";FSIZE="12";FDESC="Bold Extended Roman 12" ;; + tipass8) NUM=16;FID="TIPASS";FSIZE="8"; FDESC="Sans Serif 8" ;; + tipass9) NUM=17;FID="TIPASS";FSIZE="9"; FDESC="Sans Serif 9" ;; + tipass10) NUM=18;FID="TIPASS";FSIZE="10";FDESC="Sans Serif 10" ;; + tipass12) NUM=19;FID="TIPASS";FSIZE="12";FDESC="Sans Serif 12" ;; + tipass17) NUM=20;FID="TIPASS";FSIZE="17.28";FDESC="Sans Serif 17.28" ;; + tipab10) NUM=21;FID="TIPAB"; FSIZE="10";FDESC="Bold Roman 10" ;; + tipabs10) NUM=22;FID="TIPABS";FSIZE="10";FDESC="Bold Extended Slanted Roman 10" ;; + tipasb10) NUM=23;FID="TIPASB";FSIZE="10";FDESC="Sans Serif Bold Extended 10" ;; + tipasi10) NUM=24;FID="TIPASI";FSIZE="10";FDESC="Sans Serif Slanted 10" ;; + tipatt8) NUM=25;FID="TIPATT";FSIZE="8"; FDESC="Typewriter Text 8" ;; + tipatt9) NUM=26;FID="TIPATT";FSIZE="9"; FDESC="Typewriter Text 9" ;; + tipatt10) NUM=27;FID="TIPATT";FSIZE="10";FDESC="Typewriter Text 10" ;; + tipatt12) NUM=28;FID="TIPATT";FSIZE="12";FDESC="Typewriter Text 12" ;; + tipats10) NUM=29;FID="TIPATS";FSIZE="10";FDESC="Typewriter Text Slanted 10" ;; + esac + + echo "% $FNAME.mf: TIPA $FDESC point parameter file" > $FNAME.mf + echo "% Copyright 1996-2003 FUKUI Rei" >> $FNAME.mf + echo "%" >> $FNAME.mf + echo "% This program may be distributed and/or modified under the" >> $FNAME.mf + echo "% conditions of the LaTeX Project Public License, either version 1.2" >> $FNAME.mf + echo "% of this license or (at your option) any later version." >> $FNAME.mf + echo "% The latest version of this license is in" >> $FNAME.mf + echo "% http://www.latex-project.org/lppl.txt" >> $FNAME.mf + echo "% and version 1.2 or later is part of all distributions of LaTeX " >> $FNAME.mf + echo "% version 1999/12/01 or later." >> $FNAME.mf + echo "%" >> $FNAME.mf + echo "% This program consists of all files listed in Manifest.txt." >> $FNAME.mf + echo "%" >> $FNAME.mf + echo "% Version $VERSION $DATE" >> $FNAME.mf + echo "%" >> $FNAME.mf + echo '% This file is based on:' >> $FNAME.mf + echo '% Computer Modern font series by D. E. Knuth and' >> $FNAME.mf + echo '% TSIPA by KOBAYASHI Hajime, FUKUI Rei and SHIRAKAWA Shun.' >> $FNAME.mf + echo '' >> $FNAME.mf + echo 'if unknown cmbase: input cmbase fi' >> $FNAME.mf + echo 'if unknown tipabase: input tipabase fi' >> $FNAME.mf + echo '' >> $FNAME.mf + echo "font_identifier:=\"$FID\"; font_size ${FSIZE}pt#;" >> $FNAME.mf + echo '' >> $FNAME.mf + echo 'Times_Compat:=false;' >> $FNAME.mf + echo 'if Times_Compat: input tipatr fi' >> $FNAME.mf + echo '' >> $FNAME.mf + $AWK "{if (\$1 == \"p\") { + if (\$$NUM == \"0\") print \$2 \"#:=\" \$$NUM \"pt#;\";\ + else print \$2 \"#:=\" \$$NUM \"/36pt#;\";\ + }\ + else if (\$1 == \"P\") print \$2 \"#:=\" \$$NUM \"pt#;\";\ + else if (\$1 == \"n\") print \$2 \":=\" \$$NUM \";\";}" $PARAMFILE |\ + sed 's/SQ/sqrt/' | sed 's/SC12/sind 12\/cosd 12/' >> $FNAME.mf + echo '' >> $FNAME.mf + echo 'generate tipa % switch to the driver file' >> $FNAME.mf +done + +exit 0 diff --git a/Master/texmf-dist/fonts/source/public/tipa/gentipx.sh b/Master/texmf-dist/fonts/source/public/tipa/gentipx.sh new file mode 100644 index 00000000000..3b76a1e0300 --- /dev/null +++ b/Master/texmf-dist/fonts/source/public/tipa/gentipx.sh @@ -0,0 +1,90 @@ +#!/bin/sh + +# gentipx.sh --- a shell script for producing TIPX parameter files. +# +# 2001/11/21 first version +# 2001/12/21 tt8, tt9, tt10, tt12, ts10 (=SLTT10) added. + +AWK=gawk + +DATE="2003/01/01" +VERSION="1.2" + +PARAMFILE="tipaprm.def" + +FILES="tipx8 tipx9 tipx10 tipx12 tipx17 tipxsl8 tipxsl9 tipxsl10 tipxsl12 \ + tipxbx8 tipxbx9 tipxbx10 tipxbx12 tipxss8 tipxss9 tipxss10 tipxss12 \ + tipxss17 tipxb10 tipxbs10 tipxsb10 tipxsi10 \ + tipxtt8 tipxtt9 tipxtt10 tipxtt12 tipxts10" + +for FNAME in $FILES +do + case "$FNAME" in + tipx8) NUM=3; FID="TIPX"; FSIZE="8"; FDESC="Roman 8" ;; + tipx9) NUM=4; FID="TIPX"; FSIZE="9"; FDESC="Roman 9" ;; + tipx10) NUM=5; FID="TIPX"; FSIZE="10";FDESC="Roman 10" ;; + tipx12) NUM=6; FID="TIPX"; FSIZE="12";FDESC="Roman 12" ;; + tipx17) NUM=7; FID="TIPX"; FSIZE="17.28";FDESC="Roman 17.28" ;; + tipxsl8) NUM=8; FID="TIPXSL";FSIZE="8"; FDESC="Slanted Roman 8" ;; + tipxsl9) NUM=9; FID="TIPXSL";FSIZE="9"; FDESC="Slanted Roman 9" ;; + tipxsl10) NUM=10;FID="TIPXSL";FSIZE="10";FDESC="Slanted Roman 10" ;; + tipxsl12) NUM=11;FID="TIPXSL";FSIZE="12";FDESC="Slanted Roman 12" ;; + tipxbx8) NUM=12;FID="TIPXBX";FSIZE="8"; FDESC="Bold Extended Roman 8" ;; + tipxbx9) NUM=13;FID="TIPXBX";FSIZE="9"; FDESC="Bold Extended Roman 9" ;; + tipxbx10) NUM=14;FID="TIPXBX";FSIZE="10";FDESC="Bold Extended Roman 10" ;; + tipxbx12) NUM=15;FID="TIPXBX";FSIZE="12";FDESC="Bold Extended Roman 12" ;; + tipxss8) NUM=16;FID="TIPXSS";FSIZE="8"; FDESC="Sans Serif 8" ;; + tipxss9) NUM=17;FID="TIPXSS";FSIZE="9"; FDESC="Sans Serif 9" ;; + tipxss10) NUM=18;FID="TIPXSS";FSIZE="10";FDESC="Sans Serif 10" ;; + tipxss12) NUM=19;FID="TIPXSS";FSIZE="12";FDESC="Sans Serif 12" ;; + tipxss17) NUM=20;FID="TIPXSS";FSIZE="17.28";FDESC="Sans Serif 17.28" ;; + tipxb10) NUM=21;FID="TIPXB"; FSIZE="10";FDESC="Bold Roman 10" ;; + tipxbs10) NUM=22;FID="TIPXBS";FSIZE="10";FDESC="Bold Extended Slanted Roman 10" ;; + tipxsb10) NUM=23;FID="TIPXSB";FSIZE="10";FDESC="Sans Serif Bold Extended 10" ;; + tipxsi10) NUM=24;FID="TIPXSI";FSIZE="10";FDESC="Sans Serif Slanted 10" ;; + tipxtt8) NUM=25;FID="TIPXTT";FSIZE="8"; FDESC="Typewriter Text 8" ;; + tipxtt9) NUM=26;FID="TIPXTT";FSIZE="9"; FDESC="Typewriter Text 9" ;; + tipxtt10) NUM=27;FID="TIPXTT";FSIZE="10";FDESC="Typewriter Text 10" ;; + tipxtt12) NUM=28;FID="TIPXTT";FSIZE="12";FDESC="Typewriter Text 12" ;; + tipxts10) NUM=29;FID="TIPXTS";FSIZE="10";FDESC="Typewriter Text Slanted 10" ;; + esac + + echo "% $FNAME.mf: TIPX $FDESC point parameter file" > $FNAME.mf + echo "% Copyright 1996-2003 FUKUI Rei" >> $FNAME.mf + echo "%" >> $FNAME.mf + echo "% This program may be distributed and/or modified under the" >> $FNAME.mf + echo "% conditions of the LaTeX Project Public License, either version 1.2" >> $FNAME.mf + echo "% of this license or (at your option) any later version." >> $FNAME.mf + echo "% The latest version of this license is in" >> $FNAME.mf + echo "% http://www.latex-project.org/lppl.txt" >> $FNAME.mf + echo "% and version 1.2 or later is part of all distributions of LaTeX " >> $FNAME.mf + echo "% version 1999/12/01 or later." >> $FNAME.mf + echo "%" >> $FNAME.mf + echo "% This program consists of all files listed in Manifest.txt." >> $FNAME.mf + echo "%" >> $FNAME.mf + echo "% Version $VERSION $DATE FUKUI Rei" >> $FNAME.mf + echo "%" >> $FNAME.mf + echo '% This file is based on:' >> $FNAME.mf + echo '% Computer Modern font series by D. E. Knuth and' >> $FNAME.mf + echo '% TSIPA by KOBAYASHI Hajime, FUKUI Rei and SHIRAKAWA Shun.' >> $FNAME.mf + echo '' >> $FNAME.mf + echo 'if unknown cmbase: input cmbase fi' >> $FNAME.mf + echo 'if unknown tipabase: input tipabase fi' >> $FNAME.mf + echo '' >> $FNAME.mf + echo "font_identifier:=\"$FID\"; font_size ${FSIZE}pt#;" >> $FNAME.mf + echo '' >> $FNAME.mf + echo 'Times_Compat:=false;' >> $FNAME.mf + echo 'if Times_Compat: input tipatr fi' >> $FNAME.mf + echo '' >> $FNAME.mf + $AWK "{if (\$1 == \"p\") { + if (\$$NUM == \"0\") print \$2 \"#:=\" \$$NUM \"pt#;\";\ + else print \$2 \"#:=\" \$$NUM \"/36pt#;\";\ + }\ + else if (\$1 == \"P\") print \$2 \"#:=\" \$$NUM \"pt#;\";\ + else if (\$1 == \"n\") print \$2 \":=\" \$$NUM \";\";}" $PARAMFILE |\ + sed 's/SQ/sqrt/' | sed 's/SC12/sind 12\/cosd 12/' >> $FNAME.mf + echo '' >> $FNAME.mf + echo 'generate tipx % switch to the driver file' >> $FNAME.mf +done + +exit 0 diff --git a/Master/texmf-dist/fonts/source/public/tipa/genxipa.sh b/Master/texmf-dist/fonts/source/public/tipa/genxipa.sh new file mode 100644 index 00000000000..2a1320993f9 --- /dev/null +++ b/Master/texmf-dist/fonts/source/public/tipa/genxipa.sh @@ -0,0 +1,67 @@ +#!/bin/sh + +# genxipa.sh --- a shell script for producing TIPA parameter files. +# +# 1996/06/24 first version +# + +AWK=gawk + +DATE="2003/01/01" +VERSION="1.2" + +PARAMFILE="xipaprm.def" + +FILES="xipa10 xipasl10 xipab10 xipabs10 xipass10 xipasi10 xipasb10" + +for FNAME in $FILES +do + case "$FNAME" in + xipa10) NUM=3;FID="XIPA"; FSIZE="10";FDESC="Roman 10" ;; + xipasl10) NUM=4;FID="XIPASL";FSIZE="10";FDESC="Slanted Roman 10" ;; + xipab10) NUM=5;FID="XIPAB"; FSIZE="10";FDESC="Bold Roman 10" ;; + xipabs10) NUM=6;FID="XIPABS";FSIZE="10";FDESC="Bold Slanted Roman 10" ;; + xipass10) NUM=7;FID="XIPASS";FSIZE="10";FDESC="Sans Serif 10" ;; + xipasi10) NUM=8;FID="XIPASI";FSIZE="10";FDESC="Sans Serif Slanted 10" ;; + xipasb10) NUM=9;FID="XIPASB";FSIZE="10";FDESC="Sans Serif Bold 10" ;; + esac + + echo "% $FNAME.mf: XIPA $FDESC point parameter file" > $FNAME.mf + echo "% Copyright 1996-2003 FUKUI Rei" >> $FNAME.mf + echo "%" >> $FNAME.mf + echo "% This program may be distributed and/or modified under the" >> $FNAME.mf + echo "% conditions of the LaTeX Project Public License, either version 1.2" >> $FNAME.mf + echo "% of this license or (at your option) any later version." >> $FNAME.mf + echo "% The latest version of this license is in" >> $FNAME.mf + echo "% http://www.latex-project.org/lppl.txt" >> $FNAME.mf + echo "% and version 1.2 or later is part of all distributions of LaTeX " >> $FNAME.mf + echo "% version 1999/12/01 or later." >> $FNAME.mf + echo "%" >> $FNAME.mf + echo "% This program consists of all files listed in Manifest.txt." >> $FNAME.mf + echo "%" >> $FNAME.mf + echo "% Version $VERSION $DATE FUKUI Rei" >> $FNAME.mf + echo "%" >> $FNAME.mf + echo '% This file is based on:' >> $FNAME.mf + echo '% Computer Modern font series by D. E. Knuth and' >> $FNAME.mf + echo '% TSIPA by KOBAYASHI Hajime, FUKUI Rei and SHIRAKAWA Shun.' >> $FNAME.mf + echo '' >> $FNAME.mf + echo 'if unknown cmbase: input cmbase fi' >> $FNAME.mf + echo 'if unknown tipabase: input tipabase fi' >> $FNAME.mf + echo '' >> $FNAME.mf + echo "font_identifier:=\"$FID\"; font_size ${FSIZE}pt#;" >> $FNAME.mf + echo '' >> $FNAME.mf + echo 'Times_Compat:=true;' >> $FNAME.mf + echo 'if Times_Compat: input tipatr fi' >> $FNAME.mf + echo '' >> $FNAME.mf + $AWK "{if (\$1 == \"p\") { + if (\$$NUM == \"0\") print \$2 \"#:=\" \$$NUM \"pt#;\";\ + else print \$2 \"#:=\" \$$NUM \"/36pt#;\";\ + }\ + else if (\$1 == \"P\") print \$2 \"#:=\" \$$NUM \"pt#;\";\ + else if (\$1 == \"n\") print \$2 \":=\" \$$NUM \";\";}" $PARAMFILE |\ + sed 's/SQ/sqrt/' >> $FNAME.mf + echo '' >> $FNAME.mf + echo 'generate tipa % switch to the driver file' >> $FNAME.mf +done + +exit 0 diff --git a/Master/texmf-dist/fonts/source/public/tipa/genxipx.sh b/Master/texmf-dist/fonts/source/public/tipa/genxipx.sh new file mode 100644 index 00000000000..4cd09f4a650 --- /dev/null +++ b/Master/texmf-dist/fonts/source/public/tipa/genxipx.sh @@ -0,0 +1,67 @@ +#!/bin/sh + +# genxipx.sh --- a shell script for producing XIPX parameter files. +# +# 1996/06/24 first version +# + +AWK=gawk + +DATE="2003/01/01" +VERSION="1.2" + +PARAMFILE="xipaprm.def" + +FILES="xipx10 xipxsl10 xipxb10 xipxbs10 xipxss10 xipxsi10 xipxsb10" + +for FNAME in $FILES +do + case "$FNAME" in + xipx10) NUM=3;FID="XIPX"; FSIZE="10";FDESC="Roman 10" ;; + xipxsl10) NUM=4;FID="XIPXSL";FSIZE="10";FDESC="Slanted Roman 10" ;; + xipxb10) NUM=5;FID="XIPXB"; FSIZE="10";FDESC="Bold Roman 10" ;; + xipxbs10) NUM=6;FID="XIPXBS";FSIZE="10";FDESC="Bold Slanted Roman 10" ;; + xipxss10) NUM=7;FID="XIPXSS";FSIZE="10";FDESC="Sans Serif 10" ;; + xipxsi10) NUM=8;FID="XIPXSI";FSIZE="10";FDESC="Sans Serif Slanted 10" ;; + xipxsb10) NUM=9;FID="XIPXSB";FSIZE="10";FDESC="Sans Serif Bold 10" ;; + esac + + echo "% $FNAME.mf: XIPX $FDESC point parameter file" > $FNAME.mf + echo "% Copyright 1996-2003 FUKUI Rei" >> $FNAME.mf + echo "%" >> $FNAME.mf + echo "% This program may be distributed and/or modified under the" >> $FNAME.mf + echo "% conditions of the LaTeX Project Public License, either version 1.2" >> $FNAME.mf + echo "% of this license or (at your option) any later version." >> $FNAME.mf + echo "% The latest version of this license is in" >> $FNAME.mf + echo "% http://www.latex-project.org/lppl.txt" >> $FNAME.mf + echo "% and version 1.2 or later is part of all distributions of LaTeX " >> $FNAME.mf + echo "% version 1999/12/01 or later." >> $FNAME.mf + echo "%" >> $FNAME.mf + echo "% This program consists of all files listed in Manifest.txt." >> $FNAME.mf + echo "%" >> $FNAME.mf + echo "% Version $VERSION $DATE" >> $FNAME.mf + echo "%" >> $FNAME.mf + echo '% This file is based on:' >> $FNAME.mf + echo '% Computer Modern font series by D. E. Knuth and' >> $FNAME.mf + echo '% TSIPA by KOBAYASHI Hajime, FUKUI Rei and SHIRAKAWA Shun.' >> $FNAME.mf + echo '' >> $FNAME.mf + echo 'if unknown cmbase: input cmbase fi' >> $FNAME.mf + echo 'if unknown tipabase: input tipabase fi' >> $FNAME.mf + echo '' >> $FNAME.mf + echo "font_identifier:=\"$FID\"; font_size ${FSIZE}pt#;" >> $FNAME.mf + echo '' >> $FNAME.mf + echo 'Times_Compat:=true;' >> $FNAME.mf + echo 'if Times_Compat: input tipatr fi' >> $FNAME.mf + echo '' >> $FNAME.mf + $AWK "{if (\$1 == \"p\") { + if (\$$NUM == \"0\") print \$2 \"#:=\" \$$NUM \"pt#;\";\ + else print \$2 \"#:=\" \$$NUM \"/36pt#;\";\ + }\ + else if (\$1 == \"P\") print \$2 \"#:=\" \$$NUM \"pt#;\";\ + else if (\$1 == \"n\") print \$2 \":=\" \$$NUM \";\";}" $PARAMFILE |\ + sed 's/SQ/sqrt/' >> $FNAME.mf + echo '' >> $FNAME.mf + echo 'generate tipx % switch to the driver file' >> $FNAME.mf +done + +exit 0 diff --git a/Master/texmf-dist/fonts/source/public/tipa/mktipapk.sh b/Master/texmf-dist/fonts/source/public/tipa/mktipapk.sh new file mode 100644 index 00000000000..e13a0ee85eb --- /dev/null +++ b/Master/texmf-dist/fonts/source/public/tipa/mktipapk.sh @@ -0,0 +1,173 @@ +#!/bin/sh +# +# This script generates pk font files for tipa. +# +# TIPA is a set of metafont source files for IPA (International +# Phonetic Alphabet) symbols. You can get it from the CTAN archive. +# +# In order to use this script, metafont programs, gftopk, and metafont +# source files (*.mf) must be installed properly. +# +# You should also be familiar with the `modes.mf' file which contains +# parameters for various printers. +# +# 1996/03/12 FUKUI Rei (fkr@tooyoo.L.u-tokyo.ac.jp) +# + +progname=`basename "$0"` +MF=mf + +if [ $# != 0 ]; then + MODE=$1 +else + echo "Usage: $progname mode_name" + echo "Examples: $progname localfont" + echo " : $progname CanonCX" + exit 1 +fi + +execmf() +{ + for file in $MFFILES + do + echo "[ $file at mag=$MAG ]" + $MF "\mode=$MODE; mag=$MAG; nonstopmode;" input $file + done +} + +cmbase=/usr/local/lib/texmf/fonts/public/cm/src/cmbase.mf +if [ -f $cmbase ]; then + ln -s $cmbase cmbase.mf +fi + +############################## +# make all fonts for mag 5/8 # +############################## + +MFFILES="tipa8 tipasl8 tipabx8 tipass8" +MAG=5/8 +execmf + +############################## +# make all fonts for mag 6/8 # +############################## + +MFFILES="tipa8 tipasl8 tipabx8 tipass8" +MAG=6/8 +execmf + +############################## +# make all fonts for mag 7/8 # +############################## + +MFFILES="tipa8 tipasl8 tipabx8 tipass8" +MAG=7/8 +execmf + +############################# +# make all fonts for mag .5 # +############################# + +MFFILES="tipab10" +MAG=.5 +execmf + +############################# +# make all fonts for mag .6 # +############################# + +MFFILES="tipab10" +MAG=.6 +execmf + +############################# +# make all fonts for mag .7 # +############################# + +MFFILES="tipab10" +MAG=.7 +execmf + +############################# +# make all fonts for mag .8 # +############################# + +MFFILES="tipab10" +MAG=.8 +execmf + +############################# +# make all fonts for mag .9 # +############################# + +MFFILES="tipab10" +MAG=.9 +execmf + +############################ +# make all fonts for mag 1 # +############################ + +MFFILES="tipa8 tipa9 tipa10 tipa12 tipa17 tipasl8 tipasl9 tipasl10 tipasl12 \ + tipabx8 tipabx9 tipabx10 tipabx12 tipass8 tipass9 tipass10 tipass12 \ + tipass17 tipab10" +MAG=1 +execmf + +################################## +# make all fonts for magstep 0.5 # +################################## + +MFFILES="tipa10 tipasl10 tipabx10 tipass10 tipab10" +MAG=magstep.5 +execmf + +################################ +# make all fonts for magstep 1 # +################################ + +MFFILES="tipa12 tipa17 tipasl12 tipabx12 tipass12 tipass17 tipab10" +MAG=magstep1 +execmf + +################################ +# make all fonts for magstep 2 # +################################ + +MFFILES="tipa17 tipasl12 tipabx12 tipass17 tipab10" +MAG=magstep2 +execmf + +################################ +# make all fonts for magstep 3 # +################################ + +MFFILES="tipasl12 tipabx12 tipab10" +MAG=magstep3 +execmf + +################################ +# make all fonts for magstep 4 # +################################ + +MFFILES="tipasl12 tipabx12 tipab10" +MAG=magstep4 +execmf + +################################ +# make all fonts for magstep 5 # +################################ + +MFFILES="tipab10" +MAG=magstep5 +execmf + +for gf in tipa*gf +do + gftopk $gf +done + +rm -f *gf *.log cmbase.mf +#rm -f *.tfm + +exit 0 diff --git a/Master/texmf-dist/fonts/source/public/tipa/mkxipapk.sh b/Master/texmf-dist/fonts/source/public/tipa/mkxipapk.sh new file mode 100644 index 00000000000..64fb4f87111 --- /dev/null +++ b/Master/texmf-dist/fonts/source/public/tipa/mkxipapk.sh @@ -0,0 +1,147 @@ +#!/bin/sh +# +# This script generates pk font files for tipa. +# +# TIPA is a set of metafont source files for IPA (International +# Phonetic Alphabet) symbols. You can get it from the CTAN archive. +# +# In order to use this script, metafont programs, gftopk, and metafont +# source files (*.mf) must be installed properly. +# +# You should also be familiar with the `modes.mf' file which contains +# parameters for various printers. +# +# 1996/03/12 FUKUI Rei (fkr@tooyoo.L.u-tokyo.ac.jp) +# + +progname=`basename "$0"` +MF=mf + +if [ $# != 0 ]; then + MODE=$1 +else + echo "Usage: $progname mode_name" + echo "Examples: $progname localfont" + echo " : $progname CanonCX" + exit 1 +fi + +execmf() +{ + for file in $MFFILES + do + echo "[ $file at mag=$MAG ]" + $MF "\mode=$MODE; mag=$MAG; nonstopmode;" input $file + done +} + +cmbase=/usr/local/lib/texmf/fonts/public/cm/src/cmbase.mf +if [ -f $cmbase ]; then + ln -s $cmbase cmbase.mf +fi + +############################# +# make all fonts for mag .5 # +############################# + +MFFILES="xipa10 xipasl10 xipabx10 xipass10 xipab10" +MAG=.5 +execmf + +############################# +# make all fonts for mag .6 # +############################# + +MFFILES="xipa10 xipasl10 xipabx10 xipass10 xipab10" +MAG=.6 +execmf + +############################# +# make all fonts for mag .7 # +############################# + +MFFILES="xipa10 xipasl10 xipabx10 xipass10 xipab10" +MAG=.7 +execmf + +############################# +# make all fonts for mag .8 # +############################# + +MFFILES="xipa10 xipasl10 xipabx10 xipass10 xipab10" +MAG=.8 +execmf + +############################# +# make all fonts for mag .9 # +############################# + +MFFILES="xipa10 xipasl10 xipabx10 xipass10 xipab10" +MAG=.9 +execmf + +############################ +# make all fonts for mag 1 # +############################ + +MFFILES="xipa10 xipasl10 xipabx10 xipass10 xipab10" +MAG=1 +execmf + +################################## +# make all fonts for magstep 0.5 # +################################## + +MFFILES="xipa10 xipasl10 xipabx10 xipass10 xipab10" +MAG=magstep.5 +execmf + +################################ +# make all fonts for magstep 1 # +################################ + +MFFILES="xipa10 xipasl10 xipabx10 xipass10 xipab10" +MAG=magstep1 +execmf + +################################ +# make all fonts for magstep 2 # +################################ + +MFFILES="xipa10 xipasl10 xipabx10 xipass10 xipab10" +MAG=magstep2 +execmf + +################################ +# make all fonts for magstep 3 # +################################ + +MFFILES="xipa10 xipasl10 xipabx10 xipass10 xipab10" +MAG=magstep3 +execmf + +################################ +# make all fonts for magstep 4 # +################################ + +MFFILES="xipa10 xipasl10 xipabx10 xipass10 xipab10" +MAG=magstep4 +execmf + +################################ +# make all fonts for magstep 5 # +################################ + +MFFILES="xipa10 xipasl10 xipabx10 xipass10 xipab10" +MAG=magstep5 +execmf + +for gf in xipa*gf +do + gftopk $gf +done + +rm -f *gf *.log cmbase.mf +#rm -f *.tfm + +exit 0 diff --git a/Master/texmf-dist/fonts/source/public/tipa/tipa.mf b/Master/texmf-dist/fonts/source/public/tipa/tipa.mf new file mode 100644 index 00000000000..5fe29292857 --- /dev/null +++ b/Master/texmf-dist/fonts/source/public/tipa/tipa.mf @@ -0,0 +1,166 @@ +% tipa.mf: TIPA driver file +% Copyright 1996-2003 FUKUI Rei +% +% This program may be distributed and/or modified under the +% conditions of the LaTeX Project Public License, either version 1.2 +% of this license or (at your option) any later version. +% The latest version of this license is in +% http://www.latex-project.org/lppl.txt +% and version 1.2 or later is part of all distributions of LaTeX +% version 1999/12/01 or later. +% +% This program consists of all files listed in Manifest.txt. +% +% Version 1.2 2003/01/01 +% +% This file is based on: +% Computer Modern font series by D. E. Knuth and +% TSIPA by KOBAYASHI Hajime, FUKUI Rei and SHIRAKAWA Shun. +% + +font_coding_scheme:="TeX IPA"; + +mode_setup; +font_setup; + +input tipanew % new materials for testing +input tipadiac % accents and diacritics +input tipapnct % punctuation marks +input tiparoml % lower case (minuscules) +input tipasym1 % ipa symbols (1) +input tipasym2 % ipa symbols (2) +input tipasym3 % ipa symbols (3) +input tipasym4 % ipa symbols (4) +input tipagerm % symbols for germanic languages +input tipatone % parts of tone letters + +smallcap_setup; +input tipasc % ipa small capitals +restore_normal_setup; + +font_slant slant; font_x_height x_height#; + +% Modified on 2001/12/24 for the Times Roman compatibility; +% The values for Times_Compat are calculated from the data +% from ptmr7t.tfm. +if monospace: + font_normal_space 9u#; % no stretching or shrinking + font_quad 18u#; + font_extra_space 9u#; +else: + if Times_Compat: + font_normal_space 5u#+2letter_fit#; + font_normal_stretch 2.2u#; font_normal_shrink 1.2u#; + font_quad 20u#+4letter_fit#; + font_extra_space 1.2u#; + else: + font_normal_space 6u#+2letter_fit#; + font_normal_stretch 3u#; font_normal_shrink 2u#; + font_quad 18u#+4letter_fit#; + font_extra_space 2u#; + fi +fi + +% ligatures made by ligtables + +ligtable oct"047": oct"047" kern -1.5u#; % ' + ' -> '' +ligtable oct"140": oct"140" kern -1.5u#; % ` + ` => `` +ligtable "|": "|" =: oct"173"; % Pipe + Pipe -> Double Pipe +ligtable oct"042": oct"042" =: oct"177"; % Prim. Stress + Prim. Stress -> Sec. Stress + +% kernings (need to modify) + +numeric itc#; % modified italic correction on `f' +itc#=if serifs: max(0,flare#-.25u#) else: 1.25u# fi; + +k#:=-.5u#; kk#:=-1.5u#; kkk#:=-2u#; % three degrees of kerning + +ligtable "f": + "'" kern itc#, "?" kern itc#, "!" kern itc#, ")" kern itc#, "]" kern itc#; + +ligtable "y": + "o" kern k#, "e" kern k#, "a" kern k#, "." kern kk#, "," kern kk#, + "2" kern -u#, "L" kern -u#, oct"300" kern -u#, oct"373" kern -u#; + +ligtable "g": + "j" kern -k#; % logjam + +if serifs: + + ligtable "k": + "a" kern -u#, "e" kern k#, "a" kern k#, "o" kern k#, "c" kern k#; + + ligtable "v": + "a" kern -u#, "e" kern k#, "a" kern k#, "o" kern k#, "c" kern k#, + "2" kern -u#, "L" kern -u#, oct"300" kern -u#, oct"373" kern -u#; + + ligtable "w": + "e" kern k#, "a" kern k#, "o" kern k#, "c" kern k#, + "2" kern -u#, "L" kern -u#, oct"300" kern -u#, oct"373" kern -u#; + + ligtable "h": "m": "n": + "t" kern k#, "u" kern k#, "b" kern k#, "y" kern k#, "v" kern k#, + "w" kern k#; + + ligtable "c": + "h" kern k#, "k" kern k#; + + ligtable "o": "b": "p": + "e" kern -k#, "o" kern -k#, "x" kern k#, "d" kern -k#, "c" kern -k#, + "q" kern -k#, "v" kern k#, "j" kern u#, "y" kern k#, "w" kern k#; + + ligtable "a": + "v" kern k#, "j" kern u#, "y" kern k#, "w" kern k#; + + ligtable "t": + "y" kern k#, "w" kern k#; + + ligtable "u": + "w" kern k#; + +else: + + ligtable "k": + "e" kern k#, "a" kern k#, "o" kern k#, "c" kern k#; + + ligtable "w": + "e" kern k#, "a" kern k#, "o" kern k#, "c" kern k#, + "2" kern -u#, "L" kern -u#, oct"300" kern -u#, oct"373" kern -u#; + + ligtable "v": + "2" kern -u#, "L" kern -u#, oct"300" kern -u#, oct"373" kern -u#; + + ligtable "o": "b": "p": + "e" kern -k#, "o" kern -k#, "x" kern k#, "d" kern -k#, "c" kern -k#, + "q" kern -k#, "r" kern k#, "y" kern k#, "w" kern k#; + + ligtable "a": + "r" kern k#, "y" kern k#, "w" kern k#; + + ligtable "t": + "y" kern k#, "w" kern k#; + + ligtable "u": + "w" kern k#; + +fi + +ligtable "2": "L": oct"300": oct"373": % Turned V, SC A, Turned y, Turned W + "v" kern -u#, "w" kern -u#, "y" kern -u#; + +ligtable "S": oct"342": oct"344": oct"352": oct"301": oct"311": + oct"323": oct"264": oct"331": % symbols with hooktop + "b" kern -kk#, "f" kern -k#, "h" kern -kk#, "i" kern -kk#, + "j" kern -kk#, "k" kern -kk#, "P" kern -kk#, "Q" kern -kk#, + "]" kern -kk#, ")" kern -kk#; + +ligtable oct"343": oct"355": oct"357": oct"365": oct"374": % symbols with right-tail + "g" kern -k#, "j" kern -kk#, "p" kern -kk#, "y" kern -kk#, "S" kern -kk#, + "B" kern -kk#, "J" kern -kk#, oct"351" kern -kk#, oct"361" kern -kk#, + "]" kern -kk#, ")" kern -kk#; + +ligtable "[": "(": + "S" kern -kk#, oct"361" kern -kk#, "j" kern -kk#, oct"351" kern -kk#, + oct"352" kern -kk#, oct"315" kern -kk#; + +bye. diff --git a/Master/texmf-dist/fonts/source/public/tipa/tipa10.mf b/Master/texmf-dist/fonts/source/public/tipa/tipa10.mf new file mode 100644 index 00000000000..060a9146146 --- /dev/null +++ b/Master/texmf-dist/fonts/source/public/tipa/tipa10.mf @@ -0,0 +1,92 @@ +% tipa10.mf: TIPA Roman 10 point parameter file +% Copyright 1996-2003 FUKUI Rei +% +% This program may be distributed and/or modified under the +% conditions of the LaTeX Project Public License, either version 1.2 +% of this license or (at your option) any later version. +% The latest version of this license is in +% http://www.latex-project.org/lppl.txt +% and version 1.2 or later is part of all distributions of LaTeX +% version 1999/12/01 or later. +% +% This program consists of all files listed in Manifest.txt. +% +% Version 1.2 2003/01/01 +% +% This file is based on: +% Computer Modern font series by D. E. Knuth and +% TSIPA by KOBAYASHI Hajime, FUKUI Rei and SHIRAKAWA Shun. + +if unknown cmbase: input cmbase fi +if unknown tipabase: input tipabase fi + +font_identifier:="TIPA"; font_size 10pt#; + +Times_Compat:=false; +if Times_Compat: input tipatr fi + +u#:=20/36pt#; +width_adj#:=0pt#; +serif_fit#:=0pt#; +cap_serif_fit#:=5/36pt#; +letter_fit#:=0pt#; +body_height#:=270/36pt#; +asc_height#:=250/36pt#; +cap_height#:=246/36pt#; +fig_height#:=232/36pt#; +x_height#:=155/36pt#; +math_axis#:=90/36pt#; +bar_height#:=87/36pt#; +comma_depth#:=70/36pt#; +desc_depth#:=70/36pt#; +crisp#:=0pt#; +tiny#:=8/36pt#; +fine#:=7/36pt#; +thin_join#:=7/36pt#; +hair#:=9/36pt#; +stem#:=25/36pt#; +curve#:=30/36pt#; +ess#:=27/36pt#; +flare#:=33/36pt#; +dot_size#:=38/36pt#; +cap_hair#:=11/36pt#; +cap_stem#:=32/36pt#; +cap_curve#:=37/36pt#; +cap_ess#:=35/36pt#; +rule_thickness#:=.4pt#; +dish#:=1/36pt#; +bracket#:=20/36pt#; +jut#:=28/36pt#; +cap_jut#:=37/36pt#; +beak_jut#:=10/36pt#; +beak#:=70/36pt#; +vair#:=8/36pt#; +notch_cut#:=10pt#; +bar#:=11/36pt#; +slab#:=11/36pt#; +cap_bar#:=11/36pt#; +cap_band#:=11/36pt#; +cap_notch_cut#:=10pt#; +serif_drop#:=4/36pt#; +stem_corr#:=1/36pt#; +vair_corr#:=1/36pt#; +apex_corr#:=0pt#; +o#:=8/36pt#; +apex_o#:=8/36pt#; +slant:=0; +fudge:=1; +math_spread:=0; +superness:=1/sqrt2; +superpull:=1/6; +beak_darkness:=11/30; +ligs:=2; +square_dots:=false; +hefty:=false; +serifs:=true; +monospace:=false; +low_asterisk:=false; +math_fitting:=false; +sc.u#:=14/36pt#; +sc.letter_fit#:=2.4/36pt#; + +generate tipa % switch to the driver file diff --git a/Master/texmf-dist/fonts/source/public/tipa/tipa12.mf b/Master/texmf-dist/fonts/source/public/tipa/tipa12.mf new file mode 100644 index 00000000000..61ec67fbcf9 --- /dev/null +++ b/Master/texmf-dist/fonts/source/public/tipa/tipa12.mf @@ -0,0 +1,92 @@ +% tipa12.mf: TIPA Roman 12 point parameter file +% Copyright 1996-2003 FUKUI Rei +% +% This program may be distributed and/or modified under the +% conditions of the LaTeX Project Public License, either version 1.2 +% of this license or (at your option) any later version. +% The latest version of this license is in +% http://www.latex-project.org/lppl.txt +% and version 1.2 or later is part of all distributions of LaTeX +% version 1999/12/01 or later. +% +% This program consists of all files listed in Manifest.txt. +% +% Version 1.2 2003/01/01 +% +% This file is based on: +% Computer Modern font series by D. E. Knuth and +% TSIPA by KOBAYASHI Hajime, FUKUI Rei and SHIRAKAWA Shun. + +if unknown cmbase: input cmbase fi +if unknown tipabase: input tipabase fi + +font_identifier:="TIPA"; font_size 12pt#; + +Times_Compat:=false; +if Times_Compat: input tipatr fi + +u#:=23.5/36pt#; +width_adj#:=0pt#; +serif_fit#:=0pt#; +cap_serif_fit#:=5.8/36pt#; +letter_fit#:=0pt#; +body_height#:=324/36pt#; +asc_height#:=300/36pt#; +cap_height#:=295.2/36pt#; +fig_height#:=278.4/36pt#; +x_height#:=186/36pt#; +math_axis#:=108/36pt#; +bar_height#:=104.4/36pt#; +comma_depth#:=84/36pt#; +desc_depth#:=84/36pt#; +crisp#:=0pt#; +tiny#:=8/36pt#; +fine#:=7/36pt#; +thin_join#:=7.5/36pt#; +hair#:=9.5/36pt#; +stem#:=28/36pt#; +curve#:=33/36pt#; +ess#:=30/36pt#; +flare#:=36/36pt#; +dot_size#:=42/36pt#; +cap_hair#:=11.5/36pt#; +cap_stem#:=35/36pt#; +cap_curve#:=40/36pt#; +cap_ess#:=38/36pt#; +rule_thickness#:=.44pt#; +dish#:=1/36pt#; +bracket#:=24/36pt#; +jut#:=33/36pt#; +cap_jut#:=41/36pt#; +beak_jut#:=11.4/36pt#; +beak#:=84/36pt#; +vair#:=8.5/36pt#; +notch_cut#:=12pt#; +bar#:=12.5/36pt#; +slab#:=12.5/36pt#; +cap_bar#:=12.5/36pt#; +cap_band#:=12.5/36pt#; +cap_notch_cut#:=12pt#; +serif_drop#:=4.8/36pt#; +stem_corr#:=1/36pt#; +vair_corr#:=1/36pt#; +apex_corr#:=0pt#; +o#:=9/36pt#; +apex_o#:=9/36pt#; +slant:=0; +fudge:=1; +math_spread:=-0.2; +superness:=1/sqrt2; +superpull:=1/6; +beak_darkness:=11/30; +ligs:=2; +square_dots:=false; +hefty:=false; +serifs:=true; +monospace:=false; +low_asterisk:=false; +math_fitting:=false; +sc.u#:=16.45/36pt#; +sc.letter_fit#:=2.4/36pt#; + +generate tipa % switch to the driver file diff --git a/Master/texmf-dist/fonts/source/public/tipa/tipa17.mf b/Master/texmf-dist/fonts/source/public/tipa/tipa17.mf new file mode 100644 index 00000000000..ff089e9a3e5 --- /dev/null +++ b/Master/texmf-dist/fonts/source/public/tipa/tipa17.mf @@ -0,0 +1,92 @@ +% tipa17.mf: TIPA Roman 17.28 point parameter file +% Copyright 1996-2003 FUKUI Rei +% +% This program may be distributed and/or modified under the +% conditions of the LaTeX Project Public License, either version 1.2 +% of this license or (at your option) any later version. +% The latest version of this license is in +% http://www.latex-project.org/lppl.txt +% and version 1.2 or later is part of all distributions of LaTeX +% version 1999/12/01 or later. +% +% This program consists of all files listed in Manifest.txt. +% +% Version 1.2 2003/01/01 +% +% This file is based on: +% Computer Modern font series by D. E. Knuth and +% TSIPA by KOBAYASHI Hajime, FUKUI Rei and SHIRAKAWA Shun. + +if unknown cmbase: input cmbase fi +if unknown tipabase: input tipabase fi + +font_identifier:="TIPA"; font_size 17.28pt#; + +Times_Compat:=false; +if Times_Compat: input tipatr fi + +u#:=32.5/36pt#; +width_adj#:=0pt#; +serif_fit#:=0pt#; +cap_serif_fit#:=8/36pt#; +letter_fit#:=-0.1/36pt#; +body_height#:=466/36pt#; +asc_height#:=432/36pt#; +cap_height#:=425/36pt#; +fig_height#:=401/36pt#; +x_height#:=267.8/36pt#; +math_axis#:=155.5/36pt#; +bar_height#:=150/36pt#; +comma_depth#:=121/36pt#; +desc_depth#:=121/36pt#; +crisp#:=0pt#; +tiny#:=8/36pt#; +fine#:=7/36pt#; +thin_join#:=9/36pt#; +hair#:=11/36pt#; +stem#:=33/36pt#; +curve#:=40/36pt#; +ess#:=35/36pt#; +flare#:=45/36pt#; +dot_size#:=51/36pt#; +cap_hair#:=13/36pt#; +cap_stem#:=41/36pt#; +cap_curve#:=47/36pt#; +cap_ess#:=43/36pt#; +rule_thickness#:=.6pt#; +dish#:=1/36pt#; +bracket#:=34/36pt#; +jut#:=42/36pt#; +cap_jut#:=50/36pt#; +beak_jut#:=15/36pt#; +beak#:=121/36pt#; +vair#:=10/36pt#; +notch_cut#:=17pt#; +bar#:=16/36pt#; +slab#:=16/36pt#; +cap_bar#:=16/36pt#; +cap_band#:=16/36pt#; +cap_notch_cut#:=17pt#; +serif_drop#:=7/36pt#; +stem_corr#:=1/36pt#; +vair_corr#:=1/36pt#; +apex_corr#:=0pt#; +o#:=10/36pt#; +apex_o#:=10/36pt#; +slant:=0; +fudge:=1; +math_spread:=-0.4; +superness:=1/sqrt2; +superpull:=1/6; +beak_darkness:=11/30; +ligs:=2; +square_dots:=false; +hefty:=false; +serifs:=true; +monospace:=false; +low_asterisk:=false; +math_fitting:=false; +sc.u#:=22.75/36pt#; +sc.letter_fit#:=2.2/36pt#; + +generate tipa % switch to the driver file diff --git a/Master/texmf-dist/fonts/source/public/tipa/tipa8.mf b/Master/texmf-dist/fonts/source/public/tipa/tipa8.mf new file mode 100644 index 00000000000..03f4802761d --- /dev/null +++ b/Master/texmf-dist/fonts/source/public/tipa/tipa8.mf @@ -0,0 +1,92 @@ +% tipa8.mf: TIPA Roman 8 point parameter file +% Copyright 1996-2003 FUKUI Rei +% +% This program may be distributed and/or modified under the +% conditions of the LaTeX Project Public License, either version 1.2 +% of this license or (at your option) any later version. +% The latest version of this license is in +% http://www.latex-project.org/lppl.txt +% and version 1.2 or later is part of all distributions of LaTeX +% version 1999/12/01 or later. +% +% This program consists of all files listed in Manifest.txt. +% +% Version 1.2 2003/01/01 +% +% This file is based on: +% Computer Modern font series by D. E. Knuth and +% TSIPA by KOBAYASHI Hajime, FUKUI Rei and SHIRAKAWA Shun. + +if unknown cmbase: input cmbase fi +if unknown tipabase: input tipabase fi + +font_identifier:="TIPA"; font_size 8pt#; + +Times_Compat:=false; +if Times_Compat: input tipatr fi + +u#:=17/36pt#; +width_adj#:=0pt#; +serif_fit#:=0pt#; +cap_serif_fit#:=4.1/36pt#; +letter_fit#:=0pt#; +body_height#:=216/36pt#; +asc_height#:=200/36pt#; +cap_height#:=196.8/36pt#; +fig_height#:=185.6/36pt#; +x_height#:=124/36pt#; +math_axis#:=72/36pt#; +bar_height#:=69.6/36pt#; +comma_depth#:=56/36pt#; +desc_depth#:=56/36pt#; +crisp#:=0pt#; +tiny#:=8/36pt#; +fine#:=7/36pt#; +thin_join#:=7/36pt#; +hair#:=9/36pt#; +stem#:=22/36pt#; +curve#:=25.5/36pt#; +ess#:=23/36pt#; +flare#:=27/36pt#; +dot_size#:=32/36pt#; +cap_hair#:=9.5/36pt#; +cap_stem#:=26.5/36pt#; +cap_curve#:=30/36pt#; +cap_ess#:=27/36pt#; +rule_thickness#:=.36pt#; +dish#:=1/36pt#; +bracket#:=16/36pt#; +jut#:=22/36pt#; +cap_jut#:=29/36pt#; +beak_jut#:=8.4/36pt#; +beak#:=56/36pt#; +vair#:=8/36pt#; +notch_cut#:=8pt#; +bar#:=9.5/36pt#; +slab#:=9.5/36pt#; +cap_bar#:=9.5/36pt#; +cap_band#:=9.5/36pt#; +cap_notch_cut#:=8pt#; +serif_drop#:=3.2/36pt#; +stem_corr#:=1/36pt#; +vair_corr#:=1/36pt#; +apex_corr#:=0pt#; +o#:=6/36pt#; +apex_o#:=6/36pt#; +slant:=0; +fudge:=1; +math_spread:=.4; +superness:=1/sqrt2; +superpull:=1/6; +beak_darkness:=11/30; +ligs:=2; +square_dots:=false; +hefty:=false; +serifs:=true; +monospace:=false; +low_asterisk:=false; +math_fitting:=false; +sc.u#:=12/36pt#; +sc.letter_fit#:=2.4/36pt#; + +generate tipa % switch to the driver file diff --git a/Master/texmf-dist/fonts/source/public/tipa/tipa9.mf b/Master/texmf-dist/fonts/source/public/tipa/tipa9.mf new file mode 100644 index 00000000000..0d3f3b33bd1 --- /dev/null +++ b/Master/texmf-dist/fonts/source/public/tipa/tipa9.mf @@ -0,0 +1,92 @@ +% tipa9.mf: TIPA Roman 9 point parameter file +% Copyright 1996-2003 FUKUI Rei +% +% This program may be distributed and/or modified under the +% conditions of the LaTeX Project Public License, either version 1.2 +% of this license or (at your option) any later version. +% The latest version of this license is in +% http://www.latex-project.org/lppl.txt +% and version 1.2 or later is part of all distributions of LaTeX +% version 1999/12/01 or later. +% +% This program consists of all files listed in Manifest.txt. +% +% Version 1.2 2003/01/01 +% +% This file is based on: +% Computer Modern font series by D. E. Knuth and +% TSIPA by KOBAYASHI Hajime, FUKUI Rei and SHIRAKAWA Shun. + +if unknown cmbase: input cmbase fi +if unknown tipabase: input tipabase fi + +font_identifier:="TIPA"; font_size 9pt#; + +Times_Compat:=false; +if Times_Compat: input tipatr fi + +u#:=18.5/36pt#; +width_adj#:=0pt#; +serif_fit#:=0pt#; +cap_serif_fit#:=4.6/36pt#; +letter_fit#:=0pt#; +body_height#:=243/36pt#; +asc_height#:=225/36pt#; +cap_height#:=221.4/36pt#; +fig_height#:=208.8/36pt#; +x_height#:=139.5/36pt#; +math_axis#:=81/36pt#; +bar_height#:=78.3/36pt#; +comma_depth#:=63/36pt#; +desc_depth#:=63/36pt#; +crisp#:=0pt#; +tiny#:=8/36pt#; +fine#:=7/36pt#; +thin_join#:=7/36pt#; +hair#:=9/36pt#; +stem#:=24/36pt#; +curve#:=28/36pt#; +ess#:=25/36pt#; +flare#:=30/36pt#; +dot_size#:=35/36pt#; +cap_hair#:=10/36pt#; +cap_stem#:=29/36pt#; +cap_curve#:=33/36pt#; +cap_ess#:=31/36pt#; +rule_thickness#:=.38pt#; +dish#:=1/36pt#; +bracket#:=18/36pt#; +jut#:=25/36pt#; +cap_jut#:=33/36pt#; +beak_jut#:=9.2/36pt#; +beak#:=63/36pt#; +vair#:=8/36pt#; +notch_cut#:=9pt#; +bar#:=10/36pt#; +slab#:=10/36pt#; +cap_bar#:=10/36pt#; +cap_band#:=10/36pt#; +cap_notch_cut#:=9pt#; +serif_drop#:=3.6/36pt#; +stem_corr#:=1/36pt#; +vair_corr#:=1/36pt#; +apex_corr#:=0pt#; +o#:=7/36pt#; +apex_o#:=7/36pt#; +slant:=0; +fudge:=1; +math_spread:=.2; +superness:=1/sqrt2; +superpull:=1/6; +beak_darkness:=11/30; +ligs:=2; +square_dots:=false; +hefty:=false; +serifs:=true; +monospace:=false; +low_asterisk:=false; +math_fitting:=false; +sc.u#:=12.95/36pt#; +sc.letter_fit#:=2.4/36pt#; + +generate tipa % switch to the driver file diff --git a/Master/texmf-dist/fonts/source/public/tipa/tipab10.mf b/Master/texmf-dist/fonts/source/public/tipa/tipab10.mf new file mode 100644 index 00000000000..92be21db34e --- /dev/null +++ b/Master/texmf-dist/fonts/source/public/tipa/tipab10.mf @@ -0,0 +1,92 @@ +% tipab10.mf: TIPA Bold Roman 10 point parameter file +% Copyright 1996-2003 FUKUI Rei +% +% This program may be distributed and/or modified under the +% conditions of the LaTeX Project Public License, either version 1.2 +% of this license or (at your option) any later version. +% The latest version of this license is in +% http://www.latex-project.org/lppl.txt +% and version 1.2 or later is part of all distributions of LaTeX +% version 1999/12/01 or later. +% +% This program consists of all files listed in Manifest.txt. +% +% Version 1.2 2003/01/01 +% +% This file is based on: +% Computer Modern font series by D. E. Knuth and +% TSIPA by KOBAYASHI Hajime, FUKUI Rei and SHIRAKAWA Shun. + +if unknown cmbase: input cmbase fi +if unknown tipabase: input tipabase fi + +font_identifier:="TIPAB"; font_size 10pt#; + +Times_Compat:=false; +if Times_Compat: input tipatr fi + +u#:=20/36pt#; +width_adj#:=10/36pt#; +serif_fit#:=0pt#; +cap_serif_fit#:=6/36pt#; +letter_fit#:=0pt#; +body_height#:=270/36pt#; +asc_height#:=250/36pt#; +cap_height#:=247/36pt#; +fig_height#:=232/36pt#; +x_height#:=160/36pt#; +math_axis#:=90/36pt#; +bar_height#:=85/36pt#; +comma_depth#:=70/36pt#; +desc_depth#:=70/36pt#; +crisp#:=0pt#; +tiny#:=13/36pt#; +fine#:=10/36pt#; +thin_join#:=10/36pt#; +hair#:=17/36pt#; +stem#:=41/36pt#; +curve#:=46/36pt#; +ess#:=38/36pt#; +flare#:=45/36pt#; +dot_size#:=56/36pt#; +cap_hair#:=19/36pt#; +cap_stem#:=51/36pt#; +cap_curve#:=55/36pt#; +cap_ess#:=53/36pt#; +rule_thickness#:=.6pt#; +dish#:=1/36pt#; +bracket#:=10/36pt#; +jut#:=25/36pt#; +cap_jut#:=34/36pt#; +beak_jut#:=11/36pt#; +beak#:=70/36pt#; +vair#:=13/36pt#; +notch_cut#:=10pt#; +bar#:=17/36pt#; +slab#:=17/36pt#; +cap_bar#:=17/36pt#; +cap_band#:=17/36pt#; +cap_notch_cut#:=10pt#; +serif_drop#:=3/36pt#; +stem_corr#:=2/36pt#; +vair_corr#:=1.5/36pt#; +apex_corr#:=0pt#; +o#:=4/36pt#; +apex_o#:=3/36pt#; +slant:=0; +fudge:=1; +math_spread:=.5; +superness:=8/11; +superpull:=1/8; +beak_darkness:=.4; +ligs:=2; +square_dots:=false; +hefty:=false; +serifs:=true; +monospace:=false; +low_asterisk:=false; +math_fitting:=false; +sc.u#:=14/36pt#; +sc.letter_fit#:=2.4/36pt#; + +generate tipa % switch to the driver file diff --git a/Master/texmf-dist/fonts/source/public/tipa/tipabase.mf b/Master/texmf-dist/fonts/source/public/tipa/tipabase.mf new file mode 100644 index 00000000000..74c6cce63d5 --- /dev/null +++ b/Master/texmf-dist/fonts/source/public/tipa/tipabase.mf @@ -0,0 +1,431 @@ +% tipabase.mf: TIPA miscellaneous macros +% Copyright 1996-2003 FUKUI Rei +% +% This program may be distributed and/or modified under the +% conditions of the LaTeX Project Public License, either version 1.2 +% of this license or (at your option) any later version. +% The latest version of this license is in +% http://www.latex-project.org/lppl.txt +% and version 1.2 or later is part of all distributions of LaTeX +% version 1999/12/01 or later. +% +% This program consists of all files listed in Manifest.txt. +% +% Version 1.2 2003/01/01 +% +% This file is based on: +% Computer Modern font series by D. E. Knuth and +% TSIPA by KOBAYASHI Hajime, FUKUI Rei and SHIRAKAWA Shun. +% +% N.B. This file is an addition to cmbase.mf, not a replacement. +% + +if unknown cmbase: + errmessage "`cmbase' should have been read before `tipabase'"; fi + +tipabase:=1; % when |tipabase| is known, this file has been input + +boolean Times_Compat; + +let _font_setup = font_setup; + +def font_setup = + _font_setup; + vu#:=u#; hair_rule#:=hair#; + diacritic#:=.2[vair#,stem#]; % breadth of some diacritics + diacr#:=diacritic#; + define_whole_vertical_pixels(vu); + define_whole_blacker_pixels(diacritic,diacr); + forsuffixes $=diacritic: + $.breadth:=$; + pickup if $=0: nullpen else: pencircle scaled $; $:=$-eps fi; + $.nib:=savepen; breadth_[$.nib]:=$; + forsuffixes $$=lft,rt,top,bot: shiftdef($.$$,$$ 0); endfor endfor + hair_rule:=ceiling(hair_rule#*hppp); + pickup pencircle scaled hair_rule; hair_rule.nib:=savepen; + enddef; + +boolean debug; debug:=false; + +let _endchar = endchar; + +def endchar = + _endchar; if debug: stop_here; fi enddef; + +def sc_compress(suffix $)(expr rate_fix) = % for small caps + $.#:=$.# * ((rate_fix[x_height#,cap_height#])/cap_height#); enddef; + +def smallcap_setup = + forsuffixes $=save_var_list: old.$.#:=$.#; endfor + forsuffixes $= u, letter_fit: $.#:=sc.$.#; endfor + sc_compress(flare,.7); + sc_compress(cap_jut,.1); + sc_compress(beak_jut,.1); + sc_compress(beak,0); + sc_compress(slab,.4); + sc_compress(cap_bar,.8); + sc_compress(o,.1); + sc_compress(apex_o,0); + font_setup; enddef; + +def save_var_list = + u, letter_fit, flare, cap_jut, beak_jut, beak, slab, cap_bar, + o, apex_o enddef; + +def restore_normal_setup = + forsuffixes $=save_var_list: $.#:=old.$.#; endfor + font_setup; enddef; + +def turn_picture = + _center_h:=hround(.5charwd*hppp+.5slant*charht*hppp); + _center_v:=vround(.5charht*hppp); + currentpicture:=currentpicture + rotatedabout((_center_h,_center_v),180); enddef; + +def turn_picture_lower = + _center_h:=hround(.5charwd*hppp+.5slant*charht*hppp); + _center_v:=vround(.5x_height#*hppp); + currentpicture:=currentpicture + rotatedabout((_center_h,_center_v),180); enddef; + +def comMA(suffix $,@)(expr dot_size,jut,depth) = + pickup fine.nib; pos$(dot_size,90); + if square_dots: pos$'(dot_size,0); z$'=z$; dot($',$); % squarish dot + comma_join_:=max(fine.breadth,floor .7dot_size); + comma_bot_:=max(fine.breadth,floor .5dot_size); + pos@0(comma_join_,0); pos@1(comma_join_,0); + pos@2(comma_bot_,0); y@0=y$; y@1=y$l; y@2=y@1-depth; + x@0l=x@1l=x$'l; lft x@2l=good.x(x$+eps); + filldraw stroke z@0e--z@1e..z@2e; % tail + else: pos@1(vair,90); pos@2(vair,180); pos@3(vair,225); % 96/02/10 fkr + z@1r=z$r; lft x@2r=hround(x$-.5dot_size-jut)-2eps; x@3=x$+.5u; + y@2=1/3[y@1,y@3]; bot y@3r=vround(y$-.5dot_size-depth); + y_:=ypart((z@1{right}...z@2{down}...z@3) + intersectiontimes (z$l{right}..{left}z$r)); if y_<0: y_:=1; fi + filldraw z$r{left}..subpath (0,y_) of (z$l{right}..{left}z$r)--cycle; % dot + filldraw stroke z@1e{left}...z@2e{down}...z@3e; fi % tail + penlabels(@1,@2,@3); enddef; + +def hook_out_bot(suffix $,$$,$$$) % used in ``Viby I'' and ``Viby Y'' + suffix modifier= % x$ and x$$$ (only) are known + pos$(stem,0); pos$$(vair,90); + x$$$:=hround(x$$$+.5hair-eps)-.5hair; pos$$$(hair,180); + y$=1/4x_height-d; bot y$$l=-oo-d; y$$$=1/3x_height-d; + if skewed.modifier: x$$=x$+1.25u; + filldraw stroke z$e{-u,-x_height}...z$$e{right}...{up}z$$$e; % hook + else: x$$=x$+1.5u; + filldraw stroke z$e{down}...z$$e{right} + ...{x$$$-(x$+2.5u),x_height}z$$$e; fi enddef; % hook + +def hbar(suffix $, $$)(expr loffset, roffset, ypos) = + pickup if serifs: tiny.nib; else: fine.nib fi; + lft x$r = loffset; rt x$$r = roffset; + top y$r = top y$$r = vround(ypos); + pos$(bar,90); pos$$(bar,90); + filldraw stroke z$e--z$$e; + penlabels($, $$); enddef; + +def left_tail(suffix $, $$, @, @@)(expr stem_br, x_offset) = + if serifs: pickup tiny.nib; + pos$.a(stem_br,0); z$=z$.a; + x$$=x$.a; bot y$$=-1/3d; pos$$(stem_br,0); + pos@(vair,-90); pos@@(hair,-180); pos@@'(flare,-180); + x@=.5[x$$,x@@r]; bot y@r=-d-oo; y@@-.5flare=-.88d; + z@@r=z@@'r; lft x@@'r= x_offset; + numeric xx; + (xx,y@r)=whatever[z@l,z$$l]; x@r:=max(xx,.5[x@@r,x@]); + filldraw stroke z$.a e--z$$e{down}...z@e{left}; bulb(@,@@,@@'); % arc and bulb + else: pickup fine.nib; + pos$.a(stem_br,0); z$=z$.a; + x$$=x$.a; bot y$$=-1/3d; pos$$(stem_br,0); + pos@(vair,-90); x@=.5[x$$,x@@r]; bot y@r=-d-o; + pos@@(.6[vair,flare],-110); lft x@@r=x_offset; + y@@r=good.y -5/6d; y@@l:=good.y y@@l; + filldraw stroke z$.a e--z$$e & super_arc.e($$,@) + & term.e(@,@@,left,.9,4); fi + enddef; + +def right_tail(suffix $, $$, @, @@)(expr stem_br, x_offset, y_end, + x_rate, y_rate) = + if serifs: pickup tiny.nib; + pos$.a(stem_br,180); z$=z$.a; + x$$=x$.a; bot y$$=-y_rate*d; pos$$(stem_br,180); + pos@(vair,270); pos@@(hair,360); pos@@'(flare,360); + x@=x_rate[x$$,x@@r]; bot y@r=-d-oo; y@@-.5flare=-y_end*d; + z@@r=z@@'r; rt x@@'r= x_offset; + numeric xx; + (xx,y@r)=whatever[z@l,z$$l]; x@r:=min(xx,.5[x@,x@@r]); + filldraw stroke z$.a e--z$$e{down}...z@e{right}; bulb(@,@@,@@');%arc and bulb + else: pickup fine.nib; + pos$.a(stem_br,180); z$=z$.a; + x$$=x$.a; bot y$$=-y_rate*d; pos$$(stem_br,180); + pos@(vair,270); x@=x_rate[x$$,x@@r]; bot y@r=-d-o; + pos@@(.6[vair,flare],290); rt x@@r=x_offset; + y@@r=good.y(-y_end*d); y@@l:=good.y y@@l; + filldraw stroke z$.a e--z$$e & super_arc.e($$,@) + & term.e(@,@@,right,.9,4); fi + enddef; + +def hooktop(suffix $, $$, @, @@)(expr stem_br, x_offset, height, + y_end, x_rate, y_rate) = + if serifs: pickup tiny.nib; + pos$.a(stem_br,180); z$=z$.a; + x$$=x$.a; top y$$=y_rate[y$.a,height]; pos$$(stem_br,180); + pos@(vair,90); pos@@(hair,0); pos@@'(flare,0); + x@=x_rate[x$$,x@@r]; top y@r=height+oo; y@@+.5flare=y_end[y$.a,height]; + z@@r=z@@'r; rt x@@'r= x_offset; + numeric xx; + (xx,y@r)=whatever[z@l,z$$l]; x@r:=min(xx,.5[x@,x@@r]); + filldraw stroke z$.a e--z$$e{up}...z@e{right}; bulb(@,@@,@@'); % arc and bulb + else: pickup fine.nib; + pos$.a(stem_br,180); z$=z$.a; + x$$=x$.a; top y$$=y_rate[y$.a,height]; pos$$(stem_br,180); + pos@(vair,90); x@=x_rate[x$$,x@@r]; top y@r=height+o; + pos@@(.6[vair,flare],70); rt x@@r=x_offset; + y@@r=good.y y_end[y$.a,height]; y@@l:=good.y y@@l; + filldraw stroke z$.a e--z$$e & super_arc.e($$,@) + & term.e(@,@@,right,.9,4); fi + enddef; + +def c_stroke(expr Width) = + numeric BH; BH=if Times_Compat:.5613h else: bar_height fi; + pickup fine.nib; pos2(vair',90); pos4(vair',270); + x2=x4=.5(Width+u); top y2r=vround(h+1.5oo); bot y4r=-oo; + pos3(curve,180); lft x3r=hround max(.6u,1.35u-.5curve); y3=.5h; + if serifs: pos1(hair,0); pos0(flare,0); + y1=min(BH+.5flare+2vair'+2,.9[BH,h]-.5flare); + rt x1r=hround(Width-.7u); bulb(2,1,0); % bulb + pos5(hair,0); rt x5r=hround(Width-.5u); + y5=max(good.y(.5BH-.9),y4l+vair'); + (x,y4l)=whatever[z4r,z5l]; x4l:=min(x,x4l+.5u); + filldraw stroke pulled_super_arc.e(2,3)(.7superpull) + & pulled_super_arc.e(3,4)(.5superpull) + ..tension .9 and 1..{x5-x4,5(y5-y4)}z5e; % arc and lower terminal + else: pos1(4/7[vair',flare],80); + rt x1r=hround(Width-.6u); top y1r=vround .82[BH,top y2r]; + filldraw stroke term.e(2,1,right,.8,4); % upper terminal + pos5(.6[vair',flare],275); rt x5r=hround(Width-.5u); + y5r=good.y(y5r+1/3BH-y5); y5l:=good.y y5l; x5l:=good.x x5l; + forsuffixes e=l,r: path p.e; p.e=z4e{right}..tension .9 and 1..z5e; + if angle direction 1 of p.e>75: + p.e:=z4e{right}..tension atleast.9 and 1..{dir 75}z5e; fi endfor + filldraw stroke pulled_super_arc.e(2,3)(.7superpull) + & pulled_super_arc.e(3,4)(.5superpull) & p.e; fi % arc and lower terminal + enddef; + +def d_stroke(expr Topserif, Botserif, bot_y) = + pickup tiny.nib; pos1(stem',0); pos2(stem,0); + pos0'(stem',0); pos0(stem,0); z0r=z0'r; x0'=x1; x0=x2; + rt x1r=hround(w-side_gap+.5stem'); top y1=h; + numeric edge; edge=lft x2l; + pickup fine.nib; pos3(if hefty:thin_join else: hair fi,0); + pos4(vair,90); pos5(curve,180); pos6(vair,270); penpos7(x3r-x3l,360); + lft x3l=min(lft x3l-(rt x3r-tiny.rt x2r),1/3[lft x2,edge]); + y3=1/8[bar_height,x_height]; + x4l=.5(w-serif_fit)-.3u; top y4r=x_height+oo; + lft x5r=hround max(1.35u-.5curve,.6u); y5=.5x_height; + x6l=x4l-.2u; bot y6r=-oo; + x7=x3; y7=min(y3,y6+y4-y3+.6vair); + (x,y4r)=whatever[z3l,z4l]; x4r:=max(x,.5[x5r,x4]); + (x',y6r)=whatever[z7l,z6l]; x6r:=max(x',.5[x5r,x6]); + filldraw stroke z3e{up}...pulled_arc.e(4,5) + & pulled_arc.e(5,6)...{up}z7e; % bowl + y0=ypart(((edge,h)--(edge,0))intersectionpoint(z3l{up}...{left}z4l)); + pickup tiny.nib; numeric lower_serif_drop; + lower_serif_drop = if Times_Compat: serif_drop else: min(oo,serif_drop) fi; + bot y2=if Botserif: if serifs:-min(oo,serif_drop) else: 0 fi; else: bot_y; fi + if Topserif: filldraw stroke z1e--z0'e--z0e--z2e; % stem + else: filldraw stroke z0e--z2e; fi % stem + if serifs: if Topserif: sloped_serif.l(1,0',a,1/3,jut,serif_drop); fi % upper serif + if Botserif: sloped_serif.r(2,0,b,1/3,jut,lower_serif_drop); fi fi % lower serif + enddef; + +def epsilon_stroke(expr reverse,mid_jut) = % derived from `3' of cm + numeric top_thickness,mid_thickness,bot_thickness,mid_thickness'; + top_thickness=max(fine.breadth,vround(slab-2vair_corr)); + mid_thickness=max(fine.breadth,vround 2/3vair); + bot_thickness=max(fine.breadth,vround(slab-vair_corr)); + mid_thickness'=max(hround .6fine.breadth, + hround .35[curve,cap_curve]-stem_corr); + pickup fine.nib; pos2(top_thickness,90); + pos4(vair,-90); pos5(vair,-90); pos6(mid_thickness,90); + pos8(bot_thickness,-90); top y2r=h+o; bot y8r=-o; + if reverse=true: pos3(mid_thickness',0); pos7(mid_thickness',0); + rt x3r=hround(w-u); rt x7r=hround(w-.75u); + x2=x6=x8=.5[1.5u,x7]; lft x5=min(hround mid_jut,lft x6)-eps; + z4=z5+whatever*(150u,h); + else: pos3(mid_thickness',180); pos7(mid_thickness',180); + lft x3r=hround(u); lft x7r=hround(.75u); + x2=x6=x8=.5[x7,w-1.5u]; rt x5=max(hround(w-mid_jut),w-rt x6)+eps; + z4=z5+whatever*(-150u,h); fi + x4=1/3[x5,x3l]; y3=.5[top y4l,bot y2l]; y7=.5[bot y6l,top y8l]; + top y5l=vround(.54h+.5vair); y5r=y6l; + filldraw stroke pulled_super_arc.e(2,3)(.5superpull) + & z3e{down}...z4e---z5e; % upper bowl + filldraw z5r--z6l--z6r--z5l---cycle; % middle tip + filldraw stroke pulled_super_arc.e(6,7)(.5superpull) + & pulled_super_arc.e(7,8)(.5superpull); % lower bowl + enddef; + +def yogh_stroke(expr xmid,xmidrate,xoffset,Comb,Notail) = % derived from `z' of cm + numeric arm_thickness[],z_stem,stem[]; + stem1=fudged.stem-4stem_corr; + if hefty: arm_thickness1=stem1; arm_thickness2=stem1; + z_stem=fudged.hair; + else: arm_thickness1=stem1; arm_thickness2=stem1; z_stem=fudged.hair; fi + if arm_thickness1<tiny.breadth: arm_thickness1:=tiny.breadth; fi + pickup tiny.nib; rt x1r=rt x2r=hround(w-.8u); + lft x3l=lft x4l=hround(xmidrate[xmid, w-.8u]-.25hair); + top y1=h; y2=min(y1,h-2/3arm_thickness1); + bot y4=.3[0,h]; y3=max(y4,2/3arm_thickness2); + numeric alpha; + alpha=diag_ratio(1,z_stem-tiny,y2-y3,x2r-x3l-slant*(y2-y3)); + penpos1(alpha*(z_stem-tiny),0); penpos2(alpha*(z_stem-tiny),0); + penpos3(alpha*(z_stem-tiny),0); penpos4(alpha*(z_stem-tiny),0); + pair delta; delta=penoffset z3-z2 of currentpen; + fill top lft z1l--z2l+delta---z3l+delta..lft z3l---lft z4l..bot z4l + ---bot rt z4r--z3r-delta---z2r-delta..rt z2r---rt z1r..top z1r + ---cycle; % diagonal + pickup crisp.nib; pos5(arm_thickness1,90); pos6(hair,180); + top y5r=h; x5=x1; + lft x6r=if Comb: hround xmid; else: hround xoffset; fi + y6=if Comb: y5l; else: good.y(y5l-beak/1.8)-eps; fi + arm(5,6,a',beak_darkness,if Comb: 0 else: -.4beak_jut fi); % upper arm and beak + pickup tiny.nib; + pos12(stem,angle(z2-z3)); x12l=x3l; bot y12l=bot y3l; + pos7(curve,0); pos8(vair,-90); + rt x7r=hround(w-.75u+.1curve); y7=.48[bot y12l,top y8l]; + x8=hround(if Times_Compat: .5[xoffset,w-.8u]-.25u else: .5[xoffset,w-.8u] fi); + bot y8r=-d-oo; + filldraw stroke pulled_arc.e(12,7) & pulled_arc.e(7,8); % bowl + if Notail: else: + if serifs: pos10(flare,-180); pos9(cap_hair,-180); + lft x10r=hround(xoffset if Times_Compat: -.5u fi); + y10=if Comb: -.45d; else: -.35d; fi + bulb(8,9,10); % lower bulb + else: pickup fine.nib; pos8'(vair,-90); z8'=z8; + pos9(.6[vair',flare],-110); + lft x9r=hround xoffset; top y9l=vround -.3d; + y9r:=good.y y9r-eps; x9l:=good.x x9l; + filldraw stroke term.e(8',9,left,1,4); fi % lower terminal + fi enddef; + +def full_circ_stroke(suffix $,$$) = + filldraw circ_stroke z$e--z$$e; + filldraw circ_stroke z$$e--z$e; + enddef; + +% added on 2001/11/22 fkr +vardef inverted_sloped_serif.r(suffix $,$$,@)(expr darkness,jut,drop) = + pickup crisp.nib; pos@2(slab,90); + rt x@0=tiny.rt x$r; lft x@1=tiny.lft x$l; top y@1=tiny.top y$l; + rt x@2=rt x@0+jut; y@2r=y@1-drop; + y@0=max(y@2l-bracket,y$$)-eps; +if drop>0: erase fill z@1--top z@1 + --(x@2r,top y@1)--z@2r--cycle; fi % erase excess at bottom + filldraw z@1--z@2r--z@2l{left} + ...darkness[(x@0,y@2l),.5[z@2l,z@0] ]{z@0-z@2l} + ...{down}z@0--(x@1,y@0)--cycle; % sloped serif + labels(@0,@1,@2); enddef; + +% moved from tipagerm.mf on 2001/11/22 fkr +vardef varm(suffix $,$$,@)(expr darkness,jut)= + y@0=good.y(y$$r-jut); x@0=x$r; + x@1=x$l; z@1=z$$l+whatever*(z$$r-z@0); z@2=.5[z$l,z@1]; + filldraw z$$l{z@1-z$$l}...darkness[z@1,.5[z@2,z$$l]]...z@2 + ---z$l--z$r--z@0--z$$r--cycle; + penlabels(@0,@1,@2); enddef; + +% front_hook and bulbvar added on 2001/12/06 fkr + +def front_hook(suffix $, $$, @, @@)(expr stem_br, stem_angle, + x_offset, y_offset, x_end, x_rate, y_rate) = + if serifs: pickup tiny.nib; + pos$(stem_br,stem_angle); pos$$(stem_br,stem_angle); + y$=y$$; x$$=x_rate[x@,x$]; + pos@(vair,180); pos@@(hair,270); pos@@'(flare,270); % anomoulous but ... + y@=y_rate[y@@r,y$$]; lft x@r=hround(x_offset); + x@@-.5flare=x_end[x@,x$]; + z@@r=z@@'r; bot y@@'r=y_offset; + filldraw stroke z$e--z$$e{left}...z@e{down}; bulbvar(@,@@,@@');%arc and bulb + else: pickup fine.nib; + pos$(stem_br,stem_angle); pos$$(stem_br,stem_angle); + y$=y$$; x$$=x_rate[x@,x$]; + pos@(vair,180); pos@@(.6[vair,flare],220); + y@=y_rate[y$$r,y@@]; lft x@r=hround(x_offset); + x@@-.5vair=x_end[x@,x$]; bot y@@r=y_offset; + filldraw stroke z$e--z$$e & super_arc.e($$,@) + & term.e(@,@@,down,.9,4); fi + enddef; + +def bulbvar(suffix $,$$,$$$) = + z$$$r=z$$r; + path_.l:=z$l{0,y$$r-y$r}...{x$$r-x$r,0}z$$l; + filldraw path_.l--z$$r{x$r-x$$r,0}...{0,y$r-y$$r}z$r--cycle; % link + path_.r:=z$$$l{x$r-x$$r,0}..z$$$r{x$$r-x$r,0}; % near-circle + filldraw subpath(0,xpart(path_.r intersectiontimes path_.l)) of path_.r + --z$$r{x$$r-x$r,0}..cycle; % bulb + enddef; + +def turned_h_stroke(suffix $,@,@@,$$) = + penpos$$(x@@r-x@@l,0); x$$=x@@; top y$$=h; + y@@=x_height-1/3[bar_height,x_height]; + penpos$''(x$r-x$l,0); x$''=x$; y$''=x_height-1/8[bar_height,x_height]; + filldraw stroke z$''e--z$e; % thicken the lower left stem + penpos@0(min(rt x$r-lft x$l,thin_join)-fine,180); pickup fine.nib; + lft x@0r=tiny.lft x$l; y@0=y$''; + pos@1(vair,90); pos@@'(x@@r-x@@l+tiny,0); z@@'=z@@; + x@1=.5[lft x@0r,lft x@@'l]; bot y@1l=-oo; + (x@,y@1r)=whatever[z@1l,z@0r]; x@1r:=x@; + filldraw stroke z@0e{down}...{left}z@1e + &{{interim superness:=hein_super; super_arc.e(@1,@@')}}; % arch + pickup tiny.nib; filldraw stroke z@@e--z$$e; % right stem + labels(@0); penlabels(@1); enddef; + +def raised_h_stroke(suffix $,@,@@,$$) = + penpos$$(x@@r-x@@l,0); x$$=x@@; y$$=.45bar_height; + y@@=1/3[bar_height,x_height]; + penpos$''(x$r-x$l,0); x$''=x$; y$''=1/8[bar_height,x_height]; + filldraw stroke z$''e--z$e; % thicken the lower left stem + penpos@0(min(rt x$r-lft x$l,thin_join)-fine,180); pickup fine.nib; + rt x@0l=tiny.rt x$r; y@0=y$''; + pos@1(vair,90); pos@@'(x@@r-x@@l+tiny,0); z@@'=z@@; + x@1=.5[rt x@0l,rt x@@'r]; top y@1r=x_height+oo; + (x@,y@1l)=whatever[z@1r,z@0l]; x@1l:=x@; + filldraw stroke z@0e{up}...{right}z@1e + &{{interim superness:=hein_super; super_arc.e(@1,@@')}}; % arch + pickup tiny.nib; filldraw stroke z@@e--z$$e; % right stem + labels(@0); penlabels(@1); enddef; + +vardef turned_special_diag_end(suffix $$,$,@,@@) = % for top middle of turned w + if x@l<=x$: diag_end($$r,$r,1,1,@l,@@l) + else: z0=whatever[z$$l,z$l]=whatever[z@l,z@@l]; + diag_end($$r,$r,1,1,$l,0)--z0 fi enddef; + +def CT(expr $, @) = % Computer modern or Times Roman? + if Times_Compat: @ else: $ fi enddef; + +% Redefinition for Times_Compat. +def f_stroke(suffix $,$$,@,left_serif,right_serif)(expr left_jut,right_jut)= + pickup tiny.nib; bot y$=0; + penpos@0(x$r-x$l,0); x@0l=x$l; top y@0=x_height; + filldraw stroke z$e--z@0e; % stem + pickup fine.nib; pos@0'(x$r-x$l-(hround stem_corr)+tiny,180); + y@0'=y@0; lft x@0'r=tiny.lft x$l; + penpos@1(x@0'l-x@0'r,180); x@1=x@0'; + y@1+.5vair=if Times_Compat:.33 else:.5 fi[x_height,h]; + pos@2(vair,90); top y@2r=h+oo; + if serifs: x@2=.6[x@1,x$$r]; (x@,y@2r)=whatever[z@2l,z@1l]; + x@2r:=min(x@,.5[x@2,x$$r]); pos@3(hair,0); bulb(@2,@3,$$); % bulb + filldraw stroke z@0'e--z@1e & super_arc.e(@1,@2); % arc + dish_serif($,@0,left_serif,1/3,left_jut,right_serif,1/3,right_jut); % serif + else: x@2=.6[x@1,x$$]; y@1l:=1/3[y@1l,y@2l]; + filldraw stroke z@0'e--z@1e & super_arc.e(@1,@2) + & term.e(@2,$$,right,.9,4); fi % arc and terminal + penlabels(@0,@1,@2); enddef; + +def thin_hair = if hair# > 1.5u#: hround(.6hair) else: hair fi enddef; + +def side_gap = if Times_Compat: 2.4u else: 2.5u fi enddef; + +% end of tipabase.mf diff --git a/Master/texmf-dist/fonts/source/public/tipa/tipabs10.mf b/Master/texmf-dist/fonts/source/public/tipa/tipabs10.mf new file mode 100644 index 00000000000..9cef2692dcd --- /dev/null +++ b/Master/texmf-dist/fonts/source/public/tipa/tipabs10.mf @@ -0,0 +1,92 @@ +% tipabs10.mf: TIPA Bold Extended Slanted Roman 10 point parameter file +% Copyright 1996-2003 FUKUI Rei +% +% This program may be distributed and/or modified under the +% conditions of the LaTeX Project Public License, either version 1.2 +% of this license or (at your option) any later version. +% The latest version of this license is in +% http://www.latex-project.org/lppl.txt +% and version 1.2 or later is part of all distributions of LaTeX +% version 1999/12/01 or later. +% +% This program consists of all files listed in Manifest.txt. +% +% Version 1.2 2003/01/01 +% +% This file is based on: +% Computer Modern font series by D. E. Knuth and +% TSIPA by KOBAYASHI Hajime, FUKUI Rei and SHIRAKAWA Shun. + +if unknown cmbase: input cmbase fi +if unknown tipabase: input tipabase fi + +font_identifier:="TIPABS"; font_size 10pt#; + +Times_Compat:=false; +if Times_Compat: input tipatr fi + +u#:=23/36pt#; +width_adj#:=11/36pt#; +serif_fit#:=0pt#; +cap_serif_fit#:=7/36pt#; +letter_fit#:=0pt#; +body_height#:=270/36pt#; +asc_height#:=250/36pt#; +cap_height#:=247/36pt#; +fig_height#:=232/36pt#; +x_height#:=160/36pt#; +math_axis#:=90/36pt#; +bar_height#:=85/36pt#; +comma_depth#:=70/36pt#; +desc_depth#:=70/36pt#; +crisp#:=0pt#; +tiny#:=13/36pt#; +fine#:=10/36pt#; +thin_join#:=10/36pt#; +hair#:=17/36pt#; +stem#:=41/36pt#; +curve#:=46/36pt#; +ess#:=38/36pt#; +flare#:=45/36pt#; +dot_size#:=56/36pt#; +cap_hair#:=19/36pt#; +cap_stem#:=51/36pt#; +cap_curve#:=55/36pt#; +cap_ess#:=53/36pt#; +rule_thickness#:=.6pt#; +dish#:=1/36pt#; +bracket#:=10/36pt#; +jut#:=25/36pt#; +cap_jut#:=39/36pt#; +beak_jut#:=11/36pt#; +beak#:=70/36pt#; +vair#:=13/36pt#; +notch_cut#:=10pt#; +bar#:=17/36pt#; +slab#:=17/36pt#; +cap_bar#:=17/36pt#; +cap_band#:=17/36pt#; +cap_notch_cut#:=10pt#; +serif_drop#:=3/36pt#; +stem_corr#:=2/36pt#; +vair_corr#:=1.5/36pt#; +apex_corr#:=0pt#; +o#:=4/36pt#; +apex_o#:=3/36pt#; +slant:=1/6; +fudge:=1; +math_spread:=.5; +superness:=8/11; +superpull:=1/8; +beak_darkness:=.4; +ligs:=2; +square_dots:=false; +hefty:=false; +serifs:=true; +monospace:=false; +low_asterisk:=false; +math_fitting:=false; +sc.u#:=18/36pt#; +sc.letter_fit#:=2.4/36pt#; + +generate tipa % switch to the driver file diff --git a/Master/texmf-dist/fonts/source/public/tipa/tipabx10.mf b/Master/texmf-dist/fonts/source/public/tipa/tipabx10.mf new file mode 100644 index 00000000000..580e38427c4 --- /dev/null +++ b/Master/texmf-dist/fonts/source/public/tipa/tipabx10.mf @@ -0,0 +1,92 @@ +% tipabx10.mf: TIPA Bold Extended Roman 10 point parameter file +% Copyright 1996-2003 FUKUI Rei +% +% This program may be distributed and/or modified under the +% conditions of the LaTeX Project Public License, either version 1.2 +% of this license or (at your option) any later version. +% The latest version of this license is in +% http://www.latex-project.org/lppl.txt +% and version 1.2 or later is part of all distributions of LaTeX +% version 1999/12/01 or later. +% +% This program consists of all files listed in Manifest.txt. +% +% Version 1.2 2003/01/01 +% +% This file is based on: +% Computer Modern font series by D. E. Knuth and +% TSIPA by KOBAYASHI Hajime, FUKUI Rei and SHIRAKAWA Shun. + +if unknown cmbase: input cmbase fi +if unknown tipabase: input tipabase fi + +font_identifier:="TIPABX"; font_size 10pt#; + +Times_Compat:=false; +if Times_Compat: input tipatr fi + +u#:=23/36pt#; +width_adj#:=11/36pt#; +serif_fit#:=0pt#; +cap_serif_fit#:=7/36pt#; +letter_fit#:=0pt#; +body_height#:=270/36pt#; +asc_height#:=250/36pt#; +cap_height#:=247/36pt#; +fig_height#:=232/36pt#; +x_height#:=160/36pt#; +math_axis#:=90/36pt#; +bar_height#:=85/36pt#; +comma_depth#:=70/36pt#; +desc_depth#:=70/36pt#; +crisp#:=0pt#; +tiny#:=13/36pt#; +fine#:=10/36pt#; +thin_join#:=10/36pt#; +hair#:=17/36pt#; +stem#:=41/36pt#; +curve#:=46/36pt#; +ess#:=38/36pt#; +flare#:=45/36pt#; +dot_size#:=56/36pt#; +cap_hair#:=19/36pt#; +cap_stem#:=51/36pt#; +cap_curve#:=55/36pt#; +cap_ess#:=53/36pt#; +rule_thickness#:=.6pt#; +dish#:=1/36pt#; +bracket#:=10/36pt#; +jut#:=25/36pt#; +cap_jut#:=39/36pt#; +beak_jut#:=11/36pt#; +beak#:=70/36pt#; +vair#:=13/36pt#; +notch_cut#:=10pt#; +bar#:=17/36pt#; +slab#:=17/36pt#; +cap_bar#:=17/36pt#; +cap_band#:=17/36pt#; +cap_notch_cut#:=10pt#; +serif_drop#:=3/36pt#; +stem_corr#:=2/36pt#; +vair_corr#:=1.5/36pt#; +apex_corr#:=0pt#; +o#:=4/36pt#; +apex_o#:=3/36pt#; +slant:=0; +fudge:=1; +math_spread:=.5; +superness:=8/11; +superpull:=1/8; +beak_darkness:=.4; +ligs:=2; +square_dots:=false; +hefty:=false; +serifs:=true; +monospace:=false; +low_asterisk:=false; +math_fitting:=false; +sc.u#:=18/36pt#; +sc.letter_fit#:=2.4/36pt#; + +generate tipa % switch to the driver file diff --git a/Master/texmf-dist/fonts/source/public/tipa/tipabx12.mf b/Master/texmf-dist/fonts/source/public/tipa/tipabx12.mf new file mode 100644 index 00000000000..394a6d4937a --- /dev/null +++ b/Master/texmf-dist/fonts/source/public/tipa/tipabx12.mf @@ -0,0 +1,92 @@ +% tipabx12.mf: TIPA Bold Extended Roman 12 point parameter file +% Copyright 1996-2003 FUKUI Rei +% +% This program may be distributed and/or modified under the +% conditions of the LaTeX Project Public License, either version 1.2 +% of this license or (at your option) any later version. +% The latest version of this license is in +% http://www.latex-project.org/lppl.txt +% and version 1.2 or later is part of all distributions of LaTeX +% version 1999/12/01 or later. +% +% This program consists of all files listed in Manifest.txt. +% +% Version 1.2 2003/01/01 +% +% This file is based on: +% Computer Modern font series by D. E. Knuth and +% TSIPA by KOBAYASHI Hajime, FUKUI Rei and SHIRAKAWA Shun. + +if unknown cmbase: input cmbase fi +if unknown tipabase: input tipabase fi + +font_identifier:="TIPABX"; font_size 12pt#; + +Times_Compat:=false; +if Times_Compat: input tipatr fi + +u#:=27/36pt#; +width_adj#:=13/36pt#; +serif_fit#:=0pt#; +cap_serif_fit#:=8/36pt#; +letter_fit#:=0pt#; +body_height#:=324/36pt#; +asc_height#:=300/36pt#; +cap_height#:=296.4/36pt#; +fig_height#:=278.4/36pt#; +x_height#:=192/36pt#; +math_axis#:=108/36pt#; +bar_height#:=102/36pt#; +comma_depth#:=84/36pt#; +desc_depth#:=84/36pt#; +crisp#:=0pt#; +tiny#:=13/36pt#; +fine#:=10/36pt#; +thin_join#:=10.5/36pt#; +hair#:=18.3/36pt#; +stem#:=47/36pt#; +curve#:=52/36pt#; +ess#:=44/36pt#; +flare#:=51/36pt#; +dot_size#:=62/36pt#; +cap_hair#:=20/36pt#; +cap_stem#:=57/36pt#; +cap_curve#:=61/36pt#; +cap_ess#:=59/36pt#; +rule_thickness#:=.66pt#; +dish#:=1/36pt#; +bracket#:=12/36pt#; +jut#:=30/36pt#; +cap_jut#:=46/36pt#; +beak_jut#:=12.4/36pt#; +beak#:=84/36pt#; +vair#:=14.3/36pt#; +notch_cut#:=12pt#; +bar#:=18.5/36pt#; +slab#:=18.5/36pt#; +cap_bar#:=18.5/36pt#; +cap_band#:=18.5/36pt#; +cap_notch_cut#:=12pt#; +serif_drop#:=3.6/36pt#; +stem_corr#:=2/36pt#; +vair_corr#:=1.5/36pt#; +apex_corr#:=0pt#; +o#:=5/36pt#; +apex_o#:=4/36pt#; +slant:=0; +fudge:=1; +math_spread:=.4; +superness:=8/11; +superpull:=1/8; +beak_darkness:=.4; +ligs:=2; +square_dots:=false; +hefty:=false; +serifs:=true; +monospace:=false; +low_asterisk:=false; +math_fitting:=false; +sc.u#:=21.13/36pt#; +sc.letter_fit#:=2.4/36pt#; + +generate tipa % switch to the driver file diff --git a/Master/texmf-dist/fonts/source/public/tipa/tipabx8.mf b/Master/texmf-dist/fonts/source/public/tipa/tipabx8.mf new file mode 100644 index 00000000000..f0a777186ae --- /dev/null +++ b/Master/texmf-dist/fonts/source/public/tipa/tipabx8.mf @@ -0,0 +1,92 @@ +% tipabx8.mf: TIPA Bold Extended Roman 8 point parameter file +% Copyright 1996-2003 FUKUI Rei +% +% This program may be distributed and/or modified under the +% conditions of the LaTeX Project Public License, either version 1.2 +% of this license or (at your option) any later version. +% The latest version of this license is in +% http://www.latex-project.org/lppl.txt +% and version 1.2 or later is part of all distributions of LaTeX +% version 1999/12/01 or later. +% +% This program consists of all files listed in Manifest.txt. +% +% Version 1.2 2003/01/01 +% +% This file is based on: +% Computer Modern font series by D. E. Knuth and +% TSIPA by KOBAYASHI Hajime, FUKUI Rei and SHIRAKAWA Shun. + +if unknown cmbase: input cmbase fi +if unknown tipabase: input tipabase fi + +font_identifier:="TIPABX"; font_size 8pt#; + +Times_Compat:=false; +if Times_Compat: input tipatr fi + +u#:=19.6/36pt#; +width_adj#:=9.4/36pt#; +serif_fit#:=0pt#; +cap_serif_fit#:=5.4/36pt#; +letter_fit#:=0pt#; +body_height#:=216/36pt#; +asc_height#:=200/36pt#; +cap_height#:=197.6/36pt#; +fig_height#:=185.6/36pt#; +x_height#:=128/36pt#; +math_axis#:=72/36pt#; +bar_height#:=67/36pt#; +comma_depth#:=56/36pt#; +desc_depth#:=56/36pt#; +crisp#:=0pt#; +tiny#:=12/36pt#; +fine#:=10/36pt#; +thin_join#:=10/36pt#; +hair#:=16.2/36pt#; +stem#:=35/36pt#; +curve#:=39/36pt#; +ess#:=32/36pt#; +flare#:=39/36pt#; +dot_size#:=46/36pt#; +cap_hair#:=19/36pt#; +cap_stem#:=43/36pt#; +cap_curve#:=46/36pt#; +cap_ess#:=43/36pt#; +rule_thickness#:=.54pt#; +dish#:=1/36pt#; +bracket#:=8/36pt#; +jut#:=19/36pt#; +cap_jut#:=31/36pt#; +beak_jut#:=9.4/36pt#; +beak#:=55/36pt#; +vair#:=12/36pt#; +notch_cut#:=8pt#; +bar#:=15/36pt#; +slab#:=15/36pt#; +cap_bar#:=15/36pt#; +cap_band#:=15/36pt#; +cap_notch_cut#:=8pt#; +serif_drop#:=2.4/36pt#; +stem_corr#:=1.8/36pt#; +vair_corr#:=1.3/36pt#; +apex_corr#:=0pt#; +o#:=4/36pt#; +apex_o#:=3/36pt#; +slant:=0; +fudge:=1; +math_spread:=.9; +superness:=8/11; +superpull:=1/8; +beak_darkness:=.4; +ligs:=2; +square_dots:=false; +hefty:=false; +serifs:=true; +monospace:=false; +low_asterisk:=false; +math_fitting:=false; +sc.u#:=15.34/36pt#; +sc.letter_fit#:=2.4/36pt#; + +generate tipa % switch to the driver file diff --git a/Master/texmf-dist/fonts/source/public/tipa/tipabx9.mf b/Master/texmf-dist/fonts/source/public/tipa/tipabx9.mf new file mode 100644 index 00000000000..513c9216667 --- /dev/null +++ b/Master/texmf-dist/fonts/source/public/tipa/tipabx9.mf @@ -0,0 +1,92 @@ +% tipabx9.mf: TIPA Bold Extended Roman 9 point parameter file +% Copyright 1996-2003 FUKUI Rei +% +% This program may be distributed and/or modified under the +% conditions of the LaTeX Project Public License, either version 1.2 +% of this license or (at your option) any later version. +% The latest version of this license is in +% http://www.latex-project.org/lppl.txt +% and version 1.2 or later is part of all distributions of LaTeX +% version 1999/12/01 or later. +% +% This program consists of all files listed in Manifest.txt. +% +% Version 1.2 2003/01/01 +% +% This file is based on: +% Computer Modern font series by D. E. Knuth and +% TSIPA by KOBAYASHI Hajime, FUKUI Rei and SHIRAKAWA Shun. + +if unknown cmbase: input cmbase fi +if unknown tipabase: input tipabase fi + +font_identifier:="TIPABX"; font_size 9pt#; + +Times_Compat:=false; +if Times_Compat: input tipatr fi + +u#:=21.3/36pt#; +width_adj#:=10.2/36pt#; +serif_fit#:=0pt#; +cap_serif_fit#:=6.2/36pt#; +letter_fit#:=0pt#; +body_height#:=243/36pt#; +asc_height#:=225/36pt#; +cap_height#:=222.3/36pt#; +fig_height#:=208.8/36pt#; +x_height#:=144/36pt#; +math_axis#:=81/36pt#; +bar_height#:=76/36pt#; +comma_depth#:=63/36pt#; +desc_depth#:=63/36pt#; +crisp#:=0pt#; +tiny#:=13/36pt#; +fine#:=10/36pt#; +thin_join#:=10/36pt#; +hair#:=16.6/36pt#; +stem#:=38/36pt#; +curve#:=43/36pt#; +ess#:=35/36pt#; +flare#:=42/36pt#; +dot_size#:=51/36pt#; +cap_hair#:=19/36pt#; +cap_stem#:=47/36pt#; +cap_curve#:=51/36pt#; +cap_ess#:=48/36pt#; +rule_thickness#:=.57pt#; +dish#:=1/36pt#; +bracket#:=9/36pt#; +jut#:=22/36pt#; +cap_jut#:=35/36pt#; +beak_jut#:=10.2/36pt#; +beak#:=63/36pt#; +vair#:=12.5/36pt#; +notch_cut#:=9pt#; +bar#:=16/36pt#; +slab#:=16/36pt#; +cap_bar#:=16/36pt#; +cap_band#:=16/36pt#; +cap_notch_cut#:=9pt#; +serif_drop#:=2.7/36pt#; +stem_corr#:=1.9/36pt#; +vair_corr#:=1.4/36pt#; +apex_corr#:=0pt#; +o#:=4/36pt#; +apex_o#:=3/36pt#; +slant:=0; +fudge:=1; +math_spread:=.7; +superness:=8/11; +superpull:=1/8; +beak_darkness:=.4; +ligs:=2; +square_dots:=false; +hefty:=false; +serifs:=true; +monospace:=false; +low_asterisk:=false; +math_fitting:=false; +sc.u#:=16.67/36pt#; +sc.letter_fit#:=2.4/36pt#; + +generate tipa % switch to the driver file diff --git a/Master/texmf-dist/fonts/source/public/tipa/tipadiac.mf b/Master/texmf-dist/fonts/source/public/tipa/tipadiac.mf new file mode 100644 index 00000000000..aa0343d3099 --- /dev/null +++ b/Master/texmf-dist/fonts/source/public/tipa/tipadiac.mf @@ -0,0 +1,806 @@ +% tipadiac.mf: TIPA accents and diacritics +% Copyright 1996-2003 FUKUI Rei +% +% This program may be distributed and/or modified under the +% conditions of the LaTeX Project Public License, either version 1.2 +% of this license or (at your option) any later version. +% The latest version of this license is in +% http://www.latex-project.org/lppl.txt +% and version 1.2 or later is part of all distributions of LaTeX +% version 1999/12/01 or later. +% +% This program consists of all files listed in Manifest.txt. +% +% Version 1.2 2003/01/01 +% +% This font is based on: +% Computer Modern font series by D. E. Knuth and +% TSIPA by KOBAYASHI Hajime, FUKUI Rei and SHIRAKAWA Shun. +% + +numeric ipacode; +ipacode := -1; + +cmchar "Grave accent"; +beginchar(incr ipacode,9u#,min(asc_height#,2x_height#),0); +adjust_fit(0,0); +if serifs: pickup crisp.nib; x1-.5stem=hround 2u; x2=2/3[x1,w-x1]; + y1+.5stem=h+eps; y2=max(2/3[h,x_height],x_height+o+hair); + numeric theta; theta=angle(z2-z1)+90; + pos1(stem,theta); pos2(hair,theta); + filldraw circ_stroke z1e--z2e; % diagonal +else: pickup fine.nib; pos1(stem,0); pos2(vair,0); + lft x1l=hround 1.5u; rt x2r=hround(.5w+.25u+.5vair); + top y1=h; bot y2=vround 2/3[h,x_height]; + filldraw stroke z1e--z2e; fi % diagonal +penlabels(1,2); endchar; + +cmchar "Acute accent"; +beginchar(incr ipacode,9u#,min(asc_height#,2x_height#),0); +italcorr h#*slant-if serifs: 1.5 fi u#; +adjust_fit(0,0); +if serifs: pickup crisp.nib; x1+.5stem=hround(w-2u); x2=2/3[x1,w-x1]; + y1+.5stem=h+eps; y2=max(2/3[h,x_height],x_height+o+hair); + numeric theta; theta=angle(z2-z1)+90; + pos1(stem,theta); pos2(hair,theta); + filldraw circ_stroke z1e--z2e; % diagonal +else: pickup fine.nib; pos1(stem,0); pos2(vair,0); + rt x1r=hround(w-1.5u); lft x2l=hround(.5w-.25u-.5vair); + top y1=h; bot y2=vround 2/3[h,x_height]; + filldraw stroke z1e--z2e; fi % diagonal +penlabels(1,2); endchar; + +cmchar "Circumflex (hat) accent"; +beginchar(incr ipacode,9u#,min(asc_height#,2x_height#),0); +if serifs: italcorr .5[x_height#,h#]*slant+.5hair#-1.75u#; + adjust_fit(0,0); + pickup crisp.nib; pos2(CT(.5,.6)[vair,curve],90); top y2r=h; x2=.5w; + x1=w-x3=good.x 2.25u; y1=y3=.5[x_height,y2]; + pos1(hair,angle(z2-z1)+90); pos3(hair,angle(z3-z2)+90); + filldraw stroke z1e--z2e--z3e; % diagonals +else: italcorr 2/3[x_height#,h#]*slant-.5stem#+.5vair#-.75u#; + adjust_fit(0,0); + pickup fine.nib; pos1(vair,0); pos3(vair,0); x1=w-x3; + pos2(stem,0); top y2=h; x2=.5w; bot y1=bot y3=vround 2/3[h,x_height]-eps; + lft x1l=hround(rt x2r-3.25u-.5vair); % same slope as in the acute accent + z0=whatever[z1r,z2r]=whatever[z2l,z3l]; + y4l=y4r=y2; x4l=good.x .2[x2l,x2]; x4r=w-x4l; + filldraw z4l--z1l--z1r--z0--z3l--z3r--z4r--cycle; fi % diagonals +penlabels(0,1,2,3,4); endchar; + +cmchar "Tilde (squiggle) accent"; +beginchar(incr ipacode,9u#,min(asc_height#,10/7x_height#+.5dot_size#),0); +italcorr h#*slant-u#; +adjust_fit(0,0); +if serifs: numeric theta; theta=angle(1/6(6u-vair),1/4(h-x_height)); + pickup crisp.nib; numeric mid_width; mid_width=.4[vair,stem]; + pos1(vair,theta+90); pos2(vair,theta+90); + pos3(vair,theta+90); pos4(vair,theta+90); + z2-z1=z4-z3=(mid_width-crisp)*dir theta; + lft x1r=w-rt x4l=hround 1.5u; top y4r=h; + bot y1l=vround(bot y1l+min(2/3[x_height,h],y3l-.25vair)-top y1r); + pair delta; ypart delta=3(y3l-y1l); delta=whatever*dir theta; + filldraw z1l..controls(z1l+delta)and(z3l-delta)..z3l..z4l + --z4r..controls(z4r-delta)and(z2r+delta)..z2r..z1r--cycle; % stroke +else: pickup fine.nib; pos1(vair,180); pos2(vair,90); + pos3(.5[vair,slab],90); pos4(vair,90); pos5(vair,180); + lft x1r=w-rt x5l=hround 1.5u; x2-x1=x3-x2=x4-x3=x5-x4; + bot y1=bot y4l=vround(.75[x_height,h]-vair); + top y2r=top y5=h; y3=.5[y2,y4]; + filldraw stroke z1e{up}...z2e{right}..z3e..{right}z4e...{up}z5e; fi % stroke +penlabels(1,2,3,4,5); endchar; + +cmchar "Umlaut (double dot) accent"; +numeric dot_diam#,dot_diam; +dot_diam#=max(dot_size#,cap_curve#); +beginchar(incr ipacode,9u#,min(asc_height#,10/7x_height#+.5dot_diam#),0); +dot_diam=max(tiny.breadth,hround(max(dot_size,cap_curve)-2stem_corr)); +italcorr h#*slant+.5dot_diam#-2.25u#; +adjust_fit(0,0); +pickup tiny.nib; pos1(dot_diam,0); pos2(dot_diam,90); +x1=x2=2.75u; top y2r=h+1; +if bot y2l<x_height+o+slab: y2l:=min(y2r-eps,x_height+o+slab+.5tiny); fi +y1=.5[y2l,y2r]; dot(1,2); % left dot +pos3(dot_diam,0); penpos4(y2r-y2l,90); y3=y4=y1; x3=x4=w-x1; +dot(3,4); % right dot +penlabels(1,2,3,4); endchar; + +cmchar "Double acute (Long Hungarian umlaut) accent"; +beginchar(incr ipacode,9u#,min(asc_height#,2x_height#),0); +italcorr h#*slant-u#; +adjust_fit(0,0); +x3-x1=x4-x2=hround 3u; y3=y1; y4=y2; +if serifs: pickup crisp.nib; x3+.5stem=hround(w-1.5u); x2=2.5u; + y1+.5stem=h; y2=max(2/3[h,x_height],x_height+o+hair); + numeric theta; theta=angle(z2-z1)+90; + pos1(stem,theta); pos2(hair,theta); + pos3(stem,theta); pos4(hair,theta); + filldraw circ_stroke z1e--z2e; % left diagonal + filldraw circ_stroke z3e--z4e; % right diagonal +else: pickup fine.nib; pos1(stem,0); pos2(vair,0); + pos3(stem,0); pos4(vair,0); + rt x3r=hround(w-1.5u); lft x4l=hround(.5w+u-.5vair); + top y1=h; bot y2=vround 2/3[h,x_height]; + filldraw stroke z1e--z2e; % left diagonal + filldraw stroke z3e--z4e; fi % right diagonal +penlabels(1,2,3,4); endchar; + +cmchar "Scandinavian circle accent"; +beginchar(incr ipacode,13u#+4/3(asc_height#-x_height#)*slant,asc_height#,0); +adjust_fit(cap_serif_fit#,cap_serif_fit#); +numeric circ_hair,circ_vair; +circ_hair=hround min(hair,u+.5); circ_vair=vround min(vair,(h-x_height)/6+.5); +penpos1(circ_vair,90); penpos3(circ_vair,-90); +penpos2(circ_hair,180); penpos4(circ_hair,0); +x2r=hround(.5w-1.5u-.5circ_hair); +x4r=w-x2r; x1=x3=.5w; y1r=h+apex_o; y2=y4=.5[y1,y3]; +y3r=vround(1/3[x_height,h]+apex_o); +penstroke pulled_arc.e(1,2) & pulled_arc.e(2,3) + & pulled_arc.e(3,4) & pulled_arc.e(4,1) & cycle; % bowl +penlabels(1,2,3,4); endchar; + +cmchar "Hachek (check) accent"; +beginchar(incr ipacode,9u#,CT(.75,.9)[x_height#,min(asc_height#,2x_height#)],0); +h':=vround min(asc_height,2x_height); % height of circumflex being inverted +if serifs: italcorr h#*slant+.5hair#-1.75u#; + adjust_fit(0,0); + pickup crisp.nib; pos2'(CT(.5,.6)[vair,curve],90); top y2'r=h; + pos2(.5[vair,curve],90); x2=.5w; + x1=w-x3=good.x 2.25u; top y1=top y3=h; y1-y2=.5(y2'-x_height); + pos1(hair,angle(z2-z1)+90); pos3(hair,angle(z3-z2)+90); + filldraw stroke z1e--z2e--z3e; % diagonals +else: italcorr h#*slant-.5stem#+.5vair#-.75u#; + adjust_fit(0,0); + pickup fine.nib; pos1(vair,0); pos3(vair,0); x1=w-x3; + pos2(stem,0); bot y2=vround(1/12[x_height,h']+o); x2=.5w; + top y1=top y3=h+o; lft x1l=hround(rt x2r-3.25u-.5vair); + z0=whatever[z1r,z2r]=whatever[z2l,z3l]; + y4l=y4r=y2; x4l=good.x .2[x2l,x2]; x4r=w-x4l; + filldraw z4l--z1l--z1r--z0--z3l--z3r--z4r--cycle; fi % diagonals +penlabels(0,1,2,3,4); endchar; + +cmchar "Breve accent"; +beginchar(incr ipacode,9u#,min(asc_height#,2x_height#),0); +italcorr h#*slant+.5vair#-1.5u#; +adjust_fit(0,0); +pickup crisp.nib; pos1(vair,-180); pos3(vair,0); +top y1=top y3=h; lft x1r=w-rt x3r=hround(2u-.5vair); +numeric mid_thickness; mid_thickness=vround 1/3[vair,stem]; +pos2(mid_thickness,-90); x2=.5w; +bot y2r=vround max(x_height+o+tiny,1/3[x_height,h]+o-.5mid_thickness); +filldraw stroke z1e{down}...z2e{right}...{up}z3e; % stroke +penlabels(1,2,3); endchar; + +cmchar "Macron (bar) accent"; +numeric macron_breadth#; macron_breadth#=.2[vair#,stem#]; +beginchar(incr ipacode,9u#,.4[x_height#,asc_height#]+macron_breadth#,0); +italcorr h#*slant-.75u#; +adjust_fit(0,0); +numeric macron_breadth; macron_breadth:=Vround .2[vair,stem]; +pickup if serifs: crisp.nib else: fine.nib fi; +pos1(macron_breadth,90); pos2(macron_breadth,90); +top y1r=top y2r=h+o; lft x1=w-rt x2=hround 1.25u; +filldraw stroke z1e--z2e; % bar +penlabels(1,2); endchar; + +cmchar "Dot accent"; +numeric dot_diam#; dot_diam#=max(dot_size#,cap_curve#); +beginchar(incr ipacode,5u#,min(asc_height#,10/7x_height#+.5dot_diam#),0); +define_whole_blacker_pixels(dot_diam); +italcorr h#*slant+.5dot_diam#-2u#; +adjust_fit(0,0); +pickup tiny.nib; pos1(dot_diam,0); pos2(dot_diam,90); +x1=x2=.5w; top y2r=h+1; +if bot y2l<x_height+o+slab: y2l:=min(y2r-eps,x_height+o+slab+.5tiny); fi +y1=.5[y2l,y2r]; dot(1,2); % dot +penlabels(1,2); endchar; + +cmchar "Cedilla accent"; +beginchar(incr ipacode,8u#,0,.875desc_depth#); +adjust_fit(0,0); +x1=.5w+.5u; +if serifs: pickup crisp.nib; pos1(stem,0); pos2(stem,0); + pos3(vair,90); pos4(stem,0); pos5(vair,-90); + x1=x2; z3l=z2l; x4=x2+1.5u; x5=x3-1.5u; + bot y1=-o; bot y2=-vround 2/7d-o; y4=.5[y3,y5]; bot y5=-d-o; + filldraw stroke z1e--z2e; % stem + filldraw stroke z3e{right}...z4e{down}...{left}z5e; % hook +else: pickup fine.nib; pos1(vair,0); top y1=-o-2; + pos2(.5[vair,stem],0); bot y2=-d-o; x2=x1-1.25u; + filldraw stroke z1e--z2e; fi % diagonal +penlabels(1,2,3,4,5); endchar; + +cmchar "Polish Hook"; +beginchar(incr ipacode,6u#,0,desc_depth#); +adjust_fit(if monospace: 1u#,1u# else: 0,0 fi); +pickup if serifs: crisp.nib; else: fine.nib; fi +pos1(vair,-60); pos4(vair,135); +if serifs: pos2(stem,10);pos3(max(.7stem,hair),80); +else: pos2(vair,10);pos3(vair,80); fi +x1-u=x4-2u=.5w; y1=0; y2l=y4r=-3/5d; bot y3l=-d-oo; +x3r=.7[x4r,x2r]; x2l=u; +if serifs: filldraw circ_stroke z1e{(-3,-1)}...{down}z2e... + {right}z3e...{(1,1)}z4e; +else: filldraw stroke z1e{(-3,-1)}...{down}z2e...{right}z3e...{(1,1)}z4e; fi +penlabels(1,2,3,4); endchar; + +cmchar "Double Grave Accent"; +beginchar(incr ipacode,9u#,min(asc_height#,2x_height#),0); +italcorr h#*slant-u#; +adjust_fit(0,0); +x3-x1=x4-x2=hround 3u; y3=y1; y4=y2; +if serifs: pickup crisp.nib; x1-.5stem=hround(1.5u); x4=w-2.5u; + y1+.5stem=h; y2=max(2/3[h,x_height],x_height+o+hair); + numeric theta; theta=angle(z2-z1)+90; + pos1(stem,theta); pos2(hair,theta); + pos3(stem,theta); pos4(hair,theta); + filldraw circ_stroke z1e--z2e; % left diagonal + filldraw circ_stroke z3e--z4e; % right diagonal +else: pickup fine.nib; pos1(stem,0); pos2(vair,0); + pos3(stem,0); pos4(vair,0); + lft x1l=hround(1.5u); rt x2r=hround(.5w-u+.5vair); + top y1=h; bot y2=vround 2/3[h,x_height]; + filldraw stroke z1e--z2e; % left diagonal + filldraw stroke z3e--z4e; fi % right diagonal +penlabels(1,2,3,4); endchar; + +cmchar "Grave Accent (under)"; +beginchar(incr ipacode,9u#,asc_height#,0); +adjust_fit(0,0); +if serifs: pickup crisp.nib; x1+.5stem=hround(w-2u); x2=2/3[x1,w-x1]; + y2+.5stem=h+eps; y1=max(2/3[h,x_height],x_height+o+hair); + numeric theta; theta=angle(z2-z1)+90; + pos1(stem,theta); pos2(hair,theta); + filldraw circ_stroke z1e--z2e; % diagonal +else: pickup fine.nib; pos1(stem,0); pos2(vair,0); + rt x1r=hround(w-1.5u); lft x2l=hround(.5w-.25u-.5vair); + top y2=h; bot y1=vround 2/3[h,x_height]; + filldraw stroke z1e--z2e; fi % diagonal +penlabels(1,2); endchar; + +cmchar "Acute Accent (under)"; +beginchar(incr ipacode,9u#,asc_height#,0); +adjust_fit(0,0); +if serifs: pickup crisp.nib; x1-.5stem=hround 2u; x2=2/3[x1,w-x1]; + y2+.5stem=h+eps; y1=max(2/3[h,x_height],x_height+o+hair); + numeric theta; theta=angle(z2-z1)+90; + pos1(stem,theta); pos2(hair,theta); + filldraw circ_stroke z1e--z2e; % diagonal +else: pickup fine.nib; pos1(stem,0); pos2(vair,0); + lft x1l=hround 1.5u; rt x2r=hround(.5w+.25u+.5vair); + top y2=h; bot y1=vround 2/3[h,x_height]; + filldraw stroke z1e--z2e; fi % diagonal +penlabels(1,2); endchar; + +cmchar "Subscript Arch"; +beginchar(incr ipacode,9u#,min(asc_height#,2x_height#),0); +italcorr h#*slant+.5vair#-1.5u#; +adjust_fit(0,0); +pickup crisp.nib; pos1(vair,-180); pos3(vair,0); +numeric mid_thickness; mid_thickness=vround 1/3[vair,stem]; +pos2(mid_thickness,90); x2=.5w; +bot y1=bot y3=vround max(x_height+tiny,1/3[x_height,h]-.5mid_thickness); +top y2r=h-o; lft x1r=w-rt x3r=hround(2u-.5vair); +filldraw stroke z1e{up}...z2e{right}...{down}z3e; % stroke +penlabels(1,2,3); endchar; + +def subtop = -hround(4/7desc_depth) enddef; + +cmchar "Subscript Bridge"; +beginchar(incr ipacode,9u#,0,1.36desc_depth#+.5vair#); +adjust_fit(0,0); +if serifs: pickup diacritic.nib; + lft x1=lft x2=hround(.5w-2.5u); x3=x4=w-x1; + top y1=top y3=subtop; bot y2=-d; y2=y4; + draw z2--z1--z3--z4; +else: pickup crisp.nib; + pos1(vair,0); pos2(vair,0); pos2'(vair,90); + pos3(vair,0); pos3'(vair,90); pos4(vair,0); + lft x1l=lft x2l=hround(.5w-2.5u-.5vair); x3=x4=w-x1; x2l=x2'; x3r=x3'; + top y2'r=subtop; bot y1=bot y4=-d; y2=y3=y2'r=y3'r; + filldraw stroke z1e--z2e; + filldraw stroke z3e--z4e; + filldraw stroke z2'e--z3'e; fi +penlabels(1,2,3,4); endchar; + +cmchar "Inverted Subscript Bridge"; +beginchar(incr ipacode,9u#,0,1.36desc_depth#+.5vair#); +adjust_fit(0,0); +if serifs: pickup diacritic.nib; + lft x1=lft x2=hround(.5w-2.5u); x3=x4=w-x1; + top y1=top y3=subtop; bot y2=-d; y2=y4; + draw z1--z2--z4--z3; +else: pickup crisp.nib; + pos1(vair,0); pos2(vair,0); pos2'(vair,90); + pos3(vair,0); pos3'(vair,90); pos4(vair,0); + lft x1l=lft x2l=hround(.5w-2.5u-.5vair); x3=x4=w-x1; x2l=x2'; x3r=x3'; + top y1=top y4=subtop; bot y2'l=-d; y2=y3=y2'l=y3'l; + filldraw stroke z1e--z2e; + filldraw stroke z3e--z4e; + filldraw stroke z2'e--z3'e; fi +penlabels(1,2,3,4); endchar; + +cmchar "Subscript Square"; +beginchar(incr ipacode,9u#,0,1.36desc_depth#+vair#); +adjust_fit(0,0); +if serifs: pickup diacritic.nib; + lft x1=lft x2=hround(.5w-2.5u); x3=x4=w-x1; + top y1=top y3=subtop; bot y2=-d; y2=y4; + draw z1--z2--z4--z3--z1; +else: pickup crisp.nib; + pos1(vair,0); pos1'(vair,90); pos2(vair,0); pos2'(vair,90); + pos3(vair,0); pos3'(vair,90); pos4(vair,0); pos4'(vair,90); + lft x1l=lft x2l=hround(.5w-2.5u-.5vair); x3=x4=w-x1; + x2l=x1'=x2'; x3r=x3'=x4'; + top y1'r=subtop; bot y2'l=-d; y2=y3=y2'l=y3'l; y1=y1'r=y4=y4'r; + filldraw stroke z1e--z2e; + filldraw stroke z3e--z4e; + filldraw stroke z1'e--z4'e; + filldraw stroke z2'e--z3'e; fi +penlabels(1,2,3,4); endchar; + +cmchar "Subscript Right Half-ring"; +beginchar(incr ipacode,6u#,.5x_height#+vair#,0); +adjust_fit(if monospace: .5u#,.5u# else: 0,0 fi); +autorounded; +if serifs: pickup diacritic.nib; + rt x2=hround(w-1.75u)+eps; x1=x3=w-x2; + bot y3=-d; y2=.5[y1,y3]; top y1=h; + draw z1{right}...z2{down}...z3{left}; +else: pickup crisp.nib; + pos1(vair,90); pos2(vair,0); pos3(vair,-90); + rt x2r=hround(w-2u+.5vair)+eps; lft x1=lft x3=hround(w-rt x2r+.3vair); + bot y3r=-d; y2=.5[y1,y3]; top y1r=h; + filldraw stroke z1e{right}...z2e{down}...z3e{left}; fi +penlabels(1,2,3); endchar; + +cmchar "Subscript Left Half-ring"; +beginchar(incr ipacode,6u#,.5x_height#+vair#,0); +adjust_fit(if monospace: .5u#,.5u# else: 0,0 fi); +autorounded; +if serifs: pickup diacritic.nib; + lft x2=hround 1.75u-eps; x1=x3=w-x2; + bot y3=-d; y2=.5[y1,y3]; top y1=h; + draw z1{left}...z2{down}...z3{right}; +else: pickup crisp.nib; + pos1(vair,-90); pos2(vair,0); pos3(vair,90); + lft x2l=hround(2u-.5vair)-eps; rt x1=rt x3=hround(w-lft x2l-.3vair); + bot y3l=-d; y2=.5[y1,y3]; top y1l=h; + filldraw stroke z1e{left}...z2e{down}...z3e{right}; fi +penlabels(1,2,3); endchar; + +cmchar "Subscript W"; +beginchar(incr ipacode,9u#,0,1.4desc_depth#+.5vair#); +adjust_fit(0,0); +if serifs: pickup fine.nib; + numeric hbreadth; hbreadth=max(diacritic,hair); + pos2(vair,-210); pos3(hbreadth,-90); pos4(vair,10); + pos6(vair,170); pos7(hbreadth,270); pos8(vair,30); + lft x2r=hround 1.5u; top y2=top y8=subtop; y4=y6=y2-vair; + bot y3r=bot y7r=-d; + x3=.4[x2,x4]; x7=w-x3; x8=w-x2; x4=x6=good.x .5w; + filldraw circ_stroke z2e{(-1,-2)}...z3e{right}...{(-1,5)}z4e; + filldraw circ_stroke z8e{(1,-2)}...z7e{left}...{(1,5)}z6e; +else: pickup crisp.nib; + pos2(vair,-210); pos3(vair,-90); pos4(vair,0); + pos6(vair,180); pos7(vair,270); pos8(vair,30); + lft x2r=hround(1.5u-.25vair); top y2=top y8=subtop; y4=y6=y2-vair; + bot y3r=bot y7r=-d; + x3=.4[x2,x4]; x7=w-x3; x8=w-x2; x4=x6=good.x .5w; + filldraw circ_stroke z4e{down}...z3e{left}...{(1,2)}z2e; + filldraw circ_stroke z6e{down}...z7e{right}...{(-1,2)}z8e; fi +penlabels(2,3,4,6,7,8); endchar; + +cmchar "Seagull"; +beginchar(incr ipacode,9u#,0,1.2desc_depth#+.5vair#); +adjust_fit(0,0); +if serifs: pickup fine.nib; + numeric hbreadth; hbreadth=max(diacritic,hair); + pos1(vair,160); pos2(hbreadth,90); pos3(vair,0); + pos4(hbreadth,-90); pos5(vair,-160); + x1=w-x5=1.2u; x3=.5w; x2=w-x4=.5[x1,x3]; + top y2r=top y4l=subtop+oo; bot y3=-d; bot y1=bot y5=.1[y3,y2]; + filldraw stroke z1e{(1,4)}...{right}z2e...{down}z3e; + filldraw stroke z3e{up}...{right}z4e...{(1,-4)}z5e; +else: pickup crisp.nib; + pos1(vair,150); pos2(vair,90); pos3(vair,0); + pos4(vair,-90); pos5(vair,-150); + x1=w-x5=1.2u; x3=.5w; x2=w-x4=.5[x1,x3]; + top y2r=top y4l=subtop+oo; bot y3=-d+.5vair; + bot y1l=bot y5r=0[y3,y2]-.5vair; + filldraw circ_stroke z3e{up}...{left}z2e...{(-1,-5)}z1e; + filldraw circ_stroke z3e{up}...{right}z4e...{(1,-5)}z5e; fi +penlabels(1,2,3,4,5); endchar; + +cmchar "Over-cross"; +beginchar(incr ipacode,9u#,asc_height#,0); +adjust_fit(0,0); +if serifs: pickup diacritic.nib; + lft x1=lft x2=hround(.5w-2.5u); x3=x4=w-x1; + top y1=top y3=h-o; bot y2=bot y4=.2[x_height,h]; + draw z1--z4; draw z2--z3; +else: pickup crisp.nib; + pos1(vair,65); pos2(vair,115); pos3(vair,115); pos4(vair,65); + lft x1l=lft x2r=hround(.5w-2.5u-.25vair); x3=x4=w-x1; + top y1r=top y3r=h-o; bot y2l=bot y4l=.2[x_height,h]-.6vair; + filldraw stroke z1e--z4e; filldraw stroke z2e--z3e; fi +penlabels(1,2,3,4); endchar; + +ipacode:=ipacode+2; % dotless i and j come here; + +cmchar "Subscript Plus"; +beginchar(incr ipacode,8u#,4vu#+vair#,0); +adjust_fit(0,0); +if serifs: pickup diacritic.nib; + top y3=h; bot y4=0; x3=x4=good.x .5w; + lft x1=hround(.5(w-(top y3-bot y4))); x2=w-x1; y1=y2=good.y .5[y3,y4]; + draw z1--z2; draw z3--z4; +else: pickup crisp.nib; + pos1(vair,90); pos2(vair,90); pos3(vair,0); pos4(vair,0); + top y3=h; bot y4=0; + lft x3l=lft x4l=hround(.5w-.5vair); + lft x1=hround(.5(w-(top y3-bot y4))); x2=w-x1; + top y1r=top y2r=vround(.5[y3,y4]+.5vair); + filldraw stroke z1e--z2e; filldraw stroke z3e--z4e; fi +penlabels(1,2,3,4); endchar; + +cmchar "Raising Sign"; +beginchar(incr ipacode,8u#,4vu#+vair#,0); +adjust_fit(0,0); +if serifs: pickup diacritic.nib; + x1=w-x2; x3=x4=good.x(.5[x1,x2]); x2-x1=4u; + y1=y2=y4; top y3=h; y4=good.y(y3-3vu); + draw z1--z2; draw z3--z4; +else: pickup crisp.nib; + pos1(vair,90); pos2(vair,90); pos3(vair,0); pos4(vair,0); + x1=w-x2; lft x1=hround(2u-.25vair); lft x3l=lft x4l=hround(.5w-.5vair); + y1l=y2l=y4; top y3=h; bot y4=vround(y3-3vu-.5vair); + filldraw stroke z1e--z2e; filldraw stroke z3e--z4e; fi +penlabels(1,2,3,4); endchar; + +cmchar "Lowering Sign"; +beginchar(incr ipacode,8u#,4vu#+vair#,0); +adjust_fit(0,0); +if serifs: pickup diacritic.nib; + x1=w-x2; x3=x4=good.x(.5[x1,x2]); x2-x1=4u; + top y1=h; y1=y2=y3; y4=vround(y3-3vu); + draw z1--z2; draw z3--z4; +else: pickup crisp.nib; + pos1(vair,90); pos2(vair,90); pos3(vair,0); pos4(vair,0); + x1=w-x2; lft x1=hround(2u-.25vair); lft x3l=lft x4l=hround(.5w-.5vair); + y1r=y2r=y3; top y3=h; bot y4=vround(y3-3vu-.5vair); + filldraw stroke z1e--z2e; filldraw stroke z3e--z4e; fi +penlabels(1,2,3,4); endchar; + +cmchar "Advancing Sign"; +beginchar(incr ipacode,8u#,4vu#+vair#,0); +adjust_fit(0,0); +if serifs: pickup diacritic.nib; + x2=x3=x4=good.x(.5w+u); x1=good.x(x2-3u); + top y3=h; bot y4=0; y1=y2=good.y(.5[y3,y4]); + draw z1--z2; draw z3--z4; +else: pickup crisp.nib; + pos1(vair,90); pos2(vair,90); pos3(vair,0); pos4(vair,0); + lft x1=hround 2u; rt x2=rt x3r=rt x4r=hround(w-3u+.5vair); + top y3=h; bot y4=vround(y3-4vu-.5vair); + top y1r=top y2r=vround(.5[y3,y4]+.5vair); + filldraw stroke z1e--z2e; filldraw stroke z3e--z4e; fi +penlabels(1,2,3,4); endchar; + +cmchar "Retracting Sign"; +beginchar(incr ipacode,8u#,4vu#+vair#,0); +adjust_fit(0,0); +if serifs: pickup diacritic.nib; + x1=x3=x4=good.x(.5w-u); x2=good.x(x1+3u); + top y3=h; bot y4=0; y1=y2=good.y(.5[y3,y4]); + draw z1--z2; draw z3--z4; +else: pickup crisp.nib; + pos1(vair,90); pos2(vair,90); pos3(vair,0); pos4(vair,0); + rt x1=hround(w-2u); lft x2=lft x3l=lft x4l=hround(3u-.5vair); + top y3=h; bot y4=vround(y3-4vu-.5vair); + top y1r=top y2r=vround(.5[y3,y4]+.5vair); + filldraw stroke z1e--z2e; filldraw stroke z3e--z4e; fi +penlabels(1,2,3,4); endchar; + +cmchar "Vertical Stroke (Superior)"; +beginchar(oct"042",4u#,asc_height#,0); +adjust_fit(0,0); +if serifs: pickup tiny.nib; + pos1(diacr,0); pos2(diacr,0); + lft x1l=lft x2l=hround(.5w-.5diacr); + top y1=h; bot y2=vround(top y1-4vu); + filldraw stroke z1e--z2e; +else: pickup crisp.nib; + pos1(vair,0); pos2(vair,0); + lft x1l=lft x2l=hround(.5w-.5vair); + top y1=h; bot y2=vround(top y1-4vu); + filldraw stroke z1e--z2e; fi +penlabels(1,2); endchar; + +cmchar "Length Mark"; +beginchar(oct"072",5u#,x_height#,0); +adjust_fit(if monospace: 1u#,1u# else: 0,0 fi); +pickup if serifs: tiny.nib; else: crisp.nib; fi +x1=w-x2; x3=.5[x1,x2]; rt x2-lft x1=3u; +top y1=top y2=h if serifs: +oo fi; top y1-bot y3=.387x_height; +filldraw z1--z2--z3--cycle; +x5=w-x6; x4=.5[x5,x6]; rt x6-lft x5=3u; +bot y5=bot y6=if serifs: -oo else: 0 fi; top y4-bot y5=.387x_height; +filldraw z4--z5--z6--cycle; +penlabels(1,2,3,4,5,6); endchar; + +cmchar "Half-length Mark"; +beginchar(oct"073",5u#,x_height#,0); +adjust_fit(if monospace: 1u#,1u# else: 0,0 fi); +pickup if serifs: tiny.nib; else: crisp.nib; fi +x1=w-x2; x3=.5[x1,x2]; rt x2-lft x1=3u; +top y1=top y2=h if serifs: +oo fi; top y1-bot y3=.387x_height; +filldraw z1--z2--z3--cycle; +penlabels(1,2,3); endchar; + +cmchar "Bottom Tie Bar"; +beginchar(oct"074",14u#,v_center(.35x_height#)); +adjust_fit(0,0); +pickup fine.nib; +numeric light_stem; light_stem=Vround .5[vair,stem]; +x1-.5hair=hround u; y1+.5hair=vround(h+.5hair); x3=w-x1; y3=y1; +pos2(light_stem,90); x2=.5w; y2l=good.y -d; +numeric theta; theta=angle((z2-z1)yscaled 3); +pos1(hair,90+theta); pos3(hair,90-theta); +filldraw z1l{dir theta}...z2l...{dir-theta}z3l + ..z3r{-dir-theta}...z2r...{-dir theta}z1r..cycle; % arc +penlabels(1,2,3); endchar; + +cmchar "Top Tie Bar"; +beginchar(oct"076",14u#,v_center(.35x_height#)); +adjust_fit(0,0); +pickup fine.nib; +numeric light_stem; light_stem=Vround .5[vair,stem]; +x1-.5hair=hround u; y1-.5hair=vround(-d-.5hair); x3=w-x1; y3=y1; +pos2(light_stem,90); x2=.5w; y2=good.y h; +numeric theta; theta=angle((z2-z1)yscaled 3); +pos1(hair,90+theta); pos3(hair,90-theta); +filldraw z1l{dir theta}...z2l...{dir-theta}z3l + ..z3r{-dir-theta}...z2r...{-dir theta}z1r..cycle; % arc +penlabels(1,2,3); endchar; + +cmchar "Reversed Apostrophe"; +beginchar(oct"134",5u#,asc_height#,0); +italcorr asc_height#*slant+.5dot_size#-2u#; +adjust_fit(0,0); +x1-.5dot_size=hround(.5w-.5dot_size); y1+.5dot_size=h; +if monospace: comMA(1,a,dot_size,.28u,vround 1.5comma_depth); % large comma +else: comMA(1,a,dot_size,.25u,comma_depth); fi % comma with increased jut +penlabels(1); endchar; + +cmchar "Corner"; +beginchar(oct"136",5.2u#,asc_height#,0); +adjust_fit(0,0); +if serifs: pickup diacritic.nib; + lft x1=hround .2u; rt x2=rt x3=hround(w-1u); top y1=top y2=h-o; + top y2-bot y3=vround 4vu; + draw z1--z2--z3; +else: pickup crisp.nib; + pos1(vair,90); pos2(vair,90); pos3(vair,0); pos4(vair,0); + lft x1=hround .2u; rt x2=rt x3r=rt x4r=hround(w-1u); + top y1r=top y2r=top y3=h-o; top y3-bot y4=vround 4vu; + filldraw stroke z1e--z2e; filldraw stroke z3e--z4e; fi +penlabels(1,2,3,4); endchar; + +cmchar "Open corner"; +beginchar(oct"137",5.2u#,asc_height#,0); +adjust_fit(0,0); +if serifs: pickup diacritic.nib; + rt x1=hround(w-.2u); lft x2=lft x3=hround 1u; top y1=top y2=h-o; + top y2-bot y3=vround 4vu; + draw z1--z2--z3; +else: pickup crisp.nib; + pos1(vair,90); pos2(vair,90); pos3(vair,0); pos4(vair,0); + rt x1=hround(w-.2u); lft x2=lft x3l=lft x4l=hround 1u; + top y1r=top y2r=top y3=h-o; top y3-bot y4=vround 4vu; + filldraw stroke z1e--z2e; filldraw stroke z3e--z4e; fi +penlabels(1,2,3,4); endchar; + +cmchar "Right-hook (rhoticity)"; +beginchar(oct"176",6u#,x_height#,0); +adjust_fit(0,if monospace: 2u# else: 0 fi); +if serifs: pickup tiny.nib; + numeric hook_hair; hook_hair=max(vround .6stem, hair); + pos3(hook_hair,0); pos4(hook_hair,0); pos5(vair,90); pos6(hair,180); + x1=0; top y2=h; rt x6l=vround(w-.75u+.5hair); + y1=min(.95x_height,y2-2hook_hair); + x2=x4=.36[x1,x6]; x5=.5[x2,x6]; y4=.8[y5,y2]; z3=z2; + y5l=bar_height; y6=.5[bar_height,h]; + pos1(hook_hair,angle(z2-z1)+90); pos2(hook_hair,angle(z2-z1)+90); + filldraw circ_stroke z2e--z1e; + filldraw circ_stroke z3e--z4e{down}..z5e{right}..{up}z6e; +else: pickup crisp.nib; + pos3(thin_hair,0); pos4(thin_hair,0); pos5(vair,90); pos6(thin_hair,180); + x1=0; top y2=h; rt x6l=vround(w-.75u+.5hair); + y1=min(.95x_height,y2-2vair); + x2=x4=.36[x1,x6]; x5=.5[x2,x6]; y4=.8[y5,y2]; z3=z2; + y5l=bar_height; y6=.5[bar_height,h]; + pos1(vair,angle(z2-z1)+90); pos2(vair,angle(z2-z1)+90); + filldraw circ_stroke z2e--z1e; + filldraw circ_stroke z3e--z4e{down}..z5e{right}..{up}z6e; fi +penlabels(1,2,3,4,5,6); endchar; + +cmchar "Vertical Stroke (Inferior)"; +beginchar(oct"177",4u#,4vu#-desc_depth#,desc_depth#); +adjust_fit(if monospace: 2u#,2u# else: 0,0 fi); +if serifs: pickup tiny.nib; + pos1(diacr,0); pos2(diacr,0); + lft x1l=lft x2l=hround(.5w-.5diacr); + bot y2=-d; top y1=h; + filldraw stroke z1e--z2e; +else: pickup crisp.nib; + pos1(vair,0); pos2(vair,0); + lft x1l=lft x2l=hround(.5w-.5vair); + bot y2=-d; top y1=h; + filldraw stroke z1e--z2e; fi +penlabels(1,2); endchar; + +cmchar "Hooktop"; +beginchar(oct"043",4u#,.9asc_height#,0); +italcorr h#*slant+1.5u#; +adjust_fit(if monospace: 2u#,2u# else: 0,0 fi); +if serifs: pickup tiny.nib; + pos1(diacr,0); pos2(diacr,0); + lft x1l=lft x2l=hround(.5w-.5diacr); y1+.5flare=y2=x_height; + filldraw stroke z1e--z2e; + hooktop(2,3,4,5,diacr,hround(x1+3.25u),h+.5vair,.88,.5,1/3); +else: pickup fine.nib; + pos1(vair,0); pos2(vair,0); + lft x1l=lft x2l=hround(.5w-.5vair); y1+.5flare=y2=x_height; + filldraw stroke z1e--z2e; + hooktop(2,3,4,5,vair,hround(x1+3.25u),h+.5vair,5/6,.5,1/3); fi +penlabels(1,2,3,4,5); endchar; + +cmchar "Right-tail"; +beginchar(oct"044",4u#,0,desc_depth#); +adjust_fit(if monospace: 2u#,2u# else: 0,0 fi); +if serifs: pickup tiny.nib; + pos1(diacr,0); lft x1l=hround(.5w-.5diacr); y1=oo; + right_tail(1,2,3,4,diacr,hround(x1+3.25u),.9,.5,.6); +else: pickup fine.nib; + pos1(vair,0); lft x1l=hround(.5w-.5vair); y1=oo; + right_tail(1,2,3,4,vair,hround(x1+3.25u),.85,.5,.5); fi +penlabels(1,2,3,4,5); endchar; + +cmchar "Palatalization Hook"; +beginchar(oct"045",4u#,0,desc_depth#); +adjust_fit(if monospace: 2u#,2u# else: 0,0 fi); +if serifs: pickup tiny.nib; + pos1(diacr,0); lft x1l=hround(.5w-.5diacr); y1=oo; + left_tail(1,2,3,4,diacr,hround(x1-3.25u)); +else: pickup fine.nib; + pos1(vair,0); lft x1l=hround(.5w-.5vair); y1=oo; + left_tail(1,2,3,4,vair,hround(x1-3.25u)); fi +penlabels(1,2,3,4,5); endchar; + +cmchar "Superimposed Tilde"; +beginchar(oct"046",10u#,.5[asc_height#,body_height#],0); +big_tilde; endchar; + +cmchar "Vertical Bar Accent"; +beginchar(oct"234",9u#,min(asc_height#,2x_height#),0); +adjust_fit(0,0); +if serifs: pickup crisp.nib; x1=x2=.5w; + top y1=h+o+eps; y2=max(2/3[h,x_height],x_height+o+hair); + pos1(stem,0); pos2(hair,0); + filldraw circ_stroke z1e--z2e; % diagonal +else: pickup fine.nib; pos1(stem,0); pos2(vair,0); x1=x2=.5w; + top y1=h+o; bot y2=vround 2/3[h,x_height]; + filldraw stroke z1e--z2e; fi % diagonal +penlabels(1,2); endchar; + +cmchar "Double Vertical Bar Accent"; +beginchar(oct"235",9u#,min(asc_height#,2x_height#),0); +adjust_fit(0,0); +x1=x2; x3=x4; y3=y1; y4=y2; +if serifs: pickup crisp.nib; x1=hround(3.8u-.5stem); x3=w-x1; + top y1=h+o+eps; y2=max(2/3[h,x_height],x_height+o+hair); + numeric theta; theta=angle(z2-z1)+90; + pos1(stem,theta); pos2(hair,theta); + pos3(stem,theta); pos4(hair,theta); + filldraw circ_stroke z1e--z2e; % left diagonal + filldraw circ_stroke z3e--z4e; % right diagonal +else: pickup fine.nib; pos1(stem,0); pos2(vair,0); + pos3(stem,0); pos4(vair,0); x1=hround(3.8u-.5stem); x3=w-x1; + top y1=h+o; bot y2=vround 2/3[h,x_height]; + filldraw stroke z1e--z2e; % left diagonal + filldraw stroke z3e--z4e; fi % right diagonal +penlabels(1,2,3,4); endchar; + +cmchar "Grave Dot Accent"; +numeric dot_diam#; dot_diam#=max(dot_size#,cap_curve#); +beginchar(oct"236",9u#,min(asc_height#,2x_height#),0); +define_whole_blacker_pixels(dot_diam); +adjust_fit(0,0); +if serifs: pickup crisp.nib; x1-.5stem=hround 1.5u; x2=.45[x1,w-x1]; + y1+.5stem=h+eps; y2=max(2/3[h,x_height],x_height+o+hair); + numeric theta; theta=angle(z2-z1)+90; + pos1(stem,theta); pos2(hair,theta); + filldraw circ_stroke z1e--z2e; % diagonal +else: pickup fine.nib; pos1(stem,0); pos2(vair,0); + lft x1l=hround 1.5u; rt x2r=hround(.5w-.25u+.5vair); + top y1=h; bot y2=vround 2/3[h,x_height]; + filldraw stroke z1e--z2e; fi % diagonal +pickup tiny.nib; pos3(dot_diam,0); pos4(dot_diam,90); +x3=x4=.7w; y4=.45[bot y2,top y1]; +y3=.5[y4l,y4r]; dot(3,4); % dot +penlabels(1,2,3,4); endchar; + +cmchar "Acute Dot Accent"; +numeric dot_diam#; dot_diam#=max(dot_size#,cap_curve#); +beginchar(oct"237",9u#,min(asc_height#,2x_height#),0); +define_whole_blacker_pixels(dot_diam); +italcorr h#*slant-if serifs: 1 fi u#; +adjust_fit(0,0); +if serifs: pickup crisp.nib; x1+.5stem=hround(w-1.5u); x2=.45[x1,w-x1]; + y1+.5stem=h+eps; y2=max(2/3[h,x_height],x_height+o+hair); + numeric theta; theta=angle(z2-z1)+90; + pos1(stem,theta); pos2(hair,theta); + filldraw circ_stroke z1e--z2e; % diagonal +else: pickup fine.nib; pos1(stem,0); pos2(vair,0); + rt x1r=hround(w-1.5u); lft x2l=hround(.5w+.25u-.5vair); + top y1=h; bot y2=vround 2/3[h,x_height]; + filldraw stroke z1e--z2e; fi % diagonal +pickup tiny.nib; pos3(dot_diam,0); pos4(dot_diam,90); +x3=x4=.3w; y4=.45[bot y2,top y1]; +y3=.5[y4l,y4r]; dot(3,4); % dot +penlabels(1,2); endchar; + +cmchar "Celtic palatalization mark"; +beginchar(oct"040",6u#,asc_height#,0); +italcorr h#*slant; +adjust_fit(if monospace: 1u#,1u# else: 0,0 fi); +if serifs: pickup crisp.nib; x1+.5stem=hround(w-.5u); + x2=hround 1u; + y1+.5stem=h+eps; y2=.9x_height; + numeric theta; theta=angle(z2-z1)+90; + pos1(stem,theta); pos2(hair,theta); + filldraw circ_stroke z1e--z2e; % diagonal +else: pickup fine.nib; pos1(stem,0); pos2(vair,0); + rt x1r=hround(w-.5u); lft x2l=hround 1u; + top y1=h; bot y2=vround .9x_height; + filldraw stroke z1e--z2e; fi % diagonal +penlabels(1,2); endchar; + +cmchar "Leftward Pointer"; +beginchar(oct"275",6u#,asc_height#,0); +adjust_fit(if monospace: 1u#,1u# else: 0,0 fi); +pickup diacritic.nib; +lft x2=hround .5u-eps; x1=x3=w-x2; +y1-y2=y2-y3; y2=.65[x_height,h]; y1=h; +draw z1--z2--z3; % diagonals +labels(1,2,3); endchar; + +cmchar "Rightward Pointer"; +beginchar(oct"276",6u#,asc_height#,0); +adjust_fit(if monospace: 1u#,1u# else: 0,0 fi); +pickup diacritic.nib; +rt x2=hround(w-.5u)+eps; x1=x3=w-x2; +y1-y2=y2-y3; y2=.65[x_height,h]; y1=h; +draw z1--z2--z3; % diagonals +labels(1,2,3); endchar; + +% This symbol looks like a pipe but is used as the vertical line of tone bars. +cmchar "Tone bar"; +beginchar(oct"277",CT(5u#,5.56u#),asc_height#,0); +italcorr asc_height#*slant+.5rule_thickness#-2u#; +adjust_fit(0,0); +if serifs: pickup rule.nib; + x1=x2=good.x .5w; y1=h; y2=-d; + draw z1--z2; % stem + labels(1,2); +else: pickup fine.nib; + pos1(hair,0); pos2(hair,0); + lft x1l = lft x2l = hround(.5w-.5hair); + top y1=h+o; bot y2=-d-o; + filldraw stroke z1e--z2e; + penlabels(1,2); fi +endchar; + + +% end of tipadiac.mf diff --git a/Master/texmf-dist/fonts/source/public/tipa/tipaextr.mf b/Master/texmf-dist/fonts/source/public/tipa/tipaextr.mf new file mode 100644 index 00000000000..6f61819449f --- /dev/null +++ b/Master/texmf-dist/fonts/source/public/tipa/tipaextr.mf @@ -0,0 +1,1909 @@ +% tipaextr.mf: TIPX Symbols --- a supplement for TIPA. +% Copyright 1996-2003 FUKUI Rei +% +% This program may be distributed and/or modified under the +% conditions of the LaTeX Project Public License, either version 1.2 +% of this license or (at your option) any later version. +% The latest version of this license is in +% http://www.latex-project.org/lppl.txt +% and version 1.2 or later is part of all distributions of LaTeX +% version 1999/12/01 or later. +% +% This program consists of all files listed in Manifest.txt. +% +% Version 1.2 2003/01/01 +% +% (Most of the symbols are now obsolete and not adopted in +% the T3 encoding for TIPA.) +% + +%%%%% Adaptations for Times_Compat are not yet complete. + +numeric ipacode; ipacode := -1; + +cmchar "Reversed Polish hook"; +beginchar(incr ipacode,6u#,0,desc_depth#); +adjust_fit(if monospace: 1u#,1u# else: 0,0 fi); +pickup if serifs: crisp.nib; else: fine.nib; fi +pos1(vair,-120); pos4(vair,45); +if serifs: pos2(stem,170);pos3(max(.7stem,hair),100); +else: pos2(vair,170);pos3(vair,100); fi +x1+u=x4+2u=.5w; y1=0; y2l=y4r=-3/5d; bot y3l=-d-oo; +x3r=.7[x4r,x2r]; x2l=w-u; +if serifs: filldraw circ_stroke z1e{(3,-1)}...{down}z2e + ...{left}z3e...{(-1,1)}z4e; +else: filldraw stroke z1e{(3,-1)}...{down}z2e...{left}z3e...{(-1,1)}z4e; fi +penlabels(1,2,3,4); endchar; + +cmchar "Right-tail (long)"; +beginchar(incr ipacode,4u#,.2x_height#,desc_depth#); +adjust_fit(if monospace: 2u#,2u# else: 0,0 fi); +if serifs: pickup tiny.nib; + pos1(diacr,0); lft x1l=hround(.5w-.5diacr); y1=h+oo; + right_tail(1,2,3,4,diacr,hround(x1+3.25u),.9,.5,.6); +else: pickup fine.nib; + pos1(vair,0); lft x1l=hround(.5w-.5vair); y1=h+oo; + right_tail(1,2,3,4,vair,hround(x1+3.25u),.85,.5,.5); fi +penlabels(1,2,3,4); endchar; + +cmchar "Palatalization hook (long)"; +beginchar(incr ipacode,4u#,.2x_height#,desc_depth#); +adjust_fit(if monospace: 2u#,2u# else: 0,0 fi); +if serifs: pickup tiny.nib; + pos1(diacr,0); lft x1l=hround(.5w-.5diacr); y1=h+oo; + left_tail(1,2,3,4,diacr,hround(x1-3.25u)); +else: pickup fine.nib; + pos1(vair,0); lft x1l=hround(.5w-.5vair); y1=h+oo; + left_tail(1,2,3,4,vair,hround(x1-3.25u)); fi +penlabels(1,2,3,4); endchar; + +cmchar "Palatalization hook (a variety)"; +beginchar(incr ipacode,5u#,.2x_height#,desc_depth#); +adjust_fit(if monospace: 1.5u#,1.5u# else: 0,0 fi); +if serifs: pickup tiny.nib; + pos1(diacr,0); lft x1l=hround(.5w-.5diacr+.5u); y1=h+oo; + pos5(diacr,-90); pos6(diacr,-180); bot y5r=0; y6=.1x_height; + x6=0; x5=.5[x1,x6]; + filldraw stroke z1e..z5e..z6e; + left_tail(1,2,3,4,diacr,hround(x1-3.25u)); +else: pickup fine.nib; + pos1(vair,0); lft x1l=hround(.5w-.5vair+.5u); y1=h+oo; + pos5(vair,-90); pos6(vair,-135); bot y5r=0; y6=.1x_height; + x6=0; x5=.5[x1,x6]; + filldraw stroke z1e..z5e..z6e; + left_tail(1,2,3,4,vair,hround(x1-3.25u)); fi +penlabels(1,2,3,4,5,6); endchar; + +cmchar "Superscript rectangle"; +beginchar(incr ipacode,5u#+vair#,asc_height#,0); +adjust_fit(if monospace: 1u#,1u# else: 0,0 fi); +if serifs: pickup diacritic.nib; + lft x1=lft x2=hround u; x3=x4=w-x1; + top y1=top y3=vround(h-oo); bot y2=bot y4=vround x_height; + draw z1--z2--z4--z3--cycle; +else: pickup crisp.nib; + pos1(vair,0); pos2(vair,0); pos3(vair,0); pos4(vair,0); + lft x1l=lft x2l=hround u; x3=x4=w-x1; + top y1=top y3=vround(h-oo); bot y2=bot y4=vround x_height; + filldraw stroke z1e--z2e; filldraw stroke z3e--z4e; + pos1'(vair,90); pos2'(vair,90); pos3'(vair,90); pos4'(vair,90); + lft x1'=lft x3'=hround u; x2'=x4'=w-x1; + top y1'r=top y2'r=vround(h-oo); bot y3'l=bot y4'l=vround x_height; + filldraw stroke z1'e--z2'e; filldraw stroke z3'e--z4'e; fi +penlabels(1,2,3,4); endchar; + +cmchar "Superscript left arrow"; +beginchar(incr ipacode,8u#,asc_height#,0); +adjust_fit(0,0); pickup crisp.nib; +pos1(rule_thickness,90); pos2(rule_thickness,90); +pos3(rule_thickness,0); pos4(rule_thickness,0); +y0=y1=y2; bot y4=.15[x_height,asc_height]; +x1+.5rule_thickness=hround(w-.5u); lft x0=hround .5u; +y3-y0=y0-y4=if monospace:.24 else:.18 fi asc_height+eps; +x3=x4=x0+if monospace:3u else:2.5u fi+eps; +pos5(rule_thickness,angle(z4-z0)); z5l=z0; +pos6(rule_thickness,angle(z3-z0)); z6l=z0; +z9=.2[.5[z3,z4],z0]; +numeric t; path p; p=z4r{z9-z4}..z6r; +t=xpart(p intersectiontimes((0,y2l)--(w,y2l))); x2=xpart point t of p; +filldraw z0..{z4-z9}z4l--subpath (0,t) of\\(z4r{z9-z4}..z6r) + --z2l---z1l..z1r---z2r--subpath (t,0) of\\(z3r{z9-z3}..z5r) + --z3l{z9-z3}..z0 & cycle; % arrowhead and stem +penlabels(0,1,2,3,4,5,6,9); endchar; + +% Sources: Principles (1949:17), PSG (1996:231). +% Is this symbol a horizontal small capital I? I don't know. +cmchar "Retracting sign (a variety)"; +beginchar(incr ipacode,8u#,x_height#,0); +adjust_fit(0,0); +numeric v_thickness; +v_thickness=if monospace: vair; else: .5[vair,flare]; fi +pickup fine.nib; pos1(v_thickness,90); pos2(v_thickness,90); +lft x1=lft x3l=lft x4l=hround u; +rt x2=rt x5r=rt x6r=hround(w-u); +top y1r=top y2r=vround(.5h+.5v_thickness); +filldraw stroke z1e--z2e; +if serifs: + pos3(stem,0); pos4(stem,0); pos5(stem,0); pos6(stem,0); + top y3=top y5=top y2r+v_thickness; bot y4=bot y6=bot y2l-v_thickness; + filldraw stroke z3e--z4e; filldraw stroke z5e--z6e; + x1'=x4r+.2(x2-x1); y1'=y1; pos1'(v_thickness, 90); + filldraw z4r{up}..{right}z1'l--z1'r{left}..{up}z3r--cycle; + x2'=x6l-.2(x2-x1); y2'=y2; pos2'(v_thickness, 90); + filldraw z5l{down}..{left}z2'r--z2'l{right}..{down}z6l--cycle; fi +penlabels(1,1',2,2',3,4,5,6); endchar; + +cmchar "Down full arrow"; +beginchar(incr ipacode,CT(9u#,10u#),asc_height#,0); +adjust_fit(0,0); pickup crisp.nib; +pos1(rule_thickness,0); pos2(rule_thickness,0); +pos3(rule_thickness,90); pos4(rule_thickness,90); +lft x1l=hround(.5w-.5rule_thickness); y1+.5rule_thickness=h; +x0=x1=x2; bot y0=-d; x0-x3=x4-x0=if monospace:3u else:3u fi+eps; +y3=y4=y0+if monospace:.24 else:.27 fi asc_height+eps; +pos5(rule_thickness,angle(z4-z0)); z5l=z0; +pos6(rule_thickness,angle(z3-z0)); z6l=z0; +z9=.2[.5[z3,z4],z0]; +numeric t; path p; p=z4r{z9-z4}..z6r; +t=xpart(p intersectiontimes((x2r,-d)--(x2r,h))); y2=ypart point t of p; +filldraw z0..{z4-z9}z4l--subpath (0,t) of\\(z4r{z9-z4}..z6r) + --z2r---z1r..z1l---z2l--subpath (t,0) of\\(z3r{z9-z3}..z5r) + --z3l{z9-z3}..z0 & cycle; % arrowhead and stem +penlabels(0,1,2,3,4,5,6,9); endchar; + +cmchar "Up full arrow"; +beginchar(incr ipacode,CT(9u#,10u#),asc_height#,0); +italcorr .76asc_height#*slant+.5crisp#-u#; +adjust_fit(0,0); pickup crisp.nib; +pos1(rule_thickness,0); pos2(rule_thickness,0); +pos3(rule_thickness,90); pos4(rule_thickness,90); +lft x1l=hround(.5w-.5rule_thickness); y1-.5rule_thickness=-d; +x0=x1=x2; top y0=h; x0-x3=x4-x0=if monospace:3u else:3u fi+eps; +y3=y4=y0-if monospace:.24 else:.27 fi asc_height-eps; +pos5(rule_thickness,angle(z4-z0)); z5l=z0; +pos6(rule_thickness,angle(z3-z0)); z6l=z0; +z9=.2[.5[z3,z4],z0]; +numeric t; path p; p=z4l{z9-z4}..z6r; +t=xpart(p intersectiontimes((x2r,-d)--(x2r,h))); y2=ypart point t of p; +filldraw z0..{z4-z9}z4r--subpath (0,t) of\\(z4l{z9-z4}..z6r) + --z2r---z1r..z1l---z2l--subpath (t,0) of\\(z3l{z9-z3}..z5r) + --z3r{z9-z3}..z0 & cycle; % arrowhead and stem +penlabels(0,1,2,3,4,5,6,9); endchar; + +cmchar "Subscript right arrow"; +beginchar(incr ipacode,16u#,0,desc_depth#); +adjust_fit(0,0); pickup crisp.nib; +pos1(rule_thickness,90); pos2(rule_thickness,90); +pos3(rule_thickness,0); pos4(rule_thickness,0); +y0=y1=y2; x1-.5rule_thickness=hround .5u; rt x0=hround(w-.5u); +y3-y0=y0-y4=if monospace:.24 else:.18 fi asc_height+eps; +top y1r=vround -.67d; +x3=x4=x0-if monospace:3u else:2.5u fi-eps; +pos5(rule_thickness,angle(z4-z0)); z5l=z0; +pos6(rule_thickness,angle(z3-z0)); z6l=z0; +z9=.2[.5[z3,z4],z0]; +numeric t; path p; p=z4l{z9-z4}..z6r; +t=xpart(p intersectiontimes((0,y2l)--(w,y2l))); x2=xpart point t of p; +filldraw z0..{z4-z9}z4r--subpath (0,t) of\\(z4l{z9-z4}..z6r) + ---z1l..z1r---subpath (t,0) of\\(z3l{z9-z3}..z5r) + --z3r{z9-z3}..z0 & cycle; % arrowhead and stem +penlabels(0,1,2,3,4,5,6,9); endchar; + +cmchar "Subscript double arrow"; +beginchar(incr ipacode,10u#,0,desc_depth#); +adjust_fit(0,0); pickup crisp.nib; +pos1(rule_thickness,90); pos2(rule_thickness,90); +pos3(rule_thickness,0); pos4(rule_thickness,0); +y0=y1=y2; lft x0=hround .1u; +if monospace: x1+.5rule_thickness=hround(w-.1u) else: x1=.5w fi; +y3-y0=y0-y4=if monospace:.24 else:.18 fi asc_height+eps; +top y1r=top y11r=vround -.67d; +x3=x4=x0+if monospace:3u else:2.5u fi+eps; +pos5(rule_thickness,angle(z4-z0)); z5l=z0; +pos6(rule_thickness,angle(z3-z0)); z6l=z0; +z9=.2[.5[z3,z4],z0]; +numeric t; path p; p=z4r{z9-z4}..z6r; +t=xpart(p intersectiontimes((0,y2l)--(w,y2l))); x2=xpart point t of p; +filldraw z0..{z4-z9}z4l--subpath (0,t) of\\(z4r{z9-z4}..z6r) + ---z1l..z1r---subpath (t,0) of\\(z3r{z9-z3}..z5r) + --z3l{z9-z3}..z0 & cycle; % left arrowhead and stem +pos11(rule_thickness,90); pos12(rule_thickness,90); +pos13(rule_thickness,0); pos14(rule_thickness,0); +y10=y11=y12; rt x10=hround(w-.1u); +if monospace: x11-.5rule_thickness=hround .1u else: x11=.5w fi; +y13-y10=y10-y14=if monospace:.24 else:.18 fi asc_height+eps; +x13=x14=x10-if monospace:3u else:2.5u fi-eps; +pos15(rule_thickness,angle(z14-z10)); z15l=z10; +pos16(rule_thickness,angle(z13-z10)); z16l=z10; +z19=.2[.5[z13,z14],z10]; +numeric t; path p; p=z14l{z19-z14}..z16r; +t=xpart(p intersectiontimes((0,y12l)--(w,y12l))); x12=xpart point t of p; +filldraw z10..{z14-z19}z14r--subpath (0,t) of\\(z14l{z19-z14}..z16r) + ---z11l..z11r---subpath (t,0) of\\(z13l{z19-z13}..z15r) + --z13r{z19-z13}..z10 & cycle; % right arrowhead and stem +penlabels(0,1,2,3,4,5,6,9,10,11,12,13,14,15,16,19); endchar; + +ipacode:=31; + +cmchar "Right-hook A"; +beginchar(incr ipacode,CT(9u#,8.88u#),x_height#,desc_depth#); +if Times_Compat: bh#:=.6x_height#; +else: bh#:=min(bar_height#,1.14x_height#-bar_height#); fi +define_pixels(bh); +adjust_fit(0,serif_fit# if serifs: if hair#+.5stem#>1.5u#:-.25u# fi\\fi+1u#); +pickup fine.nib; top y3r=h+vround 1.5oo; +if serifs: pos1(flare,180); pos2(hair,180); pos3(vair,90); + lft x1r=hround max(u,if Times_Compat:1.5u else:2.1u fi-.5flare); + x3=.5w if Times_Compat:-.25u else:-.5u fi; + y1=min(bh+.5flare+2vair+2,.9[bh,h]-.5flare); + bulb(3,2,1); % bulb +else: pos1(5/7[vair,flare],95); x1l=good.x 1.5u; x1r:=good.x x1r; + pos3(1/8[vair,thin_join],90); + x3=.5w-.2u; top y1r=vround .82[bh,top y3r]; + filldraw stroke term.e(3,1,left,.9,4); fi % terminal +pos4(stem,0); rt x4r=hround(w-side_gap+.5stem); +y4=if Times_Compat: .5 else: 1/3 fi[bh,h]; +pos5(stem,0); x5=x4; +y5=if Times_Compat: max(.45bh,2vair) else: max(.55bh,2vair) fi; +filldraw stroke super_arc.e(3,4)&z4e..z5e; % arc and stem +pos6(.3[thin_join,vair],90); x6=x4; bot y6=if Times_Compat: 1.1 fi bh; +pos7(hround(curve-2stem_corr),if Times_Compat: 200 else: 180 fi); +lft x7r=hround max(.5u,1.5u-.5curve); +if Times_Compat: y7=.3[top y8l,top y6r]; pos8(.6[vair,flare],240); x8l=.5w-1u; +else: y7=1/3[top y8l,top y6r]; pos8(vair,270); x8l=.5w-.75u; fi +pos9(thin_join,360); z9l=z5l; bot y8r=-oo; +(x,y8r)=whatever[z8l,z9l]; x8r:=max(x,x8-u); +{{interim superness:=more_super; + filldraw stroke z9e{down}...z8e{left}...{up}z7e & + if Times_Compat: z7e{up}...{(35,10)}z6e else: + super_arc.e(7,6)fi}}; % bowl +if serifs: numeric shaved_stem; shaved_stem=hround(stem-3stem_corr); + if hair#+.5stem#>1.5u#: pickup tiny.nib; + pos5'(shaved_stem,0); rt x5'r=fine.rt x5r; y5'=y5; + pos10(shaved_stem,0); x10=x5'; y10=.2[.5tiny,bh]; + pos11(shaved_stem,0); rt x11r=hround(w-.25u); bot y11=0; + pos12(shaved_stem,0); x11=x12; top y12=slab+eps; + filldraw z5'l---z10l...z11l{right}--z11r + --z12r{left}...z10r+.75(z12-z11)---z5'r--cycle; % foot + pickup tiny.nib; x14r=x12r; y14=y12; pos14(diacr,0); + right_tail(14,15,16,17,diacr,hround(x14+3.25u),.9,.5,.6); + else: pickup crisp.nib; pos5'(shaved_stem,0); rt x5'r=fine.rt x5r; y5'=y5; + pos10(shaved_stem,0); x10=x5'; y10=1/3bh; + pos11(.2[vair,stem],90); x11r=.5[x10r,x12r]; bot y11l=-vround .5oo; + pos12(hair,180); rt x12l=hround(w-.1u); y12=max(y10,y11+vair); + pos13(hair,180); x13=x12; top y13=max(vround .6bh,top y12); + (x',y11l)=whatever[z11r,z12r]; x11l:=max(x',x10); + if Times_Compat: y13l:=.05[y12l,y13l]; y13r:=y13l; fi + filldraw stroke z5'e---z10e...z11e{right}...z12e---z13e; % hook + pickup tiny.nib; x14=x13; y14=y13l; pos14(hair,0); + right_tail(14,15,16,17,diacr,hround(x14+3.25u),.9,.5,.6); fi +else: numeric shaved_stem; shaved_stem=hround(stem-stem_corr); + pickup tiny.nib; pos5'(shaved_stem,0); rt x5'r=fine.rt x5r; y5'=y5; + pos10(shaved_stem,0); x10=x5'; bot y10=0; + filldraw stroke z5'e--z10e; % base of stem + pickup fine.nib; %x14r=x5r; y14=y10; pos14(vair,0); + right_tail(10,15,16,17,shaved_stem,hround(w-.5u+.5hair),.85,.5,.5); fi +penlabels(1,2,3,4,5,6,7,8,9,10,11,12,13,14); endchar; + +cmchar "Inverted script A"; +beginchar(incr ipacode,10u#+serif_fit#,x_height#,0); +italcorr x_height#*slant-serif_fit#+.5stem#-.5u#; +adjust_fit(0,serif_fit#); +pickup tiny.nib; pos1(stem',0); pos2(stem,0); +pos0'(stem',0); pos0(stem,0); z0r=z0'r; x0'=x1; x0=x2; +rt x1r=hround(w-side_gap+.5stem'); bot y1=-oo; +numeric edge; edge=lft x2l; +pickup fine.nib; pos3(if hefty:thin_join else: hair fi,0); +pos4(vair,270); pos5(curve,180); +pos6(vair,90); penpos7(x3r-x3l,360); +lft x3l=1/3[lft x2,edge]; y3=h-1/8[bar_height,x_height]; +x4l=.5(w-serif_fit)-.3u; bot y4r=-oo; +lft x5r=hround max(1.35u-.5curve,.6u); y5=.5x_height; +x6l=x4l-.2u; top y6r=h+oo; +x7=x3; y7=max(y3,y6+y4-y3-.6vair); +(x,y4r)=whatever[z3l,z4l]; x4r:=max(x,.5[x5r,x4]); +(x',y6r)=whatever[z7l,z6l]; x6r:=max(x',.5[x5r,x6]); +filldraw stroke z3e{down}...pulled_arc.e(4,5) + & pulled_arc.e(5,6)...{down}z7e; % bowl +y0=ypart(((edge,0)--(edge,h))intersectionpoint(z3l{down}...{left}z4l)); +pickup tiny.nib; top y2=h+if serifs:min(oo,serif_drop) else: 0 fi; +filldraw stroke z0'e--z0e--z2e; % stem +pickup crisp.nib; +pos8(hround(hair-stem_corr),0); pos7'(stem',0); +z7'=z0'; x8r=x7'r; bot y8=-oo; +filldraw stroke z7'e--z8e; +if serifs: inverted_sloped_serif.r(2,0,b,1/3,jut,serif_drop); fi % lower serif +penlabels(0,1,2,3,4,5,6,7,8); endchar; + +cmchar "A-O Ligature"; +beginchar(incr ipacode,CT(13u#,14.44u#),x_height#,0); +italcorr .5[bar_height#,x_height#]*slant+.5min(curve#-1.5u#,0); +adjust_fit(0,0); +numeric left_curve,right_curve; +if monospace: right_curve=left_curve=fudged.stem; +else: left_curve=max(tiny.breadth,hround(curve-2stem_corr)); + right_curve=max(tiny.breadth,hround(curve-if serifs:6 else:8 fi\\stem_corr));fi +pickup tiny.nib; pos11(right_curve,0); +pos12(vair,90); pos13(mfudged.stem,180); +y11=.5h; top y12r=h+vround 1.5oo; y10l=bot y11; +rt x11r=hround min(w-.5u,w-u+.5right_curve); +lft x13r=hround (.5w-.5mfudged.stem); x12=.5[x13,x11]; +y13=.5[y12,y14]; bot y14r=-oo; x14=x12; pos14(vair,270); +filldraw stroke pulled_arc.e(12,13) & pulled_arc.e(13,14) & + pulled_arc.e(14,11) & pulled_arc.e(11,12); +y11'r=y10r=y10l+.6[thin_join,vair]; y11'l=y10l; x11'l=x11'r=x11; x10l=x10r=x13; +pickup fine.nib; top y3r=h+vround 1.5oo; +if serifs: pos1(flare,180); pos2(mfudged.hair,180); + pos3(vair,90); lft x1r=hround max(u,2.1u-.5flare); x3=4u; + y1=min(bar_height+.5flare+2vair+2,.9[bar_height,h]-.5flare); + bulb(3,2,1); % bulb +else: pos1(5/7[vair,flare],95); x1l=good.x 1.5u; x1r:=good.x x1r; + pos3(1/8[vair,thin_join],90); + x3=4.3u; top y1r=vround .82[bar_height,top y3r]; + filldraw stroke term.e(3,1,left,.9,4); fi % left terminal +pos4(mfudged.stem,0); x4=x13; y4=1/3[bar_height,h]; +pos5(mfudged.stem,0); x5=x4; y5=min(y4,y13); +filldraw stroke super_arc.e(3,4)&z4e--z5e; % arc and stem +pos6(.6[thin_join,vair],90); x6=x4; bot y6=if Times_Compat: .9 fi bar_height; +pos7(left_curve,180); +lft x7r=hround max(.5u,1.5u-.5left_curve); y7=1/3[top y8l,top y6r]; +pos8(vair,270); x8l=3.75u; bot y8r=-oo; +pos9(.5[vair,fudged.stem],360); x9=x5; y9=.55bar_height; +(x',y8r)=whatever[z8l,z9l]; x8r:=max(x',x8-u); +{{interim superness:=more_super; + filldraw stroke z9e{down}...z8e{left}...{up}z7e&super_arc.e(7,6)}}; % bowl +if y9<y5: filldraw stroke z5e{down}..{down}z9e; fi % link (usually hidden) +penlabels(1,2,3,4,5,6,7,8,9,10,11,12,13,14,15); endchar; + +cmchar "Left-hook four"; +beginchar(incr ipacode,CT(9u#,10u#),fig_height#,desc_depth#); +italcorr fig_height#*slant-.5u#; +adjust_fit(0,0); +numeric light_stem, light_stem', diag_stem, alpha, cut; cut=.75notch_cut; +light_stem=hround .4[fudged.stem,fudged.cap_stem]; +light_stem'=hround max(tiny.breadth,light_stem-2stem_corr); +diag_stem=max(tiny.breadth,.4[vair,fudged.hair]); +pickup crisp.nib; pos5(cap_bar,90); pos6(cap_bar,90); +lft x5=hround .5u; rt x6=hround(w-.5u); +top y5r=vround(if serifs: 5/18[slab,h-light_stem]+1 + else:.35(h-light_stem) fi+.5cap_bar); +z4l=top lft z5r; y2=y2'=y5=y6; x1r=x2r=hround(w-3u+.5light_stem); +penpos1(light_stem',0); penpos2(light_stem',0); y1=y3=h+apex_o+apex_oo; +x3r+apex_corr=x1r; alpha=diag_ratio(1,diag_stem,y3-y4l,x3r-x4l); +penpos3(alpha*diag_stem,0); penpos4(alpha*diag_stem,0); +x0=x1l; z0=whatever[z3r,z4r]; +x5'=x5; z5''=z5'+penoffset z4-z3 of currentpen=whatever[z4l,z3l]; +fill diag_end(2r,1r,1,.5,3l,4l)---z5''...lft z5' + ---lft z5l -- (x4r,y5l) -- z4r + if y0<h-cut:{z3r-z4r}...{up}(x1l-1,h-cut) + --(x1l,h-cut) else: -- z0 fi + --z2l--z2r--cycle; % diagonal and upper stem +filldraw stroke z5e--z6e; % bar +pickup tiny.nib; pos7(light_stem,0); rt x7r=x1r; bot y7=0; +pos2'(light_stem,0); x2'=x7; +filldraw stroke z2'e--z7e; % lower stem +left_tail(7,8,9,10,light_stem,hround(lft x7-3.75u)); +penlabels(0,1,2,3,4,5,6,7,8,9,10); endchar; + +cmchar "Stretched C (original form)"; +beginchar(incr ipacode,CT(8u#,8.88u#),x_height#,desc_depth#); +italcorr x_height#*slant-.2u#; +adjust_fit(if monospace: .5u#,.5u# else: 0,0 fi); +pickup fine.nib; pos2(vair',90); pos4(vair',270); +x2=x4=.5(w+u); top y2r=vround(h+1.5oo); bot y4r=-d-oo; +pos3(curve,180); lft x3r=hround max(.6u,1.35u-.5curve); y3=.5h-.5d; +if serifs: pos1(hair,0); pos0(flare,0); + if Times_Compat: + y1=min(bar_height+.4flare+1.8vair'+2,.8[bar_height,h]-.5flare); + else: + y1=min(bar_height+.5flare+2vair'+2,.9[bar_height,h]-.5flare); fi + rt x1r=hround(w-.7u); bulb(2,1,0); % bulb + pos5(hair,0); rt x5r=hround(w-.5u); + y5=max(good.y(.5bar_height-.9-d),y4l+vair'); + (x,y4l)=whatever[z4r,z5l]; x4l:=min(x,x4l+.5u); + filldraw stroke pulled_super_arc.e(2,3)(.7superpull) + & pulled_super_arc.e(3,4)(.5superpull) + ..tension .9 and 1..{x5-x4,5(y5-y4)}z5e; % arc and lower terminal +else: pos1(4/7[vair',flare],80); + rt x1r=hround(w-.6u); top y1r=vround .82[bar_height,top y2r]; + filldraw stroke term.e(2,1,right,.8,4); % upper terminal + pos5(.6[vair',flare],275); rt x5r=hround(w-.5u); + y5r=good.y(y5r+1/3bar_height-y5-d); y5l:=good.y y5l; x5l:=good.x x5l; + forsuffixes e=l,r: path p.e; p.e=z4e{right}..tension .9 and 1..z5e; + if angle direction 1 of p.e>75: + p.e:=z4e{right}..tension atleast.9 and 1..{dir 75}z5e; fi endfor + filldraw stroke pulled_super_arc.e(2,3)(.7superpull) + & pulled_super_arc.e(3,4)(.5superpull) & p.e; fi % arc and lower terminal +penlabels(0,1,2,3,4,5); endchar; + +cmchar "Curly-tail stretched C"; +beginchar(incr ipacode,CT(9u#,10u#),asc_height#,desc_depth#); +italcorr asc_height#*slant-1u#; +adjust_fit(0,0); +pickup fine.nib; interim superness:=more_super; +pos2(.6[vair,flare],90); pos5(.6[vair,flare],270); +x2=x5=.5w; top y2r=vround(h+1.5oo); bot y5r=-d-oo; +pos3(stem,180); pos4(stem,180); +lft x3r=lft x4r=hround1.2u; y3=.75h; y4=0; +pos1(stem,0); rt x1r=hround(w-1.1u); top y1=vround .75h; +pos6(stem,0); rt x6r=hround(w-1u); y6=.6[-d,y7]; +pos7(.6[vair,flare],90); x7l=.2[x5,x6]; y7=.25h+.5stem-d; +pos8(stem,160); lft x8r=0; bot y8=-d-oo; +filldraw stroke pulled_arc.e(1,2) & pulled_arc.e(2,3) + & z3e--z4e & pulled_arc.e(4,5) & pulled_arc.e(5,6); +filldraw stroke z6e{up}...z7e{left}...{dir250}z8e; +penlabels(0,1,2,3,4,5,6,7,8); endchar; + +cmchar "Curly-tail stretched C (original form)"; +beginchar(incr ipacode,CT(8u#,8.88u#),x_height#,desc_depth#); +italcorr x_height#*slant-.2u#; +adjust_fit(if monospace: .5u#,.5u# else: 0,0 fi); +pickup fine.nib; pos2(vair',90); pos4(vair',270); +x2=x4=.5(w+u); top y2r=vround(h+1.5oo); bot y4r=-d-oo; +pos3(curve,180); lft x3r=hround max(.6u,1.35u-.5curve); y3=.5h-.5d; +if serifs: pos1(hair,0); pos0(flare,0); + if Times_Compat: + y1=min(bar_height+.4flare+1.8vair'+2,.8[bar_height,h]-.5flare); + else: + y1=min(bar_height+.5flare+2vair'+2,.9[bar_height,h]-.5flare); fi + rt x1r=hround(w-.7u); bulb(2,1,0); % bulb + pos5(hair,0); rt x5r=hround(.9w); y5=.35bar_height-d+.25hair; + (x,y4l)=whatever[z4r,z5l]; x4l:=min(x,x4l+.5u); + filldraw stroke pulled_super_arc.e(2,3)(.7superpull) + & pulled_super_arc.e(3,4)(.5superpull) + ..tension .9 and 1..{up}z5e; % arc and lower terminal +else: pos1(4/7[vair',flare],80); + rt x1r=hround(w-.6u); top y1r=vround .82[bar_height,top y2r]; + filldraw stroke term.e(2,1,right,.8,4); % upper terminal + pos5(.6[vair',flare],0); x5r=hround(w-.5u); + y5=.37bar_height-d+.25hair; + filldraw stroke pulled_super_arc.e(2,3)(.7superpull) + & pulled_super_arc.e(3,4)(.5superpull) & z4e{right}...{up}z5e; fi +pos6(vair,90); x6l=.3[x4,x5]; y6=.6bar_height+.5vair-d; +pos8(hair,160); x8=u; bot y8=-d-oo; +filldraw stroke z5e{up}...z6e{left}...{dir250}z8e; +penlabels(0,1,2,3,4,5,6,8); endchar; + +% This shape is found in PSG (1996:38). +cmchar "Front-hook D"; +beginchar(incr ipacode,10u#+serif_fit#,asc_height#,0); +italcorr asc_height#*slant-serif_fit#+.5stem#-2u#; +adjust_fit(3.25u#,serif_fit#); +d_stroke(true,true,0); +if serifs: pickup tiny.nib; else: pickup fine.nib; fi +top y8r=.95x_height; x8=2.7u; +front_hook(8,9,10,11,1.1stem,50,-2.75u,.4x_height,.05,1/2,.5); +penlabels(0,1,2,3,4,5,6,7,8,9,10,11); endchar; + +% This shape is the original shape introduced by Daniel Jones. +cmchar "Front-hook D (Original)"; +beginchar(incr ipacode,10u#+serif_fit#,asc_height#,0); +italcorr asc_height#*slant-serif_fit#+.5stem#-2u#; +adjust_fit(2u#,serif_fit#); +d_stroke(true,true,0); +if serifs: pickup tiny.nib; + pos8(.5[vair,hair],50); pos9(vair,90); pos10(vair,180); pos11(flare,180); + top y8r=.95x_height; x8=2.7u; + top y9r=1.1x_height; x9=.5u; + y10=.9x_height; x10r=-1.5u; + filldraw stroke z8e..{left}z9e; bulb(9,10,11);%arc and bulb +else: pickup fine.nib; + pos8(.5[vair,hair],50); pos9(vair,90); pos10(vair,100); + top y8r=.95x_height; x8=2.7u; + top y9r=1.1x_height; x9=.5u; + y10=.9x_height; x10r=-1.5u; + filldraw stroke z8e..z9e{left}..z10e; fi +penlabels(0,1,2,3,4,5,6,7,8,9,10,11); endchar; + +cmchar "D-B ligature"; +beginchar(incr ipacode,CT(15u#,15.56u#),asc_height#,0); +italcorr .5x_height#*slant+min(.5curve#-u#,-.25u#); +adjust_fit(0,0); +numeric w_org; w_org=w; w:=10u if Times_Compat: +.28u fi; +d_stroke(true,false,.1h); w:=w_org; +pickup tiny.nib; pos11(stem',0); pos12(stem,0); +pos10'(stem',0); pos10(stem,0); z10l=z10'l; x10'=x11; x10=x12; +x11l=x1l; top y11=h; +numeric edge; edge=rt x12r; +pickup fine.nib; pos13(if hefty:thin_join else: hair fi,180); +pos14(vair,90); pos15(curve,0); pos16(vair,-90); penpos17(x13l-x13r,-180); +rt x13l=max(rt x13l-(lft x13r-tiny.lft x12l),1/3[rt x12,edge]); +y13=1/8[bar_height,x_height]; +x14l=w-5u+serif_fit+.5u; top y14r=x_height+oo; +rt x15r=hround min(w-1.35u+.5curve,w-.6u); y15=.5x_height; +x16l=x14l-.2u; bot y16r=-oo; +x17=x13; y17=min(y13,y16+y14-y13+.6vair); +numeric X, X'; +(X,y14r)=whatever[z13l,z14l]; x14r:=min(X,.5[x14,x15r]); +(X',y16r)=whatever[z17l,z16l]; x16r:=min(X',.5[x16,x15r]); +filldraw stroke z13e{up}...pulled_arc.e(14,15)&pulled_arc.e(15,16) + ...{up}z17e; % bowl +y10=ypart(((edge,h)--(edge,0))intersectionpoint(z13l{up}...{right}z14l)); +y12=ypart(((edge,h)--(edge,0))intersectionpoint(z16l{left}...{up}z17l)); +pickup tiny.nib; filldraw stroke z10'e--z10e--z12e; % stem +pickup crisp.nib; pos18(hair,0); pos17'(stem,0); +z17'=z12; x18l=x17'l; bot y18=0; +filldraw stroke z17'e--z18e; % point +penlabels(0,1,2,3,4,5,6,7,10,11,12,13,14,15,16,17,18); endchar; + +cmchar "Right-hook E"; +beginchar(incr ipacode,CT(7.25u#+max(.75u#,.5curve#),8.88u#), + x_height#,desc_depth#); +italcorr .5[bar_height#,x_height#]*slant+.5min(curve#-1.5u#,0)-1u#; +adjust_fit(if monospace: .25u#,.5u# else: 0,1u# fi); +numeric left_curve,right_curve; +left_curve=right_curve+6stem_corr=curve if not serifs: -3stem_corr fi; +if right_curve<tiny.breadth: right_curve:=tiny.breadth; fi +if left_curve<tiny.breadth: left_curve:=tiny.breadth; fi +pickup tiny.nib; pos1(right_curve,0); +pos2(vair,90); pos3(left_curve,180); +y1=good.y bar_height; top y2r=h+vround 1.5oo; y0l=bot y1; +rt x1r=hround min(w-.5u,w-u+.5right_curve); +lft x3r=hround max(.5u,1.25u-.5left_curve); x2=.5w+.25u; +{{interim superness:=more_super; + filldraw stroke super_arc.e(1,2)}}; % right bowl +y3=.5[y2,y4]; bot y4r=-oo; x4=x2+.25u; +if serifs: pos4(vair',270); pos5(hair,360); + y5=max(good.y(.5bar_height-.9),y4l+vair); x5r=x1r; + (x,y4l)=whatever[z4r,z5]; x4l:=min(x,x4l+.5u); + filldraw stroke pulled_arc.e(2,3) & pulled_arc.e(3,4) + ...{x5-x4,5(y5-y4)}z5e; % left bowl, arc, and terminal +else: pos4(vair,270); + filldraw stroke super_arc.e(2,3) & super_arc.e(3,4); % left bowl and arc + pickup fine.nib; pos4'(vair,270); z4=z4'; + pos5(.5[vair,flare],275); rt x5r=hround(w-.6u); + y5r=good.y(y5r+1/3bar_height-y5); y5l:=good.y y5l; x5l:=good.x x5l; + filldraw stroke term.e(4',5,right,1,4); fi % terminal +path testpath; testpath=super_arc.r(2,3) & super_arc.r(3,4); +y1'r=y0r=y0l+.6[thin_join,vair]; y1'l=y0l; x1'l=x1'r=x1; +forsuffixes $=l,r: + x0$=xpart(((0,y0$)--(x1,y0$)) intersectionpoint testpath); endfor +fill stroke z0e--z1'e; % crossbar +if serifs: pickup tiny.nib; z6=z5; + pos6(diacr,0); right_tail(6,7,8,9,diacr,hround(x6+3.25u),.9,.5,.6); +else: pickup fine.nib; x6r=x5r; y6=y5r; + pos6(vair,0); right_tail(6,7,8,9,vair,hround(x6+3.25u),.85,.5,.5); fi +penlabels(0,1,2,3,4,5,6,7,8,9); endchar; + +cmchar "Right-hook epsilon"; +beginchar(incr ipacode,CT(8.5u#,8.88u#),x_height#,desc_depth#); +italcorr x_height#*slant-1.5u#; +adjust_fit(0,1u#); +epsilon_stroke(false,3.5u); +if serifs: numeric bulb_diam; + bulb_diam=max(flare-.75(cap_stem-stem),stem); + pos0(bulb_diam,0); pos1(hair,0); + rt x0r=hround (w-u); y0=min(.9h-.5bulb_diam,.75h+.5bulb_diam); + bulb(2,1,0); % upper bulb + pos9(bot_thickness,angle(2u,-h)); +else: pos1(hair,70); rt x1r = w-1u; top y1r = .9h; + filldraw stroke term.e(2,1,right,1,4); + pos9(hair,-70); fi +rt x9r=hround (w-.75u); top y9=vround .25h-o; +y9r:=good.y y9r-eps; x9l:=good.x x9l; +filldraw stroke term.e(8,9,right,1,4); % lower terminal +if serifs: pickup tiny.nib; x11l=x9l; y11=y9; + pos11(diacr,0); right_tail(11,12,13,14,diacr,hround(x11+3.25u),.9,.5,.6); +else: pickup fine.nib; x11r=x9r; y11=y9r; + pos11(vair,0); right_tail(11,12,13,14,vair,hround(x11+3.25u),.85,.5,.5); fi +penlabels(0,1,2,3,4,5,6,7,8,9,10,11,12,13,14); endchar; + +% based on greekl.mf. +cmchar "Greek gamma"; +beginchar(incr ipacode,10u#,x_height#,desc_depth#); +italcorr x_height#*slant-.5u#; +adjust_fit(0,0); pickup fine.nib; +pos1(hair,180); pos2(vstem+dw,90); +pos4(stem,0); pos5(vair,-90); pos6(stem,-180); pos7(stem,-180); +bot y1=.5772156649h; top y2r=h+oo; y4=y6=-.5d; +bot y5r=-d-o; top y7=h; +lft x1r=hround(.5u-.5hair); x2=2.5u; rt x4r=hround(w-4.2u); x5=.5[x4,x6]; +rt x4r-lft x6r=hround stem+eps; rt x7l=hround(w-u); +if x4l<x6l: x4l:=x6l:=x5; fi +pos3(hair,angle(z4-z2)+90); x3=superness[x2,x4]; y3=superness[y4,y2]; +filldraw stroke z1e{up}...z2e{right}...z3e{z4-z2} + ...z4e{down}...{left}z5e; % arc +filldraw stroke z5e{left}...z6e{up}..{2(x7-x6),y7-y6}z7e; % stem +penlabels(1,2,3,4,5,6,7); endchar; + +cmchar "Front-tail gamma"; +beginchar(incr ipacode,10u#,x_height#,desc_depth#); +italcorr x_height#*slant-.5u#; +adjust_fit(0,0); pickup fine.nib; +pos1(hair,180); pos2(vstem+dw,90); pos5(stem,0); pos5'(stem,-180); +pos4(stem,0); pos6(stem,-180); pos7(stem,-180); +bot y1=.5772156649h; top y2r=h+oo; y4=y6=-.5d; top y7=h; +lft x1r=hround(.5u-.5hair); x2=2.5u; rt x4r=hround(w-3.8u); +x4=x6; rt x7l=hround(w-u); x5=x5'=x4; y5=y5'=0; +pos3(hair,angle(z4-z2)+90); x3=superness[x2,x4]; y3=superness[y4,y2]; +filldraw stroke z1e{up}...z2e{right}...z3e{z4-z2} + ...{down}z5e; % arc +filldraw stroke z5'e{up}..{2(x7-x6),y7-y6}z7e; % stem +left_tail(5,8,9,10,stem,hround(2u-.5hair)); +penlabels(1,2,3,4,5,6,7); endchar; + +cmchar "Back-tail gamma"; +beginchar(incr ipacode,10u#,x_height#,desc_depth#); +italcorr x_height#*slant-.5u#; +adjust_fit(0,0); pickup fine.nib; +pos1(hair,180); pos2(vstem+dw,90); pos5(stem,0); pos5'(stem,-180); +pos4(stem,0); pos6(stem,-180); pos7(stem,-180); +bot y1=.5772156649h; top y2r=h+oo; y4=y6=-.5d; top y7=h; +lft x1r=hround(.5u-.5hair); x2=2.5u; rt x4r=hround(w-4.2u); +x4=x6; rt x7l=hround(w-u); x5=x5'=x4; y5=y5'=0; +pos3(hair,angle(z4-z2)+90); x3=superness[x2,x4]; y3=superness[y4,y2]; +filldraw stroke z1e{up}...z2e{right}...z3e{z4-z2} + ...{down}z5e; % arc +filldraw stroke z5'e{up}..{2(x7-x6),y7-y6}z7e; % stem +right_tail(5,8,9,10,stem,hround(w-u),.88,.5,1/3); +penlabels(1,2,3,4,5,6,7); endchar; + +cmchar "Right-tail hooktop H"; +beginchar(incr ipacode,10u#,asc_height#,desc_depth#); +italcorr .7[x_height#,asc_height#]*slant-serif_fit#+.5stem#-u#; +adjust_fit(serif_fit#+stem_shift#,-stem_shift#); +pickup tiny.nib; pos1(stem,0); pos2(stem,0); +pos1'(stem',0); pos2'(stem',0); pos3(stem,0); +lft x1l=hround(side_gap-.5stem); x1l=x1'l=x2l=x2'l; x3=w-x1; +top y1=.25[x_height,h]; bot y2=0; y1=y1'; y2=y2'; +filldraw stroke z1'e--z2'e; % left stem +h_stroke(2,a,3,4); % arch and right stem +if serifs: numeric inner_jut; pickup tiny.nib; + if rt x2r+jut+.5u+1<=lft x4l-jut: inner_jut=jut; + else: rt x2r+jut+.5u+1=lft x4l-inner_jut; fi + dish_serif(2,1,c,1/3,jut,d,1/3,jut); fi % lower left serif +hooktop(1,9,10,11,stem',rt x3r,h,.8,.55,.2); +if serifs: right_tail(4,5,6,7,stem,hround(w+1u),.88,.5,1/3); +else: right_tail(4,5,6,7,stem,hround(w+1u),.833,.5,1/3); fi +penlabels(1,2,3,4,5,6,7,9,10,11); endchar; + +cmchar "Heng"; +beginchar(incr ipacode,10u#,asc_height#,desc_depth#); +italcorr .5[bar_height#,x_height#]*slant+.5stem#-1.25u#; +adjust_fit(serif_fit#+stem_shift#,-stem_shift#-.5u#); +pickup tiny.nib; pos1(stem,0); pos2(stem,0); +pos1'(stem',0); pos2'(stem',0); pos3(stem,0); +lft x1l=hround(side_gap-.5stem); x1l=x1'l=x2l=x2'l; x3=w-x1; +top y1=h; bot y2=0; y1=y1'; y2=y2'; +filldraw stroke z1'e--z2'e; % left stem +h_stroke(2,a,3,4); % arch and right stem +if serifs: sloped_serif.l(1',2',b,1/3,jut,serif_drop); % upper left serif + numeric inner_jut; pickup tiny.nib; + if rt x2r+jut+.5u+1<=lft x4l-jut: inner_jut=jut; + else: rt x2r+jut+.5u+1=lft x4l-inner_jut; fi + dish_serif(2,1,c,1/3,jut,d,1/3,jut); fi % lower left serif +left_tail(4,5,6,7,stem,rt x2r); +penlabels(1,2,3,4,5,6,7); endchar; + +% Moved from tipasym2.mf (2001/11/23 fkr) +cmchar "Left-hooktop I"; +beginchar(incr ipacode,CT(6u#,6.66u#),x_height#,0); +italcorr x_height#*slant-2u#; +adjust_fit(0 if monospace:+1u# fi,serif_fit# if monospace:+1u# fi); +pickup tiny.nib; pos3(stem,0); x2=x3; bot y3=0; +x0=.75u; lft x2l = hround(.5w+.5u-.5stem); hook_in(0,1,2); +filldraw stroke z2e--z3e; +dish_serif(3,2,a,1/3,jut,b,1/3,jut); +penlabels(0,1,2,3); endchar; + +% The shape of the upper serif differs from the normal Curly-tail J. +cmchar "Curly-tail J (a variety found in 1996 IPA)"; +numeric dot_diam#; dot_diam#=max(dot_size#,cap_curve#); +beginchar(incr ipacode,CT(5.5u#,6.66u#), + min(asc_height#,10/7x_height#+.5dot_diam#),desc_depth#); +define_whole_blacker_pixels(dot_diam); +italcorr h#*slant-serif_fit#+.5stem#-2u#; +adjust_fit(serif_fit#+2stem_shift# if monospace:+1.5u# fi +.5u#, + -2stem_shift# if monospace:+1u# fi +.3u#); +pickup tiny.nib; pos1(stem',0); pos2(stem',0); +rt x1r=hround(.5w+.25u+.5stem'); x1=x2; +top y1=x_height if serifs: +min(oo,serif_drop) fi; bot y2=-1/3d; +filldraw stroke z1e--z2e; % stem +pos3(dot_diam,0); pos4(dot_diam,90); +x3r=x1r; top y4r=h+1; +if bot y4l-top y1<slab: y4l:=min(y4r-eps,y1+tiny+slab); fi +x3=x4; y3=.5[y4l,y4r]; dot(3,4); % dot +if serifs: dish_serif(1,2,a,1/3,jut,b,1/3,jut); % upper serif + pickup tiny.nib; pos5(vair,-90); pos6(hair,-180); + pos7(vair,-270); pos8(vair,-270); + x5=.5[x2,x6r]; bot y5r=-d-oo; y6=-.6d; + if monospace: lft x6r=0 else: x6r=-.3u fi; + (x,y5r)=whatever[z5l,z2l]; x5r:=max(x,.5[x6r,x5]); + y7r=y8r=0h; x7=x2l-.5u; x8=w-.5u; + filldraw stroke z2e{down}...z5e{left}...z6e{up}...z7e{right}---z8e; +else: pickup fine.nib; pos2'(stem',0); z2'=z2; + pos6(.2[vair,stem'],-90); pos7(vair,-180); + pos8(vair,-270); pos9(vair,-270); + lft x7r=hround -.75u; y7=-.5d; + z5r=z2'r; (x2'l,y5l)=whatever[z7l,z5r]; x5l=x2'l; y5=y5r; + x6r=.5[x7r,x5r]; x6l:=.5[x7l,x5l]; bot y6r=-d-oo; + bot y8l = bot y9l = vround(-.5vair); x8 = .5[x7,x2]; x9 = w; + filldraw stroke z2'e..{down}z5e & super_arc.e(5,6) + & z6e{left}..z7e...{right}z8e--z9e; fi % arc and terminal +penlabels(1,2,3,4,5,6,7,8); endchar; + +% Bar postion differs from the normal Hooktop Barred Dotless J. +cmchar "Hooktop barred dotless J (a variety)"; +beginchar(incr ipacode,CT(6u#,6.66u#),.9asc_height#,desc_depth#); +italcorr h#*slant+1u#; +adjust_fit(if monospace: 1.5u#,1.5u# else: 0,0 fi); +pickup if serifs: tiny.nib; else: fine.nib; fi +pos1(stem',0); pos2(stem',0); x1=x2=.5w; +top y1=x_height if serifs: +min(oo,serif_drop) fi; bot y2=0; +filldraw stroke z1e--z2e; % stem +left_tail(2,5,6,7,stem',hround-.75u); +hooktop(1,8,9,10,stem',hround(w+.75u),h,.84,.5,.4); +pickup crisp.nib; bot y3l=bot y4l=0; lft x3=x2-2.5u; x4=w-x3; +pos3(bar,90); pos4(bar,90); +filldraw stroke z3e--z4e; % bar +penlabels(1,2,3,4,5,6,7,8,9,10); endchar; + +cmchar "H-M ligature"; +beginchar(incr ipacode,CT(15u#,15.56u#),asc_height#,0); +italcorr .5[bar_height#,x_height#]*slant-serif_fit#+.5stem#-2u#; +adjust_fit(serif_fit#+stem_shift#,serif_fit#-stem_shift#); +numeric shaved_stem; shaved_stem=hround(mfudged.stem-2stem_corr); +pickup tiny.nib; pos1(mfudged.stem,0); pos2(mfudged.stem,0); +pos1'(shaved_stem,0); pos2'(shaved_stem,0); +pos3(mfudged.stem,0); pos5(mfudged.stem,0); +lft x1l=hround(side_gap-.5stem); x1l=x1'l=x2l=x2'l; % stem, sic +lft x3l=hround(.5w-.5mfudged.stem); x5-x3=x3-x1; +if not monospace: r:=hround(x5+x1)+r-w; fi % change width for better fit +top y1=h; bot y2=0; y1=y1'; y2=y2'; +filldraw stroke z1'e--z2'e; % left stem +h_stroke(2,a,3,4); % left arch and middle stem +h_stroke(4,b,5,6); % right arch and right stem +if serifs: sloped_serif.l(1',2',c,1/3,jut,serif_drop); % upper left serif + numeric inner_jut; pickup tiny.nib; + if rt x2r+jut+.5u+1<=lft x4l-jut: inner_jut=jut; + else: rt x2r+jut+.5u+1=lft x4l-inner_jut; fi + dish_serif(2,1,d,1/3,jut,e,1/3,jut); % lower left serif + dish_serif(4,3,f,1/3,inner_jut,g,1/3,jut); % lower middle serif + dish_serif(6,5,h,1/3,inner_jut,i,1/3,jut); fi % lower right serif +penlabels(1,2,3,4,5,6); endchar; + +% This shape is found in PSG(1996:119). +cmchar "Front-bar N"; +beginchar(incr ipacode,10u#,x_height#,0); +italcorr .5[bar_height#,x_height#]*slant-serif_fit#+.5stem#-2u#; +adjust_fit(2u#+serif_fit#+stem_shift#,serif_fit#-stem_shift#); +pickup tiny.nib; pos1(stem,0); pos2(stem,0); +numeric shaved_stem; shaved_stem=hround(stem-2stem_corr); +pos1'(shaved_stem,0); pos2'(shaved_stem,0); pos3(stem,0); +lft x1l=hround(side_gap-.5stem); x1l=x1'l=x2l=x2'l; x3=w-x1; +top y1=h; bot y2=0; y1=y1'; y2=y2'; +filldraw stroke z1'e--z2'e; % left stem +h_stroke(2,a,3,4); % arch and right stem +if serifs: + numeric inner_jut; pickup tiny.nib; + if rt x2r+jut+.5u+1<=lft x4l-jut: inner_jut=jut; + else: rt x2r+jut+.5u+1=lft x4l-inner_jut; fi + dish_serif(2,1,c,1/3,jut,d,1/3,jut); % lower left serif + dish_serif(4,3,e,1/3,inner_jut,f,1/3,jut); fi % lower right serif +pickup crisp.nib; +pos5(.8[vair,stem],90);pos6(hair,180); +top y5r=h; x5=x1; lft x6r=hround -1.5u; y6=good.y(y5l-beak/2.4)-eps; +arm(5,6,b,beak_darkness, -.8beak_jut); +penlabels(1,2,3,4,5,6); endchar; + +% Moved from tipasym2.mf (2001/11/23 fkr) +cmchar "Right leg N"; +beginchar(incr ipacode,10u#,x_height#,desc_depth#); +italcorr .5[bar_height#,x_height#]*slant-serif_fit#+.5stem#-2u#; +adjust_fit(serif_fit#+stem_shift#,serif_fit#-stem_shift#-.5u#); +pickup tiny.nib; pos1(stem,0); pos2(stem,0); +numeric shaved_stem; shaved_stem=hround(stem-2stem_corr); +pos1'(shaved_stem,0); pos2'(shaved_stem,0); pos3(stem,0); +lft x1l=hround(side_gap-.5stem); x1l=x1'l=x2l=x2'l; x3=w-x1; +top y1=h+min(oo,serif_drop); bot y2=0; y1=y1'; y2=y2'; +filldraw stroke z1'e--z2'e; % left stem +h_stroke(2,a,3,4); % arch and right stem +pos5(stem,0); x5=x3; bot y5=-d; +filldraw stroke z4e--z5e; +if serifs: sloped_serif.l(1',2',b,1/3,jut,serif_drop); % upper left serif + numeric inner_jut; pickup tiny.nib; + if rt x2r+jut+.5u+1<=lft x4l-jut: inner_jut=jut; + else: rt x2r+jut+.5u+1=lft x4l-inner_jut; fi + dish_serif(2,1,c,1/3,jut,d,1/3,jut); % lower left serif + dish_serif(5,3,e,1/3,inner_jut,f,1/3,jut); fi % lower right serif +penlabels(1,2,3,4); endchar; + +% PSG (1996:130). \textbf{(I'm sorry; the codes below are a makeshift.)} +cmchar "Female sign"; +beginchar(incr ipacode,CT(9u#,10u#),x_height#,desc_depth#); +italcorr .7x_height#*slant; +adjust_fit(if monospace: .5u#,.5u# else: 0,0 fi); +penpos1(rule_thickness,90); penpos3(rule_thickness,-90); +penpos2(rule_thickness,180); penpos4(rule_thickness,0); +x2r=hround .8u; x4r=w-x2r; x1=x3=.5w; +y1r=h+o; y3r=.05h; y2=y4=.5[y3,y1]; +penstroke pulled_arc.e(1,2) & pulled_arc.e(2,3) + & pulled_arc.e(3,4) & pulled_arc.e(4,1) & cycle; % bowl +penpos5(rule_thickness,0); penpos6(rule_thickness,0); +y5=y3; y6=-d-o; x5=x6=.5w; penstroke z5e--z6e; +penpos7(rule_thickness,90); penpos8(rule_thickness,90); +y7=y8=.5[y6,y3]; x7=hround 1.5u; x8=w-x7; penstroke z7e--z8e; +penlabels(1,2,3,4,5,6,7,8); endchar; + +% PSG (1996:131). \textbf{(I'm sorry; the codes below are a makeshift.)} +cmchar "Uncrossed female sign"; +beginchar(incr ipacode,CT(9u#,10u#),x_height#,desc_depth#); +italcorr .7x_height#*slant; +adjust_fit(if monospace: .5u#,.5u# else: 0,0 fi); +penpos1(rule_thickness,90); penpos3(rule_thickness,-90); +penpos2(rule_thickness,180); penpos4(rule_thickness,0); +x2r=hround .8u; x4r=w-x2r; x1=x3=.5w; +y1r=h+o; y3r=.05h; y2=y4=.5[y3,y1]; +penstroke pulled_arc.e(1,2) & pulled_arc.e(2,3) + & pulled_arc.e(3,4) & pulled_arc.e(4,1) & cycle; % bowl +penpos5(rule_thickness,0); penpos6(rule_thickness,0); +y5=y3; y6=-d-o; x5=x6=.5w; penstroke z5e--z6e; +penlabels(1,2,3,4,5,6); endchar; + +% Moved from tipasym2.mf (2001/11/23 fkr) +cmchar "Bull's eye (an old version)"; +beginchar(incr ipacode,asc_height#+2(u#+o#),asc_height#,0); autorounded; +adjust_fit(if monospace:-1u#,-1u# else: 0,0 fi); pickup light_rule.nib; +lft x6=hround u; x2=w-x6; top y8=h+o; bot y4=-d-o; +circle_points; draw_circle; % circle +fill fullcircle scaled(dot_size+eps) shifted(.5[z4,z8]); % dot +labels(1,2,3,4,5,6,7,8); endchar; + +cmchar "Right-hook open O"; +beginchar(incr ipacode,CT(8u#,8.88u#),x_height#,desc_depth#); +italcorr x_height#*slant-.5u#; +adjust_fit(if monospace: .5u#,.5u# else: 0,0 fi); +numeric BH; BH=if Times_Compat:.5613h else: bar_height fi; +pickup fine.nib; pos2(vair',-90); pos4(vair',90); +x2=x4=.5(w-u); bot y2r=vround(-1.5oo); top y4r=h+oo; +pos3(curve,0); rt x3r=hround min(w-.6u,w-1.35u+.5curve); y3=.5h; +if serifs: pos1(hair,-180); pos0(flare,-180); + y1=max(h-BH-.5flare-2vair'-2,h-.9[BH,h]+.5flare); + lft x1r=hround(.7u); bulb(2,1,0); % bulb + pos5(hair,-180); lft x5r=hround(.5u); + y5=min(h-good.y(.5BH-.9),y4l-vair'); + (x,y4l)=whatever[z4r,z5l]; x4l:=x; +filldraw stroke pulled_super_arc.e(2,3)(.7superpull) + & pulled_super_arc.e(3,4)(.5superpull) + ..tension .9 and 1..{x5-x4,5(y5-y4)}z5e; % arc and lower terminal +else: pos1(4/7[vair',flare],-100); + lft x1r=hround(.6u); bot y1r=h-vround .82[BH,top y4r]; + filldraw stroke term.e(2,1,left,.8,4); % upper terminal + pos5(.6[vair',flare],95); lft x5r=hround .5u; + y5r=good.y(h+y5r-1/3BH-y5); + y5l:=good.y y5l; x5l:=good.x x5l; + filldraw stroke pulled_super_arc.e(2,3)(.7superpull) + & pulled_super_arc.e(3,4)(.5superpull) + ..tension .9 and 1..z5e; fi % arc and lower terminal +if serifs: pickup tiny.nib; x6l=x0r; y6=y0; + pos6(diacr,0); right_tail(6,7,8,9,diacr,hround(x6+3.25u),.9,.5,.6); +else: pickup fine.nib; x6l=x1r; y6=y1r; + pos6(vair,0); right_tail(6,7,8,9,vair,hround(x6+3.25u),.85,.5,.5); fi +penlabels(0,1,2,3,4,5,6,7,8,9); endchar; + +cmchar "Inverted omega"; +beginchar(incr ipacode,CT(11u#,12u#),x_height#,0); % 2003/03/16 +italcorr .6x_height#*slant; +adjust_fit(0,0); pickup fine.nib; +pos2(curve,0); rt x2r=hround(w-.5u); y2=y8=.55h; +y4=y6=vround.4h; y1r=-oo; x1=x5=.5w; pos1(vair,270); +pos3(vair,90); pos4(hair,180); pos5(vair,270); +pos6(hair,0); pos7(vair,90); pos8(curve,180); +top y3r=top y7r=h+oo; bot y5r=vround(.9[0,y4]-.5vair); +x3=.5[x2,x4]; x7=.5[x6,x8]; lft x8r=hround .5u; +x5=.5[x4,x6]; rt x6r-lft x4r=min(stem,2hair)+2eps; +if x4l>x6l: x4l:=x6l:=x5; fi +pos9(vair,290);pos10(vair,250); +y9r=y10r=0; x9=w-x10=x2+1/2(x1-x2); +filldraw stroke z9e{dir30}...z2e{up}...z3e{left} + ...{down}z4e...{right}z5e; % left arc +filldraw stroke z5e{right}...z6e{up}...z7e{left} + ...{down}z8e...z10e{dir330}; +penlabels(1,2,3,4,5,6,7,8,9,10); endchar; + +cmchar "Left-hook P"; +beginchar(incr ipacode,10u#+serif_fit#,x_height#,desc_depth#); +italcorr .5x_height#*slant+min(.5curve#-.85u#,-.1u#); +adjust_fit(serif_fit#+.5u#,0); +pickup tiny.nib; pos1(stem',0); pos2(stem,0); +pos0'(stem',0); pos0(stem,0); z0l=z0'l; x0'=x1; x0=x2; +lft x1l=hround(side_gap-.5stem'); top y1=h if serifs: +min(oo,serif_drop) fi; +numeric edge; edge=rt x2r; +pickup fine.nib; pos3(if hefty:thin_join else: hair fi,180); +pos4(vair',90); pos5(curve,0); pos6(vair,-90); penpos7(x3l-x3r,-180); +rt x3l=max(rt x3l-(lft x3r-tiny.lft x2l), 1/3[rt x2,edge]); +y3=1/8[bar_height,x_height]; +x4l=w-.5(w-serif_fit)+.5u; top y4r=x_height+oo; +rt x5r=hround min(w-1.35u+.5curve,w-.6u); y5=.5x_height; +x6l=x4l-.2u; bot y6r=-oo; +x7=x3; y7=min(y3,y6+y4-y3+.6vair); +(x,y4r)=whatever[z3l,z4l]; x4r:=min(x,.5[x5r,x4]); +(x',y6r)=whatever[z7l,z6l]; x6r:=min(x',.5[x5r,x6]); +filldraw stroke z3e{up}...{right}z4e&super_arc.e(4,5) + &super_arc.e(5,6)&z6e{left}...{up}z7e; % bowl +y0=ypart(((edge,h)--(edge,0))intersectionpoint(z3l{up}...{right}z4l)); +pickup tiny.nib; bot y2=0; +filldraw stroke z1e--z0'e--z0e--z2e; % stem +pickup crisp.nib; pos8(hair,0); pos7'(stem,0); +z7'=z2; x8l=x7'l; bot y8=0; +filldraw stroke z7'e--z8e; % point +if serifs: sloped_serif.l(1,0',a,1/3,jut,serif_drop); fi % upper serif +left_tail(2,9,10,11,stem,hround(-.75u)); +penlabels(0,1,2,3,4,5,6,7,8,9,10,11); endchar; + +cmchar "Q-P ligature"; +beginchar(incr ipacode,CT(15u#,15.56u#),x_height#,desc_depth#); +italcorr .5x_height#*slant+min(.5curve#-.85u#,-.1u#); +adjust_fit(0,0); +numeric w_org; w_org=w; w:=10u if Times_Compat: +.28u fi; +pickup tiny.nib; pos1(stem',0); pos2(stem,0); +pos0'(stem',0); pos0(stem,0); z0r=z0'r; x0'=x1; x0=x2; +rt x1r=hround(w-side_gap+.5stem'); +numeric edge; edge=lft x2l; +pickup fine.nib; pos3(if hefty:thin_join else: hair fi,0); +pos4(vair',90); pos5(curve,180); pos6(vair,270); penpos7(x3r-x3l,360); +lft x3l=min(lft x3l-(rt x3r-tiny.rt x2r),2/3[lft x2,edge]); y3=bar_height; +x4l=.5(w-serif_fit)-.3u; top y4r=x_height+oo; +lft x5r=hround max(1.35u-.5curve,.6u); y5=.5x_height; +x6l=x4l-.2u; bot y6r=-oo; y7=min(y3,y6+y4-y3+.6vair); +lft x7l=min(lft x7l-(rt x7r-tiny.rt x2r),1/3[lft x2,edge]); +(x,y4r)=whatever[z3l,z4l]; x4r:=max(x,.5[x5r,x4]); +(x',y6r)=whatever[z7l,z6l]; x6r:=max(x',.5[x5r,x6]); +filldraw stroke z3e{up}...{left}z4e&super_arc.e(4,5) + &super_arc.e(5,6)&z6e{right}...{up}z7e; % bowl +y1=ypart(((edge,h)--(edge,0))intersectionpoint(z3l{up}...{left}z4l)); +y0=ypart(((edge,h)--(edge,0))intersectionpoint(z6l{right}...{up}z7l)); +pickup tiny.nib; bot y2=-d; +filldraw stroke z1e--z0'e--z0e--z2e; % stem +pickup crisp.nib; +pos8(hround(hair-stem_corr),0); pos7'(stem',0); +z7'=z1; x8r=x7'r; top y8=h+oo; +filldraw stroke z7'e--z8e; % point +if serifs: dish_serif(2,0,b,1/3,jut,c,1/3,jut); fi % lower serif +w:=w_org; +pickup tiny.nib; pos11(stem',0); pos12(stem,0); +pos10'(stem',0); pos10(stem,0); z10l=z10'l; x10'=x11; x10=x12; +x11l=x1l; top y11=h if serifs: +min(oo,serif_drop) fi; +numeric edge; edge=rt x12r; +pickup fine.nib; pos13(if hefty:thin_join else: hair fi,180); +pos14(vair',90); pos15(curve,0); pos16(vair,-90); penpos17(x13l-x13r,-180); +rt x13l=max(rt x13l-(lft x13r-tiny.lft x12l), 1/3[rt x12,edge]); +y13=1/8[bar_height,x_height]; +x14l=w-5u+serif_fit+.5u; top y14r=x_height+oo; +rt x15r=hround min(w-1.35u+.5curve,w-.6u); y15=.5x_height; +x16l=x14l-.2u; bot y16r=-oo; +x17=x13; y17=min(y13,y16+y14-y13+.6vair); +numeric X, X'; +(X,y14r)=whatever[z13l,z14l]; x14r:=min(X,.5[x15r,x14]); +(X',y16r)=whatever[z17l,z16l]; x16r:=min(X',.5[x15r,x16]); +filldraw stroke z13e{up}...{right}z14e&super_arc.e(14,15) + &super_arc.e(15,16)&z16e{left}...{up}z17e; % bowl +penlabels(0,1,2,3,4,5,6,7,8,10,11,12,13,14,15,16,17,18); endchar; + +cmchar "Reversed esh with top loop"; +beginchar(incr ipacode,CT(5u#,5.56u#),asc_height#,desc_depth#); +italcorr asc_height#*slant-1u#; +adjust_fit(.5hair#+.25u# if monospace:+1u# fi,.5u# if monospace:+1.5u# fi); +pickup tiny.nib; pos1(stem',0); pos2(stem',0); +lft x1l=hround(.5w-.5stem'); x2=x1; y2=0; h-y1=d; +filldraw stroke z1e--z2e; % stem +if serifs: right_tail(2,3,4,5,stem',hround(w+1u),.88,.5,1/3); +else: right_tail(2,3,4,5,stem',hround(w+1u),.833,.5,1/3); fi +if serifs: pickup tiny.nib; + pos1.a(stem',0); z1=z1.a; + x6=x1.a; top y6=1/3[y1.a,h]; pos6(stem',0); + pos7(vair,90); pos8(hair,180); pos9(vair,270); pos10(hair,360); + x7=x9=.5[x6,x8r]; top y7r=h+oo; y9r=.4[x_height,h]-vair; + y8=y10=.5[y9r,y7r]; lft x8r=hround-.5u; x10r=x1; + filldraw stroke z1.a e--z6e{up}...z7e{left}...z8e{down}... + {right}z9e...{up}z10e; % arc and loop +else: pickup fine.nib; + pos1.a(stem',0); z1=z1.a; + x6=x1.a; top y6=1/3[y1.a,h]; pos6(stem',0); + pos7(vair,90); pos8(.5[vair,flare],180); pos9(vair,270); + pos10(.5[vair,flare],315); + x7=x9=.5[x6r,x8r]; top y7r=h+o; y9r=.4[x_height,h]-vair; + lft x8r=hround(-.5u-.5vair); y8=y10=.5[y9r,y7r]; x10l=x1l; + filldraw stroke z1.a e--z6e & super_arc.e(6,7) + & z7e{left}...z8e{down}...{right}z9e...{up}z10e; fi +penlabels(1,2,3,4,5,6,7,8,9,10); endchar; + +% This shape is found in PSG (1996:176). +cmchar "Front-hook T"; +beginchar(incr ipacode,6u#+max(u#,.5stem#), + min(asc_height#,if hefty:9/7 else:10/7 fi\\ x_height#),0); +italcorr x_height#*slant if serifs: -.9u# else: -.4u# fi; +adjust_fit(3u#,if serifs: 0 else: -.5u# fi); +numeric shaved_stem; shaved_stem=hround(stem if hefty:-\\2stem_corr fi); +pickup fine.nib; pos2(shaved_stem,180);pos3(shaved_stem,180); +lft x2r=lft x3r=hround(side_gap-.5shaved_stem); +y2=y8; y3=max(.5bar_height,2vair); +pickup crisp.nib; pos8(bar,90); +rt x8=hround(w-1.3u); top y8r=x_height; lft x7=hround 1/3u; y7l=y8l; +if hefty: pos7(bar,90); + filldraw stroke z7e--z8e; % crossbar + pickup tiny.nib; pos1(hround(shaved_stem-stem_corr),0); + rt x1r=fine.rt x2l; top y1=h; + penpos2'(x1r-x1l,0); x2'=x1; y2'=y2; + filldraw stroke z1e--z2'e; % upper terminal +else: pos7(vair,90); pos1(hair,0); + rt x1r=fine.rt x2l; top y1=h; + filldraw z1l{down}...{left}z7r--z7l--z8l + --z8r--(x1r,y8r)--z1r--cycle; fi % upper terminal and crossbar +pickup fine.nib; interim superness:=more_super; +pos4(vair',-90); bot y4r=-oo; rt x5r=hround(w-u); +if serifs: pos5(hair,0); y5=y3; x4l=.5[x3l,x5l]; + (x,y4r)=whatever[z4l,z5l]; x4r:=max(x,.5[x3r,x4]); + filldraw stroke z2e..super_arc.e(3,4)...{up}z5e; % stem and hook + pickup crisp.nib; pos6(hair,0); pos5'(hair,0); + x6=x5=x5'; top y6=max(vround .75bar_height,top y5); y5=y5'; + if Times_Compat: y6l:=.2[y5l,y6l]; y6r:=y6l; fi + filldraw stroke z5'e--z6e; % terminal +else: pos5(vair,-75); top y5l=vround .2[top y4l,bar_height]; + x5l:=good.x x5l; x4l=1/3[x3l,x5l]; x4r:=1/3[x3r,x5r]; y3l:=y3l+.2vair; + filldraw stroke z2e..super_arc.e(3,4); % stem and hook + path p; p=stroke z4e{right}..tension .9 and atleast 1..z5e; % terminal + if (xpart(z5l-precontrol 1 of p)<0) or (xpart(z5r-postcontrol 2 of p)<0): + filldraw stroke z4e{right}...{up}z5e; + else: filldraw p; fi fi; +y10=y7; x10=x2r; +front_hook(10,11,12,13,bar,90,-2.5u,.55x_height,.05,1/2,.5); +penlabels(1,2,3,4,5,6,7,8,10,11,12,13); endchar; + +cmchar "Curly-tail turned T"; +beginchar(incr ipacode,6u#+max(u#,.5stem#),x_height#,desc_depth#); +italcorr .7x_height#*slant -.5u#; +adjust_fit(if serifs: 0 else: -.5u# fi,0 if monospace:+1u# fi); +numeric shaved_stem,td; shaved_stem=hround(stem if hefty:-\\2stem_corr fi); +td=min(asc_height,if hefty:9/7 else:10/7 fi\\ x_height)-x_height; +td:=vround .7td; +pickup fine.nib; pos2(shaved_stem,0);pos3(shaved_stem,0); +rt x2r=rt x3r=hround(w-(2.5u-.5shaved_stem)); +y2=y8; y3=min(h-.5bar_height,h-2vair); +pickup crisp.nib; pos8(bar,270); +lft x8=hround 1.3u; bot y8r=0; rt x7=hround(w-1/3u); y7l=y8l; +if hefty: pos7(bar,270); + filldraw stroke z7e--z8e; % crossbar + pickup tiny.nib; pos1(hround(shaved_stem-stem_corr),180); + lft x1r=fine.lft x2l; bot y1=-td; + penpos2'(x1l-x1r,180); x2'=x1; y2'=y2; + filldraw stroke z1e--z2'e; % upper terminal +else: pos7(vair,270); pos1(hair,180); + lft x1r=fine.lft x2l; bot y1=-td; + filldraw z1l{up}...{right}z7r--z7l--z8l + --z8r--(x1r,y8r)--z1r--cycle; fi % upper terminal and crossbar +pickup fine.nib; interim superness:=more_super; +pos4(vair',90); top y4r=h+oo; lft x5r=hround u; +if serifs: pos5(hair,180); y5=y3; x4l=.5[x3l,x5l]; + (x,y4r)=whatever[z4l,z5l]; x4r:=min(x,.5[x3r,x4]); + filldraw stroke z2e..super_arc.e(3,4)...{down}z5e; % stem and hook + pickup crisp.nib; pos6(hair,180); pos5'(hair,180); + x6=x5=x5'; bot y6=min(vround (h-.75bar_height),bot y5); y5=y5'; + if Times_Compat: y6l:=.2[y5l,y6l]; y6r:=y6l; fi + filldraw stroke z5'e--z6e; % terminal +else: pos5(vair,105); bot y5l=vround .2[bot y4l,h-bar_height]; + x5l:=good.x x5l; x4l=1/3[x3l,x5l]; x4r:=1/3[x3r,x5r]; y3l:=y3l-.2vair; + filldraw stroke z2e..super_arc.e(3,4); % stem and hook + path p; p=stroke z4e{left}..tension .9 and atleast 1..z5e; % terminal + if (xpart(z5l-precontrol 1 of p)>=0) or (xpart(z5r-postcontrol 2 of p)>=0): + filldraw stroke z4e{left}...{down}z5e; + else: filldraw p; fi fi; +if serifs: pos10(vair,90); pos11(hair,10); pos12(vair,-100); pos13(hair,190); +else: pos10(vair,90); pos11(.6hair,10); pos12(vair,-100); pos13(vair,240); fi +bot y10l=-d-o; x10=.4[x11,x1]; lft x11l=hround 1u; y11=-.7d; +z12=(x1,-.4d); lft x13r=hround(w-1u); y13=-d-o; +filldraw stroke z1e..tension .9 and atleast 1..{left}z10e...z11e + ...z12e...{down}z13e; +penlabels(1,2,3,4,5,6,7,8,10,11,12,13); endchar; + +cmchar "Turned two"; +beginchar(incr ipacode,CT(9u#,10u#),x_height#,fig_height#-x_height#); +italcorr x_height#*slant-.5serif_fit#-.3u#; +adjust_fit(0,0); +numeric arm_thickness, hair_vair; hair_vair=.25[vair,hair]; +arm_thickness=Vround(if hefty:slab+2stem_corr else:.4[stem,cap_stem] fi); +pickup crisp.nib; pos7(arm_thickness,90); pos8(hair,180); +top y7r=h; rt x7=hround(w-.9u); lft x8r=hround .9u; y8=good.y(y7l-beak/2)-eps; +arm(7,8,a,.3beak_darkness,-beak_jut); % arm and beak +pickup fine.nib; pos2(slab,270); pos3(.4[curve,cap_curve],180); +bot y2r=-d-o; x2=.5(w+.5u); lft x3r=hround .9u; y3-.5vair=h-.75(h+d); +if serifs: numeric bulb_diam; bulb_diam=hround(flare+2/3(cap_stem-stem)); + pos0(bulb_diam,360); pos1(cap_hair,360); + rt x1r=hround(w-.9u); y1+.5bulb_diam=h-2/3(h+d); + (x,y2l)=whatever[z1l,z2r]; x2l:=x; bulb(2,1,0); % bulb and arc +else: x2l:=x2l+.25u; pos1(flare,angle(-9u,h)+180); + rt x1r=hround(w-.75u); top y1l=vround (h-.7(h+d)); + y1r:=good.y y1r-eps; x1l:=good.x x1l; + filldraw stroke term.e(2,1,right,.9,4); fi % terminal and arc +pos4(.25[hair_vair,cap_stem],180); +pos5(hair_vair,180); pos6(hair_vair,180); +y5=h-arm_thickness; y4=.3[y5,y3]; bot y6=max(y5,h-slab,bot y7l); +rt x6l=crisp.rt x7; z4l=whatever[z6l,(x3l,top (h-.58(h+d)))]; +z5l=whatever[z6l,z4l]; +erase fill z4l--z6l--rt z6l--(rt x6l,y4l)--cycle; % erase excess at left +filldraw stroke z2e{left}..tension atleast .9 and atleast 1 + ..z3e{up}.. z4e---z5e--z6e; % stroke +penlabels(0,1,2,3,4,5,6,7,8); endchar; + +cmchar "Bent-tail yogh"; +beginchar(incr ipacode,CT(8u#,8.88u#),x_height#,desc_depth#); +italcorr x_height#*slant-.5serif_fit#-.3u#; +adjust_fit(0,.5serif_fit#); + numeric arm_thickness[],z_stem,stem[]; + stem1=fudged.stem-4stem_corr; + if hefty: arm_thickness1=stem1; arm_thickness2=stem1; + z_stem=fudged.hair; + else: arm_thickness1=stem1; arm_thickness2=stem1; z_stem=fudged.hair; fi + if arm_thickness1<tiny.breadth: arm_thickness1:=tiny.breadth; fi + pickup tiny.nib; rt x1r=rt x2r=hround(w-.8u); + lft x3l=lft x4l=hround .3[.5u, w-.8u]; + top y1=h; y2=min(y1,h-2/3arm_thickness1); + bot y4=.4[0,h]; y3=max(y4,2/3arm_thickness2); + numeric alpha; alpha=diag_ratio(1,z_stem-tiny,y2-y3,x2r-x3l-slant*(y2-y3)); + penpos1(alpha*(z_stem-tiny),0); penpos2(alpha*(z_stem-tiny),0); + penpos3(alpha*(z_stem-tiny),0); penpos4(alpha*(z_stem-tiny),0); + pair delta; delta=penoffset z3-z2 of currentpen; + fill top lft z1l--z2l+delta---z3l+delta..lft z3l---lft z4l..bot z4l + ---bot rt z4r--z3r-delta---z2r-delta..rt z2r---rt z1r..top z1r + ---cycle; % diagonal + pickup crisp.nib; pos5(arm_thickness1,90); pos6(hair,180); + top y5r=h; x5=x1; lft x6r=hround .75u; + y6=good.y(y5l-beak/1.8)-eps; + arm(5,6,a',beak_darkness,-.4beak_jut); % upper arm and beak + pickup fine.nib; + pos12(stem,angle(z2-z3)); z12l=z3l; + pos7(curve,-20); pos8(curve,-20); pos9(vair,90); pos10(hair,135); + rt x7r=hround(w-.75u); y7=.2[bot y12l,top y8l]; + x8=hround .3[.75u, w-.8u]; y8=-1/2d; + x9=.5[x8l,x7r]; bot y9l=-d-oo; + x10=x7r; y10=.7[y9,y8]; + filldraw stroke z12e{right}...z7e{down}.. tension 1.2 ..{down}z8e... + {right}z9e...z10e; % bowl and tail +penlabels(1,2,3,4,5,6,7,8,9,10,12); endchar; + +cmchar "Turned three"; +beginchar(incr ipacode,CT(9u#,10u#),x_height#,fig_height#-x_height#); +italcorr x_height#*slant-.5u#; +adjust_fit(0,0); +numeric top_thickness,mid_thickness,bot_thickness; +top_thickness=max(fine.breadth,vround(slab-2vair_corr)); +mid_thickness=max(fine.breadth,vround 2/3vair); +bot_thickness=max(fine.breadth,vround(slab-vair_corr)); +pickup fine.nib; pos2(top_thickness,270); bot y2r=-d-o; +pos3(max(fine.breadth,.6[curve,cap_curve]-stem_corr),180); +lft x3r=hround 1.25u; +pos4(vair,90); pos5(vair,90); +pos6(mid_thickness,270); x2=x6=x8=.5[w-1.5u,x7]; +pos7(cap_curve,180); lft x7r=hround .75u; rt x5=max(hround(w-3u),rt x6)+eps; +pos8(bot_thickness,90); top y8r=h+o; +y3=.6[bot y4l,top y2l]; y7=.5[top y6l,bot y8l]; +bot y5l=vround(h-.54(h+d)-.5vair); y5r=y6l; +x4=1/3[x5,x3l]; z4=z5-whatever*(15u,.1(h+d)); +filldraw stroke pulled_super_arc.e(2,3)(.5superpull) + & z3e{up}...z4e---z5e; % upper bowl +filldraw z5r--z6l--z6r--z5l---cycle; % middle tip +filldraw stroke pulled_super_arc.e(6,7)(.5superpull) + & pulled_super_arc.e(7,8)(.5superpull); % lower bowl +if serifs: numeric bulb_diam[]; + bulb_diam1=flare+.5(cap_stem-stem); bulb_diam2=flare+cap_stem-stem; + pos0(bulb_diam1,360); pos1(hair,360); + rt x0r=hround(w-1.25u); + y0=max((h-.9(h+d))+.5bulb_diam1,(h-.75(h+d))-.5bulb_diam1); + bulb(2,1,0); % upper bulb + pos10(bulb_diam2,0); pos9(cap_hair,0); + rt x10r=hround(w-.75u); + y10=min((h-.1(h+d))-.5bulb_diam2,(h-.3(h+d))+.5bulb_diam2); + bulb(8,9,10); % lower bulb +else: pos1(.5[vair,flare],angle(-8u,h)+180); + rt x1r=hround(w-u); top y1l=vround(h-.75(h+d))-o; + y1r:=good.y y1r-eps; x1l:=good.x x1l; + pos9(bot_thickness,angle(-2u,-h)+180); + rt x9r=hround(w-.75u); bot y9l=vround(h-.25(h+d))+o; + y9r:=good.y y9r+eps; x9l:=good.x x9l; + filldraw stroke term.e(2,1,right,1,4); % upper terminal + filldraw stroke term.e(8,9,right,1,4); fi % lower terminal +penlabels(0,1,2,3,4,5,6,7,8,9,10); endchar; + +% N.B. This symbols is not a descender. +cmchar "Curly-tail inverted glottal stop"; +beginchar(incr ipacode,CT(9u#,10u#),asc_height#,0); +italcorr .5x_height#*slant; +adjust_fit(0,0); +pickup tiny.nib; pos2(vair,-90); pos3(curve,0); +pos4(vair,90); pos5(stem,0); pos6(stem,0); +x5=x6; x2=.5w; x4=x5l; rt x3r=hround(w-u); +lft x6l=hround(.42w-.5stem); top y6=h; +bot y2r=-oo; y3=.5[y2,y4]; y4r=.9x_height; y5=y4l; +{{interim superness:=more_super; + filldraw stroke pulled_super_arc.e(2,3)(superpull) + & z3e{up}...{(-10,-1)}z4e; + filldraw stroke z5e--z6e\\}}; % arc and stem +pos1(stem-stem_corr, 180); lft x1r=hround u; y1=.5[y3,y2]; +pos7(vair,-270); x7=.2[x2,x6]; y7=.3[y3,y2]; +pos8(hair,0); rt x8r=hround(w-2u); bot y8=-.15x_height; +filldraw stroke z2e{left}...{up}z1e...z7e...{dir-80}z8e; +penlabels(0,1,2,3,4,5,6,7,8); endchar; + +% Attested in PSG (1996:211) as a typesetter's error for a normal +% glottal stop. The error is said to appear in the second edition +% of Gimson (1970). +% +% Why do I have to make a symbol like this? Sigh... +% +cmchar "Turned glottal stop (PSG 1996:211)"; +beginchar(incr ipacode,CT(9u#,10u#),asc_height#,0); +italcorr .8asc_height#*slant-.5u#; +adjust_fit(0,0); +pickup tiny.nib; pos7(stem,0); top y7=h; x7=.53w; +pos2(vair,270); pos3(curve,180); +pos4(vair,90); pos5(stem,0); pos6(stem,180); +x2=x5=x6=x7; x4=x5r; +lft x3r=hround u; top y6=h-.3x_height; +bot y2r=-oo; y3=.5[y2,y4]; y4r=.5h; y5=y4l; +{{interim superness:=more_super; + filldraw stroke pulled_super_arc.e(2,3)(superpull) + & z3e{up}...{(10,1)}z4e; + filldraw stroke z5e--z7e\\}}; % arc and stem +if serifs: pos1(hair,0); pos0(flare,0); + rt x1r=hround(w-u); y1=.3[y3,y2]; bulb(2,1,0); % bulb + dish_serif(7,5,e,1/3,jut,f,1/3,jut); %serif +else: pos1(vround 5/7[vair,flare],290); + rt x1r=hround(w-u); bot y1r=vround .9[y6,top y2r]; + filldraw stroke term.e(2,1,right,1,4); fi % terminal +penlabels(0,1,2,3,4,5,6,7); endchar; + +cmchar "Pipe (a variety with no descender)"; +beginchar(incr ipacode,CT(5u#,5.56u#),asc_height#,0); +italcorr asc_height#*slant+.5rule_thickness#-2u#; +adjust_fit(0,0); +numeric thickness; thickness=hround.4[hair,stem]; +pickup tiny.nib; pos1(thickness,0); pos2(thickness,0); +lft x1l = lft x2l = hround(.5w-.5thickness); +top y1=h+o; bot y2=-d-o; +filldraw stroke z1e--z2e; +penlabels(1,2); endchar; + +cmchar "Double pipe (a variety with no descender)"; +beginchar(incr ipacode,CT(8u#,8.88u#),asc_height#,0); +italcorr asc_height#*slant+.5rule_thickness#-2u#; +adjust_fit(0,0); +numeric thickness; thickness=hround(.4[hair,stem]-2stem_corr); +pickup tiny.nib; pos1(thickness,0); pos2(thickness,0); +pos3(thickness,0); pos4(thickness,0); +x1=x2; x3=x4=w-x1; lft x1l = hround((w-3.2u-thickness)/2); +top y1=top y3=h+o; bot y2=bot y4=-d-o; +filldraw stroke z1e--z2e; filldraw stroke z3e--z4e; +penlabels(1,2,3,4); endchar; + +cmchar "Double-barred pipe (a variety with no descender)"; +beginchar(incr ipacode,10u#,asc_height#,0); +italcorr asc_height#*slant+.5rule_thickness#-1.5u#; +adjust_fit(0,0); +numeric thickness[]; thickness1=hround.4[hair,stem]; +pickup tiny.nib; pos1(thickness1,0); pos2(thickness1,0); +lft x1l = lft x2l = hround(.5w-.5thickness1); +top y1=h+o; bot y2=-d-o; +filldraw stroke z1e--z2e; +thickness2=vround .3[vair,flare]; +pos3(thickness2,90); pos4(thickness2,90); +pos5(thickness2,90); pos6(thickness2,90); +lft x3l = lft x5l = hround 1u; +rt x4l = rt x6l = hround(w-1u); +top y3r = top y4r = h-d-bot y5; +bot y5l = bot y6l = vround(1/3(h+d)-d-.5thickness2); +filldraw stroke z3e--z4e; +filldraw stroke z5e--z6e; +penlabels(1,2,3,4,5,6); endchar; + +cmchar "L-Fish-hook R ligature"; +numeric r_flare#; r_flare#=.75[if serifs: stem# else: vair# fi,flare#]; +define_whole_blacker_pixels(r_flare); +beginchar(incr ipacode,CT(if serifs:max(7u#,5.5u#+r_flare#) else:6.5u# fi,6.66u#), + asc_height#,0); +italcorr x_height#*slant if not serifs: +.25u# fi; +adjust_fit(serif_fit#,0); +pickup fine.nib; top y4r=x_height+oo; +if serifs: pos4(vair,90); pos5(hair,0); x4=.5[x6,.5w]; + rt x5r=hround(w-if Times_Compat: .25u else: .5u fi +.5); + y5+.8r_flare=.9[bar_height,x_height]+oo; + pos6(r_flare,0); bulb(4,5,6); % bulb +else: pos4(r_flare,90); rt x4=hround(w-.25u); fi +pos0'(hround(stem-3stem_corr),180); +rt x0'l=hround(side_gap-.5stem')+stem'; top y0'=bar_height+1.8u; +filldraw stroke z0'e{up}...{right}z4e; % arc +pickup tiny.nib; pos1(stem',0); pos2(stem',0); +x1=x2=x0'; top y1=h; bot y2=0; +filldraw stroke z1e--z2e; % stem +if serifs: sloped_serif.l(1,2,a,1/3,jut,serif_drop); % upper serif + dish_serif(2,1,b,1/3,jut,c,1/3,1.25jut); fi % lower serif +penlabels(1,2,0',4,5,6); endchar; + +ipacode:=79; + +cmchar "A variety of thorn (1)"; +beginchar(incr ipacode,10u#+serif_fit#,asc_height#,desc_depth#); +italcorr .5x_height#*slant+min(.5curve#-.85u#,-.1u#); +adjust_fit(serif_fit#,0); +pickup tiny.nib; pos1(stem',0); pos2(stem,0); +pos0'(stem',0); pos0(stem,0); z0l=z0'l; x0'=x1; x0=x2; +lft x1l=hround(side_gap-.5stem'); top y1=h; +numeric edge; edge=rt x2r; +pickup fine.nib; pos3(if hefty:thin_join else: hair fi,180); +pos4(vair',90); pos5(curve,0); pos6(vair,-90); +rt x3l=1/3[rt x2,edge]; y3=1/8[bar_height,x_height]; +x4l=w-.5(w-serif_fit)+.5u; top y4r=x_height+oo; +rt x5r=hround min(w-1.35u+.5curve,w-.6u); y5=.5x_height; +x6=x3; bot y6r=-oo; +(x,y4r)=whatever[z3l,z4l]; x4r:=min(x,.5[x5r,x4]); +filldraw stroke z3e{up}...{right}z4e&super_arc.e(4,5) + &z5e{down}...{5(x6-x5),y6-y5}z6e; % bowl +y0=ypart(((edge,h)--(edge,0))intersectionpoint(z3l{up}...{right}z4l)); +pickup tiny.nib; bot y2=-d; +filldraw stroke z1e--z0'e--z0e--z2e; % stem +pickup crisp.nib; pos8(hair,0); pos7'(stem,0); +z7'=z2; x8l=x7'l; bot y8=0; +filldraw stroke z7'e--z8e; % point +penlabels(0,1,2,3,4,5,6,8); endchar; + +cmchar "A variety of thorn (2)"; +beginchar(incr ipacode,10u#+serif_fit#,asc_height#,desc_depth#); +italcorr .5x_height#*slant+min(.5curve#-.85u#,-.1u#); +adjust_fit(serif_fit#,0); +pickup tiny.nib; pos1(stem',0); pos2(stem,0); +pos0'(stem',0); pos0(stem,0); z0l=z0'l; x0'=x1; x0=x2; +lft x1l=hround(side_gap-.5stem'); top y1=h; +numeric edge; edge=rt x2r; +pickup fine.nib; pos3(if hefty:thin_join else: hair fi,180); +pos4(vair',90); pos5(curve,0); pos6(vair,-90); +rt x3l=1/3[rt x2,edge]; y3=1/8[bar_height,x_height]; +x4l=w-.5(w-serif_fit)+.5u; top y4r=x_height+oo; +rt x5r=hround min(w-1.35u+.5curve,w-.6u); y5=.5x_height; +x6=x3; bot y6r=-oo; +(x,y4r)=whatever[z3l,z4l]; x4r:=min(x,.5[x5r,x4]); +filldraw stroke z3e{up}...{right}z4e&super_arc.e(4,5) + &z5e{down}...{5(x6-x5),y6-y5}z6e; % bowl +y0=ypart(((edge,h)--(edge,0))intersectionpoint(z3l{up}...{right}z4l)); +pickup tiny.nib; bot y2=if serifs: -.7d; else: -d; fi +filldraw stroke z1e--z0'e--z0e--z2e; % stem +pickup crisp.nib; pos8(hair,0); pos7'(stem,0); +z7'=z2; x8l=x7'l; bot y8=0; +filldraw stroke z7'e--z8e; % point +if serifs: sloped_serif.l(1,0',a,1/3,jut,serif_drop); % upper serif + pickup tiny.nib; pos10(stem,0); pos11(vair,-90); + z10=z2; lft x11l=.5u; y11l=-d-oo; + varm(10,11,b,.8beak_darkness,-1.5beak_jut); fi +penlabels(0,1,2,3,4,5,6,8,10,11); endchar; + +cmchar "A variety of thorn (3)"; +beginchar(incr ipacode,10u#+serif_fit#,asc_height#,desc_depth#); +italcorr .5x_height#*slant+min(.5curve#-.85u#,-.1u#); +adjust_fit(serif_fit#,0); +pickup tiny.nib; pos1(stem',0); pos2(stem,0); +pos0'(stem',0); pos0(stem,0); z0l=z0'l; x0'=x1; x0=x2; +lft x1l=hround(side_gap-.5stem'); top y1=h; +numeric edge; edge=rt x2r; +pickup fine.nib; pos3(if hefty:thin_join else: hair fi,180); +pos4(vair',90); pos5(curve,0); pos6(vair,-90); +rt x3l=1/3[rt x2,edge]; y3=1/8[bar_height,x_height]; +x4l=w-.5(w-serif_fit)+.5u; top y4r=x_height+oo; +rt x5r=hround min(w-1.35u+.5curve,w-.6u); y5=.5x_height; +x6=x3; bot y6r=-oo; +(x,y4r)=whatever[z3l,z4l]; x4r:=min(x,.5[x5r,x4]); +filldraw stroke z3e{up}...{right}z4e&super_arc.e(4,5) + &z5e{down}...{5(x6-x5),y6-y5}z6e; % bowl +y0=ypart(((edge,h)--(edge,0))intersectionpoint(z3l{up}...{right}z4l)); +pickup tiny.nib; bot y2=-d; +filldraw stroke z1e--z0'e--z0e--z2e; % stem +pickup crisp.nib; pos8(hair,0); pos7'(stem,0); +z7'=z2; x8l=x7'l; bot y8=0; +filldraw stroke z7'e--z8e; % point +if serifs: dish_serif(1,2,a,1/3,jut,d,1/3,jut); % upper serif + dish_serif(2,0,b,1/3,jut,c,1/3,jut); fi % lower serif +penlabels(0,1,2,3,4,5,6,8); endchar; + +cmchar "A variety of thorn (4)"; +beginchar(incr ipacode,10u#+serif_fit#,asc_height#,desc_depth#); +italcorr .5x_height#*slant+min(.5curve#-.85u#,-.1u#); +adjust_fit(serif_fit#,0); +pickup tiny.nib; pos1(stem',0); pos2(stem,0); +pos0'(stem',0); pos0(stem,0); z0l=z0'l; x0'=x1; x0=x2; +lft x1l=hround(side_gap-.5stem'); top y1=h; +numeric edge; edge=rt x2r; +pickup fine.nib; pos3(if hefty:thin_join else: hair fi,180); +pos4(vair',90); pos5(curve,0); pos6(vair,-90); +rt x3l=1/3[rt x2,edge]; y3=1/8[bar_height,x_height]; +x4l=w-.5(w-serif_fit)+.5u; top y4r=x_height+oo; +rt x5r=hround min(w-1.35u+.5curve,w-.6u); y5=.5x_height; +x6=x3; bot y6r=-oo; +(x,y4r)=whatever[z3l,z4l]; x4r:=min(x,.5[x5r,x4]); +filldraw stroke z3e{up}...{right}z4e&super_arc.e(4,5) + &z5e{down}...{5(x6-x5),y6-y5}z6e; % bowl +y0=ypart(((edge,h)--(edge,0))intersectionpoint(z3l{up}...{right}z4l)); +pickup tiny.nib; bot y2=0; +filldraw stroke z1e--z0'e--z0e--z2e; % stem +pickup crisp.nib; pos8(hair,0); pos7'(stem,0); +z7'=z2; x8l=x7'l; bot y8=0; +filldraw stroke z7'e--z8e; % point +if serifs: sloped_serif.l(1,0',a,1/3,jut,serif_drop); fi % upper serif +left_tail(2,9,10,11,stem,hround(-.75u)); +penlabels(0,1,2,3,4,5,6,8,9,10,11); endchar; + +cmchar "A variety of glottal stop (1)"; +beginchar(incr ipacode,CT(9u#,10u#),asc_height#,0); +italcorr .8asc_height#*slant; +adjust_fit(0,0); +pickup tiny.nib; pos7(dot_size,0); pos8(dot_size,90); +lft x7l=hround(.5w-.25u-.5dot_size); bot y8l=0; z7=z8; +numeric bot_width; +bot_width=if hefty:max(hround .8dot_size,fine.breadth) else: hair fi; +pickup fine.nib; pos2(vair,90); pos3(curve,0); +pos4(vair,-90); pos5(bot_width,0); pos6(bot_width,0); +x2=x4=x5=x6=x7; rt x3r=hround(w-u); bot y6=0; +top y2r=h+oo; y3=.75[y6,y2]; y4=.5[y6,y2]; y5=.1[y6,y2]; +{{interim superness:=more_super; +filldraw stroke pulled_super_arc.e(2,3)(superpull) + & subpath (0,1) of super_arc.e(3,4) .. z5e---z6e\\}}; % arc and stem +if serifs: pos1(hair,180); pos0(flare,180); + lft x1r=hround u; y1=y3; bulb(2,1,0); % bulb +else: pos1(Vround 5/7[vair,flare],110); + lft x1r=hround u; top y1r=vround .9[y6,top y2r]; + filldraw stroke term.e(2,1,left,1,4); fi % terminal +penlabels(0,1,2,3,4,5,6,7,8); endchar; + +cmchar "A variety of glottal stop (2)"; +beginchar(incr ipacode,CT(9u#,10u#),asc_height#,0); +italcorr .8asc_height#*slant-.5u#; +adjust_fit(0,0); +pickup tiny.nib; pos7(stem,0); bot y7=0; x7=.47w; +pos2(vair,90); pos3(curve,0); +pos4(vair,-90); pos5(stem,0); pos6(stem,0); +x2=x5=x6=x7; x4=x5l; +rt x3r=hround(w-u); y6=.67[y3,y7]; +top y2r=h+oo; y3=.5[y2,y4]; y4r=.5y2; y5=y4l; +{{interim superness:=more_super; + filldraw stroke pulled_super_arc.e(2,3)(superpull) + & z3e{down}..{down}z6e--z7e\\}}; % arc and stem +if serifs: pos1(hair,180); pos0(flare,180); + lft x1r=hround u; y1=.3[y3,y2]; bulb(2,1,0); % bulb + dish_serif(7,5,e,1/3,jut,f,1/3,jut); %serif +else: pickup fine.nib; pos2'(vair,90); z2'=z2; + pos1(vround 5/7[vair,flare],110); + lft x1r=hround u; top y1r=vround .9[y6,top y2r]; + filldraw stroke term.e(2',1,left,1,4); fi % terminal +penlabels(0,1,2,3,4,5,6,7); endchar; + +cmchar "A variety of glottal stop (3)"; +beginchar(incr ipacode,CT(8u#,8.88u#),asc_height#,0); +italcorr .8asc_height#*slant-.5u#; +adjust_fit(0,0); +pickup tiny.nib; +numeric bot_width; +bot_width=if hefty:max(hround .8dot_size,fine.breadth) else: hair fi; +pos7(bot_width,0); bot y7=0; x7=.4w; +pos2(vair,90); pos3(curve,-60); +pos4(min(curve,3vair),-90); pos5(bot_width,0); pos6(bot_width,0); +x2=x5=x6=x7; x4=x5l; +rt x3r=hround(w-u); bot y6=.3x_height; +top y2r=h+oo; y3=.6[y2,y4]; y4r=.4y2; y5=y4r; +{{interim superness:=more_super; + filldraw stroke pulled_super_arc.e(2,3)(superpull) + ..z3e{down}..z4e; + filldraw stroke z5e--z7e\\}}; % arc and stem +if serifs: pos1(hair,180); pos0(flare,180); + lft x1r=hround 2u; y1=.8[y3,y2]; bulb(2,1,0); % bulb +% dish_serif(7,5,e,1/3,jut,f,1/3,jut); %serif +else: pickup fine.nib; pos2'(vair,90); z2'=z2; + pos1(vround 5/7[vair,flare],110); + lft x1r=hround 1.5u; top y1r=vround .9[y6,top y2r]; + filldraw stroke term.e(2',1,left,1,4); fi % terminal +penlabels(0,1,2,3,4,5,6,7); endchar; + +%%%%%%%% Smallcaps + +ipacode:=oct"157"; + +smallcap_setup; + +def sc_hair = hair enddef; +def sc_stem = stem enddef; +def sc_curve = curve enddef; +def sc_jut = cap_jut enddef; +def sc_bar = cap_bar enddef; +def sc_band = cap_band enddef; + +% romanu.mf -> tipasc.mf conversion: +% +% x_height -> .626x_height +% bar_height -> .632bar_height +% cap_height -> x_height +% comma_depth -> 44/70comma_depth +% cap_hair -> sc_hair +% cap_stem -> sc_stem +% cap_curve -> sc_curve +% cap_ess -> sc_ess +% cap_jut -> sc_jut +% cap_bar -> sc_bar +% cap_band -> sc_band + +cmchar "Inverted small capital A"; +beginchar(incr ipacode,13u#,x_height#,0); +italcorr x_height#*slant-.5u#; +adjust_fit(cap_serif_fit#,cap_serif_fit#); +numeric left_stem,right_stem,outer_jut,alpha; +right_stem=sc_stem-stem_corr; +left_stem=min(sc_hair if hefty: -3stem_corr fi,right_stem); +outer_jut=.8sc_jut; x1l=w-x4r=l+letter_fit+outer_jut+.5u; y1=y4=h; +x2-x1=x4-x3; x3r=x2r+apex_corr; y2=y3=-apex_o-apex_oo; +alpha=diag_ratio(2,left_stem,y2-y1,x4r-x1l-apex_corr); +penpos1(alpha*left_stem,0); penpos2(alpha*left_stem,0); +penpos3(alpha*right_stem,0); penpos4(alpha*right_stem,0); +z0=whatever[z1r,z2r]=whatever[z3l,z4l]; +if y0>cap_notch_cut: y0:=cap_notch_cut; + fill z0+.5right{up}...{z4-z3}diag_end(3l,4l,1,1,4r,3r) + --diag_end(4r,3r,1,1,2l,1l)--diag_end(2l,1l,1,1,1r,2r){z2-z1} + ...{down}z0+.5left--cycle; % left and right diagonals +else: fill z0--diag_end(0,4l,1,1,4r,3r)--diag_end(4r,3r,1,1,2l,1l) + --diag_end(2l,1l,1,1,1r,0)--cycle; fi % left and right diagonals +penpos5(whatever,angle(z2-z1)); z5=whatever[z1,z2]; +penpos6(whatever,angle(z3-z4)); z6=whatever[z3,z4]; y6=y5; +if hefty: y5l else: y5 fi =h-5/12(h-y0); +y5r-y5l=y6r-y6l=sc_band; penstroke z5e--z6e; % bar line +if serifs: numeric inner_jut; pickup tiny.nib; + prime_points_inside(1,2); prime_points_inside(4,3); + if rt x1'r+sc_jut+.5u+1<=lft x4'l-sc_jut: inner_jut=sc_jut; + else: rt x1'r+inner_jut+.5u+1=lft x4'l-inner_jut; fi + dish_serif(1',2,a,1/2,outer_jut,b,.6,inner_jut)(dark); % left serif + dish_serif(4',3,c,1/2,inner_jut,d,1/3,outer_jut); fi % right serif +penlabels(0,1,2,3,4,5,6); endchar; + +cmchar "Small capital A-O Ligature"; +beginchar(incr ipacode,18u#,x_height#,0); +italcorr .7x_height#*slant-.5u#; +adjust_fit(cap_serif_fit#,0); +numeric left_stem,mid_stem,outer_jut,alpha; +mid_stem=max(tiny.breadth,hround .9[mfudged.hair,mfudged.sc_stem]); +pickup tiny.nib; pos1(mid_stem,0); pos2(mid_stem,0); +lft x1l=lft x2l=hround(if monospace or hefty:.55 else:.5 fi\\w-.75u); +top y1=h; bot y2=0; +filldraw stroke z1e--z2e; % stem +pickup crisp.nib; pos3(slab,90); pos4(mfudged.hair,0); +top y3r=h; x3=x1; pos5(sc_bar,-90); x5=x1; +top y5l=vround(if hefty:.52 else:.48 fi\\[y2,y1]+.5sc_bar); +pos0(sc_bar,90); z0=z5; +pos8(slab if not serifs:+2stem_corr fi,-90); +bot y8r=0; x8=x2; +left_stem=if monospace:fudged.hair else: sc_hair fi if hefty: -3stem_corr fi; +outer_jut=.8sc_jut; x11l=l+letter_fit+outer_jut+.5u; y11=0; +x12=x1l-apex_corr-if monospace:2 fi\\u; y12=h; +alpha=diag_ratio(1,.5left_stem,y12-y11,x12-x11l); +penpos11(alpha*left_stem,0); penpos12(alpha*left_stem,0); +fill diag_end(12l,11l,1,1,11r,12r) + --diag_end(11r,12r,1,1,12l,11l)--cycle; % diagonal +y10=h-slab; z10=whatever[z11,z12]; +fill z10--(x1,y10)--(x1,h)--z12--cycle; % link +penpos13(whatever,angle(z2-z1)); z13=whatever[z11,z12]; +penpos14(sc_band,90); x14=x0; y13l=y14l; y13r=y14r; +if hefty: y14r=.4h; else: y14=y0; fi +penstroke z13e--z14e; % bar line +penpos21(vair,90); penpos23(vair,-90); +if monospace: penpos22(fudged.sc_stem,0); + interim superness:=sqrt superness; % make |"O"|, not |"0"| +else: penpos22(hround(sc_curve-stem_corr),0); fi +x21=x23=rt x1r+2u; y21r=h+o; y23r=-o; y22=.5h-vair_corr; x22r=hround(w-u); +rt x24=rt x25=tiny.rt x1r; y24=2/3h; y25=1/3h; y22l:=.52h; +penstroke super_arc.e(21,22) & super_arc.e(22,23); % left half of bowl +fill z23r{left}..{left}(x2,0)--(x1,h){right}..{right}z21r + --z21l{left}...{z24-z21l}(.82[x21l,x24],.82[y24,y21l]) + ...z24---z25...{z23l-z25}(.82[x23l,x25],.82[y25,y23l]) + ...{right}z23l--cycle; % right half of bowl +if serifs: numeric inner_jut; pickup tiny.nib; + prime_points_inside(11,12); + if rt x11'r+sc_jut+.5u+1<=lft x2l-.75sc_jut: inner_jut=sc_jut; + else: rt x11'r+inner_jut+.5u+1=lft x2l-.75inner_jut; fi + dish_serif(11',12,i,1/2,outer_jut,j,.6,inner_jut)(dark); % lower left serif + serif(1,2,a,1/3,-(sc_jut+x1l-x12)); % upper serif + serif(2,1,c,1/3,-.75inner_jut); fi % lower middle serif +penlabels(0,1,2,3,5,8,10,11,12,13,14,21,22,23,24,25); endchar; + +cmchar "Small capital Greek delta"; +beginchar(incr ipacode,15u#,x_height#,0); +adjust_fit(0,0); +numeric left_stem,alpha; +left_stem=sc_hair if hefty: -3stem_corr fi; +x1l=w-x4r=.75u; y1=y4=0; +x2-x1=x4-x3; x3r=x2r+apex_corr; y2=y3=h+apex_o+apex_oo; +alpha=diag_ratio(2,left_stem,y2-y1,x4r-x1l-apex_corr); +penpos1(alpha*left_stem,0); penpos2(alpha*left_stem,0); +penpos3(alpha*sc_stem,0); penpos4(alpha*sc_stem,0); +fill diag_end(2l,1l,1,1,4r,3r)--diag_end(4r,3r,1,1,2l,1l)--cycle; % triangle +z0=whatever[z1r,z2r]=whatever[z3l,z4l]; +y5=y6=cap_vstem; z5=whatever[z1r,z2r]; z6=whatever[z3l,z4l]; +if y0<h-cap_notch_cut: y0:=h-cap_notch_cut; + unfill z0+.5right{down}...{z4-z3}z6--z5{z2-z1} + ...{up}z0+.5left--cycle; % counter +else: unfill z0--z5--z6--cycle; fi % counter +penlabels(0,1,2,3,4,5,6); endchar; + +cmchar "Small capital F"; +beginchar(incr ipacode,11.5u#-width_adj#,x_height#,0); +italcorr x_height#*slant-beak_jut#-.25u#; +adjust_fit(cap_serif_fit#,0); +h:=vround(h-stem_corr); +pickup tiny.nib; pos1(sc_stem,0); pos2(sc_stem,0); +lft x1l=lft x2l=hround max(2u,3u-.5sc_stem); top y1=h; bot y2=0; +filldraw stroke z1e--z2e; % stem +pickup crisp.nib; pos3(slab,90); pos4(hair,0); +top y3r=h; x3=x1; rt x4r=hround(w-.75u); y4=good.y(y3l-beak)-eps; +arm(3,4,e,beak_darkness,beak_jut); % upper arm and beak +pos5(sc_bar,-90); pos6(hair,0); +top y5l=vround(.5[y2,y1]+.5sc_bar); x5=x1; +pos0(sc_bar,90); pos7(hair,0); +z0=z5; x6=x7; y6-y5l=y0l-y7; +if serifs: rt x6r=hround(w-4u+.5hair); y6=good.y(y5l+.6beak)+eps; + rt x9r=hround(w-.5u); +else: rt x6r=hround(w-1.5u); y6=y5l+eps; rt x9r=hround(w-.75u); fi +arm(5,6,f,beak_darkness,0); arm(0,7,g,beak_darkness,0); % middle arm and serif +if serifs: nodish_serif(1,2,a,1/3,sc_jut,b,1/3,.5sc_jut); % upper serif + dish_serif(2,1,c,1/3,sc_jut,d,1/3,1.25sc_jut); fi % lower serif +math_fit(0,ic#-2.5u#); penlabels(0,1,2,3,4,5,6,7,8,9); endchar; + +cmchar "Small capital K"; +beginchar(incr ipacode,13.5u#,x_height#,0); +italcorr x_height#*slant-.5u#; +adjust_fit(cap_serif_fit#,cap_serif_fit#); +numeric right_jut,stem[],alpha[]; +if serifs: right_jut=.6sc_jut; +else: right_jut=.4tiny; fi +pickup tiny.nib; pos1(fudged.sc_stem,0); pos2(fudged.sc_stem,0); +lft x1l=lft x2l=hround max(2u,3u-.5fudged.sc_stem); top y1=h; bot y2=0; +filldraw stroke z1e--z2e; % stem +stem2=max(tiny.breadth,fudged.sc_stem-3stem_corr); +stem1=max(tiny.breadth,fudged.hair if hefty:-3stem_corr fi); +top y3=h; rt x3r=hround(r-letter_fit-u-right_jut); +bot y6=0; rt x6r=hround(r-letter_fit-.75u-right_jut); +x4=x1; y4=1/3h; +alpha1=diag_ratio(1,.5(stem1-tiny),y3-y4,x3r-x4); +penpos3(alpha1*(stem1-tiny),0); penpos4(whatever,-90); +alpha2=diag_ratio(1,.5(stem2-tiny),y1-y6,x6r-x1); +penpos6(alpha2*(stem2-tiny),0); +forsuffixes $=l,r: y3'$=h; y6'$=0; z4$=z3'$+whatever*(z3-z4); + z5$=z6'$+whatever*(z1-z6)=whatever[z3,z4]; endfor +z5=.5[z5l,z5r]; +z3'r=z3r+penoffset z3-z4 of currentpen+whatever*(z3-z4); +% we have also z3'l=z3l+penoffset z4-z3 of currentpen+whatever*(z3-z4); +z6'r=z6r+penoffset z1-z6 of currentpen+whatever*(z1-z6); +z6'l=z6l+penoffset z6-z1 of currentpen+whatever*(z1-z6); +fill z4r--diag_end(4r,3'r,1,.5,3'l,4l)--z4l--cycle; % upper diagonal +fill z5l--diag_end(5l,6'l,.5,1,6'r,5r)--z5r--cycle; % lower diagonal +if serifs: numeric inner_jut; + if rt x2r+sc_jut+.5u+1<=lft x6l-sc_jut: inner_jut=sc_jut; + else: rt x2r+sc_jut+.5u+1=lft x6l-inner_jut; fi + dish_serif(1,2,a,1/3,sc_jut,b,1/3,sc_jut); % upper stem serif + dish_serif(2,1,c,1/3,sc_jut,d,1/3,sc_jut); % lower stem serif + dish_serif(3,4,e,2/3,1.2sc_jut,f,1/2,right_jut)(dark); % upper diagonal serif + dish_serif(6,5,g,1/2,inner_jut,h,1/3,right_jut)(dark);fi% lower diagonal serif +math_fit(0,.5ic#); penlabels(1,2,3,4,5,6); endchar; + +cmchar "Turned small capital K"; +beginchar(incr ipacode,13.5u#,x_height#,0); +italcorr x_height#*slant-.5u#; +adjust_fit(cap_serif_fit#,cap_serif_fit#); +numeric right_jut,stem[],alpha[]; +if serifs: right_jut=.6sc_jut; +else: right_jut=.4tiny; fi +pickup tiny.nib; pos1(fudged.sc_stem,0); pos2(fudged.sc_stem,0); +rt x1r=rt x2r=hround max(w-2u,w-(3u-.5fudged.sc_stem)); bot y1=0; top y2=h; +filldraw stroke z1e--z2e; % stem +stem2=max(tiny.breadth,fudged.sc_stem-3stem_corr); +stem1=max(tiny.breadth,fudged.hair if hefty:-3stem_corr fi); +bot y3=0; lft x3l=hround(l+letter_fit+u+right_jut); +top y6=h; lft x6l=hround(l+letter_fit+.75u+right_jut); +x4=x1; y4=2/3h; +alpha1=diag_ratio(1,.5(stem1-tiny),y4-y3,x4-x3l); +penpos3(alpha1*(stem1-tiny),0); penpos4(whatever,-90); +alpha2=diag_ratio(1,.5(stem2-tiny),y6-y1,x1-x6l); +penpos6(alpha2*(stem2-tiny),0); +forsuffixes $=l,r: y3'$=0; y6'$=h; z4$=z3'$+whatever*(z3-z4); + z5$=z6'$+whatever*(z1-z6)=whatever[z3,z4]; endfor +z5=.5[z5r,z5l]; +z3'l=z3l+penoffset z3-z4 of currentpen+whatever*(z3-z4); +% we have also z3'l=z3l+penoffset z4-z3 of currentpen+whatever*(z3-z4); +z6'l=z6l+penoffset z1-z6 of currentpen+whatever*(z1-z6); +z6'r=z6r+penoffset z6-z1 of currentpen+whatever*(z1-z6); +fill z4l--diag_end(4l,3'l,1,.5,3'r,4r)--z4r--cycle; % upper diagonal +fill z5r--diag_end(5r,6'r,.5,1,6'l,5l)--z5l--cycle; % lower diagonal +if serifs: numeric inner_jut; + if lft x2l-sc_jut-.5u+1>=rt x6r+sc_jut: inner_jut=sc_jut; + else: lft x2l-sc_jut-.5u-1=rt x6r+inner_jut; fi + dish_serif(1,2,a,1/3,sc_jut,b,1/3,sc_jut); % upper stem serif + dish_serif(2,1,c,1/3,sc_jut,d,1/3,sc_jut); % lower stem serif + dish_serif(3,4,e,1/2,right_jut,f,2/3,1.2sc_jut)(dark); % upper diagonal serif + dish_serif(6,5,g,1/3,right_jut,h,1/2,inner_jut)(dark);fi% lower diagonal serif +math_fit(0,.5ic#); penlabels(1,2,3,3',4,5,6,6'); endchar; + +cmchar "Reversed small capital L"; +beginchar(incr ipacode,11u#-width_adj#,x_height#,0); +adjust_fit(0, cap_serif_fit#); +italcorr x_height#*slant-1u#; +pickup tiny.nib; pos1(sc_stem,0); pos2(sc_stem,0); +rt x1r=rt x2r=hround min(w-2u,w-(3u-.5sc_stem)); top y1=h; bot y2=0; +filldraw stroke z1e--z2e; % stem +pickup crisp.nib; pos3(slab,-90); pos4(hair,180); +bot y3r=0; x3=x2; y4=y3l+beak+eps; lft x4r=hround .75u; +arm(3,4,e,1.2beak_darkness,-beak_jut); % lower arm and beak +if serifs: dish_serif(1,2,b,1/3,1.25sc_jut,a,1/3,sc_jut); % upper serif + nodish_serif(2,1,d,1/3,.5sc_jut,c,1/3,sc_jut); fi % lower serif +math_fit(0,u#); penlabels(1,2,3,4); endchar; + +cmchar "Small capital M"; +beginchar(incr ipacode,16u#+width_adj#,x_height#,0); +italcorr x_height#*slant-cap_serif_fit#+sc_jut#-2.5u#+min(.5sc_stem#,u#); +adjust_fit(cap_serif_fit#,cap_serif_fit#); +numeric stem[]; % thicknesses of the four strokes +stem1=hround(fudged.hair+stem_corr); +stem2=hround(fudged.sc_stem-4stem_corr); +stem3=hround(fudged.hair-stem_corr); +stem4=hround(fudged.sc_stem-3stem_corr); +if stem4<stem1: stem4:=stem1; fi +pickup tiny.nib; pos1(stem1,0); pos2(stem1,0); +pos3(stem4,0); pos4(stem4,0); +x1=x2; x3=x4; x1l=w-x3r; rt x3r=hround min(w-2u,w-3u+.5stem4); +top y1=top y3=h; bot y2=bot y4=0; +filldraw stroke z1e--z2e; % left stem +filldraw stroke z3e--z4e; % right stem +penpos5(stem2,0); penpos6(stem2,0); penpos7(stem3,0); penpos8(stem3,0); +x5l=x1; x6l=x7l; x8=lft x3l; x6-x5=x8-x7; y5=y8=h; y6=y7; +if hefty: y6=if monospace: vround 1/3h else: o fi; + numeric upper_notch,lower_notch; + upper_notch=h-cap_notch_cut; lower_notch=y6+cap_notch_cut; + x1'=rt x1r; z1'=whatever[z5l,z6l]; x3'=lft x3l; z3'=whatever[z7r,z8r]; + z0=whatever[z5r,z6r]=whatever[z7l,z8l]; + fill z5l.. + if y1'<upper_notch: {right}(x1'+1,upper_notch){down}... fi + {z6-z5}diag_in(5l,6l,1,6r)..diag_out(7l,1,7r,8r){z8-z7} + if y3'<upper_notch: ...{up}(x3'-1,upper_notch){right} fi + ..z8r--diag_out(8r,1,8l,7l){z7-z8} + if y0<=lower_notch: ..{z7-z8}z0{z5-z6}.. + else: ...{down}(x0+.5,lower_notch)--(x0-.5,lower_notch){up}... fi + {z5-z6}diag_in(6r,5r,1,5l)--cycle; % diagonals +else: y6=0; z0=whatever[z5r,z6r]=whatever[z7l,z8l]; + fill z5l..{z6-z5}diag_in(5l,6l,1,6r)..diag_out(7l,1,7r,8r){z8-z7} + ..z8r--diag_out(8r,1,8l,7l){z7-z8}..{z7-z8}z0{z5-z6} + ..{z5-z6}diag_in(6r,5r,1,5l)--cycle; fi % diagonals +if serifs: serif(1,2,a,1/3,-sc_jut); % upper left serif + dish_serif(2,1,b,1/2,sc_jut,c,1/2,sc_jut)(dark); % lower left serif + serif(3,4,d,1/3,sc_jut); % upper right serif + dish_serif(4,3,e,1/3,sc_jut,f,1/3,sc_jut); fi % lower right serif +math_fit(0,max(.5ic#-.5u#,0)); +penlabels(0,1,1',2,3,3',4,5,6,7,8); endchar; + +cmchar "Small capital P"; +beginchar(incr ipacode,12u#,x_height#,0); +italcorr .75x_height#*slant-.5u#; +adjust_fit(cap_serif_fit#,0); +pickup tiny.nib; penpos1(sc_stem'-tiny,0); penpos2(sc_stem-tiny,0); +pos0(sc_stem',0); pos0'(sc_stem,0); +lft x1l=hround max(2u,3u-.5sc_stem'); top y1=h; bot y2=0; +x1l=x2l=x0l=x0'l; y0=y0'=y7; +penpos3(sc_band,90); penpos4(sc_band,90); +penpos5(sc_curve if hefty:-3stem_corr fi,0); +penpos6(.5[vair,sc_band],-90); penpos7(.5[vair,sc_band],-90); +z3r=top z1; y4=y3; y5=.5[y4l,y6l]; y6=y7; +x7=x2; y7l=vround .5h; x4=x6=.5w+.75u; x5r=hround(w-u); +x4l:=x6l:=x4-.25sc_curve; +filldraw stroke z1e--z0e--z0'e--z2e; % stem +fill stroke z3e..pulled_arc.e(4,5) & pulled_arc.e(5,6)..z7e; % lobe +if serifs: nodish_serif(1,0,a,1/3,sc_jut,b,1/3,.5sc_jut); % upper serif + dish_serif(2,0',c,1/3,sc_jut,d,1/3,sc_jut); fi % lower serif +math_fit(0,ic#-2.5u#); penlabels(0,1,2,3,4,5,6,7); endchar; + +cmchar "Small capital Q"; +beginchar(incr ipacode,14u#-width_adj#,x_height#,44/70comma_depth#); +italcorr .7x_height#*slant-.5u#; +adjust_fit(0,0); +numeric light_curve; light_curve=sc_curve-hround stem_corr; +penpos1(vair',90); penpos3(vair',-90); +penpos2(light_curve,180); penpos4(light_curve,0); +if monospace: x2r=hround 1.5u; + interim superness:=sqrt superness; % make |"Q"| like |"O"| +else: x2r=hround u; fi +x4r=w-x2r; x1=x3=.5w; y1r=h+o; y2=y4=.5h-vair_corr; y3r=-o; +penstroke pulled_super_arc.e(1,2)(.5superpull) + & pulled_super_arc.e(2,3)(.5superpull) + & pulled_super_arc.e(3,4)(.5superpull) + & pulled_super_arc.e(4,1)(.5superpull) & cycle; % bowl +pickup tiny.nib; +if hefty: penpos5(1.2(.5[sc_bar,light_curve]),0); penpos6(1.2light_curve,0); + x5=.5w; x6r=hround(w-1.5u); + y5=vround .28h; y6=-d; + fill diag_end(6r,5r,.25,1,5l,6l)--diag_end(5l,6l,.5,1,6r,5r)--cycle; % tail +else: pos3'(vair,270); pos5(vair,180); pos6(vair,90); + pos7(sc_curve,85); penpos8(eps,180); + z3'=z3; x6=x3; top y6r=vround(.2h+.5vair); + lft x5r=hround(.5w-1.25u-.5vair); y5=.5[y3,y6]; + bot y7l=-d; x7l=2/3[x6,x8]; y8=0; rt x8=hround(x4r+.1u); + filldraw stroke z3'e{left}...z5e{up}...z6e{right} + ..z7e{right}...z8e{up}; fi % tail +math_fit(-.3x_height#*slant-.5u#,ic#); penlabels(1,2,3,4,5,6,7); endchar; + +cmchar "Reversed small capital R"; +beginchar(incr ipacode,if serifs: 12u#+.5max(2u#,sc_curve#) + else:12.5u#-.5width_adj# fi,x_height#,0); +italcorr x_height#*slant-1u#; +adjust_fit(0, cap_serif_fit#); +pickup tiny.nib; pos1(sc_stem',0); pos2(sc_stem',0); +rt x1r=rt x2r=hround min(w-2u,w-(3u-.5sc_stem')); top y1=h; bot y2=0; +filldraw stroke z1e--z2e; % stem +penpos3(sc_band,90); penpos4(sc_band,90); +penpos5(sc_curve if hefty:-3stem_corr fi,180); +penpos6(vair,-90); penpos7(vair,-90); +z3r=top z1; y4=y3; y5=.5[y4l,y6l]; y6=y7; +x7=x2; y7l=vround(.5h+.5vair); x4=x6; +if serifs: x4=.5w+.5u; x5r=hround 2.25u; +else: x4=.5w-.5u; x5r=hround u; fi +x4l:=x6l:=x4+.125sc_curve; +fill stroke z3e..pulled_arc.e(4,5) & pulled_arc.e(5,6)..z7e; % lobe +if serifs: pos6'(vair,-90); pos0(sc_stem,0); + pos8(sc_curve,0); pos9(vair,-90); pos10(hair,180); + z6'=z6; rt x0r=rt x8r=hround(x5+2/3u+.5sc_curve); + y8=1/3[y2,y7]; y0=3/5[y2,y7]; x9=.5[x8l,x10r]; + bot y9r=-o; lft x10r=hround .05u; y10=1/4[y2,y7]; + filldraw stroke z6'e{left}..z0e---z8e....z9e{left}..z10e{up}; % tail + nodish_serif(1,2,a,1/3,.5sc_jut,b,1/3,sc_jut); % upper serif + dish_serif(2,1,c,1/3,sc_jut,d,1/3,sc_jut); % lower serif +else: penpos8(sc_stem-2stem_corr,180); penpos9(sc_stem,180); + x8=x6-.5u; y8=y6; x9r=hround .5u; y9=0; + fill z8l--diag_end(8l,9l,.5,1,9r,8r)--z8r--cycle; fi % tail +math_fit(0,.75ic#); penlabels(0,1,2,3,4,5,6,7,8,9,10); endchar; + +cmchar "Turned small capital U"; +beginchar(incr ipacode,13u#+.5width_adj#,x_height#,0); +italcorr .75x_height#*slant-cap_serif_fit#+sc_jut#-2.5u#+min(.5sc_stem#,u#); +if monospace: adjust_fit(cap_serif_fit#-.5u#,cap_serif_fit#-.5u#) +else: adjust_fit(cap_serif_fit#,cap_serif_fit#) fi; +pickup tiny.nib; pos1(sc_stem,0); pos2(sc_stem,0); +pos2'(sc_stem,0); z2'=z2; +pos3(sc_band,90); pos4(sc_hair,180); pos5(sc_hair,180); +x1=x2; x3=.5[x1,x5]; x4=x5; x5r=w-x1r; +bot y1=bot y5=0; y2=y4=2/3h; top y3r=h+o; +rt x1r=hround min(w-2u,w-(3u-.5sc_stem)); +filldraw stroke z1e--z2e; % left stem +filldraw stroke pulled_arc.e(2',3) + & pulled_arc.e(3,4)&z4e--z5e; % arc and right stem +if serifs: dish_serif(1,2,a,1/3,sc_jut,b,1/3,sc_jut); % left serif + dish_serif(5,4,c,1/2,sc_jut,d,1/2,sc_jut)(dark); fi % right serif +math_fit(-cap_serif_fit#-.3x_height#*slant-min(x_height#*slant,u#), + max(.5ic#-.5u#,0)); penlabels(1,2,3,4,5); endchar; + +restore_normal_setup; + +%%% back to normal. + +endinput + +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% + +% This accent is now realized as macro. +cmchar "Macron Acute accent"; +numeric macron_breadth#; macron_breadth#=.2[vair#,stem#]; +beginchar(oct"040",9u#,asc_height#,0); +italcorr h#*slant-.75u#; +adjust_fit(0,0); +numeric macron_breadth; macron_breadth:=Vround .2[vair,stem]; +pickup if serifs: crisp.nib else: fine.nib fi; +pos1(macron_breadth,90); pos2(macron_breadth,90); +top y1r=top y2r=vround(.3[x_height,asc_height]+macron_breadth)+o; +lft x1=w-rt x2=hround 1.25u; +filldraw stroke z1e--z2e; % bar +if serifs: pickup crisp.nib; x3+.5stem=hround(w-2u); x4=2/3[x3,w-x3]; + y3=h+o+eps; pos4(hair,0); y4r=y1l; + numeric theta; theta=angle(z4-z3)+90; + pos3(stem,theta); + filldraw circ_stroke z3e--z4e; % diagonal +else: pickup fine.nib; pos3(stem,0); pos4(vair,0); + rt x3r=hround(w-2u); lft x4l=hround(.5w-.75u-.5vair); + top y3=h+o; y4r=y1l; + filldraw stroke z3e--z4e; fi % diagonal +penlabels(1,2,3,4); endchar; + +% end of file. diff --git a/Master/texmf-dist/fonts/source/public/tipa/tipagerm.mf b/Master/texmf-dist/fonts/source/public/tipa/tipagerm.mf new file mode 100644 index 00000000000..cd92a0a3484 --- /dev/null +++ b/Master/texmf-dist/fonts/source/public/tipa/tipagerm.mf @@ -0,0 +1,137 @@ +% tipagerm.mf: TIPA symbols for germanic languages +% Copyright 1996-2003 FUKUI Rei +% +% This program may be distributed and/or modified under the +% conditions of the LaTeX Project Public License, either version 1.2 +% of this license or (at your option) any later version. +% The latest version of this license is in +% http://www.latex-project.org/lppl.txt +% and version 1.2 or later is part of all distributions of LaTeX +% version 1999/12/01 or later. +% +% This program consists of all files listed in Manifest.txt. +% +% Version 1.2 2003/01/01 +% +% This font is based on: +% Computer Modern font series by D. E. Knuth, +% DC fonts by J"org Knappen and +% TSIPA by KOBAYASHI Hajime, FUKUI Rei and SHIRAKAWA Shun. +% + +% The next codes are from cmman. +cmchar "Thorn"; +beginchar(oct"376",10u#+serif_fit#,asc_height#,desc_depth#); +italcorr .5x_height#*slant+min(.5curve#-.85u#,-.1u#); +adjust_fit(serif_fit#,0); +pickup tiny.nib; pos1(stem',0); pos2(stem,0); +pos0'(stem',0); pos0(stem,0); z0l=z0'l; x0'=x1; x0=x2; +lft x1l=hround(side_gap-.5stem'); top y1=h; +numeric edge; edge=rt x2r; +pickup fine.nib; pos3(if hefty:thin_join else: hair fi,180); +pos4(vair',90); pos5(curve,0); pos6(vair,-90); +rt x3l=1/3[rt x2,edge]; y3=1/8[bar_height,x_height]; +x4l=w-.5(w-serif_fit)+.5u; top y4r=x_height+oo; +rt x5r=hround min(w-1.35u+.5curve,w-.6u); y5=.5x_height; +x6=x3; bot y6r=-oo; +(x,y4r)=whatever[z3l,z4l]; x4r:=min(x,.5[x5r,x4]); +filldraw stroke z3e{up}...{right}z4e&super_arc.e(4,5) + &z5e{down}...{5(x6-x5),y6-y5}z6e; % bowl +y0=ypart(((edge,h)--(edge,0))intersectionpoint(z3l{up}...{right}z4l)); +pickup tiny.nib; bot y2=-d; +filldraw stroke z1e--z0'e--z0e--z2e; % stem +pickup crisp.nib; pos8(hair,0); pos7'(stem,0); +z7'=z2; x8l=x7'l; bot y8=0; +filldraw stroke z7'e--z8e; % point +if serifs: sloped_serif.l(1,0',a,1/3,jut,serif_drop); % upper serif + dish_serif(2,0,b,1/3,jut,c,1/3,jut); fi % lower serif +penlabels(0,1,2,3,4,5,6,8); endchar; + +cmchar "Wynn"; +beginchar(oct"337",9u#+serif_fit#,x_height#,desc_depth#); +italcorr .5x_height#*slant+min(.5curve#-.75u#,.1u#); +adjust_fit(serif_fit#,0); +pickup tiny.nib; pos2(stem,if serifs:0 else: 15 fi); +pos0'(stem',0); pos0(stem,0); pos1(stem',0); z0l=z0'l; x0'=x1; x0=x2; +lft x1l=hround(side_gap-.5stem');top y1=h; +pickup fine.nib; pos3(vair,90); pos4(vair,90); +pos5(curve,0); pos6(vair,-90); pos7(vair,-90); +x3=x7=x0; x4+.5u=x6=.6w; top y4r=x_height; y4-y3=y6-y7; +rt x5r=hround min(w-1.35u+.5curve,w-.6u); y5=.6x_height; +bot y6r=.1x_height-oo; bot y7r=-oo; y0=y3; +pickup tiny.nib; bot y2=if serifs: -.7d; else: -d; fi +filldraw stroke z1e--z0'e--z0e--z2e; % stem +filldraw stroke z3e--z4e{z6-z7}...z5e{down}...{z7-z6}z6e--z7e; +if serifs: pickup crisp.nib; pos10(stem,0); pos11(vair,-90); + z10=z2; lft x11l=x22=.5u; y11l=-d-oo; + varm(10,11,a,.8beak_darkness,-1.5beak_jut); + pickup crisp.nib; + pos21(stem',0); pos22(vair,90); z21=(x1,.6h); y22r=y4r; + varm(21,22,b,.8beak_darkness,-1.3beak_jut); fi +penlabels(0,0',1,2,3,4,5,6,7,8,9,10,11,21,22); endchar; + +cmchar "H-V ligature"; +beginchar(oct"377",13.8u#,asc_height#,0); +italcorr .5[bar_height#,x_height#]*slant-serif_fit#+.5stem#-u#; +adjust_fit(serif_fit#+stem_shift#,serif_fit#-stem_shift#); +pickup tiny.nib; pos1(stem,0); pos2(stem,0); +pos1'(stem',0); pos2'(stem',0); pos3(stem,0); +lft x1l=hround(side_gap-.5stem); x1l=x1'l=x2l=x2'l; x3=w-x1-3.8u; +top y1=h; bot y2=0; y1=y1'; y2=y2'; +filldraw stroke z1'e--z2'e; % left stem +y3=1/3[bar_height,x_height]; +penpos2''(x2r-x2l,0); x2''=x2; y2''=1/8[bar_height,x_height]; +filldraw stroke z2''e--z2e; % thicken the lower left stem +penpos a0(min(rt x2r-lft x2l,thin_join)-fine,180); pickup fine.nib; +rt x a0l=tiny.rt x2r; y a0=y2''; +pos a1(vair,90); pos3'(x3r-x3l+tiny,0); z3'=z3; +x a1=.5[rt x a0l,rt x3'r]; top y a1r=x_height+oo; +(x a,y a1l)=whatever[z a1r,z a0l]; x a1l:=x a; +filldraw stroke z a0e{up}...{right}z a1e + &{{interim superness:=hein_super; super_arc.e(a1,3')}}; % arch +labels(a0); penlabels(a1); +if serifs: sloped_serif.l(1',2',b,1/3,jut,serif_drop); % upper left serif + numeric inner_jut; pickup tiny.nib; + if rt x2r+jut+.5u+1<=lft x3l-jut: inner_jut=jut; + else: rt x2r+jut+.5u+1=lft x3l-inner_jut; fi + dish_serif(2,1,c,1/3,jut,d,1/3,jut); fi % lower left serif +pickup tiny.nib; interim superness:=more_super; +pos3''(stem,180);y3''=y3; +pos4(stem,180); x4=x3''=x3; +pos5(vair,-90); pos6(hair,0); +x5=x4+2.8u; rt x6r=hround(w-.7u); y4=.4h; bot y5r=-oo; y6=.4h; +filldraw stroke z3''e{down}--super_arc.e(4,5) % v stroke + ..tension atleast 1.05..{up}z6e; % left stem and arc +v_bulb(6,7); % closing bulb +penlabels(1,2,3,4,5,6,7); endchar; + +cmchar "Comma-tail Z"; +beginchar(oct"336",9u#,x_height#,desc_depth#); +italcorr x_height#*slant-.5serif_fit#-1u#; +adjust_fit(0,.5serif_fit#); +numeric arm_thickness[],z_stem; +arm_thickness1=vair; arm_thickness2=1.2vair; z_stem=.9[vair,stem]; +pickup tiny.nib; rt x1r=rt x2r=hround(.89w-.8u); +lft x3l=lft x4l=hround .5u; +top y1=h; y2=min(y1,h-2/3arm_thickness1); +bot y4=0; y3=max(y4,2/3arm_thickness2); +numeric alpha; alpha=diag_ratio(1,z_stem-tiny,y2-y3,x2r-x3l-slant*(y2-y3)); +penpos1(alpha*(z_stem-tiny),0); penpos2(alpha*(z_stem-tiny),0); +penpos3(alpha*(z_stem-tiny),0); penpos4(alpha*(z_stem-tiny),0); +pair delta; delta=penoffset z3-z2 of currentpen; +fill top lft z1l--z2l+delta---z3l+delta..lft z3l---lft z4l..bot z4l + ---bot rt z4r--z3r-delta---z2r-delta..rt z2r---rt z1r..top z1r + ---cycle; % diagonal +pickup tiny.nib; pos5(arm_thickness1,90); pos6(hair,180); +top y5r=h; x5=x1; lft x6r=hround .75u; y6=good.y(y5l-beak/1.4)-eps; +arm(5,6,a,beak_darkness,-.4beak_jut); % upper arm and beak +pos7(arm_thickness2,90); pos8(arm_thickness2,90); +x7=x4; bot y8l=bot y7l=y8'=0; x8=x5-1.5u; +if serifs: pos9(hair,0); pos10(vair,-90); pos11(vair,-100); +else: pos9(fudged.hair,0); pos10(vair,-90); pos11(vair,-100); fi +y9=-.4d; rt x9r =hround(w-1.5u+.5hair); y10=-.8d; +y11=-.7d; x11=.5[x3,x9]; x9-x10=x10-x11; +filldraw stroke z7e--z8e{right}..z9e{down}..{left}z10e..z11e; +penlabels(1,2,3,4,5,6,7,8,9,10,11); endchar; + +% end of tipagerm.mf diff --git a/Master/texmf-dist/fonts/source/public/tipa/tipanew.mf b/Master/texmf-dist/fonts/source/public/tipa/tipanew.mf new file mode 100644 index 00000000000..e0c1cf022a3 --- /dev/null +++ b/Master/texmf-dist/fonts/source/public/tipa/tipanew.mf @@ -0,0 +1,8 @@ +endinput +debug:=true; +if debug: let input = endinput; fi + +%%% This is a scratch file for testing new materials. + + +endinput diff --git a/Master/texmf-dist/fonts/source/public/tipa/tipapnct.mf b/Master/texmf-dist/fonts/source/public/tipa/tipapnct.mf new file mode 100644 index 00000000000..4a94db11abb --- /dev/null +++ b/Master/texmf-dist/fonts/source/public/tipa/tipapnct.mf @@ -0,0 +1,221 @@ +% tipapnct.mf: TIPA punctuation marks +% Copyright 1996-2003 FUKUI Rei +% +% This program may be distributed and/or modified under the +% conditions of the LaTeX Project Public License, either version 1.2 +% of this license or (at your option) any later version. +% The latest version of this license is in +% http://www.latex-project.org/lppl.txt +% and version 1.2 or later is part of all distributions of LaTeX +% version 1999/12/01 or later. +% +% This program consists of all files listed in Manifest.txt. +% +% Version 1.2 2003/01/01 +% +% This font is based on: +% Computer Modern font series by D. E. Knuth and +% TSIPA by KOBAYASHI Hajime, FUKUI Rei and SHIRAKAWA Shun. +% + +cmchar "Exclamation point"; +beginchar("!",5u#+width_adj#,asc_height#,0); +italcorr asc_height#*slant-2u#-.5width_adj#+.5dot_size#; +adjust_fit(0,0); +pickup tiny.nib; pos3(dot_size,0); pos4(dot_size,90); +lft x3l=hround(.5w-.5dot_size); bot y4l=0; z3=z4; dot(3,4); % dot +numeric bot_width; +bot_width=if hefty:max(hround .8dot_size,fine.breadth) else: hair fi; +pickup fine.nib; pos1(dot_size,0); pos2(bot_width,0); +x1=x2=x3; bot y2=.25[top y4r,x_height]+1; +if square_dots: top y1=h; + filldraw stroke z1e--z2e; % stem +else: top z0=(x1,h+o); y1+.5dot_size=h+o; + filldraw z1r...z0...z1l---z2l--z2r---cycle; fi % stem and bulb +penlabels(0,1,2,3,4); endchar; + +cmchar "Apostrophe"; +beginchar("'",5u#,asc_height#,0); +italcorr asc_height#*slant+.5dot_size#-2u#; +adjust_fit(0,0); +x1-.5dot_size=hround(.5w-.5dot_size); y1+.5dot_size=h; +if monospace: comma(1,a,dot_size,.28u,vround 1.5comma_depth); % large comma +else: comma(1,a,dot_size,.25u,comma_depth); fi % comma with increased jut +penlabels(1); endchar; + +cmchar "Left parenthesis"; +beginchar("(",CT(7u# if monospace: -u# fi,6.66u#), + CT(body_height#,asc_height#),CT(paren_depth#,.9desc_depth#)); +italcorr body_height#*slant-.5u#; +adjust_fit(0,0); pickup fine.nib; +pos1(vair,0); pos2(.75[hair,stem],0); pos3(vair,0); +rt x1r=rt x3r=hround(w-u); lft x2l=hround(x1-4u if monospace: +4/3u fi); +top y1=h; y2=.5[y1,y3]=math_axis; +filldraw stroke z1e{3(x2e-x1e),y2-y1}...z2e + ...{3(x3e-x2e),y3-y2}z3e; % arc +penlabels(1,2,3); endchar; + +cmchar "Right parenthesis"; +beginchar(")",CT(7u# if monospace: -u# fi,6.66u#), + CT(body_height#,asc_height#),CT(paren_depth#,.9desc_depth#)); +italcorr math_axis#*slant-.5u#; +adjust_fit(0,0); pickup fine.nib; +pos1(vair,0); pos2(.75[hair,stem],0); pos3(vair,0); +lft x1l=lft x3l=hround u; rt x2r=hround(x1+4u if monospace: -4/3u fi); +top y1=h; y2=.5[y1,y3]=math_axis; +filldraw stroke z1e{3(x2e-x1e),y2-y1}...z2e + ...{3(x3e-x2e),y3-y2}z3e; % arc +penlabels(1,2,3); endchar; + +cmchar "Asterisk"; +beginchar("*",9u#, + if low_asterisk:math_axis#+.5x_height# else: body_height# fi,0); +italcorr h#*slant-.75u#; +adjust_fit(0,0); +numeric ast_flare; ast_flare=hround .7[thin_join,stem]; +x0=.5w; y0=h-.5x_height; +for d=-150 step 60 until 150: z[d]=z0+.5dir d xscaled 7.5u yscaled x_height; + numeric theta; theta=angle(z[d]-z0); + fill z0+.5(0,-thin_join)rotated theta + ---z[d]+.5(-ast_flare,-ast_flare)rotated theta + ..z[d]..z[d]+.5(-ast_flare,ast_flare)rotated theta + ---z0+.5(0,thin_join)rotated theta--cycle; endfor % diagonal at angle |d| +labels(0,[-150],[-90],[-30],30,90,150); endchar; + +cmchar "Plus sign"; +beginarithchar("+"); pickup rule.nib; +x1=x2=good.x .5w; top y1=h+eps; .5[y1,y2]=math_axis; +lft x3=hround u-eps; x4=w-x3; y3=y4=math_axis; +draw z1--z2; % stem +draw z3--z4; % crossbar +labels(1,2,3,4); endchar; + +cmchar "Comma"; +numeric dot_diam#; dot_diam#=if monospace: 5/4 fi\\ dot_size#; +define_whole_blacker_pixels(dot_diam); +beginchar(",",5u#,dot_diam#,comma_depth#); +adjust_fit(0,0); +x1-.5dot_diam=hround(.5w-.5dot_diam); y1-.5dot_diam=0; +comma(1,a,dot_diam,.2u,comma_depth); % dot and tail +penlabels(1); endchar; + +cmchar "Hyphen"; +beginchar("-",6u#,x_height#,0); +italcorr .5x_height#*slant-.5u#; +adjust_fit(0,0); +numeric thickness; thickness=if hefty:bar else:.75[hair,stem] fi; +pickup crisp.nib; pos1(thickness,90); pos2(thickness,90); +top y1r=top y2r=vround(.5h+.5thickness); rt x2=hround(w-u)+eps; +if monospace: x2=w-x1 else: lft x1=hround .2u-eps fi; +filldraw stroke z1e--z2e; % bar +penlabels(1,2); endchar; + +cmchar "Period"; +numeric dot_diam#; dot_diam#=if monospace: 5/4 fi\\ dot_size#; +define_whole_blacker_pixels(dot_diam); +beginchar(".",5u#,dot_diam#,0); +adjust_fit(0,0); pickup fine.nib; +pos1(dot_diam,0); pos2(dot_diam,90); +lft x1l=hround(.5w-.5dot_diam); bot y2l=0; z1=z2; dot(1,2); % dot +penlabels(1,2); endchar; + +cmchar "Virgule (slash)"; +beginchar("/",9u#,body_height#,paren_depth#); +italcorr body_height#*slant-.5u#; +adjust_fit(0,0); pickup rule.nib; +rt x1=hround(w-u)+eps; top y1=h+eps; +lft x2=hround u-eps; bot y2=-d-eps; +draw z1--z2; % diagonal +penlabels(1,2); endchar; + +cmchar "Equals sign"; +compute_spread(.45x_height#,.55x_height#); +beginchar("=",14u#,v_center(spread#+rule_thickness#)); +italcorr h#*slant-.5u#; +adjust_fit(0,0); pickup rule.nib; +lft x1=hround u-eps; x3=x1; x2=x4=w-x1; +y1=y2; y3=y4; y1-y3=spread; .5[y1,y3]=math_axis; +draw z1--z2; % upper bar +draw z3--z4; % lower bar +labels(1,2,3,4); endchar; + +cmchar "Question mark"; +beginchar("?",8.5u#,asc_height#,0); +italcorr .8asc_height#*slant; +adjust_fit(0,0); +pickup tiny.nib; pos7(dot_size,0); pos8(dot_size,90); +lft x7l=hround(.5w-.25u-.5dot_size); bot y8l=0; z7=z8; dot(7,8); % dot +numeric bot_width; +bot_width=if hefty:max(hround .8dot_size,fine.breadth) else: hair fi; +pickup fine.nib; pos2(vair,90); pos3(curve,0); +pos4(vair,-90); pos5(bot_width,0); pos6(bot_width,0); +x2=x4=x5=x6=x7; rt x3r=hround(w-u); bot y6=1+.25[top y8r,x_height]; +top y2r=h+oo; y3=.75[y6,y2]; y4=.5[y6,y2]; y5=.1[y6,y2]; +{{interim superness:=more_super; +filldraw stroke pulled_super_arc.e(2,3)(superpull) + & subpath (0,1) of super_arc.e(3,4) .. z5e---z6e\\}}; % arc and stem +if serifs: pos1(hair,180); pos0(flare,180); + lft x1r=hround u; y1=y3; bulb(2,1,0); % bulb +else: pos1(Vround 5/7[vair,flare],110); + lft x1r=hround u; top y1r=vround .9[y6,top y2r]; + filldraw stroke term.e(2,1,left,1,4); fi % terminal +penlabels(0,1,2,3,4,5,6,7,8); endchar; + +cmchar "Left bracket"; +%numeric wd#; wd#=max(5u#,4.5u#+.5if hefty:stem# else:rule_thickness# fi); +% Modified on 2001/11/25 fkr +numeric wd#; wd#=max(5.5u#,5u#+.5if hefty:stem# else:rule_thickness# fi); +beginchar("[",CT(wd#,6.66u#),CT(body_height#,asc_height#), + CT(paren_depth#,.9desc_depth#)); +italcorr body_height#*slant; +adjust_fit(0,0); +numeric top_thickness,side_thickness; +if hefty: top_thickness=vair; + side_thickness=max(crisp.breadth,stem-2stem_corr); +else: top_thickness=side_thickness=rule_thickness; fi; +if Times_Compat and serifs: side_thickness:=1.8side_thickness; + top_thickness:=.8top_thickness; fi +pickup crisp.nib; pos1(side_thickness,0); pos2(side_thickness,0); +top y1=h; bot y2=-d; lft x1l=lft x2l=hround(2.5u-.5side_thickness)-1-eps; +filldraw stroke z1e--z2e; % stem +pos3(top_thickness,90); pos4(top_thickness,90); +pos5(top_thickness,90); pos6(top_thickness,90); +x3=x5=x1l; rt x4=rt x6=ceiling(w-.4u)+eps; y3r=y4r=y1; y5l=y6l=y2; +filldraw stroke z3e--z4e; % upper bar +filldraw stroke z5e--z6e; % lower bar +penlabels(1,2,3,4,5,6); endchar; + +cmchar "Right bracket"; +%numeric wd#; wd#=max(5u#,4.5u#+.5if hefty:stem# else:rule_thickness# fi); +% Modified on 2001/11/25 fkr +numeric wd#; wd#=max(5.5u#,5u#+.5if hefty:stem# else:rule_thickness# fi); +beginchar("]",CT(wd#,6.66u#),CT(body_height#,asc_height#), + CT(paren_depth#,.9desc_depth#)); +italcorr body_height#*slant-2u#+.5if hefty:stem# else:rule_thickness# fi; +adjust_fit(0,0); +numeric top_thickness,side_thickness; +if hefty: top_thickness=vair; + side_thickness=max(crisp.breadth,stem-2stem_corr); +else: top_thickness=side_thickness=rule_thickness; fi; +if Times_Compat and serifs: side_thickness:=1.8side_thickness; + top_thickness:=.8top_thickness; fi +pickup crisp.nib; pos1(side_thickness,0); pos2(side_thickness,0); +top y1=h; bot y2=-d; rt x1r=rt x2r=hround(w-2.5u+.5side_thickness)+1+eps; +filldraw stroke z1e--z2e; % stem +pos3(top_thickness,90); pos4(top_thickness,90); +pos5(top_thickness,90); pos6(top_thickness,90); +x3=x5=x1r; lft x4=lft x6=floor .4u-eps; y3r=y4r=y1; y5l=y6l=y2; +filldraw stroke z3e--z4e; % upper bar +filldraw stroke z5e--z6e; % lower bar +penlabels(1,2,3,4,5,6); endchar; + +cmchar "Turned apostrophe"; +beginchar("`",5u#,asc_height#,0); +italcorr asc_height#*slant+.5dot_size#-2u#; +adjust_fit(0,0); +x1-.5dot_size=hround(.5w-.5dot_size); y1+.5dot_size=h-comma_depth; +if monospace: ammoc(1,a,dot_size,.28u,vround 1.5comma_depth); % large ammoc +else: ammoc(1,a,dot_size,.25u,comma_depth); fi % normal ammoc +penlabels(1); endchar; + +% end of tipapnct.mf diff --git a/Master/texmf-dist/fonts/source/public/tipa/tipaprm.def b/Master/texmf-dist/fonts/source/public/tipa/tipaprm.def new file mode 100644 index 00000000000..8344e96e2b1 --- /dev/null +++ b/Master/texmf-dist/fonts/source/public/tipa/tipaprm.def @@ -0,0 +1,78 @@ +# tipaprm.def --- parameters for TIPA font families. +# +# 1996/06/24 first version +# 2001/11/07 bs10 (= BXSL10), sb10 (=SSBX10), si10 (=SSSL10) added. +# 2001/12/21 tt8, tt9, tt10, tt12, ts10 (=SLTT10) added. +# +# The basic idea of this file is borrowed from dc fonts. But this file +# is processed by awk, not by a Metafont macro. +# +# NB: The parameter `variant_g' is omitted, and sc.u, sc.letter_fit added. +# For TT family of fonts, sc.u# shuold be equal to u# !!! +# p: x/36pt#, P: xpt#, n: x, SC12: sind 12 / cosd 12, SQ2: sqrt 2 +# +# 8 9 10 12 17 sl8 sl9 sl10 sl12 bx8 bx9 bx10 bx12 ss8 ss9 ss10 ss12 ss17 b10 bs10 sb10 si10 tt8 tt9 tt10 tt12 ts10 +# +p u 17 18.5 20 23.5 32.5 17 18.5 20 23.5 19.6 21.3 23 27 17 18.5 20 23.5 32.5 20 23 22 20 17 18.9 21 24.7 21 +p width_adj 0 0 0 0 0 0 0 0 0 9.4 10.2 11 13 12 13 15 17 24 10 11 22 15 0 0 0 0 0 +p serif_fit 0 0 0 0 0 0 0 0 0 0 0 0 0 -6 -6.5 -7 -9 -12 0 0 -9 -7 0 0 0 0 0 +p cap_serif_fit 4.1 4.6 5 5.8 8 4.1 4.6 5 5.8 5.4 6.2 7 8 -8.5 -9 -10 -13 -17 6 7 -11 -10 0 0 0 0 0 +p letter_fit 0 0 0 0 -0.1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 +p body_height 216 243 270 324 466 216 243 270 324 216 243 270 324 216 243 270 324 466 270 270 270 270 200 225 250 300 250 +p asc_height 200 225 250 300 432 200 225 250 300 200 225 250 300 200 225 250 300 432 250 250 250 250 176 198 220 264 220 +p cap_height 196.8 221.4 246 295.2 425 196.8 221.4 246 295.2 197.6 222.3 247 296.4 200 225 250 300 432 247 247 250 250 176 198 220 264 220 +p fig_height 185.6 208.8 232 278.4 401 185.6 208.8 232 278.4 185.6 208.8 232 278.4 189 212 236 283 408 232 232 250 236 176 198 220 264 220 +p x_height 124 139.5 155 186 267.8 124 139.5 155 186 128 144 160 192 128 144 160 192 267.8 160 160 165 160 124 139.5 155 186 155 +p math_axis 72 81 90 108 155.5 72 81 90 108 72 81 90 108 72 81 90 108 155.5 90 90 90 90 88 99 110 132 110 +p bar_height 69.6 78.3 87 104.4 150 69.6 78.3 87 104.4 67 76 85 102 63 71 79 97 136 85 85 90 79 63 71 79 95 79 +p comma_depth 56 63 70 84 121 56 63 70 84 56 63 70 84 37 41 45 54 78 70 70 38 45 40 45 50 60 50 +p desc_depth 56 63 70 84 121 56 63 70 84 56 63 70 84 56 63 70 84 121 70 70 70 70 64 72 80 96 80 +p crisp 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 26 0 19 21 22 25 22 +p tiny 8 8 8 8 8 8 8 8 8 12 13 13 13 0 0 0 0 0 13 13 26 0 19 21 22 25 22 +p fine 7 7 7 7 7 7 7 7 7 10 10 10 10 0 0 0 0 0 10 10 9 0 18 20 21 22 21 +p thin_join 7 7 7 7.5 9 7 7 7 7.5 10 10 10 10.5 15 16 17 20 28 10 10 9 17 18 20 21 22 21 +p hair 9 9 9 9.5 11 9 9 9 9.5 16.2 16.6 17 18.3 25 27 28 33 47 17 17 49 28 22 24 25 28 25 +p stem 22 24 25 28 33 22 24 25 28 35 38 41 47 25 27 28 33 47 41 41 49 28 22 24 25 28 25 +p curve 25.5 28 30 33 40 25.5 28 30 33 39 43 46 52 25 27 28 33 47 46 46 49 28 22 24 25 28 25 +p ess 23 25 27 30 35 23 25 27 30 32 35 38 44 25 27 28 33 47 38 38 43 28 19 21 22 25 22 +p flare 27 30 33 36 45 27 30 33 36 39 42 45 51 22 24 25 30 42 45 45 40 25 28 30 32 35 32 +p dot_size 32 35 38 42 51 32 35 38 42 46 51 56 62 26 28 30 35 50 56 56 47 30 31 33 36 39 36 +p cap_hair 9.5 10 11 11.5 13 9.5 10 11 11.5 19 19 19 20 25 27 28 33 47 19 19 49 28 22 24 25 28 25 +p cap_stem 26.5 29 32 35 41 26.5 29 32 35 43 47 51 57 29 31 32 37 52 51 51 53 32 22 24 25 28 25 +p cap_curve 30 33 37 40 47 30 33 37 40 46 51 55 61 29 31 32 37 52 55 55 53 32 22 24 25 28 25 +p cap_ess 27 31 35 38 43 27 31 35 38 43 48 53 59 28 31 32 37 52 53 53 51 32 22 24 25 28 25 +P rule_thickness .36 .38 .4 .44 .6 .36 .38 .4 .44 .54 .57 .6 .66 .36 .38 .4 .44 .6 .6 .6 30/36 .4 22/36 24/36 25/36 28/36 25/36 +p dish 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 1 1 0 0 0 0 0 0 0 +p bracket 16 18 20 24 34 16 18 20 24 8 9 10 12 0 0 0 0 0 10 10 0 0 0 0 0 0 0 +p jut 22 25 28 33 42 22 25 28 33 19 22 25 30 0 0 0 0 0 25 25 0 0 27 31 34 39 34 +p cap_jut 29 33 37 41 50 29 33 37 41 31 35 39 46 0 0 0 0 0 34 39 0 0 27 31 34 39 34 +p beak_jut 8.4 9.2 10 11.4 15 8.4 9.2 10 11.4 9.4 10.2 11 12.4 0 0 0 0 0 11 11 0 0 0 0 0 0 0 +p beak 56 63 70 84 121 56 63 70 84 55 63 70 84 .4 .5 .5 .6 .8 70 70 1.5 .5 27 31 34 39 34 +p vair 8 8 8 8.5 10 8 8 8 8.5 12 12.5 13 14.3 19 21 22 26 38 13 13 26 22 19 21 22 25 22 +P notch_cut 8 9 10 12 17 8 9 10 12 8 9 10 12 16/36 17/36 18/36 22/36 32/36 10 10 49/36 18/36 22/36 24/36 25/36 28/36 25/36 +p bar 9.5 10 11 12.5 16 9.5 10 11 12.5 15 16 17 18.5 18 20 21 25 36 17 17 26 21 19 21 22 25 22 +p slab 9.5 10 11 12.5 16 9.5 10 11 12.5 15 16 17 18.5 20 22 23 27 40 17 17 36 23 19 21 22 25 22 +p cap_bar 9.5 10 11 12.5 16 9.5 10 11 12.5 15 16 17 18.5 19 21 22 26 38 17 17 34 22 19 21 22 25 22 +p cap_band 9.5 10 11 12.5 16 9.5 10 11 12.5 15 16 17 18.5 17 19 20 24 35 17 17 31 20 19 21 22 25 22 +P cap_notch_cut 8 9 10 12 17 8 9 10 12 8 9 10 12 22/36 24/36 25/36 31/36 46/36 10 10 45/36 25/36 22/36 24/36 25/36 28/36 25/36 +p serif_drop 3.2 3.6 4 4.8 7 3.2 3.6 4 4.8 2.4 2.7 3 3.6 2 2 2 2 2 3 3 2 2 0 0 0 0 0 +p stem_corr 1 1 1 1 1 1 1 1 1 1.8 1.9 2 2 1 1 1 1 1 2 2 1 1 0 0 0 0 0 +p vair_corr 1 1 1 1 1 1 1 1 1 1.3 1.4 1.5 1.5 1 1 1 1 1 1.5 1.5 2 1 0 0 0 0 0 +p apex_corr 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4.5 5 6 7 0 0 18 5 8 9 10 11 10 +p o 6 7 8 9 10 6 7 8 9 4 4 4 5 6 7 8 9 10 4 4 8 8 3 3.5 4 5 4 +p apex_o 6 7 8 9 10 6 7 8 9 3 3 3 4 0 0 0 0 0 3 3 0 0 3 3 3 4 3 +n slant 0 0 0 0 0 1/6 1/6 1/6 1/6 0 0 0 0 0 0 0 0 0 0 1/6 0 SC12 0 0 0 0 1/6 +n fudge 1 1 1 1 1 1 1 1 1 1 1 1 1 .93 .95 .96 .98 1 1 1 .88 .96 0.81 0.81 0.81 0.86 0.81 +n math_spread .4 .2 0 -0.2 -0.4 .4 .2 0 -0.2 .9 .7 .5 .4 .4 .2 0 -0.2 -0.4 .5 .5 .5 0 -1 -1 -1 -1 -1 +n superness 1/SQ2 1/SQ2 1/SQ2 1/SQ2 1/SQ2 1/SQ2 1/SQ2 1/SQ2 1/SQ2 8/11 8/11 8/11 8/11 1/SQ2 1/SQ2 1/SQ2 1/SQ2 1/SQ2 8/11 8/11 3/4 1/SQ2 1/SQ2 1/SQ2 1/SQ2 1/SQ2 1/SQ2 +n superpull 1/6 1/6 1/6 1/6 1/6 1/6 1/6 1/6 1/6 1/8 1/8 1/8 1/8 1/20 1/20 1/20 1/20 1/20 1/8 1/8 1/18 1/20 0 0 0 0 0 +n beak_darkness 11/30 11/30 11/30 11/30 11/30 11/30 11/30 11/30 11/30 .4 .4 .4 .4 0 0 0 0 0 .4 .4 0 0 0 0 0 0 0 +n ligs 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 +n square_dots false false false false false false false false false false false false false true true true true true false false true true false false false false false +n hefty false false false false false false false false false false false false false true true true true true false false true true true true true true true +n serifs true true true true true true true true true true true true true false false false false false true true false false true true true true true +n monospace false false false false false false false false false false false false false false false false false false false false false false true true true true true +n low_asterisk false false false false false false false false false false false false false false false false false false false false false false true true true true true +n math_fitting false false false false false false false false false false false false false false false false false false false false false false false false false false false +p sc.u 12 12.95 14 16.45 22.75 12 12.95 14 16.45 15.34 16.67 18 21.13 12 12.95 14 16.45 22.75 14 18 17.21 14 17 18.9 21 24.7 21 +p sc.letter_fit 2.4 2.4 2.4 2.4 2.2 2.4 2.4 2.4 2.4 2.4 2.4 2.4 2.4 2.4 2.4 2.4 2.4 2.2 2.4 2.4 2.4 2.4 2.4 2.4 2.4 2.4 2.4 diff --git a/Master/texmf-dist/fonts/source/public/tipa/tiparoml.mf b/Master/texmf-dist/fonts/source/public/tipa/tiparoml.mf new file mode 100644 index 00000000000..2895d6f62dd --- /dev/null +++ b/Master/texmf-dist/fonts/source/public/tipa/tiparoml.mf @@ -0,0 +1,813 @@ +% tiparoml.mf: TIPA roman lowercase letters +% Copyright 1996-2003 FUKUI Rei +% +% This program may be distributed and/or modified under the +% conditions of the LaTeX Project Public License, either version 1.2 +% of this license or (at your option) any later version. +% The latest version of this license is in +% http://www.latex-project.org/lppl.txt +% and version 1.2 or later is part of all distributions of LaTeX +% version 1999/12/01 or later. +% +% This program consists of all files listed in Manifest.txt. +% +% Version 1.2 2003/01/01 +% +% This font is based on: +% Computer Modern font series by D. E. Knuth. +% + +cmchar "Lower-case A"; +beginchar("a",CT(9u#,8.88u#),x_height#,0); +if Times_Compat: bh#:=.6x_height#; +else: bh#:=min(bar_height#,1.14x_height#-bar_height#); fi +define_pixels(bh); +italcorr 1/3[bh#,x_height#]*slant+.5stem#-serif_fit#-2u#; +adjust_fit(0,serif_fit# if serifs: if hair#+.5stem#>1.5u#:-.25u# fi\\fi); +pickup fine.nib; top y3r=h+vround 1.5oo; +if serifs: pos1(flare,180); pos2(hair,180); pos3(vair,90); + lft x1r=hround max(u,if Times_Compat:1.5u else:2.1u fi-.5flare); + x3=.5w if Times_Compat:-.25u else:-.5u fi; + y1=min(bh+.5flare+2vair+2,.9[bh,h]-.5flare); + bulb(3,2,1); % bulb +else: pos1(5/7[vair,flare],95); x1l=good.x 1.5u; x1r:=good.x x1r; + pos3(1/8[vair,thin_join],90); + x3=.5w-.2u; top y1r=vround .82[bh,top y3r]; + filldraw stroke term.e(3,1,left,.9,4); fi % terminal +pos4(stem,0); rt x4r=hround(w-side_gap+.5stem); +y4=if Times_Compat: .5 else: 1/3 fi[bh,h]; +pos5(stem,0); x5=x4; +y5=if Times_Compat: max(.45bh,2vair) else: max(.55bh,2vair) fi; +filldraw stroke super_arc.e(3,4)&z4e..z5e; % arc and stem +pos6(.3[thin_join,vair],90); x6=x4; bot y6=if Times_Compat: 1.1 fi bh; +pos7(hround(curve-2stem_corr),if Times_Compat: 200 else: 180 fi); +lft x7r=hround max(.5u,1.5u-.5curve); +if Times_Compat: y7=.3[top y8l,top y6r]; pos8(.6[vair,flare],210); x8l=.5w-1u; +else: y7=1/3[top y8l,top y6r]; pos8(vair,270); x8l=.5w-.75u; fi +pos9(thin_join,360); z9l=z5l; bot y8r=-oo; +(x,y8r)=whatever[z8l,z9l]; x8r:=max(x,x8-u); +{{interim superness:=more_super; + filldraw stroke z9e{down}...z8e{left}...{up}z7e & + if Times_Compat: z7e{up}...{(35,10)}z6e + else: super_arc.e(7,6)fi}}; % bowl +if serifs: numeric shaved_stem; shaved_stem=hround(stem-3stem_corr); + if hair#+.5stem#>1.5u#: pickup tiny.nib; + pos5'(shaved_stem,0); rt x5'r=fine.rt x5r; y5'=y5; + pos10(shaved_stem,0); x10=x5'; y10=.2[.5tiny,bh]; + pos11(shaved_stem,0); rt x11r=hround(w-.25u); bot y11=0; + pos12(shaved_stem,0); x11=x12; top y12=slab+eps; + filldraw z5'l---z10l...z11l{right}--z11r + --z12r{left}...z10r+.75(z12-z11)---z5'r--cycle; % foot + else: pickup crisp.nib; pos5'(shaved_stem,0); rt x5'r=fine.rt x5r; y5'=y5; + pos10(shaved_stem,0); x10=x5'; y10=1/3bh; + pos11(.2[vair,stem],90); x11r=.5[x10r,x12r]; bot y11l=-vround .5oo; + pos12(hair,180); rt x12l=hround(w-.1u); y12=max(y10,y11+vair); + pos13(hair,180); x13=x12; top y13=max(vround .6bh,top y12); + (x',y11l)=whatever[z11r,z12r]; x11l:=max(x',x10); + if Times_Compat: y13l:=.05[y12l,y13l]; y13r:=y13l; fi + filldraw stroke z5'e---z10e...z11e{right}...z12e---z13e; fi % hook +else: numeric shaved_stem; shaved_stem=hround(stem-stem_corr); + pickup tiny.nib; pos5'(shaved_stem,0); rt x5'r=fine.rt x5r; y5'=y5; + pos10(shaved_stem,0); x10=x5'; bot y10=0; + filldraw stroke z5'e--z10e; fi % base of stem +penlabels(1,2,3,4,5,6,7,8,9,10,11,12,13); endchar; + +cmchar "Lower-case B"; +beginchar("b",10u#+serif_fit#,asc_height#,0); +italcorr .5x_height#*slant+min(.5curve#-u#,-.25u#); +adjust_fit(serif_fit#,0); +pickup tiny.nib; pos1(stem',0); pos2(stem,0); +pos0'(stem',0); pos0(stem,0); z0l=z0'l; x0'=x1; x0=x2; +lft x1l=hround(side_gap-.5stem'); top y1=h; +numeric edge; edge=rt x2r; +pickup fine.nib; pos3(if hefty:thin_join else: hair fi,180); +pos4(vair,90); pos5(curve,0); pos6(vair,-90); penpos7(x3l-x3r,-180); +rt x3l=max(rt x3l-(lft x3r-tiny.lft x2l),1/3[rt x2,edge]); +y3=1/8[bar_height,x_height]; +x4l=w-.5(w-serif_fit)+.5u; top y4r=x_height+oo; +rt x5r=hround min(w-1.35u+.5curve,w-.6u); y5=.5x_height; +x6l=x4l-.2u; bot y6r=-oo; +x7=x3; y7=min(y3,y6+y4-y3+.6vair); +(x,y4r)=whatever[z3l,z4l]; x4r:=min(x,.5[x4,x5r]); +(x',y6r)=whatever[z7l,z6l]; x6r:=min(x',.5[x6,x5r]); +filldraw stroke z3e{up}...pulled_arc.e(4,5)&pulled_arc.e(5,6)...{up}z7e; % bowl +y0=ypart(((edge,h)--(edge,0))intersectionpoint(z3l{up}...{right}z4l)); +y2=ypart(((edge,h)--(edge,0))intersectionpoint(z6l{left}...{up}z7l)); +pickup tiny.nib; filldraw stroke z1e--z0'e--z0e--z2e; % stem +pickup crisp.nib; pos8(hair,0); pos7'(stem,0); +z7'=z2; x8l=x7'l; bot y8=0; +filldraw stroke z7'e--z8e; % point +if serifs: sloped_serif.l(1,0',a,1/3,jut,serif_drop); fi % upper serif +penlabels(0,1,2,3,4,5,6,7,8); endchar; + +cmchar "Lower-case C"; +beginchar("c",CT(8u#,8.88u#),x_height#,0); +italcorr x_height#*slant-.2u#; +adjust_fit(if monospace: .5u#,.5u# else: 0,0 fi); +c_stroke(w); +penlabels(0,1,2,3,4,5); endchar; + +cmchar "Lower-case D"; +beginchar("d",10u#+serif_fit#,asc_height#,0); +italcorr asc_height#*slant-serif_fit#+.5stem#-2u#; +adjust_fit(0,serif_fit#); +d_stroke(true,true,0); +penlabels(0,1,2,3,4,5,6,7); endchar; + +cmchar "Lower-case E"; +beginchar("e",CT(7.25u#+max(.75u#,.5curve#),8.88u#),x_height#,0); +italcorr .5[bar_height#,x_height#]*slant+.5min(curve#-1.5u#,0); +adjust_fit(if monospace: .25u#,.5u# else: 0,0 fi); +numeric left_curve,right_curve; +left_curve=right_curve+6stem_corr=curve if not serifs: -3stem_corr fi; +if right_curve<tiny.breadth: right_curve:=tiny.breadth; fi +if left_curve<tiny.breadth: left_curve:=tiny.breadth; fi +pickup tiny.nib; pos1(right_curve,0); +pos2(vair,90); pos3(left_curve,180); +y1=good.y bar_height; top y2r=h+vround 1.5oo; y0l=bot y1; +rt x1r=hround min(w-.5u,w-u+.5right_curve); +lft x3r=hround max(.5u,1.25u-.5left_curve); x2=.5w+.25u; +{{interim superness:=more_super; + filldraw stroke super_arc.e(1,2)}}; % right bowl +y3=.5[y2,y4]; bot y4r=-oo; x4=x2+.25u; +if serifs: pos4(vair',270); pos5(hair,360); + y5=max(good.y(.5bar_height-.9),y4l+vair); x5r=x1r; + (x,y4l)=whatever[z4r,z5]; x4l:=min(x,x4l+.5u); + filldraw stroke pulled_arc.e(2,3) & pulled_arc.e(3,4) + ...{x5-x4,5(y5-y4)}z5e; % left bowl, arc, and terminal +else: pos4(vair,270); + filldraw stroke super_arc.e(2,3) & super_arc.e(3,4); % left bowl and arc + pickup fine.nib; pos4'(vair,270); z4=z4'; + pos5(.5[vair,flare],275); rt x5r=hround(w-.6u); + y5r=good.y(y5r+1/3bar_height-y5); y5l:=good.y y5l; x5l:=good.x x5l; + filldraw stroke term.e(4',5,right,1,4); fi % terminal +path testpath; testpath=super_arc.r(2,3) & super_arc.r(3,4); +y1'r=y0r=y0l+.6[thin_join,vair]; y1'l=y0l; x1'l=x1'r=x1; +forsuffixes $=l,r: + x0$=xpart(((0,y0$)--(x1,y0$)) intersectionpoint testpath); endfor +fill stroke z0e--z1'e; % crossbar +penlabels(0,1,2,3,4,5); endchar; + +cmchar "Lower-case F"; +beginchar("f",CT(5.5u#,6.66u#),asc_height#,0); +italcorr asc_height#*slant+if serifs:flare#-.25u# else: 1.25u# fi; +adjust_fit(stem_shift#,if monospace: .5u# else:-stem_shift# fi); +pickup tiny.nib; pos1(stem',0); lft x1l=hround(side_gap-.5stem'); +pickup fine.nib; numeric bulb_diam; +if serifs: bulb_diam=hround .8[stem,flare]; + pos2(bulb_diam,0); y2+.5bulb_diam=.9[x_height,h+oo]; + if monospace: rt x2r=hround(w-.5u)+1 else: lft x2l=hround(w-.75u+.5) fi; +else: pos2(5/7[vair,flare],90); top y2r=h; + rt x2=hround(if monospace:w-.5u else:w+.75u fi); fi +f_stroke(1,2,a,b,c,jut,if not monospace:1.25fi\\ jut); % stem, terminal, serif +pickup crisp.nib; top y3r=top y4r=x_height; lft x3=hround .5u-1; +pos3(bar,90); pos4(bar,90); +if Times_Compat: rt x4=hround(w-if monospace:.75u+1 else:2/3u fi); +else: rt x4=hround(w-if monospace:.75u+1 else:1/3u fi); fi +filldraw stroke z3e--z4e; % bar +penlabels(1,2,3,4); endchar; + +cmchar "Lower-case G"; +beginchar("g",10u#+serif_fit#,x_height#,desc_depth#); +h:=vround(x_height#*hppp); d:=vround(desc_depth#*hppp); % vertical adj. +italcorr x_height#*slant-serif_fit#+.5stem#-2u# if serifs:+.5u# fi; +adjust_fit(0,serif_fit# if serifs: -.5u# fi); +pickup tiny.nib; pos1(stem',0); pos2(stem,0); +pos0'(stem',0); pos0(stem,0); z0r=z0'r; x0'=x1; x0=x2; +rt x1r=hround(w-side_gap+.5stem'); +numeric edge; edge=lft x2l; +path edge_path; edge_path=(edge,h)--(edge,0); +pickup fine.nib; pos3(if hefty:thin_join else: hair fi,0); +pos4(vair,90); pos5(curve,180); pos6(vair,270); penpos7(x3r-x3l,360); +lft x3l=2/3[lft x2,edge]; y3=bar_height; +x4l=.5(w-serif_fit)-.3u; top y4r=x_height+oo; +lft x5r=hround max(1.35u-.5curve,.6u); y5=.5x_height; +x6l=x4l-.2u; bot y6r=vround 1/3vair; +lft x7l=edge; y7=min(y3,y6+y4-y3+.6vair); +(x,y4r)=whatever[z3l,z4l]; x4r:=max(x,.5[x5r,x4]); +(x',y6r)=whatever[z7l,z6l]; x6r:=max(x',.5[x5r,x6]); +filldraw stroke z3e{up}...{left}z4e&super_arc.e(4,5) + &super_arc.e(5,6)&z6e{right}...{up}z7e; % bowl +y1=ypart(edge_path intersectionpoint(z3l{up}...{left}z4l)); +y0=ypart(edge_path intersectionpoint(z7l{down}...{left}z6l)); +pickup tiny.nib; bot y2=if serifs: -.25d else: 0 fi; +filldraw stroke z1e--z0'e--z0e--z2e; % stem +pickup crisp.nib; +pos8(hround(hair-stem_corr),0); pos7'(stem',0); +z7'=z1; x8r=x7'r; top y8=h+oo; +filldraw stroke z7'e--z8e; % point +if serifs: pickup tiny.nib; + pos9(vair,-90); x9=.5[x2,x10]; bot y9r=-d-o-1; + pos10(hair,-180); lft x10r=hround u; y10=-.75d+.5flare; + pos11(flare,-180); z11r=z10r; + bulb(9,10,11); filldraw stroke super_arc.e(2,9); % tail +else: pickup fine.nib; pos2'(stem,0); z2'=z2; + z2''r=z2'r; z2''=z2'; z2''l=(x2'l,0); + pos9(vair,-90); x9=4.5u; bot y9r=-d-o-1; + pos10(.5[vair,flare],-90); lft x10=hround 1.25u; + y10r=good.y -5/6d; y10l:=good.y y10l; + filldraw stroke z2'e..z2''e&super_arc.e(2'',9) + & term.e(9,10,left,.9,4); fi % tail +penlabels(0,1,2,3,4,5,6,7,8,9,10,11); endchar; + +cmchar "Lower-case H"; +beginchar("h",10u#,asc_height#,0); +italcorr .5[bar_height#,x_height#]*slant-serif_fit#+.5stem#-2u#; +adjust_fit(serif_fit#+stem_shift#,serif_fit#-stem_shift#); +pickup tiny.nib; pos1(stem,0); pos2(stem,0); +pos1'(stem',0); pos2'(stem',0); pos3(stem,0); +lft x1l=hround(side_gap-.5stem); x1l=x1'l=x2l=x2'l; x3=w-x1; +top y1=h; bot y2=0; y1=y1'; y2=y2'; +filldraw stroke z1'e--z2'e; % left stem +h_stroke(2,a,3,4); % arch and right stem +if serifs: sloped_serif.l(1',2',b,1/3,jut,serif_drop); % upper left serif + numeric inner_jut; pickup tiny.nib; + if rt x2r+jut+.5u+1<=lft x4l-jut: inner_jut=jut; + else: rt x2r+jut+.5u+1=lft x4l-inner_jut; fi + dish_serif(2,1,c,1/3,jut,d,1/3,jut); % lower left serif + dish_serif(4,3,e,1/3,inner_jut,f,1/3,jut); fi % lower right serif +penlabels(1,2,3,4); endchar; + +cmchar "Lower-case I"; +numeric dot_diam#; dot_diam#=max(dot_size#,cap_curve#); +beginchar("i",CT(5u#,5.56u#),min(asc_height#,10/7x_height#+.5dot_diam#),0); +define_whole_blacker_pixels(dot_diam); +italcorr h#*slant-serif_fit# + .5dot_diam# -2u#; +adjust_fit(serif_fit#+stem_shift# if monospace:+.25u#fi,serif_fit#-stem_shift#); +pickup tiny.nib; pos1(stem',0); pos2(stem',0); +if odd(w-stem'): change_width; fi +lft x1l=hround(.5w-.5stem'); x1=x2; +top y1=x_height if serifs: +min(oo,serif_drop) fi; bot y2=0; +filldraw stroke z1e--z2e; % stem +pos3(dot_diam,0); pos4(dot_diam,90); +if serifs: x3r=max(x1r,hround(x1+.5dot_diam-.2jut)-.5tiny) +else: x3=x1-.5 fi; +top y4r=h+1; +if bot y4l-top y1<slab: y4l:=min(y4r-eps,y1+tiny+slab); fi +x3=x4; y3=.5[y4l,y4r]; dot(3,4); % dot +if serifs: sloped_serif.l(1,2,a,1/3,.95jut,serif_drop); % upper serif + dish_serif(2,1,b,1/3,jut,c,1/3,.9jut); fi % lower serif +penlabels(1,2,3,4); endchar; + +cmchar "Lower-case J"; +numeric dot_diam#; dot_diam#=max(dot_size#,cap_curve#); +beginchar("j",CT(5.5u#,5.56u#),min(asc_height#,10/7x_height#+.5dot_diam#), + desc_depth#); +define_whole_blacker_pixels(dot_diam); +italcorr h#*slant-serif_fit#+.5stem#-2u#; +adjust_fit(serif_fit#+2stem_shift# if monospace:+\\.5u# fi, + serif_fit#-2stem_shift# if monospace:-.5u# fi); +pickup tiny.nib; pos1(stem',0); pos2(stem',0); +rt x1r=hround(.5w+.25u+.5stem'); x1=x2; +top y1=x_height if serifs: +min(oo,serif_drop) fi; bot y2=-1/3d; +filldraw stroke z1e--z2e; % stem +pos3(dot_diam,0); pos4(dot_diam,90); +x3r=x1r; top y4r=h+1; +if bot y4l-top y1<slab: y4l:=min(y4r-eps,y1+tiny+slab); fi +x3=x4; y3=.5[y4l,y4r]; dot(3,4); % dot +if serifs: sloped_serif.l(1,2,a,1/3,1.1jut,serif_drop); % upper serif + pickup tiny.nib; pos5(vair,-90); pos6(hair,-180); pos7(flare,-180); + x5=.5[x2,x6r]; bot y5r=-d-oo; y6-.5flare=-.88d; + if monospace: lft x6r=0 else: z6r=z7r; rt x7l=floor .75u fi; + (x,y5r)=whatever[z5l,z2l]; x5r:=max(x,.5[x6r,x5]); + filldraw stroke z2e{down}...z5e{left}; bulb(5,6,7); % arc and bulb +else: pickup fine.nib; pos2'(stem',0); z2'=z2; + pos6(.2[vair,stem'],-90); pos7(vair,-90); + lft x7r=hround -.75u; bot y7r=vround 5/6(-d-oo); + (x,y7l)=whatever[z7r,z3]; x7l:=x; + z5r=z2'r; (x2'l,y5l)=whatever[z7l,z5r]; x5l=x2'l; y5=y5r; + x6r=.5[x7r,x5r]; x6l:=.5[x7l,x5l]; bot y6r=-d-oo; + filldraw stroke z2'e..{down}z5e & super_arc.e(5,6) + & z6e{left}..z7e; fi % arc and terminal +penlabels(1,2,3,4,5,6,7); endchar; + +cmchar "Lower-case K"; +beginchar("k",CT(9.5u#,10u#),asc_height#,0); +italcorr x_height#*slant-.2u#; +adjust_fit(serif_fit#,serif_fit#); pickup tiny.nib; +numeric right_jut,stem[],alpha[]; +stem1=max(tiny.breadth,hround(fudged.stem-stem_corr)); +stem2=max(tiny.breadth,hround(fudged.stem-2stem_corr)); +stem3=max(tiny.breadth,hround(fudged.hair if hefty:-\\4stem_corr fi)); +stem4=max(tiny.breadth,hround(fudged.stem-3stem_corr)); +if serifs: right_jut=.6jut; else: right_jut=.4tiny; fi +pos1(stem1,0); pos2(stem2,0); top y1=h; bot y2=0; +lft x1l=lft x2l=hround(side_gap-.5stem1); +top y3=x_height; rt x3r=hround(r-letter_fit-.7u-right_jut)+eps; +bot y6=0; rt x6r=hround(r-letter_fit-.3u-right_jut)+eps; +x4=x11=x1; y4=.7bar_height; y11=y3; +alpha1=diag_ratio(1,.5(stem3-tiny),y3-y4,x3r-x4); +alpha2=diag_ratio(1,.5(stem4-tiny),y11-y6,x6r-x1); +penpos3(alpha1*(stem3-tiny),0); penpos4(whatever,-90); +z5=.5[z5l,z5r]; penpos6(alpha2*(stem4-tiny),0); +forsuffixes $=l,r: y3'$=x_height; y6'$=0; z4$=z3'$+whatever*(z3-z4); + z5$=z6'$+whatever*(z11-z6)=whatever[z3,z4]; endfor +z3'r=z3r+penoffset z3-z4 of currentpen+whatever*(z3-z4); +% we have also z3'l=z3l+penoffset z4$-$z3 of currentpen+whatever$*$(z3$-$z4); +z6'r=z6r+penoffset z11-z6 of currentpen+whatever*(z11-z6); +z6'l=z6l+penoffset z6-z11 of currentpen+whatever*(z11-z6); +fill z4r--diag_end(4r,3'r,1,.5,3'l,4l)--z4l--cycle; % upper diagonal +fill z5l--diag_end(5l,6'l,.5,1,6'r,5r)--z5r--cycle; % lower diagonal +pos0(stem1,0); pos0'(stem2,0); y0=y0'; x0=x1; x0'=x2; +rt z0r=whatever[z3,z4]; filldraw stroke z1e..z0e--z0'e..z2e; % stem +if serifs: numeric inner_jut; + if rt x2r+jut+.5u+1<=lft x6l-jut: inner_jut=jut; + else: rt x2r+inner_jut+.5u+1=lft x6l-inner_jut; fi + sloped_serif.l(1,0,a,1/3,jut,serif_drop); % upper stem serif + dish_serif(2,0',b,1/3,jut,c,1/3,inner_jut); % lower stem serif + dish_serif(3,4,d,2/3,1.4jut,e,1/2,right_jut)(dark); % upper diagonal serif + dish_serif(6,5,f,1/2,inner_jut,g,1/3,right_jut)(dark);fi % lower diagonal serif +penlabels(0,1,2,3,4,5,6,11); endchar; + +cmchar "Lower-case L"; +beginchar("l",CT(5u#,5.56u#),asc_height#,0); l_width#:=5u#+2serif_fit#; +italcorr asc_height#*slant-serif_fit#+.5stem#-2u#; +adjust_fit(serif_fit#+stem_shift#,serif_fit#-stem_shift#); +pickup tiny.nib; pos1(stem',0); pos2(stem',0); +if odd(w-stem'): change_width; fi +lft x1l=hround(.5w-.5stem'); x1=x2; top y1=h; bot y2=0; +filldraw stroke z1e--z2e; % stem +if serifs: sloped_serif.l(1,2,a,1/3,jut,serif_drop); % upper serif + dish_serif(2,1,b,1/3,jut,c,1/3,jut); fi % lower serif +penlabels(1,2); endchar; + +cmchar "Lower-case M"; +beginchar("m",CT(15u#,15.56u#),x_height#,0); +italcorr .5[bar_height#,x_height#]*slant-serif_fit#+.5stem#-2u#; +adjust_fit(serif_fit#+stem_shift#,serif_fit#-stem_shift#); +numeric shaved_stem; shaved_stem=hround(mfudged.stem-2stem_corr); +pickup tiny.nib; pos1(mfudged.stem,0); pos2(mfudged.stem,0); +pos1'(shaved_stem,0); pos2'(shaved_stem,0); +pos3(mfudged.stem,0); pos5(mfudged.stem,0); +lft x1l=hround(side_gap-.5stem); x1l=x1'l=x2l=x2'l; % stem, sic +lft x3l=hround(.5w-.5mfudged.stem); x5-x3=x3-x1; +if not monospace: r:=hround(x5+x1)+r-w; fi % change width for better fit +top y1=h+min(oo,serif_drop); bot y2=0; y1=y1'; y2=y2'; +filldraw stroke z1'e--z2'e; % left stem +h_stroke(2,a,3,4); % left arch and middle stem +h_stroke(4,b,5,6); % right arch and right stem +if serifs: sloped_serif.l(1',2',c,1/3,jut,serif_drop); % upper left serif + numeric inner_jut; pickup tiny.nib; + if rt x2r+jut+.5u+1<=lft x4l-jut: inner_jut=jut; + else: rt x2r+jut+.5u+1=lft x4l-inner_jut; fi + dish_serif(2,1,d,1/3,jut,e,1/3,jut); % lower left serif + dish_serif(4,3,f,1/3,inner_jut,g,1/3,jut); % lower middle serif + dish_serif(6,5,h,1/3,inner_jut,i,1/3,jut); fi % lower right serif +penlabels(1,2,3,4,5,6); endchar; + +cmchar "Lower-case N"; +beginchar("n",10u#,x_height#,0); +italcorr .5[bar_height#,x_height#]*slant-serif_fit#+.5stem#-2u#; +adjust_fit(serif_fit#+stem_shift#,serif_fit#-stem_shift#); +pickup tiny.nib; pos1(stem,0); pos2(stem,0); +numeric shaved_stem; shaved_stem=hround(stem-2stem_corr); +pos1'(shaved_stem,0); pos2'(shaved_stem,0); pos3(stem,0); +lft x1l=hround(side_gap-.5stem); x1l=x1'l=x2l=x2'l; x3=w-x1; +top y1=h+min(oo,serif_drop); bot y2=0; y1=y1'; y2=y2'; +filldraw stroke z1'e--z2'e; % left stem +h_stroke(2,a,3,4); % arch and right stem +if serifs: sloped_serif.l(1',2',b,1/3,jut,serif_drop); % upper left serif + numeric inner_jut; pickup tiny.nib; + if rt x2r+jut+.5u+1<=lft x4l-jut: inner_jut=jut; + else: rt x2r+jut+.5u+1=lft x4l-inner_jut; fi + dish_serif(2,1,c,1/3,jut,d,1/3,jut); % lower left serif + dish_serif(4,3,e,1/3,inner_jut,f,1/3,jut); fi % lower right serif +penlabels(1,2,3,4); endchar; + +cmchar "Lower-case O"; +beginchar("o",CT(9u#,10u#),x_height#,0); +italcorr .7x_height#*slant; +adjust_fit(if monospace: .5u#,.5u# else: 0,0 fi); +penpos1(vair,90); penpos3(vair',-90); +penpos2(curve,180); penpos4(curve,0); +x2r=hround max(.5u,1.25u-.5curve); +x4r=w-x2r; x1=x3=.5w; y1r=h+vround 1.5oo; y3r=-oo; +y2=y4=.5h-vair_corr; y2l:=y4l:=.52h; +penstroke pulled_arc.e(1,2) & pulled_arc.e(2,3) + & pulled_arc.e(3,4) & pulled_arc.e(4,1) & cycle; % bowl +penlabels(1,2,3,4); endchar; + +cmchar "Lower-case P"; +beginchar("p",10u#+serif_fit#,x_height#,desc_depth#); +italcorr .5x_height#*slant+min(.5curve#-.85u#,-.1u#); +adjust_fit(serif_fit#,0); +pickup tiny.nib; pos1(stem',0); pos2(stem,0); +pos0'(stem',0); pos0(stem,0); z0l=z0'l; x0'=x1; x0=x2; +lft x1l=hround(side_gap-.5stem'); top y1=h if serifs: +min(oo,serif_drop) fi; +numeric edge; edge=rt x2r; +pickup fine.nib; pos3(if hefty:thin_join else: hair fi,180); +pos4(vair',90); pos5(curve,0); pos6(vair,-90); penpos7(x3l-x3r,-180); +rt x3l=max(rt x3l-(lft x3r-tiny.lft x2l), 1/3[rt x2,edge]); +y3=1/8[bar_height,x_height]; +x4l=w-.5(w-serif_fit)+.5u; top y4r=x_height+oo; +rt x5r=hround min(w-1.35u+.5curve,w-.6u); y5=.5x_height; +x6l=x4l-.2u; bot y6r=-oo; +x7=x3; y7=min(y3,y6+y4-y3+.6vair); +(x,y4r)=whatever[z3l,z4l]; x4r:=min(x,.5[x5r,x4]); +(x',y6r)=whatever[z7l,z6l]; x6r:=min(x',.5[x5r,x6]); +filldraw stroke z3e{up}...{right}z4e&super_arc.e(4,5) + &super_arc.e(5,6)&z6e{left}...{up}z7e; % bowl +y0=ypart(((edge,h)--(edge,0))intersectionpoint(z3l{up}...{right}z4l)); +pickup tiny.nib; bot y2=-d; +filldraw stroke z1e--z0'e--z0e--z2e; % stem +pickup crisp.nib; pos8(hair,0); pos7'(stem,0); +z7'=z2; x8l=x7'l; bot y8=0; +filldraw stroke z7'e--z8e; % point +if serifs: sloped_serif.l(1,0',a,1/3,jut,serif_drop); % upper serif + dish_serif(2,0,b,1/3,jut,c,1/3,jut); fi % lower serif +penlabels(0,1,2,3,4,5,6,7,8); endchar; + +cmchar "Lower-case Q"; +beginchar("q",10u#+serif_fit#,x_height#,desc_depth#); +italcorr x_height#*slant-serif_fit#+.5stem#-2u# if serifs:+.5u# fi; +adjust_fit(0,serif_fit# if not Times_Compat: if serifs: -.5u# fi fi); +pickup tiny.nib; pos1(stem',0); pos2(stem,0); +pos0'(stem',0); pos0(stem,0); z0r=z0'r; x0'=x1; x0=x2; +rt x1r=hround(w-side_gap+.5stem'); +numeric edge; edge=lft x2l; +pickup fine.nib; pos3(if hefty:thin_join else: hair fi,0); +pos4(vair',90); pos5(curve,180); pos6(vair,270); penpos7(x3r-x3l,360); +lft x3l=min(lft x3l-(rt x3r-tiny.rt x2r),2/3[lft x2,edge]); y3=bar_height; +x4l=.5(w-serif_fit)-.3u; top y4r=x_height+oo; +lft x5r=hround max(1.35u-.5curve,.6u); y5=.5x_height; +x6l=x4l-.2u; bot y6r=-oo; y7=min(y3,y6+y4-y3+.6vair); +lft x7l=min(lft x7l-(rt x7r-tiny.rt x2r),1/3[lft x2,edge]); +(x,y4r)=whatever[z3l,z4l]; x4r:=max(x,.5[x5r,x4]); +(x',y6r)=whatever[z7l,z6l]; x6r:=max(x',.5[x5r,x6]); +filldraw stroke z3e{up}...{left}z4e&super_arc.e(4,5) + &super_arc.e(5,6)&z6e{right}...{up}z7e; % bowl +y1=ypart(((edge,h)--(edge,0))intersectionpoint(z3l{up}...{left}z4l)); +y0=ypart(((edge,h)--(edge,0))intersectionpoint(z6l{right}...{up}z7l)); +pickup tiny.nib; bot y2=-d; +filldraw stroke z1e--z0'e--z0e--z2e; % stem +pickup crisp.nib; +pos8(hround(hair-stem_corr),0); pos7'(stem',0); +z7'=z1; x8r=x7'r; top y8=h+oo; +filldraw stroke z7'e--z8e; % point +if serifs: dish_serif(2,0,b,1/3,jut,c,1/3,jut); fi % lower serif +penlabels(0,1,2,3,4,5,6,7,8); endchar; + +cmchar "Lower-case R"; +numeric r_flare#; r_flare#=.75[if serifs: stem# else: vair# fi,flare#]; +define_whole_blacker_pixels(r_flare); +beginchar("r",CT(if serifs:max(7u#,5.5u#+r_flare#) else:6.5u# fi,6.66u#), + x_height#,0); +italcorr x_height#*slant if not serifs: +.25u# fi; +adjust_fit(serif_fit#,0); +pickup fine.nib; top y4r=h+oo; +if serifs: pos4(vair,90); pos5(hair,0); + x4=w-max(if Times_Compat: 1.6 else: 1.75 fi u,.25u+r_flare); + rt x5r=hround(w-if Times_Compat: .1u else: .5u fi +.5); + y5+.5r_flare=.9[bar_height,h]+oo; + pos6(r_flare,0); bulb(4,5,6); % bulb +else: pos4(r_flare,90); rt x4=hround(w-.25u); fi +pos3(thin_join,180); rt x3l=hround(side_gap-.5stem')+stem'; top y3=bar_height; +filldraw stroke z3e{up}...{right}z4e; % arc +pickup tiny.nib; pos0(stem',0); pos2(stem',0); +pos1(hround(stem-3stem_corr),0); top y1=h+min(oo,serif_drop); +pos0'(hround(stem-3stem_corr),0); y0=y0'=y3; x1l=x0l=x0'l=x2l; +lft x1l=hround(side_gap-.5stem'); bot y2=0; +filldraw stroke z1e--z0'e--z0e--z2e; % stem +if serifs: sloped_serif.l(1,0',a,1/3,jut,serif_drop); % upper serif + dish_serif(2,0,b,1/3,jut,c,1/3,1.25jut); fi % lower serif +penlabels(1,2,3,4,5,6); endchar; + +cmchar "Lower-case S"; +beginchar("s",CT(7.1u#,7.78u#),x_height#,0); +italcorr x_height#*slant-if serifs:.55u# else:.3u# fi; +adjust_fit(if monospace: .5u#,.4u# else: 0,if serifs:0 else:-.2u# fi fi); +numeric theta; theta=90-angle(40u,h); slope:=-h/40u; % angle at middle +numeric s_slab; s_slab=if serifs:vair else:Vround .1[vair,stem] fi; +numeric ess'; ess'=max(fine.breadth,ess); +pickup fine.nib; pos2(max(fine.breadth,s_slab-vround vair_corr),-100); +pos0(ess',theta); pos7(s_slab,-90); x2l=x0=x7=.5w; +top y2l=h+vround 1.5oo; bot y7r=-oo; +y0-.5ess'=y7l+if serifs:.54 else: .52 fi\\(y2r-y7l-ess'); +lft x3l=hround .6u; rt x6r=hround(w-.6u); +x3r-x3l=x6r-x6l=hround .5[s_slab,ess']-fine; +ellipse_set(2l,3l,4l,0l); ellipse_set(2r,3r,4r,0r); y3=y3r; +ellipse_set(7l,6l,5l,0l); ellipse_set(7r,6r,5r,0r); y6=y6r; +interim superness:=more_super; +filldraw stroke super_arc.e(2,3) & z3e{down} + ..z4e---z5e..z6e{down} & super_arc.e(6,7); % main stroke +if serifs: pos1(hair,180); pos8(hair,180); + rt x1l=hround(w-1.05u); lft x8r=hround .6u; + bot y1=min(bot y2r,vround 1/5[top y5r,h]); + top y8=max(top y7l,vround 5/6 bot y4l); + filldraw stroke z1e{up}....{left}z2e; % upper arc + filldraw stroke z7e{left}....{x8-x7,5(y8-y7)}z8e; % lower arc + path upper_arc, lower_arc; + upper_arc=z1{up}....{left}z2; lower_arc=z7{left}....{x8-x7,5(y8-y7)}z8; + pos10(.3[fine.breadth,cap_hair],0); pos9(.3[fine.breadth,cap_hair],0); + x10r=x1l; top y10=top y2l; x9l=x8r; bot y9=bot y7r; + x1l-x1'=x8'-x8r=1.6cap_curve-fine; y1'=y1; y8'=y8; + numeric t; t=xpart(upper_arc intersectiontimes(z10l--z1')); + filldraw z1l--z10r--z10l--subpath(t,0) of upper_arc--cycle; % upper barb + t:=xpart(lower_arc intersectiontimes(z9r--z8')); + filldraw z8r--z9l--z9r--subpath(t,1) of lower_arc--cycle; % lower barb +else: pos1(4/7[s_slab,flare],-100); pos8(flare,-100); + x1l=good.x(x1l+w-u-rt x1); lft x8r=hround .5u; + top y1l=vround(.93h+1.5oo); bot y8r=vround .1h-oo; + filldraw stroke term.e(2,1,right,.9,4); % upper arc and terminal + filldraw stroke term.e(7,8,left,1,4); fi % lower arc and terminal +penlabels(0,1,1',2,3,4,5,6,7,8,8',9,10); endchar; + +cmchar "Lower-case T"; +beginchar("t",CT(6u#+max(u#,.5stem#),5.56u#), + min(asc_height#,if hefty:9/7 else:10/7 fi\\ x_height#),0); +italcorr x_height#*slant if serifs: -.9u# else: -.4u# fi; +adjust_fit(0,if serifs: 0 else: -.5u# fi); +numeric shaved_stem; shaved_stem=hround(stem if hefty:-\\2stem_corr fi); +pickup fine.nib; pos2(shaved_stem,180);pos3(shaved_stem,180); +lft x2r=lft x3r=hround(side_gap-.5shaved_stem); +y2=y8; y3=max(.5bar_height,2vair); +pickup crisp.nib; pos8(bar,90); +rt x8=hround(w- if Times_Compat: .4u else: 1.3u fi); +top y8r=x_height; lft x7=hround 1/3u; y7l=y8l; +if hefty: pos7(bar,90); + filldraw stroke z7e--z8e; % crossbar + pickup tiny.nib; pos1(hround(shaved_stem-stem_corr),0); + rt x1r=fine.rt x2l; top y1=h; + penpos2'(x1r-x1l,0); x2'=x1; y2'=y2; + filldraw stroke z1e--z2'e; % upper terminal +else: pos7(vair,90); pos1(hair,0); + rt x1r=fine.rt x2l; top y1=h; + filldraw z1l{down}...{left}z7r--z7l--z8l + --z8r--(x1r,y8r)--z1r--cycle; fi % upper terminal and crossbar +pickup fine.nib; interim superness:=more_super; +pos4(vair',-90); bot y4r=-oo; rt x5r=hround(w- if Times_Compat: 0 fi u); +if serifs: pos5(hair,0); x4l=.5[x3l,x5l]; + y5= if Times_Compat: .5 else: 1 fi [0,y3]; + (x,y4r)=whatever[z4l,z5l]; x4r:=max(x,.5[x3r,x4]); + filldraw stroke z2e..super_arc.e(3,4)...{up}z5e; % stem and hook + if Times_Compat: else: + pickup crisp.nib; pos6(hair,0); pos5'(hair,0); + x6=x5=x5'; top y6=max(vround .75bar_height,top y5); y5=y5'; + filldraw stroke z5'e--z6e; fi % terminal +else: pos5(vair,-75); top y5l=vround .2[top y4l,bar_height]; + x5l:=good.x x5l; x4l=1/3[x3l,x5l]; x4r:=1/3[x3r,x5r]; y3l:=y3l+.2vair; + filldraw stroke z2e..super_arc.e(3,4); % stem and hook + path p; p=stroke z4e{right}..tension .9 and atleast 1..z5e; % terminal + if (xpart(z5l-precontrol 1 of p)<0) or (xpart(z5r-postcontrol 2 of p)<0): + filldraw stroke z4e{right}...{up}z5e; + else: filldraw p; fi fi; +penlabels(1,2,3,4,5,6,7,8); endchar; + +cmchar "Lower-case U"; +beginchar("u",10u#,x_height#,0); +italcorr x_height#*slant-serif_fit#+.5stem#-2u#; +adjust_fit(serif_fit#+stem_shift#,serif_fit#-stem_shift#); +numeric light_vair; light_vair=vair if hefty: -vround 2vair_corr fi; +if light_vair<fine.breadth: light_vair:=fine.breadth; fi +pickup tiny.nib; pos1(stem,0); pos2(stem,0); +pos3(stem,0); pos4(stem',0); +lft x1l=hround(side_gap-.5stem); x1=x2; x3=w-x1; x3r=x4r; +if serifs: top y1=h if Times_Compat: else: +min(oo,serif_drop) fi; + bot y4=-min(oo,serif_drop); +else: top y1=h; bot y4=0; fi +pos0(stem,0); pos0'(stem',0); x0=x3; x0'=x4; y0=y0'; +penpos2'(stem-fine,-180); z2'=z2; y3=y1; y2=.5bar_height; +penpos5(max(eps,light_vair-fine),-90); penpos6(thin_join-fine,0); +y6=y0=2/3bar_height; +filldraw stroke z1e--z2e; % left stem +filldraw stroke z3e..z0e--z0'e..z4e; % right stem +pickup fine.nib; bot y5r=-oo; x5l=.5w-.25u; lft x6l=tiny.lft x0l; +(x,y5r)=whatever[z5l,z6l]; x5r:=max(x,.5[x5,x2'r]); +filldraw stroke {{interim superness:=hein_super; + pulled_arc.e(2',5)}} & z5e{right}...{up}z6e; % arc +if serifs: numeric upper_serif_drop, lower_serif_drop; + if Times_Compat: upper_serif_drop=0; lower_serif_drop=serif_drop; + else: upper_serif_drop=serif_drop; lower_serif_drop=min(oo,serif_drop); fi + sloped_serif.l(1,2,a,1/3,jut,upper_serif_drop); % upper left serif + sloped_serif.l(3,0,b,1/3,jut,upper_serif_drop); % upper right serif + sloped_serif.r(4,0',c,1/3,jut,lower_serif_drop); fi % lower right serif +penlabels(1,2,3,4,5); labels(6); endchar; + +cmchar "Lower-case V"; +beginchar("v",CT(if serifs: 9.5u# else:9u# fi,10u#),x_height#,0); +italcorr x_height#*slant+.25u#; +adjust_fit(serif_fit# if monospace:+\\.5u#,.5u#+ else:,fi\\ serif_fit#); +numeric left_stem,right_stem,outer_jut,alpha; +left_stem=fudged.stem-stem_corr; +right_stem=min(fudged.hair if hefty:-2stem_corr fi,left_stem); +outer_jut=.75jut; x1l=w-x4r=l+letter_fit+outer_jut+.25u; y1=y4=h; +x2-x1=x4-x3; x2l+apex_corr=x3l; y2=y3=-apex_oo; +alpha=diag_ratio(2,right_stem,y1-y2,x4r-x1l-apex_corr); +penpos1(alpha*left_stem,0); penpos2(alpha*left_stem,0); +penpos3(alpha*right_stem,0); penpos4(alpha*right_stem,0); +z0=whatever[z1r,z2r]=whatever[z3l,z4l]; +if y0>notch_cut: y0:=notch_cut; + fill z0+.5right{up}...{z4-z3}diag_end(3l,4l,1,1,4r,3r) + --diag_end(4r,3r,1,1,2l,1l)--diag_end(2l,1l,1,1,1r,2r){z2-z1} + ...{down}z0+.5left--cycle; % left and right diagonals +else: fill z0--diag_end(0,4l,1,1,4r,3r)--diag_end(4r,3r,1,1,2l,1l) + --diag_end(2l,1l,1,1,1r,0)--cycle; fi % left and right diagonals +if serifs: numeric inner_jut; pickup tiny.nib; + prime_points_inside(1,2); prime_points_inside(4,3); + if rt x1'r+jut+.5u+1<=lft x4'l-jut: inner_jut=jut; + else: rt x1'r+inner_jut+.5u+1=lft x4'l-inner_jut; fi + dish_serif(1',2,a,1/3,outer_jut,b,1/2,inner_jut); % left serif + dish_serif(4',3,c,.6,inner_jut,d,1/2,outer_jut)(dark); fi % right serif +penlabels(0,1,2,3,4); endchar; + +cmchar "Lower-case W"; +beginchar("w",CT(13u#,14.44u#),x_height#,0); +italcorr x_height#*slant+.25u#; +adjust_fit(serif_fit#,serif_fit#); +numeric stem[],outer_jut,upper_notch,alpha,mid_corr; +outer_jut=.7jut; x1l=w-x8r=l+letter_fit+outer_jut+.25u; +stem1=fudged.stem-stem_corr; +stem4=min(fudged.hair if hefty:-2stem_corr fi,stem1); +stem2=if hefty:.1[vair,stem4] else: stem4 fi; +stem3=max(stem2,stem1-3stem_corr); +x2-x1=x4-x3=x6-x5=x8-x7; x2l+apex_corr=x3l; x6l+apex_corr=x7l; +y1=y8=h; y2=y3=y6=y7=-apex_oo; +y4=y5=if monospace: vround .6 fi\\ h; upper_notch=y4-notch_cut; +mid_corr=if monospace or hefty:-.3apex_corr else: .5jut fi; +alpha=diag_ratio(4,stem2-stem3+stem4,y1-y2,x8r-x1l+mid_corr-2apex_corr); +penpos1(alpha*stem1,0); penpos2(alpha*stem1,0); +penpos3(alpha*stem2,0); penpos4(alpha*stem2,0); +penpos5(alpha*stem3,0); penpos6(alpha*stem3,0); +penpos7(alpha*stem4,0); penpos8(alpha*stem4,0); +x4l-x1l=floor(x4l-x1l+.5(x5r+mid_corr-x4r)); % x5r $\approx$ x4r+mid_corr +z23=whatever[z1r,z2r]=whatever[z3l,z4l]; +z45=whatever[z3r,z4r]=whatever[z5l,z6l]; +z67=whatever[z5r,z6r]=whatever[z7l,z8l]; +fill diag_end(1l,2l,1,1,3r,4r){z4-z3} + ...if y45<upper_notch:(x45,upper_notch)+.5left{up} + --(x45,upper_notch)+.5right{down} else: z45&z45 fi + ...{z6-z5}diag_end(5l,6l,1,1,7r,8r)--diag_end(7r,8r,1,1,8l,7l){z7-z8} + ...if y67>notch_cut:(x67,notch_cut)+.5right{down} + --(x67,notch_cut)+.5left{up} else: z67&z67 fi + ...{z5-z6}special_diag_end(6,5,4,3){z3-z4} + ...if y23>notch_cut:(x23,notch_cut)+.5right{down} + --(x23,notch_cut)+.5left{up} else: z23&z23 fi + ...{z1-z2}diag_end(2r,1r,1,1,1l,2l)--cycle; % diagonals +if serifs: numeric inner_jut[]; pickup tiny.nib; + prime_points_inside(1,2); prime_points_inside(5,6); prime_points_inside(8,7); + if monospace: inner_jut1=inner_jut4=1.5jut; + elseif hefty: inner_jut1=inner_jut4=jut; + else: fill diag_end(6r,5r,1,1,5l,6l)--.9[z5l,z6l] + ..{z5-z6}.1[z5r,z6r]--cycle; % middle stem + inner_jut2=.7inner_jut1; inner_jut4=1.1inner_jut3; + if rt x1'r+jut+.5u+1<=lft x5'l-.7jut: inner_jut1=jut; + else: rt x1'r+inner_jut1+.5u+1=lft x5'l-inner_jut2; fi + if rt x5'r+jut+.5u+1<=lft x8'l-1.1jut: inner_jut3=jut; + else: rt x5'r+inner_jut3+.5u+1=lft x8'l-inner_jut4; fi + dish_serif(5',6,e,1/3,inner_jut2,f,1/2,inner_jut3); fi % middle serif + dish_serif(1',2,a,1/3,outer_jut,b,1/2,inner_jut1); % left serif + dish_serif(8',7,c,.6,inner_jut4,d,1/2,outer_jut)(dark); fi % right serif +penlabels(0,1,2,3,4,5,6,7,8,23,45,67); endchar; + +cmchar "Lower-case X"; +beginchar("x",CT(if serifs:9.5u# else:9u# fi,10u#),x_height#,0); +italcorr x_height#*slant-.05u#; +adjust_fit(serif_fit# if monospace:+\\.5u#,.5u#+ else:,fi\\ serif_fit#); +numeric stem[],outer_jut,xjut,alpha[]; +stem1=fudged.stem-4stem_corr; stem2=min(fudged.hair,stem1); +outer_jut=.75jut; xjut= if serifs: (stem1-stem2)/4 else: 0 fi; +x1l=l+letter_fit+.1u+outer_jut; x2r=r-letter_fit-.3u-outer_jut-xjut; +x3l=l+letter_fit+outer_jut+xjut; x4r=r-letter_fit-outer_jut; +y1=y2=h; y3=y4=0; +alpha1=diag_ratio(1,stem1,h,x4r-x1l); +alpha2=diag_ratio(1,stem2,h,x2r-x3l); +penpos1(alpha1*stem1,0); penpos2(alpha2*stem2,0); +penpos3(alpha2*stem2,0); penpos4(alpha1*stem1,0); +if hefty: z0=whatever[z1,z4]=whatever[z2,z3]; + x12=x34=x0; y13=y24=y0; + z12=whatever[z2l,z3l]; z13=whatever[z2l,z3l]; + z24=whatever[z2r,z3r]; z34=whatever[z2r,z3r]; + forsuffixes $=13,24,34: z$'=.2[z$,z0]; endfor + fill diag_end(12,1r,.5,1,1l,13')--z13'--diag_end(13',3l,1,.5,3r,34')--z34' + --diag_end(34',4l,.5,1,4r,24')--z24' + --diag_end(24',2r,1,.5,2l,12)--z12--cycle; % diagonals +else: fill diag_end(4r,1r,.5,1,1l,4l) + --diag_end(1l,4l,.5,1,4r,1r)--cycle; % left diagonal + fill diag_end(2l,3l,.5,1,3r,2r) + --diag_end(3r,2r,.5,1,2l,3l)--cycle; fi % right diagonal +if serifs: numeric inner_jut[]; pickup tiny.nib; + prime_points_inside(1,4); prime_points_inside(2,3); + prime_points_inside(3,2); prime_points_inside(4,1); + if rt x1'r+jut+.5u+1<=lft x2'l-jut-xjut: inner_jut1=jut; + else: rt x1'r+inner_jut1+.5u+1=lft x2'l-inner_jut1-xjut; fi + if rt x3'r+jut+.5u+1<=lft x4'l-jut-xjut: inner_jut2=jut; + else: rt x3'r+inner_jut2+.5u+1=lft x4'l-inner_jut2-xjut; fi + dish_serif(1',4,a,1/3,outer_jut,b,2/3,inner_jut1); % upper left serif + dish_serif(4',1,c,2/3,inner_jut2,d,1/3,outer_jut); % lower right serif + dish_serif(2',3,e,2/3,inner_jut1+xjut, + f,1/2,outer_jut+xjut)(dark); % upper right serif + dish_serif(3',2,g,1/2,outer_jut+xjut, + h,2/3,inner_jut2+xjut)(dark); fi % lower left serif +penlabels(0,1,2,3,4,12,13,24,34); endchar; + +cmchar "Lower-case Y"; +beginchar("y",CT(if serifs:9.5u# else:9u# fi,10u#),x_height#,desc_depth#); +italcorr x_height#*slant+.25u#; +adjust_fit(serif_fit# if monospace:+\\.5u#,.5u#+ else:,fi\\ serif_fit#); +numeric left_stem,right_stem,bot_stem,bot_vair,outer_jut; +left_stem=fudged.stem-stem_corr; +right_stem=fudged.hair if hefty:-2stem_corr fi; +bot_stem=fudged.hair if hefty:-8stem_corr fi; +bot_vair=Vround(if serifs: vair else:.5[vair,bot_stem] fi); +outer_jut=.75jut; +x1l=w-x4r=l+letter_fit+outer_jut+.25u; y1=y4r=h; y2=y3=0; x2l=x3l; +numeric alpha,alpha[]; x9=3u; y9=bot_vair-d-oo; +alpha1=diag_ratio(2,bot_stem,y1-y3,x4r-x1l-apex_corr); +alpha2=diag_ratio(1,bot_stem,y1-y9,x4r-x9); +if alpha1<alpha2: x2l-x1l=x4r-x3r+apex_corr; alpha=alpha1; +else: alpha=alpha2; z3l=whatever[z9,z4r-(alpha*bot_stem,0)]; fi +penpos3(alpha*bot_stem,0); penpos4(alpha*right_stem,0); +alpha3=(y1++(x2l-x1l))/y1; +penpos1(alpha3*left_stem,0); penpos2(alpha3*left_stem,0); +z0=whatever[z1r,z2r]=z4l+whatever*(z3r-z4r); +if y0>notch_cut: y0:=notch_cut; + fill z0+.5right{up}...{z4r-z3r}diag_end(0,4l,1,1,4r,3r) + --z3r--z2l--diag_end(2l,1l,1,1,1r,2r){z2-z1} + ...{down}z0+.5left--cycle; % left and right diagonals +else: fill z0--diag_end(0,4l,1,1,4r,3r)--z3r--z2l + --diag_end(2l,1l,1,1,1r,0)--cycle; fi % left and right diagonals +penpos5(alpha*bot_stem,0); z5r=whatever[z3r,z4r]; y5-.5vair=-.5d; +if serifs: numeric light_bulb; light_bulb=hround 7/8[hair,flare]; clearpen; + penpos6(vair,-90); penpos7(hair,-180); penpos8(light_bulb,-180); + x6=2u; y6r=-d-oo; y8-.5light_bulb=-.85d; x8r=hround .35u; + fill stroke z3e---z5e...{left}z6e; bulb(6,7,8); % arc and bulb + numeric inner_jut; pickup tiny.nib; + prime_points_inside(1,2); prime_points_inside(4,3); + if rt x1'r+jut+.5u+1<=lft x4'l-jut: inner_jut=jut; + else: rt x1'r+inner_jut+.5u+1=lft x4'l-inner_jut; fi + dish_serif(1',2,a,1/3,outer_jut,b,1/2,inner_jut); % left serif + dish_serif(4',3,c,.6,inner_jut,d,1/2,outer_jut)(dark); % right serif +else: penpos6(bot_vair,-90); x6=2.5u; y6r=-d-oo; + fill stroke z3e---z5e...{left}z6e; % arc + pickup fine.nib; pos6'(bot_vair,-90); z6'=z6; + pos7(2/3[bot_vair,flare],-85); + lft x7l=hround u; bot y7r=vround-.96d-oo; y7l:=good.y y7l; + filldraw stroke term.e(6',7,left,1,4); fi % arc and terminal +penlabels(0,1,2,3,4,5,6,7,8,9); endchar; + +cmchar "Lower-case Z"; +beginchar("z",CT(8u#,8.88u#),x_height#,0); +italcorr x_height#*slant-.5serif_fit#-.3u#; +adjust_fit(0,.5serif_fit#); +numeric arm_thickness[],z_stem; +if hefty: arm_thickness1=Vround(vair-vair_corr); arm_thickness2=vair; + z_stem=.6[vair,stem]; +else: arm_thickness1=vair; arm_thickness2=vair'; z_stem=.9[vair,stem]; fi +pickup tiny.nib; rt x1r=rt x2r=hround(w-.8u); lft x3l=lft x4l=hround .5u; +top y1=h; y2=min(y1,h-2/3arm_thickness1); +bot y4=0; y3=max(y4,2/3arm_thickness2); +numeric alpha; alpha=diag_ratio(1,z_stem-tiny,y2-y3,x2r-x3l-slant*(y2-y3)); +penpos1(alpha*(z_stem-tiny),0); penpos2(alpha*(z_stem-tiny),0); +penpos3(alpha*(z_stem-tiny),0); penpos4(alpha*(z_stem-tiny),0); +pair delta; delta=penoffset z3-z2 of currentpen; +fill top lft z1l--z2l+delta---z3l+delta..lft z3l---lft z4l..bot z4l + ---bot rt z4r--z3r-delta---z2r-delta..rt z2r---rt z1r..top z1r + ---cycle; % diagonal +pickup crisp.nib; pos5(arm_thickness1,90); pos6(hair,180); +top y5r=h; x5=x1; lft x6r=hround .75u; y6=good.y(y5l-beak/1.4)-eps; +arm(5,6,a,beak_darkness,-.4beak_jut); % upper arm and beak +pos7(arm_thickness2,-90); pos8(hair,0); +bot y7r=0; x7=x4; rt x8r=hround(w-.75u); y8=good.y(y7l+beak/1.2)+eps; +arm(7,8,b,beak_darkness,.6beak_jut); % lower arm and beak +penlabels(1,2,3,4,5,6,7,8); endchar; + +cmchar "Dotless I"; +beginchar(oct"031",CT(5u#,5.56u#),x_height#,0); +italcorr x_height#*slant-serif_fit#+.5stem#-2u#; +adjust_fit(serif_fit#+stem_shift# if monospace:+.25u#fi,serif_fit#-stem_shift#); +pickup tiny.nib; pos1(stem',0); pos2(stem',0); +if odd(w-stem'): change_width; fi +lft x1l=hround(.5w-.5stem'); x1=x2; +top y1=x_height if serifs: +min(oo,serif_drop) fi; bot y2=0; +filldraw stroke z1e--z2e; % stem +if serifs: sloped_serif.l(1,2,a,1/3,.95jut,serif_drop); % upper serif + dish_serif(2,1,b,1/3,jut,c,1/3,.9jut); fi % lower serif +penlabels(1,2); endchar; + +cmchar "Dotless letter J"; +beginchar(oct"032",CT(5.5u#,5.56u#),x_height#,desc_depth#); +italcorr x_height#*slant-serif_fit#+.5stem#-2u#; +adjust_fit(serif_fit#+2stem_shift# if monospace:+.5u# fi, + serif_fit#-2stem_shift# if monospace:-.5u# fi); +pickup tiny.nib; pos1(stem',0); pos2(stem',0); +rt x1r=hround(.5w+.25u+.5stem'); x1=x2; +top y1=x_height if serifs: +min(oo,serif_drop) fi; bot y2=-1/3d; +filldraw stroke z1e--z2e; % stem +if serifs: sloped_serif.l(1,2,a,1/3,1.1jut,serif_drop); % upper serif + pickup tiny.nib; pos5(vair,-90); pos6(hair,-180); pos7(flare,-180); + x5=.5[x2,x6r]; bot y5r=-d-oo; y6-.5flare=-.88d; + if monospace: lft x6r=0 else: z6r=z7r; rt x7l=floor .75u fi; + (x,y5r)=whatever[z5l,z2l]; x5r:=max(x,.5[x6r,x5]); + filldraw stroke z2e{down}...z5e{left}; bulb(5,6,7); % arc and bulb +else: pickup fine.nib; pos2'(stem',0); z2'=z2; + pos6(.2[vair,stem'],-90); pos7(vair,-90); + lft x7r=hround -.75u; bot y7r=vround 5/6(-d-oo); + x3r=x1r; top y4r=min(2x_height,h+1); + (x,y7l)=whatever[z7r,(x1,min(h,asc_height))]; x7l:=x; + z5r=z2'r; (x2'l,y5l)=whatever[z7l,z5r]; x5l=x2'l; y5=y5r; + x6r=.5[x7r,x5r]; x6l:=.5[x7l,x5l]; bot y6r=-d-oo; + filldraw stroke z2'e..{down}z5e & super_arc.e(5,6) + & term.e(6,7,left,1,4); fi % arc and terminal +penlabels(1,2,5,6,7); endchar; + +% end of tiparoml.mf diff --git a/Master/texmf-dist/fonts/source/public/tipa/tipasb10.mf b/Master/texmf-dist/fonts/source/public/tipa/tipasb10.mf new file mode 100644 index 00000000000..1eef96f4c86 --- /dev/null +++ b/Master/texmf-dist/fonts/source/public/tipa/tipasb10.mf @@ -0,0 +1,92 @@ +% tipasb10.mf: TIPA Sans Serif Bold Extended 10 point parameter file +% Copyright 1996-2003 FUKUI Rei +% +% This program may be distributed and/or modified under the +% conditions of the LaTeX Project Public License, either version 1.2 +% of this license or (at your option) any later version. +% The latest version of this license is in +% http://www.latex-project.org/lppl.txt +% and version 1.2 or later is part of all distributions of LaTeX +% version 1999/12/01 or later. +% +% This program consists of all files listed in Manifest.txt. +% +% Version 1.2 2003/01/01 +% +% This file is based on: +% Computer Modern font series by D. E. Knuth and +% TSIPA by KOBAYASHI Hajime, FUKUI Rei and SHIRAKAWA Shun. + +if unknown cmbase: input cmbase fi +if unknown tipabase: input tipabase fi + +font_identifier:="TIPASB"; font_size 10pt#; + +Times_Compat:=false; +if Times_Compat: input tipatr fi + +u#:=22/36pt#; +width_adj#:=22/36pt#; +serif_fit#:=-9/36pt#; +cap_serif_fit#:=-11/36pt#; +letter_fit#:=0pt#; +body_height#:=270/36pt#; +asc_height#:=250/36pt#; +cap_height#:=250/36pt#; +fig_height#:=250/36pt#; +x_height#:=165/36pt#; +math_axis#:=90/36pt#; +bar_height#:=90/36pt#; +comma_depth#:=38/36pt#; +desc_depth#:=70/36pt#; +crisp#:=26/36pt#; +tiny#:=26/36pt#; +fine#:=9/36pt#; +thin_join#:=9/36pt#; +hair#:=49/36pt#; +stem#:=49/36pt#; +curve#:=49/36pt#; +ess#:=43/36pt#; +flare#:=40/36pt#; +dot_size#:=47/36pt#; +cap_hair#:=49/36pt#; +cap_stem#:=53/36pt#; +cap_curve#:=53/36pt#; +cap_ess#:=51/36pt#; +rule_thickness#:=30/36pt#; +dish#:=0pt#; +bracket#:=0pt#; +jut#:=0pt#; +cap_jut#:=0pt#; +beak_jut#:=0pt#; +beak#:=1.5/36pt#; +vair#:=26/36pt#; +notch_cut#:=49/36pt#; +bar#:=26/36pt#; +slab#:=36/36pt#; +cap_bar#:=34/36pt#; +cap_band#:=31/36pt#; +cap_notch_cut#:=45/36pt#; +serif_drop#:=2/36pt#; +stem_corr#:=1/36pt#; +vair_corr#:=2/36pt#; +apex_corr#:=18/36pt#; +o#:=8/36pt#; +apex_o#:=0pt#; +slant:=0; +fudge:=.88; +math_spread:=.5; +superness:=3/4; +superpull:=1/18; +beak_darkness:=0; +ligs:=2; +square_dots:=true; +hefty:=true; +serifs:=false; +monospace:=false; +low_asterisk:=false; +math_fitting:=false; +sc.u#:=17.21/36pt#; +sc.letter_fit#:=2.4/36pt#; + +generate tipa % switch to the driver file diff --git a/Master/texmf-dist/fonts/source/public/tipa/tipasc.mf b/Master/texmf-dist/fonts/source/public/tipa/tipasc.mf new file mode 100644 index 00000000000..def61220f4a --- /dev/null +++ b/Master/texmf-dist/fonts/source/public/tipa/tipasc.mf @@ -0,0 +1,496 @@ +% tipasc.mf: TIPA small capital phonetic symbols +% Copyright 1996-2003 FUKUI Rei +% +% This program may be distributed and/or modified under the +% conditions of the LaTeX Project Public License, either version 1.2 +% of this license or (at your option) any later version. +% The latest version of this license is in +% http://www.latex-project.org/lppl.txt +% and version 1.2 or later is part of all distributions of LaTeX +% version 1999/12/01 or later. +% +% This program consists of all files listed in Manifest.txt. +% +% Version 1.2 2003/01/01 +% +% This font is based on: +% Computer Modern font series by D. E. Knuth and +% TSIPA by KOBAYASHI Hajime, FUKUI Rei and SHIRAKAWA Shun. +% + +% romanu.mf -> tipasc.mf conversion: +% +% x_height -> .626x_height +% bar_height -> .632bar_height +% cap_height -> x_height +% comma_depth -> 44/70comma_depth +% cap_hair -> sc_hair +% cap_stem -> sc_stem +% cap_curve -> sc_curve +% cap_ess -> sc_ess +% cap_jut -> sc_jut +% cap_bar -> sc_bar +% cap_band -> sc_band + +def sc_hair = hair enddef; +def sc_stem = stem enddef; +def sc_curve = curve enddef; +def sc_jut = cap_jut enddef; +def sc_bar = cap_bar enddef; +def sc_band = cap_band enddef; + +cmchar "Small capital Y"; +beginchar("Y",13u#,x_height#,0); +italcorr x_height#*slant+.45u#; +adjust_fit(cap_serif_fit#,cap_serif_fit#); +numeric left_stem,right_stem,outer_jut,dy,alpha; +left_stem=sc_stem-stem_corr; +right_stem=min(sc_hair if hefty:-2stem_corr fi,left_stem); +outer_jut=.75sc_jut; x1l=w-x4r=l+letter_fit+outer_jut+.05u; +x2l=x5l=hround(.5w-.5left_stem); x3r=x5r; y1=y4=h; y2=y3=y5=.4h; +dy=y1-y2; alpha=((x2l-x1l)++dy)/dy; +penpos1(alpha*left_stem,0); penpos2(alpha*left_stem,0); +penpos3(alpha*right_stem,0); penpos4(alpha*right_stem,0); +penpos5(left_stem,0); penpos6(left_stem,0); x5=x6; y6=0; +z0=whatever[z1r,z2r]=whatever[z3l,z4l]; +if y0>y2+cap_notch_cut: y0:=y2+cap_notch_cut; + fill z0+.5right{up}...{z4-z3}diag_end(3l,4l,1,1,4r,3r)--z5r + --diag_end(5r,6r,1,1,6l,5l)--z5l--diag_end(2l,1l,1,1,1r,2r){z2-z1} + ...{down}z0+.5left--cycle; % diagonals and stem +else: fill z0--diag_end(0,4l,1,1,4r,3r)--z5r + --diag_end(5r,6r,1,1,6l,5l)--z5l + --diag_end(2l,1l,1,1,1r,0)--cycle; fi % diagonals and stem +if serifs: numeric inner_jut; pickup tiny.nib; + prime_points_inside(1,2); prime_points_inside(4,3); prime_points_inside(6,5); + if rt x1'r+sc_jut+.5u+1<=lft x4'l-sc_jut: inner_jut=sc_jut; + else: rt x1'r+inner_jut+.5u+1=lft x4'l-inner_jut; fi + dish_serif(1',2,a,1/3,outer_jut,b,1/2,inner_jut); % upper left serif + dish_serif(4',3,c,.6,inner_jut,d,1/2,outer_jut)(dark); % upper right serif + dish_serif(6',5,e,1/3,sc_jut,f,1/3,sc_jut); fi % lower serif +math_fit(.5u#-x_height#*slant,ic#-4u#); +penlabels(0,1,2,3,4,5,6); endchar; + +cmchar "Small capital I"; +beginchar("I",max(6u#,4u#+sc_stem#),x_height#,0); +italcorr x_height#*slant-.25u#; +adjust_fit(cap_serif_fit#,cap_serif_fit#); +pickup tiny.nib; pos1(sc_stem,0); pos2(sc_stem,0); +lft x1l=lft x2l=hround(.5w-.5sc_stem); top y1=h; bot y2=0; +filldraw stroke z1e--z2e; % stem +if serifs: dish_serif(1,2,a,1/3,1.05sc_jut,b,1/3,1.05sc_jut); % upper serif + dish_serif(2,1,c,1/3,1.05sc_jut,d,1/3,1.05sc_jut); fi % lower serif +math_fit(0,.5ic#); penlabels(1,2); endchar; + +cmchar "Inverted small capital R"; +beginchar("K",if serifs: 12u#+.5max(2u#,sc_curve#) + else:12.5u#-.5width_adj# fi,x_height#,0); +italcorr .75x_height#*slant+ if serifs: .25 else: 1 fi\\ u#; +adjust_fit(cap_serif_fit#,0); +pickup tiny.nib; pos1(sc_stem',0); pos2(sc_stem',0); +lft x1l=lft x2l=hround max(2u,3u-.5sc_stem'); bot y1=0; top y2=h; +filldraw stroke z2e--z1e; % stem +penpos3(sc_band,-90); penpos4(sc_band,-90); +penpos5(sc_curve if hefty:-3stem_corr fi,0); +penpos6(vair,90); penpos7(vair,90); +z3r=bot z1; y4=y3; y5=.5[y4l,y6l]; y6=y7; +x7=x2; y7l=vround(.5h-.5vair); x4=x6; +if serifs: x4=.5w-.5u; x5r=hround(w-2.25u); +else: x4=.5w+.5u; x5r=hround(w-u); fi +x4l:=x6l:=x4-.125sc_curve; +fill stroke z7e..pulled_arc.e(6,5) & pulled_arc.e(5,4)..z3e; % lobe +if serifs: pos6'(vair,90); pos0(sc_stem,180); + pos8(sc_curve,180); pos9(vair,90); pos10(hair,0); + z6'=z6; lft x0r=lft x8r=hround(x5-2/3u-.5sc_curve); + y8=1/3[y2,y7]; y0=3/5[y2,y7]; x9=.5[x8l,x10r]; + top y9r=h+o; rt x10r=hround(w-.05u); y10=1/4[y2,y7]; + filldraw stroke z6'e{right}..z0e---z8e....z9e{right}..z10e{down}; % tail + nodish_serif(1,2,a,1/3,sc_jut,b,1/3,.5sc_jut); % upper serif + dish_serif(2,1,c,1/3,sc_jut,d,1/3,sc_jut); % lower serif +else: penpos8(sc_stem-2stem_corr,0); penpos9(sc_stem,0); + x8=x6+.5u; y8=y6; x9r=hround(w-.5u); y9=h; + fill z8l--diag_end(8l,9l,.5,1,9r,8r)--z8r--cycle; fi % tail +math_fit(0,.75ic#); penlabels(0,1,2,3,4,5,6,7,8,9,10); endchar; + +cmchar "Small capital A"; +beginchar(oct"300",13u#,x_height#,0); +adjust_fit(cap_serif_fit#,cap_serif_fit#); +numeric left_stem,right_stem,outer_jut,alpha; +right_stem=sc_stem-stem_corr; +left_stem=min(sc_hair if hefty: -3stem_corr fi,right_stem); +outer_jut=.8sc_jut; x1l=w-x4r=l+letter_fit+outer_jut+.5u; y1=y4=0; +x2-x1=x4-x3; x3r=x2r+apex_corr; y2=y3=h+apex_o+apex_oo; +alpha=diag_ratio(2,left_stem,y2-y1,x4r-x1l-apex_corr); +penpos1(alpha*left_stem,0); penpos2(alpha*left_stem,0); +penpos3(alpha*right_stem,0); penpos4(alpha*right_stem,0); +z0=whatever[z1r,z2r]=whatever[z3l,z4l]; +if y0<h-cap_notch_cut: y0:=h-cap_notch_cut; + fill z0+.5right{down}...{z4-z3}diag_end(3l,4l,1,1,4r,3r) + --diag_end(4r,3r,1,1,2l,1l)--diag_end(2l,1l,1,1,1r,2r){z2-z1} + ...{up}z0+.5left--cycle; % left and right diagonals +else: fill z0--diag_end(0,4l,1,1,4r,3r)--diag_end(4r,3r,1,1,2l,1l) + --diag_end(2l,1l,1,1,1r,0)--cycle; fi % left and right diagonals +penpos5(whatever,angle(z2-z1)); z5=whatever[z1,z2]; +penpos6(whatever,angle(z3-z4)); z6=whatever[z3,z4]; y6=y5; +if hefty: y5r else: y5 fi =5/12y0; +y5r-y5l=y6r-y6l=sc_band; penstroke z5e--z6e; % bar line +if serifs: numeric inner_jut; pickup tiny.nib; + prime_points_inside(1,2); prime_points_inside(4,3); + if rt x1'r+sc_jut+.5u+1<=lft x4'l-sc_jut: inner_jut=sc_jut; + else: rt x1'r+inner_jut+.5u+1=lft x4'l-inner_jut; fi + dish_serif(1',2,a,1/2,outer_jut,b,.6,inner_jut)(dark); % left serif + dish_serif(4',3,c,1/2,inner_jut,d,1/3,outer_jut); fi % right serif +penlabels(0,1,2,3,4,5,6); endchar; + +cmchar "Small capital B"; +beginchar(oct"340",12.5u#,x_height#,0); +italcorr .75x_height#*slant-.5u#; +adjust_fit(cap_serif_fit#,0); +numeric left_stem,right_curve,middle_weight; +left_stem=sc_stem-hround 2stem_corr; middle_weight=.6vair+.5; +pickup tiny.nib; pos1(left_stem,0); pos2(left_stem,0); +lft x1l=lft x2l=hround max(2u,3u-.5left_stem); top y1=h; bot y2=0; +filldraw stroke z1e--z2e; % stem +penpos3(sc_band,90); penpos4(sc_band,90); +penpos6(middle_weight,-90); penpos7(middle_weight,-90); +penpos8(middle_weight,90); penpos9(middle_weight,90); +penpos5(right_curve-stem_corr,0); penpos10(right_curve,0); +penpos11(sc_band,-90); penpos12(sc_band,-90); +z3r=top z1; y4=y3; y5=.5[y4,y6]; y6=y7; y7l-y8l=vair; +z12r=bot z2; y11=y12; y10=.5[y11,y9]; y8=y9; .5[y7l,y8l]=.52h; +x4=x6; x9=x11=x4+.5u; x7=x8=x1; x9l:=x4+.25u; +x5r=hround(w-1.5u); x10r=hround(w-u); +if serifs: right_curve=sc_curve-stem_corr; x4=.5[x1,w-1.5u]; +else: right_curve=sc_curve-3stem_corr; x4=.5[x1,w-2.5u]; + x4l:=x4l-.5u; x9l:=x9l-.5u; fi +x6l:=x6l-.5u; x11l:=x11l-.5u; +fill stroke z3e..super_arc.e(4,5) & super_arc.e(5,6)..z7e; % upper lobe +fill stroke z8e..super_arc.e(9,10) & super_arc.e(10,11)..z12e; % lower lobe +if serifs: nodish_serif(1,2,a,1/3,sc_jut,b,1/3,.5sc_jut); % upper serif + nodish_serif(2,1,c,1/3,sc_jut,d,1/3,.5sc_jut); fi % lower serif +math_fit(0,.5ic#); penlabels(1,2,3,4,5,6,7,8,9,10,11,12); endchar; + +cmchar "Small capital O-E ligature"; +beginchar(oct"327",18u#,x_height#,0); +italcorr x_height#*slant-beak_jut#-.5u#; +adjust_fit(cap_serif_fit#,0); +numeric light_stem; +light_stem=max(tiny.breadth,hround .8[mfudged.hair,mfudged.sc_stem]); +pickup tiny.nib; pos1(light_stem,0); pos2(light_stem,0); +lft x1l=lft x2l=hround .5w; top y1=h; bot y2=0; +filldraw stroke z1e--z2e; % stem +pickup crisp.nib; pos3(slab,90); pos4(mfudged.hair,0); +top y3r=h; x3=x1; rt x4r=hround(w-u); y4=good.y(y3l-.8beak)-eps; +arm(3,4,e,beak_darkness,beak_jut); % upper arm and beak +pos5(sc_bar,-90); pos6(mfudged.hair,0); +top y5l=vround(.52[y2,y1]+.5sc_bar); x5=x1; +pos0(sc_bar,90); pos7(mfudged.hair,0); +z0=z5; x6=x7; y6-y5l=y0l-y7; +if serifs and not(monospace and hefty): rt x6r=hround(w-3.4u+.5mfudged.hair); + y6=good.y(y5l+.5beak)+eps; rt x9r=hround(w-.5u); +else: rt x6r=hround(w-1.5u); y6=y5l+eps; rt x9r=hround(w-.75u); fi +arm(5,6,f,beak_darkness,0); arm(0,7,g,beak_darkness,0); % middle arm and serif +pos8(slab if not serifs:+2stem_corr fi,-90); +pos9(mfudged.hair,0); bot y8r=0; x8=x2; y9=good.y(y8l+.9beak)+eps; +arm(8,9,h,beak_darkness,1.5beak_jut); % lower arm and beak +penpos11(vair,90); penpos13(vair,-90); +if monospace: penpos12(fudged.sc_stem,180); + interim superness:=sqrt superness; % make |"O"|, not |"0"| +else: penpos12(hround(sc_curve-stem_corr),180); fi +x11=x13=.5w-2u; y11r=h+o; y13r=-o; y12=.5h-vair_corr; x12r=hround u; +x14=x15=.5w; y14=2/3h; y15=1/3h; y12l:=.52h; +penstroke super_arc.e(11,12) & super_arc.e(12,13); % left half of bowl +fill z13r{right}..{right}(x2,0)--(x1,h){left}..{left}z11r + --z11l{right}...{z14-z11l}(.82[x11l,x14],.82[y14,y11l]) + ...z14---z15...{z13l-z15}(.82[x13l,x15],.82[y15,y13l]) + ...{left}z13l--cycle; % right half of bowl +if serifs: serif(1,2,a,1/3,.5sc_jut); % upper serif + serif(2,1,b,1/3,.5sc_jut); fi % lower serif +penlabels(0,1,2,3,4,5,6,7,8,9,11,12,13,14,15); endchar; + +cmchar "Small capital G"; +if serifs: beginchar(oct"345",14u#,x_height#,0); + italcorr x_height#*slant-1.5u#-.5cap_serif_fit#; + adjust_fit(0,.5cap_serif_fit#); + pickup tiny.nib; pos0(sc_stem,0); pos7(sc_stem,0); + rt x0r=hround(w-2u); y0=good.y(.1[.632bar_height,.626x_height]+1); x7=x0; + pickup fine.nib; + if hefty: bot y7=0; pos5(sc_stem,0); x5=x0; top y5=tiny.top y0; + else: pos5(sc_hair,0); pos8(sc_stem,0); + y7=.316bar_height; z5l=z8l; z8=z7; x9=x8r; bot y9=0; + filldraw z8l{down}..{4(x9-x8),y9-y8}z9--z8r--cycle; fi % spur + pos1(sc_hair,0); pos2(sc_band,90); + pos3(sc_curve,180); pos4(sc_band,270); + rt x1r=hround(w-2u); lft x3r=hround u; x2=x4=.55[x3,x1]; + top y2r=h+o; bot y4r=-o; y3=.5[y2,y4]; + bot y1=min(vround max(.6h,.626x_height-.5vair),bot y2l-eps); + (x2l',y2l)=whatever[z2r,z1l]; x2l:=min(x2l',x2l+.5u); + (x4l',y4l)=whatever[z4r,z5l]; x4l:=min(x4l',x4l+.5u); + filldraw stroke z1e{x2-x1,10(y2-y1)} + ...pulled_arc.e(2,3) & pulled_arc.e(3,4)...z5e{up}; % arc + pos6(.3[fine.breadth,sc_hair],0); x6r=x1r; top y6=h+o; + x1r-x1'=2sc_curve-fine; y1'=y1; + path upper_arc; upper_arc=z1{x2-x1,10(y2-y1)}..z2{left}; + numeric t; t=xpart(upper_arc intersectiontimes (z6l--z1')); + filldraw z1r--z6r--z6l--subpath(t,0) of upper_arc--cycle; % barb + pickup tiny.nib; filldraw stroke z0e--z7e; % stem + dish_serif(0,7,a,1/3,max(sc_jut,2.25u),b,1/3,1.25u); % serif + math_fit(-.3x_height#*slant-.5u#,ic#); +else: beginchar(oct"345",12u#,x_height#,0); + italcorr x_height#*slant-.5u#; + adjust_fit(0,0); + pickup fine.nib; pos1(1.2flare,80); pos2(slab,90); + pos3(sc_curve,180); pos4(slab,270); pos5(flare,270); + rt x1r=hround(w-1.35u); x2=x4=.5w+u; + lft x3r=hround max(u,2u-.5sc_curve); rt x5l=hround(w-1.2u); + top y1r=vround .93h+o; top y2r=h+o; y3=.5h; + bot y4r=-o; bot y5r=vround .07h-o; + filldraw stroke rterm.e(2,1,right,.9,4)&super_arc.e(2,3) + & super_arc.e(3,4) & term.e(4,5,right,1,4); % arc and terminals + pos0(stem,0); pos7(stem,0); + z7r=z5r; x0=x7; top y0=1+vround .35[.632bar_height,.626x_height]; + filldraw stroke z0e--z7e; % stem + pos8(sc_bar,90); pos9(sc_bar,90); + z0r=z9r; y8=y9; lft x8=hround x4; + filldraw stroke z8e--z9e; % bar + math_fit(-.3x_height#*slant-.5u#,.5ic#); fi +penlabels(0,1,1',2,3,4,5,6,7,8,9); endchar; + +cmchar "Small capital N"; +beginchar(oct"360",13u#+width_adj#,x_height#,0); +italcorr x_height#*slant-cap_serif_fit#+sc_jut#-2.5u#+min(.5sc_stem#,u#); +adjust_fit(cap_serif_fit#,cap_serif_fit#); +numeric thin_stem; thin_stem=hround(fudged.hair+stem_corr); +pickup tiny.nib; pos1(thin_stem,0); pos2(thin_stem,0); +pos3(thin_stem,0); pos4(thin_stem,0); +pickup tiny.nib; top y1=top y3=h; bot y2=bot y4=0; +x1=x2; x3=x4; x1l=w-x3r; +rt x3r=hround min(w-2u,w-3u+.5fudged.sc_stem); +filldraw stroke z1e--z2e; % left stem +filldraw stroke z3e--z4e; % right stem +if hefty: penpos5(fudged.sc_stem,0); penpos6(fudged.sc_stem,0); + x5l=x1; x6r=x4; y5=h; y6=0; + numeric upper_notch,lower_notch; + upper_notch=h-cap_notch_cut; lower_notch=cap_notch_cut; + x1'=rt x1r; z1'=whatever[z5l,z6l]; x4'=lft x4l; z4'=whatever[z5r,z6r]; + fill z5l.. + if y1'<upper_notch: {right}(x1'+1,upper_notch){down}... fi + {z6-z5}diag_in(5l,6l,1,6r)--z6r.. + if y4'>lower_notch: {left}(x4'-1,lower_notch){up}... fi + {z5-z6}diag_in(6r,5r,1,5l)--cycle; % diagonal +else: penpos5(whatever,0); penpos6(whatever,90); + z5l=z1l; z6l=z4l; + z7=z6l+(max(eps,sc_stem-3stem_corr-tiny),0) rotated (angle(z5l-z6l)-90); + z5r=z7+whatever*(z5l-z6l); z6r=z7+whatever*(z5l-z6l); + filldraw stroke z5e..z6e; fi % diagonal +if serifs: if hefty: serif(1,2,a,1/3,-sc_jut); % upper left serif + else: serif(5,6,a,1/3,-sc_jut); fi % upper left serif + dish_serif(2,1,b,1/2,sc_jut,c,1/2,sc_jut)(dark); % lower left serif + dish_serif(3,4,e,1/2,sc_jut,f,1/2,sc_jut)(dark); fi % upper right serif +math_fit(0,max(.5ic#-.5u#,0)); penlabels(1,1',2,3,4,4',5,6,7); endchar; + +cmchar "Small capital R"; +beginchar(oct"366",if serifs: 12u#+.5max(2u#,sc_curve#) + else:12.5u#-.5width_adj# fi,x_height#,0); +italcorr .75x_height#*slant- if serifs: 1.75 else: .5 fi\\ u#; +adjust_fit(cap_serif_fit#,0); +pickup tiny.nib; pos1(sc_stem',0); pos2(sc_stem',0); +lft x1l=lft x2l=hround max(2u,3u-.5sc_stem'); top y1=h; bot y2=0; +filldraw stroke z1e--z2e; % stem +penpos3(sc_band,90); penpos4(sc_band,90); +penpos5(sc_curve if hefty:-3stem_corr fi,0); +penpos6(vair,-90); penpos7(vair,-90); +z3r=top z1; y4=y3; y5=.5[y4l,y6l]; y6=y7; +x7=x2; y7l=vround(.5h+.5vair); x4=x6; +if serifs: x4=.5w-.5u; x5r=hround(w-2.25u); +else: x4=.5w+.5u; x5r=hround(w-u); fi +x4l:=x6l:=x4-.125sc_curve; +fill stroke z3e..pulled_arc.e(4,5) & pulled_arc.e(5,6)..z7e; % lobe +if serifs: pos6'(vair,-90); pos0(sc_stem,180); + pos8(sc_curve,180); pos9(vair,-90); pos10(hair,0); + z6'=z6; lft x0r=lft x8r=hround(x5-2/3u-.5sc_curve); + y8=1/3[y2,y7]; y0=3/5[y2,y7]; x9=.5[x8l,x10r]; + bot y9r=-o; rt x10r=hround(w-.05u); y10=1/4[y2,y7]; + filldraw stroke z6'e{right}..z0e---z8e....z9e{right}..z10e{up}; % tail + nodish_serif(1,2,a,1/3,sc_jut,b,1/3,.5sc_jut); % upper serif + dish_serif(2,1,c,1/3,sc_jut,d,1/3,sc_jut); % lower serif +else: penpos8(sc_stem-2stem_corr,0); penpos9(sc_stem,0); + x8=x6+.5u; y8=y6; x9r=hround(w-.5u); y9=0; + fill z8l--diag_end(8l,9l,.5,1,9r,8r)--z8r--cycle; fi % tail +math_fit(0,.75ic#); penlabels(0,1,2,3,4,5,6,7,8,9,10); endchar; + +cmchar "Hooktop small capital G"; +if serifs: beginchar(oct"311",14u#,x_height#,0); + italcorr .9asc_height#*slant-.5cap_serif_fit#+2u#; + adjust_fit(0,.5cap_serif_fit#+.5u#); + pickup tiny.nib; pos0(sc_stem,0); pos7(sc_stem,0); + rt x0r=hround(w-2u); y0=good.y(.1[.632bar_height,.626x_height]+1); x7=x0; + pickup fine.nib; + if hefty: bot y7=0; pos5(sc_stem,0); x5=x0; top y5=tiny.top y0; + else: pos5(sc_hair,0); pos8(sc_stem,0); + y7=.316bar_height; z5l=z8l; z8=z7; x9=x8r; bot y9=0; + filldraw z8l{down}..{4(x9-x8),y9-y8}z9--z8r--cycle; fi % spur + pos1(sc_hair,0); pos2(sc_band,90); + pos3(sc_curve,180); pos4(sc_band,270); + rt x1r=hround(w-2u); lft x3r=hround u; x2=x4=.55[x3,x1]; + top y2r=h+o; bot y4r=-o; y3=.5[y2,y4]; + bot y1=min(vround max(.6h,.626x_height-.5vair),bot y2l-eps); + (x2l',y2l)=whatever[z2r,z1l]; x2l:=min(x2l',x2l+.5u); + (x4l',y4l)=whatever[z4r,z5l]; x4l:=min(x4l',x4l+.5u); + filldraw stroke z1e{x2-x1,10(y2-y1)} + ...pulled_arc.e(2,3) & pulled_arc.e(3,4)...z5e{up}; % arc + pos6(.3[fine.breadth,sc_hair],0); x6r=x1r; top y6=h+o; + x1r-x1'=2sc_curve-fine; y1'=y1; + path upper_arc; upper_arc=z1{x2-x1,10(y2-y1)}..z2{left}; + numeric t; t=xpart(upper_arc intersectiontimes (z6l--z1')); + filldraw z1r--z6r--z6l--subpath(t,0) of upper_arc--cycle; % barb + pickup tiny.nib; filldraw stroke z0e--z7e; % stem + dish_serif(0,7,a,1/3,max(sc_jut,2.25u),b,1/3,1.25u); % serif + math_fit(-.3x_height#*slant-.5u#,ic#); + pos10(hair,0); y10=y1; rt x10r=rt x1r; + hooktop(10,11,12,13,hair,hround(w+2.5u),.9asc_height+.5vair,.9,.55,.6); +else: beginchar(oct"311",12u#,x_height#,0); + italcorr x_height#*slant-.5u#+2u#; + adjust_fit(0,.5u#); + pickup fine.nib; pos1(1.2flare,30); pos2(slab,90); + pos3(sc_curve,180); pos4(slab,270); pos5(flare,270); + rt x1r=hround(w-1.2u); x2=x4=.5w+u; + lft x3r=hround max(u,2u-.5sc_curve); rt x5l=hround(w-1.2u); + top y1r=vround .83h+o; top y2r=h+o; y3=.5h; + bot y4r=-o; bot y5r=vround .07h-o; + filldraw stroke rterm.e(2,1,right,.9,4)&super_arc.e(2,3) + & super_arc.e(3,4) & term.e(4,5,right,1,4); % arc and terminals + pos0(stem,0); pos7(stem,0); + z7r=z5r; x0=x7; top y0=1+vround .35[.632bar_height,.626x_height]; + filldraw stroke z0e--z7e; % stem + pos8(sc_bar,90); pos9(sc_bar,90); + z0r=z9r; y8=y9; lft x8=hround x4; + filldraw stroke z8e--z9e; % bar + math_fit(-.3x_height#*slant-.5u#,.5ic#); + pos10(vair,0); y10=y1r; rt x10r=rt x1r; + hooktop(10,11,12,13,vair,hround(w+2.5u),.9asc_height+.5vair,.9,.5,.5); fi +penlabels(0,1,1',2,3,4,5,6,7,8,9,10,11,12,13); endchar; + +cmchar "Small capital H"; +beginchar(oct"313",13u#+width_adj#,x_height#,0); +italcorr x_height#*slant-cap_serif_fit#+sc_jut#-2.5u#+min(.5sc_stem#,u#); +adjust_fit(cap_serif_fit#,cap_serif_fit#); +pickup tiny.nib; pos1(sc_stem,0); pos2(sc_stem,0); +pos3(sc_stem,0); pos4(sc_stem,0); +lft x1l=lft x2l=hround max(2u,3u-.5sc_stem); x3=x4=w-x1; +top y1=top y3=h; bot y2=bot y4=0; +filldraw stroke z1e--z2e; % left stem +filldraw stroke z3e--z4e; % right stem +penpos5(sc_bar,90); penpos6(sc_bar,90); +x5=x1; x6=x3; y5=y6=.52h; +fill stroke z5e--z6e; % bar +if serifs: numeric inner_jut; + if rt x1r+sc_jut+.5u+1<=lft x3l-sc_jut: inner_jut=sc_jut; + else: rt x1r+inner_jut+.5u+1=lft x3l-inner_jut; fi + dish_serif(1,2,a,1/3,sc_jut,b,1/3,inner_jut); % upper left serif + dish_serif(2,1,c,1/3,sc_jut,d,1/3,inner_jut); % lower left serif + dish_serif(3,4,e,1/3,inner_jut,f,1/3,sc_jut); % upper left serif + dish_serif(4,3,g,1/3,inner_jut,h,1/3,sc_jut); fi % lower left serif +math_fit(0,.5ic#); penlabels(1,2,3,4,5,6); endchar; + +cmchar "Small capital L"; +beginchar(oct"317",11u#-width_adj#,x_height#,0); +adjust_fit(cap_serif_fit#,0); +pickup tiny.nib; pos1(sc_stem,0); pos2(sc_stem,0); +lft x1l=lft x2l=hround max(2u,3u-.5sc_stem); top y1=h; bot y2=0; +filldraw stroke z1e--z2e; % stem +pickup crisp.nib; pos3(slab,-90); pos4(hair,0); +bot y3r=0; x3=x2; y4=y3l+beak+eps; rt x4r=hround(w-.75u); +arm(3,4,e,1.2beak_darkness,beak_jut); % lower arm and beak +if serifs: dish_serif(1,2,a,1/3,sc_jut,b,1/3,1.25sc_jut); % upper serif + nodish_serif(2,1,c,1/3,sc_jut,d,1/3,.5sc_jut); fi % lower serif +math_fit(0,u#); penlabels(1,2,3,4); endchar; + +cmchar "Small capital U"; +beginchar(oct"332",13u#+.5width_adj#,x_height#,0); +italcorr x_height#*slant-cap_serif_fit#+sc_jut#-2.5u#+min(.5sc_stem#,u#); +if monospace: adjust_fit(cap_serif_fit#-.5u#,cap_serif_fit#-.5u#) +else: adjust_fit(cap_serif_fit#,cap_serif_fit#) fi; +pickup tiny.nib; pos1(sc_stem,0); pos2(sc_stem,0); +pos2'(sc_stem,180); z2'=z2; +pos3(sc_band,-90); +pos4(sc_hair,0); pos5(sc_hair,0); +x1=x2; x3=.5[x1,x5]; x4=x5; x1l=w-x5r; +top y1=top y5=h; y2=y4=1/3h; bot y3r=-o; +lft x1l=hround max(2u,3u-.5sc_stem); +filldraw stroke z1e--z2e; % left stem +filldraw stroke pulled_arc.e(2',3) + & pulled_arc.e(3,4)&z4e--z5e; % arc and right stem +if serifs: dish_serif(1,2,a,1/3,sc_jut,b,1/3,sc_jut); % left serif + dish_serif(5,4,c,1/2,sc_jut,d,1/2,sc_jut)(dark); fi % right serif +math_fit(-cap_serif_fit#-.3x_height#*slant-min(x_height#*slant,u#), + max(.5ic#-.5u#,0)); penlabels(1,2,3,4,5); endchar; + +cmchar "Small capital E"; +beginchar(oct"244",12u#-width_adj#,x_height#,0); +italcorr x_height#*slant-beak_jut#-.5u#; +adjust_fit(cap_serif_fit#,0); +pickup tiny.nib; pos1(sc_stem,0); pos2(sc_stem,0); +lft x1l=lft x2l=hround max(2u,3u-.5sc_stem); top y1=h; bot y2=0; +filldraw stroke z1e--z2e; % stem +pickup crisp.nib; pos3(slab,90); pos4(hair,0); +top y3r=h; x3=x1; rt x4r=hround(w-u); y4=good.y(y3l-.8beak)-eps; +arm(3,4,e,beak_darkness,beak_jut); % upper arm and beak +pos5(sc_bar,-90); pos6(hair,0); +top y5l=vround(.52[y2,y1]+.5sc_bar); x5=x1; +pos0(sc_bar,90); pos7(hair,0); +z0=z5; x6=x7; y6-y5l=y0l-y7; +if serifs: rt x6r=hround(w-4.4u+.5hair); y6=good.y(y5l+.5beak)+eps; + rt x9r=hround(w-.5u); +else: rt x6r=hround(w-1.5u); y6=y5l+eps; rt x9r=hround(w-.75u); fi +arm(5,6,f,beak_darkness,0); arm(0,7,g,beak_darkness,0); % middle arm and serif +pos8(slab if not serifs:+2stem_corr fi,-90); pos9(hair,0); +bot y8r=0; x8=x2; y9=good.y(y8l+.9beak)+eps; +arm(8,9,h,beak_darkness,1.5beak_jut); % lower arm and beak +if serifs: nodish_serif(1,2,a,1/3,sc_jut,b,1/3,.5sc_jut); % upper serif + nodish_serif(2,1,c,1/3,sc_jut,d,1/3,.5sc_jut); fi % lower serif +math_fit(0,.5ic#); penlabels(0,1,2,3,4,5,6,7,8,9); endchar; + +cmchar "Small capital J"; +beginchar(oct"250",9u#,x_height#,0); +italcorr x_height#*slant-cap_serif_fit# + +.75sc_jut#-2.5u#+min(.5sc_stem#,u#); +adjust_fit(0,cap_serif_fit#); +pickup tiny.nib; pos1(sc_stem',0); pos2(sc_stem',0); +top y1=h; rt x1r=hround(w-2u); x2=x1; y2=.21h; +if serifs: pos3(vair,-90); pos4(sc_hair,-180); + pos5(flare+(sc_stem-stem),-180); + bot y3r=-o; x3=.5[x4,x2]; y5=1/6h; rt x5l=hround 2.75u; z5r=z4r; + filldraw stroke z1e--z2e&super_arc.e(2,3); % stem and arc + dish_serif(1,2,a,1/3,1.3sc_jut,b,1/3,.75sc_jut); % serif + pickup tiny.nib; bulb(3,4,5); % bulb +else: filldraw stroke z1e--z2e; % stem + pickup fine.nib; pos3(sc_stem',0); z3=z2; + pos4(flare,angle(6.5u,-h)); pos5(1.1flare,-100); + bot y4r=-o; x4r=.5[x5r,x3r]; lft x5r=hround.75u; bot y5r=vround.06h-o; + filldraw stroke z3e{down}....term.e(4,5,left,1,4); fi % arc and terminal +math_fit(0,.5ic#-.5u#); penlabels(1,2,3,4,5); endchar; + +cmchar "Small capital omega"; +beginchar(oct"261",13u#,x_height#,0); +italcorr .75x_height#*slant-.5u#; +adjust_fit(0,0); +pickup tiny.nib; pos1(vair,90); pos2(sc_curve,180); +pos3(vair,180); pos4(sc_curve,0); pos5(vair,0); +x1=.5w; top y1r=h+o; lft x2r=hround u; y2=y4=2/3h; x4=w-x2; +rt x3l=hround(1/3(w+.5u)+.5hair); bot y3=bot y5=0; x5=w-x3; +filldraw stroke z3e{up}...{up}z2e + & pulled_super_arc.e(2,1)(.5superpull) + & pulled_super_arc.e(1,4)(.5superpull) + & z4e{down}...{down}z5e; % bowl +numeric arm_thickness; path p; p=z3{up}...{up}z2; +arm_thickness=Vround(if hefty:slab+2stem_corr else:.75[slab,cap_vstem] fi); +pickup crisp.nib; pos6(arm_thickness,-90); pos7(fudged.hair,-180); +bot y6r=0; x6=x3; lft x7r=hround .8u; y7=good.y(y6l+.5beak)+eps; +(x,y)=p intersectionpoint((0,y6l)--(w,y6l)); x6l:=x; +arm(6,7,a,.5beak_darkness,-1.2beak_jut); % left arm and beak +pos8(arm_thickness,-90); pos9(fudged.hair,0); +y8=y6; y9=y7; x8+x6=x9+x7=w; x8l:=w-x6l; +arm(8,9,b,.5beak_darkness,1.2beak_jut); % right arm and beak +math_fit(0,.5ic#); penlabels(1,2,3,4,5,6,7,8,9); endchar; + +% end of tipasc.mf diff --git a/Master/texmf-dist/fonts/source/public/tipa/tipasi10.mf b/Master/texmf-dist/fonts/source/public/tipa/tipasi10.mf new file mode 100644 index 00000000000..1b36f0ef573 --- /dev/null +++ b/Master/texmf-dist/fonts/source/public/tipa/tipasi10.mf @@ -0,0 +1,92 @@ +% tipasi10.mf: TIPA Sans Serif Slanted 10 point parameter file +% Copyright 1996-2003 FUKUI Rei +% +% This program may be distributed and/or modified under the +% conditions of the LaTeX Project Public License, either version 1.2 +% of this license or (at your option) any later version. +% The latest version of this license is in +% http://www.latex-project.org/lppl.txt +% and version 1.2 or later is part of all distributions of LaTeX +% version 1999/12/01 or later. +% +% This program consists of all files listed in Manifest.txt. +% +% Version 1.2 2003/01/01 +% +% This file is based on: +% Computer Modern font series by D. E. Knuth and +% TSIPA by KOBAYASHI Hajime, FUKUI Rei and SHIRAKAWA Shun. + +if unknown cmbase: input cmbase fi +if unknown tipabase: input tipabase fi + +font_identifier:="TIPASI"; font_size 10pt#; + +Times_Compat:=false; +if Times_Compat: input tipatr fi + +u#:=20/36pt#; +width_adj#:=15/36pt#; +serif_fit#:=-7/36pt#; +cap_serif_fit#:=-10/36pt#; +letter_fit#:=0pt#; +body_height#:=270/36pt#; +asc_height#:=250/36pt#; +cap_height#:=250/36pt#; +fig_height#:=236/36pt#; +x_height#:=160/36pt#; +math_axis#:=90/36pt#; +bar_height#:=79/36pt#; +comma_depth#:=45/36pt#; +desc_depth#:=70/36pt#; +crisp#:=0pt#; +tiny#:=0pt#; +fine#:=0pt#; +thin_join#:=17/36pt#; +hair#:=28/36pt#; +stem#:=28/36pt#; +curve#:=28/36pt#; +ess#:=28/36pt#; +flare#:=25/36pt#; +dot_size#:=30/36pt#; +cap_hair#:=28/36pt#; +cap_stem#:=32/36pt#; +cap_curve#:=32/36pt#; +cap_ess#:=32/36pt#; +rule_thickness#:=.4pt#; +dish#:=0pt#; +bracket#:=0pt#; +jut#:=0pt#; +cap_jut#:=0pt#; +beak_jut#:=0pt#; +beak#:=.5/36pt#; +vair#:=22/36pt#; +notch_cut#:=18/36pt#; +bar#:=21/36pt#; +slab#:=23/36pt#; +cap_bar#:=22/36pt#; +cap_band#:=20/36pt#; +cap_notch_cut#:=25/36pt#; +serif_drop#:=2/36pt#; +stem_corr#:=1/36pt#; +vair_corr#:=1/36pt#; +apex_corr#:=5/36pt#; +o#:=8/36pt#; +apex_o#:=0pt#; +slant:=sind 12/cosd 12; +fudge:=.96; +math_spread:=0; +superness:=1/sqrt2; +superpull:=1/20; +beak_darkness:=0; +ligs:=2; +square_dots:=true; +hefty:=true; +serifs:=false; +monospace:=false; +low_asterisk:=false; +math_fitting:=false; +sc.u#:=14/36pt#; +sc.letter_fit#:=2.4/36pt#; + +generate tipa % switch to the driver file diff --git a/Master/texmf-dist/fonts/source/public/tipa/tipasl10.mf b/Master/texmf-dist/fonts/source/public/tipa/tipasl10.mf new file mode 100644 index 00000000000..92cc2804b76 --- /dev/null +++ b/Master/texmf-dist/fonts/source/public/tipa/tipasl10.mf @@ -0,0 +1,92 @@ +% tipasl10.mf: TIPA Slanted Roman 10 point parameter file +% Copyright 1996-2003 FUKUI Rei +% +% This program may be distributed and/or modified under the +% conditions of the LaTeX Project Public License, either version 1.2 +% of this license or (at your option) any later version. +% The latest version of this license is in +% http://www.latex-project.org/lppl.txt +% and version 1.2 or later is part of all distributions of LaTeX +% version 1999/12/01 or later. +% +% This program consists of all files listed in Manifest.txt. +% +% Version 1.2 2003/01/01 +% +% This file is based on: +% Computer Modern font series by D. E. Knuth and +% TSIPA by KOBAYASHI Hajime, FUKUI Rei and SHIRAKAWA Shun. + +if unknown cmbase: input cmbase fi +if unknown tipabase: input tipabase fi + +font_identifier:="TIPASL"; font_size 10pt#; + +Times_Compat:=false; +if Times_Compat: input tipatr fi + +u#:=20/36pt#; +width_adj#:=0pt#; +serif_fit#:=0pt#; +cap_serif_fit#:=5/36pt#; +letter_fit#:=0pt#; +body_height#:=270/36pt#; +asc_height#:=250/36pt#; +cap_height#:=246/36pt#; +fig_height#:=232/36pt#; +x_height#:=155/36pt#; +math_axis#:=90/36pt#; +bar_height#:=87/36pt#; +comma_depth#:=70/36pt#; +desc_depth#:=70/36pt#; +crisp#:=0pt#; +tiny#:=8/36pt#; +fine#:=7/36pt#; +thin_join#:=7/36pt#; +hair#:=9/36pt#; +stem#:=25/36pt#; +curve#:=30/36pt#; +ess#:=27/36pt#; +flare#:=33/36pt#; +dot_size#:=38/36pt#; +cap_hair#:=11/36pt#; +cap_stem#:=32/36pt#; +cap_curve#:=37/36pt#; +cap_ess#:=35/36pt#; +rule_thickness#:=.4pt#; +dish#:=1/36pt#; +bracket#:=20/36pt#; +jut#:=28/36pt#; +cap_jut#:=37/36pt#; +beak_jut#:=10/36pt#; +beak#:=70/36pt#; +vair#:=8/36pt#; +notch_cut#:=10pt#; +bar#:=11/36pt#; +slab#:=11/36pt#; +cap_bar#:=11/36pt#; +cap_band#:=11/36pt#; +cap_notch_cut#:=10pt#; +serif_drop#:=4/36pt#; +stem_corr#:=1/36pt#; +vair_corr#:=1/36pt#; +apex_corr#:=0pt#; +o#:=8/36pt#; +apex_o#:=8/36pt#; +slant:=1/6; +fudge:=1; +math_spread:=0; +superness:=1/sqrt2; +superpull:=1/6; +beak_darkness:=11/30; +ligs:=2; +square_dots:=false; +hefty:=false; +serifs:=true; +monospace:=false; +low_asterisk:=false; +math_fitting:=false; +sc.u#:=14/36pt#; +sc.letter_fit#:=2.4/36pt#; + +generate tipa % switch to the driver file diff --git a/Master/texmf-dist/fonts/source/public/tipa/tipasl12.mf b/Master/texmf-dist/fonts/source/public/tipa/tipasl12.mf new file mode 100644 index 00000000000..359b3c99ef0 --- /dev/null +++ b/Master/texmf-dist/fonts/source/public/tipa/tipasl12.mf @@ -0,0 +1,92 @@ +% tipasl12.mf: TIPA Slanted Roman 12 point parameter file +% Copyright 1996-2003 FUKUI Rei +% +% This program may be distributed and/or modified under the +% conditions of the LaTeX Project Public License, either version 1.2 +% of this license or (at your option) any later version. +% The latest version of this license is in +% http://www.latex-project.org/lppl.txt +% and version 1.2 or later is part of all distributions of LaTeX +% version 1999/12/01 or later. +% +% This program consists of all files listed in Manifest.txt. +% +% Version 1.2 2003/01/01 +% +% This file is based on: +% Computer Modern font series by D. E. Knuth and +% TSIPA by KOBAYASHI Hajime, FUKUI Rei and SHIRAKAWA Shun. + +if unknown cmbase: input cmbase fi +if unknown tipabase: input tipabase fi + +font_identifier:="TIPASL"; font_size 12pt#; + +Times_Compat:=false; +if Times_Compat: input tipatr fi + +u#:=23.5/36pt#; +width_adj#:=0pt#; +serif_fit#:=0pt#; +cap_serif_fit#:=5.8/36pt#; +letter_fit#:=0pt#; +body_height#:=324/36pt#; +asc_height#:=300/36pt#; +cap_height#:=295.2/36pt#; +fig_height#:=278.4/36pt#; +x_height#:=186/36pt#; +math_axis#:=108/36pt#; +bar_height#:=104.4/36pt#; +comma_depth#:=84/36pt#; +desc_depth#:=84/36pt#; +crisp#:=0pt#; +tiny#:=8/36pt#; +fine#:=7/36pt#; +thin_join#:=7.5/36pt#; +hair#:=9.5/36pt#; +stem#:=28/36pt#; +curve#:=33/36pt#; +ess#:=30/36pt#; +flare#:=36/36pt#; +dot_size#:=42/36pt#; +cap_hair#:=11.5/36pt#; +cap_stem#:=35/36pt#; +cap_curve#:=40/36pt#; +cap_ess#:=38/36pt#; +rule_thickness#:=.44pt#; +dish#:=1/36pt#; +bracket#:=24/36pt#; +jut#:=33/36pt#; +cap_jut#:=41/36pt#; +beak_jut#:=11.4/36pt#; +beak#:=84/36pt#; +vair#:=8.5/36pt#; +notch_cut#:=12pt#; +bar#:=12.5/36pt#; +slab#:=12.5/36pt#; +cap_bar#:=12.5/36pt#; +cap_band#:=12.5/36pt#; +cap_notch_cut#:=12pt#; +serif_drop#:=4.8/36pt#; +stem_corr#:=1/36pt#; +vair_corr#:=1/36pt#; +apex_corr#:=0pt#; +o#:=9/36pt#; +apex_o#:=9/36pt#; +slant:=1/6; +fudge:=1; +math_spread:=-0.2; +superness:=1/sqrt2; +superpull:=1/6; +beak_darkness:=11/30; +ligs:=2; +square_dots:=false; +hefty:=false; +serifs:=true; +monospace:=false; +low_asterisk:=false; +math_fitting:=false; +sc.u#:=16.45/36pt#; +sc.letter_fit#:=2.4/36pt#; + +generate tipa % switch to the driver file diff --git a/Master/texmf-dist/fonts/source/public/tipa/tipasl8.mf b/Master/texmf-dist/fonts/source/public/tipa/tipasl8.mf new file mode 100644 index 00000000000..5ed37ef9058 --- /dev/null +++ b/Master/texmf-dist/fonts/source/public/tipa/tipasl8.mf @@ -0,0 +1,92 @@ +% tipasl8.mf: TIPA Slanted Roman 8 point parameter file +% Copyright 1996-2003 FUKUI Rei +% +% This program may be distributed and/or modified under the +% conditions of the LaTeX Project Public License, either version 1.2 +% of this license or (at your option) any later version. +% The latest version of this license is in +% http://www.latex-project.org/lppl.txt +% and version 1.2 or later is part of all distributions of LaTeX +% version 1999/12/01 or later. +% +% This program consists of all files listed in Manifest.txt. +% +% Version 1.2 2003/01/01 +% +% This file is based on: +% Computer Modern font series by D. E. Knuth and +% TSIPA by KOBAYASHI Hajime, FUKUI Rei and SHIRAKAWA Shun. + +if unknown cmbase: input cmbase fi +if unknown tipabase: input tipabase fi + +font_identifier:="TIPASL"; font_size 8pt#; + +Times_Compat:=false; +if Times_Compat: input tipatr fi + +u#:=17/36pt#; +width_adj#:=0pt#; +serif_fit#:=0pt#; +cap_serif_fit#:=4.1/36pt#; +letter_fit#:=0pt#; +body_height#:=216/36pt#; +asc_height#:=200/36pt#; +cap_height#:=196.8/36pt#; +fig_height#:=185.6/36pt#; +x_height#:=124/36pt#; +math_axis#:=72/36pt#; +bar_height#:=69.6/36pt#; +comma_depth#:=56/36pt#; +desc_depth#:=56/36pt#; +crisp#:=0pt#; +tiny#:=8/36pt#; +fine#:=7/36pt#; +thin_join#:=7/36pt#; +hair#:=9/36pt#; +stem#:=22/36pt#; +curve#:=25.5/36pt#; +ess#:=23/36pt#; +flare#:=27/36pt#; +dot_size#:=32/36pt#; +cap_hair#:=9.5/36pt#; +cap_stem#:=26.5/36pt#; +cap_curve#:=30/36pt#; +cap_ess#:=27/36pt#; +rule_thickness#:=.36pt#; +dish#:=1/36pt#; +bracket#:=16/36pt#; +jut#:=22/36pt#; +cap_jut#:=29/36pt#; +beak_jut#:=8.4/36pt#; +beak#:=56/36pt#; +vair#:=8/36pt#; +notch_cut#:=8pt#; +bar#:=9.5/36pt#; +slab#:=9.5/36pt#; +cap_bar#:=9.5/36pt#; +cap_band#:=9.5/36pt#; +cap_notch_cut#:=8pt#; +serif_drop#:=3.2/36pt#; +stem_corr#:=1/36pt#; +vair_corr#:=1/36pt#; +apex_corr#:=0pt#; +o#:=6/36pt#; +apex_o#:=6/36pt#; +slant:=1/6; +fudge:=1; +math_spread:=.4; +superness:=1/sqrt2; +superpull:=1/6; +beak_darkness:=11/30; +ligs:=2; +square_dots:=false; +hefty:=false; +serifs:=true; +monospace:=false; +low_asterisk:=false; +math_fitting:=false; +sc.u#:=12/36pt#; +sc.letter_fit#:=2.4/36pt#; + +generate tipa % switch to the driver file diff --git a/Master/texmf-dist/fonts/source/public/tipa/tipasl9.mf b/Master/texmf-dist/fonts/source/public/tipa/tipasl9.mf new file mode 100644 index 00000000000..fc0d51ece4b --- /dev/null +++ b/Master/texmf-dist/fonts/source/public/tipa/tipasl9.mf @@ -0,0 +1,92 @@ +% tipasl9.mf: TIPA Slanted Roman 9 point parameter file +% Copyright 1996-2003 FUKUI Rei +% +% This program may be distributed and/or modified under the +% conditions of the LaTeX Project Public License, either version 1.2 +% of this license or (at your option) any later version. +% The latest version of this license is in +% http://www.latex-project.org/lppl.txt +% and version 1.2 or later is part of all distributions of LaTeX +% version 1999/12/01 or later. +% +% This program consists of all files listed in Manifest.txt. +% +% Version 1.2 2003/01/01 +% +% This file is based on: +% Computer Modern font series by D. E. Knuth and +% TSIPA by KOBAYASHI Hajime, FUKUI Rei and SHIRAKAWA Shun. + +if unknown cmbase: input cmbase fi +if unknown tipabase: input tipabase fi + +font_identifier:="TIPASL"; font_size 9pt#; + +Times_Compat:=false; +if Times_Compat: input tipatr fi + +u#:=18.5/36pt#; +width_adj#:=0pt#; +serif_fit#:=0pt#; +cap_serif_fit#:=4.6/36pt#; +letter_fit#:=0pt#; +body_height#:=243/36pt#; +asc_height#:=225/36pt#; +cap_height#:=221.4/36pt#; +fig_height#:=208.8/36pt#; +x_height#:=139.5/36pt#; +math_axis#:=81/36pt#; +bar_height#:=78.3/36pt#; +comma_depth#:=63/36pt#; +desc_depth#:=63/36pt#; +crisp#:=0pt#; +tiny#:=8/36pt#; +fine#:=7/36pt#; +thin_join#:=7/36pt#; +hair#:=9/36pt#; +stem#:=24/36pt#; +curve#:=28/36pt#; +ess#:=25/36pt#; +flare#:=30/36pt#; +dot_size#:=35/36pt#; +cap_hair#:=10/36pt#; +cap_stem#:=29/36pt#; +cap_curve#:=33/36pt#; +cap_ess#:=31/36pt#; +rule_thickness#:=.38pt#; +dish#:=1/36pt#; +bracket#:=18/36pt#; +jut#:=25/36pt#; +cap_jut#:=33/36pt#; +beak_jut#:=9.2/36pt#; +beak#:=63/36pt#; +vair#:=8/36pt#; +notch_cut#:=9pt#; +bar#:=10/36pt#; +slab#:=10/36pt#; +cap_bar#:=10/36pt#; +cap_band#:=10/36pt#; +cap_notch_cut#:=9pt#; +serif_drop#:=3.6/36pt#; +stem_corr#:=1/36pt#; +vair_corr#:=1/36pt#; +apex_corr#:=0pt#; +o#:=7/36pt#; +apex_o#:=7/36pt#; +slant:=1/6; +fudge:=1; +math_spread:=.2; +superness:=1/sqrt2; +superpull:=1/6; +beak_darkness:=11/30; +ligs:=2; +square_dots:=false; +hefty:=false; +serifs:=true; +monospace:=false; +low_asterisk:=false; +math_fitting:=false; +sc.u#:=12.95/36pt#; +sc.letter_fit#:=2.4/36pt#; + +generate tipa % switch to the driver file diff --git a/Master/texmf-dist/fonts/source/public/tipa/tipass10.mf b/Master/texmf-dist/fonts/source/public/tipa/tipass10.mf new file mode 100644 index 00000000000..1149ecc8cf6 --- /dev/null +++ b/Master/texmf-dist/fonts/source/public/tipa/tipass10.mf @@ -0,0 +1,92 @@ +% tipass10.mf: TIPA Sans Serif 10 point parameter file +% Copyright 1996-2003 FUKUI Rei +% +% This program may be distributed and/or modified under the +% conditions of the LaTeX Project Public License, either version 1.2 +% of this license or (at your option) any later version. +% The latest version of this license is in +% http://www.latex-project.org/lppl.txt +% and version 1.2 or later is part of all distributions of LaTeX +% version 1999/12/01 or later. +% +% This program consists of all files listed in Manifest.txt. +% +% Version 1.2 2003/01/01 +% +% This file is based on: +% Computer Modern font series by D. E. Knuth and +% TSIPA by KOBAYASHI Hajime, FUKUI Rei and SHIRAKAWA Shun. + +if unknown cmbase: input cmbase fi +if unknown tipabase: input tipabase fi + +font_identifier:="TIPASS"; font_size 10pt#; + +Times_Compat:=false; +if Times_Compat: input tipatr fi + +u#:=20/36pt#; +width_adj#:=15/36pt#; +serif_fit#:=-7/36pt#; +cap_serif_fit#:=-10/36pt#; +letter_fit#:=0pt#; +body_height#:=270/36pt#; +asc_height#:=250/36pt#; +cap_height#:=250/36pt#; +fig_height#:=236/36pt#; +x_height#:=160/36pt#; +math_axis#:=90/36pt#; +bar_height#:=79/36pt#; +comma_depth#:=45/36pt#; +desc_depth#:=70/36pt#; +crisp#:=0pt#; +tiny#:=0pt#; +fine#:=0pt#; +thin_join#:=17/36pt#; +hair#:=28/36pt#; +stem#:=28/36pt#; +curve#:=28/36pt#; +ess#:=28/36pt#; +flare#:=25/36pt#; +dot_size#:=30/36pt#; +cap_hair#:=28/36pt#; +cap_stem#:=32/36pt#; +cap_curve#:=32/36pt#; +cap_ess#:=32/36pt#; +rule_thickness#:=.4pt#; +dish#:=0pt#; +bracket#:=0pt#; +jut#:=0pt#; +cap_jut#:=0pt#; +beak_jut#:=0pt#; +beak#:=.5/36pt#; +vair#:=22/36pt#; +notch_cut#:=18/36pt#; +bar#:=21/36pt#; +slab#:=23/36pt#; +cap_bar#:=22/36pt#; +cap_band#:=20/36pt#; +cap_notch_cut#:=25/36pt#; +serif_drop#:=2/36pt#; +stem_corr#:=1/36pt#; +vair_corr#:=1/36pt#; +apex_corr#:=5/36pt#; +o#:=8/36pt#; +apex_o#:=0pt#; +slant:=0; +fudge:=.96; +math_spread:=0; +superness:=1/sqrt2; +superpull:=1/20; +beak_darkness:=0; +ligs:=2; +square_dots:=true; +hefty:=true; +serifs:=false; +monospace:=false; +low_asterisk:=false; +math_fitting:=false; +sc.u#:=14/36pt#; +sc.letter_fit#:=2.4/36pt#; + +generate tipa % switch to the driver file diff --git a/Master/texmf-dist/fonts/source/public/tipa/tipass12.mf b/Master/texmf-dist/fonts/source/public/tipa/tipass12.mf new file mode 100644 index 00000000000..5277cc8f393 --- /dev/null +++ b/Master/texmf-dist/fonts/source/public/tipa/tipass12.mf @@ -0,0 +1,92 @@ +% tipass12.mf: TIPA Sans Serif 12 point parameter file +% Copyright 1996-2003 FUKUI Rei +% +% This program may be distributed and/or modified under the +% conditions of the LaTeX Project Public License, either version 1.2 +% of this license or (at your option) any later version. +% The latest version of this license is in +% http://www.latex-project.org/lppl.txt +% and version 1.2 or later is part of all distributions of LaTeX +% version 1999/12/01 or later. +% +% This program consists of all files listed in Manifest.txt. +% +% Version 1.2 2003/01/01 +% +% This file is based on: +% Computer Modern font series by D. E. Knuth and +% TSIPA by KOBAYASHI Hajime, FUKUI Rei and SHIRAKAWA Shun. + +if unknown cmbase: input cmbase fi +if unknown tipabase: input tipabase fi + +font_identifier:="TIPASS"; font_size 12pt#; + +Times_Compat:=false; +if Times_Compat: input tipatr fi + +u#:=23.5/36pt#; +width_adj#:=17/36pt#; +serif_fit#:=-9/36pt#; +cap_serif_fit#:=-13/36pt#; +letter_fit#:=0pt#; +body_height#:=324/36pt#; +asc_height#:=300/36pt#; +cap_height#:=300/36pt#; +fig_height#:=283/36pt#; +x_height#:=192/36pt#; +math_axis#:=108/36pt#; +bar_height#:=97/36pt#; +comma_depth#:=54/36pt#; +desc_depth#:=84/36pt#; +crisp#:=0pt#; +tiny#:=0pt#; +fine#:=0pt#; +thin_join#:=20/36pt#; +hair#:=33/36pt#; +stem#:=33/36pt#; +curve#:=33/36pt#; +ess#:=33/36pt#; +flare#:=30/36pt#; +dot_size#:=35/36pt#; +cap_hair#:=33/36pt#; +cap_stem#:=37/36pt#; +cap_curve#:=37/36pt#; +cap_ess#:=37/36pt#; +rule_thickness#:=.44pt#; +dish#:=0pt#; +bracket#:=0pt#; +jut#:=0pt#; +cap_jut#:=0pt#; +beak_jut#:=0pt#; +beak#:=.6/36pt#; +vair#:=26/36pt#; +notch_cut#:=22/36pt#; +bar#:=25/36pt#; +slab#:=27/36pt#; +cap_bar#:=26/36pt#; +cap_band#:=24/36pt#; +cap_notch_cut#:=31/36pt#; +serif_drop#:=2/36pt#; +stem_corr#:=1/36pt#; +vair_corr#:=1/36pt#; +apex_corr#:=6/36pt#; +o#:=9/36pt#; +apex_o#:=0pt#; +slant:=0; +fudge:=.98; +math_spread:=-0.2; +superness:=1/sqrt2; +superpull:=1/20; +beak_darkness:=0; +ligs:=2; +square_dots:=true; +hefty:=true; +serifs:=false; +monospace:=false; +low_asterisk:=false; +math_fitting:=false; +sc.u#:=16.45/36pt#; +sc.letter_fit#:=2.4/36pt#; + +generate tipa % switch to the driver file diff --git a/Master/texmf-dist/fonts/source/public/tipa/tipass17.mf b/Master/texmf-dist/fonts/source/public/tipa/tipass17.mf new file mode 100644 index 00000000000..1ec586c2c42 --- /dev/null +++ b/Master/texmf-dist/fonts/source/public/tipa/tipass17.mf @@ -0,0 +1,92 @@ +% tipass17.mf: TIPA Sans Serif 17.28 point parameter file +% Copyright 1996-2003 FUKUI Rei +% +% This program may be distributed and/or modified under the +% conditions of the LaTeX Project Public License, either version 1.2 +% of this license or (at your option) any later version. +% The latest version of this license is in +% http://www.latex-project.org/lppl.txt +% and version 1.2 or later is part of all distributions of LaTeX +% version 1999/12/01 or later. +% +% This program consists of all files listed in Manifest.txt. +% +% Version 1.2 2003/01/01 +% +% This file is based on: +% Computer Modern font series by D. E. Knuth and +% TSIPA by KOBAYASHI Hajime, FUKUI Rei and SHIRAKAWA Shun. + +if unknown cmbase: input cmbase fi +if unknown tipabase: input tipabase fi + +font_identifier:="TIPASS"; font_size 17.28pt#; + +Times_Compat:=false; +if Times_Compat: input tipatr fi + +u#:=32.5/36pt#; +width_adj#:=24/36pt#; +serif_fit#:=-12/36pt#; +cap_serif_fit#:=-17/36pt#; +letter_fit#:=0pt#; +body_height#:=466/36pt#; +asc_height#:=432/36pt#; +cap_height#:=432/36pt#; +fig_height#:=408/36pt#; +x_height#:=267.8/36pt#; +math_axis#:=155.5/36pt#; +bar_height#:=136/36pt#; +comma_depth#:=78/36pt#; +desc_depth#:=121/36pt#; +crisp#:=0pt#; +tiny#:=0pt#; +fine#:=0pt#; +thin_join#:=28/36pt#; +hair#:=47/36pt#; +stem#:=47/36pt#; +curve#:=47/36pt#; +ess#:=47/36pt#; +flare#:=42/36pt#; +dot_size#:=50/36pt#; +cap_hair#:=47/36pt#; +cap_stem#:=52/36pt#; +cap_curve#:=52/36pt#; +cap_ess#:=52/36pt#; +rule_thickness#:=.6pt#; +dish#:=0pt#; +bracket#:=0pt#; +jut#:=0pt#; +cap_jut#:=0pt#; +beak_jut#:=0pt#; +beak#:=.8/36pt#; +vair#:=38/36pt#; +notch_cut#:=32/36pt#; +bar#:=36/36pt#; +slab#:=40/36pt#; +cap_bar#:=38/36pt#; +cap_band#:=35/36pt#; +cap_notch_cut#:=46/36pt#; +serif_drop#:=2/36pt#; +stem_corr#:=1/36pt#; +vair_corr#:=1/36pt#; +apex_corr#:=7/36pt#; +o#:=10/36pt#; +apex_o#:=0pt#; +slant:=0; +fudge:=1; +math_spread:=-0.4; +superness:=1/sqrt2; +superpull:=1/20; +beak_darkness:=0; +ligs:=2; +square_dots:=true; +hefty:=true; +serifs:=false; +monospace:=false; +low_asterisk:=false; +math_fitting:=false; +sc.u#:=22.75/36pt#; +sc.letter_fit#:=2.2/36pt#; + +generate tipa % switch to the driver file diff --git a/Master/texmf-dist/fonts/source/public/tipa/tipass8.mf b/Master/texmf-dist/fonts/source/public/tipa/tipass8.mf new file mode 100644 index 00000000000..223b2156a88 --- /dev/null +++ b/Master/texmf-dist/fonts/source/public/tipa/tipass8.mf @@ -0,0 +1,92 @@ +% tipass8.mf: TIPA Sans Serif 8 point parameter file +% Copyright 1996-2003 FUKUI Rei +% +% This program may be distributed and/or modified under the +% conditions of the LaTeX Project Public License, either version 1.2 +% of this license or (at your option) any later version. +% The latest version of this license is in +% http://www.latex-project.org/lppl.txt +% and version 1.2 or later is part of all distributions of LaTeX +% version 1999/12/01 or later. +% +% This program consists of all files listed in Manifest.txt. +% +% Version 1.2 2003/01/01 +% +% This file is based on: +% Computer Modern font series by D. E. Knuth and +% TSIPA by KOBAYASHI Hajime, FUKUI Rei and SHIRAKAWA Shun. + +if unknown cmbase: input cmbase fi +if unknown tipabase: input tipabase fi + +font_identifier:="TIPASS"; font_size 8pt#; + +Times_Compat:=false; +if Times_Compat: input tipatr fi + +u#:=17/36pt#; +width_adj#:=12/36pt#; +serif_fit#:=-6/36pt#; +cap_serif_fit#:=-8.5/36pt#; +letter_fit#:=0pt#; +body_height#:=216/36pt#; +asc_height#:=200/36pt#; +cap_height#:=200/36pt#; +fig_height#:=189/36pt#; +x_height#:=128/36pt#; +math_axis#:=72/36pt#; +bar_height#:=63/36pt#; +comma_depth#:=37/36pt#; +desc_depth#:=56/36pt#; +crisp#:=0pt#; +tiny#:=0pt#; +fine#:=0pt#; +thin_join#:=15/36pt#; +hair#:=25/36pt#; +stem#:=25/36pt#; +curve#:=25/36pt#; +ess#:=25/36pt#; +flare#:=22/36pt#; +dot_size#:=26/36pt#; +cap_hair#:=25/36pt#; +cap_stem#:=29/36pt#; +cap_curve#:=29/36pt#; +cap_ess#:=28/36pt#; +rule_thickness#:=.36pt#; +dish#:=0pt#; +bracket#:=0pt#; +jut#:=0pt#; +cap_jut#:=0pt#; +beak_jut#:=0pt#; +beak#:=.4/36pt#; +vair#:=19/36pt#; +notch_cut#:=16/36pt#; +bar#:=18/36pt#; +slab#:=20/36pt#; +cap_bar#:=19/36pt#; +cap_band#:=17/36pt#; +cap_notch_cut#:=22/36pt#; +serif_drop#:=2/36pt#; +stem_corr#:=1/36pt#; +vair_corr#:=1/36pt#; +apex_corr#:=4/36pt#; +o#:=6/36pt#; +apex_o#:=0pt#; +slant:=0; +fudge:=.93; +math_spread:=.4; +superness:=1/sqrt2; +superpull:=1/20; +beak_darkness:=0; +ligs:=2; +square_dots:=true; +hefty:=true; +serifs:=false; +monospace:=false; +low_asterisk:=false; +math_fitting:=false; +sc.u#:=12/36pt#; +sc.letter_fit#:=2.4/36pt#; + +generate tipa % switch to the driver file diff --git a/Master/texmf-dist/fonts/source/public/tipa/tipass9.mf b/Master/texmf-dist/fonts/source/public/tipa/tipass9.mf new file mode 100644 index 00000000000..4e71ab37265 --- /dev/null +++ b/Master/texmf-dist/fonts/source/public/tipa/tipass9.mf @@ -0,0 +1,92 @@ +% tipass9.mf: TIPA Sans Serif 9 point parameter file +% Copyright 1996-2003 FUKUI Rei +% +% This program may be distributed and/or modified under the +% conditions of the LaTeX Project Public License, either version 1.2 +% of this license or (at your option) any later version. +% The latest version of this license is in +% http://www.latex-project.org/lppl.txt +% and version 1.2 or later is part of all distributions of LaTeX +% version 1999/12/01 or later. +% +% This program consists of all files listed in Manifest.txt. +% +% Version 1.2 2003/01/01 +% +% This file is based on: +% Computer Modern font series by D. E. Knuth and +% TSIPA by KOBAYASHI Hajime, FUKUI Rei and SHIRAKAWA Shun. + +if unknown cmbase: input cmbase fi +if unknown tipabase: input tipabase fi + +font_identifier:="TIPASS"; font_size 9pt#; + +Times_Compat:=false; +if Times_Compat: input tipatr fi + +u#:=18.5/36pt#; +width_adj#:=13/36pt#; +serif_fit#:=-6.5/36pt#; +cap_serif_fit#:=-9/36pt#; +letter_fit#:=0pt#; +body_height#:=243/36pt#; +asc_height#:=225/36pt#; +cap_height#:=225/36pt#; +fig_height#:=212/36pt#; +x_height#:=144/36pt#; +math_axis#:=81/36pt#; +bar_height#:=71/36pt#; +comma_depth#:=41/36pt#; +desc_depth#:=63/36pt#; +crisp#:=0pt#; +tiny#:=0pt#; +fine#:=0pt#; +thin_join#:=16/36pt#; +hair#:=27/36pt#; +stem#:=27/36pt#; +curve#:=27/36pt#; +ess#:=27/36pt#; +flare#:=24/36pt#; +dot_size#:=28/36pt#; +cap_hair#:=27/36pt#; +cap_stem#:=31/36pt#; +cap_curve#:=31/36pt#; +cap_ess#:=31/36pt#; +rule_thickness#:=.38pt#; +dish#:=0pt#; +bracket#:=0pt#; +jut#:=0pt#; +cap_jut#:=0pt#; +beak_jut#:=0pt#; +beak#:=.5/36pt#; +vair#:=21/36pt#; +notch_cut#:=17/36pt#; +bar#:=20/36pt#; +slab#:=22/36pt#; +cap_bar#:=21/36pt#; +cap_band#:=19/36pt#; +cap_notch_cut#:=24/36pt#; +serif_drop#:=2/36pt#; +stem_corr#:=1/36pt#; +vair_corr#:=1/36pt#; +apex_corr#:=4.5/36pt#; +o#:=7/36pt#; +apex_o#:=0pt#; +slant:=0; +fudge:=.95; +math_spread:=.2; +superness:=1/sqrt2; +superpull:=1/20; +beak_darkness:=0; +ligs:=2; +square_dots:=true; +hefty:=true; +serifs:=false; +monospace:=false; +low_asterisk:=false; +math_fitting:=false; +sc.u#:=12.95/36pt#; +sc.letter_fit#:=2.4/36pt#; + +generate tipa % switch to the driver file diff --git a/Master/texmf-dist/fonts/source/public/tipa/tipasym1.mf b/Master/texmf-dist/fonts/source/public/tipa/tipasym1.mf new file mode 100644 index 00000000000..0fd8d769654 --- /dev/null +++ b/Master/texmf-dist/fonts/source/public/tipa/tipasym1.mf @@ -0,0 +1,922 @@ +% tipasym1.mf: TIPA phonetic symbols (1) +% Copyright 1996-2003 FUKUI Rei +% +% This program may be distributed and/or modified under the +% conditions of the LaTeX Project Public License, either version 1.2 +% of this license or (at your option) any later version. +% The latest version of this license is in +% http://www.latex-project.org/lppl.txt +% and version 1.2 or later is part of all distributions of LaTeX +% version 1999/12/01 or later. +% +% This program consists of all files listed in Manifest.txt. +% +% Version 1.2 2003/01/01 +% +% This font is based on: +% Computer Modern font series by D. E. Knuth and +% TSIPA by KOBAYASHI Hajime, FUKUI Rei and SHIRAKAWA Shun. +% + +cmchar "Barred U"; +beginchar("0",10u#,x_height#,0); +italcorr x_height#*slant-serif_fit#+.5stem#-1.5u#; +if serifs: adjust_fit(serif_fit#+stem_shift#,serif_fit#-stem_shift#); +else: adjust_fit(serif_fit#+stem_shift#+.5u#,serif_fit#-stem_shift#+.5u#); fi +numeric light_vair; light_vair=vair if hefty: -vround 2vair_corr fi; +if light_vair<fine.breadth: light_vair:=fine.breadth; fi +pickup tiny.nib; pos1(stem,0); pos2(stem,0); +pos3(stem,0); pos4(stem',0); +lft x1l=hround(side_gap-.5stem); x1=x2; x3=w-x1; x3r=x4r; +if serifs: top y1=h if Times_Compat: else: +min(oo,serif_drop) fi; + bot y4=-min(oo,serif_drop); +else: top y1=h; bot y4=0; fi +pos0(stem,0); pos0'(stem',0); x0=x3; x0'=x4; y0=y0'; +penpos2'(stem-fine,-180); z2'=z2; y3=y1; y2=.5bar_height; +penpos5(max(eps,light_vair-fine),-90); penpos6(thin_join-fine,0); +y6=y0=2/3bar_height; +filldraw stroke z1e--z2e; % left stem +filldraw stroke z3e..z0e--z0'e..z4e; % right stem +pickup fine.nib; bot y5r=-oo; x5l=.5w-.25u; lft x6l=tiny.lft x0l; +(x,y5r)=whatever[z5l,z6l]; x5r:=max(x,.5[x5,x2'r]); +filldraw stroke {{interim superness:=hein_super; + pulled_arc.e(2',5)}} & z5e{right}...{up}z6e; % arc +if serifs: numeric upper_serif_drop, lower_serif_drop; + if Times_Compat: upper_serif_drop=0; lower_serif_drop=serif_drop; + else: upper_serif_drop=serif_drop; lower_serif_drop=min(oo,serif_drop); fi + sloped_serif.l(1,2,a,1/3,jut,upper_serif_drop); % upper left serif + sloped_serif.l(3,0,b,1/3,jut,upper_serif_drop); % upper right serif + sloped_serif.r(4,0',c,1/3,jut,lower_serif_drop); fi % lower right serif +hbar(7,8,lft x1l - hround(1.5u),rt x3r + hround(1.5u),.58x_height); +penlabels(1,2,3,4,5); labels(6); endchar; + +cmchar "Barred I"; +numeric dot_diam#; dot_diam#=max(dot_size#,cap_curve#); +beginchar("1",CT(5u#,5.56u#),min(asc_height#,10/7x_height#+.5dot_diam#),0); +define_whole_blacker_pixels(dot_diam); +italcorr h#*slant-serif_fit# + .5dot_diam# -2u#; +if serifs: adjust_fit(serif_fit#+stem_shift#+.3u# if monospace:+.25u#fi, + serif_fit#-stem_shift#+.3u#); +else: adjust_fit(serif_fit#+stem_shift#+.8u# if monospace:+.25u#fi, + serif_fit#-stem_shift#+.8u#); fi +pickup tiny.nib; pos1(stem',0); pos2(stem',0); +if odd(w-stem'): change_width; fi +lft x1l=hround(.5w-.5stem'); x1=x2; +top y1=x_height if serifs: +min(oo,serif_drop) fi; bot y2=0; +filldraw stroke z1e--z2e; % stem +pos3(dot_diam,0); pos4(dot_diam,90); +if serifs: x3r=max(x1r,hround(x1+.5dot_diam-.2jut)-.5tiny) +else: x3=x1-.5 fi; +top y4r=h+1; +if bot y4l-top y1<slab: y4l:=min(y4r-eps,y1+tiny+slab); fi +x3=x4; y3=.5[y4l,y4r]; dot(3,4); % dot +if serifs: sloped_serif.l(1,2,a,1/3,.95jut,serif_drop); % upper serif + dish_serif(2,1,b,1/3,jut,c,1/3,.9jut); fi % lower serif +hbar(5,6,lft x1l - hround(1.8u),rt x1r + hround(1.8u),.58x_height); +penlabels(1,2,3,4); endchar; + +cmchar "Turned V"; +beginchar("2",CT(if serifs: 9.5u# else:9u# fi,10u#),x_height#,0); +adjust_fit(serif_fit# if monospace:+\\.5u#,.5u#+ else:,fi\\ serif_fit#); +numeric left_stem,right_stem,outer_jut,alpha; +right_stem=fudged.stem-stem_corr; +left_stem=min(fudged.hair if hefty:-2stem_corr fi,right_stem); +outer_jut=.75jut; +x1l=w-x4r=l+letter_fit+outer_jut+.25u; y1=y4=0; +x2-x1=x4-x3; x2r+apex_corr=x3r; y2=y3=h+apex_oo; +alpha=diag_ratio(2,left_stem,y2-y1,x4r-x1l-apex_corr); +penpos1(alpha*left_stem,0); penpos2(alpha*left_stem,0); +penpos3(alpha*right_stem,0); penpos4(alpha*right_stem,0); +z0=whatever[z1r,z2r]=whatever[z3l,z4l]; +if y0<h-notch_cut: y0:=h-notch_cut; + fill z0+.5right{down}...{z4-z3}diag_end(3l,4l,1,1,4r,3r) + --diag_end(4r,3r,1,1,2l,1l)--diag_end(2l,1l,1,1,1r,2r){z2-z1} + ...{up}z0+.5left--cycle; % left and right diagonals +else: fill z0--diag_end(0,4l,1,1,4r,3r)--diag_end(4r,3r,1,1,2l,1l) + --diag_end(2l,1l,1,1,1r,0)--cycle; fi % left and right diagonals +if serifs: numeric inner_jut; pickup tiny.nib; + prime_points_inside(1,2); prime_points_inside(4,3); + if rt x1'r+jut+.5u+1<=lft x4'l-jut: inner_jut=jut; + else: rt x1'r+inner_jut+.5u+1=lft x4'l-inner_jut; fi + dish_serif(1',2,a,1/3,outer_jut,b,1/2,inner_jut)(dark); % left serif + dish_serif(4',3,c,.6,inner_jut,d,1/2,outer_jut); fi % right serif +penlabels(0,1,2,3,4); endchar; + +cmchar "Reversed epsilon"; +beginchar("3",CT(8.5u#,8.88u#),x_height#,0); +italcorr x_height#*slant-.5u#; +adjust_fit(0,0); +epsilon_stroke(true,3.5u); +if serifs: numeric bulb_diam; + bulb_diam=max(flare-.75(cap_stem-stem),stem); + pos0(bulb_diam,180); pos1(hair,180); + lft x0r=hround u; y0=min(.9h-.5bulb_diam,.75h+.5bulb_diam); + bulb(2,1,0); % upper bulb + pos9(bot_thickness,angle(-2u,-h)); +else: pos1(.47[vair',flare],100); lft x1r = 1u; top y1r = .9h; + filldraw stroke term.e(2,1,left,1,4); + pos9(.6[vair',flare],-100); fi +lft x9r=hround .75u; top y9=vround .25h-o; +y9r:=good.y y9r-eps; x9l:=good.x x9l; +filldraw stroke term.e(8,9,left,1,4); % lower terminal +penlabels(0,1,2,3,4,5,6,7,8,9,10); endchar; + +cmchar "Turned H"; +beginchar("4",10u#,x_height#,desc_depth#); +italcorr x_height#*slant+serif_fit#; +adjust_fit(serif_fit#-stem_shift#,serif_fit#+stem_shift#); +pickup tiny.nib; pos1(stem,0); pos2(stem,0); +pos1'(stem',0); pos2'(stem',0); pos3(stem,0); +rt x1r=hround(w-(2.5u-.5stem)); x1r=x1'r=x2r=x2'r; x3=w-x1; +bot y1=-d-min(oo,serif_drop); top y2=h; y1=y1'; y2=y2'; +filldraw stroke z1'e--z2'e; % left stem +turned_h_stroke(2,a,3,4); % arch and right stem +if serifs: sloped_serif.r(1',2',b,1/3,jut,serif_drop); % upper left serif + numeric inner_jut; pickup tiny.nib; + if lft x2l-jut-.5u-1>=rt x4r+jut: inner_jut=jut; + else: lft x2l-jut-.5u-1=rt x4r+inner_jut; fi + dish_serif(2,1,c,1/3,jut,d,1/3,jut); % lower left serif + dish_serif(4,3,e,1/3,inner_jut,f,1/3,jut); fi % lower right serif +penlabels(1,2,3,4); endchar; + +cmchar "Turned A"; +beginchar("5",CT(9u#,8.88u#),x_height#,0); +if Times_Compat: bh#:=.6x_height#; +else: bh#:=min(bar_height#,1.14x_height#-bar_height#); fi +define_pixels(bh); +italcorr .8x_height#*slant+.5stem#-1u#; +adjust_fit(serif_fit# if serifs: if hair#+.5stem#>1.5u#:-.25u# fi\\fi,0); +pickup fine.nib; bot y3r=-vround 1.5oo; +if serifs: pos1(flare,0); pos2(hair,0); pos3(vair,-90); + rt x1r=hround(w-max(u,if Times_Compat:1.5u else:2.1u fi-.5flare)); + x3=.5w if Times_Compat:+.25u else:+.5u fi; + y1=h-(min(bh+.5flare+2vair+2,.9[bh,h]-.5flare)); + bulb(3,2,1); % bulb +else: pos1(5/7[vair,flare],-85); x1l=good.x(w-1.5u); x1r:=good.x x1r; + pos3(1/8[vair,thin_join],-90); + x3=.5w+.2u; bot y1r=vround(.18[bot y3r,h-bh]); + filldraw stroke term.e(3,1,right,.9,4); fi % terminal +pos4(stem,180); lft x4r=hround(side_gap-.5stem); +y4=h-if Times_Compat: .5 else: 1/3 fi[bh,h]; +pos5(stem,180); x5=x4; +y5=h-if Times_Compat: max(.45bh,2vair) else: max(.55bh,2vair) fi; +filldraw stroke super_arc.e(3,4)&z4e..z5e; % arc and stem +pos6(.3[thin_join,vair],-90); x6=x4; top y6=h-if Times_Compat: 1.1 fi bh; +pos7(hround(curve-2stem_corr),if Times_Compat: 20 else: 0 fi); +rt x7r=hround(w-max(.5u,1.5u-.5curve)); +if Times_Compat: y7=.3[bot y8l,bot y6r]; pos8(.6[vair,flare],30); x8l=.5w+1u; +else: y7=1/3[bot y8l,bot y6r]; pos8(vair,90); x8l=.5w+.75u; fi +pos9(thin_join,180); z9l=z5l; top y8r=h+oo; +(x,y8r)=whatever[z8l,z9l]; x8r:=min(x,x8+u); +{{interim superness:=more_super; + filldraw stroke z9e{up}...z8e{right}...{down}z7e & + if Times_Compat: z7e{down}...{(-35,-10)}z6e + else: super_arc.e(7,6)fi}}; % bowl +if serifs: numeric shaved_stem; shaved_stem=hround(stem-3stem_corr); + if hair#+.5stem#>1.5u#: pickup tiny.nib; + pos5'(shaved_stem,180); lft x5'r=fine.lft x5r; y5'=y5; + pos10(shaved_stem,180); x10=x5'; y10=h-.2[.5tiny,bh]; + pos11(shaved_stem,180); lft x11r=hround .25u; top y11=h; + pos12(shaved_stem,180); x11=x12; bot y12=h-(slab+eps); + filldraw z5'l---z10l...z11l{left}--z11r + --z12r{right}...z10r-.75(z12-z11)---z5'r--cycle; % foot + else: pickup crisp.nib; pos5'(shaved_stem,180); lft x5'r=fine.lft x5r; y5'=y5; + pos10(shaved_stem,180); x10=x5'; y10=h-1/3bh; + pos11(.2[vair,stem],-90); x11r=.5[x10r,x12r]; top y11l=h+vround .5oo; + pos12(hair,0); lft x12l=hround(.1u); y12=min(y10,y11-vair); + pos13(hair,0); x13=x12; bot y13=min(vround(h-.6bh),bot y12); + (x',y11l)=whatever[z11r,z12r]; x11l:=min(x',x10); + if Times_Compat: y13l:=.05[y12l,y13l]; y13r:=y13l; fi + filldraw stroke z5'e---z10e...z11e{left}...z12e---z13e; fi % hook +else: numeric shaved_stem; shaved_stem=hround(stem-stem_corr); + pickup tiny.nib; pos5'(shaved_stem,180); lft x5'r=fine.lft x5r; y5'=y5; + pos10(shaved_stem,180); x10=x5'; top y10=h; + filldraw stroke z5'e--z10e; fi % base of stem +penlabels(1,2,3,4,5,6,7,8,9,10,11,12,13); endchar; + +cmchar "Turned script A"; +beginchar("6",10u#+serif_fit#,x_height#,0); +italcorr .5x_height#*slant+min(.5curve#-u#,-.25u#); +adjust_fit(serif_fit#,0); +pickup tiny.nib; pos1(stem',0); pos2(stem,0); +pos0'(stem',0); pos0(stem,0); z0l=z0'l; x0'=x1; x0=x2; +lft x1l=hround(side_gap-.5stem'); top y1=h+min(oo,serif_drop); +numeric edge; edge=rt x2r; +pickup fine.nib; pos3(if hefty:thin_join else: hair fi,180); +pos4(vair,90); pos5(curve,0); pos6(vair,-90); penpos7(x3l-x3r,-180); +rt x3l=max(rt x3l-(lft x3r-tiny.lft x2l),1/3[rt x2,edge]); +y3=1/8[bar_height,x_height]; +x4l=w-.5(w-serif_fit)+.5u; top y4r=x_height+oo; +rt x5r=hround min(w-1.35u+.5curve,w-.6u); y5=.5x_height; +x6l=x4l-.2u; bot y6r=-oo; +x7=x3; y7=min(y3,y6+y4-y3+.6vair); +(x,y4r)=whatever[z3l,z4l]; x4r:=min(x,.5[x4,x5r]); +(x',y6r)=whatever[z7l,z6l]; x6r:=min(x',.5[x6,x5r]); +filldraw stroke z3e{up}...pulled_arc.e(4,5)&pulled_arc.e(5,6)...{up}z7e; % bowl +y0=ypart(((edge,h)--(edge,0))intersectionpoint(z3l{up}...{right}z4l)); +y2=ypart(((edge,h)--(edge,0))intersectionpoint(z6l{left}...{up}z7l)); +pickup tiny.nib; filldraw stroke z1e--z0'e--z0e--z2e; % stem +pickup crisp.nib; pos8(hair,0); pos7'(stem,0); +z7'=z2; x8l=x7'l; bot y8=0; +filldraw stroke z7'e--z8e; % point +if serifs: sloped_serif.l(1,0',a,1/3,jut,serif_drop); fi % upper serif +penlabels(0,1,2,3,4,5,6,7,8); endchar; + +cmchar "Ram's horns"; +beginchar("7",CT(9.5u#,10u#),x_height#,0); +italcorr x_height#*slant+.5hair#-.5u#; +adjust_fit(0,0); pickup fine.nib; +if serifs: pos1(hair,0); pos9(hair,180); +else: pos1(fudged.stem,-10); pos9(fudged.stem,190); fi +pos2(vair,-90); pos5(vair,90); pos8(vair,-90); +lft x1l=w-rt x9l=hround(.5u-.25hair); y1=y9=.9h-.5hair; x5=.5w; bot y5l=-o; +x2=w-x8=x1+1u+.15hair; top y2l=top y8l=h+o; +if serifs: pos4(stem,180); pos6(hair,0); pos3(stem,180);pos7(hair,0); +else: pos4(fudged.stem,180); pos6(fudged.hair,0); + pos3(fudged.stem,180);pos7(fudged.hair,0); fi +rt x4l=hround(x5+1u+.5stem); lft x6l=hround(x5-1u-.5hair); +y4=y6=.25h+.5max(vair,.5stem); +rt x3l=lft x7l=.5w+.5(.5stem-.5hair); +y3=y7=.55h+1.5max(vair,.5stem); +filldraw stroke z3e--z4e{z4-z3}...{left}z5e...{z7-z6}z6e--z7e; +filldraw stroke z1e{up}..z2e...{z4-z3}z3e; +filldraw stroke z7e{z7-z6}...z8e..{down}z9e; +penlabels(1,2,3,4,5,6,7,8,9); endchar; + +cmchar "Barred O"; +beginchar("8",CT(9u#,10u#),x_height#,0); +italcorr .7x_height#*slant; +adjust_fit(if monospace: .5u#,.5u# else: 0,0 fi); +penpos1(vair,90); penpos3(vair',-90); +penpos2(curve,180); penpos4(curve,0); +x2r=hround max(.5u,1.25u-.5curve); +x4r=w-x2r; x1=x3=.5w; y1r=h+vround 1.5oo; y3r=-oo; +y2=y4=.5h-vair_corr; y2l:=y4l:=.52h; +penstroke pulled_arc.e(1,2) & pulled_arc.e(2,3) + & pulled_arc.e(3,4) & pulled_arc.e(4,1) & cycle; % bowl +hbar(5,6,x2,x4,.5x_height+.5bar); +penlabels(1,2,3,4); endchar; + +cmchar "Reversed E"; +beginchar("9",CT(7.25u#+max(.75u#,.5curve#),8.88u#),x_height#,0); +italcorr .5[bar_height#,x_height#]*slant+.5min(curve#-1.5u#,0); +adjust_fit(if monospace: .25u#,.5u# else: 0,0 fi); +numeric left_curve,right_curve; +left_curve=right_curve+6stem_corr=curve if not serifs: -3stem_corr fi; +if right_curve<tiny.breadth: right_curve:=tiny.breadth; fi +if left_curve<tiny.breadth: left_curve:=tiny.breadth; fi +pickup tiny.nib; pos1(right_curve,180); +pos2(vair,90); pos3(left_curve,0); +y1=good.y bar_height; top y2r=h+vround 1.5oo; y0l=bot y1; +lft x1r=hround max(.5u,u-.5right_curve); +rt x3r=hround min(w-.5u,w-(1.25u-.5left_curve)); x2=.5w-.25u; +{{interim superness:=more_super; + filldraw stroke super_arc.e(1,2)}}; % right bowl +y3=.5[y2,y4]; bot y4r=-oo; x4=x2-.25u; +if serifs: pos4(vair',-90); pos5(hair,-180); + y5=max(good.y(.5bar_height-.9),y4l+vair); x5r=x1r; + (x,y4l)=whatever[z4r,z5]; x4l:=max(x,x4l-.5u); + filldraw stroke pulled_arc.e(2,3) & pulled_arc.e(3,4) + ...{x5-x4,5(y5-y4)}z5e; % left bowl, arc, and terminal +else: pos4(vair,-90); + filldraw stroke super_arc.e(2,3) & super_arc.e(3,4); % left bowl and arc + pickup fine.nib; pos4'(vair,-90); z4=z4'; + pos5(.5[vair,flare],-95); lft x5r=hround(.6u); + y5r=good.y(y5r+1/3bar_height-y5); y5l:=good.y y5l; x5l:=good.x x5l; + filldraw stroke term.e(4',5,left,1,4); fi % terminal +path testpath; testpath=super_arc.r(2,3) & super_arc.r(3,4); +y1'r=y0r=y0l+.6[thin_join,vair]; y1'l=y0l; x1'l=x1'r=x1; +forsuffixes $=l,r: + x0$=xpart(((0,y0$)--(w,y0$)) intersectionpoint testpath); endfor +fill stroke z0e--z1'e; % crossbar +penlabels(0,1,2,3,4,5); endchar; + +cmchar "Schwa"; +beginchar("@",CT(7.25u#+max(.75u#,.5curve#),8.88u#),x_height#,0); +italcorr .5[bar_height#,x_height#]*slant+.5min(curve#-1.5u#,0); +adjust_fit(if monospace: .25u#,.5u# else: 0,0 fi); +numeric left_curve,right_curve; +left_curve=right_curve+6stem_corr=curve if not serifs: -3stem_corr fi; +if right_curve<tiny.breadth: right_curve:=tiny.breadth; fi +if left_curve<tiny.breadth: left_curve:=tiny.breadth; fi +pickup tiny.nib; pos1(right_curve,180); +pos2(vair,-90); pos3(left_curve,0); +y1=good.y (h-bar_height); bot y2r=-vround 1.5oo; y0l=top y1; +lft x1r=hround min(.5u,u-.5right_curve); +rt x3r=hround max(w-.5u,w-1.25u+.5left_curve); x2=.5w-.25u; +{{interim superness:=more_super; + filldraw stroke super_arc.e(1,2)}}; % right bowl +y3=.5[y2,y4]; top y4r=h+oo; x4=x2-.25u; +if serifs: pos4(vair',90); pos5(hair,180); + y5=min(good.y(h-(.5bar_height-.9)),y4l-vair); x5r=x1r; + (x,y4l)=whatever[z4r,z5]; x4l:=max(x,x4l-.5u); + filldraw stroke pulled_arc.e(2,3) & pulled_arc.e(3,4) + ...{x5-x4,5(y5-y4)}z5e; % left bowl, arc, and terminal +else: pos4(vair,90); + filldraw stroke super_arc.e(2,3) & super_arc.e(3,4); % left bowl and arc + pickup fine.nib; pos4'(vair,90); z4=z4'; + pos5(.5[vair,flare],95); lft x5r=hround(.6u); + y5r=good.y(h-(-y5r+1/3bar_height+y5)); y5l:=good.y y5l; x5l:=good.x x5l; + filldraw stroke term.e(4',5,left,1,4); fi % terminal +path testpath; testpath=super_arc.r(2,3) & super_arc.r(3,4); +y1'r=y0r=y0l-.6[thin_join,vair]; y1'l=y0l; x1'l=x1'r=x1; +forsuffixes $=l,r: + x0$=xpart(((w,y0$)--(x1,y0$)) intersectionpoint testpath); endfor +fill stroke z0e--z1'e; % crossbar +penlabels(0,1,1',2,3,4,5); endchar; + +cmchar "Script A"; +beginchar("A",10u#+serif_fit#,x_height#,0); +italcorr asc_height#*slant-serif_fit#+.5stem#-2.5u#; +adjust_fit(0,serif_fit#); +pickup tiny.nib; pos1(stem',0); pos2(stem,0); +pos0'(stem',0); pos0(stem,0); z0r=z0'r; x0'=x1; x0=x2; +rt x1r=hround(w-side_gap+.5stem'); top y1=h+oo; +numeric edge; edge=lft x2l; +pickup fine.nib; pos3(if hefty:thin_join else: hair fi,0); +pos4(vair,90); pos5(curve,180); +pos6(vair,270); penpos7(x3r-x3l,360); +lft x3l=1/3[lft x2,edge]; y3=1/8[bar_height,x_height]; +x4l=.5(w-serif_fit)-.3u; top y4r=x_height+oo; +lft x5r=hround max(1.35u-.5curve,.6u); y5=.5x_height; +x6l=x4l-.2u; bot y6r=-oo; +x7=x3; y7=min(y3,y6+y4-y3+.6vair); +(x,y4r)=whatever[z3l,z4l]; x4r:=max(x,.5[x5r,x4]); +(x',y6r)=whatever[z7l,z6l]; x6r:=max(x',.5[x5r,x6]); +filldraw stroke z3e{up}...pulled_arc.e(4,5) + & pulled_arc.e(5,6)...{up}z7e; % bowl +y0=ypart(((edge,h)--(edge,0))intersectionpoint(z3l{up}...{left}z4l)); +pickup tiny.nib; bot y2=if serifs:-min(oo,serif_drop) else: 0 fi; +filldraw stroke z0'e--z0e--z2e; % stem +pickup crisp.nib; +pos8(hround(hair-stem_corr),0); pos7'(stem',0); +z7'=z0'; x8r=x7'r; top y8=h+oo; +filldraw stroke z7'e--z8e; +if serifs: sloped_serif.r(2,0,b,1/3,jut,serif_drop); fi % lower serif +penlabels(0,1,2,3,4,5,6,7,8); endchar; + +cmchar "Beta"; +beginchar("B",CT(9.0u#,9.5u#),asc_height#,desc_depth#); +italcorr .5[x_height#,asc_height#]*slant-u#; +adjust_fit(serif_fit#+.5u#,0); pickup tiny.nib; +pos0(stem,180); pos1(stem,180); pos2(vair,90); +pos3(stem,0); pos4(vair,-90); pos5(vair,90); +pos6(vair,-270); pos7(curve,-360); pos8(vair,-450); +if serifs: if monospace: pos9(stem,-540); else: pos9(1.25hair,-540); fi +else: pos9(stem,-540); fi +pos0'(stem,0); pos1'(stem,0); z0'=z0; z1'=z1; +x0=x1=x9; lft x0r=hround u; x4=x6=x8=.5w+.5u-.25curve; x2=.5w; +rt x3r=hround(w-1.5u); rt x7r=hround(w-1.5u+.5curve); +lft x5r=min(hround(rt x1l+1.2u),hround(x2-.3curve)); +bot y0'=-d; top y4l=vround(.56asc_height+.5vair); +top y2r=h+oo; y1+o=y3=.5[y2,y4]; +y5=.5[y4,y6]; y4l=y6r; bot y8=-oo; y7=y9=.5[y6,y8]; +pos4'(vair,-90); pos6'(vair,-270); z4'=z6'=z5; +filldraw stroke z0e---z1e...pulled_arc.e(2,3) + & pulled_arc.e(3,4)...{left}z4'e; % stem and upper bowl +filldraw stroke z6'e{right}...pulled_arc.e(6,7) + & pulled_arc.e(7,8)...{up}z9e; % lower bowl +if serifs: dish_serif(0',1',a,1/3,jut,b,1/3,jut); fi +penlabels(0,1,2,3,4,5,6,7,8,9); endchar; + +cmchar "Curly-tail C"; +beginchar("C",CT(8u#,8.88u#),x_height#,desc_depth#); +italcorr x_height#*slant-.2u#; +adjust_fit(if monospace: .5u#,.5u# else: 0,0 fi); +numeric BH; BH=if Times_Compat:.5613h else: bar_height fi; +pickup fine.nib; pos2(vair',90); pos4(vair',270); +x2=x4=.5(w+u); top y2r=vround(h+1.5oo); bot y4r=-oo; +pos3(curve,180); lft x3r=hround max(.6u,1.35u-.5curve); y3=.5h; +if serifs: pos1(hair,0); pos0(flare,0); + y1=min(BH+.5flare+2vair'+2,.9[BH,h]-.5flare); + rt x1r=hround(w-.7u); bulb(2,1,0); % bulb + pos5(hair,0); rt x5r=hround(.92w); y5=.16h+.5vair; + (x,y4l)=whatever[z4r,z5l]; x4l:=min(x,x4l+.5u); + filldraw stroke pulled_super_arc.e(2,3)(.7superpull) + & pulled_super_arc.e(3,4)(.5superpull) + ..tension .9 and 1..{up}z5e; % arc and lower terminal +else: pos1(4/7[vair',flare],80); + rt x1r=hround(w-.6u); top y1r=vround .82[BH,top y2r]; + filldraw stroke term.e(2,1,right,.8,4); % upper terminal + pos5(.6[vair',flare],0); x5r=hround(w-.4u); + y5=.16h+.5vair; + filldraw stroke pulled_super_arc.e(2,3)(.7superpull) + & pulled_super_arc.e(3,4)(.5superpull) & z4e{right}...{up}z5e; fi +pos6(vair,100); x6l=.3[x4,x5]; y6=.3h+.5vair; +pos8(vair,180); x8=u; bot y8=-.75d; +pos7(vair,160); x7=.65[x3r,x4r]; y7=.4[y4,y6]; +filldraw stroke z5e{up}...{(-8,-1)}z6e...{z8-z7}z7e...{(-1,-2)}z8e; +penlabels(0,1,2,3,4,5,6,7,8); endchar; + +cmchar "Eth"; +beginchar("D",CT(9u#,10u#),asc_height#,0); +italcorr asc_height#*slant-.5u#; +adjust_fit(if monospace: .5u#,.5u# else: 0,0 fi); +penpos1(vair,90); penpos3(vair',-90); +penpos2(curve,180); penpos4(curve,0); +x2r=hround max(.5u,1.25u-.5curve); +x4r=w-x2r; x1=x3=.5w; y1r=if serifs:else:.95 fi x_height; y3r=-oo; +y2=y4=.5y1r-vair_corr; y2l:=y4l:=.52x_height; +penstroke pulled_arc.e(1,2) & pulled_arc.e(2,3) + & pulled_arc.e(3,4) & pulled_arc.e(4,1) & cycle; % bowl +if serifs and (not monospace): penpos5(hair/(sind 45),45); +else: penpos5(vair,80); fi +penpos4'(stem,0); x4r=x4'r; y4=y4'; top y5r=h+oo; x5=x2; +penstroke pulled_arc.e(4',5); +penpos6(bar+stem_corr,120); penpos7(bar+stem_corr,120); +y6=.35[y1,y5]; y7r=h+oo; x7r=rt x4; x6l=rt x2l; +filldraw stroke z6e--z7e; +penlabels(1,2,3,4,5,6,7); endchar; + +cmchar "Epsilon"; +beginchar("E",CT(8.5u#,8.88u#),x_height#,0); +italcorr x_height#*slant-.5u#; +adjust_fit(0,0); +epsilon_stroke(false,3.5u); +if serifs: numeric bulb_diam; + bulb_diam=max(flare-.75(cap_stem-stem),stem); + pos0(bulb_diam,0); pos1(hair,0); + rt x0r=hround (w-u); y0=min(.9h-.5bulb_diam,.75h+.5bulb_diam); + bulb(2,1,0); % upper bulb + pos9(bot_thickness,angle(2u,-h)); +else: pos1(.47[vair',flare],80); rt x1r = w-1u; top y1r = .9h; + filldraw stroke term.e(2,1,right,1,4); + pos9(.6[vair',flare],-80); fi +rt x9r=hround (w-.75u); top y9=vround .25h-o; +y9r:=good.y y9r-eps; x9l:=good.x x9l; +filldraw stroke term.e(8,9,right,1,4); % lower terminal +penlabels(0,1,2,3,4,5,6,7,8,9,10); endchar; + +cmchar "Phi"; +beginchar("F",11u#,asc_height#,desc_depth#); +italcorr .7x_height#*slant+.5curve#-1.25u#; +adjust_fit(0,0); pickup tiny.nib; +numeric light_curve; light_curve=hround(.5[stem,curve]-2stem_corr); +pos1(vair,90); pos2(light_curve,180); pos3(vair,270); pos4(light_curve,360); +x1=x3=.5w; lft x2r=hround(1.5u-.5light_curve); x4=w-x2; +top y1r=min(.75h,x_height+2oo); bot y3r=h-top y1r-d-oo; +y2=y4=.5[y1,y3]; +filldraw stroke pulled_arc.e(1,2) & pulled_arc.e(2,3) + & pulled_arc.e(3,4) & pulled_arc.e(4,1); % bowl +pos5(stem,0); pos6(stem,0); x5=x6=.5w; top y5=h; bot y6=-d; +filldraw stroke z5e--z6e; % stem +if serifs: dish_serif(5,6,a,1/3,jut,b,1/3,jut); + dish_serif(6,5,c,1/3,jut,d,1/3,jut); fi +penlabels(1,2,3,4,5,6); endchar; + +cmchar "Gamma"; +beginchar("G",CT(if serifs: 9.5u# else:9u# fi,10u#),x_height#,desc_depth#); +italcorr x_height#*slant+.25u#; +adjust_fit(serif_fit# if monospace:+\\.5u#,.5u#+ else:,fi\\ serif_fit#); +numeric left_stem,right_stem,outer_jut,alpha,raise; +left_stem=fudged.stem-stem_corr; +right_stem=min(fudged.hair if hefty:-2stem_corr fi,left_stem); +outer_jut=.75jut; x1l=w-x4r=l+letter_fit+outer_jut+.25u; y1=y4=h; +raise=if serifs: .05x_height; else: .08x_height; fi +x2-x1=x4-x3; x2l+apex_corr=x3l; y2=y3=raise; +alpha=diag_ratio(2,right_stem,y1-y2,x4r-x1l-apex_corr); +penpos1(alpha*left_stem,0); penpos2(alpha*left_stem,0); +penpos3(alpha*right_stem,0); penpos4(alpha*right_stem,0); +z0=whatever[z1r,z2r]=whatever[z3l,z4l]; +if y0>notch_cut+raise: y0:=notch_cut+raise; + fill z0+.5right{up}...{z4-z3}diag_end(3l,4l,1,1,4r,3r) + --diag_end(4r,3r,1,1,2l,1l)--diag_end(2l,1l,1,1,1r,2r){z2-z1} + ...{down}z0+.5left--cycle; % left and right diagonals +else: fill z0--diag_end(0,4l,1,1,4r,3r)--diag_end(4r,3r,1,1,2l,1l) + --diag_end(2l,1l,1,1,1r,0)--cycle; fi % left and right diagonals +if serifs: numeric inner_jut; pickup tiny.nib; + prime_points_inside(1,2); prime_points_inside(4,3); + if rt x1'r+jut+.5u+1<=lft x4'l-jut: inner_jut=jut; + else: rt x1'r+inner_jut+.5u+1=lft x4'l-inner_jut; fi + dish_serif(1',2,a,1/3,outer_jut,b,1/2,inner_jut); % left serif + dish_serif(4',3,c,.6,inner_jut,d,1/2,outer_jut)(dark); fi % right serif +pickup penrazor; +penpos5(alpha*left_stem,0); penpos7(vair,-90); penpos9(alpha*right_stem,180); +y5=y9=y0; z5=whatever[z1,z2]; z9=whatever[z4,z3]; +y6=y8=-.5d if not serifs:+.5vair fi; +z6=whatever[z1,z2]; z8=whatever[z4,z3]; +bot y7r=-d-o; x7=.5w+.2(left_stem-right_stem); +numeric stem_jut[], y_shift, circle_gap; +circle_gap=(x6-.5left_stem)-(x8+.5right_stem); +stem_jut1=if circle_gap<.5u: .5 else: .15 fi left_stem; +stem_jut2=if circle_gap<.5u: .5 else: .15 fi right_stem; +y_shift=if (left_stem-1.2right_stem)>0: .25d else: 0 fi; +x6:=x6+stem_jut1; x8:=x8-stem_jut2; y8:=y8+y_shift; +penpos6(left_stem,0); penpos8(right_stem,180); +filldraw stroke z5e{z2-z1}..z6e..{left}z7e..z8e..{z4-z3}z9e; % bottom loop +if not serifs: % minor adjustments + pos5'(alpha*left_stem,0);pos9'(alpha*right_stem,180); + y5'=y9'=0; z5'l=whatever[z1l,z2l]; z9'l=whatever[z4r,z3r]; + fill z5l--z5'l--z5'--z5--cycle; + fill z9l--z9'l--z9'--z9--cycle; fi +penlabels(0,1,2,3,4,5,6,7,8,9); endchar; + +cmchar "Hooktop H"; +beginchar("H",10u#,asc_height#,0); +italcorr .7[x_height#,asc_height#]*slant-serif_fit#+.5stem#-2u#; +adjust_fit(serif_fit#+stem_shift#,serif_fit#-stem_shift#); +pickup tiny.nib; pos1(stem,0); pos2(stem,0); +pos1'(stem',0); pos2'(stem',0); pos3(stem,0); +lft x1l=hround(side_gap-.5stem); x1l=x1'l=x2l=x2'l; x3=w-x1; +top y1=.25[x_height,h]; bot y2=0; y1=y1'; y2=y2'; +filldraw stroke z1'e--z2'e; % left stem +h_stroke(2,b,3,4); % arch and right stem +hooktop(1,9,10,11,stem',hround(w-1.5u),h,.8,.55,.2); +if serifs: numeric inner_jut; pickup tiny.nib; + if rt x2r+jut+.5u+1<=lft x4l-jut: inner_jut=jut; + else: rt x2r+jut+.5u+1=lft x4l-inner_jut; fi + dish_serif(2,1,c,1/3,jut,d,1/3,jut); % lower left serif + dish_serif(4,3,e,1/3,inner_jut,f,1/3,jut); fi % lower right serif +penlabels(1,2,3,4,9,10,11); endchar; + +cmchar "Curly-tail J"; +numeric dot_diam#; dot_diam#=max(dot_size#,cap_curve#); +beginchar("J",CT(5.5u#,6.66u#),min(asc_height#,10/7x_height#+.5dot_diam#), + desc_depth#); +define_whole_blacker_pixels(dot_diam); +italcorr h#*slant-serif_fit#+.5stem#-2u#; +adjust_fit(serif_fit#+2stem_shift# if monospace:+\\.5u# fi +.5u#, + -2stem_shift# if monospace:-.5u# fi +.3u#); +pickup tiny.nib; pos1(stem',0); pos2(stem',0); +rt x1r=hround(.5w+.25u+.5stem'); x1=x2; +top y1=x_height if serifs: +min(oo,serif_drop) fi; bot y2=-1/3d; +filldraw stroke z1e--z2e; % stem +pos3(dot_diam,0); pos4(dot_diam,90); +x3r=x1r; top y4r=h+1; +if bot y4l-top y1<slab: y4l:=min(y4r-eps,y1+tiny+slab); fi +x3=x4; y3=.5[y4l,y4r]; dot(3,4); % dot +if serifs: sloped_serif.l(1,2,a,1/3,1.1jut,serif_drop); % upper serif + pickup tiny.nib; pos5(vair,-90); pos6(hair,-180); + pos7(vair,-270); pos8(vair,-270); + x5=.5[x2,x6r]; bot y5r=-d-oo; y6=-.6d; + if monospace: lft x6r=0 else: x6r=-.3u fi; + (x,y5r)=whatever[z5l,z2l]; x5r:=max(x,.5[x6r,x5]); + y7r=y8r=0h; x7=x2l-.5u; x8=w-.5u; + filldraw stroke z2e{down}...z5e{left}...z6e{up}...z7e{right}---z8e; +else: pickup fine.nib; pos2'(stem',0); z2'=z2; + pos6(.2[vair,stem'],-90); pos7(vair,-180); + pos8(vair,-270); pos9(vair,-270); + lft x7r=hround -.75u; y7=-.5d; + z5r=z2'r; (x2'l,y5l)=whatever[z7l,z5r]; x5l=x2'l; y5=y5r; + x6r=.5[x7r,x5r]; x6l:=.5[x7l,x5l]; bot y6r=-d-oo; + bot y8l = bot y9l = vround(-.5vair); x8 = .5[x7,x2]; x9 = w; + filldraw stroke z2'e..{down}z5e & super_arc.e(5,6) + & z6e{left}..z7e...{right}z8e--z9e; fi % arc and terminal +penlabels(1,2,3,4,5,6,7,8); endchar; + +cmchar "Turned Y"; +beginchar("L",CT(if serifs:9.5u# else:9u# fi,10u#),x_height#+desc_depth#,0); +italcorr (x_height#+.6desc_depth#)*slant+.25u#; +adjust_fit(serif_fit# if monospace:+\\.5u#,.5u#+ else:,fi\\ serif_fit#); +numeric left_stem,right_stem,bot_stem,bot_vair,outer_jut; +right_stem=fudged.stem-stem_corr; +left_stem=fudged.hair if hefty:-2stem_corr fi; +bot_stem=fudged.hair if hefty:-8stem_corr fi; +bot_vair=Vround(if serifs: vair else:.5[vair,bot_stem] fi); +outer_jut=.75jut; +x1l=w-x4r=l+letter_fit+outer_jut+.25u; y1l=y4r=0; y2r=y3=x_height; x2r=x3r; +numeric alpha,alpha[]; x9=w-3u; y9=h+oo-bot_vair; +alpha1=diag_ratio(2,bot_stem,y3-y1l,x4r-x1l-apex_corr); +alpha2=diag_ratio(1,bot_stem,y9-y1l,x4r-x9); +if alpha1>=alpha2: x4r-x3r=x2l-x1l+apex_corr; alpha=alpha1; +else: alpha=alpha2; z2r=whatever[z9,z1l-(alpha*bot_stem,0)]; fi +penpos1(alpha*left_stem,0); penpos2(alpha*bot_stem,0); +alpha3=(y3++(x4r-x3r))/y3; +penpos3(alpha3*right_stem,0); penpos4(alpha3*right_stem,0); +z0=whatever[z4l,z3l]=z1r+whatever*(z2l-z1l); +if y0<x_height-notch_cut: y0:=x_height-notch_cut; + fill z0+.5right{down}...{z4r-z3r}diag_end(0,4l,1,1,4r,3r) + --z3r--z2l--diag_end(2l,1l,1,1,1r,2r){z2-z1} + ...{up}z0+.5left--cycle; % left and right diagonals +else: fill z0--diag_end(0,4l,1,1,4r,3r)--z3r--z2l + --diag_end(2l,1l,1,1,1r,0)--cycle; fi % left and right diagonals +penpos5(alpha*bot_stem,0); z5r=whatever[z2r,z1r]; +y5+.5vair=x_height+.5desc_depth; +if serifs: numeric light_bulb; light_bulb=hround 7/8[hair,flare]; clearpen; + penpos6(vair,-90); penpos7(hair,0); penpos8(light_bulb,0); + penpos6'(vair,90);z6'=z6; + x6=w-2u; y6l=h+oo; y8+.5light_bulb=x_height+.85desc_depth; x8r=hround(w-.35u); + fill stroke z2e---z5e...{right}z6e; bulb(6',7,8); % arc and bulb + numeric inner_jut; pickup tiny.nib; + prime_points_inside(1,2); prime_points_inside(4,3); + if rt x1'r+jut+.5u+1<=lft x4'l-jut: inner_jut=jut; + else: rt x1'r+inner_jut+.5u+1=lft x4'l-inner_jut; fi + dish_serif(1',2,a,1/2,outer_jut,b,.6,inner_jut)(dark); % left serif + dish_serif(4',3,c,1/2,inner_jut,d,1/3,outer_jut); % right serif +else: penpos6(bot_vair,-90); x6=w-2.5u; y6l=h+oo; + fill stroke z2e---z5e...{right}z6e; % arc + pickup fine.nib; pos6'(bot_vair,-90); z6'=z6; + pos7(2/3[bot_vair,flare],-85); + rt x7r=hround(w-u); top y7l=x_height+vround(.96desc_depth)+oo;y7r:=good.y y7r; + filldraw stroke term.e(6',7,right,1,4); fi % arc and terminal +penlabels(0,1,2,3,4,5,6,7,8,9); endchar; + +cmchar "Left-tail M (at right)"; +beginchar("M",CT(15u#,15.56u#),x_height#,desc_depth#); +italcorr .5[bar_height#,x_height#]*slant-serif_fit#+.5stem#-1.75u#; +adjust_fit(serif_fit#+stem_shift#,-stem_shift# if serifs:-.5u# fi); +numeric shaved_stem; shaved_stem=hround(mfudged.stem-2stem_corr); +pickup tiny.nib; pos1(mfudged.stem,0); pos2(mfudged.stem,0); +pos1'(shaved_stem,0); pos2'(shaved_stem,0); +pos3(mfudged.stem,0); pos5(mfudged.stem,0); +lft x1l=hround(side_gap-.5stem); x1l=x1'l=x2l=x2'l; +lft x3l=hround(.5w-.5stem); x5-x3=x3-x1; +if not monospace: r:=hround(x5+x1)-l; fi % change width for better fit +top y1=h+min(oo,serif_drop); bot y2=0; y1=y1'; y2=y2'; +filldraw stroke z1'e--z2'e; % left stem +h_stroke(2,a,3,4); % left arch and middle stem +h_stroke(4,b,5,6); % right arch and right stem +if serifs: sloped_serif.l(1',2',c,1/3,jut,serif_drop); % upper left serif + numeric inner_jut; pickup tiny.nib; + if rt x2r+jut+.5u+1<=lft x4l-jut: inner_jut=jut; + else: rt x2r+jut+.5u+1=lft x4l-inner_jut; fi + dish_serif(2,1,d,1/3,jut,e,1/3,jut); % lower left serif + dish_serif(4,3,f,1/3,inner_jut,g,1/3,jut); fi % lower middle serif +left_tail(6,7,8,9,mfudged.stem,rt x4r); +penlabels(1,2,3,4,5,6,7,8,9); endchar; + +cmchar "Eng"; +beginchar("N",10u#,x_height#,desc_depth#); +italcorr .5[bar_height#,x_height#]*slant-serif_fit#+.5stem#-1.25u#; +adjust_fit(serif_fit#+stem_shift#,-stem_shift# if serifs:-.5u# fi); +pickup tiny.nib; pos1(stem,0); pos2(stem,0); +numeric shaved_stem; shaved_stem=hround(stem-2stem_corr); +pos1'(shaved_stem,0); pos2'(shaved_stem,0); pos3(stem,0); +lft x1l=hround(side_gap-.5stem); x1l=x1'l=x2l=x2'l; x3=w-x1; +top y1=h+min(oo,serif_drop); bot y2=0; y1=y1'; y2=y2'; +filldraw stroke z1'e--z2'e; % left stem +h_stroke(2,a,3,4); % arch and right stem +if serifs: sloped_serif.l(1',2',b,1/3,jut,serif_drop); % upper left serif + numeric inner_jut; pickup tiny.nib; + if rt x2r+jut+.5u+1<=lft x4l-jut: inner_jut=jut; + else: rt x2r+jut+.5u+1=lft x4l-inner_jut; fi + dish_serif(2,1,c,1/3,jut,d,1/3,jut); fi % lower left serif +left_tail(4,5,6,7,stem,rt x2r); +penlabels(1,2,3,4,5,6,7); endchar; + +cmchar "Open O"; +beginchar("O",CT(8u#,8.88u#),x_height#,0); +italcorr x_height#*slant-.5u#; +adjust_fit(if monospace: .5u#,.5u# else: 0,0 fi); +numeric BH; BH=if Times_Compat:.5613h else: bar_height fi; +pickup fine.nib; pos2(vair',-90); pos4(vair',90); +x2=x4=.5(w-u); bot y2r=vround(-1.5oo); top y4r=h+oo; +pos3(curve,0); rt x3r=hround min(w-.6u,w-1.35u+.5curve); y3=.5h; +if serifs: pos1(hair,-180); pos0(flare,-180); + y1=max(h-BH-.5flare-2vair'-2,h-.9[BH,h]+.5flare); + lft x1r=hround(.7u); bulb(2,1,0); % bulb + pos5(hair,-180); lft x5r=hround(.5u); + y5=min(h-good.y(.5BH-.9),y4l-vair'); + (x,y4l)=whatever[z4r,z5l]; x4l:=x; + filldraw stroke pulled_super_arc.e(2,3)(.7superpull) + & pulled_super_arc.e(3,4)(.5superpull) + ..tension .9 and 1..{x5-x4,5(y5-y4)}z5e; % arc and lower terminal +else: pos1(4/7[vair',flare],-100); + lft x1r=hround(.6u); bot y1r=h-vround .82[BH,top y4r]; + filldraw stroke term.e(2,1,left,.8,4); % upper terminal + pos5(.6[vair',flare],95); lft x5r=hround .5u; + y5r=good.y(h+y5r-1/3BH-y5); + y5l:=good.y y5l; x5l:=good.x x5l; + filldraw stroke pulled_super_arc.e(2,3)(.7superpull) + & pulled_super_arc.e(3,4)(.5superpull) + ..tension .9 and 1..z5e; fi % arc and lower terminal +penlabels(0,1,2,3,4,5); endchar; + +cmchar "Glottal stop"; +beginchar("P",CT(9u#,10u#),asc_height#,0); +italcorr .8asc_height#*slant-.5u#; +adjust_fit(0,0); +pickup tiny.nib; pos7(stem,0); bot y7=0; x7=.47w; +pos2(vair,90); pos3(curve,0); +pos4(vair,-90); pos5(stem,0); pos6(stem,0); +x2=x5=x6=x7; x4=x5l; +rt x3r=hround(w-u); bot y6=.3x_height; +top y2r=h+oo; y3=.5[y2,y4]; y4r=.5y2; y5=y4l; +{{interim superness:=more_super; + filldraw stroke pulled_super_arc.e(2,3)(superpull) + & z3e{down}...{(-10,-1)}z4e; + filldraw stroke z5e--z7e\\}}; % arc and stem +if serifs: pos1(hair,180); pos0(flare,180); + lft x1r=hround u; y1=.3[y3,y2]; bulb(2,1,0); % bulb + dish_serif(7,5,e,1/3,jut,f,1/3,jut); %serif +else: pickup fine.nib; pos2'(vair,90); z2'=z2; + pos1(vround 5/7[vair,flare],110); + lft x1r=hround u; top y1r=vround .9[y6,top y2r]; + filldraw stroke term.e(2',1,left,1,4); fi % terminal +penlabels(0,1,2,3,4,5,6,7); endchar; + +cmchar "Reversed glottal stop"; +beginchar("Q",CT(9u#,10u#),asc_height#,0); +italcorr .8asc_height#*slant-.5u#; +adjust_fit(0,0); +pickup tiny.nib; pos7(stem,0); bot y7=0; x7=.53w; +pos2(vair,90); pos3(curve,180); +pos4(vair,-90); pos5(stem,0); pos6(stem,0); +x2=x5=x6=x7; x4=x5r; +lft x3r=hround(u); bot y6=.3x_height; +top y2r=h+oo; y3=.5[y2,y4]; y4r=.5y2; y5=y4l; +{{interim superness:=more_super; + filldraw stroke pulled_super_arc.e(2,3)(superpull) + & z3e{down}...{(10,-1)}z4e; + filldraw stroke z5e--z7e\\}}; % arc and stem +if serifs: pos1(hair,0); pos0(flare,0); + rt x1r=hround (w-u); y1=.3[y3,y2]; bulb(2,1,0); % bulb + dish_serif(7,5,e,1/3,-jut,f,1/3,-jut); %serif +else: pickup fine.nib; pos2'(vair,90); z2'=z2; + pos1(vround 5/7[vair,flare],70); + rt x1r=hround (w-u); top y1r=vround .9[y6,top y2r]; + filldraw stroke term.e(2',1,right,1,4); fi % terminal +penlabels(0,1,2,3,4,5,6,7); endchar; + +cmchar "Fish-hook R"; +numeric r_flare#; r_flare#=.75[if serifs: stem# else: vair# fi,flare#]; +define_whole_blacker_pixels(r_flare); +beginchar("R",CT(if serifs:max(7u#,5.5u#+r_flare#) else:6.5u# fi,6.66u#), + x_height#,0); +italcorr x_height#*slant if not serifs: +.25u# fi; +adjust_fit(serif_fit#,0); +pickup fine.nib; top y4r=h+oo; +if serifs: pos4(vair,90); pos5(hair,0); x4=.5[x6,.5w]; + rt x5r=hround(w-if Times_Compat: .25u else: .5u fi +.5); + y5+.8r_flare=.9[bar_height,h]+oo; + pos6(r_flare,0); bulb(4,5,6); % bulb +else: pos4(r_flare,90); rt x4=hround(w-.25u); fi +pos0'(hround(stem-3stem_corr),180); +rt x0'l=hround(side_gap-.5stem')+stem'; top y0'=bar_height+1.8u; +filldraw stroke z0'e{up}...{right}z4e; % arc +pickup tiny.nib; pos0(stem',0); pos2(stem',0); +pos1(hround(stem-3stem_corr),0); top y1=h+min(oo,serif_drop); +y0=y0'; x1l=x0l=x2l; +lft x1l=hround(side_gap-.5stem'); bot y2=0; +filldraw stroke z0e--z2e; % stem +if serifs: dish_serif(2,0,b,1/3,jut,c,1/3,1.25jut); fi % lower serif +penlabels(1,2,0',4,5,6); endchar; + +cmchar "Esh"; +beginchar("S",CT(5u#,5.56u#),asc_height#,desc_depth#); +italcorr asc_height#*slant+1u#; +adjust_fit(.5u# if monospace:+1.5u# fi,.5u# if monospace:+1.5u# fi); +pickup tiny.nib; pos1(stem',0); pos2(stem',0); +lft x1l=hround(.5w-.5stem'); x2=x1; y2=0; h-y1=d; +filldraw stroke z1e--z2e; % stem +left_tail(2,3,4,5,stem',-1u); +hooktop(1,6,7,8,stem',w+1u,h,.9,.5,1/3); +penlabels(1,2,3,4,5,6,7,8); endchar; + +cmchar "Theta"; +beginchar("T",CT(8.25u#,8.88u#),asc_height#,0); +italcorr .7asc_height#*slant+.5curve#-u#; +adjust_fit(0,0); pickup fine.nib; +pos1(vair,90); pos2(curve,180); pos3(vair,270); pos4(curve,360); +x1=x3=.5w; lft x2r=hround(1.5u-.5curve); x4=w-x2; +top y1r=h+oo; y2=y4=.5[y1,y3]; bot y3r=-oo; +filldraw stroke pulled_arc.e(1,2) & pulled_arc.e(2,3) + & pulled_arc.e(3,4) & pulled_arc.e(4,1); % bowl +pos2'(bar,90); pos4'(bar,90); z2'=z2l; z4'=z4l; +filldraw stroke z2'e--z4'e; % bar +penlabels(1,2,3,4); endchar; + +cmchar "Upsilon"; +beginchar("U",CT(10u#,11u#),x_height#,0); +italcorr x_height#*slant; +adjust_fit(0,0); +pickup tiny.nib; pos1(vair,-90); pos2(curve,180); +pos3(vair,180); pos4(curve,0); pos5(vair,0); +x1=.5w; bot y1r=-o; lft x2r=hround 1.25u; y2=y4=.45h; x4=w-x2; +rt x3l=hround(1/3(w+.5u)+.25hair); top y3=top y5=h; x5=w-x3; +filldraw stroke z3e{down}...{down}z2e + & pulled_super_arc.e(2,1)(.5superpull) + & pulled_super_arc.e(1,4)(.5superpull) + & z4e{up}...{up}z5e; % bowl +numeric arm_thickness[]; path p; p=z3{down}...{down}z2; +arm_thickness1=vround(if hefty:slab+2stem_corr else: min(1.5slab,vstem) fi); +arm_thickness2=if (not serifs) or monospace: arm_thickness1; +else: vround(if hefty:.5slab+2stem_corr else: min(slab,.5vstem) fi); fi +pickup crisp.nib; pos6(arm_thickness1,90); pos7(arm_thickness2,90); +top y6r=top y7r=h; x6=x3; lft x7r=hround 1.0u; +(x,y)=p intersectionpoint((0,y6l)--(w,y6l)); x6l:=x; +filldraw stroke z6e--z7e; +pos8(arm_thickness1,90); pos9(arm_thickness2,90); +y8=y6; y9=y7; x8+x6=x9+x7=w; x8l:=w-x6l; +filldraw stroke z8e--z9e; +penlabels(1,2,3,4,5,6,7,8,9); endchar; + +cmchar "Script V"; +beginchar("V",CT(9u#,9u#),x_height#,0); +italcorr x_height#*slant-.5u#; +adjust_fit(serif_fit#+stem_shift#,stem_shift#); +pickup tiny.nib; interim superness:=more_super; +pos3(stem,-180); lft x3r=hround(side_gap-.5stem); +x0=0; x2=x3; top y2=h+min(oo,serif_drop); +pos2'(stem,-180); z2'=z2; pos4(vair,-90); pos5(hair,0); +x4=.5w; rt x5r=hround(w-.8u); y3=.5[y4,y5]; bot y4r=-oo; y5=.57h; +filldraw stroke z2'e{down}--super_arc.e(3,4) + ..tension atleast 1.05..{up}z5e; % left stem and arc +if serifs: v_bulb(5,6); % closing bulb + pos7(stem,0); pos8(stem,0); z7=z2; z8=z3; + sloped_serif.l(7,8,a,1/3,jut,serif_drop); +else: pos6(hair,15); top y6=h; x6=x5-.5u; + filldraw stroke z5e{up}..z6e; fi +penlabels(0,1,2,3,4,5,6,7,8); endchar; + +cmchar "Turned M"; +beginchar("W",CT(15u#,15.56u#),x_height#,0); +italcorr x_height#*slant+serif_fit#; +adjust_fit(serif_fit#-stem_shift#,serif_fit#+stem_shift#); +numeric shaved_stem; shaved_stem=hround(mfudged.stem-2stem_corr); +pickup tiny.nib; pos1(mfudged.stem,0); pos2(mfudged.stem,0); +pos1'(shaved_stem,0); pos2'(shaved_stem,0); +pos3(mfudged.stem,0); pos5(mfudged.stem,0); +rt x1r=hround(w-(2.5u-.5stem)); x1r=x1'r=x2r=x2'r; +rt x3r=hround(.5w+.5stem); x5-x3=x3-x1; +if not monospace: r:=hround(x5+x1)-l; fi % change width for better fit +bot y1=-min(oo,serif_drop); top y2=h; y1=y1'; y2=y2'; +filldraw stroke z1'e--z2'e; % left stem +turned_h_stroke(2,a,3,4); % left arch and middle stem +turned_h_stroke(4,b,5,6); % right arch and right stem +if serifs: sloped_serif.r(1',2',c,1/3,jut,serif_drop); % upper left serif + numeric inner_jut; pickup tiny.nib; + if lft x2l-jut-.5u-1>=rt x4r+jut: inner_jut=jut; + else: lft x2l-jut-.5u-1=rt x4r+inner_jut; fi + dish_serif(2,1,d,1/3,jut,e,1/3,jut); % lower left serif + dish_serif(4,3,f,1/3,inner_jut,g,1/3,jut); % lower middle serif + dish_serif(6,5,h,1/3,inner_jut,i,1/3,jut); fi % lower right serif +penlabels(1,2,3,4,5,6); endchar; + +cmchar "Chi"; +beginchar("X",CT(9.5u#,10u#),x_height#,desc_depth#); +italcorr x_height#*slant+.5hair#-.75u#; +adjust_fit(0,0); pickup fine.nib; +if serifs: pos1(hair,180); pos6(hair,180); + y1=y2l-h/6; y6=y5r+h/6; +else: pos1(fudged.hair,130); pos6(fudged.hair,130); + y1=y2l-h/8; y6=y5r+h/8; fi +pos2(curve,80); pos5(curve,80); +x1-.5hair=hround-.5hair+.5u; x6=w-x1; x2=w-x5=2u; +top y2r=h+oo; bot y5l=-d-oo; +z0=.5[z2,z5]; z2'=z2l+(.5u,0); z5'=z5r-(.5u,0); +numeric theta; theta=angle(z5'-z2')+90; +if serifs: pos3(hair,theta); pos4(hair,theta); +else: pos3(fudged.hair,theta); pos4(fudged.hair,theta); fi +y3r=y2r-h/3; y4l=y5l+h/3; %z3l=whatever[z2',z0]; z4r=whatever[z0,z5']; +if serifs: x3r+u=x4l-u=.5w; +else: x3r+.4u=x4l-.4u=.5w; fi +filldraw stroke z1e{up}..z2e{right}..z3e{z4r-z3r} + ..z4e{z4r-z3r}..{right}z5e..{up}z6e; % major diagonal and hooks +x8l=w-x7r=u; top y7=h; bot y8=-d; +if serifs: pos7(stem,0); pos8(stem,0); +else: pos7(fudged.stem,0); pos8(fudged.stem,0); fi +filldraw stroke z7e--z8e; % minor diagonal +penlabels(0,1,2,2',3,4,5',5,6,7,8); endchar; + +cmchar "Yogh"; +beginchar("Z",CT(8u#,8.88u#),x_height#,desc_depth#); +italcorr x_height#*slant-.5serif_fit#-.3u#; +adjust_fit(0,.5serif_fit#); +yogh_stroke(.5u,.3,.75u,false,false); +penlabels(1,2,3,4,5,6,7,8,9,10,12); endchar; + +cmchar "Pipe"; +beginchar("|",CT(5u#,5.56u#),asc_height#,desc_depth#); +italcorr asc_height#*slant+.5rule_thickness#-2u#; +adjust_fit(0,0); +numeric thickness; thickness=hround.4[hair,stem]; +pickup tiny.nib; pos1(thickness,0); pos2(thickness,0); +lft x1l = lft x2l = hround(.5w-.5thickness); +top y1=h; bot y2=-d; +filldraw stroke z1e--z2e; +penlabels(1,2); endchar; + +cmchar "Double pipe"; +beginchar("{",CT(8u#,8.88u#),asc_height#,desc_depth#); +italcorr asc_height#*slant+.5rule_thickness#-2u#; +adjust_fit(0,0); +numeric thickness; thickness=hround(.4[hair,stem]-2stem_corr); +pickup tiny.nib; pos1(thickness,0); pos2(thickness,0); +pos3(thickness,0); pos4(thickness,0); +x1=x2; x3=x4=w-x1; lft x1l = hround((w-3.2u-thickness)/2); +top y1=top y3=h; bot y2=bot y4=-d; +filldraw stroke z1e--z2e; filldraw stroke z3e--z4e; +penlabels(1,2,3,4); endchar; + +cmchar "Double-barred pipe"; +beginchar("}",10u#,asc_height#,desc_depth#); +italcorr asc_height#*slant+.5rule_thickness#-1.5u#; +adjust_fit(0,0); +numeric thickness[]; thickness1=hround.4[hair,stem]; +pickup tiny.nib; pos1(thickness1,0); pos2(thickness1,0); +lft x1l = lft x2l = hround(.5w-.5thickness1); +top y1=h; bot y2=-d; +filldraw stroke z1e--z2e; +thickness2=vround .3[vair,flare]; +pos3(thickness2,90); pos4(thickness2,90); +pos5(thickness2,90); pos6(thickness2,90); +lft x3l = lft x5l = hround 1u; +rt x4l = rt x6l = hround(w-1u); +top y3r = top y4r = h-d-bot y5; +bot y5l = bot y6l = vround(.4(h+d)-d-.5thickness2); +filldraw stroke z3e--z4e; +filldraw stroke z5e--z6e; +penlabels(1,2,3,4,5,6); endchar; + +% end of tipasym1.mf diff --git a/Master/texmf-dist/fonts/source/public/tipa/tipasym2.mf b/Master/texmf-dist/fonts/source/public/tipa/tipasym2.mf new file mode 100644 index 00000000000..5b4738c0da8 --- /dev/null +++ b/Master/texmf-dist/fonts/source/public/tipa/tipasym2.mf @@ -0,0 +1,720 @@ +% tipasym2.mf: TIPA phonetic symbols (2) +% Copyright 1996-2003 FUKUI Rei +% +% This program may be distributed and/or modified under the +% conditions of the LaTeX Project Public License, either version 1.2 +% of this license or (at your option) any later version. +% The latest version of this license is in +% http://www.latex-project.org/lppl.txt +% and version 1.2 or later is part of all distributions of LaTeX +% version 1999/12/01 or later. +% +% This program consists of all files listed in Manifest.txt. +% +% Version 1.2 2003/01/01 +% +% This font is based on: +% Computer Modern font series by D. E. Knuth and +% TSIPA by KOBAYASHI Hajime, FUKUI Rei and SHIRAKAWA Shun. +% + +% symbols in the section '340--'377 + +cmchar "Hooktop B"; +beginchar(oct"341",10u#,asc_height#,0); +italcorr .7[x_height#,asc_height#]*slant+min(.5curve#-u#,-.25u#); +adjust_fit(if serifs:-.5u# else:0 fi,0); +pickup tiny.nib; pos1(stem',0); pos2(stem,0); +pos0'(stem',0); pos0(stem,0); z0l=z0'l; x0'=x1; x0=x2; +lft x1l=hround(side_gap-.5stem'); top y1=.1[x_height,h]; +numeric edge; edge=rt x2r; +pickup fine.nib; pos3(if hefty:thin_join else: hair fi,180); +pos4(vair,90); pos5(curve,0); pos6(vair,-90); penpos7(x3l-x3r,-180); +rt x3l=max(rt x3l-(lft x3r-tiny.lft x2l),1/3[rt x2,edge]); +y3=1/8[bar_height,x_height]; +x4l=w-.5(w-serif_fit)+.5u; top y4r=x_height+oo; +rt x5r=hround min(w-1.35u+.5curve,w-.6u); y5=.5x_height; +x6l=x4l-.2u; bot y6r=-oo; +x7=x3; y7=min(y3,y6+y4-y3+.6vair); +(x,y4r)=whatever[z3l,z4l]; x4r:=min(x,.5[x4,x5r]); +(x',y6r)=whatever[z7l,z6l]; x6r:=min(x',.5[x6,x5r]); +filldraw stroke z3e{up}...pulled_arc.e(4,5)&pulled_arc.e(5,6)...{up}z7e; % bowl +y0=ypart(((edge,h)--(edge,0))intersectionpoint(z3l{up}...{right}z4l)); +y2=ypart(((edge,h)--(edge,0))intersectionpoint(z6l{left}...{up}z7l)); +pickup tiny.nib; filldraw stroke z1e--z0'e--z0e--z2e; % stem +pickup crisp.nib; pos8(hair,0); pos7'(stem,0); +z7'=z2; x8l=x7'l; bot y8=0; +filldraw stroke z7'e--z8e; % point +hooktop(1,9,10,11,stem',hround(w-1u),h,.8,.55,.2); +penlabels(0,1,2,3,4,5,6,7,8,9,10,11); endchar; + +cmchar "Hooktop D"; +beginchar(oct"342",10u#+serif_fit#,asc_height#,0); +italcorr asc_height#*slant+1.75u#; +adjust_fit(0,serif_fit#); +d_stroke(false,true,0); +hooktop(0,9,10,11,stem,hround(w+1.5u),h,.9,.6,.5); +penlabels(0,1,2,3,4,5,6,7,9,10,11); endchar; + +cmchar "Right-tail D"; +beginchar(oct"343",10u#,asc_height#,desc_depth#); +italcorr asc_height#*slant-serif_fit#+.5stem#-2u#; +adjust_fit(0,serif_fit#); +d_stroke(true,false,0); +if serifs: right_tail(2,8,9,10,stem,hround(w+1u),.88,.5,1/3); +else: right_tail(2,8,9,10,stem,hround(w+1u),.833,.5,1/3); fi +penlabels(0,1,2',3,4,5,6,7,8,9,10); endchar; + +cmchar "Hooktop G"; +beginchar(oct"344",10u#+serif_fit#,.9asc_height#,desc_depth#); +h:=vround(.9asc_height#*hppp); d:=vround(desc_depth#*hppp); % vertical adj. +italcorr .9asc_height#*slant+1.75u#; +adjust_fit(0,0); +pickup tiny.nib; pos1(stem',0); pos2(stem,0); +pos0'(stem',0); pos0(stem,0); z0r=z0'r; x0'=x1; x0=x2; +rt x1r=hround(w-side_gap+.5stem'); +numeric edge; edge=lft x2l; +path edge_path; edge_path=(edge,h)--(edge,0); +pickup fine.nib; pos3(if hefty:thin_join else: hair fi,0); +pos4(vair,90); pos5(curve,180); +pos6(vair,270); penpos7(x3r-x3l,360); +lft x3l=2/3[lft x2,edge]; y3=bar_height; +x4l=.5(w-serif_fit)-.3u; top y4r=x_height+oo; +lft x5r=hround max(1.35u-.5curve,.6u); y5=.5x_height; +x6l=x4l-.2u; bot y6r=vround 1/3vair; +lft x7l=edge; y7=min(y3,y6+y4-y3+.6vair); +(x,y4r)=whatever[z3l,z4l]; x4r:=max(x,.5[x5r,x4]); +(x',y6r)=whatever[z7l,z6l]; x6r:=max(x',.5[x5r,x6]); +filldraw stroke z3e{up}...{left}z4e&super_arc.e(4,5) + &super_arc.e(5,6)&z6e{right}...{up}z7e; % bowl +y1=ypart(edge_path intersectionpoint(z3l{up}...{left}z4l)); +y0=ypart(edge_path intersectionpoint(z7l{down}...{left}z6l)); +pickup tiny.nib; bot y2=if serifs: -.25d else: 0 fi; +filldraw stroke z1e--z0'e--z0e--z2e; % stem +if serifs: pickup tiny.nib; + pos9(vair,-90); x9=.5[x2,x10]; bot y9r=-d-o-1; + pos10(hair,-180); lft x10r=hround u; y10=-.75d+.5flare; + pos11(flare,-180); z11r=z10r; + bulb(9,10,11); filldraw stroke super_arc.e(2,9); % tail +else: pickup fine.nib; pos2'(stem,0); z2'=z2; + z2''r=z2'r; z2''=z2'; z2''l=(x2'l,0); + pos9(vair,-90); x9=4.5u; bot y9r=-d-o-1; + pos10(.5[vair,flare],-90); lft x10=hround 1.25u; + y10r=good.y -5/6d; y10l:=good.y y10l; + filldraw stroke z2'e..z2''e&super_arc.e(2'',9) + & term.e(9,10,left,.9,4); fi % tail +hooktop(0,12,13,14,stem',hround(w+1.5u),h,.92,.55,.7); +penlabels(0,1,2,3,4,5,6,7,9,10,11,12,13,14); endchar; + +cmchar "Crossed H"; +beginchar(oct"350",10u#,asc_height#,0); +italcorr .5[bar_height#,x_height#]*slant-serif_fit#+.5stem#-2u#; +adjust_fit(stem_shift#+.5u#,serif_fit#-stem_shift#); +pickup tiny.nib; pos1(stem,0); pos2(stem,0); +pos1'(stem',0); pos2'(stem',0); pos3(stem,0); +lft x1l=hround(side_gap-.5stem); x1l=x1'l=x2l=x2'l; x3=w-x1; +top y1=h; bot y2=0; y1=y1'; y2=y2'; +filldraw stroke z1'e--z2'e; % left stem +h_stroke(2,a,3,4); % arch and right stem +if serifs: sloped_serif.l(1',2',b,1/3,jut,serif_drop); % upper left serif + numeric inner_jut; pickup tiny.nib; + if rt x2r+jut+.5u+1<=lft x4l-jut: inner_jut=jut; + else: rt x2r+jut+.5u+1=lft x4l-inner_jut; fi + dish_serif(2,1,c,1/3,jut,d,1/3,jut); % lower left serif + dish_serif(4,3,e,1/3,inner_jut,f,1/3,jut); fi % lower right serif +hbar(5,6,lft x1l - hround(2u),rt x1r + hround(side_gap), + x_height + .5(h - x_height)); +penlabels(1,2,3,4); endchar; + +cmchar "Barred dotless J"; +beginchar(oct"351",CT(5.5u#,5.56u#),x_height#,desc_depth#); +italcorr x_height#*slant-serif_fit#+.5stem#-.5u#; +adjust_fit(2stem_shift# if monospace:+1u# fi, + -2stem_shift# if monospace:+.5u# fi); +pickup tiny.nib; pos1(stem',0); pos2(stem',0); +rt x1r=hround(.5w+.25u+.5stem'); x1=x2; +top y1=x_height; bot y2=-1/3d; +filldraw stroke z1e--z2e; % stem +if serifs: dish_serif(1,2,b,1/3,1.25jut,c,1/3,jut); % serif + pickup tiny.nib; pos5(vair,-90); pos6(hair,-180); pos7(flare,-180); + x5=.5[x2,x6r]; bot y5r=-d-oo; y6-.5flare=-.88d; + if monospace: lft x6r=0 else: z6r=z7r; rt x7l=floor .75u fi; + (x,y5r)=whatever[z5l,z2l]; x5r:=max(x,.5[x6r,x5]); + filldraw stroke z2e{down}...z5e{left}; bulb(5,6,7); % arc and bulb +else: pickup fine.nib; pos2'(stem',0); z2'=z2; + pos6(.2[vair,stem'],-90); pos7(vair,-90); + lft x7r=hround -.75u; bot y7r=vround 5/6(-d-oo); + x3r=x1r; top y4r=min(2x_height,h+1); + (x,y7l)=whatever[z7r,(x1,min(h,asc_height))]; x7l:=x; + z5r=z2'r; (x2'l,y5l)=whatever[z7l,z5r]; x5l=x2'l; y5=y5r; + x6r=.5[x7r,x5r]; x6l:=.5[x7l,x5l]; bot y6r=-d-oo; + filldraw stroke z2'e..{down}z5e & super_arc.e(5,6) + & term.e(6,7,left,1,4); fi % arc and terminal +hbar(8,9,lft x1l - hround(1.75u),rt x1r + hround(1.5u),.58x_height); +penlabels(1,2,5,6,7); endchar; + +cmchar "Hooktop barred dotless J"; +beginchar(oct"352",6u#,.9asc_height#,desc_depth#); +italcorr h#*slant+1u#; +adjust_fit(if monospace: 1u#,1u# else: 0,0 fi); +pickup if serifs: tiny.nib; else: fine.nib; fi +pos1(stem',0); pos2(stem',0); x1=x2=.5w; +top y1=x_height if serifs: +min(oo,serif_drop) fi; bot y2=0; +filldraw stroke z1e--z2e; % stem +left_tail(2,5,6,7,stem',hround-.75u); +hooktop(1,8,9,10,stem',hround(w+.75u),h,.84,.5,.4); +pickup crisp.nib; top y3r=top y4r=vround(bar_height+.5bar); +lft x3=x2-2.5u; x4=w-x3; +pos3(bar,90); pos4(bar,90); +filldraw stroke z3e--z4e; % bar +penlabels(1,2,3,4,5,6,7,8,9,10); endchar; + +cmchar "L with tilde"; +beginchar(oct"353",7u#,asc_height#,0); +l_width#:=5u#+2serif_fit#; +numeric hook_depth#; hook_depth#:=1.1desc_depth#; +define_whole_vertical_pixels(hook_depth); +italcorr asc_height#*slant-serif_fit#+.5stem#-2u#; +adjust_fit(serif_fit#+stem_shift#+.3u#,serif_fit#-stem_shift#+.3u#); +numeric tilde_height; tilde_height:=min(.66h,.9x_height); % tilde +if serifs: numeric theta; theta=angle(1/6(6u-vair),1/4(h-x_height)); + pickup crisp.nib; numeric mid_width; mid_width=.4[vair,stem]; + pos1(vair,theta+90); pos2(vair,theta+90); + pos3(vair,theta+90); pos4(vair,theta+90); + z2-z1=z4-z3=(mid_width-crisp)*dir theta; + lft x1r=w-rt x4l=hround .75u; top y4r=tilde_height; + bot y1l= top y4r - .13h; + pair delta; ypart delta=3(y3l-y1l); delta=whatever*dir theta; + filldraw z1l..controls(z1l+delta)and(z3l-delta)..z3l..z4l + --z4r..controls(z4r-delta)and(z2r+delta)..z2r..z1r--cycle; % stroke +else: pickup fine.nib; pos1(vair,180); pos2(vair,90); + pos3(.5[vair,slab],90); pos4(vair,90); pos5(vair,180); + lft x1r=w-rt x5l=hround .75u; x2-x1=x3-x2=x4-x3=x5-x4; + bot y1=bot y4l=top y5 - .13h; + top y2r=top y5=vround(tilde_height); y3=.5[y2,y4]; + filldraw stroke z1e{up}...z2e{right}..z3e..{right}z4e...{up}z5e; fi % stroke +penlabels(1,2,3,4,5); +pickup tiny.nib; pos6(stem',0); pos7(stem',0); +if odd(w-stem'): change_width; fi +lft x6l=hround(.5w-.5stem'); x6=x7; top y6=h; bot y7=0; +filldraw stroke z6e--z7e; % stem +if serifs: sloped_serif.l(6,7,a,1/3,jut,serif_drop); % upper serif + dish_serif(7,6,b,1/3,jut,c,1/3,jut); fi % lower serif +penlabels(6,7); endchar; + +cmchar "Belted L"; +beginchar(oct"354",7u#,asc_height#,0); +l_width#:=5u#+2serif_fit#; +numeric hook_depth#; hook_depth#:=1.1desc_depth#; +define_whole_vertical_pixels(hook_depth); +italcorr asc_height#*slant-serif_fit#+.5stem#-2u#; +adjust_fit(serif_fit#+stem_shift# if monospace:+1u# fi, + if monospace: 1u#+fi serif_fit#-stem_shift#); +pickup tiny.nib; pos1(stem',0); pos2(stem',0); +if odd(w-stem'): change_width; fi +lft x1l=hround(.5w-.5stem'); x1=x2; top y1=h; bot y2=0; +filldraw stroke z1e--z2e; % stem +if serifs: sloped_serif.l(1,2,a,1/3,jut,serif_drop); % upper serif + dish_serif(2,1,b,1/3,jut,c,1/3,jut); fi % lower serif +if serifs: pickup crisp.nib; + pos13(vair,90); pos14(max(.8stem,vair),180); pos15(vair,-50); + x13=x1; x14r=x1-3.2u; x15=x1+2.8u; + top y13r=x_height; y14=y15; bot y15=if monospace:.65 else:.8 fi x_height; + filldraw stroke z13e{(-10,1)}...z14e{down}...{(1,1)}z15e; % hook +else: pickup fine.nib; + pos13(vair,85); pos14(min(.8stem,vair),180); pos15(vair,-50); + x13=x1; x14r=x1-2.8u; x15=x1+2.6u; + top y13r=x_height; y14=y15; bot y15=.7x_height; + filldraw stroke z13e{(-10,1)}...z14e{down}...{(1,1)}z15e; fi % hook +penlabels(1,2,11,12,13,14,15); endchar; + +cmchar "Right-tail L"; +beginchar(oct"355",CT(5u#,5.56u#),asc_height#,desc_depth#); +italcorr asc_height#*slant+.5stem#-1.5u#; +adjust_fit(serif_fit#+stem_shift# if monospace:+.5u# fi, + if monospace: 1.5u#fi -stem_shift#); +pickup if serifs: tiny.nib; else: fine.nib; fi +pos1(stem',0); pos2(stem',0); +if odd(w-stem'): change_width; fi +lft x1l=hround(.5w-.5stem'); x1=x2; top y1=h; bot y2=0; +filldraw stroke z1e--z2e; % stem +if serifs: sloped_serif.l(1,2,a,1/3,jut,serif_drop);fi% upper serif +if serifs: right_tail(2,3,4,5,stem',hround(w+1u),.88,.5,1/3); +else: right_tail(2,3,4,5,stem',hround(w+1u),.833,.5,1/3); fi +penlabels(1,2,3,4,5); endchar; + +cmchar "Turned M, right leg"; +beginchar(oct"356",CT(15u#,15.56u#),x_height#,desc_depth#); +italcorr x_height#*slant+serif_fit#; +adjust_fit(serif_fit#-stem_shift#,serif_fit#+stem_shift#); +numeric shaved_stem; shaved_stem=hround(mfudged.stem-2stem_corr); +pickup tiny.nib; pos1(mfudged.stem,0); pos2(mfudged.stem,0); +pos1'(shaved_stem,0); pos2'(shaved_stem,0); +pos3(mfudged.stem,0); pos5(mfudged.stem,0); +rt x1r=hround(w-(2.5u-.5stem)); x1r=x1'r=x2r=x2'r; +rt x3r=hround(.5w+.5stem); x5-x3=x3-x1; +if not monospace: r:=hround(x5+x1)-l; fi % change width for better fit +bot y1=-d-min(oo,serif_drop); top y2=h; y1=y1'; y2=y2'; +filldraw stroke z1'e--z2'e; % left stem +turned_h_stroke(2,a,3,4); % left arch and middle stem +turned_h_stroke(4,b,5,6); % right arch and right stem +if serifs: sloped_serif.r(1',2',c,1/3,jut,serif_drop); % upper left serif + numeric inner_jut; pickup tiny.nib; + if lft x2l-jut-.5u-1>=rt x4r+jut: inner_jut=jut; + else: lft x2l-jut-.5u-1=rt x4r+inner_jut; fi + dish_serif(2,1,d,1/3,jut,e,1/3,jut); % lower left serif + dish_serif(4,3,f,1/3,inner_jut,g,1/3,jut); % lower middle serif + dish_serif(6,5,h,1/3,inner_jut,i,1/3,jut); fi % lower right serif +penlabels(1,2,3,4,5,6); endchar; + +cmchar "Right-tail N"; +beginchar(oct"357",10u#,x_height#,desc_depth#); +italcorr .5[bar_height#,x_height#]*slant+.5stem#-2u#; +adjust_fit(serif_fit#+stem_shift#,-stem_shift#); +pickup tiny.nib; pos1(stem,0); pos2(stem,0); +numeric shaved_stem; shaved_stem=hround(stem-2stem_corr); +pos1'(shaved_stem,0); pos2'(shaved_stem,0); pos3(stem,0); +lft x1l=hround(side_gap-.5stem); x1l=x1'l=x2l=x2'l; x3=w-x1; +top y1=h+min(oo,serif_drop); bot y2=0; y1=y1'; y2=y2'; +filldraw stroke z1'e--z2'e; % left stem +h_stroke(2,a,3,4); % arch and right stem +if serifs: + sloped_serif.l(1',2',b,1/3,jut,serif_drop); % upper left serif + numeric inner_jut; pickup tiny.nib; + if rt x2r+jut+.5u+1<=lft x4l-jut: inner_jut=jut; + else: rt x2r+jut+.5u+1=lft x4l-inner_jut; fi + dish_serif(2,1,c,1/3,jut,d,1/3,jut); fi % lower left serif +if serifs: right_tail(4,5,6,7,stem,hround(w+1u),.88,.5,1/3); +else: right_tail(4,5,6,7,stem,hround(w+1u),.833,.5,1/3); fi +penlabels(1,2,3,4,5,6,7); endchar; + +cmchar "Left-tail N (at left)"; +beginchar(oct"361",10u#,x_height#,desc_depth#); +italcorr .5[bar_height#,x_height#]*slant-serif_fit#+.5stem#-2u#; +adjust_fit(serif_fit#+stem_shift#,serif_fit#-stem_shift#); +pickup tiny.nib; pos1(stem,0); pos2(stem,0); pos8(stem',0); +numeric shaved_stem; shaved_stem=hround(stem-2stem_corr); +pos1'(shaved_stem,0); pos2'(shaved_stem,0); pos3(stem,0); +lft x1l=hround(side_gap-.5stem); x1l=x1'l=x2l=x2'l=x8l; x3=w-x1; +top y1=h+min(oo,serif_drop); bot y2=0; y1=y1'; y2=y2'; bot y8=-1/3d; +filldraw stroke z1'e--z2'e; % left stem +h_stroke(8,a,3,4); % arch and right stem +if serifs: sloped_serif.l(1',2',b,1/3,jut,serif_drop); % upper left serif + numeric inner_jut; pickup tiny.nib; + if rt x2r+jut+.5u+1<=lft x4l-jut: inner_jut=jut; + else: rt x2r+jut+.5u+1=lft x4l-inner_jut; fi + dish_serif(4,3,e,1/3,inner_jut,f,1/3,jut); fi % lower right serif +left_tail(2',5,6,7,shaved_stem,hround(-.75u)); +penlabels(1,2,3,4,5,6,7); endchar; + +cmchar "Bull's eye"; +beginchar(oct"362",CT(14u#-width_adj#,14.44u#),cap_height#,0); +italcorr .7cap_height#*slant-.5u#; +adjust_fit(0,0); +penpos1(vair',90); penpos3(vround(vair+1.5vair_corr),-90); +penpos2(cap_curve,180); penpos4(cap_curve,0); +if monospace: x2r=hround 1.5u; + interim superness:=sqrt superness; % make "O", not "0" +else: x2r=hround u; fi +x4r=w-x2r; x1=x3=.5w; y1r=h+o; y3r=-o; +y2=y4=.5h-vair_corr; y2l:=y4l:=.52h; +penstroke pulled_super_arc.e(1,2)(.5superpull) + & pulled_super_arc.e(2,3)(.5superpull) + & pulled_super_arc.e(3,4)(.5superpull) + & pulled_super_arc.e(4,1)(.5superpull) & cycle; % bowl +fill fullcircle scaled(dot_size+eps) shifted(.5[z3,z1]); % dot +math_fit(-.3cap_height#*slant-.5u#,ic#-.5u#); penlabels(1,2,3,4); endchar; + +cmchar "Right-tail R"; +numeric r_flare#; r_flare#=.75[if serifs: stem# else: vair# fi,flare#]; +define_whole_blacker_pixels(r_flare); +beginchar(oct"363",CT(if serifs:max(7u#,5.5u#+r_flare#) else:6.5u# fi,6.66u#), + x_height#,desc_depth#); +italcorr x_height#*slant if not serifs: +.25u# fi; +adjust_fit(serif_fit#,0); +pickup fine.nib; top y4r=h+oo; +if serifs: pos4(vair,90); pos5(hair,0); + x4=w-max(if Times_Compat: 1.6 else: 1.75 fi u,.25u+r_flare); + rt x5r=hround(w-if Times_Compat: .1u else: .5u fi +.5); + y5+.5r_flare=.9[bar_height,h]+oo; + pos6(r_flare,0); bulb(4,5,6); % bulb +else: pos4(r_flare,90); rt x4=hround(w-.25u); fi +pos3(thin_join,180); rt x3l=hround(side_gap-.5stem')+stem'; top y3=bar_height; +filldraw stroke z3e{up}...{right}z4e; % arc +pickup tiny.nib; pos0(stem',0); pos2(stem',0); +pos1(hround(stem-3stem_corr),0); top y1=h+min(oo,serif_drop); +pos0'(hround(stem-3stem_corr),0); y0=y0'=y3; x1l=x0l=x0'l=x2l; +lft x1l=hround(side_gap-.5stem'); bot y2=0; +filldraw stroke z1e--z0'e--z0e--z2e; % stem +if serifs: sloped_serif.l(1,0',a,1/3,jut,serif_drop); % upper serif + pickup tiny.nib; + right_tail(2,7,8,9,stem',hround(w-.1u),.88,.5,1/3); +else: pickup fine.nib; + right_tail(2,7,8,9,stem',hround(w-.1u),.833,.5,1/3); fi +penlabels(1,2,3,4,5,6,7,8,9); endchar; + +cmchar "Turned R"; +numeric r_flare#; r_flare#=.75[if serifs: stem# else: vair# fi,flare#]; +define_whole_blacker_pixels(r_flare); +beginchar(oct"364",CT(if serifs:max(7u#,5.5u#+r_flare#) else:6.5u# fi,6.66u#), + x_height#,0); +italcorr x_height#*slant if not serifs: -.5u# fi; +adjust_fit(0,serif_fit#); +pickup fine.nib; bot y4r=-oo; +if serifs: pos4(vair,-90); pos5(hair,-180); + x4=max(if Times_Compat: 1.6 else: 1.75 fi u,.25u+r_flare); + lft x5r=hround(if Times_Compat: .1u else: .5u fi -.5); + y5-.5r_flare=h-.9[bar_height,h]-oo; + pos6(r_flare,-180); bulb(4,5,6); % bulb +else: pos4(r_flare,-90); lft x4=hround(.25u); fi +pos3(thin_join,0); lft x3l=hround(w-side_gap+.5stem')-stem'; bot y3=h-bar_height; +filldraw stroke z3e{down}...{left}z4e; % arc +pickup tiny.nib; pos0(stem',0); pos2(stem',0); +pos1(hround(stem-3stem_corr),0); top y2=h; +pos0'(hround(stem-3stem_corr),0); y0=y0'=y3; x1r=x0r=x0'r=x2r; +rt x1r=hround(w-side_gap+.5stem'); bot y1=-min(oo,serif_drop); +filldraw stroke z1e--z0'e--z0e--z2e; % stem +if serifs: sloped_serif.r(1,0',a,1/3,jut,serif_drop); % lower serif + dish_serif(2,0,b,1/3,1.25jut,c,1/3,jut); fi % upper serif +penlabels(1,2,3,4,5,6); endchar; + +cmchar "Turned R, right tail"; +numeric r_flare#; r_flare#=.75[if serifs: stem# else: vair# fi,flare#]; +define_whole_blacker_pixels(r_flare); +beginchar(oct"365",CT(if serifs:max(7u#,5.5u#+r_flare#) else:6.5u# fi,6.66u#), + x_height#,desc_depth#); +italcorr x_height#*slant if not serifs: -.5u# fi; +adjust_fit(0,serif_fit#); +pickup fine.nib; bot y4r=-oo; +if serifs: pos4(vair,-90); pos5(hair,-180); + x4=max(if Times_Compat: 1.6 else: 1.75 fi u,.25u+r_flare); + lft x5r=hround(if Times_Compat: .1u else: .5u fi -.5); + y5-.5r_flare=h-.9[bar_height,h]-oo; + pos6(r_flare,-180); bulb(4,5,6); % bulb +else: pos4(r_flare,-90); lft x4=hround(.25u); fi +pos3(thin_join,0); lft x3l=hround(w-side_gap+.5stem')-stem'; bot y3=h-bar_height; +filldraw stroke z3e{down}...{left}z4e; % arc +pickup tiny.nib; pos0(stem',0); pos2(stem',0); +pos1(hround(stem-3stem_corr),0); top y2=h; +pos0'(hround(stem-3stem_corr),0); y0=y0'=y3; x1r=x0r=x0'r=x2r; +rt x1r=hround(w-side_gap+.5stem'); bot y1=-min(oo,serif_drop); +filldraw stroke z1e--z0'e--z0e--z2e; % stem +if serifs: dish_serif(2,0,b,1/3,1.25jut,c,1/3,jut); % upper serif + right_tail(2,7,8,9,hround(stem'),hround(w+1u),.88,.5,1/3); +else: pickup fine.nib; + right_tail(2,7,8,9,hround(stem'),hround(w+1u),.833,.5,1/3); fi +penlabels(1,2,3,4,5,6,7,8,9); endchar; + +cmchar "Right-tail S (at left)"; +beginchar(oct"371",CT(7.1u#,7.78u#),x_height#,desc_depth#); +italcorr x_height#*slant-if serifs:.55u# else:.3u# fi; +adjust_fit(if monospace: .5u#,.4u# else: 0,if serifs:0 else:-.2u# fi fi); +numeric theta; theta=90-angle(40u,h); slope:=-h/40u; % angle at middle +numeric s_slab; s_slab=if serifs:vair else:Vround .1[vair,stem] fi; +numeric ess'; ess'=max(fine.breadth,ess); +pickup fine.nib; pos2(max(fine.breadth,s_slab-vround vair_corr),-100); +pos0(ess',theta); pos7(s_slab,-90); x2l=x0=x7=.5w; +top y2l=h+vround 1.5oo; bot y7r=-oo; +y0-.5ess'=y7l+if serifs:.54 else: .52 fi\\(y2r-y7l-ess'); +lft x3l=hround .6u; rt x6r=hround(w-.6u); +x3r-x3l=x6r-x6l=hround .5[s_slab,ess']-fine; +ellipse_set(2l,3l,4l,0l); ellipse_set(2r,3r,4r,0r); y3=y3r; +ellipse_set(7l,6l,5l,0l); ellipse_set(7r,6r,5r,0r); y6=y6r; +interim superness:=more_super; +filldraw stroke super_arc.e(2,3) & z3e{down} + ..z4e---z5e..z6e{down} & super_arc.e(6,7); % main stroke +if serifs: pos1(hair,180); pos8(hair,180); + rt x1l=hround(w-1.05u); lft x8r=hround .6u; + bot y1=min(bot y2r,vround 1/5[top y5r,h]); + top y8=max(top y7l,vround 5/6 bot y4l); + filldraw stroke z1e{up}....{left}z2e; % upper arc + filldraw stroke z7e{left}....{x8-x7,5(y8-y7)}z8e; % lower arc + path upper_arc, lower_arc; + upper_arc=z1{up}....{left}z2; lower_arc=z7{left}....{x8-x7,5(y8-y7)}z8; + pos10(.3[fine.breadth,cap_hair],0); pos9(.3[fine.breadth,cap_hair],0); + x10r=x1l; top y10=top y2l; x9l=x8r; bot y9=bot y7r; + x1l-x1'=x8'-x8r=1.6cap_curve-fine; y1'=y1; y8'=y8; + numeric t; t=xpart(upper_arc intersectiontimes(z10l--z1')); + filldraw z1l--z10r--z10l--subpath(t,0) of upper_arc--cycle; % upper barb + t:=xpart(lower_arc intersectiontimes(z9r--z8')); + filldraw z8r--z9l--z9r--subpath(t,1) of lower_arc--cycle; % lower barb +else: pos1(4/7[s_slab,flare],-100); pos8(flare,-90); + x1l=good.x(x1l+w-u-rt x1); lft x8r=hround .5u; + top y1l=vround(.93h+1.5oo); bot y8r=vround .1h-oo; + filldraw stroke term.e(2,1,right,.9,4); % upper arc and terminal + filldraw stroke term.e(7,8,left,1,4); fi % lower arc and terminal +if serifs: pos11(hair,0); y11=y9l; x11l=x8r; + right_tail(11,12,13,14,hair,hround(x7+.5u),.88,.5,1/3); +else: pos11(.8stem,-10); y11=y8r; lft x11l=lft x8l; + right_tail(11,12,13,14,.8stem,hround(x7+.5u+.25hair),.833,.5,1/3); fi +penlabels(0,1,1',2,3,4,5,6,7,8,8',9,10,11,12,13,14); +endchar; + +cmchar "Right-tail T"; +beginchar(oct"372",6u#+max(u#,.5stem#), + min(asc_height#,if hefty:9/7 else:10/7 fi\\ x_height#),desc_depth#); +italcorr x_height#*slant if serifs: -.9u# else: -.4u# fi; +adjust_fit(0,if serifs: -.5u# else: -.5u# fi); +numeric shaved_stem; shaved_stem=hround(stem if hefty:-\\2stem_corr fi); +pickup fine.nib; pos2(shaved_stem,180); pos3(shaved_stem,180); +lft x2r=lft x3r=hround(side_gap-.5shaved_stem); y2=y8; y3=0; +pickup crisp.nib; pos8(bar,90); +rt x8=hround(.93w- if Times_Compat: .4u else: 1.3u fi); +top y8r=x_height; lft x7=hround 1/3u; y7l=y8l; +if hefty: pos7(bar,90); + filldraw stroke z7e--z8e; % crossbar + pickup tiny.nib; pos1(hround(shaved_stem-stem_corr),0); + rt x1r=fine.rt x2l; top y1=h; + penpos2'(x1r-x1l,0); x2'=x1; y2'=y2; + filldraw stroke z1e--z2'e; %terminal +else: pos7(vair,90); pos1(hair,0); + rt x1r=fine.rt x2l; top y1=h; + filldraw z1l{down}...{left}z7r--z7l--z8l + --z8r--(x1r,y8r)--z1r--cycle; fi % upper terminal and crossbar +pickup fine.nib; +filldraw stroke z2e--z3e; % stem +if serifs: right_tail(3,9,10,11,shaved_stem,hround(w-.5u),.88,.5,1/3); +else: right_tail(3,9,10,11,shaved_stem,hround(w-1u),.833,.5,1/3); fi +penlabels(1,2,3,7,8,9,10,11); endchar; + +cmchar "Turned W"; +beginchar(oct"373",CT(13u#,14.44u#),x_height#,0); +adjust_fit(serif_fit#,serif_fit#); +numeric stem[],outer_jut,upper_notch,alpha,mid_corr; +outer_jut=.7jut; x1l=w-x8r=l+letter_fit+outer_jut+.25u; +stem4=fudged.stem-stem_corr; +stem1=min(fudged.hair if hefty:-2stem_corr fi,stem4); +stem3=if hefty:.1[vair,stem1] else: stem1 fi; +stem2=max(stem3,stem4-3stem_corr); +x2-x1=x4-x3=x6-x5=x8-x7; x2r+apex_corr=x3r; x6r+apex_corr=x7r; +y1=y8=0; y2=y3=y6=y7=h+apex_oo; +y4=y5=if monospace: vround .4h else: 0 fi; upper_notch=y4+notch_cut; +mid_corr=if monospace or hefty:-.3apex_corr else: .5jut fi; +alpha=diag_ratio(4,stem3-stem2+stem1,y2-y1,x8r-x1l+mid_corr-2apex_corr); +penpos1(alpha*stem1,0); penpos2(alpha*stem1,0); +penpos3(alpha*stem2,0); penpos4(alpha*stem2,0); +penpos5(alpha*stem3,0); penpos6(alpha*stem3,0); +penpos7(alpha*stem4,0); penpos8(alpha*stem4,0); + x8r-x5r=floor(x8r-x5r+.5(x5l+mid_corr-x4l)); % x5r $\approx$ x4r+mid_corr +z23=whatever[z1r,z2r]=whatever[z3l,z4l]; +z45=whatever[z3r,z4r]=whatever[z5l,z6l]; +z67=whatever[z5r,z6r]=whatever[z7l,z8l]; +fill diag_end(1l,2l,1,1,3r,4r){z4-z3} + ...if y45>upper_notch:(x45,upper_notch)+.5left{down} + --(x45,upper_notch)+.5right{up} else: z45&z45 fi + ...{z6-z5}diag_end(5l,6l,1,1,7r,8r)--diag_end(7r,8r,1,1,8l,7l){z7-z8} + ...if y67<h-notch_cut:(x67,h-notch_cut)+.5right{up} + --(x67,h-notch_cut)+.5left{down} else: z67&z67 fi + ...{z5-z6}turned_special_diag_end(6,5,4,3){z3-z4} + ...if y23<h-notch_cut:(x23,h-notch_cut)+.5right{up} + --(x23,h-notch_cut)+.5left{down} else: z23&z23 fi + ...{z1-z2}diag_end(2r,1r,1,1,1l,2l)--cycle; % diagonals +if serifs: numeric inner_jut[]; pickup tiny.nib; + prime_points_inside(1,2); prime_points_inside(4,3); prime_points_inside(8,7); + if monospace: inner_jut1=inner_jut4=1.5jut; + elseif hefty: inner_jut1=inner_jut4=jut; + else: fill diag_end(3l,4l,1,1,4r,3r)--.9[z4r,z3r] + ..{z4-z3}.1[z4l,z3l]--cycle; % middle stem + inner_jut2=.7inner_jut1; inner_jut4=1.1inner_jut3; + if lft x8'l-jut-.5u-1>=rt x4'r+.7jut: inner_jut1=jut; + else: lft x8'l-inner_jut1-.5u-1=rt x4'r+inner_jut2; fi + if lft x4'l-jut-.5u-1>=rt x1'r+1.1jut: inner_jut3=jut; + else: lft x4'l-inner_jut3-.5u-1=rt x1'r+inner_jut4; fi + dish_serif(4',3,e,1/2,inner_jut3,f,1/3,inner_jut2); fi % middle serif + dish_serif(1',2,a,1/2,outer_jut,b,.6,inner_jut4)(dark); % left serif + dish_serif(8',7,c,1/2,inner_jut1,d,1/3,outer_jut); fi % right serif +penlabels(0,1,2,3,4,5,6,7,8,23,45,67); endchar; + +cmchar "Right-tail Z"; +beginchar(oct"374",CT(8u#,8.88u#),x_height#,desc_depth#); +italcorr x_height#*slant-.5serif_fit#-.3u#; +adjust_fit(0,if monospace:.5u#+fi .5serif_fit#); +numeric arm_thickness[],z_stem; +if hefty: arm_thickness1=Vround(vair-vair_corr); arm_thickness2=vair; + z_stem=.6[vair,stem]; +else: arm_thickness1=vair; arm_thickness2=vair'; z_stem=.9[vair,stem]; fi +pickup tiny.nib; rt x1r=rt x2r=hround(w-.8u); lft x3l=lft x4l=hround .5u; +top y1=h; y2=min(y1,h-2/3arm_thickness1); +bot y4=0; y3=max(y4,2/3arm_thickness2); +numeric alpha; alpha=diag_ratio(1,z_stem-tiny,y2-y3,x2r-x3l-slant*(y2-y3)); +penpos1(alpha*(z_stem-tiny),0); penpos2(alpha*(z_stem-tiny),0); +penpos3(alpha*(z_stem-tiny),0); penpos4(alpha*(z_stem-tiny),0); +pair delta; delta=penoffset z3-z2 of currentpen; +fill top lft z1l--z2l+delta---z3l+delta..lft z3l---lft z4l..bot z4l + ---bot rt z4r--z3r-delta---z2r-delta..rt z2r---rt z1r..top z1r + ---cycle; % diagonal +pickup crisp.nib; pos5(arm_thickness1,90); pos6(hair,180); +top y5r=h; x5=x1; lft x6r=hround .75u; y6=good.y(y5l-beak/1.4)-eps; +arm(5,6,a,beak_darkness,-.4beak_jut); % upper arm and beak +pos7(arm_thickness2,-90); pos8(hair,0); +bot y7r=0; x7=x4; rt x8r=hround(w-.75u); y8=good.y(y7l+beak/1.2)+eps; +arm(7,8,b,beak_darkness,.6beak_jut); % lower arm and beak +if serifs: pos11(hair,0); y11=y.b0; + x11r=hround(x.b0-.05u); + right_tail(11,12,13,14,hair,hround(w+2u),.88,.5,1/3); +else: pos11(.8stem,0); y11=.5[0,y8]; rt x11r=rt x8r; + right_tail(11,12,13,14,.8stem,hround(w+1.5u),.833,.5,1/3); fi +penlabels(1,2,3,4,5,6,7,8,11,12,13,14); +endchar; + +cmchar "Curly-tail Z"; +beginchar(oct"375",CT(9u#,9.88u#),x_height#,desc_depth#); +italcorr x_height#*slant-.5serif_fit#-.3u#; +adjust_fit(0,.5serif_fit#); +numeric arm_thickness[],z_stem; +arm_thickness1=vair; arm_thickness2=1.2vair; z_stem=.9[vair,stem]; +pickup tiny.nib; rt x1r=rt x2r=hround(.89w-.8u); +lft x3l=lft x4l=hround .5u; +top y1=h; y2=min(y1,h-2/3arm_thickness1); +bot y4=0; y3=max(y4,2/3arm_thickness2); +numeric alpha; alpha=diag_ratio(1,z_stem-tiny,y2-y3,x2r-x3l-slant*(y2-y3)); +penpos1(alpha*(z_stem-tiny),0); penpos2(alpha*(z_stem-tiny),0); +penpos3(alpha*(z_stem-tiny),0); penpos4(alpha*(z_stem-tiny),0); +pair delta; delta=penoffset z3-z2 of currentpen; +fill top lft z1l--z2l+delta---z3l+delta..lft z3l---lft z4l..bot z4l + ---bot rt z4r--z3r-delta---z2r-delta..rt z2r---rt z1r..top z1r + ---cycle; % diagonal +pickup crisp.nib; pos5(arm_thickness1,90); pos6(hair,180); +top y5r=h; x5=x1; lft x6r=hround .75u; y6=good.y(y5l-beak/1.4)-eps; +arm(5,6,a,beak_darkness,-.4beak_jut); % upper arm and beak +pos7(arm_thickness2,90); pos8(arm_thickness2,90); +x7=x4; bot y8l=bot y7l=0; pos9(vair,-80); +if serifs: pos11(hair,180); pos10(hair,0); +else: pos11(fudged.hair,180); pos10(fudged.hair,0); fi +rt x11l=hround(w-1u+.5hair); y11=.5[y9r,y8r]; +x9-.5u=x8=.7[x7,x11]; y9=.32h+.5vair; x10l=1.5u+.6hair; bot y10=-.75d; +filldraw stroke z7e--z8e{right}...{up}z11e...{(-5,-1)}z9e + ...{(-1,-2)}z10e; +penlabels(1,2,3,4,5,6,7,8,8',9,10,11); endchar; + +cmchar "Ash; Lower-case A-E ligature"; +beginchar(oct"346",13u#,x_height#,0); +italcorr .5[bar_height#,x_height#]*slant+.5min(curve#-1.5u#,0); +adjust_fit(0,0); +numeric left_curve,right_curve; +if monospace: right_curve=left_curve=fudged.stem; +else: left_curve=max(tiny.breadth,hround(curve-2stem_corr)); + right_curve=max(tiny.breadth,hround(curve-if serifs:6 else:8 fi\\stem_corr));fi +pickup tiny.nib; pos11(right_curve,0); +pos12(vair,90); pos13(mfudged.stem,180); +y11=good.y bar_height; top y12r=h+vround 1.5oo; y10l=bot y11; +rt x11r=hround min(w-.5u,w-u+.5right_curve); +lft x13r=hround (.5w-.5mfudged.stem); x12=.55[x13,x11]; +{{interim superness:=more_super; + filldraw stroke super_arc.e(11,12)}}; % right bowl of e +y13=.5[y12,y14]; bot y14r=-oo; x14=x12+.25u; +if serifs: pos14(vair',270); pos15(mfudged.hair,360); + y15=max(good.y(.5bar_height-.9),y14l+vair); x15r=x11r; + (x,y14l)=whatever[z14r,z15]; x14l:=min(x,x14l+.5u); + filldraw stroke pulled_arc.e(12,13) + & pulled_super_arc.e(13,14)(.8superpull) + ...{x15-x14,5(y15-y14)}z15e; % left bowl, arc, and terminal of e +else: pos14(vair,270); + filldraw stroke super_arc.e(12,13) + & super_arc.e(13,14); % left bowl and arc of e + pickup fine.nib; pos14'(vair,270); z14=z14'; + pos15(.5[vair,flare],275); rt x15r=hround(w-.6u); + y15r=good.y(y15r+1/3bar_height-y15); y15l:=good.y y15l; x15l:=good.x x15l; + filldraw stroke term.e(14',15,right,1,4); fi % right terminal +y11'r=y10r=y10l+.6[thin_join,vair]; y11'l=y10l; x11'l=x11'r=x11; x10l=x10r=x13; +fill stroke z10e--z11'e; % crossbar +pickup fine.nib; top y3r=h+vround 1.5oo; +if serifs: pos1(flare,180); pos2(mfudged.hair,180); + pos3(vair,90); lft x1r=hround max(u,2.1u-.5flare); x3=4u; + y1=min(bar_height+.5flare+2vair+2,.9[bar_height,h]-.5flare); + bulb(3,2,1); % bulb +else: pos1(5/7[vair,flare],95); x1l=good.x 1.5u; x1r:=good.x x1r; + pos3(1/8[vair,thin_join],90); + x3=4.3u; top y1r=vround .82[bar_height,top y3r]; + filldraw stroke term.e(3,1,left,.9,4); fi % left terminal +pos4(mfudged.stem,0); x4=x13; y4=1/3[bar_height,h]; +pos5(mfudged.stem,0); x5=x4; y5=min(y4,y13); +filldraw stroke super_arc.e(3,4)&z4e--z5e; % arc and stem +pos6(.6[thin_join,vair],90); x6=x4; bot y6=y10l; +pos7(left_curve,if (Times_Compat and serifs): 200 else: 180 fi); +lft x7r=hround max(.5u,1.5u-.5left_curve); y7=1/3[top y8l,top y6r]; +if (Times_Compat and serifs): pos8(.6[vair,flare],210); else: pos8(vair,270);fi +x8l=3.75u; bot y8r=-oo; +pos9(.5[vair,fudged.stem],360); x9=x5; y9=.55bar_height; +(x',y8r)=whatever[z8l,z9l]; x8r:=max(x',x8-u); +{{interim superness:=more_super; + filldraw stroke z9e{down}...z8e{left}...{up}z7e&%super_arc.e(7,6)}}; % bowl + if (Times_Compat and serifs): z7e{up}...{(50,10)}z6e + else: super_arc.e(7,6)fi}}; % bowl +if y9<y5: filldraw stroke z5e{down}..{down}z9e; fi % link (usually hidden) +penlabels(1,2,3,4,5,6,7,8,9,10,11,12,13,14,15); endchar; + +cmchar "C cedilla"; +beginchar(oct"347",CT(8u#,8.88u#),x_height#,0.875desc_depth#); +italcorr x_height#*slant-.2u#; +adjust_fit(if monospace: .5u#,.5u# else: 0,0 fi); +c_stroke(w); x6=x4; +if serifs: pickup crisp.nib; pos6(stem,0); pos7(stem,0); + pos8(vair,90); pos9(stem,0); pos10(vair,-90); + x6=x7; z8l=z7l; x9=x7+1.5u; x10=x8-1.5u; + bot y6=0; bot y7=-vround 2/7d-o; y9=.5[y8,y10]; bot y10=-d-o; + filldraw stroke z6e--z7e; % stem + filldraw stroke z8e{right}...z9e{down}...{left}z10e; % hook +else: pickup fine.nib; pos6(vair,0); top y6=-o-2; + pos7(.5[vair,stem],0); bot y7=-d-o; x7=x6-1.25u; + filldraw stroke z6e--z7e; fi % diagonal +penlabels(0,1,2,3,4,5,6,7,8,9,10); endchar; + +cmchar "Lower-case O-E ligature"; +beginchar(oct"367",14u#,x_height#,0); +italcorr .5[bar_height#,x_height#]*slant+.5min(curve#-1.5u#,0); +adjust_fit(0,0); +numeric left_curve,right_curve; +if monospace: right_curve=left_curve=fudged.stem; +else: left_curve=max(fine.breadth,hround(curve-2stem_corr)); + right_curve=max(tiny.breadth,hround(curve-if serifs:6 else:8 fi\\stem_corr));fi +pickup tiny.nib; pos11(right_curve,0); +pos12(vair,90); pos13(mfudged.stem,180); +y11=good.y bar_height; top y12r=h+vround 1.5oo; y10l=bot y11; +rt x11r=hround min(w-.5u,w-u+.5right_curve); +lft x13r=hround (.5(w+u)-.5mfudged.stem); x12=.55[x13,x11]; +{{interim superness:=more_super; + filldraw stroke super_arc.e(11,12)}}; % right bowl of e +y13=.5[y12,y14]; bot y14r=-oo; x14=x12+.25u; +if serifs: pos14(vair',270); pos15(mfudged.hair,360); + y15=max(good.y(.5bar_height-.9),y14l+vair); x15r=x11r; + (x,y14l)=whatever[z14r,z15]; x14l:=min(x,x14l+.5u); + filldraw stroke pulled_arc.e(12,13) + & pulled_super_arc.e(13,14)(.8superpull) + ...{x15-x14,5(y15-y14)}z15e; % left bowl, arc, and terminal of e +else: pos14(vair,270); + filldraw stroke super_arc.e(12,13) + & super_arc.e(13,14); % left bowl and arc of e + pickup fine.nib; pos14'(vair,270); z14=z14'; + pos15(.5[vair,flare],275); rt x15r=hround(w-.6u); + y15r=good.y(y15r+1/3bar_height-y15); y15l:=good.y y15l; x15l:=good.x x15l; + filldraw stroke term.e(14',15,right,1,4); fi % terminal +y11'r=y10r=y10l+.6[thin_join,vair]; y11'l=y10l; x11'l=x11'r=x11; x10l=x10r=x13; +fill stroke z10e--z11'e; % crossbar +pickup fine.nib; pos1(vair,90); pos3(vair,-90); +pos2(left_curve,180); pos4(mfudged.stem,0); +lft x2r=hround max(.5u,1.25u-.5curve); +z4=z13; x1=x3=.5[x2,x4]; top y1r=h+vround 1.5oo; bot y3r=-oo; +y2=y4; y2l:=y4l:=.52h; +filldraw stroke pulled_arc.e(1,2) & pulled_arc.e(2,3); % left half of left bowl +filldraw stroke pulled_arc.e(3,4) & pulled_arc.e(4,1); % right half of left bowl +penlabels(1,2,3,4,10,11,12,13,14,15); endchar; + +cmchar "Slashed O"; +beginchar(oct"370",CT(9u#,10u#),x_height#+.5desc_depth#,.5desc_depth#); +italcorr h#*slant-u#-max(.5fudge*stem#,.75u#)+.5vair#; +adjust_fit(0,0); +penpos1(vair,90); penpos3(vair,-90); +penpos2(fudged.stem,180); penpos4(fudged.stem,0); +x2r=hround max(.5u,1.25u-.5fudged.stem); +x4r=w-x2r; x1=x3=.5w; +y1r=x_height+vround 1.5oo; y2=y4=.5x_height-vair_corr; y3r=-oo; +penstroke pulled_arc.e(1,2) & pulled_arc.e(2,3) + & pulled_arc.e(3,4) & pulled_arc.e(4,1) & cycle; % bowl +x5=x4; x6=x2; y5=h; y6=-d; +numeric theta; theta=angle(z5-z6)-90; +pickup crisp.nib; pos5(vair,theta); pos6(vair,theta); +filldraw stroke z5e--z6e; % diagonal +penlabels(1,2,3,4,5,6); endchar; + +% end of tipasym2.mf diff --git a/Master/texmf-dist/fonts/source/public/tipa/tipasym3.mf b/Master/texmf-dist/fonts/source/public/tipa/tipasym3.mf new file mode 100644 index 00000000000..7b5c2c29ff5 --- /dev/null +++ b/Master/texmf-dist/fonts/source/public/tipa/tipasym3.mf @@ -0,0 +1,646 @@ +% tipasym3.mf: TIPA phonetic symbols (3) +% Copyright 1996-2003 FUKUI Rei +% +% This program may be distributed and/or modified under the +% conditions of the LaTeX Project Public License, either version 1.2 +% of this license or (at your option) any later version. +% The latest version of this license is in +% http://www.latex-project.org/lppl.txt +% and version 1.2 or later is part of all distributions of LaTeX +% version 1999/12/01 or later. +% +% This program consists of all files listed in Manifest.txt. +% +% Version 1.2 2003/01/01 +% +% This font is based on: +% Computer Modern font series by D. E. Knuth and +% TSIPA by KOBAYASHI Hajime, FUKUI Rei and SHIRAKAWA Shun. +% + +cmchar "Hooktop C"; +beginchar(oct"301",CT(8u#,8.8u#),x_height#,0); +italcorr .9asc_height#*slant + 1.5u#; +adjust_fit(if monospace: .5u#,1.5u# else: 0,1u# fi); +c_stroke(w); +if serifs: pos6(hair,0); y6=y1; rt x6r=rt x1r; + hooktop(6,7,8,9,hair,hround(w+2.25u),.9asc_height+.5vair,.95,.55,.5); +else: pos6(vair,0); y6=y1r; rt x6r=rt x1r; + hooktop(6,7,8,9,vair,hround(w+2.25u),.9asc_height+.5vair,.9,.5,.5); fi +penlabels(0,1,2,3,4,5,6,7,8,9); endchar; + +cmchar "Stretched C"; +beginchar(oct"302",CT(9u#,10u#),asc_height#,desc_depth#); +italcorr x_height#*slant-.2u#; +adjust_fit(0,0); +pickup fine.nib; interim superness:=more_super; +pos2(.6[vair,flare],90); pos5(.6[vair,flare],270); +x2=x5=.5w; top y2r=vround(h+1.5oo); bot y5r=-d-oo; +pos3(stem,180); pos4(stem,180); +lft x3r=lft x4r=hround1.2u; y3=.75h; y4=0; +pos1(stem,0); rt x1r=hround(w-1.1u); top y1=vround .75h; +pos6(stem,0); rt x6r=hround(w-1u); top y6=0; +filldraw stroke pulled_arc.e(1,2) & pulled_arc.e(2,3) + & z3e--z4e & pulled_arc.e(4,5) & pulled_arc.e(5,6); +penlabels(0,1,2,3,4,5,6); endchar; + +cmchar "D-Yogh ligature"; +beginchar(oct"303",CT(13u#,14.44u#),asc_height#,desc_depth#); +numeric d_w; d_w=if monospace: .48w else: .65w+.5stem+serif_fit fi; +italcorr asc_height#*slant-serif_fit#+.5stem#-1.75u#; +adjust_fit(0,.5serif_fit#); +pickup tiny.nib; pos21(stem',0); pos22(stem,0); % d +pos20'(stem',0); pos20(stem,0); z20r=z20'r; x20'=x21; x20=x22; +rt x21r=hround(d_w-2.5u+.5stem'); top y21=h; +numeric edge; edge=lft x22l; +pickup fine.nib; pos23(if hefty:thin_join else: hair fi,0); +pos24(vair,90); pos25(curve,180); pos26(vair,270); penpos27(x23r-x23l,360); +lft x23l=min(lft x23l-(rt x23r-tiny.rt x22r),1/3[lft x22,edge]); +y23=.616x_height; +x24l=.5(d_w-serif_fit)-.3u; top y24r=x_height+oo; +lft x25r=hround max(1.35u-.5curve,.6u); y25=.5x_height; +x26l=x24l-.2u; bot y26r=-oo; +x27=x23; y27=min(y23,y26+y24-y23+.6vair); +(x,y24r)=whatever[z23l,z24l]; x24r:=max(x,.5[x25r,x24]); +(x',y26r)=whatever[z27l,z26l]; x26r:=max(x',.5[x25r,x26]); +filldraw stroke z23e{up}...pulled_arc.e(24,25) + & pulled_arc.e(25,26)...{up}z27e; % bowl +y20=ypart(((edge,h)--(edge,0))intersectionpoint(z23l{up}...{left}z24l)); +pickup tiny.nib; bot y22=.33x_height; +filldraw stroke z21e--z20'e--z20e--z22e; % stem +if serifs: sloped_serif.l(21,20',a,1/3,jut,serif_drop); fi % upper serif +h:=x_height; % yogh +yogh_stroke(x20l,.15,x20l-.5u,true,false); +if serifs: pickup tiny.nib; pos40(vair,0); + x40=x40'=x22l; y40'=.2bar_height; y40=.5[y22,y40']; + filldraw stroke z22e--z40e; % joint + pickup fine.nib; pos40'(vair,180); pos12'(vair,180); z12'=z3; + filldraw stroke z12'e{z3-z5}...{z40'-z22}z40'e; % joint + penlabels(40',12'); +else: pickup tiny.nib; pos40(stem/cosd30,30); + x40=x22; y40=.3[0,y22]; + filldraw stroke z22e--z40e; fi % joint +penlabels(1,2,3,4,5,6,7,8,9,10,12,20,21,22,23,24,25,26,27,40); endchar; + +cmchar "Right-hook schwa"; +beginchar(oct"304",CT(11.5u#,12u#),x_height#,0); +italcorr .5[bar_height#,x_height#]*slant+.75u#; +adjust_fit(if monospace:.25u#,0u# else: 0,0 fi); +numeric ow,left_curve,diagbar; +ow=w; w:=if Times_Compat: 8.88u else: 8u fi -.25curve; +left_curve=curve if not serifs: -3stem_corr fi; +if left_curve<tiny.breadth: left_curve:=tiny.breadth; fi +diagbar=if serifs: if monospace: hair else: 1.2hair fi + else: min(1.1hair,stem) fi; +pickup tiny.nib; pos1(diagbar,180); +pos2(vair,-90); pos3(left_curve,0); +y1=good.y (.33h); bot y2r=-vround 1.5oo; y0l=top y1; +lft x1r=hround min(.5u,1.5u-.5diagbar); +rt x3r=hround max(w-.5u,w-1.25u+.5left_curve); x2=.5w-.25u; +{{interim superness:=more_super; + filldraw stroke super_arc.e(1,2)}}; % right bowl +y3=.5[y2,y4]; top y4r=h+oo; x4=x2-.25u; +if serifs: pos4(vair',90); pos5(hair,180); + y5=min(good.y(h-(.5bar_height-.9)),y4l-vair); x5r=x1r; + (x,y4l)=whatever[z4r,z5]; x4l:=max(x,x4l-.5u); + filldraw stroke pulled_arc.e(2,3) & pulled_arc.e(3,4) + ...{x5-x4,5(y5-y4)}z5e; % left bowl, arc, and terminal +else: pos4(vair,90); + filldraw stroke super_arc.e(2,3) & super_arc.e(3,4); % left bowl and arc + pickup fine.nib; pos4'(vair,90); z4=z4'; + pos5(.5[vair,flare],95); lft x5r=hround(.6u); + y5r=good.y(h-(-y5r+1/3bar_height+y5)); y5l:=good.y y5l; x5l:=good.x x5l; + filldraw stroke term.e(4',5,left,1,4); fi % terminal +w:=ow; pickup tiny.nib; +if serifs: if monospace: + pos10(diagbar,0); pos11(diagbar,0); pos11'(hair,0); pos12(hair,0); + else: pos10(1.5hair,0); pos11(1.5hair,0); pos11'(1.5hair,0); + pos12(1.5hair,0); fi + pos13(vair,90); pos14(hair,180); +else: pos10(diagbar,0); pos11(diagbar,0); + pos11'(thin_hair,0); pos12(thin_hair,0); + pos13(vair,90); pos14(thin_hair,180); fi +lft x10l=lft x1r; top y10l=top y1; top y11l=h+oo; +rt x11r=rt x12r=hround(x3+.5curve+2.25u-.25hair); +y11'=y11; x11'r=x11r; +x13=.5[x11,x14]; y12=y14=.33[y13,x_height]; +bot y13l=.55h-.5vair; rt x14l=w; +filldraw stroke z10e--z11e; % diagonal crossbar +filldraw stroke z11'e--z12e{down}...{right}z13e...{up}z14e; % hook +penlabels(1,2,3,4,5,10,11,12,13,14); endchar; + +cmchar "Closed epsilon"; +beginchar(oct"305",CT(9u#,10u#),x_height#,0); +italcorr x_height#*slant-.5u#; +adjust_fit(0,0); +pickup fine.nib; pos5'(thin_hair,0); +rt x5'r=hround(w-.5u); top y5'l=vround(.45h+.5vair); +epsilon_stroke(false,4u); +filldraw stroke z8e{right}..{up}z5'e..{left}z2e; +penlabels(2,3,4,5,6,7,8,5'); endchar; + +cmchar "Closed reversed epsilon"; +beginchar(oct"306",CT(9u#,10u#),x_height#,0); +italcorr x_height#*slant-.5u#; +adjust_fit(0,0); +pickup fine.nib; pos5'(thin_hair,180); +lft x5'r=hround.5u; top y5'l=vround(.45h+.5vair); +epsilon_stroke(true,4u); +filldraw stroke z8e{left}..{up}z5'e..{right}z2e; +penlabels(2,3,4,5,6,7,8,5'); endchar; + +cmchar "Right-hook reversed epsilon"; +beginchar(oct"307",CT(11.5u#,12u#),x_height#,0); +italcorr .5[bar_height#,x_height#]*slant+.5u#; +adjust_fit(0,0); +ow:=w; w:=w-3u; +epsilon_stroke(true,3.5u); +w:=ow; +if serifs: numeric bulb_diam; + bulb_diam=max(flare-.75(cap_stem-stem),stem); + pos0(bulb_diam,180); pos1(hair,180); + lft x0r=hround u; y0=min(.9h-.5bulb_diam,.75h+.5bulb_diam); + bulb(2,1,0); % upper bulb + pos9(bot_thickness,angle(-2u,-h)); +else: pos1(.47[vair',flare],100); lft x1r = 1u; top y1r = .9h; + filldraw stroke term.e(2,1,left,1,4); + pos9(.6[vair',flare],-100); fi +lft x9r=hround .75u; top y9=vround .25h-o; +y9r:=good.y y9r-eps; x9l:=good.x x9l; +filldraw stroke term.e(8,9,left,1,4); % lower terminal +if serifs: if monospace: pos3'(hair,0); pos11(hair,0);pos12(hair,0); + else: pos3'(1.5hair,0); pos11(1.5hair,0);pos12(1.5hair,0); fi + pos13(vair,90); pos14(hair,180); +else: pos3'(.6hair,0); pos11(.6hair,0);pos12(.6hair,0); + pos13(vair,90); pos14(.6hair,180); fi +z3'=z3; lft x11l=lft x12l=hround(x3+.5curve+1.5u); top y11l=h+oo; +x13=.5[x11,x14]; y12=y14=.3[y13,x_height]; +bot y13l=.5h; x14=w; +filldraw stroke z3'e--z11e; % hook +filldraw stroke z11e--z12e{down}...{right}z13e...{up}z14e; +penlabels(0,1,2,3,4,5,6,7,8,9,10,11,12,13,14); endchar; + +cmchar "Baby gamma"; +beginchar(oct"310",CT(if serifs: 9.5u# else:9u# fi,10u#),x_height#,0); +italcorr x_height#*slant+.25u#; +adjust_fit(serif_fit# if monospace:+\\.5u#,.5u#+ else:,fi\\ serif_fit#); +numeric left_stem,right_stem,outer_jut,alpha,raise; +left_stem=fudged.stem-stem_corr; +right_stem=min(fudged.hair if hefty:-2stem_corr fi,left_stem); +outer_jut=.75jut; x1l=w-x4r=l+letter_fit+outer_jut+.25u; y1=y4=h; +raise=if serifs: .45h; else: .5h; fi +x2-x1=x4-x3; x2l+apex_corr=x3l; y2=y3=raise; +alpha=diag_ratio(2,right_stem,y1-y2,x4r-x1l-apex_corr); +penpos1(alpha*left_stem,0); penpos2(alpha*left_stem,0); +penpos3(alpha*right_stem,0); penpos4(alpha*right_stem,0); +z0=whatever[z1r,z2r]=whatever[z3l,z4l]; +if y0>notch_cut+raise: y0:=notch_cut+raise; + fill z0+.5right{up}...{z4-z3}diag_end(3l,4l,1,1,4r,3r) + --diag_end(4r,3r,1,1,2l,1l)--diag_end(2l,1l,1,1,1r,2r){z2-z1} + ...{down}z0+.5left--cycle; % left and right diagonals +else: fill z0--diag_end(0,4l,1,1,4r,3r)--diag_end(4r,3r,1,1,2l,1l) + --diag_end(2l,1l,1,1,1r,0)--cycle; fi % left and right diagonals +if serifs: numeric inner_jut; pickup tiny.nib; + prime_points_inside(1,2); prime_points_inside(4,3); + if rt x1'r+jut+.5u+1<=lft x4'l-jut: inner_jut=jut; + else: rt x1'r+inner_jut+.5u+1=lft x4'l-inner_jut; fi + dish_serif(1',2,a,1/3,outer_jut,b,1/2,inner_jut); % left serif + dish_serif(4',3,c,.6,inner_jut,d,1/2,outer_jut)(dark); fi % right serif +pickup penrazor; +penpos5(alpha*left_stem,0); penpos7(vair,-90); penpos9(alpha*right_stem,180); +y5=y9=y0; z5=whatever[z1,z2]; z9=whatever[z4,z3]; +y6=y8=.4[y7,y5] if not serifs:+.5vair fi; +z6=whatever[z1,z2]; z8=whatever[z4,z3]; +bot y7r=-o; x7=.5w+.2(left_stem-right_stem); +numeric stem_jut[], y_shift, circle_gap; +circle_gap=(x6-.5left_stem)-(x8+.5right_stem); +stem_jut1=if circle_gap<.5u: .4 else: .1 fi left_stem; +stem_jut2=if circle_gap<.5u: .4 else: .1 fi right_stem; +y_shift=if (left_stem-1.2right_stem)>0: .1[y7,y5] else: 0 fi; +x6:=x6+stem_jut1; x8:=x8-stem_jut2; y8:=y8+y_shift; +penpos6(left_stem,0); penpos8(right_stem,180); +fill stroke z5e{z2-z1}..z6e..{left}z7e..z8e..{z4-z3}z9e; % bottom loop +if not serifs: % minor adjustments + pos5'(alpha*left_stem,0);pos9'(alpha*right_stem,180); + y5'=y9'=1.2[y0,y3]; z5'l=whatever[z1l,z2l]; z9'l=whatever[z4r,z3r]; + filldraw z5l--z5'l--z5'--z5--cycle; + filldraw z9l--z9'l--z9'--z9--cycle; fi +penlabels(0,1,2,3,4,5,6,7,8,9); endchar; + +cmchar "Hooktop heng"; +beginchar(oct"312",10u#,asc_height#,desc_depth#); +italcorr .7[x_height#,asc_height#]*slant-serif_fit#+.5stem#-u#; +adjust_fit(serif_fit#+stem_shift#,-stem_shift#-.5u#); +pickup tiny.nib; pos1(stem,0); pos2(stem,0); +pos1'(stem',0); pos2'(stem',0); pos3(stem,0); +lft x1l=hround(side_gap-.5stem); x1l=x1'l=x2l=x2'l; x3=w-x1; +top y1=.25[x_height,h]; bot y2=0; y1=y1'; y2=y2'; +filldraw stroke z1'e--z2'e; % left stem +h_stroke(2,a,3,4); % arch and right stem +if serifs: numeric inner_jut; pickup tiny.nib; + if rt x2r+jut+.5u+1<=lft x4l-jut: inner_jut=jut; + else: rt x2r+jut+.5u+1=lft x4l-inner_jut; fi + dish_serif(2,1,c,1/3,jut,d,1/3,jut); fi % lower left serif +hooktop(1,9,10,11,stem',rt x3r,h,.8,.55,.2); +left_tail(4,5,6,7,stem,rt x2r); +penlabels(1,2,3,4,5,6,7,9,10,11); endchar; + +cmchar "Iota"; +beginchar(oct"314",CT(5u#,5.56u#),x_height#,0); l_width#:=4u#; +adjust_fit(if monospace:2u#,2u# else: u#,0 fi); pickup fine.nib; +pickup tiny.nib; pos1(stem,0); pos2'(stem,0); z2'=z2; +top y1=x_height if serifs: +min(oo,serif_drop) fi; +x2-.5stem=hround(1.5u-.5stem); x4=hround(w-1u+.25hair); +hook_out(2,3,4); % closing hook +x1=x2; filldraw stroke z1e--z2e; % stem +if serifs: sloped_serif.l(1,2,a,1/3,jut,serif_drop); fi % serif +penlabels(1,2,3,4); endchar; + +cmchar "Barred dotless J (an old version)"; +beginchar(oct"315",CT(5.5u#,6.66u#),x_height#,desc_depth#); +italcorr x_height#*slant-serif_fit#+.5stem#-.5u#; +adjust_fit(serif_fit#+2stem_shift# if monospace:+1.5u# fi, + serif_fit#-2stem_shift# if monospace:+.5u# fi); +pickup tiny.nib; pos1(stem',0); pos2(stem',0); +rt x1r=hround(.5w+.25u+.5stem'); x1=x2; +top y1=x_height; bot y2=-1/3d; +filldraw stroke z1e--z2e; % stem +if serifs: dish_serif(1,2,b,1/3,1.25jut,c,1/3,jut); % serif + pickup tiny.nib; pos5(vair,-90); pos6(hair,-180); pos7(flare,-180); + x5=.5[x2,x6r]; bot y5r=-d-oo; y6-.5flare=-.88d; + if monospace: lft x6r=0 else: z6r=z7r; rt x7l=floor .75u fi; + (x,y5r)=whatever[z5l,z2l]; x5r:=max(x,.5[x6r,x5]); + filldraw stroke z2e{down}...z5e{left}; bulb(5,6,7); % arc and bulb +else: pickup fine.nib; pos2'(stem',0); z2'=z2; + pos6(.2[vair,stem'],-90); pos7(vair,-90); + lft x7r=hround -.75u; bot y7r=vround 5/6(-d-oo); + x3r=x1r; top y4r=min(2x_height,h+1); + (x,y7l)=whatever[z7r,(x1,min(h,asc_height))]; x7l:=x; + z5r=z2'r; (x2'l,y5l)=whatever[z7l,z5r]; x5l=x2'l; y5=y5r; + x6r=.5[x7r,x5r]; x6l:=.5[x7l,x5l]; bot y6r=-d-oo; + filldraw stroke z2'e..{down}z5e & super_arc.e(5,6) + & term.e(6,7,left,1,4); fi % arc and terminal +hbar(8,9,lft x1l - hround(1.75u),rt x1r + hround(1.5u),.1x_height); +penlabels(1,2,5,6,7); endchar; + +cmchar "Hooktop K"; +beginchar(oct"316",CT(9.5u#,10u#),asc_height#,0); +italcorr x_height#*slant-.2u#; +adjust_fit(serif_fit#,serif_fit#); pickup tiny.nib; +numeric right_jut,stem[],alpha[]; +stem1=max(tiny.breadth,hround(fudged.stem-stem_corr)); +stem2=max(tiny.breadth,hround(fudged.stem-2stem_corr)); +stem3=max(tiny.breadth,hround(fudged.hair if hefty:-\\4stem_corr fi)); +stem4=max(tiny.breadth,hround(fudged.stem-3stem_corr)); +if serifs: right_jut=.6jut; else: right_jut=.4tiny; fi +pos1(stem1,0); pos2(stem2,0); top y1=.25[x_height,h]; bot y2=0; +lft x1l=lft x2l=hround(side_gap-.5stem1); + top y3=x_height; rt x3r=hround(r-letter_fit-.7u-right_jut)+eps; +bot y6=0; rt x6r=hround(r-letter_fit-.3u-right_jut)+eps; +x4=x11=x1; y4=.7bar_height; y11=y3; +alpha1=diag_ratio(1,.5(stem3-tiny),y3-y4,x3r-x4); +alpha2=diag_ratio(1,.5(stem4-tiny),y11-y6,x6r-x1); +penpos3(alpha1*(stem3-tiny),0); penpos4(whatever,-90); +z5=.5[z5l,z5r]; penpos6(alpha2*(stem4-tiny),0); +forsuffixes $=l,r: y3'$=x_height; y6'$=0; z4$=z3'$+whatever*(z3-z4); + z5$=z6'$+whatever*(z11-z6)=whatever[z3,z4]; endfor +z3'r=z3r+penoffset z3-z4 of currentpen+whatever*(z3-z4); +% we have also z3'l=z3l+penoffset z4$-$z3 of currentpen+whatever$*$(z3$-$z4); +z6'r=z6r+penoffset z11-z6 of currentpen+whatever*(z11-z6); +z6'l=z6l+penoffset z6-z11 of currentpen+whatever*(z11-z6); + fill z4r--diag_end(4r,3'r,1,.5,3'l,4l)--z4l--cycle; % upper diagonal +fill z5l--diag_end(5l,6'l,.5,1,6'r,5r)--z5r--cycle; % lower diagonal +pos0(stem1,0); pos0'(stem2,0); y0=y0'; x0=x1; x0'=x2; +rt z0r=whatever[z3,z4]; filldraw stroke z1e..z0e--z0'e..z2e; % stem +if serifs: numeric inner_jut; + if rt x2r+jut+.5u+1<=lft x6l-jut: inner_jut=jut; + else: rt x2r+inner_jut+.5u+1=lft x6l-inner_jut; fi + dish_serif(2,0',b,1/3,jut,c,1/3,inner_jut); % lower stem serif + dish_serif(3,4,d,2/3,1.4jut,e,1/2,right_jut)(dark); % upperDiagonal serif + dish_serif(6,5,f,1/2,inner_jut,g,1/3,right_jut)(dark);fi % lowerDiagonal serif +hooktop(1,7,8,9,stem1,rt x3r,h,.8,.55,.2); +penlabels(0,1,2,3,4,5,6,7,8,9,11); endchar; + +cmchar "L-Yogh ligature"; +beginchar(oct"320",10u#,asc_height#,desc_depth#); +italcorr x_height#*slant-.5serif_fit#-.3u#; +adjust_fit(serif_fit#+stem_shift#,.5serif_fit#); +pickup tiny.nib; pos21(stem',0); pos22(stem',0); % l +lft x21l=hround(side_gap-.5stem'); x21=x22; top y21=h; bot y22=0; +filldraw stroke z21e--z22e; % stem +if serifs: sloped_serif.l(21,22,e,1/3,jut,serif_drop); % upper serif + dish_serif(22,21,f,1/3,jut,g,1/3,jut); fi % lower serif +h:=x_height; % yogh +yogh_stroke(x21,.28,x21l+.25u,true,false); +penlabels(1,2,3,4,5,6,7,8,9,10,12,21,22); endchar; + +cmchar "Closed omega"; +beginchar(oct"321",CT(11u#,12u#),x_height#,0); % 2003/03/16 +italcorr .7x_height#*slant; +adjust_fit(0,0); pickup fine.nib; +pos2(curve,-180); lft x2r=hround.5u; y2=y8=.45x_height; +y4=y6=vround.6h; y1r=h+oo; x1=.5w; pos1(vair,90); +pos3(vair,-90); pos4(hair,0); pos5(vair,90); +pos6(hair,180); pos7(vair,270); pos8(curve,360); +bot y3r=bot y7r=-oo; top y5r=vround(.1[y4,h]+.5vair); +x3=.5[x2,x4]; x7+.25u=.5[x6,x8]; rt x8r=hround(w-.5u); +x5+.5stem=hround(.5w+.5stem)+eps; +x5=.5[x4,x6]; rt x4r-lft x6r=min(stem,2hair)+2eps; +if x4l<x6l: x4l:=x6l:=x5; fi +filldraw circ_stroke z1e{left}...z2e{down}...z3e{right} + ...{up}z4e...{left}z5e; % left arc +filldraw stroke z5e{left}...z6e{down}...z7e{right}...{up}z8e...z1e{left}; +penlabels(1,2,3,4,5,6,7,8); endchar; + +cmchar "Hooktop P"; +beginchar(oct"322",10u#+serif_fit#,asc_height#,desc_depth#); +italcorr .7[x_height#,asc_height#]*slant+min(.5curve#-u#,-.25u#); +adjust_fit(serif_fit#-.5u#,0); +pickup tiny.nib; pos1(stem',0); pos2(stem,0); pos2'(stem,0); +pos0'(stem',0); pos0(stem,0); z0l=z0'l; x0'=x1; x0=x2=x2'; bot y2'=-d; +lft x1l=hround(side_gap-.5stem'); top y1=.25[x_height,h]; +numeric edge; edge=rt x2r; +pickup fine.nib; pos3(if hefty:thin_join else: hair fi,180); +pos4(vair,90); pos5(curve,0); pos6(vair,-90); penpos7(x3l-x3r,-180); +rt x3l=max(rt x3l-(lft x3r-tiny.lft x2l),1/3[rt x2,edge]); +y3=1/8[bar_height,x_height]; +x4l=w-.5(w-serif_fit)+.5u; top y4r=x_height+oo; +rt x5r=hround min(w-1.35u+.5curve,w-.6u); y5=.5x_height; +x6l=x4l-.2u; bot y6r=-oo; +x7=x3; y7=min(y3,y6+y4-y3+.6vair); +(x,y4r)=whatever[z3l,z4l]; x4r:=min(x,.5[x4,x5r]); +(x',y6r)=whatever[z7l,z6l]; x6r:=min(x',.5[x6,x5r]); +filldraw stroke z3e{up}...pulled_arc.e(4,5)&pulled_arc.e(5,6)...{up}z7e; % bowl +y0=ypart(((edge,h)--(edge,0))intersectionpoint(z3l{up}...{right}z4l)); +y2=ypart(((edge,h)--(edge,0))intersectionpoint(z6l{left}...{up}z7l)); +pickup tiny.nib; filldraw stroke z1e--z0'e--z0e--z2e--z2'e; % stem +pickup crisp.nib; pos8(hair,0); pos7'(stem,0); +z7'=z2; x8l=x7'l; bot y8=0; +filldraw stroke z7'e--z8e; % point +if serifs: dish_serif(2',0,b,1/3,jut,c,1/3,jut); fi +hooktop(1,9,10,11,stem',rt x5r,h,.8,.55,.2); +penlabels(0,1,2,3,4,5,6,7,8,9,10,11,2'); endchar; + +cmchar "Hooktop Q"; +beginchar(oct"323",10u#+serif_fit#,.9asc_height#,desc_depth#); +italcorr .9asc_height#*slant+1.75u#; +adjust_fit(0,0); +pickup tiny.nib; pos1(stem',0); pos2(stem,0); +pos0'(stem',0); pos0(stem,0); z0r=z0'r; x0'=x1; x0=x2; +rt x1r=hround(w-side_gap+.5stem'); +numeric edge; edge=lft x2l; +pickup fine.nib; pos3(if hefty:thin_join else: hair fi,0); +pos4(vair',90); pos5(curve,180); pos6(vair,270); penpos7(x3r-x3l,360); +lft x3l=min(lft x3l-(rt x3r-tiny.rt x2r),2/3[lft x2,edge]); y3=bar_height; +x4l=.5(w-serif_fit)-.3u; top y4r=x_height+oo; +lft x5r=hround max(1.35u-.5curve,.6u); y5=.5x_height; +x6l=x4l-.2u; bot y6r=-oo; y7=min(y3,y6+y4-y3+.6vair); +lft x7l=min(lft x7l-(rt x7r-tiny.rt x2r),1/3[lft x2,edge]); +(x,y4r)=whatever[z3l,z4l]; x4r:=max(x,.5[x5r,x4]); +(x',y6r)=whatever[z7l,z6l]; x6r:=max(x',.5[x5r,x6]); +filldraw stroke z3e{up}...{left}z4e&super_arc.e(4,5) + &super_arc.e(5,6)&z6e{right}...{up}z7e; % bowl +y1=ypart(((edge,h)--(edge,0))intersectionpoint(z3l{up}...{left}z4l)); +y0=ypart(((edge,h)--(edge,0))intersectionpoint(z6l{right}...{up}z7l)); +pickup tiny.nib; bot y2=-d; +filldraw stroke z1e--z0'e--z0e--z2e; % stem +pickup crisp.nib; +if serifs: dish_serif(2,0,b,1/3,jut,c,1/3,jut); fi % lower serif +hooktop(1,9,10,11,stem',hround(w+1.5u),h,.9,.6,.5); +penlabels(0,1,2,3,4,5,6,7,8,9,10,11); endchar; + +cmchar "Long-leg R"; +numeric r_flare#; r_flare#=.75[if serifs: stem# else: vair# fi,flare#]; +define_whole_blacker_pixels(r_flare); +beginchar(oct"324",CT(if serifs:max(7u#,5.5u#+r_flare#) else:6.5u# fi,6.66u#), + x_height#,desc_depth#); +italcorr x_height#*slant if not serifs: +.25u# fi; +adjust_fit(serif_fit#,0); +pickup fine.nib; top y4r=h+oo; +if serifs: pos4(vair,90); pos5(hair,0); + x4=w-max(if Times_Compat: 1.6 else: 1.75 fi u,.25u+r_flare); + rt x5r=hround(w-if Times_Compat: .1u else: .5u fi +.5); + y5+.5r_flare=.9[bar_height,h]+oo; + pos6(r_flare,0); bulb(4,5,6); % bulb +else: pos4(r_flare,90); rt x4=hround(w-.25u); fi +pos3(thin_join,180); rt x3l=hround(side_gap-.5stem')+stem'; top y3=bar_height; +filldraw stroke z3e{up}...{right}z4e; % arc +pickup tiny.nib; pos0(stem',0); pos2(stem',0); +pos1(hround(stem-3stem_corr),0); top y1=h+min(oo,serif_drop); +pos0'(hround(stem-3stem_corr),0); y0=y0'=y3; x1l=x0l=x0'l=x2l; +lft x1l=hround(side_gap-.5stem'); bot y2=-d; +filldraw stroke z1e--z0'e--z0e--z2e; % stem +if serifs: sloped_serif.l(1,0',a,1/3,jut,serif_drop); % upper serif + dish_serif(2,0,b,1/3,jut,c,1/3,1.25jut); fi % lower serif +penlabels(1,2,3,4,5,6); endchar; + +cmchar "Turned Long-leg R"; +numeric r_flare#; r_flare#=.75[if serifs: stem# else: vair# fi,flare#]; +define_whole_blacker_pixels(r_flare); +beginchar(oct"325",CT(if serifs:max(7u#,5.5u#+r_flare#) else:6.5u# fi,6.66u#), + x_height#+desc_depth#,0); +italcorr (x_height#+desc_depth#)*slant if not serifs: -.5u# fi; +adjust_fit(0,serif_fit#); +pickup fine.nib; bot y4r=-oo; +if serifs: pos4(vair,-90); pos5(hair,-180); + x4=max(if Times_Compat: 1.6 else: 1.75 fi u,.25u+r_flare); + lft x5r=hround(if Times_Compat: .1u else: .5u fi -.5); + y5-.5r_flare=x_height-.9[bar_height,x_height]-oo; + pos6(r_flare,-180); bulb(4,5,6); % bulb +else: pos4(r_flare,-90); lft x4=hround(.25u); fi +pos3(thin_join,0); lft x3l=hround(w-side_gap+.5stem')-stem'; +bot y3=x_height-bar_height; +filldraw stroke z3e{down}...{left}z4e; % arc +pickup tiny.nib; pos0(stem',0); pos2(stem',0); +pos1(hround(stem-3stem_corr),0); top y2=h; +pos0'(hround(stem-3stem_corr),0); y0=y0'=y3; x1r=x0r=x0'r=x2r; +rt x1r=hround(w-side_gap+.5stem'); bot y1=-min(oo,serif_drop); +filldraw stroke z1e--z0'e--z0e--z2e; % stem +if serifs: sloped_serif.r(1,0',a,1/3,jut,serif_drop); % lower serif + dish_serif(2,0,b,1/3,1.25jut,c,1/3,jut); fi % upper serif +penlabels(1,2,3,4,5,6); endchar; + +cmchar "Hooktop T"; +beginchar(oct"326",CT(6u#+max(u#,.5stem#),5.56u#), + if not monospace:.9 fi asc_height#,0); +italcorr x_height#*slant if serifs: -.25u# else: +.25u# fi; +adjust_fit(0,if serifs: .5u# else: 0u# fi); +numeric shaved_stem; shaved_stem=hround(stem if hefty:-\\2stem_corr fi); +pickup fine.nib; pos2(shaved_stem,180);pos3(shaved_stem,180); +lft x2r=lft x3r=hround(side_gap-.5shaved_stem); +y2=y8; y3=max(.5bar_height,2vair); +pickup crisp.nib; pos8(bar,90); +rt x8=hround(w- if Times_Compat: .4u else: 1.3u fi); +top y8r=x_height; lft x7=hround 1/3u; y7l=y8l; +pos7(bar,90); filldraw stroke z7e--z8e; % crossbar +pickup tiny.nib; pos1(hround(shaved_stem-stem_corr),0); + rt x1r=fine.rt x2l; top y1=.75h; + penpos2'(x1r-x1l,0); x2'=x1; y2'=y2; + filldraw stroke z1e--z2'e; % upper terminal +hooktop(1,9,10,11,hround(shaved_stem-stem_corr), + hround(w if Times_Compat:+.5u else: -.5u fi),h,.88,.5,.2); +pickup fine.nib; interim superness:=more_super; +pos4(vair',-90); bot y4r=-oo; rt x5r=hround(w- if Times_Compat: 0 fi u); +if serifs: pos5(hair,0); x4l=.5[x3l,x5l]; + y5= if Times_Compat: .5 else: 1 fi [0,y3]; + (x,y4r)=whatever[z4l,z5l]; x4r:=max(x,.5[x3r,x4]); + filldraw stroke z2e..super_arc.e(3,4)...{up}z5e; % stem and hook + if Times_Compat: else: + pickup crisp.nib; pos6(hair,0); pos5'(hair,0); + x6=x5=x5'; top y6=max(vround .75bar_height,top y5); y5=y5'; + filldraw stroke z5'e--z6e; fi % terminal +else: pos5(vair,-75); top y5l=vround .2[top y4l,bar_height]; + x5l:=good.x x5l; x4l=1/3[x3l,x5l]; x4r:=1/3[x3r,x5r]; y3l:=y3l+.2vair; + filldraw stroke z2e..super_arc.e(3,4); % stem and hook + path p; p=stroke z4e{right}..tension .9 and atleast 1..z5e; % terminal + if (xpart(z5l-precontrol 1 of p)<0) or (xpart(z5r-postcontrol 2 of p)<0): + filldraw stroke z4e{right}...{up}z5e; + else: filldraw p; fi fi; +penlabels(1,2,3,4,5,6,7,8,9,10,11); endchar; + +cmchar "Turned T"; +beginchar(oct"330",CT(6u#+max(u#,.5stem#),5.56u#),x_height#, + min(asc_height#,if hefty:9/7 else:10/7 fi\\ x_height#)-x_height#); +italcorr .7x_height#*slant -.5u#; +adjust_fit(if serifs: 0 else: -.5u# fi,0); +numeric shaved_stem; shaved_stem=hround(stem if hefty:-\\2stem_corr fi); +pickup fine.nib; pos2(shaved_stem,0);pos3(shaved_stem,0); +rt x2r=rt x3r=hround(w-(2.5u-.5shaved_stem)); +y2=y8; y3=min(h-.5bar_height,h-2vair); +pickup crisp.nib; pos8(bar,270); +lft x8=hround(if Times_Compat: .4u else: 1.3u fi); +bot y8r=0; rt x7=hround(w-1/3u); y7l=y8l; +if hefty: pos7(bar,270); + filldraw stroke z7e--z8e; % crossbar + pickup tiny.nib; pos1(hround(shaved_stem-stem_corr),180); + lft x1r=fine.lft x2l; bot y1=-d; + penpos2'(x1l-x1r,180); x2'=x1; y2'=y2; + filldraw stroke z1e--z2'e; % upper terminal +else: pos7(vair,270); pos1(hair,180); + lft x1r=fine.lft x2l; bot y1=-d; + filldraw z1l{up}...{right}z7r--z7l--z8l + --z8r--(x1r,y8r)--z1r--cycle; fi % upper terminal and crossbar +pickup fine.nib; interim superness:=more_super; +pos4(vair',90); top y4r=h+oo; lft x5r=hround(if Times_Compat: 0 fi u); +if serifs: pos5(hair,180); x4l=.5[x3l,x5l]; + y5=if Times_Compat: .5 else: 1 fi [h,y3]; + (x,y4r)=whatever[z4l,z5l]; x4r:=min(x,.5[x3r,x4]); + filldraw stroke z2e..super_arc.e(3,4)...{down}z5e; % stem and hook + if Times_Compat: else: + pickup crisp.nib; pos6(hair,180); pos5'(hair,180); + x6=x5=x5'; bot y6=min(vround (h-.75bar_height),bot y5); y5=y5'; + filldraw stroke z5'e--z6e; fi % terminal +else: pos5(vair,105); bot y5l=vround .2[bot y4l,h-bar_height]; + x5l:=good.x x5l; x4l=1/3[x3l,x5l]; x4r:=1/3[x3r,x5r]; y3l:=y3l-.2vair; + filldraw stroke z2e..super_arc.e(3,4); % stem and hook + path p; p=stroke z4e{left}..tension .9 and atleast 1..z5e; % terminal + if (xpart(z5l-precontrol 1 of p)>=0) or (xpart(z5r-postcontrol 2 of p)>=0): + filldraw stroke z4e{left}...{down}z5e; + else: filldraw p; fi fi; +penlabels(1,2,3,4,5,6,7,8); endchar; + +cmchar "T-Esh ligature"; +beginchar(oct"331",CT(9.5u#,10u#),asc_height#,desc_depth#); +italcorr asc_height#*slant+.5u#; +adjust_fit(0,if serifs: .5u# else: 0 fi); +numeric H,D; H:=vround 10/7x_height; D:=0; % t +numeric shaved_stem; shaved_stem=hround(stem if hefty:-\\2stem_corr fi); +pickup fine.nib; pos2(shaved_stem,180);pos3(shaved_stem,180); +lft x2r=lft x3r=hround(side_gap-.5shaved_stem); +y2=y8; y3=max(.5bar_height,2vair); +pickup crisp.nib; pos8(bar,90); +rt x8=hround6u; top y8r=x_height; lft x7=hround 1/3u; y7l=y8l; +if hefty: pos7(bar,90); + filldraw stroke z7e--z8e; % crossbar + pickup tiny.nib; pos1(hround(shaved_stem-stem_corr),0); + rt x1r=fine.rt x2l; top y1=H; + penpos2'(x1r-x1l,0); x2'=x1; y2'=y2; + filldraw stroke z1e--z2'e; % upper terminal +else: pos7(vair,90); pos1(hair,0); + rt x1r=fine.rt x2l; top y1=H; + filldraw z1l{down}...{left}z7r--z7l--z8l + --z8r--(x1r,y8r)--z1r--cycle; fi % upper terminal and crossbar +pickup fine.nib; interim superness:=more_super; +pos4(vair',-90); bot y4r=-oo; x4l=.5[x3l,x5l]; +lft x5l=hround x8; y5=if serifs: .35bar_height; else: .6bar_height; fi +pos5(if serifs: hair else: stem' fi,0); +(x,y4r)=whatever[z4l,z5l]; x4r:=max(x,.5[x3r,x4]); +filldraw stroke z2e..super_arc.e(3,4); % stem +filldraw stroke z4e{right}...{up}z5e; +pos11(stem',0); pos12(stem',0); % Esh +lft x11l=hround x8; x12=x11; y12=0; h-y11=d; +filldraw stroke z11e--z12e; % stem +left_tail(12,13,14,15,stem',hround(lft x11l-2.8u)); +hooktop(11,16,17,18,stem',hround(rt x11r+2.8u),h,.9,.5,1/3); +penlabels(1,2,3,4,5,6,7,8,11,12,13,14,15,16,17,18); endchar; + +cmchar "Inverted glottal stop"; +beginchar(oct"333",CT(9u#,10u#),asc_height#,0); +italcorr .5x_height#*slant; +adjust_fit(0,0); +pickup tiny.nib; pos2(vair,-90); pos3(curve,0); +pos4(vair,90); pos5(stem,0); pos6(stem,0); +x5=x6; x2=.5w; x4=x5l; rt x3r=hround(w-u); +lft x6l=hround(.42w-.5stem); top y6=h; +bot y2r=-oo; y3=.5[y2,y4]; y4r=.9x_height; y5=y4l; +{{interim superness:=more_super; + filldraw stroke pulled_super_arc.e(2,3)(superpull) + & z3e{up}...{(-10,-1)}z4e; + filldraw stroke z5e--z6e\\}}; % arc and stem +if serifs: pos1(hair,180); pos0(flare,180); + lft x1r=hround u; y1=.3[y3,y2]; bulb(2,1,0); % bulb +else: pickup fine.nib; pos2'(vair,-90); z2'=z2; + pos1(vround 5/7[vair,flare],-110); + lft x1r=hround u; bot y1r=vround .1[bot y2r,y6]; + filldraw stroke term.e(2',1,left,1,4); fi % terminal +penlabels(0,1,2,3,4,5,6); endchar; + +cmchar "Barred glottal stop"; +beginchar(oct"334",CT(9u#,10u#),asc_height#,0); +italcorr .7asc_height#*slant; +adjust_fit(0,0); +pickup tiny.nib; pos7(stem,0); bot y7=0; x7=.47w; +pos2(vair,90); pos3(curve,0); +pos4(vair,-90); pos5(stem,0); pos6(stem,0); +x2=x5=x6=x7; x4=x5l; +rt x3r=hround(w-u); bot y6=.3x_height; +top y2r=h+oo; y3=.5[y2,y4]; y4r=.5y2; y5=y4l; +{{interim superness:=more_super; + filldraw stroke pulled_super_arc.e(2,3)(superpull) + & z3e{down}...{(-10,-1)}z4e; + filldraw stroke z5e--z7e\\}}; % arc and stem +if serifs: pos1(hair,180); pos0(flare,180); + lft x1r=hround u; y1=.3[y3,y2]; bulb(2,1,0); % bulb + dish_serif(7,5,e,1/3,jut,f,1/3,jut); %serif +else: pickup fine.nib; pos2'(vair,90); z2'=z2; + pos1(vround 5/7[vair,flare],110); + lft x1r=hround u; top y1r=vround .9[y6,top y2r]; + filldraw stroke term.e(2',1,left,1,4); fi % terminal +hbar(8,9,lft x5l - hround(side_gap),rt x5r + hround(side_gap),.55x_height); +penlabels(0,1,2,3,4,5,6,7); endchar; + +cmchar "Barred reversed glottal stop"; +beginchar(oct"335",CT(9u#,10u#),asc_height#,0); +italcorr .7asc_height#*slant; +adjust_fit(0,0); +pickup tiny.nib; pos7(stem,0); bot y7=0; x7=.53w; +pos2(vair,90); pos3(curve,180); +pos4(vair,-90); pos5(stem,0); pos6(stem,0); +x2=x5=x6=x7; x4=x5r; +lft x3r=hround(u); bot y6=.3x_height; +top y2r=h+oo; y3=.5[y2,y4]; y4r=.5y2; y5=y4l; +{{interim superness:=more_super; + filldraw stroke pulled_super_arc.e(2,3)(superpull) + & z3e{down}...{(10,-1)}z4e; + filldraw stroke z5e--z7e\\}}; % arc and stem +if serifs: pos1(hair,0); pos0(flare,0); + rt x1r=hround (w-u); y1=.3[y3,y2]; bulb(2,1,0); % bulb + dish_serif(7,5,e,1/3,-jut,f,1/3,-jut); %serif +else: pickup fine.nib; pos2'(vair,90); z2'=z2; + pos1(vround 5/7[vair,flare],70); + rt x1r=hround (w-u); top y1r=vround .9[y6,top y2r]; + filldraw stroke term.e(2',1,right,1,4); fi % terminal +hbar(8,9,lft x5l - hround(side_gap),rt x5r + hround(side_gap),.55x_height); +penlabels(0,1,2,3,4,5,6,7); endchar; + +% end of tipasym2.mf diff --git a/Master/texmf-dist/fonts/source/public/tipa/tipasym4.mf b/Master/texmf-dist/fonts/source/public/tipa/tipasym4.mf new file mode 100644 index 00000000000..ad0fd594296 --- /dev/null +++ b/Master/texmf-dist/fonts/source/public/tipa/tipasym4.mf @@ -0,0 +1,670 @@ +% tipasym4.mf: TIPA phonetic symbols (4) non-IPA, old IPA symbols +% Copyright 1996-2003 FUKUI Rei +% +% This program may be distributed and/or modified under the +% conditions of the LaTeX Project Public License, either version 1.2 +% of this license or (at your option) any later version. +% The latest version of this license is in +% http://www.latex-project.org/lppl.txt +% and version 1.2 or later is part of all distributions of LaTeX +% version 1999/12/01 or later. +% +% This program consists of all files listed in Manifest.txt. +% +% Version 1.2 2003/01/01 +% +% This font is based on: +% Computer Modern font series by D. E. Knuth and +% TSIPA by KOBAYASHI Hajime, FUKUI Rei and SHIRAKAWA Shun. +% + +cmchar "Crossed B"; +beginchar(oct"240",10u#+serif_fit#,asc_height#,0); +italcorr .5x_height#*slant+min(.5curve#-u#,-.25u#); +adjust_fit(serif_fit#,0); +pickup tiny.nib; pos1(stem',0); pos2(stem,0); +pos0'(stem',0); pos0(stem,0); z0l=z0'l; x0'=x1; x0=x2; +lft x1l=hround(side_gap-.5stem'); top y1=h; +numeric edge; edge=rt x2r; +pickup fine.nib; pos3(if hefty:thin_join else: hair fi,180); +pos4(vair,90); pos5(curve,0); pos6(vair,-90); penpos7(x3l-x3r,-180); +rt x3l=max(rt x3l-(lft x3r-tiny.lft x2l),1/3[rt x2,edge]); +y3=1/8[bar_height,x_height]; +x4l=w-.5(w-serif_fit)+.5u; top y4r=x_height+oo; +rt x5r=hround min(w-1.35u+.5curve,w-.6u); y5=.5x_height; +x6l=x4l-.2u; bot y6r=-oo; +x7=x3; y7=min(y3,y6+y4-y3+.6vair); +(x,y4r)=whatever[z3l,z4l]; x4r:=min(x,.5[x4,x5r]); +(x',y6r)=whatever[z7l,z6l]; x6r:=min(x',.5[x6,x5r]); +filldraw stroke z3e{up}...pulled_arc.e(4,5)&pulled_arc.e(5,6)...{up}z7e; % bowl +y0=ypart(((edge,h)--(edge,0))intersectionpoint(z3l{up}...{right}z4l)); +y2=ypart(((edge,h)--(edge,0))intersectionpoint(z6l{left}...{up}z7l)); +pickup tiny.nib; filldraw stroke z1e--z0'e--z0e--z2e; % stem +pickup crisp.nib; pos8(hair,0); pos7'(stem,0); +z7'=z2; x8l=x7'l; bot y8=0; +filldraw stroke z7'e--z8e; % point +if serifs: sloped_serif.l(1,0',a,1/3,jut,serif_drop); fi % upper serif +pickup if serifs: tiny.nib else: fine.nib fi; +hbar(9,10,lft x0l-hround(1.8u+serif_fit),rt x0r+hround(side_gap), + x_height+.5(h-x_height)); +penlabels(0,1,2,3,4,5,6,7,8); endchar; + +cmchar "Crossed D"; +beginchar(oct"241",10u#+serif_fit#,asc_height#,0); +italcorr asc_height#*slant-serif_fit#+.5stem#-.5u#; +adjust_fit(0,serif_fit#); +d_stroke(true,true,0); +pickup if serifs: tiny.nib else: fine.nib fi; +hbar(8,9,lft x0l-hround 2.5u,rt x0r+hround(1.8u+serif_fit), + x_height + .5(h-x_height)); +penlabels(0,1,2,3,4,5,6,7); endchar; + +cmchar "Curly-tail D"; +beginchar(oct"242",10u#+serif_fit#,asc_height#,desc_depth#); +italcorr asc_height#*slant-serif_fit#+.5stem#-2.25u#; +adjust_fit(0,serif_fit#+u#); +d_stroke(true,false,.45bar_height); +if serifs: pickup tiny.nib; else: pickup fine.nib; fi +pos2'(stem,0); z2'=z2; numeric curlytail[]; +curlytail1=if serifs: vair; else: vair; fi +curlytail2=if serifs: hair; else: .8hair; fi +curlytail3=if serifs: vair; else: vair; fi +pos10(curlytail1,90); x10=.4[x2r,x11]; bot y10l=if serifs: -oo; else: -o; fi +pos11(curlytail2,180); rt x11=w+.5u; y11=.3bar_height; +pos12(curlytail3,280); x12=x2r+.5u; y12=2y11; +pos13(hair,360); x13=.4w; y13=-.75desc_depth; +filldraw stroke z2'e{down}..z10e..{up}z11e... + {(-3,-1)}z12e...{(-1,-2)}z13e; % tail +penlabels(0,1,2,3,4,5,6,7,8,9,10,11,12,13); endchar; + +cmchar "Hooktop right-tail D"; +beginchar(oct"243",10u#+serif_fit#,asc_height#,desc_depth#); +italcorr asc_height#*slant+.5u#; +adjust_fit(0,serif_fit#+1.75u#); +d_stroke(false,false,0); +hooktop(0,9,10,11,stem,hround(w+1.5u),h,.9,.6,.5); +if serifs: right_tail(2,12,13,14,stem,hround(w+1u),.88,.5,1/3); +else: right_tail(2,12,13,14,stem,hround(w+1u),.833,.5,1/3); fi +penlabels(0,1,2',3,4,5,6,7,9,10,11,12,13,14); endchar; + +cmchar "The letter g"; +beginchar(oct"245",CT(9u#,10u#),x_height#,desc_depth#); +italcorr x_height#*slant+.25u#; +adjust_fit(0,0); +numeric light_vair,light_curve,loop_top,loop_side; +light_vair=Vround(.5[thin_join,vair]+vair_corr); +light_curve=max(fine.breadth,hround(curve-3stem_corr)); +loop_top=Vround .77[vair,fudged.stem]; +loop_side=hround .64[vair,fudged.stem]; +pickup fine.nib; pos1(light_vair,90); +pos2(light_curve,180); pos3(light_vair,270); +pos4(light_curve,360); pos11(loop_top,90); +y11r=good.y(y11r+.15bar_height-y11); x1=x3=.5[x2,x4]; y2=y4=.5[y1,y3]; +lft x2r=hround(1.75u-.5light_curve); rt x4r=hround(w-2.75u+.5light_curve); +top y1r=h+oo; y3r=good.y(y3r+.27[top y11r,bot y1l]-y3); +filldraw stroke pulled_arc.e(1,2) & pulled_arc.e(2,3); % left half of bowl +filldraw stroke pulled_arc.e(3,4) & pulled_arc.e(4,1); % right half of bowl +x0=superness[x1r,x4r]; y0=superness[y4r,y1r]; % NE point on the super bowl +x8'=superness[x3r,x2r]; y8'=superness[y2r,y3r]; % SW point on the super bowl +x8''=superness[x3,x2]; y8''=superness[y2,y3]; +pos0(thin_join,angle(z0-z8')+90); +pos8(thin_join,angle(z0-z8')-90); z8=.618[z8',z8'']; +if serifs: pos5(vair,90); + pos6(hair,0); pos7(.5[hair,flare],0); x5=.75[x0,x6]; top y5r=h+o; + rt x6r=hround(w-.25u); y6+(.5[hair,flare])/2=.95[bar_height,h]+oo; + filldraw stroke z0e..{right}z5e; bulb(5,6,7); % ear +else: pos5(vair',100); top y5r=h+oo; + rt x5l=hround(w-.25u); y5l:=good.y y5l; + filldraw z0l{z5-z0}..z5l--z5r{left}..{curl 1}z0r--cycle; fi % ear +pos10(loop_top,90); x10=x8+.75u; y10=y11; +pos12(loop_side,0); pos13(light_vair,-90); +pos14(loop_side,-180); pos10'(.5[thin_join,vair],-270); +rt x12r=hround max(w-1.25u+.5loop_side,w-.5u); y12=y14=.5[y11,y13]; +x11=x13=max(.5w,x10+eps); bot y13r=-d-oo-1; x14=w-x12; z10'l=z10l; +filldraw stroke z8e{z8-z0}..z10e---z11e; % link +filldraw stroke {{interim superness:=hein_super; super_arc.e(11,12)}} + & super_arc.e(12,13) & super_arc.e(13,14) & super_arc.e(14,10'); % loop +penlabels(0,1,2,3,4,5,6,7,8,10,11,12,13,14); labels(8',8''); endchar; + +cmchar "Left-hooktop Long I"; +beginchar(oct"246",CT(6u#,6.66u#),x_height#,desc_depth#); +italcorr x_height#*slant-2u#; +adjust_fit(0,serif_fit#); +pickup tiny.nib; pos3(stem,0); x2=x3; bot y3=-d; +x0=.75u; lft x2l = hround(.5w+.5u-.5stem); hook_in(0,1,2); +filldraw stroke z2e--z3e; +dish_serif(3,2,a,1/3,jut,b,1/3,jut); +penlabels(0,1,2,3); endchar; + +cmchar "Viby I"; +beginchar(oct"247",CT(7.1u#,7.78u#),x_height#,desc_depth#); +italcorr x_height#*slant-2u#; +adjust_fit(if monospace:.5u#,.5u# else:0,-.5u# fi); +pickup tiny.nib; x0=.75u; +lft x2l = hround(.5w-.5stem); x3=x2; x5=w-.75u; +hook_in(0,1,2); hook_out_bot(3,4,5); +filldraw stroke z2e--z3e; +penlabels(0,1,2,3,4,5); endchar; + +cmchar "Turned K"; +beginchar(oct"251",CT(9.5u#,10u#),x_height#,desc_depth#); +italcorr x_height#*slant; +adjust_fit(serif_fit#,serif_fit#); pickup tiny.nib; +numeric right_jut,stem[],alpha[]; +stem1=max(tiny.breadth,hround(fudged.stem-stem_corr)); +stem2=max(tiny.breadth,hround(fudged.stem-2stem_corr)); +stem3=max(tiny.breadth,hround(fudged.hair if hefty:-\\4stem_corr fi)); +stem4=max(tiny.breadth,hround(fudged.stem-3stem_corr)); +if serifs: right_jut=.6jut; else: right_jut=.4tiny; fi +pos1(stem1,0); pos2(stem2,0); top y1=x_height+d+min(oo,serif_drop); bot y2=0; +lft x1l=lft x2l=hround(side_gap-.5stem1); +top y3=x_height; rt x3r=hround(r-letter_fit-.7u-right_jut)+eps; +bot y6=0; rt x6r=hround(r-letter_fit-.3u-right_jut)+eps; +x4=x11=x1; y4=.7bar_height; y11=y3; +alpha1=diag_ratio(1,.5(stem3-tiny),y3-y4,x3r-x4); +alpha2=diag_ratio(1,.5(stem4-tiny),y11-y6,x6r-x1); +penpos3(alpha1*(stem3-tiny),0); penpos4(whatever,-90); +z5=.5[z5l,z5r]; penpos6(alpha2*(stem4-tiny),0); +forsuffixes $=l,r: y3'$=x_height; y6'$=0; z4$=z3'$+whatever*(z3-z4); + z5$=z6'$+whatever*(z11-z6)=whatever[z3,z4]; endfor +z3'r=z3r+penoffset z3-z4 of currentpen+whatever*(z3-z4); +% we have also z3'l=z3l+penoffset z4-z3 of currentpen+whatever*(z3-z4); +z6'r=z6r+penoffset z11-z6 of currentpen+whatever*(z11-z6); +z6'l=z6l+penoffset z6-z11 of currentpen+whatever*(z11-z6); +fill z4r--diag_end(4r,3'r,1,.5,3'l,4l)--z4l--cycle; % upper diagonal +fill z5l--diag_end(5l,6'l,.5,1,6'r,5r)--z5r--cycle; % lower diagonal +pos0(stem1,0); pos0'(stem2,0); y0=y0'; x0=x1; x0'=x2; +rt z0r=whatever[z3,z4]; filldraw stroke z1e..z0e--z0'e..z2e; % stem +if serifs: numeric inner_jut; + if rt x2r+jut+.5u+1<=lft x6l-jut: inner_jut=jut; + else: rt x2r+inner_jut+.5u+1=lft x6l-inner_jut; fi + sloped_serif.l(1,0,a,1/3,jut,serif_drop); % upper stem serif + dish_serif(2,0',b,1/3,jut,c,1/3,inner_jut); % lower stem serif + dish_serif(3,4,d,2/3,1.4jut,e,1/2,right_jut)(dark); % upper diagonal serif + dish_serif(6,5,f,1/2,inner_jut,g,1/3,right_jut)(dark);fi % lower diagonal serif +turn_picture_lower; penlabels(0,1,2,3,4,5,6,11); endchar; + +cmchar "Barred L"; +beginchar(oct"252",7u#,asc_height#,0); +italcorr asc_height#*slant-1u#; +adjust_fit(0,0); +pickup tiny.nib; pos1(stem',0); pos2(stem',0); +if odd(w-stem'): change_width; fi +lft x1l=hround(.5w-.5stem'); x1=x2; top y1=h; bot y2=0; +filldraw stroke z1e--z2e; % stem +if serifs: sloped_serif.l(1,2,a,1/3,jut,serif_drop); % upper serif + dish_serif(2,1,b,1/3,jut,c,1/3,jut); fi % lower serif +hbar(3,4,lft x1l - hround(2u),rt x2r + hround(2u), .82x_height+.5bar); +penlabels(1,2); endchar; + +cmchar "Lambda"; +beginchar(oct"253",CT(9.5u#,10u#),asc_height#,0); +adjust_fit(0,0); pickup fine.nib; +pos1(vair,90); lft x1=hround .1u; top y1r=h; +x2=x1+2u; y2=.7[x_height,h]; x3=w-2u; bot y4=-oo; y3=max(.07h,y4+eps); +z4-(.25u,0)=whatever[z2,z3]; numeric theta; theta=angle(z2-z3)-90; +pos2(stem,theta); pos3(stem,theta); pos4(stem,0); +filldraw circ_stroke z1e{right}...z2e---z3e + ...{2(x4e-x3e),y4e-y3e}z4e; % long diagonal +y5=.5[bar_height,x_height]; z5=whatever[z2,z3]; +x6=1.5u; y6-.5stem=-oo; pos5(hair,theta-90); pos6(stem,angle(z5-z6)-90); +filldraw circ_stroke z6e--z5e; % short diagonal +penlabels(1,2,3,4,5,6); endchar; + +cmchar "Crossed lambda"; +beginchar(oct"254",CT(9.5u#,10u#),asc_height#,0); +adjust_fit(0,0); pickup fine.nib; +pos1(vair,90); lft x1=hround .1u; top y1r=h; +x2=x1+2u; y2=.7[x_height,h]; x3=w-2u; bot y4=-oo; y3=max(.07h,y4+eps); +z4-(.25u,0)=whatever[z2,z3]; numeric theta; theta=angle(z2-z3)-90; +pos2(stem,theta); pos3(stem,theta); pos4(stem,0); +filldraw circ_stroke z1e{right}...z2e---z3e + ...{2(x4e-x3e),y4e-y3e}z4e; % long diagonal +y5=.5[bar_height,x_height]; z5=whatever[z2,z3]; +x6=1.5u; y6-.5stem=-oo; pos5(hair,theta-90); pos6(stem,angle(z5-z6)-90); +filldraw circ_stroke z6e--z5e; % short diagonal +z7=whatever[z2,z3]; y7=1/3[y5,y2]; pos7(stem,theta+90); +z8=z7+whatever*dir theta; x8=1.5u-.25stem; +z9=z7+whatever*dir theta; x9-x7=x7-x8; +pos8(.6[vair,stem],theta+90); pos9(.6[vair,stem],theta+90); +filldraw stroke z8e--z9e; +penlabels(1,2,3,4,5,6); endchar; + +cmchar "Old L-Yogh Ligature"; +beginchar(oct"255",CT(9.5u#,10u#),asc_height#,desc_depth#); +italcorr x_height#*slant-.5serif_fit#-u#; +adjust_fit(serif_fit#+stem_shift#,.5serif_fit#); +pickup fine.nib; +pos1(if serifs: vair else: stem' fi,180); +lft x1r=hround(side_gap-.5stem'); y1=.68x_height; +pos2(.3[hair,stem],90); x2=.5w+u; top y2r=x_height+o; +pos3(stem,0); x3=x7-.5u; y3=.4[bar_height,x_height]; +pos5(.7[hair,curve],0); x5r=.7[x2,x3]; y5=.7bar_height; +pos6(.8[hair,curve],30); x6=.5[x5l,x7r]; y6=.45[y5,y7]; +pos7(curve,0); rt x7r=hround(w-.75u); y7=0; +filldraw stroke z1e{up}...{right}z2e...{down}z3e...{down}z5e + ...z6e...{down}z7e; % bowl +if serifs: pickup tiny.nib; + x8=x7; bot y8=-.16d; pos8(curve,0); + pos9(vair,-90); pos10(hair,-180); pos10'(flare,-180); + x9=.5[x8,x10r]; bot y9r=-d-oo; y10-.5flare=-.7d; + z10r=z10'r; lft x10'r=hround 2u; + numeric xx; + (xx,y9r)=whatever[z9l,z8l]; x9r:=max(xx,.5[x10r,x9]); + filldraw stroke z7e--z8e{down}...z9e{left}; bulb(9,10,10'); % arc and bulb +else: pickup fine.nib; + x8=x7; bot y8=-.16d; pos8(curve,0); + pos9(vair,-90); x9=.5[x8,x10r]; bot y9r=-d-o; + pos10(.7[vair,flare],-130); lft x10r=hround 2u; + y10r=good.y -.7d; y10l:=good.y y10l; + filldraw stroke z7e--z8e & super_arc.e(8,9) + & term.e(9,10,left,.9,4); fi +pickup tiny.nib; pos51(stem',0); pos52(stem',0); % l +if odd(w-stem'): change_width; fi +lft x51l=hround(side_gap-.5stem'); x51=x52; top y51=h; bot y52=0; +filldraw stroke z51e--z52e; % stem +if serifs: sloped_serif.l(51,52,e,1/3,jut,serif_drop); % upper serif + dish_serif(52,51,f,1/3,jut,g,1/3,jut); fi % lower serif +penlabels(1,2,3,4,5,6,7,8,9,10,12,13,51,52); endchar; + +cmchar "Curly-tail N"; +beginchar(oct"256",10u#,x_height#,desc_depth#); +italcorr .5[bar_height#,x_height#]*slant-serif_fit#+.5stem#-2u#; +adjust_fit(serif_fit#+stem_shift#,serif_fit#-stem_shift#+u#); +pickup tiny.nib; pos1(stem,0); pos2(stem,0); +numeric shaved_stem; shaved_stem=hround(stem-2stem_corr); +pos1'(shaved_stem,0); pos2'(shaved_stem,0); pos3(stem,0); +lft x1l=hround(side_gap-.5stem); x1l=x1'l=x2l=x2'l; x3=w-x1; +top y1=h+min(oo,serif_drop); bot y2=0; y1=y1'; y2=y2'; +filldraw stroke z1'e--z2'e; % left stem +raised_h_stroke(2,a,3,4); % arch and right stem +if serifs: sloped_serif.l(1',2',b,1/3,jut,serif_drop); % upper left serif + numeric inner_jut; pickup tiny.nib; + if rt x2r+jut+.5u+1<=lft x4l-jut: inner_jut=jut; + else: rt x2r+jut+.5u+1=lft x4l-inner_jut; fi + dish_serif(2,1,c,1/3,jut,d,1/3,jut); fi % lower left serif +if serifs: pickup tiny.nib; else: pickup fine.nib; fi +pos4'(stem,0); z4'=z4; numeric curlytail[]; +curlytail1=if serifs: vair; else: vair; fi +curlytail2=if serifs: hair; else: .8hair; fi +curlytail3=if serifs: vair; else: vair; fi +pos10(curlytail1,90); x10=.4[x4r,x11]; bot y10l=if serifs: -oo; else: -o; fi +pos11(curlytail2,180); rt x11=w+.5u; y11=.3bar_height; +pos12(curlytail3,280); x12=x4r+.5u; y12=2y11; +pos13(hair,360); x13=.45w; y13=-.75desc_depth; +filldraw stroke z4'e{down} % stem + ..z10e..{up}z11e...{(-3,-1)}z12e...{(-1,-2)}z13e; % tail +penlabels(1,2,3,4,10,11,12,13); endchar; + +cmchar "Open O-E Ligature"; +beginchar(oct"257",13u#,x_height#,0); +italcorr .5[bar_height#,x_height#]*slant+.5min(curve#-1.5u#,0); +adjust_fit(0,0); +numeric left_curve,right_curve; +if monospace: right_curve=left_curve=fudged.stem; +else: left_curve=max(fine.breadth,hround(curve-2stem_corr)); + right_curve=max(tiny.breadth,hround(curve-if serifs:6 else:8 fi\\stem_corr));fi +pickup tiny.nib; pos11(right_curve,0); +pos12(vair,90); pos13(mfudged.stem,180); +y11=good.y bar_height; top y12r=h+vround 1.5oo; y10l=bot y11; +rt x11r=hround min(w-.5u,w-u+.5right_curve); +lft x13r=hround (.5(w)-.5mfudged.stem); x12=.55[x13,x11]; +{{interim superness:=more_super; + filldraw stroke super_arc.e(11,12)}}; % right bowl of e +y13=.5[y12,y14]; bot y14r=-oo; x14=x12+.25u; +if serifs: pos14(vair',270); pos15(mfudged.hair,360); + y15=max(good.y(.5bar_height-.9),y14l+vair); x15r=x11r; + (x,y14l)=whatever[z14r,z15]; x14l:=min(x,x14l+.5u); + filldraw stroke pulled_arc.e(12,13) + & pulled_super_arc.e(13,14)(.8superpull) + ...{x15-x14,5(y15-y14)}z15e; % left bowl, arc, and terminal of e +else: pos14(vair,270); + filldraw stroke super_arc.e(12,13) + & super_arc.e(13,14); % left bowl and arc of e + pickup fine.nib; pos14'(vair,270); z14=z14'; + pos15(.5[vair,flare],275); rt x15r=hround(w-.6u); + y15r=good.y(y15r+1/3bar_height-y15); y15l:=good.y y15l; x15l:=good.x x15l; + filldraw stroke term.e(14',15,right,1,4); fi % terminal +y11'r=y10r=y10l+.6[thin_join,vair]; y11'l=y10l; x11'l=x11'r=x11; x10l=x10r=x13; +fill stroke z10e--z11'e; % crossbar +numeric BH; BH=if Times_Compat:.5613h else: bar_height fi; % Open O +pickup fine.nib; pos2(vair',-90); pos4(vair',90); +pos3(mfudged.stem,0); z3=z13; +x2=x4=.5[.5u,x3]; bot y2r=vround(-1.5oo); top y4r=h+oo; +if serifs: pos1(hair,-180); pos0(flare,-180); + y1=max(h-BH-.5flare-2vair'-2,h-.9[BH,h]+.5flare); + lft x1r=hround(.7u); bulb(2,1,0); % bulb + pos5(hair,-180); lft x5r=hround(.5u); + y5=min(h-good.y(.5BH-.9),y4l-vair'); +filldraw stroke pulled_super_arc.e(2,3)(.7superpull) + & pulled_super_arc.e(3,4)(.5superpull) + ..tension .9 and 1..{x5-x4,5(y5-y4)}z5e; % arc and lower terminal +else: pos1(4/7[vair',flare],-100); + lft x1r=hround(.6u); bot y1r=h-vround .82[BH,top y4r]; + filldraw stroke term.e(2,1,left,.8,4); % upper terminal + pos5(.6[vair',flare],95); lft x5r=hround(.5u); + y5r=good.y(h+y5r-1/3BH-y5); + y5l:=good.y y5l; x5l:=good.x x5l; + filldraw stroke pulled_super_arc.e(2,3)(.7superpull) + & pulled_super_arc.e(3,4)(.5superpull) + ..tension .9 and 1..z5e; fi % arc and lower terminal +penlabels(1,2,3,4,10,11,12,13,14,15); endchar; + +cmchar "Omega"; +beginchar(oct"260",CT(11u#,12u#),x_height#,0); % 2003/03/16 +italcorr .5x_height#*slant; +adjust_fit(0,0); pickup fine.nib; +pos2(curve,-180); lft x2r=hround.5u; y2=y8=.45x_height; +y4=y6=vround.6h; y1r=h+oo; x1=x5=.5w; pos1(vair,90); +pos3(vair,-90); pos4(hair,0); pos5(vair,90); +pos6(hair,180); pos7(vair,270); pos8(curve,360); +bot y3r=bot y7r=-oo; top y5r=vround(.1[y4,h]+.5vair); +x3=.5[x2,x4]; x7=.5[x6,x8]; rt x8r=hround(w-.5u); +x5=.5[x4,x6]; rt x4r-lft x6r=min(stem,2hair)+2eps; +if x4l<x6l: x4l:=x6l:=x5; fi +pos9(vair,110);pos10(vair,70); +y9r=y10r=h; x9=w-x10=x2+1/2(x1-x2); +filldraw stroke z9e{dir210}...z2e{down}...z3e{right} + ...{up}z4e...{left}z5e; % left arc +filldraw stroke z5e{left}...z6e{down}...z7e{right} + ...{up}z8e...z10e{dir150}; +penlabels(1,2,3,4,5,6,7,8,9,10); endchar; + +cmchar "Curly-tail Esh"; +beginchar(oct"262",CT(5u#,5.56u#),asc_height#,desc_depth#); +italcorr asc_height#*slant+1.5u#; +adjust_fit(.5u# if monospace:+1.5u# fi,.5u# if monospace:+1.5u# fi); +pickup fine.nib; pos1(stem',0); pos2(stem',0); +lft x1l=hround(.5w-.5stem'); x2=x1; y2=0; h-y1=d; +filldraw stroke z1e--z2e; % stem +hooktop(1,3,4,5,stem',w+1u,h,.9,.5,1/3); +if serifs: pickup tiny.nib; else: pickup fine.nib; fi +pos2'(stem,0); z2'=z2; numeric curlytail[]; +curlytail1=if serifs: vair; else: vair; fi +curlytail2=if serifs: hair; else: .8hair; fi +curlytail3=if serifs: vair; else: vair; fi +pos7(curlytail1,-90); pos8(curlytail2,-180); +pos9(curlytail3,-270); pos10(hair,0); +bot y7r=-d-o; x7=.45[x8,x2]; lft x8r=hround -1u; y8=-.7d; +z9=(.5w,-.2d); rt x10r=w+.25hair; y10=-d-apex_o; +filldraw stroke z2e{down}...{left}z7e...z8e + ...z9e...{down}z10e; % lower stem +penlabels(1,2,3,4,5,7,8,9,10); endchar; + +cmchar "Left-hook T"; +beginchar(oct"263",CT(6u#+max(u#,.5stem#),5.56u#), + min(asc_height#,if hefty:9/7 else:10/7 fi\\ x_height#),desc_depth#); +italcorr x_height#*slant if serifs: -.9u# else: -.4u# fi; +adjust_fit(0,if serifs: .5u# else: 0u# fi); +numeric shaved_stem; shaved_stem=hround(stem if hefty:-\\2stem_corr fi); +pickup fine.nib; pos2(shaved_stem,180);pos3(shaved_stem,180); +lft x2r=lft x3r=hround(side_gap-.5shaved_stem); +y2=y8; y3=max(.5bar_height,2vair); +pickup crisp.nib; pos8(bar,90); +rt x8=hround(w- if Times_Compat: .4u else: 1.3u fi); +top y8r=x_height; lft x7=hround 1/3u; y7l=y8l; +if hefty: pos7(bar,90); + filldraw stroke z7e--z8e; % crossbar + pickup tiny.nib; pos1(hround(shaved_stem-stem_corr),0); + rt x1r=fine.rt x2l; top y1=h; + penpos2'(x1r-x1l,0); x2'=x1; y2'=y2; + filldraw stroke z1e--z2'e; % upper terminal +else: pos7(vair,90); pos1(hair,0); + rt x1r=fine.rt x2l; top y1=h; + filldraw z1l{down}...{left}z7r--z7l--z8l + --z8r--(x1r,y8r)--z1r--cycle; fi % upper terminal and crossbar +pickup fine.nib; interim superness:=more_super; +pos4(vair',-90); bot y4r=-oo; rt x5r=hround(w- if Times_Compat: 0 fi u); +if serifs: pos5(hair,0); x4l=.5[x3l,x5l]; + y5= if Times_Compat: .5 else: 1 fi [0,y3]; + (x,y4r)=whatever[z4l,z5l]; x4r:=max(x,.5[x3r,x4]); + filldraw stroke z2e..super_arc.e(3,4)...{up}z5e; % stem and hook + if Times_Compat: else: + pickup crisp.nib; pos6(hair,0); pos5'(hair,0); + x6=x5=x5'; top y6=max(vround .75bar_height,top y5); y5=y5'; + filldraw stroke z5'e--z6e; fi % terminal + left_tail(5,10,11,12,hair,hround(.5[x3r,x3])); +else: pos5(vair,-75); top y5l=vround .2[top y4l,bar_height]; + x5l:=good.x x5l; x4l=1/3[x3l,x5l]; x4r:=1/3[x3r,x5r]; y3l:=y3l+.2vair; + filldraw stroke z2e..super_arc.e(3,4); % stem and hook + path p; p=stroke z4e{right}..tension .9 and atleast 1..z5e; % terminal + if (xpart(z5l-precontrol 1 of p)<0) or (xpart(z5r-postcontrol 2 of p)<0): + filldraw stroke z4e{right}...{up}z5e; + else: filldraw p; fi; + pos9(.8hair,0); x9r=x5r; y9=y5r; + left_tail(9,10,11,12,.8hair,hround(.5[x3r,x3])); fi +penlabels(1,2,3,4,5,6,7,8,9,10,11,12); endchar; + +cmchar "Curly-tail T"; +beginchar(oct"264",6u#+max(u#,.5stem#), + min(asc_height#,if hefty:9/7 else:10/7 fi\\ x_height#),0); +italcorr x_height#*slant if serifs: -.9u# else: -.4u# fi; +adjust_fit(0,if serifs: 0 else: -.5u# fi); +numeric shaved_stem; shaved_stem=hround(stem if hefty:-\\2stem_corr fi); +pickup fine.nib; pos2(shaved_stem,180);pos3(shaved_stem,180); +lft x2r=lft x3r=hround(side_gap-.5shaved_stem); y2=y8; +y3=if serifs: max(.5bar_height,2vair); else: max(.3bar_height,1.5vair); fi +pickup crisp.nib; pos8(bar,90); +rt x8=hround(w-1.3u); top y8r=x_height; lft x7=hround 1/3u; y7l=y8l; +if hefty: pos7(bar,90); + filldraw stroke z7e--z8e; % crossbar + pickup tiny.nib; pos1(hround(shaved_stem-stem_corr),0); + rt x1r=fine.rt x2l; top y1=h; + penpos2'(x1r-x1l,0); x2'=x1; y2'=y2; + filldraw stroke z1e--z2'e; % upper terminal +else: pos7(vair,90); pos1(hair,0); + rt x1r=fine.rt x2l; top y1=h; + filldraw z1l{down}...{left}z7r--z7l--z8l + --z8r--(x1r,y8r)--z1r--cycle; fi % upper terminal and crossbar +pickup fine.nib; interim superness:=more_super; +pos4(vair',-90); bot y4r=if serifs: -oo; else: -o; fi +rt x5r=hround(w-u+.25hair); x4l=.6[x3,x5]; +pos5(if serifs:hair else: .8hair fi,0); +y5=if serifs: .35bar_height; else: .8[0,y3]; fi +(x,y4r)=whatever[z4l,z5l]; x4r:=max(x,.5[x3r,x4]); +pos11(if serifs: hair else: vair' fi,110); x11=x4-.5u; top y11r=2y5; +pos12(hair,180); x12=0; y12=-.75desc_depth; +filldraw stroke z2e..super_arc.e(3,4)...{up}z5e % stem and hook + ...{(-3,-1)}z11e...{(-1,-4)}z12e; +penlabels(1,2,3,4,5,6,7,8,10,11,12); endchar; + +cmchar "T-S Ligature"; +beginchar(oct"265",12u#,10/7x_height#,0); +italcorr x_height#*slant if serifs: -.75u# else: -.25u# fi; +adjust_fit(0,if serifs: 0 else: -.5u# fi); +numeric shaved_stem; shaved_stem=hround(stem if hefty:-\\2stem_corr fi); % t +pickup fine.nib; pos2(shaved_stem,180);pos3(shaved_stem,180); +lft x2r=lft x3r=hround(side_gap-.5shaved_stem); +y2=y8; y3=max(.5bar_height,2vair); +pickup crisp.nib; pos8(bar,90); +rt x8=hround5u; top y8r=x_height; lft x7=hround 1/3u; y7l=y8l; +if hefty: pos7(bar,90); + filldraw stroke z7e--z8e; % crossbar + pickup tiny.nib; pos1(hround(shaved_stem-stem_corr),0); + rt x1r=fine.rt x2l; top y1=h; + penpos2'(x1r-x1l,0); x2'=x1; y2'=y2; + filldraw stroke z1e--z2'e; % upper terminal +else: pos7(vair,90); pos1(hair,0); + rt x1r=fine.rt x2l; top y1=h; + filldraw z1l{down}...{left}z7r--z7l--z8l + --z8r--(x1r,y8r)--z1r--cycle; fi % upper terminal and crossbar +pickup fine.nib; interim superness:=more_super; +pos4(vair',-90); bot y4r=-oo; rt x5r=hround7u; +pos5(hair,0); y5=.35bar_height; x4l=.5[x3l,x5l]; +(x,y4r)=whatever[z4l,z5l]; x4r:=max(x,.5[x3r,x4]); +filldraw stroke z2e..super_arc.e(3,4); % stem +numeric x_org, theta; x_org=5u; % s + theta=90-angle(40u,x_height); slope:=-x_height/40u; % angle at middle +numeric s_slab; s_slab=if serifs:vair else:Vround .1[vair,stem] fi; +numeric ess'; ess'=max(fine.breadth,ess); +pickup fine.nib; pos12(max(fine.breadth,s_slab-vround vair_corr),-100); +pos10(ess',theta); pos17(vair',-90); x12l=x10=x17=x_org+.5(w-x_org); +top y12l=x_height+vround 1.5oo; bot y17r=-oo; +y10-.5ess'=y17l+if serifs:.54 else: .52 fi\\(y12r-y17l-ess'); +lft x13l=hround(x_org+.6u); rt x16r=hround(w-.6u); +x13r-x13l=x16r-x16l=hround .5[s_slab,ess']-fine; +ellipse_set(12l,13l,14l,10l); ellipse_set(12r,13r,14r,10r); y13=y13r; +ellipse_set(17l,16l,15l,10l); ellipse_set(17r,16r,15r,10r); y16=y16r; +interim superness:=more_super; +filldraw stroke super_arc.e(12,13) & z13e{down} + ..z14e---z15e..z16e{down} & super_arc.e(16,17)..z4e; % main stroke +if serifs: pos11(hair,180); rt x11l=hround(w-1.05u); + bot y11=min(bot y12r,vround 1/5[top y15r,x_height]); + filldraw stroke z11e{up}....{left}z12e; % upper arc + path upper_arc; upper_arc=z11{up}....{left}z12; + pos20(.3[fine.breadth,cap_hair],0); + x20r=x11l; top y20=top y12l; x11l-x11'=1.6cap_curve-fine; y11'=y11; + numeric t; t=xpart(upper_arc intersectiontimes(z20l--z11')); + filldraw z11l--z20r--z20l--subpath(t,0) of upper_arc--cycle; % upper barb +else: pos11(4/7[s_slab,flare],-100); + x11l=good.x(x11l+w-u-rt x11); top y11l=vround(.93x_height+1.5oo); + filldraw stroke term.e(12,11,right,.9,4); fi % upper arc and terminal +penlabels(1,2,3,4,5,6,7,8); +penlabels(10,11,11',12,13,14,15,16,20); endchar; + +cmchar "Long Viby Y"; +beginchar(oct"266",10u#,x_height#,desc_depth#); +italcorr x_height#*slant-.25u#; +adjust_fit(0,0); interim superness:=more_super; +pickup fine.nib; +lft x0=hround .25u; lft x2l=hround(2.75u-.5stem); +hook_in(0,1,2)(skewed); % opening hook +pickup tiny.nib; pos2'(stem,-180); z2'=z2; x3=x2; pos3(stem,-180); +lft x8l=hround(w-side_gap-.5stem); bot y8=-d; +pos4(vair,-90); pos5(hair,0); pos6(stem,0); pos8(stem,0); +x4=.5[x3,x5]; bot y4r=-oo; y3=.7[y4,y5]; +x5=x6=x8; y5=.57h; top y6=h; +filldraw stroke z2'e{-u,-x_height} + ...super_arc.e(3,4)...{up}z5e; % left stem and arc +filldraw stroke z6e--z8e; +if serifs: dish_serif(6,8,a,1/3,jut,b,1/3,jut); + dish_serif(8,6,c,1/3,jut,d,1/3,jut); fi +penlabels(0,1,2,3,4,5,6,8); endchar; + +cmchar "Viby Y"; +beginchar(oct"267",10u#,x_height#,desc_depth#); +italcorr x_height#*slant-.25u#; +adjust_fit(0,0); interim superness:=more_super; +pickup fine.nib; +rt x10=hround(w+.25u); lft x8l=hround(w-side_gap-.5stem); +hook_out_bot(8,9,10); +lft x0=hround .25u; lft x2l=hround(2.75u-.5stem); +hook_in(0,1,2)(skewed); % opening hook +pickup tiny.nib; pos2'(stem,-180); pos8'(stem,0); +z2'=z2; z8'=z8; x3=x2; pos3(stem,-180); +pos4(vair,-90); pos5(hair,0); pos6(stem,0); +x4=.5[x3,x5]; bot y4r=-oo; y3=.7[y4,y5]; +x5=x6=x8; y5=.57h; top y6=h; +filldraw stroke z2'e{-u,-x_height} + ...super_arc.e(3,4)...{up}z5e; % left stem and arc +filldraw stroke z6e--z8'e; +if serifs: dish_serif(6,8,a,1/3,jut,b,1/3,jut); fi +penlabels(0,1,2,3,4,5,6,8,9,10); endchar; + +cmchar "Curly-tail Yogh"; +beginchar(oct"270",CT(8u#,8.88u#),x_height#,desc_depth#); +italcorr x_height#*slant-.5serif_fit#-.3u#; +adjust_fit(0,.5serif_fit#); +yogh_stroke(.5u,.3,.75u,false,true); % yogh +pos9(vair,-180); pos21(vair,-270); +if serifs: pos22(hair,0); else: pos22(hair,0); fi +x21=.5(w-u); y21=0; rt x22r=w; y22=-d-apex_o; x9=u; y9=.5[y8,y21]; +filldraw stroke z8e{left}...{up}z9e...{right}z21e..{(2,-10)}z22e; % curly-tail +penlabels(1,2,3,4,5,6,7,8,9,12,21,22); endchar; + +%%%%% not yet good; to be corrected!!! +cmchar "Reversed Yogh"; +beginchar(oct"271",CT(8u#,8.88u#),x_height#,desc_depth#); +italcorr x_height#*slant-.5serif_fit#-.3u#; +adjust_fit(0,.5serif_fit#); +numeric arm_thickness[],z_stem,stem[]; +stem1=fudged.stem-4stem_corr; +if hefty: arm_thickness1=stem1; arm_thickness2=stem1; + z_stem=fudged.hair; +else: arm_thickness1=stem1; arm_thickness2=stem1; z_stem=fudged.hair; fi +if arm_thickness1<tiny.breadth: arm_thickness1:=tiny.breadth; fi +pickup tiny.nib; lft x1r=lft x2r=hround(.8u); +rt x3l=rt x4l=hround.7[.8u, w-.5u]; +top y1=h; y2=min(y1,h-2/3arm_thickness1); +bot y3=.3[0,h]; +numeric alpha; alpha=diag_ratio(1,z_stem-tiny,y2-y3,x3l-x2r-slant*(y2-y3)); +penpos1(alpha*(z_stem-tiny),-180); penpos2(alpha*(z_stem-tiny),-180); +penpos3(alpha*(z_stem-tiny),-180); penpos4(alpha*(z_stem-tiny),-180); +filldraw stroke z1e--z2e--z3e; +pickup crisp.nib; pos5(arm_thickness1,90); pos6(hair,0); +top y5r=h; x5=x1; rt x6r=w-hround .75u; y6=good.y(y5l-beak/1.8)-eps; +arm(5,6,a,beak_darkness,.4beak_jut); % upper arm and beak +pickup fine.nib; +pos12(stem,angle(z2-z3)); z12l=z3r; +pos7(curve,180); pos8(vair,270); +lft x7r=hround(.75u); y7=.5[bot y12l,top y8l]; +x8=w-hround .5[.5u, w-.8u]; bot y8r=-d-oo; +filldraw stroke pulled_arc.e(12,7) & pulled_arc.e(7,8); % bowl +if serifs: numeric bulb_diam[]; + bulb_diam2=flare; %+cap_stem-stem; + pos10(bulb_diam2,0); pos9(cap_hair,0); + rt x10r=w-hround .75u; y10=-.35d; + bulb(8,9,10); % lower bulb +else: pos9(.6[vair',flare],-80); + rt x9r=w-hround .75u; top y9l=vround -.3d; + y9r:=good.y y9r-eps; x9l:=good.x x9l; + filldraw stroke term.e(8,9,right,1,3); fi % lower terminal +penlabels(1,2,3,4,5,6,7,8,9,10,12); endchar; + +cmchar "Soft Sign"; +beginchar(oct"272",CT(8.5u#+serif_fit#,8.88u#),x_height#,0); +italcorr .5x_height#*slant-1u#; +adjust_fit(serif_fit#,0); +pickup tiny.nib; pos1(stem,0); pos2(stem,0); +lft x1l=lft x2l=hround(side_gap-.5stem); top y1=h; bot y2=0; +filldraw stroke z1e--z2e; % stem +pos3(vair,90); pos5(curve,0); pos7(vair,-90); +top y3r=vround(.6x_height+.5vair); y5=.45[y7,y3]; +bot y7r=bot y2; rt x5r=hround(w-1.5u+.5curve); x3=x7=x1; +filldraw stroke z3e{right}...z5e...{left}z7e; % lobe +if serifs: nodish_serif(1,2,a,1/3,jut,b,1/3,jut); % upper serif + nodish_serif(2,1,c,1/3,jut,d,1/3,0jut); fi % lower serif +penlabels(1,2,3,5,6,7); endchar; + +cmchar "Hard Sign"; +beginchar(oct"273",10u#+serif_fit#,x_height#,0); +italcorr .5x_height#*slant-1u#; +adjust_fit(serif_fit#,0); +pickup tiny.nib; pos1(stem,0); pos2(stem,0); +lft x1l=lft x2l=hround(4u-.5stem); top y1=h; bot y2=0; +filldraw stroke z1e--z2e; % stem +pos3(vair,90); pos5(curve,0); pos7(vair,-90); +top y3r=vround(.6x_height+.5vair); y5=.45[y7,y3]; +bot y7r=bot y2; rt x5r=hround(w-1.5u+.5curve); x3=x7=x1; +filldraw stroke z3e{right}...z5e...{left}z7e; % lobe +if serifs: nodish_serif(1,2,a,1/3,jut,b,1/3,jut); % upper serif + nodish_serif(2,1,c,1/3,jut,d,1/3,0jut); fi % lower serif +pickup crisp.nib; pos8(slab,90);pos9(hair,180); +top y8r = h; x8 = x1; +lft x9r = hround .75u; y9 = good.y(y8l-beak/1.8) - eps; +arm(8,9,e,beak_darkness, -.4beak_jut); +penlabels(1,2,3,5,6,7,8,9); endchar; + +cmchar "Raised Glottal Stop"; +beginchar(oct"274",CT(8u#,8.88u#),body_height#,0); +italcorr .8asc_height#*slant; +adjust_fit(0,0); pickup tiny.nib; +pos2(vair,90); pos3(curve,0); +pos4(vair,-90); pos5(stem,0); pos6(stem,0); +lft x6l=hround(.47w-.5stem); +x2=x5=x6; x4=x5l; +rt x3r=hround(w-u); bot y6=.8x_height; +top y2r=h+oo; y3=.5[y2,y4]; y4r=.25[y6,y2]; y5=y4l; +{{interim superness:=more_super; + filldraw stroke pulled_super_arc.e(2,3)(superpull) + & z3e{down}...{(-10,-1)}z4e; + filldraw stroke z5e--z6e\\}}; % arc and stem +if serifs: pos1(hair,180); pos0(flare,180); + lft x1r=hround u; y1=.3[y3,y2]; bulb(2,1,0); % bulb +else: pickup fine.nib; pos2'(vair,90); z2'=z2; + pos1(vround 5/7[vair,flare],110); + lft x1r=hround u; top y1r=vround .9[y6,top y2r]; + filldraw stroke term.e(2',1,left,1,4); fi % terminal +penlabels(0,1,2,3,4,5,6); endchar; + +% end of tipasym3.mf diff --git a/Master/texmf-dist/fonts/source/public/tipa/tipatone.mf b/Master/texmf-dist/fonts/source/public/tipa/tipatone.mf new file mode 100644 index 00000000000..d5dcaf8f2d4 --- /dev/null +++ b/Master/texmf-dist/fonts/source/public/tipa/tipatone.mf @@ -0,0 +1,311 @@ +% tipatone.mf: TIPA symbols for tone letters and other suprasegmentals +% Copyright 1996-2003 FUKUI Rei +% +% This program may be distributed and/or modified under the +% conditions of the LaTeX Project Public License, either version 1.2 +% of this license or (at your option) any later version. +% The latest version of this license is in +% http://www.latex-project.org/lppl.txt +% and version 1.2 or later is part of all distributions of LaTeX +% version 1999/12/01 or later. +% +% This program consists of all files listed in Manifest.txt. +% +% Version 1.2 2003/01/01 +% + +def tone_bar(suffix $, $$)(expr start_y, end_y) = + adjust_fit(0,0); pickup if serifs: rule.nib; else: hair_rule.nib; fi + x$ = 0; x$$ = w; % lft, rt are not used for adjusting tone letters. + y$ = start_y; y$$ = end_y; % same thing for not using top, bot. + draw z$--z$$; + penlabels($,$$); enddef; + +def long_width = 6u enddef; +def short_width = 4u enddef; + +numeric ipacode; +ipacode := 127; + +cmchar "Tone letter: long level tone"; +beginchar(incr ipacode,long_width#,0,0); +tone_bar(1,2,0,0); endchar; + +cmchar "Tone letter: long falling tone (1)"; +beginchar(incr ipacode,long_width#,1/4asc_height#,0); +tone_bar(1,2,h,0); endchar; + +cmchar "Tone letter: long falling tone (2)"; +beginchar(incr ipacode,long_width#,2/4asc_height#,0); +tone_bar(1,2,h,0); endchar; + +cmchar "Tone letter: long falling tone (3)"; +beginchar(incr ipacode,long_width#,3/4asc_height#,0); +tone_bar(1,2,h,0); endchar; + +cmchar "Tone letter: long falling tone (4)"; +beginchar(incr ipacode,long_width#,asc_height#,0); +tone_bar(1,2,h,0); endchar; + +cmchar "Tone letter: long rising tone (1)"; +beginchar(incr ipacode,long_width#,1/4asc_height#,0); +tone_bar(1,2,0,h); endchar; + +cmchar "Tone letter: long rising tone (2)"; +beginchar(incr ipacode,long_width#,2/4asc_height#,0); +tone_bar(1,2,0,h); endchar; + +cmchar "Tone letter: long rising tone (3)"; +beginchar(incr ipacode,long_width#,3/4asc_height#,0); +tone_bar(1,2,0,h); endchar; + +cmchar "Tone letter: long rising tone (4)"; +beginchar(incr ipacode,long_width#,asc_height#,0); +tone_bar(1,2,0,h); endchar; + +cmchar "Tone letter: short level tone"; +beginchar(incr ipacode,short_width#,0,0); +tone_bar(1,2,0,0); endchar; + +cmchar "Tone letter: short falling tone (1)"; +beginchar(incr ipacode,short_width#,1/4asc_height#,0); +tone_bar(1,2,h,0); endchar; + +cmchar "Tone letter: short falling tone (2)"; +beginchar(incr ipacode,short_width#,2/4asc_height#,0); +tone_bar(1,2,h,0); endchar; + +cmchar "Tone letter: short falling tone (3)"; +beginchar(incr ipacode,short_width#,3/4asc_height#,0); +tone_bar(1,2,h,0); endchar; + +cmchar "Tone letter: short falling tone (4)"; +beginchar(incr ipacode,short_width#,asc_height#,0); +tone_bar(1,2,h,0); endchar; + +cmchar "Tone letter: short rising tone (1)"; +beginchar(incr ipacode,short_width#,1/4asc_height#,0); +tone_bar(1,2,0,h); endchar; + +cmchar "Tone letter: short rising tone (2)"; +beginchar(incr ipacode,short_width#,2/4asc_height#,0); +tone_bar(1,2,0,h); endchar; + +cmchar "Tone letter: short rising tone (3)"; +beginchar(incr ipacode,short_width#,3/4asc_height#,0); +tone_bar(1,2,0,h); endchar; + +cmchar "Tone letter: short rising tone (4)"; +beginchar(incr ipacode,short_width#,asc_height#,0); +tone_bar(1,2,0,h); endchar; + +cmchar "Vertical line (minor group)"; +beginchar(incr ipacode,CT(5u#,5.56u#),body_height#,paren_depth#); +italcorr body_height#*slant+.5rule_thickness#-2u#; +adjust_fit(0,0); +numeric thickness; thickness=hround.6[hair,stem]; +pickup tiny.nib; pos1(thickness,0); pos2(thickness,0); +lft x1l = lft x2l = hround(.5w-.5thickness); +top y1=h+eps; bot y2=-d-eps; +filldraw stroke z1e--z2e; +penlabels(1,2); endchar; + +cmchar "Double vertical line (Major group)"; +beginchar(incr ipacode,CT(9u#,10u#),body_height#,paren_depth#); +italcorr body_height#*slant+.5rule_thickness#-2u#; +adjust_fit(0,0); +numeric thickness; thickness=hround(.6[hair,stem]-2stem_corr); +pickup tiny.nib; pos1(thickness,0); pos2(thickness,0); +pos3(thickness,0); pos4(thickness,0); +x1=x2; x3=x4=w-x1; lft x1l = hround((w-3.5u-thickness)/2); +top y1=top y3=h+eps; bot y2=bot y4=-d-eps; +filldraw stroke z1e--z2e; filldraw stroke z3e--z4e; +penlabels(1,2,3,4); endchar; + +cmchar "Down arrow (Downstep)"; +beginchar(incr ipacode,8u#,body_height#,0); +italcorr .76body_height#*slant+.5crisp#-u#; +adjust_fit(0,0); pickup crisp.nib; +pos1(rule_thickness,0); pos2(rule_thickness,0); +pos3(rule_thickness,90); pos4(rule_thickness,90); +lft x1l=hround(.5w-.5rule_thickness); y1+.5rule_thickness=h; +x0=x1=x2; bot y0=bar_height; x0-x3=x4-x0=if monospace:2.5u else:2.5u fi+eps; +y3=y4=y0+if monospace:.24 else:.27 fi asc_height+eps; +pos5(rule_thickness,angle(z4-z0)); z5l=z0; +pos6(rule_thickness,angle(z3-z0)); z6l=z0; +z9=.2[.5[z3,z4],z0]; +numeric t; path p; p=z4r{z9-z4}..z6r; +t=xpart(p intersectiontimes((x2r,-d)--(x2r,h))); y2=ypart point t of p; +filldraw z0..{z4-z9}z4l--subpath (0,t) of\\(z4r{z9-z4}..z6r) + --z2r---z1r..z1l---z2l--subpath (t,0) of\\(z3r{z9-z3}..z5r) + --z3l{z9-z3}..z0 & cycle; % arrowhead and stem +penlabels(0,1,2,3,4,5,6,9); endchar; + +cmchar "Up arrow (Upstep)"; +beginchar(incr ipacode,8u#,body_height#,0); +italcorr .76body_height#*slant+.5crisp#-u#; +adjust_fit(0,0); pickup crisp.nib; +pos1(rule_thickness,0); pos2(rule_thickness,0); +pos3(rule_thickness,90); pos4(rule_thickness,90); +lft x1l=hround(.5w-.5rule_thickness); y1-.5rule_thickness=bar_height; +x0=x1=x2; top y0=h; x0-x3=x4-x0=if monospace:2.5u else:2.5u fi+eps; +y3=y4=y0-if monospace:.24 else:.27 fi asc_height-eps; +pos5(rule_thickness,angle(z4-z0)); z5l=z0; +pos6(rule_thickness,angle(z3-z0)); z6l=z0; +z9=.2[.5[z3,z4],z0]; +numeric t; path p; p=z4l{z9-z4}..z6r; +t=xpart(p intersectiontimes((x2r,-d)--(x2r,h))); y2=ypart point t of p; +filldraw z0..{z4-z9}z4r--subpath (0,t) of\\(z4l{z9-z4}..z6r) + --z2r---z1r..z1l---z2l--subpath (t,0) of\\(z3l{z9-z3}..z5r) + --z3r{z9-z3}..z0 & cycle; % arrowhead and stem +penlabels(0,1,2,3,4,5,6,9); endchar; + +cmchar "Northeast arrow (Global rise)"; +beginchar(incr ipacode,14u#,asc_height#,0); +adjust_fit(0,0); pickup crisp.nib; +x1-.5rule_thickness=hround u; rt x0=hround(w-u); +y1-.5rule_thickness=-d; top y0=h; +numeric theta; theta=angle(z0-z1); +pos1(rule_thickness,90+theta); pos2(rule_thickness,90+theta); +pos3(rule_thickness,theta); pos4(rule_thickness,theta); +z3-z0=(-3u,.27asc_height) rotated theta; +z4-z0=(-3u,-.27asc_height) rotated theta; +pos5(rule_thickness,-90); z5l=z0; pos6(rule_thickness,-180); z6l=z0; +z9=.2[.5[z3,z4],z0]; +numeric t; path p; p=z4l{z9-z4}..z6r; +t=xpart(p intersectiontimes (z1l--(z1l+2(z0-z1)))); z2l=point t of p; +filldraw z0..{z4-z9}z4r--subpath (0,t) of\\(z4l{z9-z4}..z6r) + --z2l---z1l..z1r---z2r--subpath (t,0) of\\(z3l{z9-z3}..z5r) + --z3r{z9-z3}..z0 & cycle; % arrowhead and stem +penlabels(0,1,2,3,4,5,6,9); endchar; + +cmchar "Southeast arrow (global fall)"; +beginchar(incr ipacode,14u#,asc_height#,0); +adjust_fit(0,0); pickup crisp.nib; +x1-.5rule_thickness=hround u; rt x0=hround(w-u); +y1+.5rule_thickness=h; bot y0=-d; +numeric theta; theta=angle(z0-z1); +pos1(rule_thickness,90+theta); pos2(rule_thickness,90+theta); +pos3(rule_thickness,theta); pos4(rule_thickness,theta); +z3-z0=(-3u,.27asc_height) rotated theta; +z4-z0=(-3u,-.27asc_height) rotated theta; +pos5(rule_thickness,180); z5l=z0; pos6(rule_thickness,90); z6l=z0; +z9=.2[.5[z3,z4],z0]; +numeric t; path p; p=z4l{z9-z4}..z6r; +t=xpart(p intersectiontimes (z1l--(z1l+2(z0-z1)))); z2l=point t of p; +filldraw z0..{z4-z9}z4r + --subpath (0,t) of\\(z4l{z9-z4}..z6r) + --z2l---z1l..z1r---z2r + --subpath (t,0) of\\(z3l{z9-z3}..z5r) + --z3r{z9-z3}..z0 & cycle; % arrowhead and stem +penlabels(0,1,2,3,4,5,6,9); endchar; + +cmchar "Mid acute accent"; +beginchar(oct"230",9u#,min(asc_height#,2x_height#),0); +italcorr h#*slant-u#; +adjust_fit(0,0); pickup tiny.nib; +numeric accent.stem, accent.hair; +accent.stem = max(.8stem,hair); +accent.hair = max(.6stem,hair); +y1 = y2; x1 = hround(1.5u+.5accent.stem); x2 = x4; +pos1(accent.hair,-90); pos2(accent.hair,-90); +if serifs: pickup tiny.nib; + x3+.5accent.stem=hround(w-1.5u); x3-x4=1.8u; y2 = y4; + y3+.5accent.stem=h; top y4'l=vround(.4[x_height,asc_height])+o; + y4=y4'; pos4'(accent.hair,-90); + numeric theta; theta=angle(z4-z3)+90; + pos3(accent.stem,theta); pos4(accent.hair,theta); + filldraw stroke z1e--z2e; % bar + filldraw circ_stroke z3e--z4e; % right diagonal +else: pickup fine.nib; + pos3(stem,0); pos4(accent.hair,0); bot y2r = bot y4; + rt x3r=hround(w-1.5u); rt x4r=hround(rt x3r-1.8u); + top y3=h; top y2l=vround(.4[x_height,asc_height])+o; + filldraw stroke z1e--z2e; % bar + filldraw stroke z3e--z4e; fi % right diagonal +penlabels(1,2,3,4); endchar; + +cmchar "Grave mid accent"; +beginchar(oct"231",9u#,min(asc_height#,2x_height#),0); +italcorr h#*slant-u#; +adjust_fit(0,0); pickup tiny.nib; +numeric accent.stem, accent.hair; +accent.stem = max(.8stem,hair); +accent.hair = max(.6stem,hair); +y1 = y2; x1 = hround(w-1.5u-.5accent.stem); x2 = x4; +pos1(accent.hair,-90); pos2(accent.hair,-90); +if serifs: pickup tiny.nib; + x3-.5accent.stem=hround(1.5u); x4-x3=1.8u; y2 = y4; + y3+.5accent.stem=h; top y4'r=vround(.4[x_height,asc_height])+o; + y4=y4'; pos4'(accent.hair,90); + numeric theta; theta=angle(z4-z3)+90; + pos3(accent.stem,theta); pos4(accent.hair,theta); + filldraw stroke z1e--z2e; % bar + filldraw circ_stroke z3e--z4e; % right diagonal +else: pickup fine.nib; + pos3(stem,0); pos4(accent.hair,0); bot y2r = bot y4; + lft x3l=hround(1.5u); lft x4l=hround(lft x3l+1.8u); + top y3=h; top y2l = vround(.4[x_height,asc_height])+o; + filldraw stroke z1e--z2e; % bar + filldraw stroke z3e--z4e; fi % right diagonal +penlabels(1,2,3,4); endchar; + +cmchar "Rising-falling accent"; +beginchar(oct"232",9u#,min(asc_height#,2x_height#),0); +italcorr h#*slant-u#; +adjust_fit(0,0); pickup tiny.nib; +numeric accent.stem, accent.hair; +accent.stem = max(.8stem,hair); +accent.hair = max(.5stem,hair); +if serifs: pickup tiny.nib; + x2-x1=x6-x5=2.2u; x2=x4; x3=x5; x1=1.2u; x6=w-1.2u; + y1=y3=y5=h-.5accent.stem; + y2=y4=y6=vround(max(2/3[h,x_height],x_height+o+hair)); + numeric theta; theta=angle(z1-z2)+90; + pos1(accent.stem,theta); pos2(accent.hair,theta); + pos3(accent.stem,180-theta); pos4(accent.hair,180-theta); + pos5(accent.stem,theta); pos6(accent.hair,theta); + full_circ_stroke(1,2); + full_circ_stroke(3,4); + full_circ_stroke(5,6); +else: pickup fine.nib; + x2-x1=x6-x5=2.2u; x2=x4; x3=x5; x1=1.2u; x6=w-1.2u; + top y1=top y3=top y5=h; bot y2=bot y4=bot y6=vround 2/3[h,x_height]; + pos1(stem,0); pos2(accent.hair,0); + pos3(stem,0); pos4(accent.hair,0); + pos5(stem,0); pos6(accent.hair,0); + filldraw stroke z1e--z2e; + filldraw stroke z3e--z4e; + filldraw stroke z5e--z6e; fi +penlabels(1,2,3,4,5,6); endchar; + +cmchar "Falling-rising accent"; +beginchar(oct"233",9u#,min(asc_height#,2x_height#),0); +italcorr h#*slant-u#; +adjust_fit(0,0); pickup tiny.nib; +numeric accent.stem, accent.hair; +accent.stem = max(.8stem,hair); +accent.hair = max(.5stem,hair); +if serifs: pickup tiny.nib; + x1-x2=x5-x6=2.2u; x1=x3; x4=x6; x2=1.2u; x5=w-1.2u; + y1=y3=y5=h-.5accent.stem; + y2=y4=y6=vround(max(2/3[h,x_height],x_height+o+hair)); + numeric theta; theta=angle(z1-z2)+90; + pos1(accent.stem,theta); pos2(accent.hair,theta); + pos3(accent.stem,180-theta); pos4(accent.hair,180-theta); + pos5(accent.stem,theta); pos6(accent.hair,theta); + full_circ_stroke(1,2); + full_circ_stroke(3,4); + full_circ_stroke(5,6); +else: pickup fine.nib; + x1-x2=x5-x6=2.2u; x1=x3; x4=x6; x2=1.2u; x5=w-1.2u; + top y1=top y3=top y5=h; bot y2=bot y4=bot y6=vround 2/3[h,x_height]; + pos1(stem,0); pos2(accent.hair,0); + pos3(stem,0); pos4(accent.hair,0); + pos5(stem,0); pos6(accent.hair,0); + filldraw stroke z1e--z2e; + filldraw stroke z3e--z4e; + filldraw stroke z5e--z6e; fi +penlabels(1,2,3,4,5,6); endchar; + +% end of tipatone.mf diff --git a/Master/texmf-dist/fonts/source/public/tipa/tipatr.mf b/Master/texmf-dist/fonts/source/public/tipa/tipatr.mf new file mode 100644 index 00000000000..b57c662e8ef --- /dev/null +++ b/Master/texmf-dist/fonts/source/public/tipa/tipatr.mf @@ -0,0 +1,31 @@ +% tipatr.mf -- correction for Times Roman compatible fonts +% Copyright 1996-2003 FUKUI Rei +% +% This program may be distributed and/or modified under the +% conditions of the LaTeX Project Public License, either version 1.2 +% of this license or (at your option) any later version. +% The latest version of this license is in +% http://www.latex-project.org/lppl.txt +% and version 1.2 or later is part of all distributions of LaTeX +% version 1999/12/01 or later. +% +% This program consists of all files listed in Manifest.txt. +% +% Version 1.2 2003/01/01 +% + +def bulb(suffix $,$$,$$$) = + z$$$r=z$$r; + numeric theta; theta=angle(0,y$r-y$$r); + filldraw z$r{x$$r-x$r,0}...{0,y$$r-y$r}z$$r...{dir theta}z$$$l... + {x$r-x$$r,0}z$l--cycle; + enddef; + +def bulbvar(suffix $,$$,$$$) = + z$$$r=z$$r; + numeric theta; theta=angle(x$r-x$$r,0); + filldraw z$r{0,y$$r-y$r}...{x$$r-x$r,0}z$$r...{dir theta}z$$$l... + {0,y$r-y$$r}z$l--cycle; + enddef; + +endinput diff --git a/Master/texmf-dist/fonts/source/public/tipa/tipats10.mf b/Master/texmf-dist/fonts/source/public/tipa/tipats10.mf new file mode 100644 index 00000000000..a645a567762 --- /dev/null +++ b/Master/texmf-dist/fonts/source/public/tipa/tipats10.mf @@ -0,0 +1,92 @@ +% tipats10.mf: TIPA Typewriter Text Slanted 10 point parameter file +% Copyright 1996-2003 FUKUI Rei +% +% This program may be distributed and/or modified under the +% conditions of the LaTeX Project Public License, either version 1.2 +% of this license or (at your option) any later version. +% The latest version of this license is in +% http://www.latex-project.org/lppl.txt +% and version 1.2 or later is part of all distributions of LaTeX +% version 1999/12/01 or later. +% +% This program consists of all files listed in Manifest.txt. +% +% Version 1.2 2003/01/01 +% +% This file is based on: +% Computer Modern font series by D. E. Knuth and +% TSIPA by KOBAYASHI Hajime, FUKUI Rei and SHIRAKAWA Shun. + +if unknown cmbase: input cmbase fi +if unknown tipabase: input tipabase fi + +font_identifier:="TIPATS"; font_size 10pt#; + +Times_Compat:=false; +if Times_Compat: input tipatr fi + +u#:=21/36pt#; +width_adj#:=0pt#; +serif_fit#:=0pt#; +cap_serif_fit#:=0pt#; +letter_fit#:=0pt#; +body_height#:=250/36pt#; +asc_height#:=220/36pt#; +cap_height#:=220/36pt#; +fig_height#:=220/36pt#; +x_height#:=155/36pt#; +math_axis#:=110/36pt#; +bar_height#:=79/36pt#; +comma_depth#:=50/36pt#; +desc_depth#:=80/36pt#; +crisp#:=22/36pt#; +tiny#:=22/36pt#; +fine#:=21/36pt#; +thin_join#:=21/36pt#; +hair#:=25/36pt#; +stem#:=25/36pt#; +curve#:=25/36pt#; +ess#:=22/36pt#; +flare#:=32/36pt#; +dot_size#:=36/36pt#; +cap_hair#:=25/36pt#; +cap_stem#:=25/36pt#; +cap_curve#:=25/36pt#; +cap_ess#:=25/36pt#; +rule_thickness#:=25/36pt#; +dish#:=0pt#; +bracket#:=0pt#; +jut#:=34/36pt#; +cap_jut#:=34/36pt#; +beak_jut#:=0pt#; +beak#:=34/36pt#; +vair#:=22/36pt#; +notch_cut#:=25/36pt#; +bar#:=22/36pt#; +slab#:=22/36pt#; +cap_bar#:=22/36pt#; +cap_band#:=22/36pt#; +cap_notch_cut#:=25/36pt#; +serif_drop#:=0pt#; +stem_corr#:=0pt#; +vair_corr#:=0pt#; +apex_corr#:=10/36pt#; +o#:=4/36pt#; +apex_o#:=3/36pt#; +slant:=1/6; +fudge:=0.81; +math_spread:=-1; +superness:=1/sqrt2; +superpull:=0; +beak_darkness:=0; +ligs:=0; +square_dots:=false; +hefty:=true; +serifs:=true; +monospace:=true; +low_asterisk:=true; +math_fitting:=false; +sc.u#:=21/36pt#; +sc.letter_fit#:=2.4/36pt#; + +generate tipa % switch to the driver file diff --git a/Master/texmf-dist/fonts/source/public/tipa/tipatt10.mf b/Master/texmf-dist/fonts/source/public/tipa/tipatt10.mf new file mode 100644 index 00000000000..ece73bfb77b --- /dev/null +++ b/Master/texmf-dist/fonts/source/public/tipa/tipatt10.mf @@ -0,0 +1,92 @@ +% tipatt10.mf: TIPA Typewriter Text 10 point parameter file +% Copyright 1996-2003 FUKUI Rei +% +% This program may be distributed and/or modified under the +% conditions of the LaTeX Project Public License, either version 1.2 +% of this license or (at your option) any later version. +% The latest version of this license is in +% http://www.latex-project.org/lppl.txt +% and version 1.2 or later is part of all distributions of LaTeX +% version 1999/12/01 or later. +% +% This program consists of all files listed in Manifest.txt. +% +% Version 1.2 2003/01/01 +% +% This file is based on: +% Computer Modern font series by D. E. Knuth and +% TSIPA by KOBAYASHI Hajime, FUKUI Rei and SHIRAKAWA Shun. + +if unknown cmbase: input cmbase fi +if unknown tipabase: input tipabase fi + +font_identifier:="TIPATT"; font_size 10pt#; + +Times_Compat:=false; +if Times_Compat: input tipatr fi + +u#:=21/36pt#; +width_adj#:=0pt#; +serif_fit#:=0pt#; +cap_serif_fit#:=0pt#; +letter_fit#:=0pt#; +body_height#:=250/36pt#; +asc_height#:=220/36pt#; +cap_height#:=220/36pt#; +fig_height#:=220/36pt#; +x_height#:=155/36pt#; +math_axis#:=110/36pt#; +bar_height#:=79/36pt#; +comma_depth#:=50/36pt#; +desc_depth#:=80/36pt#; +crisp#:=22/36pt#; +tiny#:=22/36pt#; +fine#:=21/36pt#; +thin_join#:=21/36pt#; +hair#:=25/36pt#; +stem#:=25/36pt#; +curve#:=25/36pt#; +ess#:=22/36pt#; +flare#:=32/36pt#; +dot_size#:=36/36pt#; +cap_hair#:=25/36pt#; +cap_stem#:=25/36pt#; +cap_curve#:=25/36pt#; +cap_ess#:=25/36pt#; +rule_thickness#:=25/36pt#; +dish#:=0pt#; +bracket#:=0pt#; +jut#:=34/36pt#; +cap_jut#:=34/36pt#; +beak_jut#:=0pt#; +beak#:=34/36pt#; +vair#:=22/36pt#; +notch_cut#:=25/36pt#; +bar#:=22/36pt#; +slab#:=22/36pt#; +cap_bar#:=22/36pt#; +cap_band#:=22/36pt#; +cap_notch_cut#:=25/36pt#; +serif_drop#:=0pt#; +stem_corr#:=0pt#; +vair_corr#:=0pt#; +apex_corr#:=10/36pt#; +o#:=4/36pt#; +apex_o#:=3/36pt#; +slant:=0; +fudge:=0.81; +math_spread:=-1; +superness:=1/sqrt2; +superpull:=0; +beak_darkness:=0; +ligs:=0; +square_dots:=false; +hefty:=true; +serifs:=true; +monospace:=true; +low_asterisk:=true; +math_fitting:=false; +sc.u#:=21/36pt#; +sc.letter_fit#:=2.4/36pt#; + +generate tipa % switch to the driver file diff --git a/Master/texmf-dist/fonts/source/public/tipa/tipatt12.mf b/Master/texmf-dist/fonts/source/public/tipa/tipatt12.mf new file mode 100644 index 00000000000..ca20d299237 --- /dev/null +++ b/Master/texmf-dist/fonts/source/public/tipa/tipatt12.mf @@ -0,0 +1,92 @@ +% tipatt12.mf: TIPA Typewriter Text 12 point parameter file +% Copyright 1996-2003 FUKUI Rei +% +% This program may be distributed and/or modified under the +% conditions of the LaTeX Project Public License, either version 1.2 +% of this license or (at your option) any later version. +% The latest version of this license is in +% http://www.latex-project.org/lppl.txt +% and version 1.2 or later is part of all distributions of LaTeX +% version 1999/12/01 or later. +% +% This program consists of all files listed in Manifest.txt. +% +% Version 1.2 2003/01/01 +% +% This file is based on: +% Computer Modern font series by D. E. Knuth and +% TSIPA by KOBAYASHI Hajime, FUKUI Rei and SHIRAKAWA Shun. + +if unknown cmbase: input cmbase fi +if unknown tipabase: input tipabase fi + +font_identifier:="TIPATT"; font_size 12pt#; + +Times_Compat:=false; +if Times_Compat: input tipatr fi + +u#:=24.7/36pt#; +width_adj#:=0pt#; +serif_fit#:=0pt#; +cap_serif_fit#:=0pt#; +letter_fit#:=0pt#; +body_height#:=300/36pt#; +asc_height#:=264/36pt#; +cap_height#:=264/36pt#; +fig_height#:=264/36pt#; +x_height#:=186/36pt#; +math_axis#:=132/36pt#; +bar_height#:=95/36pt#; +comma_depth#:=60/36pt#; +desc_depth#:=96/36pt#; +crisp#:=25/36pt#; +tiny#:=25/36pt#; +fine#:=22/36pt#; +thin_join#:=22/36pt#; +hair#:=28/36pt#; +stem#:=28/36pt#; +curve#:=28/36pt#; +ess#:=25/36pt#; +flare#:=35/36pt#; +dot_size#:=39/36pt#; +cap_hair#:=28/36pt#; +cap_stem#:=28/36pt#; +cap_curve#:=28/36pt#; +cap_ess#:=28/36pt#; +rule_thickness#:=28/36pt#; +dish#:=0pt#; +bracket#:=0pt#; +jut#:=39/36pt#; +cap_jut#:=39/36pt#; +beak_jut#:=0pt#; +beak#:=39/36pt#; +vair#:=25/36pt#; +notch_cut#:=28/36pt#; +bar#:=25/36pt#; +slab#:=25/36pt#; +cap_bar#:=25/36pt#; +cap_band#:=25/36pt#; +cap_notch_cut#:=28/36pt#; +serif_drop#:=0pt#; +stem_corr#:=0pt#; +vair_corr#:=0pt#; +apex_corr#:=11/36pt#; +o#:=5/36pt#; +apex_o#:=4/36pt#; +slant:=0; +fudge:=0.86; +math_spread:=-1; +superness:=1/sqrt2; +superpull:=0; +beak_darkness:=0; +ligs:=0; +square_dots:=false; +hefty:=true; +serifs:=true; +monospace:=true; +low_asterisk:=true; +math_fitting:=false; +sc.u#:=24.7/36pt#; +sc.letter_fit#:=2.4/36pt#; + +generate tipa % switch to the driver file diff --git a/Master/texmf-dist/fonts/source/public/tipa/tipatt8.mf b/Master/texmf-dist/fonts/source/public/tipa/tipatt8.mf new file mode 100644 index 00000000000..12877a60915 --- /dev/null +++ b/Master/texmf-dist/fonts/source/public/tipa/tipatt8.mf @@ -0,0 +1,92 @@ +% tipatt8.mf: TIPA Typewriter Text 8 point parameter file +% Copyright 1996-2003 FUKUI Rei +% +% This program may be distributed and/or modified under the +% conditions of the LaTeX Project Public License, either version 1.2 +% of this license or (at your option) any later version. +% The latest version of this license is in +% http://www.latex-project.org/lppl.txt +% and version 1.2 or later is part of all distributions of LaTeX +% version 1999/12/01 or later. +% +% This program consists of all files listed in Manifest.txt. +% +% Version 1.2 2003/01/01 +% +% This file is based on: +% Computer Modern font series by D. E. Knuth and +% TSIPA by KOBAYASHI Hajime, FUKUI Rei and SHIRAKAWA Shun. + +if unknown cmbase: input cmbase fi +if unknown tipabase: input tipabase fi + +font_identifier:="TIPATT"; font_size 8pt#; + +Times_Compat:=false; +if Times_Compat: input tipatr fi + +u#:=17/36pt#; +width_adj#:=0pt#; +serif_fit#:=0pt#; +cap_serif_fit#:=0pt#; +letter_fit#:=0pt#; +body_height#:=200/36pt#; +asc_height#:=176/36pt#; +cap_height#:=176/36pt#; +fig_height#:=176/36pt#; +x_height#:=124/36pt#; +math_axis#:=88/36pt#; +bar_height#:=63/36pt#; +comma_depth#:=40/36pt#; +desc_depth#:=64/36pt#; +crisp#:=19/36pt#; +tiny#:=19/36pt#; +fine#:=18/36pt#; +thin_join#:=18/36pt#; +hair#:=22/36pt#; +stem#:=22/36pt#; +curve#:=22/36pt#; +ess#:=19/36pt#; +flare#:=28/36pt#; +dot_size#:=31/36pt#; +cap_hair#:=22/36pt#; +cap_stem#:=22/36pt#; +cap_curve#:=22/36pt#; +cap_ess#:=22/36pt#; +rule_thickness#:=22/36pt#; +dish#:=0pt#; +bracket#:=0pt#; +jut#:=27/36pt#; +cap_jut#:=27/36pt#; +beak_jut#:=0pt#; +beak#:=27/36pt#; +vair#:=19/36pt#; +notch_cut#:=22/36pt#; +bar#:=19/36pt#; +slab#:=19/36pt#; +cap_bar#:=19/36pt#; +cap_band#:=19/36pt#; +cap_notch_cut#:=22/36pt#; +serif_drop#:=0pt#; +stem_corr#:=0pt#; +vair_corr#:=0pt#; +apex_corr#:=8/36pt#; +o#:=3/36pt#; +apex_o#:=3/36pt#; +slant:=0; +fudge:=0.81; +math_spread:=-1; +superness:=1/sqrt2; +superpull:=0; +beak_darkness:=0; +ligs:=0; +square_dots:=false; +hefty:=true; +serifs:=true; +monospace:=true; +low_asterisk:=true; +math_fitting:=false; +sc.u#:=17/36pt#; +sc.letter_fit#:=2.4/36pt#; + +generate tipa % switch to the driver file diff --git a/Master/texmf-dist/fonts/source/public/tipa/tipatt9.mf b/Master/texmf-dist/fonts/source/public/tipa/tipatt9.mf new file mode 100644 index 00000000000..b6a60cada74 --- /dev/null +++ b/Master/texmf-dist/fonts/source/public/tipa/tipatt9.mf @@ -0,0 +1,92 @@ +% tipatt9.mf: TIPA Typewriter Text 9 point parameter file +% Copyright 1996-2003 FUKUI Rei +% +% This program may be distributed and/or modified under the +% conditions of the LaTeX Project Public License, either version 1.2 +% of this license or (at your option) any later version. +% The latest version of this license is in +% http://www.latex-project.org/lppl.txt +% and version 1.2 or later is part of all distributions of LaTeX +% version 1999/12/01 or later. +% +% This program consists of all files listed in Manifest.txt. +% +% Version 1.2 2003/01/01 +% +% This file is based on: +% Computer Modern font series by D. E. Knuth and +% TSIPA by KOBAYASHI Hajime, FUKUI Rei and SHIRAKAWA Shun. + +if unknown cmbase: input cmbase fi +if unknown tipabase: input tipabase fi + +font_identifier:="TIPATT"; font_size 9pt#; + +Times_Compat:=false; +if Times_Compat: input tipatr fi + +u#:=18.9/36pt#; +width_adj#:=0pt#; +serif_fit#:=0pt#; +cap_serif_fit#:=0pt#; +letter_fit#:=0pt#; +body_height#:=225/36pt#; +asc_height#:=198/36pt#; +cap_height#:=198/36pt#; +fig_height#:=198/36pt#; +x_height#:=139.5/36pt#; +math_axis#:=99/36pt#; +bar_height#:=71/36pt#; +comma_depth#:=45/36pt#; +desc_depth#:=72/36pt#; +crisp#:=21/36pt#; +tiny#:=21/36pt#; +fine#:=20/36pt#; +thin_join#:=20/36pt#; +hair#:=24/36pt#; +stem#:=24/36pt#; +curve#:=24/36pt#; +ess#:=21/36pt#; +flare#:=30/36pt#; +dot_size#:=33/36pt#; +cap_hair#:=24/36pt#; +cap_stem#:=24/36pt#; +cap_curve#:=24/36pt#; +cap_ess#:=24/36pt#; +rule_thickness#:=24/36pt#; +dish#:=0pt#; +bracket#:=0pt#; +jut#:=31/36pt#; +cap_jut#:=31/36pt#; +beak_jut#:=0pt#; +beak#:=31/36pt#; +vair#:=21/36pt#; +notch_cut#:=24/36pt#; +bar#:=21/36pt#; +slab#:=21/36pt#; +cap_bar#:=21/36pt#; +cap_band#:=21/36pt#; +cap_notch_cut#:=24/36pt#; +serif_drop#:=0pt#; +stem_corr#:=0pt#; +vair_corr#:=0pt#; +apex_corr#:=9/36pt#; +o#:=3.5/36pt#; +apex_o#:=3/36pt#; +slant:=0; +fudge:=0.81; +math_spread:=-1; +superness:=1/sqrt2; +superpull:=0; +beak_darkness:=0; +ligs:=0; +square_dots:=false; +hefty:=true; +serifs:=true; +monospace:=true; +low_asterisk:=true; +math_fitting:=false; +sc.u#:=18.9/36pt#; +sc.letter_fit#:=2.4/36pt#; + +generate tipa % switch to the driver file diff --git a/Master/texmf-dist/fonts/source/public/tipa/tipx.mf b/Master/texmf-dist/fonts/source/public/tipa/tipx.mf new file mode 100644 index 00000000000..85ee787adcc --- /dev/null +++ b/Master/texmf-dist/fonts/source/public/tipa/tipx.mf @@ -0,0 +1,55 @@ +% tipx.mf: TIPA Extra Symbols driver file +% Copyright 1996-2003 FUKUI Rei +% +% This program may be distributed and/or modified under the +% conditions of the LaTeX Project Public License, either version 1.2 +% of this license or (at your option) any later version. +% The latest version of this license is in +% http://www.latex-project.org/lppl.txt +% and version 1.2 or later is part of all distributions of LaTeX +% version 1999/12/01 or later. +% +% This program consists of all files listed in Manifest.txt. +% +% Version 1.2 2003/01/01 +% +% This file is based on: +% Computer Modern font series by D. E. Knuth and +% TSIPA by KOBAYASHI Hajime, FUKUI Rei and SHIRAKAWA Shun. +% + +font_coding_scheme:="TeX IPA"; + +mode_setup; +font_setup; + +input tipanew % new materials for testing +input tipaextr % tipx symbols + +font_slant slant; font_x_height x_height#; + +if monospace: + font_normal_space 9u#; % no stretching or shrinking + font_quad 18u#; + font_extra_space 9u#; +else: + font_normal_space 6u#+2letter_fit#; + font_normal_stretch 3u#; font_normal_shrink 2u#; + font_quad 18u#+4letter_fit#; + font_extra_space 2u#; +fi + +% ligatures made by ligtables + +% no ligatures available. + +% kernings (need to modify) + +numeric itc#; % modified italic correction on `f' +itc#=if serifs: max(0,flare#-.25u#) else: 1.25u# fi; + +k#:=-.5u#; kk#:=-1.5u#; kkk#:=-2u#; % three degrees of kerning + +% no ligtable prepared. + +bye. diff --git a/Master/texmf-dist/fonts/source/public/tipa/tipx10.mf b/Master/texmf-dist/fonts/source/public/tipa/tipx10.mf new file mode 100644 index 00000000000..efc3312de81 --- /dev/null +++ b/Master/texmf-dist/fonts/source/public/tipa/tipx10.mf @@ -0,0 +1,92 @@ +% tipx10.mf: TIPX Roman 10 point parameter file +% Copyright 1996-2003 FUKUI Rei +% +% This program may be distributed and/or modified under the +% conditions of the LaTeX Project Public License, either version 1.2 +% of this license or (at your option) any later version. +% The latest version of this license is in +% http://www.latex-project.org/lppl.txt +% and version 1.2 or later is part of all distributions of LaTeX +% version 1999/12/01 or later. +% +% This program consists of all files listed in Manifest.txt. +% +% Version 1.2 2003/01/01 FUKUI Rei +% +% This file is based on: +% Computer Modern font series by D. E. Knuth and +% TSIPA by KOBAYASHI Hajime, FUKUI Rei and SHIRAKAWA Shun. + +if unknown cmbase: input cmbase fi +if unknown tipabase: input tipabase fi + +font_identifier:="TIPX"; font_size 10pt#; + +Times_Compat:=false; +if Times_Compat: input tipatr fi + +u#:=20/36pt#; +width_adj#:=0pt#; +serif_fit#:=0pt#; +cap_serif_fit#:=5/36pt#; +letter_fit#:=0pt#; +body_height#:=270/36pt#; +asc_height#:=250/36pt#; +cap_height#:=246/36pt#; +fig_height#:=232/36pt#; +x_height#:=155/36pt#; +math_axis#:=90/36pt#; +bar_height#:=87/36pt#; +comma_depth#:=70/36pt#; +desc_depth#:=70/36pt#; +crisp#:=0pt#; +tiny#:=8/36pt#; +fine#:=7/36pt#; +thin_join#:=7/36pt#; +hair#:=9/36pt#; +stem#:=25/36pt#; +curve#:=30/36pt#; +ess#:=27/36pt#; +flare#:=33/36pt#; +dot_size#:=38/36pt#; +cap_hair#:=11/36pt#; +cap_stem#:=32/36pt#; +cap_curve#:=37/36pt#; +cap_ess#:=35/36pt#; +rule_thickness#:=.4pt#; +dish#:=1/36pt#; +bracket#:=20/36pt#; +jut#:=28/36pt#; +cap_jut#:=37/36pt#; +beak_jut#:=10/36pt#; +beak#:=70/36pt#; +vair#:=8/36pt#; +notch_cut#:=10pt#; +bar#:=11/36pt#; +slab#:=11/36pt#; +cap_bar#:=11/36pt#; +cap_band#:=11/36pt#; +cap_notch_cut#:=10pt#; +serif_drop#:=4/36pt#; +stem_corr#:=1/36pt#; +vair_corr#:=1/36pt#; +apex_corr#:=0pt#; +o#:=8/36pt#; +apex_o#:=8/36pt#; +slant:=0; +fudge:=1; +math_spread:=0; +superness:=1/sqrt2; +superpull:=1/6; +beak_darkness:=11/30; +ligs:=2; +square_dots:=false; +hefty:=false; +serifs:=true; +monospace:=false; +low_asterisk:=false; +math_fitting:=false; +sc.u#:=14/36pt#; +sc.letter_fit#:=2.4/36pt#; + +generate tipx % switch to the driver file diff --git a/Master/texmf-dist/fonts/source/public/tipa/tipx12.mf b/Master/texmf-dist/fonts/source/public/tipa/tipx12.mf new file mode 100644 index 00000000000..1dfbadd391f --- /dev/null +++ b/Master/texmf-dist/fonts/source/public/tipa/tipx12.mf @@ -0,0 +1,92 @@ +% tipx12.mf: TIPX Roman 12 point parameter file +% Copyright 1996-2003 FUKUI Rei +% +% This program may be distributed and/or modified under the +% conditions of the LaTeX Project Public License, either version 1.2 +% of this license or (at your option) any later version. +% The latest version of this license is in +% http://www.latex-project.org/lppl.txt +% and version 1.2 or later is part of all distributions of LaTeX +% version 1999/12/01 or later. +% +% This program consists of all files listed in Manifest.txt. +% +% Version 1.2 2003/01/01 FUKUI Rei +% +% This file is based on: +% Computer Modern font series by D. E. Knuth and +% TSIPA by KOBAYASHI Hajime, FUKUI Rei and SHIRAKAWA Shun. + +if unknown cmbase: input cmbase fi +if unknown tipabase: input tipabase fi + +font_identifier:="TIPX"; font_size 12pt#; + +Times_Compat:=false; +if Times_Compat: input tipatr fi + +u#:=23.5/36pt#; +width_adj#:=0pt#; +serif_fit#:=0pt#; +cap_serif_fit#:=5.8/36pt#; +letter_fit#:=0pt#; +body_height#:=324/36pt#; +asc_height#:=300/36pt#; +cap_height#:=295.2/36pt#; +fig_height#:=278.4/36pt#; +x_height#:=186/36pt#; +math_axis#:=108/36pt#; +bar_height#:=104.4/36pt#; +comma_depth#:=84/36pt#; +desc_depth#:=84/36pt#; +crisp#:=0pt#; +tiny#:=8/36pt#; +fine#:=7/36pt#; +thin_join#:=7.5/36pt#; +hair#:=9.5/36pt#; +stem#:=28/36pt#; +curve#:=33/36pt#; +ess#:=30/36pt#; +flare#:=36/36pt#; +dot_size#:=42/36pt#; +cap_hair#:=11.5/36pt#; +cap_stem#:=35/36pt#; +cap_curve#:=40/36pt#; +cap_ess#:=38/36pt#; +rule_thickness#:=.44pt#; +dish#:=1/36pt#; +bracket#:=24/36pt#; +jut#:=33/36pt#; +cap_jut#:=41/36pt#; +beak_jut#:=11.4/36pt#; +beak#:=84/36pt#; +vair#:=8.5/36pt#; +notch_cut#:=12pt#; +bar#:=12.5/36pt#; +slab#:=12.5/36pt#; +cap_bar#:=12.5/36pt#; +cap_band#:=12.5/36pt#; +cap_notch_cut#:=12pt#; +serif_drop#:=4.8/36pt#; +stem_corr#:=1/36pt#; +vair_corr#:=1/36pt#; +apex_corr#:=0pt#; +o#:=9/36pt#; +apex_o#:=9/36pt#; +slant:=0; +fudge:=1; +math_spread:=-0.2; +superness:=1/sqrt2; +superpull:=1/6; +beak_darkness:=11/30; +ligs:=2; +square_dots:=false; +hefty:=false; +serifs:=true; +monospace:=false; +low_asterisk:=false; +math_fitting:=false; +sc.u#:=16.45/36pt#; +sc.letter_fit#:=2.4/36pt#; + +generate tipx % switch to the driver file diff --git a/Master/texmf-dist/fonts/source/public/tipa/tipx17.mf b/Master/texmf-dist/fonts/source/public/tipa/tipx17.mf new file mode 100644 index 00000000000..a3b49473261 --- /dev/null +++ b/Master/texmf-dist/fonts/source/public/tipa/tipx17.mf @@ -0,0 +1,92 @@ +% tipx17.mf: TIPX Roman 17.28 point parameter file +% Copyright 1996-2003 FUKUI Rei +% +% This program may be distributed and/or modified under the +% conditions of the LaTeX Project Public License, either version 1.2 +% of this license or (at your option) any later version. +% The latest version of this license is in +% http://www.latex-project.org/lppl.txt +% and version 1.2 or later is part of all distributions of LaTeX +% version 1999/12/01 or later. +% +% This program consists of all files listed in Manifest.txt. +% +% Version 1.2 2003/01/01 FUKUI Rei +% +% This file is based on: +% Computer Modern font series by D. E. Knuth and +% TSIPA by KOBAYASHI Hajime, FUKUI Rei and SHIRAKAWA Shun. + +if unknown cmbase: input cmbase fi +if unknown tipabase: input tipabase fi + +font_identifier:="TIPX"; font_size 17.28pt#; + +Times_Compat:=false; +if Times_Compat: input tipatr fi + +u#:=32.5/36pt#; +width_adj#:=0pt#; +serif_fit#:=0pt#; +cap_serif_fit#:=8/36pt#; +letter_fit#:=-0.1/36pt#; +body_height#:=466/36pt#; +asc_height#:=432/36pt#; +cap_height#:=425/36pt#; +fig_height#:=401/36pt#; +x_height#:=267.8/36pt#; +math_axis#:=155.5/36pt#; +bar_height#:=150/36pt#; +comma_depth#:=121/36pt#; +desc_depth#:=121/36pt#; +crisp#:=0pt#; +tiny#:=8/36pt#; +fine#:=7/36pt#; +thin_join#:=9/36pt#; +hair#:=11/36pt#; +stem#:=33/36pt#; +curve#:=40/36pt#; +ess#:=35/36pt#; +flare#:=45/36pt#; +dot_size#:=51/36pt#; +cap_hair#:=13/36pt#; +cap_stem#:=41/36pt#; +cap_curve#:=47/36pt#; +cap_ess#:=43/36pt#; +rule_thickness#:=.6pt#; +dish#:=1/36pt#; +bracket#:=34/36pt#; +jut#:=42/36pt#; +cap_jut#:=50/36pt#; +beak_jut#:=15/36pt#; +beak#:=121/36pt#; +vair#:=10/36pt#; +notch_cut#:=17pt#; +bar#:=16/36pt#; +slab#:=16/36pt#; +cap_bar#:=16/36pt#; +cap_band#:=16/36pt#; +cap_notch_cut#:=17pt#; +serif_drop#:=7/36pt#; +stem_corr#:=1/36pt#; +vair_corr#:=1/36pt#; +apex_corr#:=0pt#; +o#:=10/36pt#; +apex_o#:=10/36pt#; +slant:=0; +fudge:=1; +math_spread:=-0.4; +superness:=1/sqrt2; +superpull:=1/6; +beak_darkness:=11/30; +ligs:=2; +square_dots:=false; +hefty:=false; +serifs:=true; +monospace:=false; +low_asterisk:=false; +math_fitting:=false; +sc.u#:=22.75/36pt#; +sc.letter_fit#:=2.2/36pt#; + +generate tipx % switch to the driver file diff --git a/Master/texmf-dist/fonts/source/public/tipa/tipx8.mf b/Master/texmf-dist/fonts/source/public/tipa/tipx8.mf new file mode 100644 index 00000000000..bc97c5ebc62 --- /dev/null +++ b/Master/texmf-dist/fonts/source/public/tipa/tipx8.mf @@ -0,0 +1,92 @@ +% tipx8.mf: TIPX Roman 8 point parameter file +% Copyright 1996-2003 FUKUI Rei +% +% This program may be distributed and/or modified under the +% conditions of the LaTeX Project Public License, either version 1.2 +% of this license or (at your option) any later version. +% The latest version of this license is in +% http://www.latex-project.org/lppl.txt +% and version 1.2 or later is part of all distributions of LaTeX +% version 1999/12/01 or later. +% +% This program consists of all files listed in Manifest.txt. +% +% Version 1.2 2003/01/01 FUKUI Rei +% +% This file is based on: +% Computer Modern font series by D. E. Knuth and +% TSIPA by KOBAYASHI Hajime, FUKUI Rei and SHIRAKAWA Shun. + +if unknown cmbase: input cmbase fi +if unknown tipabase: input tipabase fi + +font_identifier:="TIPX"; font_size 8pt#; + +Times_Compat:=false; +if Times_Compat: input tipatr fi + +u#:=17/36pt#; +width_adj#:=0pt#; +serif_fit#:=0pt#; +cap_serif_fit#:=4.1/36pt#; +letter_fit#:=0pt#; +body_height#:=216/36pt#; +asc_height#:=200/36pt#; +cap_height#:=196.8/36pt#; +fig_height#:=185.6/36pt#; +x_height#:=124/36pt#; +math_axis#:=72/36pt#; +bar_height#:=69.6/36pt#; +comma_depth#:=56/36pt#; +desc_depth#:=56/36pt#; +crisp#:=0pt#; +tiny#:=8/36pt#; +fine#:=7/36pt#; +thin_join#:=7/36pt#; +hair#:=9/36pt#; +stem#:=22/36pt#; +curve#:=25.5/36pt#; +ess#:=23/36pt#; +flare#:=27/36pt#; +dot_size#:=32/36pt#; +cap_hair#:=9.5/36pt#; +cap_stem#:=26.5/36pt#; +cap_curve#:=30/36pt#; +cap_ess#:=27/36pt#; +rule_thickness#:=.36pt#; +dish#:=1/36pt#; +bracket#:=16/36pt#; +jut#:=22/36pt#; +cap_jut#:=29/36pt#; +beak_jut#:=8.4/36pt#; +beak#:=56/36pt#; +vair#:=8/36pt#; +notch_cut#:=8pt#; +bar#:=9.5/36pt#; +slab#:=9.5/36pt#; +cap_bar#:=9.5/36pt#; +cap_band#:=9.5/36pt#; +cap_notch_cut#:=8pt#; +serif_drop#:=3.2/36pt#; +stem_corr#:=1/36pt#; +vair_corr#:=1/36pt#; +apex_corr#:=0pt#; +o#:=6/36pt#; +apex_o#:=6/36pt#; +slant:=0; +fudge:=1; +math_spread:=.4; +superness:=1/sqrt2; +superpull:=1/6; +beak_darkness:=11/30; +ligs:=2; +square_dots:=false; +hefty:=false; +serifs:=true; +monospace:=false; +low_asterisk:=false; +math_fitting:=false; +sc.u#:=12/36pt#; +sc.letter_fit#:=2.4/36pt#; + +generate tipx % switch to the driver file diff --git a/Master/texmf-dist/fonts/source/public/tipa/tipx9.mf b/Master/texmf-dist/fonts/source/public/tipa/tipx9.mf new file mode 100644 index 00000000000..a2edadb1cde --- /dev/null +++ b/Master/texmf-dist/fonts/source/public/tipa/tipx9.mf @@ -0,0 +1,92 @@ +% tipx9.mf: TIPX Roman 9 point parameter file +% Copyright 1996-2003 FUKUI Rei +% +% This program may be distributed and/or modified under the +% conditions of the LaTeX Project Public License, either version 1.2 +% of this license or (at your option) any later version. +% The latest version of this license is in +% http://www.latex-project.org/lppl.txt +% and version 1.2 or later is part of all distributions of LaTeX +% version 1999/12/01 or later. +% +% This program consists of all files listed in Manifest.txt. +% +% Version 1.2 2003/01/01 FUKUI Rei +% +% This file is based on: +% Computer Modern font series by D. E. Knuth and +% TSIPA by KOBAYASHI Hajime, FUKUI Rei and SHIRAKAWA Shun. + +if unknown cmbase: input cmbase fi +if unknown tipabase: input tipabase fi + +font_identifier:="TIPX"; font_size 9pt#; + +Times_Compat:=false; +if Times_Compat: input tipatr fi + +u#:=18.5/36pt#; +width_adj#:=0pt#; +serif_fit#:=0pt#; +cap_serif_fit#:=4.6/36pt#; +letter_fit#:=0pt#; +body_height#:=243/36pt#; +asc_height#:=225/36pt#; +cap_height#:=221.4/36pt#; +fig_height#:=208.8/36pt#; +x_height#:=139.5/36pt#; +math_axis#:=81/36pt#; +bar_height#:=78.3/36pt#; +comma_depth#:=63/36pt#; +desc_depth#:=63/36pt#; +crisp#:=0pt#; +tiny#:=8/36pt#; +fine#:=7/36pt#; +thin_join#:=7/36pt#; +hair#:=9/36pt#; +stem#:=24/36pt#; +curve#:=28/36pt#; +ess#:=25/36pt#; +flare#:=30/36pt#; +dot_size#:=35/36pt#; +cap_hair#:=10/36pt#; +cap_stem#:=29/36pt#; +cap_curve#:=33/36pt#; +cap_ess#:=31/36pt#; +rule_thickness#:=.38pt#; +dish#:=1/36pt#; +bracket#:=18/36pt#; +jut#:=25/36pt#; +cap_jut#:=33/36pt#; +beak_jut#:=9.2/36pt#; +beak#:=63/36pt#; +vair#:=8/36pt#; +notch_cut#:=9pt#; +bar#:=10/36pt#; +slab#:=10/36pt#; +cap_bar#:=10/36pt#; +cap_band#:=10/36pt#; +cap_notch_cut#:=9pt#; +serif_drop#:=3.6/36pt#; +stem_corr#:=1/36pt#; +vair_corr#:=1/36pt#; +apex_corr#:=0pt#; +o#:=7/36pt#; +apex_o#:=7/36pt#; +slant:=0; +fudge:=1; +math_spread:=.2; +superness:=1/sqrt2; +superpull:=1/6; +beak_darkness:=11/30; +ligs:=2; +square_dots:=false; +hefty:=false; +serifs:=true; +monospace:=false; +low_asterisk:=false; +math_fitting:=false; +sc.u#:=12.95/36pt#; +sc.letter_fit#:=2.4/36pt#; + +generate tipx % switch to the driver file diff --git a/Master/texmf-dist/fonts/source/public/tipa/tipxb10.mf b/Master/texmf-dist/fonts/source/public/tipa/tipxb10.mf new file mode 100644 index 00000000000..b7bf56b4757 --- /dev/null +++ b/Master/texmf-dist/fonts/source/public/tipa/tipxb10.mf @@ -0,0 +1,92 @@ +% tipxb10.mf: TIPX Bold Roman 10 point parameter file +% Copyright 1996-2003 FUKUI Rei +% +% This program may be distributed and/or modified under the +% conditions of the LaTeX Project Public License, either version 1.2 +% of this license or (at your option) any later version. +% The latest version of this license is in +% http://www.latex-project.org/lppl.txt +% and version 1.2 or later is part of all distributions of LaTeX +% version 1999/12/01 or later. +% +% This program consists of all files listed in Manifest.txt. +% +% Version 1.2 2003/01/01 FUKUI Rei +% +% This file is based on: +% Computer Modern font series by D. E. Knuth and +% TSIPA by KOBAYASHI Hajime, FUKUI Rei and SHIRAKAWA Shun. + +if unknown cmbase: input cmbase fi +if unknown tipabase: input tipabase fi + +font_identifier:="TIPXB"; font_size 10pt#; + +Times_Compat:=false; +if Times_Compat: input tipatr fi + +u#:=20/36pt#; +width_adj#:=10/36pt#; +serif_fit#:=0pt#; +cap_serif_fit#:=6/36pt#; +letter_fit#:=0pt#; +body_height#:=270/36pt#; +asc_height#:=250/36pt#; +cap_height#:=247/36pt#; +fig_height#:=232/36pt#; +x_height#:=160/36pt#; +math_axis#:=90/36pt#; +bar_height#:=85/36pt#; +comma_depth#:=70/36pt#; +desc_depth#:=70/36pt#; +crisp#:=0pt#; +tiny#:=13/36pt#; +fine#:=10/36pt#; +thin_join#:=10/36pt#; +hair#:=17/36pt#; +stem#:=41/36pt#; +curve#:=46/36pt#; +ess#:=38/36pt#; +flare#:=45/36pt#; +dot_size#:=56/36pt#; +cap_hair#:=19/36pt#; +cap_stem#:=51/36pt#; +cap_curve#:=55/36pt#; +cap_ess#:=53/36pt#; +rule_thickness#:=.6pt#; +dish#:=1/36pt#; +bracket#:=10/36pt#; +jut#:=25/36pt#; +cap_jut#:=34/36pt#; +beak_jut#:=11/36pt#; +beak#:=70/36pt#; +vair#:=13/36pt#; +notch_cut#:=10pt#; +bar#:=17/36pt#; +slab#:=17/36pt#; +cap_bar#:=17/36pt#; +cap_band#:=17/36pt#; +cap_notch_cut#:=10pt#; +serif_drop#:=3/36pt#; +stem_corr#:=2/36pt#; +vair_corr#:=1.5/36pt#; +apex_corr#:=0pt#; +o#:=4/36pt#; +apex_o#:=3/36pt#; +slant:=0; +fudge:=1; +math_spread:=.5; +superness:=8/11; +superpull:=1/8; +beak_darkness:=.4; +ligs:=2; +square_dots:=false; +hefty:=false; +serifs:=true; +monospace:=false; +low_asterisk:=false; +math_fitting:=false; +sc.u#:=14/36pt#; +sc.letter_fit#:=2.4/36pt#; + +generate tipx % switch to the driver file diff --git a/Master/texmf-dist/fonts/source/public/tipa/tipxbs10.mf b/Master/texmf-dist/fonts/source/public/tipa/tipxbs10.mf new file mode 100644 index 00000000000..7d551a2dda5 --- /dev/null +++ b/Master/texmf-dist/fonts/source/public/tipa/tipxbs10.mf @@ -0,0 +1,92 @@ +% tipxbs10.mf: TIPX Bold Extended Slanted Roman 10 point parameter file +% Copyright 1996-2003 FUKUI Rei +% +% This program may be distributed and/or modified under the +% conditions of the LaTeX Project Public License, either version 1.2 +% of this license or (at your option) any later version. +% The latest version of this license is in +% http://www.latex-project.org/lppl.txt +% and version 1.2 or later is part of all distributions of LaTeX +% version 1999/12/01 or later. +% +% This program consists of all files listed in Manifest.txt. +% +% Version 1.2 2003/01/01 FUKUI Rei +% +% This file is based on: +% Computer Modern font series by D. E. Knuth and +% TSIPA by KOBAYASHI Hajime, FUKUI Rei and SHIRAKAWA Shun. + +if unknown cmbase: input cmbase fi +if unknown tipabase: input tipabase fi + +font_identifier:="TIPXBS"; font_size 10pt#; + +Times_Compat:=false; +if Times_Compat: input tipatr fi + +u#:=23/36pt#; +width_adj#:=11/36pt#; +serif_fit#:=0pt#; +cap_serif_fit#:=7/36pt#; +letter_fit#:=0pt#; +body_height#:=270/36pt#; +asc_height#:=250/36pt#; +cap_height#:=247/36pt#; +fig_height#:=232/36pt#; +x_height#:=160/36pt#; +math_axis#:=90/36pt#; +bar_height#:=85/36pt#; +comma_depth#:=70/36pt#; +desc_depth#:=70/36pt#; +crisp#:=0pt#; +tiny#:=13/36pt#; +fine#:=10/36pt#; +thin_join#:=10/36pt#; +hair#:=17/36pt#; +stem#:=41/36pt#; +curve#:=46/36pt#; +ess#:=38/36pt#; +flare#:=45/36pt#; +dot_size#:=56/36pt#; +cap_hair#:=19/36pt#; +cap_stem#:=51/36pt#; +cap_curve#:=55/36pt#; +cap_ess#:=53/36pt#; +rule_thickness#:=.6pt#; +dish#:=1/36pt#; +bracket#:=10/36pt#; +jut#:=25/36pt#; +cap_jut#:=39/36pt#; +beak_jut#:=11/36pt#; +beak#:=70/36pt#; +vair#:=13/36pt#; +notch_cut#:=10pt#; +bar#:=17/36pt#; +slab#:=17/36pt#; +cap_bar#:=17/36pt#; +cap_band#:=17/36pt#; +cap_notch_cut#:=10pt#; +serif_drop#:=3/36pt#; +stem_corr#:=2/36pt#; +vair_corr#:=1.5/36pt#; +apex_corr#:=0pt#; +o#:=4/36pt#; +apex_o#:=3/36pt#; +slant:=1/6; +fudge:=1; +math_spread:=.5; +superness:=8/11; +superpull:=1/8; +beak_darkness:=.4; +ligs:=2; +square_dots:=false; +hefty:=false; +serifs:=true; +monospace:=false; +low_asterisk:=false; +math_fitting:=false; +sc.u#:=18/36pt#; +sc.letter_fit#:=2.4/36pt#; + +generate tipx % switch to the driver file diff --git a/Master/texmf-dist/fonts/source/public/tipa/tipxbx10.mf b/Master/texmf-dist/fonts/source/public/tipa/tipxbx10.mf new file mode 100644 index 00000000000..2808f0ee742 --- /dev/null +++ b/Master/texmf-dist/fonts/source/public/tipa/tipxbx10.mf @@ -0,0 +1,92 @@ +% tipxbx10.mf: TIPX Bold Extended Roman 10 point parameter file +% Copyright 1996-2003 FUKUI Rei +% +% This program may be distributed and/or modified under the +% conditions of the LaTeX Project Public License, either version 1.2 +% of this license or (at your option) any later version. +% The latest version of this license is in +% http://www.latex-project.org/lppl.txt +% and version 1.2 or later is part of all distributions of LaTeX +% version 1999/12/01 or later. +% +% This program consists of all files listed in Manifest.txt. +% +% Version 1.2 2003/01/01 FUKUI Rei +% +% This file is based on: +% Computer Modern font series by D. E. Knuth and +% TSIPA by KOBAYASHI Hajime, FUKUI Rei and SHIRAKAWA Shun. + +if unknown cmbase: input cmbase fi +if unknown tipabase: input tipabase fi + +font_identifier:="TIPXBX"; font_size 10pt#; + +Times_Compat:=false; +if Times_Compat: input tipatr fi + +u#:=23/36pt#; +width_adj#:=11/36pt#; +serif_fit#:=0pt#; +cap_serif_fit#:=7/36pt#; +letter_fit#:=0pt#; +body_height#:=270/36pt#; +asc_height#:=250/36pt#; +cap_height#:=247/36pt#; +fig_height#:=232/36pt#; +x_height#:=160/36pt#; +math_axis#:=90/36pt#; +bar_height#:=85/36pt#; +comma_depth#:=70/36pt#; +desc_depth#:=70/36pt#; +crisp#:=0pt#; +tiny#:=13/36pt#; +fine#:=10/36pt#; +thin_join#:=10/36pt#; +hair#:=17/36pt#; +stem#:=41/36pt#; +curve#:=46/36pt#; +ess#:=38/36pt#; +flare#:=45/36pt#; +dot_size#:=56/36pt#; +cap_hair#:=19/36pt#; +cap_stem#:=51/36pt#; +cap_curve#:=55/36pt#; +cap_ess#:=53/36pt#; +rule_thickness#:=.6pt#; +dish#:=1/36pt#; +bracket#:=10/36pt#; +jut#:=25/36pt#; +cap_jut#:=39/36pt#; +beak_jut#:=11/36pt#; +beak#:=70/36pt#; +vair#:=13/36pt#; +notch_cut#:=10pt#; +bar#:=17/36pt#; +slab#:=17/36pt#; +cap_bar#:=17/36pt#; +cap_band#:=17/36pt#; +cap_notch_cut#:=10pt#; +serif_drop#:=3/36pt#; +stem_corr#:=2/36pt#; +vair_corr#:=1.5/36pt#; +apex_corr#:=0pt#; +o#:=4/36pt#; +apex_o#:=3/36pt#; +slant:=0; +fudge:=1; +math_spread:=.5; +superness:=8/11; +superpull:=1/8; +beak_darkness:=.4; +ligs:=2; +square_dots:=false; +hefty:=false; +serifs:=true; +monospace:=false; +low_asterisk:=false; +math_fitting:=false; +sc.u#:=18/36pt#; +sc.letter_fit#:=2.4/36pt#; + +generate tipx % switch to the driver file diff --git a/Master/texmf-dist/fonts/source/public/tipa/tipxbx12.mf b/Master/texmf-dist/fonts/source/public/tipa/tipxbx12.mf new file mode 100644 index 00000000000..ed767f2b115 --- /dev/null +++ b/Master/texmf-dist/fonts/source/public/tipa/tipxbx12.mf @@ -0,0 +1,92 @@ +% tipxbx12.mf: TIPX Bold Extended Roman 12 point parameter file +% Copyright 1996-2003 FUKUI Rei +% +% This program may be distributed and/or modified under the +% conditions of the LaTeX Project Public License, either version 1.2 +% of this license or (at your option) any later version. +% The latest version of this license is in +% http://www.latex-project.org/lppl.txt +% and version 1.2 or later is part of all distributions of LaTeX +% version 1999/12/01 or later. +% +% This program consists of all files listed in Manifest.txt. +% +% Version 1.2 2003/01/01 FUKUI Rei +% +% This file is based on: +% Computer Modern font series by D. E. Knuth and +% TSIPA by KOBAYASHI Hajime, FUKUI Rei and SHIRAKAWA Shun. + +if unknown cmbase: input cmbase fi +if unknown tipabase: input tipabase fi + +font_identifier:="TIPXBX"; font_size 12pt#; + +Times_Compat:=false; +if Times_Compat: input tipatr fi + +u#:=27/36pt#; +width_adj#:=13/36pt#; +serif_fit#:=0pt#; +cap_serif_fit#:=8/36pt#; +letter_fit#:=0pt#; +body_height#:=324/36pt#; +asc_height#:=300/36pt#; +cap_height#:=296.4/36pt#; +fig_height#:=278.4/36pt#; +x_height#:=192/36pt#; +math_axis#:=108/36pt#; +bar_height#:=102/36pt#; +comma_depth#:=84/36pt#; +desc_depth#:=84/36pt#; +crisp#:=0pt#; +tiny#:=13/36pt#; +fine#:=10/36pt#; +thin_join#:=10.5/36pt#; +hair#:=18.3/36pt#; +stem#:=47/36pt#; +curve#:=52/36pt#; +ess#:=44/36pt#; +flare#:=51/36pt#; +dot_size#:=62/36pt#; +cap_hair#:=20/36pt#; +cap_stem#:=57/36pt#; +cap_curve#:=61/36pt#; +cap_ess#:=59/36pt#; +rule_thickness#:=.66pt#; +dish#:=1/36pt#; +bracket#:=12/36pt#; +jut#:=30/36pt#; +cap_jut#:=46/36pt#; +beak_jut#:=12.4/36pt#; +beak#:=84/36pt#; +vair#:=14.3/36pt#; +notch_cut#:=12pt#; +bar#:=18.5/36pt#; +slab#:=18.5/36pt#; +cap_bar#:=18.5/36pt#; +cap_band#:=18.5/36pt#; +cap_notch_cut#:=12pt#; +serif_drop#:=3.6/36pt#; +stem_corr#:=2/36pt#; +vair_corr#:=1.5/36pt#; +apex_corr#:=0pt#; +o#:=5/36pt#; +apex_o#:=4/36pt#; +slant:=0; +fudge:=1; +math_spread:=.4; +superness:=8/11; +superpull:=1/8; +beak_darkness:=.4; +ligs:=2; +square_dots:=false; +hefty:=false; +serifs:=true; +monospace:=false; +low_asterisk:=false; +math_fitting:=false; +sc.u#:=21.13/36pt#; +sc.letter_fit#:=2.4/36pt#; + +generate tipx % switch to the driver file diff --git a/Master/texmf-dist/fonts/source/public/tipa/tipxbx8.mf b/Master/texmf-dist/fonts/source/public/tipa/tipxbx8.mf new file mode 100644 index 00000000000..b638b6f168a --- /dev/null +++ b/Master/texmf-dist/fonts/source/public/tipa/tipxbx8.mf @@ -0,0 +1,92 @@ +% tipxbx8.mf: TIPX Bold Extended Roman 8 point parameter file +% Copyright 1996-2003 FUKUI Rei +% +% This program may be distributed and/or modified under the +% conditions of the LaTeX Project Public License, either version 1.2 +% of this license or (at your option) any later version. +% The latest version of this license is in +% http://www.latex-project.org/lppl.txt +% and version 1.2 or later is part of all distributions of LaTeX +% version 1999/12/01 or later. +% +% This program consists of all files listed in Manifest.txt. +% +% Version 1.2 2003/01/01 FUKUI Rei +% +% This file is based on: +% Computer Modern font series by D. E. Knuth and +% TSIPA by KOBAYASHI Hajime, FUKUI Rei and SHIRAKAWA Shun. + +if unknown cmbase: input cmbase fi +if unknown tipabase: input tipabase fi + +font_identifier:="TIPXBX"; font_size 8pt#; + +Times_Compat:=false; +if Times_Compat: input tipatr fi + +u#:=19.6/36pt#; +width_adj#:=9.4/36pt#; +serif_fit#:=0pt#; +cap_serif_fit#:=5.4/36pt#; +letter_fit#:=0pt#; +body_height#:=216/36pt#; +asc_height#:=200/36pt#; +cap_height#:=197.6/36pt#; +fig_height#:=185.6/36pt#; +x_height#:=128/36pt#; +math_axis#:=72/36pt#; +bar_height#:=67/36pt#; +comma_depth#:=56/36pt#; +desc_depth#:=56/36pt#; +crisp#:=0pt#; +tiny#:=12/36pt#; +fine#:=10/36pt#; +thin_join#:=10/36pt#; +hair#:=16.2/36pt#; +stem#:=35/36pt#; +curve#:=39/36pt#; +ess#:=32/36pt#; +flare#:=39/36pt#; +dot_size#:=46/36pt#; +cap_hair#:=19/36pt#; +cap_stem#:=43/36pt#; +cap_curve#:=46/36pt#; +cap_ess#:=43/36pt#; +rule_thickness#:=.54pt#; +dish#:=1/36pt#; +bracket#:=8/36pt#; +jut#:=19/36pt#; +cap_jut#:=31/36pt#; +beak_jut#:=9.4/36pt#; +beak#:=55/36pt#; +vair#:=12/36pt#; +notch_cut#:=8pt#; +bar#:=15/36pt#; +slab#:=15/36pt#; +cap_bar#:=15/36pt#; +cap_band#:=15/36pt#; +cap_notch_cut#:=8pt#; +serif_drop#:=2.4/36pt#; +stem_corr#:=1.8/36pt#; +vair_corr#:=1.3/36pt#; +apex_corr#:=0pt#; +o#:=4/36pt#; +apex_o#:=3/36pt#; +slant:=0; +fudge:=1; +math_spread:=.9; +superness:=8/11; +superpull:=1/8; +beak_darkness:=.4; +ligs:=2; +square_dots:=false; +hefty:=false; +serifs:=true; +monospace:=false; +low_asterisk:=false; +math_fitting:=false; +sc.u#:=15.34/36pt#; +sc.letter_fit#:=2.4/36pt#; + +generate tipx % switch to the driver file diff --git a/Master/texmf-dist/fonts/source/public/tipa/tipxbx9.mf b/Master/texmf-dist/fonts/source/public/tipa/tipxbx9.mf new file mode 100644 index 00000000000..e8ab6c8a6ef --- /dev/null +++ b/Master/texmf-dist/fonts/source/public/tipa/tipxbx9.mf @@ -0,0 +1,92 @@ +% tipxbx9.mf: TIPX Bold Extended Roman 9 point parameter file +% Copyright 1996-2003 FUKUI Rei +% +% This program may be distributed and/or modified under the +% conditions of the LaTeX Project Public License, either version 1.2 +% of this license or (at your option) any later version. +% The latest version of this license is in +% http://www.latex-project.org/lppl.txt +% and version 1.2 or later is part of all distributions of LaTeX +% version 1999/12/01 or later. +% +% This program consists of all files listed in Manifest.txt. +% +% Version 1.2 2003/01/01 FUKUI Rei +% +% This file is based on: +% Computer Modern font series by D. E. Knuth and +% TSIPA by KOBAYASHI Hajime, FUKUI Rei and SHIRAKAWA Shun. + +if unknown cmbase: input cmbase fi +if unknown tipabase: input tipabase fi + +font_identifier:="TIPXBX"; font_size 9pt#; + +Times_Compat:=false; +if Times_Compat: input tipatr fi + +u#:=21.3/36pt#; +width_adj#:=10.2/36pt#; +serif_fit#:=0pt#; +cap_serif_fit#:=6.2/36pt#; +letter_fit#:=0pt#; +body_height#:=243/36pt#; +asc_height#:=225/36pt#; +cap_height#:=222.3/36pt#; +fig_height#:=208.8/36pt#; +x_height#:=144/36pt#; +math_axis#:=81/36pt#; +bar_height#:=76/36pt#; +comma_depth#:=63/36pt#; +desc_depth#:=63/36pt#; +crisp#:=0pt#; +tiny#:=13/36pt#; +fine#:=10/36pt#; +thin_join#:=10/36pt#; +hair#:=16.6/36pt#; +stem#:=38/36pt#; +curve#:=43/36pt#; +ess#:=35/36pt#; +flare#:=42/36pt#; +dot_size#:=51/36pt#; +cap_hair#:=19/36pt#; +cap_stem#:=47/36pt#; +cap_curve#:=51/36pt#; +cap_ess#:=48/36pt#; +rule_thickness#:=.57pt#; +dish#:=1/36pt#; +bracket#:=9/36pt#; +jut#:=22/36pt#; +cap_jut#:=35/36pt#; +beak_jut#:=10.2/36pt#; +beak#:=63/36pt#; +vair#:=12.5/36pt#; +notch_cut#:=9pt#; +bar#:=16/36pt#; +slab#:=16/36pt#; +cap_bar#:=16/36pt#; +cap_band#:=16/36pt#; +cap_notch_cut#:=9pt#; +serif_drop#:=2.7/36pt#; +stem_corr#:=1.9/36pt#; +vair_corr#:=1.4/36pt#; +apex_corr#:=0pt#; +o#:=4/36pt#; +apex_o#:=3/36pt#; +slant:=0; +fudge:=1; +math_spread:=.7; +superness:=8/11; +superpull:=1/8; +beak_darkness:=.4; +ligs:=2; +square_dots:=false; +hefty:=false; +serifs:=true; +monospace:=false; +low_asterisk:=false; +math_fitting:=false; +sc.u#:=16.67/36pt#; +sc.letter_fit#:=2.4/36pt#; + +generate tipx % switch to the driver file diff --git a/Master/texmf-dist/fonts/source/public/tipa/tipxsb10.mf b/Master/texmf-dist/fonts/source/public/tipa/tipxsb10.mf new file mode 100644 index 00000000000..02025d75b4a --- /dev/null +++ b/Master/texmf-dist/fonts/source/public/tipa/tipxsb10.mf @@ -0,0 +1,92 @@ +% tipxsb10.mf: TIPX Sans Serif Bold Extended 10 point parameter file +% Copyright 1996-2003 FUKUI Rei +% +% This program may be distributed and/or modified under the +% conditions of the LaTeX Project Public License, either version 1.2 +% of this license or (at your option) any later version. +% The latest version of this license is in +% http://www.latex-project.org/lppl.txt +% and version 1.2 or later is part of all distributions of LaTeX +% version 1999/12/01 or later. +% +% This program consists of all files listed in Manifest.txt. +% +% Version 1.2 2003/01/01 FUKUI Rei +% +% This file is based on: +% Computer Modern font series by D. E. Knuth and +% TSIPA by KOBAYASHI Hajime, FUKUI Rei and SHIRAKAWA Shun. + +if unknown cmbase: input cmbase fi +if unknown tipabase: input tipabase fi + +font_identifier:="TIPXSB"; font_size 10pt#; + +Times_Compat:=false; +if Times_Compat: input tipatr fi + +u#:=22/36pt#; +width_adj#:=22/36pt#; +serif_fit#:=-9/36pt#; +cap_serif_fit#:=-11/36pt#; +letter_fit#:=0pt#; +body_height#:=270/36pt#; +asc_height#:=250/36pt#; +cap_height#:=250/36pt#; +fig_height#:=250/36pt#; +x_height#:=165/36pt#; +math_axis#:=90/36pt#; +bar_height#:=90/36pt#; +comma_depth#:=38/36pt#; +desc_depth#:=70/36pt#; +crisp#:=26/36pt#; +tiny#:=26/36pt#; +fine#:=9/36pt#; +thin_join#:=9/36pt#; +hair#:=49/36pt#; +stem#:=49/36pt#; +curve#:=49/36pt#; +ess#:=43/36pt#; +flare#:=40/36pt#; +dot_size#:=47/36pt#; +cap_hair#:=49/36pt#; +cap_stem#:=53/36pt#; +cap_curve#:=53/36pt#; +cap_ess#:=51/36pt#; +rule_thickness#:=30/36pt#; +dish#:=0pt#; +bracket#:=0pt#; +jut#:=0pt#; +cap_jut#:=0pt#; +beak_jut#:=0pt#; +beak#:=1.5/36pt#; +vair#:=26/36pt#; +notch_cut#:=49/36pt#; +bar#:=26/36pt#; +slab#:=36/36pt#; +cap_bar#:=34/36pt#; +cap_band#:=31/36pt#; +cap_notch_cut#:=45/36pt#; +serif_drop#:=2/36pt#; +stem_corr#:=1/36pt#; +vair_corr#:=2/36pt#; +apex_corr#:=18/36pt#; +o#:=8/36pt#; +apex_o#:=0pt#; +slant:=0; +fudge:=.88; +math_spread:=.5; +superness:=3/4; +superpull:=1/18; +beak_darkness:=0; +ligs:=2; +square_dots:=true; +hefty:=true; +serifs:=false; +monospace:=false; +low_asterisk:=false; +math_fitting:=false; +sc.u#:=17.21/36pt#; +sc.letter_fit#:=2.4/36pt#; + +generate tipx % switch to the driver file diff --git a/Master/texmf-dist/fonts/source/public/tipa/tipxsi10.mf b/Master/texmf-dist/fonts/source/public/tipa/tipxsi10.mf new file mode 100644 index 00000000000..c9b1490bf0f --- /dev/null +++ b/Master/texmf-dist/fonts/source/public/tipa/tipxsi10.mf @@ -0,0 +1,92 @@ +% tipxsi10.mf: TIPX Sans Serif Slanted 10 point parameter file +% Copyright 1996-2003 FUKUI Rei +% +% This program may be distributed and/or modified under the +% conditions of the LaTeX Project Public License, either version 1.2 +% of this license or (at your option) any later version. +% The latest version of this license is in +% http://www.latex-project.org/lppl.txt +% and version 1.2 or later is part of all distributions of LaTeX +% version 1999/12/01 or later. +% +% This program consists of all files listed in Manifest.txt. +% +% Version 1.2 2003/01/01 FUKUI Rei +% +% This file is based on: +% Computer Modern font series by D. E. Knuth and +% TSIPA by KOBAYASHI Hajime, FUKUI Rei and SHIRAKAWA Shun. + +if unknown cmbase: input cmbase fi +if unknown tipabase: input tipabase fi + +font_identifier:="TIPXSI"; font_size 10pt#; + +Times_Compat:=false; +if Times_Compat: input tipatr fi + +u#:=20/36pt#; +width_adj#:=15/36pt#; +serif_fit#:=-7/36pt#; +cap_serif_fit#:=-10/36pt#; +letter_fit#:=0pt#; +body_height#:=270/36pt#; +asc_height#:=250/36pt#; +cap_height#:=250/36pt#; +fig_height#:=236/36pt#; +x_height#:=160/36pt#; +math_axis#:=90/36pt#; +bar_height#:=79/36pt#; +comma_depth#:=45/36pt#; +desc_depth#:=70/36pt#; +crisp#:=0pt#; +tiny#:=0pt#; +fine#:=0pt#; +thin_join#:=17/36pt#; +hair#:=28/36pt#; +stem#:=28/36pt#; +curve#:=28/36pt#; +ess#:=28/36pt#; +flare#:=25/36pt#; +dot_size#:=30/36pt#; +cap_hair#:=28/36pt#; +cap_stem#:=32/36pt#; +cap_curve#:=32/36pt#; +cap_ess#:=32/36pt#; +rule_thickness#:=.4pt#; +dish#:=0pt#; +bracket#:=0pt#; +jut#:=0pt#; +cap_jut#:=0pt#; +beak_jut#:=0pt#; +beak#:=.5/36pt#; +vair#:=22/36pt#; +notch_cut#:=18/36pt#; +bar#:=21/36pt#; +slab#:=23/36pt#; +cap_bar#:=22/36pt#; +cap_band#:=20/36pt#; +cap_notch_cut#:=25/36pt#; +serif_drop#:=2/36pt#; +stem_corr#:=1/36pt#; +vair_corr#:=1/36pt#; +apex_corr#:=5/36pt#; +o#:=8/36pt#; +apex_o#:=0pt#; +slant:=sind 12/cosd 12; +fudge:=.96; +math_spread:=0; +superness:=1/sqrt2; +superpull:=1/20; +beak_darkness:=0; +ligs:=2; +square_dots:=true; +hefty:=true; +serifs:=false; +monospace:=false; +low_asterisk:=false; +math_fitting:=false; +sc.u#:=14/36pt#; +sc.letter_fit#:=2.4/36pt#; + +generate tipx % switch to the driver file diff --git a/Master/texmf-dist/fonts/source/public/tipa/tipxsl10.mf b/Master/texmf-dist/fonts/source/public/tipa/tipxsl10.mf new file mode 100644 index 00000000000..b701afc711f --- /dev/null +++ b/Master/texmf-dist/fonts/source/public/tipa/tipxsl10.mf @@ -0,0 +1,92 @@ +% tipxsl10.mf: TIPX Slanted Roman 10 point parameter file +% Copyright 1996-2003 FUKUI Rei +% +% This program may be distributed and/or modified under the +% conditions of the LaTeX Project Public License, either version 1.2 +% of this license or (at your option) any later version. +% The latest version of this license is in +% http://www.latex-project.org/lppl.txt +% and version 1.2 or later is part of all distributions of LaTeX +% version 1999/12/01 or later. +% +% This program consists of all files listed in Manifest.txt. +% +% Version 1.2 2003/01/01 FUKUI Rei +% +% This file is based on: +% Computer Modern font series by D. E. Knuth and +% TSIPA by KOBAYASHI Hajime, FUKUI Rei and SHIRAKAWA Shun. + +if unknown cmbase: input cmbase fi +if unknown tipabase: input tipabase fi + +font_identifier:="TIPXSL"; font_size 10pt#; + +Times_Compat:=false; +if Times_Compat: input tipatr fi + +u#:=20/36pt#; +width_adj#:=0pt#; +serif_fit#:=0pt#; +cap_serif_fit#:=5/36pt#; +letter_fit#:=0pt#; +body_height#:=270/36pt#; +asc_height#:=250/36pt#; +cap_height#:=246/36pt#; +fig_height#:=232/36pt#; +x_height#:=155/36pt#; +math_axis#:=90/36pt#; +bar_height#:=87/36pt#; +comma_depth#:=70/36pt#; +desc_depth#:=70/36pt#; +crisp#:=0pt#; +tiny#:=8/36pt#; +fine#:=7/36pt#; +thin_join#:=7/36pt#; +hair#:=9/36pt#; +stem#:=25/36pt#; +curve#:=30/36pt#; +ess#:=27/36pt#; +flare#:=33/36pt#; +dot_size#:=38/36pt#; +cap_hair#:=11/36pt#; +cap_stem#:=32/36pt#; +cap_curve#:=37/36pt#; +cap_ess#:=35/36pt#; +rule_thickness#:=.4pt#; +dish#:=1/36pt#; +bracket#:=20/36pt#; +jut#:=28/36pt#; +cap_jut#:=37/36pt#; +beak_jut#:=10/36pt#; +beak#:=70/36pt#; +vair#:=8/36pt#; +notch_cut#:=10pt#; +bar#:=11/36pt#; +slab#:=11/36pt#; +cap_bar#:=11/36pt#; +cap_band#:=11/36pt#; +cap_notch_cut#:=10pt#; +serif_drop#:=4/36pt#; +stem_corr#:=1/36pt#; +vair_corr#:=1/36pt#; +apex_corr#:=0pt#; +o#:=8/36pt#; +apex_o#:=8/36pt#; +slant:=1/6; +fudge:=1; +math_spread:=0; +superness:=1/sqrt2; +superpull:=1/6; +beak_darkness:=11/30; +ligs:=2; +square_dots:=false; +hefty:=false; +serifs:=true; +monospace:=false; +low_asterisk:=false; +math_fitting:=false; +sc.u#:=14/36pt#; +sc.letter_fit#:=2.4/36pt#; + +generate tipx % switch to the driver file diff --git a/Master/texmf-dist/fonts/source/public/tipa/tipxsl12.mf b/Master/texmf-dist/fonts/source/public/tipa/tipxsl12.mf new file mode 100644 index 00000000000..6eb11e12692 --- /dev/null +++ b/Master/texmf-dist/fonts/source/public/tipa/tipxsl12.mf @@ -0,0 +1,92 @@ +% tipxsl12.mf: TIPX Slanted Roman 12 point parameter file +% Copyright 1996-2003 FUKUI Rei +% +% This program may be distributed and/or modified under the +% conditions of the LaTeX Project Public License, either version 1.2 +% of this license or (at your option) any later version. +% The latest version of this license is in +% http://www.latex-project.org/lppl.txt +% and version 1.2 or later is part of all distributions of LaTeX +% version 1999/12/01 or later. +% +% This program consists of all files listed in Manifest.txt. +% +% Version 1.2 2003/01/01 FUKUI Rei +% +% This file is based on: +% Computer Modern font series by D. E. Knuth and +% TSIPA by KOBAYASHI Hajime, FUKUI Rei and SHIRAKAWA Shun. + +if unknown cmbase: input cmbase fi +if unknown tipabase: input tipabase fi + +font_identifier:="TIPXSL"; font_size 12pt#; + +Times_Compat:=false; +if Times_Compat: input tipatr fi + +u#:=23.5/36pt#; +width_adj#:=0pt#; +serif_fit#:=0pt#; +cap_serif_fit#:=5.8/36pt#; +letter_fit#:=0pt#; +body_height#:=324/36pt#; +asc_height#:=300/36pt#; +cap_height#:=295.2/36pt#; +fig_height#:=278.4/36pt#; +x_height#:=186/36pt#; +math_axis#:=108/36pt#; +bar_height#:=104.4/36pt#; +comma_depth#:=84/36pt#; +desc_depth#:=84/36pt#; +crisp#:=0pt#; +tiny#:=8/36pt#; +fine#:=7/36pt#; +thin_join#:=7.5/36pt#; +hair#:=9.5/36pt#; +stem#:=28/36pt#; +curve#:=33/36pt#; +ess#:=30/36pt#; +flare#:=36/36pt#; +dot_size#:=42/36pt#; +cap_hair#:=11.5/36pt#; +cap_stem#:=35/36pt#; +cap_curve#:=40/36pt#; +cap_ess#:=38/36pt#; +rule_thickness#:=.44pt#; +dish#:=1/36pt#; +bracket#:=24/36pt#; +jut#:=33/36pt#; +cap_jut#:=41/36pt#; +beak_jut#:=11.4/36pt#; +beak#:=84/36pt#; +vair#:=8.5/36pt#; +notch_cut#:=12pt#; +bar#:=12.5/36pt#; +slab#:=12.5/36pt#; +cap_bar#:=12.5/36pt#; +cap_band#:=12.5/36pt#; +cap_notch_cut#:=12pt#; +serif_drop#:=4.8/36pt#; +stem_corr#:=1/36pt#; +vair_corr#:=1/36pt#; +apex_corr#:=0pt#; +o#:=9/36pt#; +apex_o#:=9/36pt#; +slant:=1/6; +fudge:=1; +math_spread:=-0.2; +superness:=1/sqrt2; +superpull:=1/6; +beak_darkness:=11/30; +ligs:=2; +square_dots:=false; +hefty:=false; +serifs:=true; +monospace:=false; +low_asterisk:=false; +math_fitting:=false; +sc.u#:=16.45/36pt#; +sc.letter_fit#:=2.4/36pt#; + +generate tipx % switch to the driver file diff --git a/Master/texmf-dist/fonts/source/public/tipa/tipxsl8.mf b/Master/texmf-dist/fonts/source/public/tipa/tipxsl8.mf new file mode 100644 index 00000000000..49702308056 --- /dev/null +++ b/Master/texmf-dist/fonts/source/public/tipa/tipxsl8.mf @@ -0,0 +1,92 @@ +% tipxsl8.mf: TIPX Slanted Roman 8 point parameter file +% Copyright 1996-2003 FUKUI Rei +% +% This program may be distributed and/or modified under the +% conditions of the LaTeX Project Public License, either version 1.2 +% of this license or (at your option) any later version. +% The latest version of this license is in +% http://www.latex-project.org/lppl.txt +% and version 1.2 or later is part of all distributions of LaTeX +% version 1999/12/01 or later. +% +% This program consists of all files listed in Manifest.txt. +% +% Version 1.2 2003/01/01 FUKUI Rei +% +% This file is based on: +% Computer Modern font series by D. E. Knuth and +% TSIPA by KOBAYASHI Hajime, FUKUI Rei and SHIRAKAWA Shun. + +if unknown cmbase: input cmbase fi +if unknown tipabase: input tipabase fi + +font_identifier:="TIPXSL"; font_size 8pt#; + +Times_Compat:=false; +if Times_Compat: input tipatr fi + +u#:=17/36pt#; +width_adj#:=0pt#; +serif_fit#:=0pt#; +cap_serif_fit#:=4.1/36pt#; +letter_fit#:=0pt#; +body_height#:=216/36pt#; +asc_height#:=200/36pt#; +cap_height#:=196.8/36pt#; +fig_height#:=185.6/36pt#; +x_height#:=124/36pt#; +math_axis#:=72/36pt#; +bar_height#:=69.6/36pt#; +comma_depth#:=56/36pt#; +desc_depth#:=56/36pt#; +crisp#:=0pt#; +tiny#:=8/36pt#; +fine#:=7/36pt#; +thin_join#:=7/36pt#; +hair#:=9/36pt#; +stem#:=22/36pt#; +curve#:=25.5/36pt#; +ess#:=23/36pt#; +flare#:=27/36pt#; +dot_size#:=32/36pt#; +cap_hair#:=9.5/36pt#; +cap_stem#:=26.5/36pt#; +cap_curve#:=30/36pt#; +cap_ess#:=27/36pt#; +rule_thickness#:=.36pt#; +dish#:=1/36pt#; +bracket#:=16/36pt#; +jut#:=22/36pt#; +cap_jut#:=29/36pt#; +beak_jut#:=8.4/36pt#; +beak#:=56/36pt#; +vair#:=8/36pt#; +notch_cut#:=8pt#; +bar#:=9.5/36pt#; +slab#:=9.5/36pt#; +cap_bar#:=9.5/36pt#; +cap_band#:=9.5/36pt#; +cap_notch_cut#:=8pt#; +serif_drop#:=3.2/36pt#; +stem_corr#:=1/36pt#; +vair_corr#:=1/36pt#; +apex_corr#:=0pt#; +o#:=6/36pt#; +apex_o#:=6/36pt#; +slant:=1/6; +fudge:=1; +math_spread:=.4; +superness:=1/sqrt2; +superpull:=1/6; +beak_darkness:=11/30; +ligs:=2; +square_dots:=false; +hefty:=false; +serifs:=true; +monospace:=false; +low_asterisk:=false; +math_fitting:=false; +sc.u#:=12/36pt#; +sc.letter_fit#:=2.4/36pt#; + +generate tipx % switch to the driver file diff --git a/Master/texmf-dist/fonts/source/public/tipa/tipxsl9.mf b/Master/texmf-dist/fonts/source/public/tipa/tipxsl9.mf new file mode 100644 index 00000000000..5946487ff7b --- /dev/null +++ b/Master/texmf-dist/fonts/source/public/tipa/tipxsl9.mf @@ -0,0 +1,92 @@ +% tipxsl9.mf: TIPX Slanted Roman 9 point parameter file +% Copyright 1996-2003 FUKUI Rei +% +% This program may be distributed and/or modified under the +% conditions of the LaTeX Project Public License, either version 1.2 +% of this license or (at your option) any later version. +% The latest version of this license is in +% http://www.latex-project.org/lppl.txt +% and version 1.2 or later is part of all distributions of LaTeX +% version 1999/12/01 or later. +% +% This program consists of all files listed in Manifest.txt. +% +% Version 1.2 2003/01/01 FUKUI Rei +% +% This file is based on: +% Computer Modern font series by D. E. Knuth and +% TSIPA by KOBAYASHI Hajime, FUKUI Rei and SHIRAKAWA Shun. + +if unknown cmbase: input cmbase fi +if unknown tipabase: input tipabase fi + +font_identifier:="TIPXSL"; font_size 9pt#; + +Times_Compat:=false; +if Times_Compat: input tipatr fi + +u#:=18.5/36pt#; +width_adj#:=0pt#; +serif_fit#:=0pt#; +cap_serif_fit#:=4.6/36pt#; +letter_fit#:=0pt#; +body_height#:=243/36pt#; +asc_height#:=225/36pt#; +cap_height#:=221.4/36pt#; +fig_height#:=208.8/36pt#; +x_height#:=139.5/36pt#; +math_axis#:=81/36pt#; +bar_height#:=78.3/36pt#; +comma_depth#:=63/36pt#; +desc_depth#:=63/36pt#; +crisp#:=0pt#; +tiny#:=8/36pt#; +fine#:=7/36pt#; +thin_join#:=7/36pt#; +hair#:=9/36pt#; +stem#:=24/36pt#; +curve#:=28/36pt#; +ess#:=25/36pt#; +flare#:=30/36pt#; +dot_size#:=35/36pt#; +cap_hair#:=10/36pt#; +cap_stem#:=29/36pt#; +cap_curve#:=33/36pt#; +cap_ess#:=31/36pt#; +rule_thickness#:=.38pt#; +dish#:=1/36pt#; +bracket#:=18/36pt#; +jut#:=25/36pt#; +cap_jut#:=33/36pt#; +beak_jut#:=9.2/36pt#; +beak#:=63/36pt#; +vair#:=8/36pt#; +notch_cut#:=9pt#; +bar#:=10/36pt#; +slab#:=10/36pt#; +cap_bar#:=10/36pt#; +cap_band#:=10/36pt#; +cap_notch_cut#:=9pt#; +serif_drop#:=3.6/36pt#; +stem_corr#:=1/36pt#; +vair_corr#:=1/36pt#; +apex_corr#:=0pt#; +o#:=7/36pt#; +apex_o#:=7/36pt#; +slant:=1/6; +fudge:=1; +math_spread:=.2; +superness:=1/sqrt2; +superpull:=1/6; +beak_darkness:=11/30; +ligs:=2; +square_dots:=false; +hefty:=false; +serifs:=true; +monospace:=false; +low_asterisk:=false; +math_fitting:=false; +sc.u#:=12.95/36pt#; +sc.letter_fit#:=2.4/36pt#; + +generate tipx % switch to the driver file diff --git a/Master/texmf-dist/fonts/source/public/tipa/tipxss10.mf b/Master/texmf-dist/fonts/source/public/tipa/tipxss10.mf new file mode 100644 index 00000000000..705b3e965ea --- /dev/null +++ b/Master/texmf-dist/fonts/source/public/tipa/tipxss10.mf @@ -0,0 +1,92 @@ +% tipxss10.mf: TIPX Sans Serif 10 point parameter file +% Copyright 1996-2003 FUKUI Rei +% +% This program may be distributed and/or modified under the +% conditions of the LaTeX Project Public License, either version 1.2 +% of this license or (at your option) any later version. +% The latest version of this license is in +% http://www.latex-project.org/lppl.txt +% and version 1.2 or later is part of all distributions of LaTeX +% version 1999/12/01 or later. +% +% This program consists of all files listed in Manifest.txt. +% +% Version 1.2 2003/01/01 FUKUI Rei +% +% This file is based on: +% Computer Modern font series by D. E. Knuth and +% TSIPA by KOBAYASHI Hajime, FUKUI Rei and SHIRAKAWA Shun. + +if unknown cmbase: input cmbase fi +if unknown tipabase: input tipabase fi + +font_identifier:="TIPXSS"; font_size 10pt#; + +Times_Compat:=false; +if Times_Compat: input tipatr fi + +u#:=20/36pt#; +width_adj#:=15/36pt#; +serif_fit#:=-7/36pt#; +cap_serif_fit#:=-10/36pt#; +letter_fit#:=0pt#; +body_height#:=270/36pt#; +asc_height#:=250/36pt#; +cap_height#:=250/36pt#; +fig_height#:=236/36pt#; +x_height#:=160/36pt#; +math_axis#:=90/36pt#; +bar_height#:=79/36pt#; +comma_depth#:=45/36pt#; +desc_depth#:=70/36pt#; +crisp#:=0pt#; +tiny#:=0pt#; +fine#:=0pt#; +thin_join#:=17/36pt#; +hair#:=28/36pt#; +stem#:=28/36pt#; +curve#:=28/36pt#; +ess#:=28/36pt#; +flare#:=25/36pt#; +dot_size#:=30/36pt#; +cap_hair#:=28/36pt#; +cap_stem#:=32/36pt#; +cap_curve#:=32/36pt#; +cap_ess#:=32/36pt#; +rule_thickness#:=.4pt#; +dish#:=0pt#; +bracket#:=0pt#; +jut#:=0pt#; +cap_jut#:=0pt#; +beak_jut#:=0pt#; +beak#:=.5/36pt#; +vair#:=22/36pt#; +notch_cut#:=18/36pt#; +bar#:=21/36pt#; +slab#:=23/36pt#; +cap_bar#:=22/36pt#; +cap_band#:=20/36pt#; +cap_notch_cut#:=25/36pt#; +serif_drop#:=2/36pt#; +stem_corr#:=1/36pt#; +vair_corr#:=1/36pt#; +apex_corr#:=5/36pt#; +o#:=8/36pt#; +apex_o#:=0pt#; +slant:=0; +fudge:=.96; +math_spread:=0; +superness:=1/sqrt2; +superpull:=1/20; +beak_darkness:=0; +ligs:=2; +square_dots:=true; +hefty:=true; +serifs:=false; +monospace:=false; +low_asterisk:=false; +math_fitting:=false; +sc.u#:=14/36pt#; +sc.letter_fit#:=2.4/36pt#; + +generate tipx % switch to the driver file diff --git a/Master/texmf-dist/fonts/source/public/tipa/tipxss12.mf b/Master/texmf-dist/fonts/source/public/tipa/tipxss12.mf new file mode 100644 index 00000000000..d4626c72f99 --- /dev/null +++ b/Master/texmf-dist/fonts/source/public/tipa/tipxss12.mf @@ -0,0 +1,92 @@ +% tipxss12.mf: TIPX Sans Serif 12 point parameter file +% Copyright 1996-2003 FUKUI Rei +% +% This program may be distributed and/or modified under the +% conditions of the LaTeX Project Public License, either version 1.2 +% of this license or (at your option) any later version. +% The latest version of this license is in +% http://www.latex-project.org/lppl.txt +% and version 1.2 or later is part of all distributions of LaTeX +% version 1999/12/01 or later. +% +% This program consists of all files listed in Manifest.txt. +% +% Version 1.2 2003/01/01 FUKUI Rei +% +% This file is based on: +% Computer Modern font series by D. E. Knuth and +% TSIPA by KOBAYASHI Hajime, FUKUI Rei and SHIRAKAWA Shun. + +if unknown cmbase: input cmbase fi +if unknown tipabase: input tipabase fi + +font_identifier:="TIPXSS"; font_size 12pt#; + +Times_Compat:=false; +if Times_Compat: input tipatr fi + +u#:=23.5/36pt#; +width_adj#:=17/36pt#; +serif_fit#:=-9/36pt#; +cap_serif_fit#:=-13/36pt#; +letter_fit#:=0pt#; +body_height#:=324/36pt#; +asc_height#:=300/36pt#; +cap_height#:=300/36pt#; +fig_height#:=283/36pt#; +x_height#:=192/36pt#; +math_axis#:=108/36pt#; +bar_height#:=97/36pt#; +comma_depth#:=54/36pt#; +desc_depth#:=84/36pt#; +crisp#:=0pt#; +tiny#:=0pt#; +fine#:=0pt#; +thin_join#:=20/36pt#; +hair#:=33/36pt#; +stem#:=33/36pt#; +curve#:=33/36pt#; +ess#:=33/36pt#; +flare#:=30/36pt#; +dot_size#:=35/36pt#; +cap_hair#:=33/36pt#; +cap_stem#:=37/36pt#; +cap_curve#:=37/36pt#; +cap_ess#:=37/36pt#; +rule_thickness#:=.44pt#; +dish#:=0pt#; +bracket#:=0pt#; +jut#:=0pt#; +cap_jut#:=0pt#; +beak_jut#:=0pt#; +beak#:=.6/36pt#; +vair#:=26/36pt#; +notch_cut#:=22/36pt#; +bar#:=25/36pt#; +slab#:=27/36pt#; +cap_bar#:=26/36pt#; +cap_band#:=24/36pt#; +cap_notch_cut#:=31/36pt#; +serif_drop#:=2/36pt#; +stem_corr#:=1/36pt#; +vair_corr#:=1/36pt#; +apex_corr#:=6/36pt#; +o#:=9/36pt#; +apex_o#:=0pt#; +slant:=0; +fudge:=.98; +math_spread:=-0.2; +superness:=1/sqrt2; +superpull:=1/20; +beak_darkness:=0; +ligs:=2; +square_dots:=true; +hefty:=true; +serifs:=false; +monospace:=false; +low_asterisk:=false; +math_fitting:=false; +sc.u#:=16.45/36pt#; +sc.letter_fit#:=2.4/36pt#; + +generate tipx % switch to the driver file diff --git a/Master/texmf-dist/fonts/source/public/tipa/tipxss17.mf b/Master/texmf-dist/fonts/source/public/tipa/tipxss17.mf new file mode 100644 index 00000000000..0810d664369 --- /dev/null +++ b/Master/texmf-dist/fonts/source/public/tipa/tipxss17.mf @@ -0,0 +1,92 @@ +% tipxss17.mf: TIPX Sans Serif 17.28 point parameter file +% Copyright 1996-2003 FUKUI Rei +% +% This program may be distributed and/or modified under the +% conditions of the LaTeX Project Public License, either version 1.2 +% of this license or (at your option) any later version. +% The latest version of this license is in +% http://www.latex-project.org/lppl.txt +% and version 1.2 or later is part of all distributions of LaTeX +% version 1999/12/01 or later. +% +% This program consists of all files listed in Manifest.txt. +% +% Version 1.2 2003/01/01 FUKUI Rei +% +% This file is based on: +% Computer Modern font series by D. E. Knuth and +% TSIPA by KOBAYASHI Hajime, FUKUI Rei and SHIRAKAWA Shun. + +if unknown cmbase: input cmbase fi +if unknown tipabase: input tipabase fi + +font_identifier:="TIPXSS"; font_size 17.28pt#; + +Times_Compat:=false; +if Times_Compat: input tipatr fi + +u#:=32.5/36pt#; +width_adj#:=24/36pt#; +serif_fit#:=-12/36pt#; +cap_serif_fit#:=-17/36pt#; +letter_fit#:=0pt#; +body_height#:=466/36pt#; +asc_height#:=432/36pt#; +cap_height#:=432/36pt#; +fig_height#:=408/36pt#; +x_height#:=267.8/36pt#; +math_axis#:=155.5/36pt#; +bar_height#:=136/36pt#; +comma_depth#:=78/36pt#; +desc_depth#:=121/36pt#; +crisp#:=0pt#; +tiny#:=0pt#; +fine#:=0pt#; +thin_join#:=28/36pt#; +hair#:=47/36pt#; +stem#:=47/36pt#; +curve#:=47/36pt#; +ess#:=47/36pt#; +flare#:=42/36pt#; +dot_size#:=50/36pt#; +cap_hair#:=47/36pt#; +cap_stem#:=52/36pt#; +cap_curve#:=52/36pt#; +cap_ess#:=52/36pt#; +rule_thickness#:=.6pt#; +dish#:=0pt#; +bracket#:=0pt#; +jut#:=0pt#; +cap_jut#:=0pt#; +beak_jut#:=0pt#; +beak#:=.8/36pt#; +vair#:=38/36pt#; +notch_cut#:=32/36pt#; +bar#:=36/36pt#; +slab#:=40/36pt#; +cap_bar#:=38/36pt#; +cap_band#:=35/36pt#; +cap_notch_cut#:=46/36pt#; +serif_drop#:=2/36pt#; +stem_corr#:=1/36pt#; +vair_corr#:=1/36pt#; +apex_corr#:=7/36pt#; +o#:=10/36pt#; +apex_o#:=0pt#; +slant:=0; +fudge:=1; +math_spread:=-0.4; +superness:=1/sqrt2; +superpull:=1/20; +beak_darkness:=0; +ligs:=2; +square_dots:=true; +hefty:=true; +serifs:=false; +monospace:=false; +low_asterisk:=false; +math_fitting:=false; +sc.u#:=22.75/36pt#; +sc.letter_fit#:=2.2/36pt#; + +generate tipx % switch to the driver file diff --git a/Master/texmf-dist/fonts/source/public/tipa/tipxss8.mf b/Master/texmf-dist/fonts/source/public/tipa/tipxss8.mf new file mode 100644 index 00000000000..289f97ce6ea --- /dev/null +++ b/Master/texmf-dist/fonts/source/public/tipa/tipxss8.mf @@ -0,0 +1,92 @@ +% tipxss8.mf: TIPX Sans Serif 8 point parameter file +% Copyright 1996-2003 FUKUI Rei +% +% This program may be distributed and/or modified under the +% conditions of the LaTeX Project Public License, either version 1.2 +% of this license or (at your option) any later version. +% The latest version of this license is in +% http://www.latex-project.org/lppl.txt +% and version 1.2 or later is part of all distributions of LaTeX +% version 1999/12/01 or later. +% +% This program consists of all files listed in Manifest.txt. +% +% Version 1.2 2003/01/01 FUKUI Rei +% +% This file is based on: +% Computer Modern font series by D. E. Knuth and +% TSIPA by KOBAYASHI Hajime, FUKUI Rei and SHIRAKAWA Shun. + +if unknown cmbase: input cmbase fi +if unknown tipabase: input tipabase fi + +font_identifier:="TIPXSS"; font_size 8pt#; + +Times_Compat:=false; +if Times_Compat: input tipatr fi + +u#:=17/36pt#; +width_adj#:=12/36pt#; +serif_fit#:=-6/36pt#; +cap_serif_fit#:=-8.5/36pt#; +letter_fit#:=0pt#; +body_height#:=216/36pt#; +asc_height#:=200/36pt#; +cap_height#:=200/36pt#; +fig_height#:=189/36pt#; +x_height#:=128/36pt#; +math_axis#:=72/36pt#; +bar_height#:=63/36pt#; +comma_depth#:=37/36pt#; +desc_depth#:=56/36pt#; +crisp#:=0pt#; +tiny#:=0pt#; +fine#:=0pt#; +thin_join#:=15/36pt#; +hair#:=25/36pt#; +stem#:=25/36pt#; +curve#:=25/36pt#; +ess#:=25/36pt#; +flare#:=22/36pt#; +dot_size#:=26/36pt#; +cap_hair#:=25/36pt#; +cap_stem#:=29/36pt#; +cap_curve#:=29/36pt#; +cap_ess#:=28/36pt#; +rule_thickness#:=.36pt#; +dish#:=0pt#; +bracket#:=0pt#; +jut#:=0pt#; +cap_jut#:=0pt#; +beak_jut#:=0pt#; +beak#:=.4/36pt#; +vair#:=19/36pt#; +notch_cut#:=16/36pt#; +bar#:=18/36pt#; +slab#:=20/36pt#; +cap_bar#:=19/36pt#; +cap_band#:=17/36pt#; +cap_notch_cut#:=22/36pt#; +serif_drop#:=2/36pt#; +stem_corr#:=1/36pt#; +vair_corr#:=1/36pt#; +apex_corr#:=4/36pt#; +o#:=6/36pt#; +apex_o#:=0pt#; +slant:=0; +fudge:=.93; +math_spread:=.4; +superness:=1/sqrt2; +superpull:=1/20; +beak_darkness:=0; +ligs:=2; +square_dots:=true; +hefty:=true; +serifs:=false; +monospace:=false; +low_asterisk:=false; +math_fitting:=false; +sc.u#:=12/36pt#; +sc.letter_fit#:=2.4/36pt#; + +generate tipx % switch to the driver file diff --git a/Master/texmf-dist/fonts/source/public/tipa/tipxss9.mf b/Master/texmf-dist/fonts/source/public/tipa/tipxss9.mf new file mode 100644 index 00000000000..6af7f0dcda9 --- /dev/null +++ b/Master/texmf-dist/fonts/source/public/tipa/tipxss9.mf @@ -0,0 +1,92 @@ +% tipxss9.mf: TIPX Sans Serif 9 point parameter file +% Copyright 1996-2003 FUKUI Rei +% +% This program may be distributed and/or modified under the +% conditions of the LaTeX Project Public License, either version 1.2 +% of this license or (at your option) any later version. +% The latest version of this license is in +% http://www.latex-project.org/lppl.txt +% and version 1.2 or later is part of all distributions of LaTeX +% version 1999/12/01 or later. +% +% This program consists of all files listed in Manifest.txt. +% +% Version 1.2 2003/01/01 FUKUI Rei +% +% This file is based on: +% Computer Modern font series by D. E. Knuth and +% TSIPA by KOBAYASHI Hajime, FUKUI Rei and SHIRAKAWA Shun. + +if unknown cmbase: input cmbase fi +if unknown tipabase: input tipabase fi + +font_identifier:="TIPXSS"; font_size 9pt#; + +Times_Compat:=false; +if Times_Compat: input tipatr fi + +u#:=18.5/36pt#; +width_adj#:=13/36pt#; +serif_fit#:=-6.5/36pt#; +cap_serif_fit#:=-9/36pt#; +letter_fit#:=0pt#; +body_height#:=243/36pt#; +asc_height#:=225/36pt#; +cap_height#:=225/36pt#; +fig_height#:=212/36pt#; +x_height#:=144/36pt#; +math_axis#:=81/36pt#; +bar_height#:=71/36pt#; +comma_depth#:=41/36pt#; +desc_depth#:=63/36pt#; +crisp#:=0pt#; +tiny#:=0pt#; +fine#:=0pt#; +thin_join#:=16/36pt#; +hair#:=27/36pt#; +stem#:=27/36pt#; +curve#:=27/36pt#; +ess#:=27/36pt#; +flare#:=24/36pt#; +dot_size#:=28/36pt#; +cap_hair#:=27/36pt#; +cap_stem#:=31/36pt#; +cap_curve#:=31/36pt#; +cap_ess#:=31/36pt#; +rule_thickness#:=.38pt#; +dish#:=0pt#; +bracket#:=0pt#; +jut#:=0pt#; +cap_jut#:=0pt#; +beak_jut#:=0pt#; +beak#:=.5/36pt#; +vair#:=21/36pt#; +notch_cut#:=17/36pt#; +bar#:=20/36pt#; +slab#:=22/36pt#; +cap_bar#:=21/36pt#; +cap_band#:=19/36pt#; +cap_notch_cut#:=24/36pt#; +serif_drop#:=2/36pt#; +stem_corr#:=1/36pt#; +vair_corr#:=1/36pt#; +apex_corr#:=4.5/36pt#; +o#:=7/36pt#; +apex_o#:=0pt#; +slant:=0; +fudge:=.95; +math_spread:=.2; +superness:=1/sqrt2; +superpull:=1/20; +beak_darkness:=0; +ligs:=2; +square_dots:=true; +hefty:=true; +serifs:=false; +monospace:=false; +low_asterisk:=false; +math_fitting:=false; +sc.u#:=12.95/36pt#; +sc.letter_fit#:=2.4/36pt#; + +generate tipx % switch to the driver file diff --git a/Master/texmf-dist/fonts/source/public/tipa/tipxts10.mf b/Master/texmf-dist/fonts/source/public/tipa/tipxts10.mf new file mode 100644 index 00000000000..987d819aca1 --- /dev/null +++ b/Master/texmf-dist/fonts/source/public/tipa/tipxts10.mf @@ -0,0 +1,92 @@ +% tipxts10.mf: TIPX Typewriter Text Slanted 10 point parameter file +% Copyright 1996-2003 FUKUI Rei +% +% This program may be distributed and/or modified under the +% conditions of the LaTeX Project Public License, either version 1.2 +% of this license or (at your option) any later version. +% The latest version of this license is in +% http://www.latex-project.org/lppl.txt +% and version 1.2 or later is part of all distributions of LaTeX +% version 1999/12/01 or later. +% +% This program consists of all files listed in Manifest.txt. +% +% Version 1.2 2003/01/01 FUKUI Rei +% +% This file is based on: +% Computer Modern font series by D. E. Knuth and +% TSIPA by KOBAYASHI Hajime, FUKUI Rei and SHIRAKAWA Shun. + +if unknown cmbase: input cmbase fi +if unknown tipabase: input tipabase fi + +font_identifier:="TIPXTS"; font_size 10pt#; + +Times_Compat:=false; +if Times_Compat: input tipatr fi + +u#:=21/36pt#; +width_adj#:=0pt#; +serif_fit#:=0pt#; +cap_serif_fit#:=0pt#; +letter_fit#:=0pt#; +body_height#:=250/36pt#; +asc_height#:=220/36pt#; +cap_height#:=220/36pt#; +fig_height#:=220/36pt#; +x_height#:=155/36pt#; +math_axis#:=110/36pt#; +bar_height#:=79/36pt#; +comma_depth#:=50/36pt#; +desc_depth#:=80/36pt#; +crisp#:=22/36pt#; +tiny#:=22/36pt#; +fine#:=21/36pt#; +thin_join#:=21/36pt#; +hair#:=25/36pt#; +stem#:=25/36pt#; +curve#:=25/36pt#; +ess#:=22/36pt#; +flare#:=32/36pt#; +dot_size#:=36/36pt#; +cap_hair#:=25/36pt#; +cap_stem#:=25/36pt#; +cap_curve#:=25/36pt#; +cap_ess#:=25/36pt#; +rule_thickness#:=25/36pt#; +dish#:=0pt#; +bracket#:=0pt#; +jut#:=34/36pt#; +cap_jut#:=34/36pt#; +beak_jut#:=0pt#; +beak#:=34/36pt#; +vair#:=22/36pt#; +notch_cut#:=25/36pt#; +bar#:=22/36pt#; +slab#:=22/36pt#; +cap_bar#:=22/36pt#; +cap_band#:=22/36pt#; +cap_notch_cut#:=25/36pt#; +serif_drop#:=0pt#; +stem_corr#:=0pt#; +vair_corr#:=0pt#; +apex_corr#:=10/36pt#; +o#:=4/36pt#; +apex_o#:=3/36pt#; +slant:=1/6; +fudge:=0.81; +math_spread:=-1; +superness:=1/sqrt2; +superpull:=0; +beak_darkness:=0; +ligs:=0; +square_dots:=false; +hefty:=true; +serifs:=true; +monospace:=true; +low_asterisk:=true; +math_fitting:=false; +sc.u#:=21/36pt#; +sc.letter_fit#:=2.4/36pt#; + +generate tipx % switch to the driver file diff --git a/Master/texmf-dist/fonts/source/public/tipa/tipxtt10.mf b/Master/texmf-dist/fonts/source/public/tipa/tipxtt10.mf new file mode 100644 index 00000000000..6a2751b9fca --- /dev/null +++ b/Master/texmf-dist/fonts/source/public/tipa/tipxtt10.mf @@ -0,0 +1,92 @@ +% tipxtt10.mf: TIPX Typewriter Text 10 point parameter file +% Copyright 1996-2003 FUKUI Rei +% +% This program may be distributed and/or modified under the +% conditions of the LaTeX Project Public License, either version 1.2 +% of this license or (at your option) any later version. +% The latest version of this license is in +% http://www.latex-project.org/lppl.txt +% and version 1.2 or later is part of all distributions of LaTeX +% version 1999/12/01 or later. +% +% This program consists of all files listed in Manifest.txt. +% +% Version 1.2 2003/01/01 FUKUI Rei +% +% This file is based on: +% Computer Modern font series by D. E. Knuth and +% TSIPA by KOBAYASHI Hajime, FUKUI Rei and SHIRAKAWA Shun. + +if unknown cmbase: input cmbase fi +if unknown tipabase: input tipabase fi + +font_identifier:="TIPXTT"; font_size 10pt#; + +Times_Compat:=false; +if Times_Compat: input tipatr fi + +u#:=21/36pt#; +width_adj#:=0pt#; +serif_fit#:=0pt#; +cap_serif_fit#:=0pt#; +letter_fit#:=0pt#; +body_height#:=250/36pt#; +asc_height#:=220/36pt#; +cap_height#:=220/36pt#; +fig_height#:=220/36pt#; +x_height#:=155/36pt#; +math_axis#:=110/36pt#; +bar_height#:=79/36pt#; +comma_depth#:=50/36pt#; +desc_depth#:=80/36pt#; +crisp#:=22/36pt#; +tiny#:=22/36pt#; +fine#:=21/36pt#; +thin_join#:=21/36pt#; +hair#:=25/36pt#; +stem#:=25/36pt#; +curve#:=25/36pt#; +ess#:=22/36pt#; +flare#:=32/36pt#; +dot_size#:=36/36pt#; +cap_hair#:=25/36pt#; +cap_stem#:=25/36pt#; +cap_curve#:=25/36pt#; +cap_ess#:=25/36pt#; +rule_thickness#:=25/36pt#; +dish#:=0pt#; +bracket#:=0pt#; +jut#:=34/36pt#; +cap_jut#:=34/36pt#; +beak_jut#:=0pt#; +beak#:=34/36pt#; +vair#:=22/36pt#; +notch_cut#:=25/36pt#; +bar#:=22/36pt#; +slab#:=22/36pt#; +cap_bar#:=22/36pt#; +cap_band#:=22/36pt#; +cap_notch_cut#:=25/36pt#; +serif_drop#:=0pt#; +stem_corr#:=0pt#; +vair_corr#:=0pt#; +apex_corr#:=10/36pt#; +o#:=4/36pt#; +apex_o#:=3/36pt#; +slant:=0; +fudge:=0.81; +math_spread:=-1; +superness:=1/sqrt2; +superpull:=0; +beak_darkness:=0; +ligs:=0; +square_dots:=false; +hefty:=true; +serifs:=true; +monospace:=true; +low_asterisk:=true; +math_fitting:=false; +sc.u#:=21/36pt#; +sc.letter_fit#:=2.4/36pt#; + +generate tipx % switch to the driver file diff --git a/Master/texmf-dist/fonts/source/public/tipa/tipxtt12.mf b/Master/texmf-dist/fonts/source/public/tipa/tipxtt12.mf new file mode 100644 index 00000000000..edc13aaf97e --- /dev/null +++ b/Master/texmf-dist/fonts/source/public/tipa/tipxtt12.mf @@ -0,0 +1,92 @@ +% tipxtt12.mf: TIPX Typewriter Text 12 point parameter file +% Copyright 1996-2003 FUKUI Rei +% +% This program may be distributed and/or modified under the +% conditions of the LaTeX Project Public License, either version 1.2 +% of this license or (at your option) any later version. +% The latest version of this license is in +% http://www.latex-project.org/lppl.txt +% and version 1.2 or later is part of all distributions of LaTeX +% version 1999/12/01 or later. +% +% This program consists of all files listed in Manifest.txt. +% +% Version 1.2 2003/01/01 FUKUI Rei +% +% This file is based on: +% Computer Modern font series by D. E. Knuth and +% TSIPA by KOBAYASHI Hajime, FUKUI Rei and SHIRAKAWA Shun. + +if unknown cmbase: input cmbase fi +if unknown tipabase: input tipabase fi + +font_identifier:="TIPXTT"; font_size 12pt#; + +Times_Compat:=false; +if Times_Compat: input tipatr fi + +u#:=24.7/36pt#; +width_adj#:=0pt#; +serif_fit#:=0pt#; +cap_serif_fit#:=0pt#; +letter_fit#:=0pt#; +body_height#:=300/36pt#; +asc_height#:=264/36pt#; +cap_height#:=264/36pt#; +fig_height#:=264/36pt#; +x_height#:=186/36pt#; +math_axis#:=132/36pt#; +bar_height#:=95/36pt#; +comma_depth#:=60/36pt#; +desc_depth#:=96/36pt#; +crisp#:=25/36pt#; +tiny#:=25/36pt#; +fine#:=22/36pt#; +thin_join#:=22/36pt#; +hair#:=28/36pt#; +stem#:=28/36pt#; +curve#:=28/36pt#; +ess#:=25/36pt#; +flare#:=35/36pt#; +dot_size#:=39/36pt#; +cap_hair#:=28/36pt#; +cap_stem#:=28/36pt#; +cap_curve#:=28/36pt#; +cap_ess#:=28/36pt#; +rule_thickness#:=28/36pt#; +dish#:=0pt#; +bracket#:=0pt#; +jut#:=39/36pt#; +cap_jut#:=39/36pt#; +beak_jut#:=0pt#; +beak#:=39/36pt#; +vair#:=25/36pt#; +notch_cut#:=28/36pt#; +bar#:=25/36pt#; +slab#:=25/36pt#; +cap_bar#:=25/36pt#; +cap_band#:=25/36pt#; +cap_notch_cut#:=28/36pt#; +serif_drop#:=0pt#; +stem_corr#:=0pt#; +vair_corr#:=0pt#; +apex_corr#:=11/36pt#; +o#:=5/36pt#; +apex_o#:=4/36pt#; +slant:=0; +fudge:=0.86; +math_spread:=-1; +superness:=1/sqrt2; +superpull:=0; +beak_darkness:=0; +ligs:=0; +square_dots:=false; +hefty:=true; +serifs:=true; +monospace:=true; +low_asterisk:=true; +math_fitting:=false; +sc.u#:=24.7/36pt#; +sc.letter_fit#:=2.4/36pt#; + +generate tipx % switch to the driver file diff --git a/Master/texmf-dist/fonts/source/public/tipa/tipxtt8.mf b/Master/texmf-dist/fonts/source/public/tipa/tipxtt8.mf new file mode 100644 index 00000000000..fe66e1b3b1d --- /dev/null +++ b/Master/texmf-dist/fonts/source/public/tipa/tipxtt8.mf @@ -0,0 +1,92 @@ +% tipxtt8.mf: TIPX Typewriter Text 8 point parameter file +% Copyright 1996-2003 FUKUI Rei +% +% This program may be distributed and/or modified under the +% conditions of the LaTeX Project Public License, either version 1.2 +% of this license or (at your option) any later version. +% The latest version of this license is in +% http://www.latex-project.org/lppl.txt +% and version 1.2 or later is part of all distributions of LaTeX +% version 1999/12/01 or later. +% +% This program consists of all files listed in Manifest.txt. +% +% Version 1.2 2003/01/01 FUKUI Rei +% +% This file is based on: +% Computer Modern font series by D. E. Knuth and +% TSIPA by KOBAYASHI Hajime, FUKUI Rei and SHIRAKAWA Shun. + +if unknown cmbase: input cmbase fi +if unknown tipabase: input tipabase fi + +font_identifier:="TIPXTT"; font_size 8pt#; + +Times_Compat:=false; +if Times_Compat: input tipatr fi + +u#:=17/36pt#; +width_adj#:=0pt#; +serif_fit#:=0pt#; +cap_serif_fit#:=0pt#; +letter_fit#:=0pt#; +body_height#:=200/36pt#; +asc_height#:=176/36pt#; +cap_height#:=176/36pt#; +fig_height#:=176/36pt#; +x_height#:=124/36pt#; +math_axis#:=88/36pt#; +bar_height#:=63/36pt#; +comma_depth#:=40/36pt#; +desc_depth#:=64/36pt#; +crisp#:=19/36pt#; +tiny#:=19/36pt#; +fine#:=18/36pt#; +thin_join#:=18/36pt#; +hair#:=22/36pt#; +stem#:=22/36pt#; +curve#:=22/36pt#; +ess#:=19/36pt#; +flare#:=28/36pt#; +dot_size#:=31/36pt#; +cap_hair#:=22/36pt#; +cap_stem#:=22/36pt#; +cap_curve#:=22/36pt#; +cap_ess#:=22/36pt#; +rule_thickness#:=22/36pt#; +dish#:=0pt#; +bracket#:=0pt#; +jut#:=27/36pt#; +cap_jut#:=27/36pt#; +beak_jut#:=0pt#; +beak#:=27/36pt#; +vair#:=19/36pt#; +notch_cut#:=22/36pt#; +bar#:=19/36pt#; +slab#:=19/36pt#; +cap_bar#:=19/36pt#; +cap_band#:=19/36pt#; +cap_notch_cut#:=22/36pt#; +serif_drop#:=0pt#; +stem_corr#:=0pt#; +vair_corr#:=0pt#; +apex_corr#:=8/36pt#; +o#:=3/36pt#; +apex_o#:=3/36pt#; +slant:=0; +fudge:=0.81; +math_spread:=-1; +superness:=1/sqrt2; +superpull:=0; +beak_darkness:=0; +ligs:=0; +square_dots:=false; +hefty:=true; +serifs:=true; +monospace:=true; +low_asterisk:=true; +math_fitting:=false; +sc.u#:=17/36pt#; +sc.letter_fit#:=2.4/36pt#; + +generate tipx % switch to the driver file diff --git a/Master/texmf-dist/fonts/source/public/tipa/tipxtt9.mf b/Master/texmf-dist/fonts/source/public/tipa/tipxtt9.mf new file mode 100644 index 00000000000..c1e7f9e5cbe --- /dev/null +++ b/Master/texmf-dist/fonts/source/public/tipa/tipxtt9.mf @@ -0,0 +1,92 @@ +% tipxtt9.mf: TIPX Typewriter Text 9 point parameter file +% Copyright 1996-2003 FUKUI Rei +% +% This program may be distributed and/or modified under the +% conditions of the LaTeX Project Public License, either version 1.2 +% of this license or (at your option) any later version. +% The latest version of this license is in +% http://www.latex-project.org/lppl.txt +% and version 1.2 or later is part of all distributions of LaTeX +% version 1999/12/01 or later. +% +% This program consists of all files listed in Manifest.txt. +% +% Version 1.2 2003/01/01 FUKUI Rei +% +% This file is based on: +% Computer Modern font series by D. E. Knuth and +% TSIPA by KOBAYASHI Hajime, FUKUI Rei and SHIRAKAWA Shun. + +if unknown cmbase: input cmbase fi +if unknown tipabase: input tipabase fi + +font_identifier:="TIPXTT"; font_size 9pt#; + +Times_Compat:=false; +if Times_Compat: input tipatr fi + +u#:=18.9/36pt#; +width_adj#:=0pt#; +serif_fit#:=0pt#; +cap_serif_fit#:=0pt#; +letter_fit#:=0pt#; +body_height#:=225/36pt#; +asc_height#:=198/36pt#; +cap_height#:=198/36pt#; +fig_height#:=198/36pt#; +x_height#:=139.5/36pt#; +math_axis#:=99/36pt#; +bar_height#:=71/36pt#; +comma_depth#:=45/36pt#; +desc_depth#:=72/36pt#; +crisp#:=21/36pt#; +tiny#:=21/36pt#; +fine#:=20/36pt#; +thin_join#:=20/36pt#; +hair#:=24/36pt#; +stem#:=24/36pt#; +curve#:=24/36pt#; +ess#:=21/36pt#; +flare#:=30/36pt#; +dot_size#:=33/36pt#; +cap_hair#:=24/36pt#; +cap_stem#:=24/36pt#; +cap_curve#:=24/36pt#; +cap_ess#:=24/36pt#; +rule_thickness#:=24/36pt#; +dish#:=0pt#; +bracket#:=0pt#; +jut#:=31/36pt#; +cap_jut#:=31/36pt#; +beak_jut#:=0pt#; +beak#:=31/36pt#; +vair#:=21/36pt#; +notch_cut#:=24/36pt#; +bar#:=21/36pt#; +slab#:=21/36pt#; +cap_bar#:=21/36pt#; +cap_band#:=21/36pt#; +cap_notch_cut#:=24/36pt#; +serif_drop#:=0pt#; +stem_corr#:=0pt#; +vair_corr#:=0pt#; +apex_corr#:=9/36pt#; +o#:=3.5/36pt#; +apex_o#:=3/36pt#; +slant:=0; +fudge:=0.81; +math_spread:=-1; +superness:=1/sqrt2; +superpull:=0; +beak_darkness:=0; +ligs:=0; +square_dots:=false; +hefty:=true; +serifs:=true; +monospace:=true; +low_asterisk:=true; +math_fitting:=false; +sc.u#:=18.9/36pt#; +sc.letter_fit#:=2.4/36pt#; + +generate tipx % switch to the driver file diff --git a/Master/texmf-dist/fonts/source/public/tipa/xipa10.mf b/Master/texmf-dist/fonts/source/public/tipa/xipa10.mf new file mode 100644 index 00000000000..04a7f18f71e --- /dev/null +++ b/Master/texmf-dist/fonts/source/public/tipa/xipa10.mf @@ -0,0 +1,92 @@ +% xipa10.mf: XIPA Roman 10 point parameter file +% Copyright 1996-2003 FUKUI Rei +% +% This program may be distributed and/or modified under the +% conditions of the LaTeX Project Public License, either version 1.2 +% of this license or (at your option) any later version. +% The latest version of this license is in +% http://www.latex-project.org/lppl.txt +% and version 1.2 or later is part of all distributions of LaTeX +% version 1999/12/01 or later. +% +% This program consists of all files listed in Manifest.txt. +% +% Version 1.2 2003/01/01 FUKUI Rei +% +% This file is based on: +% Computer Modern font series by D. E. Knuth and +% TSIPA by KOBAYASHI Hajime, FUKUI Rei and SHIRAKAWA Shun. + +if unknown cmbase: input cmbase fi +if unknown tipabase: input tipabase fi + +font_identifier:="XIPA"; font_size 10pt#; + +Times_Compat:=true; +if Times_Compat: input tipatr fi + +u#:=18/36pt#; +width_adj#:=0pt#; +serif_fit#:=0pt#; +cap_serif_fit#:=5/36pt#; +letter_fit#:=0pt#; +body_height#:=270/36pt#; +asc_height#:=245.5/36pt#; +cap_height#:=240.5/36pt#; +fig_height#:=232/36pt#; +x_height#:=162/36pt#; +math_axis#:=90/36pt#; +bar_height#:=106/36pt#; +comma_depth#:=50.7/36pt#; +desc_depth#:=77.9/36pt#; +crisp#:=0pt#; +tiny#:=8/36pt#; +fine#:=7/36pt#; +thin_join#:=8/36pt#; +hair#:=9/36pt#; +stem#:=30/36pt#; +curve#:=34/36pt#; +ess#:=30/36pt#; +flare#:=27/36pt#; +dot_size#:=32/36pt#; +cap_hair#:=11/36pt#; +cap_stem#:=36/36pt#; +cap_curve#:=42/36pt#; +cap_ess#:=39/36pt#; +rule_thickness#:=.4pt#; +dish#:=0pt#; +bracket#:=22/36pt#; +jut#:=26/36pt#; +cap_jut#:=37/36pt#; +beak_jut#:=10/36pt#; +beak#:=70/36pt#; +vair#:=9/36pt#; +notch_cut#:=10pt#; +bar#:=11/36pt#; +slab#:=1.5/36pt#; +cap_bar#:=11/36pt#; +cap_band#:=11/36pt#; +cap_notch_cut#:=10pt#; +serif_drop#:=15/36pt#; +stem_corr#:=1/36pt#; +vair_corr#:=1/36pt#; +apex_corr#:=0pt#; +o#:=6/36pt#; +apex_o#:=6/36pt#; +slant:=0; +fudge:=1; +math_spread:=0; +superness:=1/sqrt2; +superpull:=1/6; +beak_darkness:=11/30; +ligs:=2; +square_dots:=false; +hefty:=false; +serifs:=true; +monospace:=false; +low_asterisk:=false; +math_fitting:=false; +sc.u#:=14/36pt#; +sc.letter_fit#:=2.4/36pt#; + +generate tipa % switch to the driver file diff --git a/Master/texmf-dist/fonts/source/public/tipa/xipab10.mf b/Master/texmf-dist/fonts/source/public/tipa/xipab10.mf new file mode 100644 index 00000000000..4986336e631 --- /dev/null +++ b/Master/texmf-dist/fonts/source/public/tipa/xipab10.mf @@ -0,0 +1,92 @@ +% xipab10.mf: XIPA Bold Roman 10 point parameter file +% Copyright 1996-2003 FUKUI Rei +% +% This program may be distributed and/or modified under the +% conditions of the LaTeX Project Public License, either version 1.2 +% of this license or (at your option) any later version. +% The latest version of this license is in +% http://www.latex-project.org/lppl.txt +% and version 1.2 or later is part of all distributions of LaTeX +% version 1999/12/01 or later. +% +% This program consists of all files listed in Manifest.txt. +% +% Version 1.2 2003/01/01 FUKUI Rei +% +% This file is based on: +% Computer Modern font series by D. E. Knuth and +% TSIPA by KOBAYASHI Hajime, FUKUI Rei and SHIRAKAWA Shun. + +if unknown cmbase: input cmbase fi +if unknown tipabase: input tipabase fi + +font_identifier:="XIPAB"; font_size 10pt#; + +Times_Compat:=true; +if Times_Compat: input tipatr fi + +u#:=20/36pt#; +width_adj#:=10/36pt#; +serif_fit#:=0pt#; +cap_serif_fit#:=6/36pt#; +letter_fit#:=0pt#; +body_height#:=270/36pt#; +asc_height#:=245.5/36pt#; +cap_height#:=242.1/36pt#; +fig_height#:=232/36pt#; +x_height#:=165.96/36pt#; +math_axis#:=90/36pt#; +bar_height#:=97.73/36pt#; +comma_depth#:=51/36pt#; +desc_depth#:=73.26/36pt#; +crisp#:=0pt#; +tiny#:=13/36pt#; +fine#:=10/36pt#; +thin_join#:=10/36pt#; +hair#:=17/36pt#; +stem#:=47/36pt#; +curve#:=52/36pt#; +ess#:=49/36pt#; +flare#:=39/36pt#; +dot_size#:=52/36pt#; +cap_hair#:=19/36pt#; +cap_stem#:=57/36pt#; +cap_curve#:=61/36pt#; +cap_ess#:=58/36pt#; +rule_thickness#:=.6pt#; +dish#:=0pt#; +bracket#:=22/36pt#; +jut#:=25/36pt#; +cap_jut#:=34/36pt#; +beak_jut#:=11/36pt#; +beak#:=70/36pt#; +vair#:=13/36pt#; +notch_cut#:=10pt#; +bar#:=17/36pt#; +slab#:=2.2/36pt#; +cap_bar#:=17/36pt#; +cap_band#:=17/36pt#; +cap_notch_cut#:=10pt#; +serif_drop#:=0pt#; +stem_corr#:=2/36pt#; +vair_corr#:=1.5/36pt#; +apex_corr#:=0pt#; +o#:=4/36pt#; +apex_o#:=3/36pt#; +slant:=0; +fudge:=1; +math_spread:=.5; +superness:=8/11; +superpull:=1/8; +beak_darkness:=.4; +ligs:=2; +square_dots:=false; +hefty:=false; +serifs:=true; +monospace:=false; +low_asterisk:=false; +math_fitting:=false; +sc.u#:=15.56/36pt#; +sc.letter_fit#:=2.4/36pt#; + +generate tipa % switch to the driver file diff --git a/Master/texmf-dist/fonts/source/public/tipa/xipabs10.mf b/Master/texmf-dist/fonts/source/public/tipa/xipabs10.mf new file mode 100644 index 00000000000..5d027973b27 --- /dev/null +++ b/Master/texmf-dist/fonts/source/public/tipa/xipabs10.mf @@ -0,0 +1,92 @@ +% xipabs10.mf: XIPA Bold Slanted Roman 10 point parameter file +% Copyright 1996-2003 FUKUI Rei +% +% This program may be distributed and/or modified under the +% conditions of the LaTeX Project Public License, either version 1.2 +% of this license or (at your option) any later version. +% The latest version of this license is in +% http://www.latex-project.org/lppl.txt +% and version 1.2 or later is part of all distributions of LaTeX +% version 1999/12/01 or later. +% +% This program consists of all files listed in Manifest.txt. +% +% Version 1.2 2003/01/01 FUKUI Rei +% +% This file is based on: +% Computer Modern font series by D. E. Knuth and +% TSIPA by KOBAYASHI Hajime, FUKUI Rei and SHIRAKAWA Shun. + +if unknown cmbase: input cmbase fi +if unknown tipabase: input tipabase fi + +font_identifier:="XIPABS"; font_size 10pt#; + +Times_Compat:=true; +if Times_Compat: input tipatr fi + +u#:=20/36pt#; +width_adj#:=10/36pt#; +serif_fit#:=0pt#; +cap_serif_fit#:=6/36pt#; +letter_fit#:=0pt#; +body_height#:=270/36pt#; +asc_height#:=245.5/36pt#; +cap_height#:=242.1/36pt#; +fig_height#:=232/36pt#; +x_height#:=165.96/36pt#; +math_axis#:=90/36pt#; +bar_height#:=97.73/36pt#; +comma_depth#:=51/36pt#; +desc_depth#:=73.26/36pt#; +crisp#:=0pt#; +tiny#:=13/36pt#; +fine#:=10/36pt#; +thin_join#:=10/36pt#; +hair#:=17/36pt#; +stem#:=47/36pt#; +curve#:=52/36pt#; +ess#:=49/36pt#; +flare#:=39/36pt#; +dot_size#:=52/36pt#; +cap_hair#:=19/36pt#; +cap_stem#:=57/36pt#; +cap_curve#:=61/36pt#; +cap_ess#:=58/36pt#; +rule_thickness#:=.6pt#; +dish#:=0pt#; +bracket#:=22/36pt#; +jut#:=25/36pt#; +cap_jut#:=34/36pt#; +beak_jut#:=11/36pt#; +beak#:=70/36pt#; +vair#:=13/36pt#; +notch_cut#:=10pt#; +bar#:=17/36pt#; +slab#:=2.2/36pt#; +cap_bar#:=17/36pt#; +cap_band#:=17/36pt#; +cap_notch_cut#:=10pt#; +serif_drop#:=0pt#; +stem_corr#:=2/36pt#; +vair_corr#:=1.5/36pt#; +apex_corr#:=0pt#; +o#:=4/36pt#; +apex_o#:=3/36pt#; +slant:=1/6; +fudge:=1; +math_spread:=.5; +superness:=8/11; +superpull:=1/8; +beak_darkness:=.4; +ligs:=2; +square_dots:=false; +hefty:=false; +serifs:=true; +monospace:=false; +low_asterisk:=false; +math_fitting:=false; +sc.u#:=15.56/36pt#; +sc.letter_fit#:=2.4/36pt#; + +generate tipa % switch to the driver file diff --git a/Master/texmf-dist/fonts/source/public/tipa/xipaprm.def b/Master/texmf-dist/fonts/source/public/tipa/xipaprm.def new file mode 100644 index 00000000000..1372f49a1a7 --- /dev/null +++ b/Master/texmf-dist/fonts/source/public/tipa/xipaprm.def @@ -0,0 +1,80 @@ +# xipaprm.def --- parameters for XIPA font families. +# +# 1996/06/24 first version +# 2001/12/29 Values modified esp. for xipa10. +# bs10 (Bold Slanted), sb10 (Sans Serif Bold), +# si10 (Sans Serif Slanted) added. +# 2003/01/01 values of stem and jut modified. +# +# The basic idea of this file is borrowed from dc fonts. But this file +# is processed by awk, not by a Metafont macro. +# +# NB: The parameter `variant_g' is omitted, and sc.u, sc.letter_fit added. +# For TT family of fonts, sc.u# shuold be equal to u# !!! +# p: x/36pt#, P: xpt#, n: x, SC12: sind 12 / cosd 12, SQ2: sqrt 2 +# +# 10 sl10 b10 bs10 ss10 si10 sb10 +# +p u 18 18 20 20 20 20 22 +p width_adj 0 0 10 10 15 15 15 +p serif_fit 0 0 0 0 -7 -7 -9 +p cap_serif_fit 5 5 6 6 -10 -10 -11 +p letter_fit 0 0 0 0 0 0 0 +p body_height 270 270 270 270 270 270 270 +p asc_height 245.5 245.5 245.5 245.5 260 260 260 +p cap_height 240.5 240.5 242.1 242.1 260 260 260 +p fig_height 232 232 232 232 236 236 236 +p x_height 162 162 165.96 165.96 188.28 188.28 191.52 +p math_axis 90 90 90 90 90 90 90 +p bar_height 106 106 97.73 97.73 95 95 95 +p comma_depth 50.7 50.7 51 51 50 50 50 +p desc_depth 77.9 77.9 73.26 73.26 75.8 75.8 75.8 +p crisp 0 0 0 0 0 0 0 +p tiny 8 8 13 13 0 0 0 +p fine 7 7 10 10 0 0 0 +p thin_join 8 8 10 10 17 17 20 +p hair 9 9 17 17 30 30 49 +p stem 30 30 47 47 30 30 49 +p curve 34 34 52 52 30 30 49 +p ess 30 30 49 49 30 30 43 +p flare 27 27 39 39 27 27 40 +p dot_size 32 32 52 52 30 30 47 +p cap_hair 11 11 19 19 30 30 49 +p cap_stem 36 36 57 57 32 32 53 +p cap_curve 42 42 61 61 32 32 53 +p cap_ess 39 39 58 58 32 32 51 +P rule_thickness .4 .4 .6 .6 .4 .4 30/36 +p dish 0 0 0 0 0 0 0 +p bracket 22 22 22 22 0 0 0 +p jut 26 26 25 25 0 0 0 +p cap_jut 37 37 34 34 0 0 0 +p beak_jut 10 10 11 11 0 0 0 +p beak 70 70 70 70 .5 .5 1.5 +p vair 9 9 13 13 22 22 26 +P notch_cut 10 10 10 10 18/36 18/36 49/36 +p bar 11 11 17 17 21 21 26 +p slab 1.5 1.5 2.2 2.2 21 21 36 +p cap_bar 11 11 17 17 22 22 34 +p cap_band 11 11 17 17 20 20 31 +P cap_notch_cut 10 10 10 10 25/36 25/36 45/36 +p serif_drop 15 15 0 0 2 2 0 +p stem_corr 1 1 2 2 1 1 1 +p vair_corr 1 1 1.5 1.5 1 1 2 +p apex_corr 0 0 0 0 5 5 18 +p o 6 6 4 4 6 6 8 +p apex_o 6 6 3 3 0 0 0 +n slant 0 1/6 0 1/6 0 1/6 0 +n fudge 1 1 1 1 .96 .96 .88 +n math_spread 0 0 .5 .5 0 0 .5 +n superness 1/SQ2 1/SQ2 8/11 8/11 1/SQ2 1/SQ2 .75 +n superpull 1/6 1/6 1/8 1/8 1/20 1/20 1/18 +n beak_darkness 11/30 11/30 .4 .4 0 0 0 +n ligs 2 2 2 2 2 2 2 +n square_dots false false false false true true true +n hefty false false false false true true true +n serifs true true true true false false false +n monospace false false false false false false false +n low_asterisk false false false false false false false +n math_fitting false false false false false false false +p sc.u 14 14 15.56 15.56 15.56 15.56 17.11 +p sc.letter_fit 2.4 2.4 2.4 2.4 2.4 2.4 2.4 diff --git a/Master/texmf-dist/fonts/source/public/tipa/xipasb10.mf b/Master/texmf-dist/fonts/source/public/tipa/xipasb10.mf new file mode 100644 index 00000000000..3f2e5c81fca --- /dev/null +++ b/Master/texmf-dist/fonts/source/public/tipa/xipasb10.mf @@ -0,0 +1,92 @@ +% xipasb10.mf: XIPA Sans Serif Bold 10 point parameter file +% Copyright 1996-2003 FUKUI Rei +% +% This program may be distributed and/or modified under the +% conditions of the LaTeX Project Public License, either version 1.2 +% of this license or (at your option) any later version. +% The latest version of this license is in +% http://www.latex-project.org/lppl.txt +% and version 1.2 or later is part of all distributions of LaTeX +% version 1999/12/01 or later. +% +% This program consists of all files listed in Manifest.txt. +% +% Version 1.2 2003/01/01 FUKUI Rei +% +% This file is based on: +% Computer Modern font series by D. E. Knuth and +% TSIPA by KOBAYASHI Hajime, FUKUI Rei and SHIRAKAWA Shun. + +if unknown cmbase: input cmbase fi +if unknown tipabase: input tipabase fi + +font_identifier:="XIPASB"; font_size 10pt#; + +Times_Compat:=true; +if Times_Compat: input tipatr fi + +u#:=22/36pt#; +width_adj#:=15/36pt#; +serif_fit#:=-9/36pt#; +cap_serif_fit#:=-11/36pt#; +letter_fit#:=0pt#; +body_height#:=270/36pt#; +asc_height#:=260/36pt#; +cap_height#:=260/36pt#; +fig_height#:=236/36pt#; +x_height#:=191.52/36pt#; +math_axis#:=90/36pt#; +bar_height#:=95/36pt#; +comma_depth#:=50/36pt#; +desc_depth#:=75.8/36pt#; +crisp#:=0pt#; +tiny#:=0pt#; +fine#:=0pt#; +thin_join#:=20/36pt#; +hair#:=49/36pt#; +stem#:=49/36pt#; +curve#:=49/36pt#; +ess#:=43/36pt#; +flare#:=40/36pt#; +dot_size#:=47/36pt#; +cap_hair#:=49/36pt#; +cap_stem#:=53/36pt#; +cap_curve#:=53/36pt#; +cap_ess#:=51/36pt#; +rule_thickness#:=30/36pt#; +dish#:=0pt#; +bracket#:=0pt#; +jut#:=0pt#; +cap_jut#:=0pt#; +beak_jut#:=0pt#; +beak#:=1.5/36pt#; +vair#:=26/36pt#; +notch_cut#:=49/36pt#; +bar#:=26/36pt#; +slab#:=36/36pt#; +cap_bar#:=34/36pt#; +cap_band#:=31/36pt#; +cap_notch_cut#:=45/36pt#; +serif_drop#:=0pt#; +stem_corr#:=1/36pt#; +vair_corr#:=2/36pt#; +apex_corr#:=18/36pt#; +o#:=8/36pt#; +apex_o#:=0pt#; +slant:=0; +fudge:=.88; +math_spread:=.5; +superness:=.75; +superpull:=1/18; +beak_darkness:=0; +ligs:=2; +square_dots:=true; +hefty:=true; +serifs:=false; +monospace:=false; +low_asterisk:=false; +math_fitting:=false; +sc.u#:=17.11/36pt#; +sc.letter_fit#:=2.4/36pt#; + +generate tipa % switch to the driver file diff --git a/Master/texmf-dist/fonts/source/public/tipa/xipasi10.mf b/Master/texmf-dist/fonts/source/public/tipa/xipasi10.mf new file mode 100644 index 00000000000..842d0f1aa35 --- /dev/null +++ b/Master/texmf-dist/fonts/source/public/tipa/xipasi10.mf @@ -0,0 +1,92 @@ +% xipasi10.mf: XIPA Sans Serif Slanted 10 point parameter file +% Copyright 1996-2003 FUKUI Rei +% +% This program may be distributed and/or modified under the +% conditions of the LaTeX Project Public License, either version 1.2 +% of this license or (at your option) any later version. +% The latest version of this license is in +% http://www.latex-project.org/lppl.txt +% and version 1.2 or later is part of all distributions of LaTeX +% version 1999/12/01 or later. +% +% This program consists of all files listed in Manifest.txt. +% +% Version 1.2 2003/01/01 FUKUI Rei +% +% This file is based on: +% Computer Modern font series by D. E. Knuth and +% TSIPA by KOBAYASHI Hajime, FUKUI Rei and SHIRAKAWA Shun. + +if unknown cmbase: input cmbase fi +if unknown tipabase: input tipabase fi + +font_identifier:="XIPASI"; font_size 10pt#; + +Times_Compat:=true; +if Times_Compat: input tipatr fi + +u#:=20/36pt#; +width_adj#:=15/36pt#; +serif_fit#:=-7/36pt#; +cap_serif_fit#:=-10/36pt#; +letter_fit#:=0pt#; +body_height#:=270/36pt#; +asc_height#:=260/36pt#; +cap_height#:=260/36pt#; +fig_height#:=236/36pt#; +x_height#:=188.28/36pt#; +math_axis#:=90/36pt#; +bar_height#:=95/36pt#; +comma_depth#:=50/36pt#; +desc_depth#:=75.8/36pt#; +crisp#:=0pt#; +tiny#:=0pt#; +fine#:=0pt#; +thin_join#:=17/36pt#; +hair#:=30/36pt#; +stem#:=30/36pt#; +curve#:=30/36pt#; +ess#:=30/36pt#; +flare#:=27/36pt#; +dot_size#:=30/36pt#; +cap_hair#:=30/36pt#; +cap_stem#:=32/36pt#; +cap_curve#:=32/36pt#; +cap_ess#:=32/36pt#; +rule_thickness#:=.4pt#; +dish#:=0pt#; +bracket#:=0pt#; +jut#:=0pt#; +cap_jut#:=0pt#; +beak_jut#:=0pt#; +beak#:=.5/36pt#; +vair#:=22/36pt#; +notch_cut#:=18/36pt#; +bar#:=21/36pt#; +slab#:=21/36pt#; +cap_bar#:=22/36pt#; +cap_band#:=20/36pt#; +cap_notch_cut#:=25/36pt#; +serif_drop#:=2/36pt#; +stem_corr#:=1/36pt#; +vair_corr#:=1/36pt#; +apex_corr#:=5/36pt#; +o#:=6/36pt#; +apex_o#:=0pt#; +slant:=1/6; +fudge:=.96; +math_spread:=0; +superness:=1/sqrt2; +superpull:=1/20; +beak_darkness:=0; +ligs:=2; +square_dots:=true; +hefty:=true; +serifs:=false; +monospace:=false; +low_asterisk:=false; +math_fitting:=false; +sc.u#:=15.56/36pt#; +sc.letter_fit#:=2.4/36pt#; + +generate tipa % switch to the driver file diff --git a/Master/texmf-dist/fonts/source/public/tipa/xipasl10.mf b/Master/texmf-dist/fonts/source/public/tipa/xipasl10.mf new file mode 100644 index 00000000000..43146921eb1 --- /dev/null +++ b/Master/texmf-dist/fonts/source/public/tipa/xipasl10.mf @@ -0,0 +1,92 @@ +% xipasl10.mf: XIPA Slanted Roman 10 point parameter file +% Copyright 1996-2003 FUKUI Rei +% +% This program may be distributed and/or modified under the +% conditions of the LaTeX Project Public License, either version 1.2 +% of this license or (at your option) any later version. +% The latest version of this license is in +% http://www.latex-project.org/lppl.txt +% and version 1.2 or later is part of all distributions of LaTeX +% version 1999/12/01 or later. +% +% This program consists of all files listed in Manifest.txt. +% +% Version 1.2 2003/01/01 FUKUI Rei +% +% This file is based on: +% Computer Modern font series by D. E. Knuth and +% TSIPA by KOBAYASHI Hajime, FUKUI Rei and SHIRAKAWA Shun. + +if unknown cmbase: input cmbase fi +if unknown tipabase: input tipabase fi + +font_identifier:="XIPASL"; font_size 10pt#; + +Times_Compat:=true; +if Times_Compat: input tipatr fi + +u#:=18/36pt#; +width_adj#:=0pt#; +serif_fit#:=0pt#; +cap_serif_fit#:=5/36pt#; +letter_fit#:=0pt#; +body_height#:=270/36pt#; +asc_height#:=245.5/36pt#; +cap_height#:=240.5/36pt#; +fig_height#:=232/36pt#; +x_height#:=162/36pt#; +math_axis#:=90/36pt#; +bar_height#:=106/36pt#; +comma_depth#:=50.7/36pt#; +desc_depth#:=77.9/36pt#; +crisp#:=0pt#; +tiny#:=8/36pt#; +fine#:=7/36pt#; +thin_join#:=8/36pt#; +hair#:=9/36pt#; +stem#:=30/36pt#; +curve#:=34/36pt#; +ess#:=30/36pt#; +flare#:=27/36pt#; +dot_size#:=32/36pt#; +cap_hair#:=11/36pt#; +cap_stem#:=36/36pt#; +cap_curve#:=42/36pt#; +cap_ess#:=39/36pt#; +rule_thickness#:=.4pt#; +dish#:=0pt#; +bracket#:=22/36pt#; +jut#:=26/36pt#; +cap_jut#:=37/36pt#; +beak_jut#:=10/36pt#; +beak#:=70/36pt#; +vair#:=9/36pt#; +notch_cut#:=10pt#; +bar#:=11/36pt#; +slab#:=1.5/36pt#; +cap_bar#:=11/36pt#; +cap_band#:=11/36pt#; +cap_notch_cut#:=10pt#; +serif_drop#:=15/36pt#; +stem_corr#:=1/36pt#; +vair_corr#:=1/36pt#; +apex_corr#:=0pt#; +o#:=6/36pt#; +apex_o#:=6/36pt#; +slant:=1/6; +fudge:=1; +math_spread:=0; +superness:=1/sqrt2; +superpull:=1/6; +beak_darkness:=11/30; +ligs:=2; +square_dots:=false; +hefty:=false; +serifs:=true; +monospace:=false; +low_asterisk:=false; +math_fitting:=false; +sc.u#:=14/36pt#; +sc.letter_fit#:=2.4/36pt#; + +generate tipa % switch to the driver file diff --git a/Master/texmf-dist/fonts/source/public/tipa/xipass10.mf b/Master/texmf-dist/fonts/source/public/tipa/xipass10.mf new file mode 100644 index 00000000000..3fe6a9a16b0 --- /dev/null +++ b/Master/texmf-dist/fonts/source/public/tipa/xipass10.mf @@ -0,0 +1,92 @@ +% xipass10.mf: XIPA Sans Serif 10 point parameter file +% Copyright 1996-2003 FUKUI Rei +% +% This program may be distributed and/or modified under the +% conditions of the LaTeX Project Public License, either version 1.2 +% of this license or (at your option) any later version. +% The latest version of this license is in +% http://www.latex-project.org/lppl.txt +% and version 1.2 or later is part of all distributions of LaTeX +% version 1999/12/01 or later. +% +% This program consists of all files listed in Manifest.txt. +% +% Version 1.2 2003/01/01 FUKUI Rei +% +% This file is based on: +% Computer Modern font series by D. E. Knuth and +% TSIPA by KOBAYASHI Hajime, FUKUI Rei and SHIRAKAWA Shun. + +if unknown cmbase: input cmbase fi +if unknown tipabase: input tipabase fi + +font_identifier:="XIPASS"; font_size 10pt#; + +Times_Compat:=true; +if Times_Compat: input tipatr fi + +u#:=20/36pt#; +width_adj#:=15/36pt#; +serif_fit#:=-7/36pt#; +cap_serif_fit#:=-10/36pt#; +letter_fit#:=0pt#; +body_height#:=270/36pt#; +asc_height#:=260/36pt#; +cap_height#:=260/36pt#; +fig_height#:=236/36pt#; +x_height#:=188.28/36pt#; +math_axis#:=90/36pt#; +bar_height#:=95/36pt#; +comma_depth#:=50/36pt#; +desc_depth#:=75.8/36pt#; +crisp#:=0pt#; +tiny#:=0pt#; +fine#:=0pt#; +thin_join#:=17/36pt#; +hair#:=30/36pt#; +stem#:=30/36pt#; +curve#:=30/36pt#; +ess#:=30/36pt#; +flare#:=27/36pt#; +dot_size#:=30/36pt#; +cap_hair#:=30/36pt#; +cap_stem#:=32/36pt#; +cap_curve#:=32/36pt#; +cap_ess#:=32/36pt#; +rule_thickness#:=.4pt#; +dish#:=0pt#; +bracket#:=0pt#; +jut#:=0pt#; +cap_jut#:=0pt#; +beak_jut#:=0pt#; +beak#:=.5/36pt#; +vair#:=22/36pt#; +notch_cut#:=18/36pt#; +bar#:=21/36pt#; +slab#:=21/36pt#; +cap_bar#:=22/36pt#; +cap_band#:=20/36pt#; +cap_notch_cut#:=25/36pt#; +serif_drop#:=2/36pt#; +stem_corr#:=1/36pt#; +vair_corr#:=1/36pt#; +apex_corr#:=5/36pt#; +o#:=6/36pt#; +apex_o#:=0pt#; +slant:=0; +fudge:=.96; +math_spread:=0; +superness:=1/sqrt2; +superpull:=1/20; +beak_darkness:=0; +ligs:=2; +square_dots:=true; +hefty:=true; +serifs:=false; +monospace:=false; +low_asterisk:=false; +math_fitting:=false; +sc.u#:=15.56/36pt#; +sc.letter_fit#:=2.4/36pt#; + +generate tipa % switch to the driver file diff --git a/Master/texmf-dist/fonts/source/public/tipa/xipx10.mf b/Master/texmf-dist/fonts/source/public/tipa/xipx10.mf new file mode 100644 index 00000000000..b4ec2e938fd --- /dev/null +++ b/Master/texmf-dist/fonts/source/public/tipa/xipx10.mf @@ -0,0 +1,92 @@ +% xipx10.mf: XIPX Roman 10 point parameter file +% Copyright 1996-2003 FUKUI Rei +% +% This program may be distributed and/or modified under the +% conditions of the LaTeX Project Public License, either version 1.2 +% of this license or (at your option) any later version. +% The latest version of this license is in +% http://www.latex-project.org/lppl.txt +% and version 1.2 or later is part of all distributions of LaTeX +% version 1999/12/01 or later. +% +% This program consists of all files listed in Manifest.txt. +% +% Version 1.2 2003/01/01 +% +% This file is based on: +% Computer Modern font series by D. E. Knuth and +% TSIPA by KOBAYASHI Hajime, FUKUI Rei and SHIRAKAWA Shun. + +if unknown cmbase: input cmbase fi +if unknown tipabase: input tipabase fi + +font_identifier:="XIPX"; font_size 10pt#; + +Times_Compat:=true; +if Times_Compat: input tipatr fi + +u#:=18/36pt#; +width_adj#:=0pt#; +serif_fit#:=0pt#; +cap_serif_fit#:=5/36pt#; +letter_fit#:=0pt#; +body_height#:=270/36pt#; +asc_height#:=245.5/36pt#; +cap_height#:=240.5/36pt#; +fig_height#:=232/36pt#; +x_height#:=162/36pt#; +math_axis#:=90/36pt#; +bar_height#:=106/36pt#; +comma_depth#:=50.7/36pt#; +desc_depth#:=77.9/36pt#; +crisp#:=0pt#; +tiny#:=8/36pt#; +fine#:=7/36pt#; +thin_join#:=8/36pt#; +hair#:=9/36pt#; +stem#:=30/36pt#; +curve#:=34/36pt#; +ess#:=30/36pt#; +flare#:=27/36pt#; +dot_size#:=32/36pt#; +cap_hair#:=11/36pt#; +cap_stem#:=36/36pt#; +cap_curve#:=42/36pt#; +cap_ess#:=39/36pt#; +rule_thickness#:=.4pt#; +dish#:=0pt#; +bracket#:=22/36pt#; +jut#:=26/36pt#; +cap_jut#:=37/36pt#; +beak_jut#:=10/36pt#; +beak#:=70/36pt#; +vair#:=9/36pt#; +notch_cut#:=10pt#; +bar#:=11/36pt#; +slab#:=1.5/36pt#; +cap_bar#:=11/36pt#; +cap_band#:=11/36pt#; +cap_notch_cut#:=10pt#; +serif_drop#:=15/36pt#; +stem_corr#:=1/36pt#; +vair_corr#:=1/36pt#; +apex_corr#:=0pt#; +o#:=6/36pt#; +apex_o#:=6/36pt#; +slant:=0; +fudge:=1; +math_spread:=0; +superness:=1/sqrt2; +superpull:=1/6; +beak_darkness:=11/30; +ligs:=2; +square_dots:=false; +hefty:=false; +serifs:=true; +monospace:=false; +low_asterisk:=false; +math_fitting:=false; +sc.u#:=14/36pt#; +sc.letter_fit#:=2.4/36pt#; + +generate tipx % switch to the driver file diff --git a/Master/texmf-dist/fonts/source/public/tipa/xipxb10.mf b/Master/texmf-dist/fonts/source/public/tipa/xipxb10.mf new file mode 100644 index 00000000000..5248e83041b --- /dev/null +++ b/Master/texmf-dist/fonts/source/public/tipa/xipxb10.mf @@ -0,0 +1,92 @@ +% xipxb10.mf: XIPX Bold Roman 10 point parameter file +% Copyright 1996-2003 FUKUI Rei +% +% This program may be distributed and/or modified under the +% conditions of the LaTeX Project Public License, either version 1.2 +% of this license or (at your option) any later version. +% The latest version of this license is in +% http://www.latex-project.org/lppl.txt +% and version 1.2 or later is part of all distributions of LaTeX +% version 1999/12/01 or later. +% +% This program consists of all files listed in Manifest.txt. +% +% Version 1.2 2003/01/01 +% +% This file is based on: +% Computer Modern font series by D. E. Knuth and +% TSIPA by KOBAYASHI Hajime, FUKUI Rei and SHIRAKAWA Shun. + +if unknown cmbase: input cmbase fi +if unknown tipabase: input tipabase fi + +font_identifier:="XIPXB"; font_size 10pt#; + +Times_Compat:=true; +if Times_Compat: input tipatr fi + +u#:=20/36pt#; +width_adj#:=10/36pt#; +serif_fit#:=0pt#; +cap_serif_fit#:=6/36pt#; +letter_fit#:=0pt#; +body_height#:=270/36pt#; +asc_height#:=245.5/36pt#; +cap_height#:=242.1/36pt#; +fig_height#:=232/36pt#; +x_height#:=165.96/36pt#; +math_axis#:=90/36pt#; +bar_height#:=97.73/36pt#; +comma_depth#:=51/36pt#; +desc_depth#:=73.26/36pt#; +crisp#:=0pt#; +tiny#:=13/36pt#; +fine#:=10/36pt#; +thin_join#:=10/36pt#; +hair#:=17/36pt#; +stem#:=47/36pt#; +curve#:=52/36pt#; +ess#:=49/36pt#; +flare#:=39/36pt#; +dot_size#:=52/36pt#; +cap_hair#:=19/36pt#; +cap_stem#:=57/36pt#; +cap_curve#:=61/36pt#; +cap_ess#:=58/36pt#; +rule_thickness#:=.6pt#; +dish#:=0pt#; +bracket#:=22/36pt#; +jut#:=25/36pt#; +cap_jut#:=34/36pt#; +beak_jut#:=11/36pt#; +beak#:=70/36pt#; +vair#:=13/36pt#; +notch_cut#:=10pt#; +bar#:=17/36pt#; +slab#:=2.2/36pt#; +cap_bar#:=17/36pt#; +cap_band#:=17/36pt#; +cap_notch_cut#:=10pt#; +serif_drop#:=0pt#; +stem_corr#:=2/36pt#; +vair_corr#:=1.5/36pt#; +apex_corr#:=0pt#; +o#:=4/36pt#; +apex_o#:=3/36pt#; +slant:=0; +fudge:=1; +math_spread:=.5; +superness:=8/11; +superpull:=1/8; +beak_darkness:=.4; +ligs:=2; +square_dots:=false; +hefty:=false; +serifs:=true; +monospace:=false; +low_asterisk:=false; +math_fitting:=false; +sc.u#:=15.56/36pt#; +sc.letter_fit#:=2.4/36pt#; + +generate tipx % switch to the driver file diff --git a/Master/texmf-dist/fonts/source/public/tipa/xipxbs10.mf b/Master/texmf-dist/fonts/source/public/tipa/xipxbs10.mf new file mode 100644 index 00000000000..6bd05d99858 --- /dev/null +++ b/Master/texmf-dist/fonts/source/public/tipa/xipxbs10.mf @@ -0,0 +1,92 @@ +% xipxbs10.mf: XIPX Bold Slanted Roman 10 point parameter file +% Copyright 1996-2003 FUKUI Rei +% +% This program may be distributed and/or modified under the +% conditions of the LaTeX Project Public License, either version 1.2 +% of this license or (at your option) any later version. +% The latest version of this license is in +% http://www.latex-project.org/lppl.txt +% and version 1.2 or later is part of all distributions of LaTeX +% version 1999/12/01 or later. +% +% This program consists of all files listed in Manifest.txt. +% +% Version 1.2 2003/01/01 +% +% This file is based on: +% Computer Modern font series by D. E. Knuth and +% TSIPA by KOBAYASHI Hajime, FUKUI Rei and SHIRAKAWA Shun. + +if unknown cmbase: input cmbase fi +if unknown tipabase: input tipabase fi + +font_identifier:="XIPXBS"; font_size 10pt#; + +Times_Compat:=true; +if Times_Compat: input tipatr fi + +u#:=20/36pt#; +width_adj#:=10/36pt#; +serif_fit#:=0pt#; +cap_serif_fit#:=6/36pt#; +letter_fit#:=0pt#; +body_height#:=270/36pt#; +asc_height#:=245.5/36pt#; +cap_height#:=242.1/36pt#; +fig_height#:=232/36pt#; +x_height#:=165.96/36pt#; +math_axis#:=90/36pt#; +bar_height#:=97.73/36pt#; +comma_depth#:=51/36pt#; +desc_depth#:=73.26/36pt#; +crisp#:=0pt#; +tiny#:=13/36pt#; +fine#:=10/36pt#; +thin_join#:=10/36pt#; +hair#:=17/36pt#; +stem#:=47/36pt#; +curve#:=52/36pt#; +ess#:=49/36pt#; +flare#:=39/36pt#; +dot_size#:=52/36pt#; +cap_hair#:=19/36pt#; +cap_stem#:=57/36pt#; +cap_curve#:=61/36pt#; +cap_ess#:=58/36pt#; +rule_thickness#:=.6pt#; +dish#:=0pt#; +bracket#:=22/36pt#; +jut#:=25/36pt#; +cap_jut#:=34/36pt#; +beak_jut#:=11/36pt#; +beak#:=70/36pt#; +vair#:=13/36pt#; +notch_cut#:=10pt#; +bar#:=17/36pt#; +slab#:=2.2/36pt#; +cap_bar#:=17/36pt#; +cap_band#:=17/36pt#; +cap_notch_cut#:=10pt#; +serif_drop#:=0pt#; +stem_corr#:=2/36pt#; +vair_corr#:=1.5/36pt#; +apex_corr#:=0pt#; +o#:=4/36pt#; +apex_o#:=3/36pt#; +slant:=1/6; +fudge:=1; +math_spread:=.5; +superness:=8/11; +superpull:=1/8; +beak_darkness:=.4; +ligs:=2; +square_dots:=false; +hefty:=false; +serifs:=true; +monospace:=false; +low_asterisk:=false; +math_fitting:=false; +sc.u#:=15.56/36pt#; +sc.letter_fit#:=2.4/36pt#; + +generate tipx % switch to the driver file diff --git a/Master/texmf-dist/fonts/source/public/tipa/xipxsb10.mf b/Master/texmf-dist/fonts/source/public/tipa/xipxsb10.mf new file mode 100644 index 00000000000..7da1b518c44 --- /dev/null +++ b/Master/texmf-dist/fonts/source/public/tipa/xipxsb10.mf @@ -0,0 +1,92 @@ +% xipxsb10.mf: XIPX Sans Serif Bold 10 point parameter file +% Copyright 1996-2003 FUKUI Rei +% +% This program may be distributed and/or modified under the +% conditions of the LaTeX Project Public License, either version 1.2 +% of this license or (at your option) any later version. +% The latest version of this license is in +% http://www.latex-project.org/lppl.txt +% and version 1.2 or later is part of all distributions of LaTeX +% version 1999/12/01 or later. +% +% This program consists of all files listed in Manifest.txt. +% +% Version 1.2 2003/01/01 +% +% This file is based on: +% Computer Modern font series by D. E. Knuth and +% TSIPA by KOBAYASHI Hajime, FUKUI Rei and SHIRAKAWA Shun. + +if unknown cmbase: input cmbase fi +if unknown tipabase: input tipabase fi + +font_identifier:="XIPXSB"; font_size 10pt#; + +Times_Compat:=true; +if Times_Compat: input tipatr fi + +u#:=22/36pt#; +width_adj#:=15/36pt#; +serif_fit#:=-9/36pt#; +cap_serif_fit#:=-11/36pt#; +letter_fit#:=0pt#; +body_height#:=270/36pt#; +asc_height#:=260/36pt#; +cap_height#:=260/36pt#; +fig_height#:=236/36pt#; +x_height#:=191.52/36pt#; +math_axis#:=90/36pt#; +bar_height#:=95/36pt#; +comma_depth#:=50/36pt#; +desc_depth#:=75.8/36pt#; +crisp#:=0pt#; +tiny#:=0pt#; +fine#:=0pt#; +thin_join#:=20/36pt#; +hair#:=49/36pt#; +stem#:=49/36pt#; +curve#:=49/36pt#; +ess#:=43/36pt#; +flare#:=40/36pt#; +dot_size#:=47/36pt#; +cap_hair#:=49/36pt#; +cap_stem#:=53/36pt#; +cap_curve#:=53/36pt#; +cap_ess#:=51/36pt#; +rule_thickness#:=30/36pt#; +dish#:=0pt#; +bracket#:=0pt#; +jut#:=0pt#; +cap_jut#:=0pt#; +beak_jut#:=0pt#; +beak#:=1.5/36pt#; +vair#:=26/36pt#; +notch_cut#:=49/36pt#; +bar#:=26/36pt#; +slab#:=36/36pt#; +cap_bar#:=34/36pt#; +cap_band#:=31/36pt#; +cap_notch_cut#:=45/36pt#; +serif_drop#:=0pt#; +stem_corr#:=1/36pt#; +vair_corr#:=2/36pt#; +apex_corr#:=18/36pt#; +o#:=8/36pt#; +apex_o#:=0pt#; +slant:=0; +fudge:=.88; +math_spread:=.5; +superness:=.75; +superpull:=1/18; +beak_darkness:=0; +ligs:=2; +square_dots:=true; +hefty:=true; +serifs:=false; +monospace:=false; +low_asterisk:=false; +math_fitting:=false; +sc.u#:=17.11/36pt#; +sc.letter_fit#:=2.4/36pt#; + +generate tipx % switch to the driver file diff --git a/Master/texmf-dist/fonts/source/public/tipa/xipxsi10.mf b/Master/texmf-dist/fonts/source/public/tipa/xipxsi10.mf new file mode 100644 index 00000000000..2d5b0a0e7eb --- /dev/null +++ b/Master/texmf-dist/fonts/source/public/tipa/xipxsi10.mf @@ -0,0 +1,92 @@ +% xipxsi10.mf: XIPX Sans Serif Slanted 10 point parameter file +% Copyright 1996-2003 FUKUI Rei +% +% This program may be distributed and/or modified under the +% conditions of the LaTeX Project Public License, either version 1.2 +% of this license or (at your option) any later version. +% The latest version of this license is in +% http://www.latex-project.org/lppl.txt +% and version 1.2 or later is part of all distributions of LaTeX +% version 1999/12/01 or later. +% +% This program consists of all files listed in Manifest.txt. +% +% Version 1.2 2003/01/01 +% +% This file is based on: +% Computer Modern font series by D. E. Knuth and +% TSIPA by KOBAYASHI Hajime, FUKUI Rei and SHIRAKAWA Shun. + +if unknown cmbase: input cmbase fi +if unknown tipabase: input tipabase fi + +font_identifier:="XIPXSI"; font_size 10pt#; + +Times_Compat:=true; +if Times_Compat: input tipatr fi + +u#:=20/36pt#; +width_adj#:=15/36pt#; +serif_fit#:=-7/36pt#; +cap_serif_fit#:=-10/36pt#; +letter_fit#:=0pt#; +body_height#:=270/36pt#; +asc_height#:=260/36pt#; +cap_height#:=260/36pt#; +fig_height#:=236/36pt#; +x_height#:=188.28/36pt#; +math_axis#:=90/36pt#; +bar_height#:=95/36pt#; +comma_depth#:=50/36pt#; +desc_depth#:=75.8/36pt#; +crisp#:=0pt#; +tiny#:=0pt#; +fine#:=0pt#; +thin_join#:=17/36pt#; +hair#:=30/36pt#; +stem#:=30/36pt#; +curve#:=30/36pt#; +ess#:=30/36pt#; +flare#:=27/36pt#; +dot_size#:=30/36pt#; +cap_hair#:=30/36pt#; +cap_stem#:=32/36pt#; +cap_curve#:=32/36pt#; +cap_ess#:=32/36pt#; +rule_thickness#:=.4pt#; +dish#:=0pt#; +bracket#:=0pt#; +jut#:=0pt#; +cap_jut#:=0pt#; +beak_jut#:=0pt#; +beak#:=.5/36pt#; +vair#:=22/36pt#; +notch_cut#:=18/36pt#; +bar#:=21/36pt#; +slab#:=21/36pt#; +cap_bar#:=22/36pt#; +cap_band#:=20/36pt#; +cap_notch_cut#:=25/36pt#; +serif_drop#:=2/36pt#; +stem_corr#:=1/36pt#; +vair_corr#:=1/36pt#; +apex_corr#:=5/36pt#; +o#:=6/36pt#; +apex_o#:=0pt#; +slant:=1/6; +fudge:=.96; +math_spread:=0; +superness:=1/sqrt2; +superpull:=1/20; +beak_darkness:=0; +ligs:=2; +square_dots:=true; +hefty:=true; +serifs:=false; +monospace:=false; +low_asterisk:=false; +math_fitting:=false; +sc.u#:=15.56/36pt#; +sc.letter_fit#:=2.4/36pt#; + +generate tipx % switch to the driver file diff --git a/Master/texmf-dist/fonts/source/public/tipa/xipxsl10.mf b/Master/texmf-dist/fonts/source/public/tipa/xipxsl10.mf new file mode 100644 index 00000000000..c03f4a6ecc5 --- /dev/null +++ b/Master/texmf-dist/fonts/source/public/tipa/xipxsl10.mf @@ -0,0 +1,92 @@ +% xipxsl10.mf: XIPX Slanted Roman 10 point parameter file +% Copyright 1996-2003 FUKUI Rei +% +% This program may be distributed and/or modified under the +% conditions of the LaTeX Project Public License, either version 1.2 +% of this license or (at your option) any later version. +% The latest version of this license is in +% http://www.latex-project.org/lppl.txt +% and version 1.2 or later is part of all distributions of LaTeX +% version 1999/12/01 or later. +% +% This program consists of all files listed in Manifest.txt. +% +% Version 1.2 2003/01/01 +% +% This file is based on: +% Computer Modern font series by D. E. Knuth and +% TSIPA by KOBAYASHI Hajime, FUKUI Rei and SHIRAKAWA Shun. + +if unknown cmbase: input cmbase fi +if unknown tipabase: input tipabase fi + +font_identifier:="XIPXSL"; font_size 10pt#; + +Times_Compat:=true; +if Times_Compat: input tipatr fi + +u#:=18/36pt#; +width_adj#:=0pt#; +serif_fit#:=0pt#; +cap_serif_fit#:=5/36pt#; +letter_fit#:=0pt#; +body_height#:=270/36pt#; +asc_height#:=245.5/36pt#; +cap_height#:=240.5/36pt#; +fig_height#:=232/36pt#; +x_height#:=162/36pt#; +math_axis#:=90/36pt#; +bar_height#:=106/36pt#; +comma_depth#:=50.7/36pt#; +desc_depth#:=77.9/36pt#; +crisp#:=0pt#; +tiny#:=8/36pt#; +fine#:=7/36pt#; +thin_join#:=8/36pt#; +hair#:=9/36pt#; +stem#:=30/36pt#; +curve#:=34/36pt#; +ess#:=30/36pt#; +flare#:=27/36pt#; +dot_size#:=32/36pt#; +cap_hair#:=11/36pt#; +cap_stem#:=36/36pt#; +cap_curve#:=42/36pt#; +cap_ess#:=39/36pt#; +rule_thickness#:=.4pt#; +dish#:=0pt#; +bracket#:=22/36pt#; +jut#:=26/36pt#; +cap_jut#:=37/36pt#; +beak_jut#:=10/36pt#; +beak#:=70/36pt#; +vair#:=9/36pt#; +notch_cut#:=10pt#; +bar#:=11/36pt#; +slab#:=1.5/36pt#; +cap_bar#:=11/36pt#; +cap_band#:=11/36pt#; +cap_notch_cut#:=10pt#; +serif_drop#:=15/36pt#; +stem_corr#:=1/36pt#; +vair_corr#:=1/36pt#; +apex_corr#:=0pt#; +o#:=6/36pt#; +apex_o#:=6/36pt#; +slant:=1/6; +fudge:=1; +math_spread:=0; +superness:=1/sqrt2; +superpull:=1/6; +beak_darkness:=11/30; +ligs:=2; +square_dots:=false; +hefty:=false; +serifs:=true; +monospace:=false; +low_asterisk:=false; +math_fitting:=false; +sc.u#:=14/36pt#; +sc.letter_fit#:=2.4/36pt#; + +generate tipx % switch to the driver file diff --git a/Master/texmf-dist/fonts/source/public/tipa/xipxss10.mf b/Master/texmf-dist/fonts/source/public/tipa/xipxss10.mf new file mode 100644 index 00000000000..b92e259e26a --- /dev/null +++ b/Master/texmf-dist/fonts/source/public/tipa/xipxss10.mf @@ -0,0 +1,92 @@ +% xipxss10.mf: XIPX Sans Serif 10 point parameter file +% Copyright 1996-2003 FUKUI Rei +% +% This program may be distributed and/or modified under the +% conditions of the LaTeX Project Public License, either version 1.2 +% of this license or (at your option) any later version. +% The latest version of this license is in +% http://www.latex-project.org/lppl.txt +% and version 1.2 or later is part of all distributions of LaTeX +% version 1999/12/01 or later. +% +% This program consists of all files listed in Manifest.txt. +% +% Version 1.2 2003/01/01 +% +% This file is based on: +% Computer Modern font series by D. E. Knuth and +% TSIPA by KOBAYASHI Hajime, FUKUI Rei and SHIRAKAWA Shun. + +if unknown cmbase: input cmbase fi +if unknown tipabase: input tipabase fi + +font_identifier:="XIPXSS"; font_size 10pt#; + +Times_Compat:=true; +if Times_Compat: input tipatr fi + +u#:=20/36pt#; +width_adj#:=15/36pt#; +serif_fit#:=-7/36pt#; +cap_serif_fit#:=-10/36pt#; +letter_fit#:=0pt#; +body_height#:=270/36pt#; +asc_height#:=260/36pt#; +cap_height#:=260/36pt#; +fig_height#:=236/36pt#; +x_height#:=188.28/36pt#; +math_axis#:=90/36pt#; +bar_height#:=95/36pt#; +comma_depth#:=50/36pt#; +desc_depth#:=75.8/36pt#; +crisp#:=0pt#; +tiny#:=0pt#; +fine#:=0pt#; +thin_join#:=17/36pt#; +hair#:=30/36pt#; +stem#:=30/36pt#; +curve#:=30/36pt#; +ess#:=30/36pt#; +flare#:=27/36pt#; +dot_size#:=30/36pt#; +cap_hair#:=30/36pt#; +cap_stem#:=32/36pt#; +cap_curve#:=32/36pt#; +cap_ess#:=32/36pt#; +rule_thickness#:=.4pt#; +dish#:=0pt#; +bracket#:=0pt#; +jut#:=0pt#; +cap_jut#:=0pt#; +beak_jut#:=0pt#; +beak#:=.5/36pt#; +vair#:=22/36pt#; +notch_cut#:=18/36pt#; +bar#:=21/36pt#; +slab#:=21/36pt#; +cap_bar#:=22/36pt#; +cap_band#:=20/36pt#; +cap_notch_cut#:=25/36pt#; +serif_drop#:=2/36pt#; +stem_corr#:=1/36pt#; +vair_corr#:=1/36pt#; +apex_corr#:=5/36pt#; +o#:=6/36pt#; +apex_o#:=0pt#; +slant:=0; +fudge:=.96; +math_spread:=0; +superness:=1/sqrt2; +superpull:=1/20; +beak_darkness:=0; +ligs:=2; +square_dots:=true; +hefty:=true; +serifs:=false; +monospace:=false; +low_asterisk:=false; +math_fitting:=false; +sc.u#:=15.56/36pt#; +sc.letter_fit#:=2.4/36pt#; + +generate tipx % switch to the driver file |