All, Can someone give me a short test file to see if palatino will work on my system (GWTeX and Tiger). David
David Arnold wrote:
All,
Can someone give me a short test file to see if palatino will work on my system (GWTeX and Tiger).
For a texfont-installed version of the metrics, this should work: \usetypescript[palatino][texnansi] \switchtobodyfont[palatino] \starttext Hello World! \stoptext For the psnfss (LaTeX) version, the minimal file is this: \usetypescript[adobekb][8r,ec] \usetypescript[palatino][ec] \switchtobodyfont[palatino] \starttext Hello World! \stoptext Greetings, Taco
Taco et al, OK, this didn't work. Log file attached. \usetypescript[palatino][texnansi] \switchtobodyfont[palatino] \starttext Hello World! \stoptext This one worked. \usetypescript[adobekb][8r,ec] \usetypescript[palatino][ec] \switchtobodyfont[palatino] \starttext Hello World! \stoptext Two questions: 1. I don't know why one worked and the other didn't. What files could I look at in my tex tree that would give a hint as to which to use? 2. How can I make the first one work? On Nov 22, 2005, at 1:29 AM, Taco Hoekwater wrote:
\usetypescript[palatino][texnansi] \switchtobodyfont[palatino] \starttext Hello World! \stoptext
David
David Arnold wrote:
Taco et al,
OK, this didn't work. Log file attached.
� �\usetypescript[palatino][texnansi] � \switchtobodyfont[palatino] � \starttext � Hello World! � \stoptext
no logfile -) for that one you need to run texfont --encoding=texnansi --batch type-tmf.dat (since you are familiar with texnansi .... although better than ec, this encoding was never really supported in distributions, only by mouh, which is why you need to generate metrics yourself)
This one worked.
�\usetypescript[adobekb][8r,ec] � \usetypescript[palatino][ec] � \switchtobodyfont[palatino] � \starttext � Hello World! � \stoptext
Two questions:
1. I don't know why one worked and the other didn't. What files could I look at in my tex tree that would give a hint as to which to use?
2. How can I make the first one work?
use texfont (or take cont-fnt from the website) Hans
Hans, When I try: 011-101:/usr/local/teTeX/share/texmf.local/context/data davidarnold$ sudo texfont --encoding=texnansi -batch type-tmf.dat I get a slew of messages similar to this last one: TeXFont 2.2.1 - ConTeXt / PRAGMA ADE 2000-2004 slant factor : 0.167 checking root : TEXMFMAIN processing aborted : unknown subpath ../fonts/afm/urw/ncntrsbk --help : show some more info Some extra information: texexec --verbose reports: applications will use : /usr/local/teTeX/texmf.cnf This last file is attached. On Nov 22, 2005, at 7:32 AM, Hans Hagen wrote:
David Arnold wrote:
Taco et al,
OK, this didn't work. Log file attached.
� �\usetypescript[palatino][texnansi] � \switchtobodyfont[palatino] � \starttext � Hello World! � \stoptext
no logfile -)
for that one you need to run
texfont --encoding=texnansi --batch type-tmf.dat
(since you are familiar with texnansi .... although better than ec, this encoding was never really supported in distributions, only by mouh, which is why you need to generate metrics yourself)
This one worked.
�\usetypescript[adobekb][8r,ec] � \usetypescript[palatino][ec] � \switchtobodyfont[palatino] � \starttext � Hello World! � \stoptext
Two questions:
1. I don't know why one worked and the other didn't. What files could I look at in my tex tree that would give a hint as to which to use?
2. How can I make the first one work?
use texfont (or take cont-fnt from the website)
Hans _______________________________________________ ntg-context mailing list ntg-context@ntg.nl http://www.ntg.nl/mailman/listinfo/ntg-context
David Arnold College of the Redwoods Mathematics Department Eureka, CA 95501 (707) 476-4222 http://online.redwoods.edu/instruct/darnold/
David, Sorry I've been quiet on this front. I've been busy with other, non- ConTeXt things for a while, and am in the process of re-engaging with it. In order to run type-tmf.dat, you need a way around the hard-coded -- rootlist=TEXMFMAIN that's in the .dat file. gwTeX keeps the fonts we need in what it calls the TEXMFTE directory. My brutish workaround is as follows: 1) Go to some temp directory. 2) copy type-tmf into that directory: cp /usr/local/teTeX/share/texmf.local/context/data/type-tmf.dat . 3) munge type-tmf to something more gwTeX friendly: sed "s/TEXMFMAIN/TEXMFTE/" type-tmf.dat > type-tmf-gw.dat (literally: replace every occurrence of TEXMFMAIN with TEXMFTE and put it in type-tmf-gw.dat) 4) run texfont (prepend with sudo if you have errors): texfont type-tmf-gw.dat 5) run it again, if you want the ec encoding: texfont --en=ec type-tmf-gw.dat 6) process one or two test files to see if it really worked: texexec --once --mode=compact texnansi-urw-bookman.tex I hope that works for you. Gerben, Hans, can you think of a way to make this workaround unnecessary? adam David Arnold said this at Tue, 22 Nov 2005 09:08:17 -0800:
Hans,
When I try:
011-101:/usr/local/teTeX/share/texmf.local/context/data davidarnold$ sudo texfont --encoding=texnansi -batch type-tmf.dat
I get a slew of messages similar to this last one:
TeXFont 2.2.1 - ConTeXt / PRAGMA ADE 2000-2004
slant factor : 0.167 checking root : TEXMFMAIN processing aborted : unknown subpath ../fonts/afm/urw/ncntrsbk
--help : show some more info
Some extra information:
texexec --verbose reports:
applications will use : /usr/local/teTeX/texmf.cnf
This last file is attached.
On Nov 22, 2005, at 7:32 AM, Hans Hagen wrote:
David Arnold wrote:
Taco et al,
OK, this didn't work. Log file attached.
? ?\usetypescript[palatino][texnansi] ? \switchtobodyfont[palatino] ? \starttext ? Hello World! ? \stoptext
no logfile -)
for that one you need to run
texfont --encoding=texnansi --batch type-tmf.dat
(since you are familiar with texnansi .... although better than ec, this encoding was never really supported in distributions, only by mouh, which is why you need to generate metrics yourself)
This one worked.
?\usetypescript[adobekb][8r,ec] ? \usetypescript[palatino][ec] ? \switchtobodyfont[palatino] ? \starttext ? Hello World! ? \stoptext
Two questions:
1. I don't know why one worked and the other didn't. What files could I look at in my tex tree that would give a hint as to which to use?
2. How can I make the first one work?
use texfont (or take cont-fnt from the website)
Hans _______________________________________________ ntg-context mailing list ntg-context@ntg.nl http://www.ntg.nl/mailman/listinfo/ntg-context
David Arnold College of the Redwoods Mathematics Department Eureka, CA 95501 (707) 476-4222 http://online.redwoods.edu/instruct/darnold/
_______________________________________________ ntg-context mailing list ntg-context@ntg.nl http://www.ntg.nl/mailman/listinfo/ntg-context
-- =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= Adam T. Lindsay, Computing Dept. atl@comp.lancs.ac.uk Lancaster University, InfoLab21 +44(0)1524/510.514 Lancaster, LA1 4WA, UK Fax:+44(0)1524/510.492 -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
David,
Sorry I've been quiet on this front. I've been busy with other, non- ConTeXt things for a while, and am in the process of re-engaging with it.
In order to run type-tmf.dat, you need a way around the hard-coded -- rootlist=TEXMFMAIN that's in the .dat file. gwTeX keeps the fonts we need in what it calls the TEXMFTE directory. My brutish workaround is as follows:
1) Go to some temp directory. 2) copy type-tmf into that directory: cp /usr/local/teTeX/share/texmf.local/context/data/type-tmf.dat . 3) munge type-tmf to something more gwTeX friendly: sed "s/TEXMFMAIN/TEXMFTE/" type-tmf.dat > type-tmf-gw.dat (literally: replace every occurrence of TEXMFMAIN with TEXMFTE and put it in type-tmf-gw.dat) 4) run texfont (prepend with sudo if you have errors): texfont type-tmf-gw.dat 5) run it again, if you want the ec encoding: texfont --en=ec type-tmf-gw.dat 6) process one or two test files to see if it really worked: texexec --once --mode=compact texnansi-urw-bookman.tex
I hope that works for you. Gerben, Hans, can you think of a way to make this workaround unnecessary?
texfont and/or ConTeXt seems to be keyed to a certain distribution setup. I would say that for ConTeXt that is ok (though as far as I know Hans himself keeps the fonts in TEXMFFONTS or so, so he needs a specialized type-tmf.dat as well). That the default is TeX Live also seems to be fine to me. The easiest way would be if you can give this as an argument to texfonts. Another issue is that fonts can be in multiple trees. Some i-Packages may install in texmf.local (so it can be easily uninstalled), or fonts can be in texmf.tetex or texmf.gwtex). I do not know enough about texfont, but if Hans wants to work with me we can sort that out. After all, I probably have a good example of a non-TL multi-tree setup. BTW, there are support reasons why I do not use the TEXMFMAIN name or the standard texmf-dist directory name. G
Gerben Wierda wrote:
texfont and/or ConTeXt seems to be keyed to a certain distribution setup. I would say that for ConTeXt that is ok (though as far as I know Hans himself keeps the fonts in TEXMFFONTS or so, so he needs a specialized type-tmf.dat as well). That the default is TeX Live also seems to be fine to me.
the reason for a separate three texmffonts is that it permits me to update the main tree (wipe out, copy new) and still have my installed extra fonts (i tried to get a texmffonts var in the regular texmf.cnf but that was rejected: objection "too many trees" while in the meantime we have more trees in tl as well -)
The easiest way would be if you can give this as an argument to texfonts.
Another issue is that fonts can be in multiple trees. Some i-Packages may install in texmf.local (so it can be easily uninstalled), or fonts can be in texmf.tetex or texmf.gwtex). I do not know enough about texfont, but if Hans wants to work with me we can sort that out. After all, I probably have a good example of a non-TL multi-tree setup. BTW, there are support reasons why I do not use the TEXMFMAIN name or the standard texmf-dist directory name.
ah, i see, so the problem is TEXMFMAIN in the dat file before we start hacking ... this --ro stands for --rootlist so it may be a list; so ..... --ro=TEXMFMAIN,TEXMF.TETEX,TEXMF.GWTEX should work; can someone test that? Hans
Gerben Wierda wrote:
texfont and/or ConTeXt seems to be keyed to a certain distribution setup. I would say that for ConTeXt that is ok (though as far as I know Hans himself keeps the fonts in TEXMFFONTS or so, so he needs a specialized type-tmf.dat as well). That the default is TeX Live also seems to be fine to me.
the reason for a separate three texmffonts is that it permits me to update the main tree (wipe out, copy new) and still have my installed extra fonts
(i tried to get a texmffonts var in the regular texmf.cnf but that was rejected: objection "too many trees" while in the meantime we have more trees in tl as well -)
The easiest way would be if you can give this as an argument to texfonts.
Another issue is that fonts can be in multiple trees. Some i-Packages may install in texmf.local (so it can be easily uninstalled), or fonts can be in texmf.tetex or texmf.gwtex). I do not know enough about texfont, but if Hans wants to work with me we can sort that out. After all, I probably have a good example of a non-TL multi-tree setup. BTW, there are support reasons why I do not use the TEXMFMAIN name or the standard texmf-dist directory name.
ah, i see, so the problem is TEXMFMAIN in the dat file
before we start hacking ... this --ro stands for --rootlist so it may be a list; so
..... --ro=TEXMFMAIN,TEXMF.TETEX,TEXMF.GWTEX
--ro=TEXMFMAIN,TEXMFTE,TEXMFGW
should work; can someone test that?
Are these "write" or "read" trees? If it is write, then my guess is the default shoul dbe TEXMFLOCAL because officially that is the place where local site modifications should go. That would also survive an upgrade or install of TeX itself. G
Gerben Wierda wrote:
Are these "write" or "read" trees? If it is write, then my guess is the default shoul dbe TEXMFLOCAL because officially that is the place where local site modifications should go. That would also survive an upgrade or install of TeX itself.
these are read trees; the write trees are set with --fontroot Hans
Hans et al, Changing each occurrence of TEXMFMAIN in type-tmf.dat to TEXMFMAIN,TEXMFTE,TEXMFGW produces the following result: 011-101:~/tmp davidarnold$ sudo texfont type-tmf-gw.dat TeXFont 2.2.1 - ConTeXt / PRAGMA ADE 2000-2004 processing batch file : type-tmf-gw.dat batch line : --en=texnansi --ve=public --co=antp -- so=auto --ro=TEXMFMAIN,TEXMFTE,TEXMFGW TeXFont 2.2.1 - ConTeXt / PRAGMA ADE 2000-2004 checking root : TEXMFMAIN checking root : TEXMFTE mktexlsr: Updating /usr/local/teTeX/share/texmf.local/ls-R... mktexlsr: Done. encoding vector : texnansi vendor name : public source path : /usr/local/teTeX/share/texmf.tetex/fonts/ afm/public/antp font collection : antp texmf font root : /usr/local/tetex/share/texmf.local pdftex map file : texnansi-public-antp.map processing files : all on afm path locating afm files : using pattern /usr/local/teTeX/share/ texmf.tetex/fonts/afm/public/antp/*.afm locating afm files : using pattern * no map file at : /usr/local/teTeX/share/texmf.local/fonts/ map/pdftex/context/texnansi-public-antp.map font identifier : AntykwaPoltawskiego-Bold -> text -> tfm + vf generating raw tfm/vpl : texnansi-raw-antpb (from antpb) generating new vf : texnansi-antpb (from texnansi-raw-antpb) font identifier : AntykwaPoltawskiego-BoldItalic -> text -> tfm + vf generating raw tfm/vpl : texnansi-raw-antpbi (from antpbi) generating new vf : texnansi-antpbi (from texnansi-raw-antpbi) font identifier : AntykwaPoltawskiego-Regular -> text -> tfm + vf generating raw tfm/vpl : texnansi-raw-antpr (from antpr) generating new vf : texnansi-antpr (from texnansi-raw-antpr) font identifier : AntykwaPoltawskiego-Italic -> text -> tfm + vf generating raw tfm/vpl : texnansi-raw-antpri (from antpri) generating new vf : texnansi-antpri (from texnansi-raw-antpri) updating map file : texnansi-public-antp.map generating : ls-r databases mktexlsr: Updating /usr/local/teTeX/share/texmf.local/ls-R... mktexlsr: Done. batch line : --en=texnansi --ve=urw --co=helvetica -- so=auto --ro=TEXMFMAIN,TEXMFTE,TEXMFGW TeXFont 2.2.1 - ConTeXt / PRAGMA ADE 2000-2004 checking root : TEXMFMAIN checking root : TEXMFTE mktexlsr: Updating /usr/local/teTeX/share/texmf.local/ls-R... mktexlsr: Done. encoding vector : texnansi vendor name : urw source path : /usr/local/teTeX/share/texmf.tetex/fonts/ afm/urw/helvetic font collection : helvetic texmf font root : /usr/local/tetex/share/texmf.local pdftex map file : texnansi-urw-helvetica.map processing files : all on afm path locating afm files : using pattern /usr/local/teTeX/share/ texmf.tetex/fonts/afm/urw/helvetic/*.afm locating afm files : using pattern * no map file at : /usr/local/teTeX/share/texmf.local/fonts/ map/pdftex/context/texnansi-urw-helvetica.map font identifier : NimbusSanL-Bold -> text -> tfm + vf generating raw tfm/vpl : texnansi-raw-uhvb8a (from uhvb8a) generating new vf : texnansi-uhvb8a (from texnansi-raw-uhvb8a) font identifier : NimbusSanL-BoldCond -> text -> tfm + vf generating raw tfm/vpl : texnansi-raw-uhvb8ac (from uhvb8ac) generating new vf : texnansi-uhvb8ac (from texnansi-raw-uhvb8ac) font identifier : NimbusSanL-BoldItal -> text -> tfm + vf generating raw tfm/vpl : texnansi-raw-uhvbo8a (from uhvbo8a) generating new vf : texnansi-uhvbo8a (from texnansi-raw-uhvbo8a) font identifier : NimbusSanL-BoldCondItal -> text -> tfm + vf generating raw tfm/vpl : texnansi-raw-uhvbo8ac (from uhvbo8ac) generating new vf : texnansi-uhvbo8ac (from texnansi-raw-uhvbo8ac) font identifier : NimbusSanL-Regu -> text -> tfm + vf generating raw tfm/vpl : texnansi-raw-uhvr8a (from uhvr8a) generating new vf : texnansi-uhvr8a (from texnansi-raw-uhvr8a) font identifier : NimbusSanL-ReguCond -> text -> tfm + vf generating raw tfm/vpl : texnansi-raw-uhvr8ac (from uhvr8ac) generating new vf : texnansi-uhvr8ac (from texnansi-raw-uhvr8ac) font identifier : NimbusSanL-ReguItal -> text -> tfm + vf generating raw tfm/vpl : texnansi-raw-uhvro8a (from uhvro8a) generating new vf : texnansi-uhvro8a (from texnansi-raw-uhvro8a) font identifier : NimbusSanL-ReguCondItal -> text -> tfm + vf generating raw tfm/vpl : texnansi-raw-uhvro8ac (from uhvro8ac) generating new vf : texnansi-uhvro8ac (from texnansi-raw-uhvro8ac) updating map file : texnansi-urw-helvetica.map generating : ls-r databases mktexlsr: Updating /usr/local/teTeX/share/texmf.local/ls-R... mktexlsr: Done. batch line : --en=texnansi --ve=urw --co=courier -- so=auto --ro=TEXMFMAIN,TEXMFTE,TEXMFGW TeXFont 2.2.1 - ConTeXt / PRAGMA ADE 2000-2004 checking root : TEXMFMAIN checking root : TEXMFTE mktexlsr: Updating /usr/local/teTeX/share/texmf.local/ls-R... mktexlsr: Done. encoding vector : texnansi vendor name : urw source path : /usr/local/teTeX/share/texmf.tetex/fonts/ afm/urw/courier font collection : courier texmf font root : /usr/local/tetex/share/texmf.local pdftex map file : texnansi-urw-courier.map processing files : all on afm path locating afm files : using pattern /usr/local/teTeX/share/ texmf.tetex/fonts/afm/urw/courier/*.afm locating afm files : using pattern * no map file at : /usr/local/teTeX/share/texmf.local/fonts/ map/pdftex/context/texnansi-urw-courier.map font identifier : NimbusMonL-Bold -> text -> tfm + vf generating raw tfm/vpl : texnansi-raw-ucrb8a (from ucrb8a) generating new vf : texnansi-ucrb8a (from texnansi-raw-ucrb8a) font identifier : NimbusMonL-BoldObli -> text -> tfm + vf generating raw tfm/vpl : texnansi-raw-ucrbo8a (from ucrbo8a) generating new vf : texnansi-ucrbo8a (from texnansi-raw-ucrbo8a) font identifier : NimbusMonL-Regu -> text -> tfm + vf generating raw tfm/vpl : texnansi-raw-ucrr8a (from ucrr8a) generating new vf : texnansi-ucrr8a (from texnansi-raw-ucrr8a) font identifier : NimbusMonL-ReguObli -> text -> tfm + vf generating raw tfm/vpl : texnansi-raw-ucrro8a (from ucrro8a) generating new vf : texnansi-ucrro8a (from texnansi-raw-ucrro8a) updating map file : texnansi-urw-courier.map generating : ls-r databases mktexlsr: Updating /usr/local/teTeX/share/texmf.local/ls-R... mktexlsr: Done. batch line : --en=texnansi --ve=urw --co=zapfchan -- so=auto --ro=TEXMFMAIN,TEXMFTE,TEXMFGW TeXFont 2.2.1 - ConTeXt / PRAGMA ADE 2000-2004 checking root : TEXMFMAIN checking root : TEXMFTE mktexlsr: Updating /usr/local/teTeX/share/texmf.local/ls-R... mktexlsr: Done. encoding vector : texnansi vendor name : urw source path : /usr/local/teTeX/share/texmf.tetex/fonts/ afm/urw/zapfchan font collection : zapfchan texmf font root : /usr/local/tetex/share/texmf.local pdftex map file : texnansi-urw-zapfchan.map processing files : all on afm path locating afm files : using pattern /usr/local/teTeX/share/ texmf.tetex/fonts/afm/urw/zapfchan/*.afm locating afm files : using pattern * no map file at : /usr/local/teTeX/share/texmf.local/fonts/ map/pdftex/context/texnansi-urw-zapfchan.map font identifier : URWChanceryL-MediItal -> text -> tfm + vf generating raw tfm/vpl : texnansi-raw-uzcmi8a (from uzcmi8a) generating new vf : texnansi-uzcmi8a (from texnansi-raw-uzcmi8a) updating map file : texnansi-urw-zapfchan.map generating : ls-r databases mktexlsr: Updating /usr/local/teTeX/share/texmf.local/ls-R... mktexlsr: Done. batch line : --en=texnansi --ve=urw --co=times --so=auto --ro=TEXMFMAIN,TEXMFTE,TEXMFGW TeXFont 2.2.1 - ConTeXt / PRAGMA ADE 2000-2004 checking root : TEXMFMAIN checking root : TEXMFTE mktexlsr: Updating /usr/local/teTeX/share/texmf.local/ls-R... mktexlsr: Done. encoding vector : texnansi vendor name : urw source path : /usr/local/teTeX/share/texmf.tetex/fonts/ afm/urw/times font collection : times texmf font root : /usr/local/tetex/share/texmf.local pdftex map file : texnansi-urw-times.map processing files : all on afm path locating afm files : using pattern /usr/local/teTeX/share/ texmf.tetex/fonts/afm/urw/times/*.afm locating afm files : using pattern * no map file at : /usr/local/teTeX/share/texmf.local/fonts/ map/pdftex/context/texnansi-urw-times.map font identifier : NimbusRomNo9L-Medi -> text -> tfm + vf generating raw tfm/vpl : texnansi-raw-utmb8a (from utmb8a) generating new vf : texnansi-utmb8a (from texnansi-raw-utmb8a) font identifier : NimbusRomNo9L-MediItal -> text -> tfm + vf generating raw tfm/vpl : texnansi-raw-utmbi8a (from utmbi8a) generating new vf : texnansi-utmbi8a (from texnansi-raw-utmbi8a) font identifier : NimbusRomNo9L-Regu -> text -> tfm + vf generating raw tfm/vpl : texnansi-raw-utmr8a (from utmr8a) generating new vf : texnansi-utmr8a (from texnansi-raw-utmr8a) font identifier : NimbusRomNo9L-ReguItal -> text -> tfm + vf generating raw tfm/vpl : texnansi-raw-utmri8a (from utmri8a) generating new vf : texnansi-utmri8a (from texnansi-raw-utmri8a) updating map file : texnansi-urw-times.map generating : ls-r databases mktexlsr: Updating /usr/local/teTeX/share/texmf.local/ls-R... mktexlsr: Done. batch line : --en=texnansi --ve=urw --co=times --so=auto --ca=* utmr8a --ro=TEXMFMAIN,TEXMFTE,TEXMFGW TeXFont 2.2.1 - ConTeXt / PRAGMA ADE 2000-2004 caps factor : 0.800 checking root : TEXMFMAIN checking root : TEXMFTE mktexlsr: Updating /usr/local/teTeX/share/texmf.local/ls-R... mktexlsr: Done. encoding vector : texnansi vendor name : urw source path : /usr/local/teTeX/share/texmf.tetex/fonts/ afm/urw/times font collection : times texmf font root : /usr/local/tetex/share/texmf.local pdftex map file : texnansi-urw-times.map processing files : all in pattern utmr8a locating afm files : using pattern /usr/local/teTeX/share/ texmf.tetex/fonts/afm/urw/times/utmr8a.afm locating afm files : using pattern utmr8a extending map file : /usr/local/teTeX/share/texmf.local/fonts/ map/pdftex/context/texnansi-urw-times.map font identifier : NimbusRomNo9L-Regu-Caps -> text -> tfm + vf generating raw tfm/vpl : texnansi-raw-utmr8a-capitalized-800 (from utmr8a) generating new vf : texnansi-utmr8a-capitalized-800 (from texnansi-raw-utmr8a) updating map file : texnansi-urw-times.map generating : ls-r databases mktexlsr: Updating /usr/local/teTeX/share/texmf.local/ls-R... mktexlsr: Done. batch line : --en=texnansi --ve=urw --co=times --so=auto --sl=* utmr8a --ro=TEXMFMAIN,TEXMFTE,TEXMFGW TeXFont 2.2.1 - ConTeXt / PRAGMA ADE 2000-2004 slant factor : 0.167 checking root : TEXMFMAIN checking root : TEXMFTE mktexlsr: Updating /usr/local/teTeX/share/texmf.local/ls-R... mktexlsr: Done. encoding vector : texnansi vendor name : urw source path : /usr/local/teTeX/share/texmf.tetex/fonts/ afm/urw/times font collection : times texmf font root : /usr/local/tetex/share/texmf.local pdftex map file : texnansi-urw-times.map processing files : all in pattern utmr8a locating afm files : using pattern /usr/local/teTeX/share/ texmf.tetex/fonts/afm/urw/times/utmr8a.afm locating afm files : using pattern utmr8a extending map file : /usr/local/teTeX/share/texmf.local/fonts/ map/pdftex/context/texnansi-urw-times.map font identifier : NimbusRomNo9L-Regu-Slanted -> text -> tfm + vf generating raw tfm/vpl : texnansi-raw-utmr8a-slanted-167 (from utmr8a) generating new vf : texnansi-utmr8a-slanted-167 (from texnansi- raw-utmr8a) updating map file : texnansi-urw-times.map generating : ls-r databases mktexlsr: Updating /usr/local/teTeX/share/texmf.local/ls-R... mktexlsr: Done. batch line : --en=texnansi --ve=urw --co=times --so=auto --sl=* utmb8a --ro=TEXMFMAIN,TEXMFTE,TEXMFGW TeXFont 2.2.1 - ConTeXt / PRAGMA ADE 2000-2004 slant factor : 0.167 checking root : TEXMFMAIN checking root : TEXMFTE mktexlsr: Updating /usr/local/teTeX/share/texmf.local/ls-R... mktexlsr: Done. encoding vector : texnansi vendor name : urw source path : /usr/local/teTeX/share/texmf.tetex/fonts/ afm/urw/times font collection : times texmf font root : /usr/local/tetex/share/texmf.local pdftex map file : texnansi-urw-times.map processing files : all in pattern utmb8a locating afm files : using pattern /usr/local/teTeX/share/ texmf.tetex/fonts/afm/urw/times/utmb8a.afm locating afm files : using pattern utmb8a extending map file : /usr/local/teTeX/share/texmf.local/fonts/ map/pdftex/context/texnansi-urw-times.map font identifier : NimbusRomNo9L-Medi-Slanted -> text -> tfm + vf generating raw tfm/vpl : texnansi-raw-utmb8a-slanted-167 (from utmb8a) generating new vf : texnansi-utmb8a-slanted-167 (from texnansi- raw-utmb8a) updating map file : texnansi-urw-times.map generating : ls-r databases mktexlsr: Updating /usr/local/teTeX/share/texmf.local/ls-R... mktexlsr: Done. batch line : --en=texnansi --ve=urw --co=palatino -- so=auto --ro=TEXMFMAIN,TEXMFTE,TEXMFGW TeXFont 2.2.1 - ConTeXt / PRAGMA ADE 2000-2004 checking root : TEXMFMAIN checking root : TEXMFTE mktexlsr: Updating /usr/local/teTeX/share/texmf.local/ls-R... mktexlsr: Done. encoding vector : texnansi vendor name : urw source path : /usr/local/teTeX/share/texmf.tetex/fonts/ afm/urw/palatino font collection : palatino texmf font root : /usr/local/tetex/share/texmf.local pdftex map file : texnansi-urw-palatino.map processing files : all on afm path locating afm files : using pattern /usr/local/teTeX/share/ texmf.tetex/fonts/afm/urw/palatino/*.afm locating afm files : using pattern * extending map file : /usr/local/teTeX/share/texmf.local/fonts/ map/pdftex/context/texnansi-urw-palatino.map font identifier : URWPalladioL-Bold -> text -> tfm + vf generating raw tfm/vpl : texnansi-raw-uplb8a (from uplb8a) generating new vf : texnansi-uplb8a (from texnansi-raw-uplb8a) font identifier : URWPalladioL-BoldItal -> text -> tfm + vf generating raw tfm/vpl : texnansi-raw-uplbi8a (from uplbi8a) generating new vf : texnansi-uplbi8a (from texnansi-raw-uplbi8a) font identifier : URWPalladioL-Roma -> text -> tfm + vf generating raw tfm/vpl : texnansi-raw-uplr8a (from uplr8a) generating new vf : texnansi-uplr8a (from texnansi-raw-uplr8a) font identifier : URWPalladioL-Ital -> text -> tfm + vf generating raw tfm/vpl : texnansi-raw-uplri8a (from uplri8a) generating new vf : texnansi-uplri8a (from texnansi-raw-uplri8a) updating map file : texnansi-urw-palatino.map generating : ls-r databases mktexlsr: Updating /usr/local/teTeX/share/texmf.local/ls-R... mktexlsr: Done. batch line : --en=texnansi --ve=urw --co=palatino -- so=auto --ca=* uplr8a --ro=TEXMFMAIN,TEXMFTE,TEXMFGW TeXFont 2.2.1 - ConTeXt / PRAGMA ADE 2000-2004 caps factor : 0.800 checking root : TEXMFMAIN checking root : TEXMFTE mktexlsr: Updating /usr/local/teTeX/share/texmf.local/ls-R... mktexlsr: Done. encoding vector : texnansi vendor name : urw source path : /usr/local/teTeX/share/texmf.tetex/fonts/ afm/urw/palatino font collection : palatino texmf font root : /usr/local/tetex/share/texmf.local pdftex map file : texnansi-urw-palatino.map processing files : all in pattern uplr8a locating afm files : using pattern /usr/local/teTeX/share/ texmf.tetex/fonts/afm/urw/palatino/uplr8a.afm locating afm files : using pattern uplr8a extending map file : /usr/local/teTeX/share/texmf.local/fonts/ map/pdftex/context/texnansi-urw-palatino.map font identifier : URWPalladioL-Roma-Caps -> text -> tfm + vf generating raw tfm/vpl : texnansi-raw-uplr8a-capitalized-800 (from uplr8a) generating new vf : texnansi-uplr8a-capitalized-800 (from texnansi-raw-uplr8a) updating map file : texnansi-urw-palatino.map generating : ls-r databases mktexlsr: Updating /usr/local/teTeX/share/texmf.local/ls-R... mktexlsr: Done. batch line : --en=texnansi --ve=urw --co=palatino -- so=auto --sl=* uplr8a --ro=TEXMFMAIN,TEXMFTE,TEXMFGW TeXFont 2.2.1 - ConTeXt / PRAGMA ADE 2000-2004 slant factor : 0.167 checking root : TEXMFMAIN checking root : TEXMFTE mktexlsr: Updating /usr/local/teTeX/share/texmf.local/ls-R... mktexlsr: Done. encoding vector : texnansi vendor name : urw source path : /usr/local/teTeX/share/texmf.tetex/fonts/ afm/urw/palatino font collection : palatino texmf font root : /usr/local/tetex/share/texmf.local pdftex map file : texnansi-urw-palatino.map processing files : all in pattern uplr8a locating afm files : using pattern /usr/local/teTeX/share/ texmf.tetex/fonts/afm/urw/palatino/uplr8a.afm locating afm files : using pattern uplr8a extending map file : /usr/local/teTeX/share/texmf.local/fonts/ map/pdftex/context/texnansi-urw-palatino.map font identifier : URWPalladioL-Roma-Slanted -> text -> tfm + vf generating raw tfm/vpl : texnansi-raw-uplr8a-slanted-167 (from uplr8a) generating new vf : texnansi-uplr8a-slanted-167 (from texnansi- raw-uplr8a) updating map file : texnansi-urw-palatino.map generating : ls-r databases mktexlsr: Updating /usr/local/teTeX/share/texmf.local/ls-R... mktexlsr: Done. batch line : --en=texnansi --ve=urw --co=palatino -- so=auto --sl=* uplb8a --ro=TEXMFMAIN,TEXMFTE,TEXMFGW TeXFont 2.2.1 - ConTeXt / PRAGMA ADE 2000-2004 slant factor : 0.167 checking root : TEXMFMAIN checking root : TEXMFTE mktexlsr: Updating /usr/local/teTeX/share/texmf.local/ls-R... mktexlsr: Done. encoding vector : texnansi vendor name : urw source path : /usr/local/teTeX/share/texmf.tetex/fonts/ afm/urw/palatino font collection : palatino texmf font root : /usr/local/tetex/share/texmf.local pdftex map file : texnansi-urw-palatino.map processing files : all in pattern uplb8a locating afm files : using pattern /usr/local/teTeX/share/ texmf.tetex/fonts/afm/urw/palatino/uplb8a.afm locating afm files : using pattern uplb8a extending map file : /usr/local/teTeX/share/texmf.local/fonts/ map/pdftex/context/texnansi-urw-palatino.map font identifier : URWPalladioL-Bold-Slanted -> text -> tfm + vf generating raw tfm/vpl : texnansi-raw-uplb8a-slanted-167 (from uplb8a) generating new vf : texnansi-uplb8a-slanted-167 (from texnansi- raw-uplb8a) updating map file : texnansi-urw-palatino.map generating : ls-r databases mktexlsr: Updating /usr/local/teTeX/share/texmf.local/ls-R... mktexlsr: Done. batch line : --en=texnansi --ve=adobe --co=utopia -- so=auto --ro=TEXMFMAIN,TEXMFTE,TEXMFGW TeXFont 2.2.1 - ConTeXt / PRAGMA ADE 2000-2004 checking root : TEXMFMAIN checking root : TEXMFTE checking root : TEXMFGW mktexlsr: Updating /usr/local/teTeX/share/texmf.local/ls-R... mktexlsr: Done. encoding vector : texnansi vendor name : adobe source path : /usr/local/teTeX/share/texmf.gwtex/fonts/ afm/adobe/utopia font collection : utopia texmf font root : /usr/local/tetex/share/texmf.local pdftex map file : texnansi-adobe-utopia.map processing files : all on afm path locating afm files : using pattern /usr/local/teTeX/share/ texmf.gwtex/fonts/afm/adobe/utopia/*.afm locating afm files : using pattern * no map file at : /usr/local/teTeX/share/texmf.local/fonts/ map/pdftex/context/texnansi-adobe-utopia.map font identifier : Utopia-Bold -> text -> tfm + vf generating raw tfm/vpl : texnansi-raw-putb8a (from putb8a) generating new vf : texnansi-putb8a (from texnansi-raw-putb8a) font identifier : Utopia-BoldItalic -> text -> tfm + vf generating raw tfm/vpl : texnansi-raw-putbi8a (from putbi8a) generating new vf : texnansi-putbi8a (from texnansi-raw-putbi8a) font identifier : Utopia-Regular -> text -> tfm + vf generating raw tfm/vpl : texnansi-raw-putr8a (from putr8a) generating new vf : texnansi-putr8a (from texnansi-raw-putr8a) font identifier : Utopia-Italic -> text -> tfm + vf generating raw tfm/vpl : texnansi-raw-putri8a (from putri8a) generating new vf : texnansi-putri8a (from texnansi-raw-putri8a) updating map file : texnansi-adobe-utopia.map generating : ls-r databases mktexlsr: Updating /usr/local/teTeX/share/texmf.local/ls-R... mktexlsr: Done. batch line : --en=texnansi --ve=adobe --co=utopia -- so=auto --ca=* putr8a --ro=TEXMFMAIN,TEXMFTE,TEXMFGW TeXFont 2.2.1 - ConTeXt / PRAGMA ADE 2000-2004 caps factor : 0.800 checking root : TEXMFMAIN checking root : TEXMFTE checking root : TEXMFGW mktexlsr: Updating /usr/local/teTeX/share/texmf.local/ls-R... mktexlsr: Done. encoding vector : texnansi vendor name : adobe source path : /usr/local/teTeX/share/texmf.gwtex/fonts/ afm/adobe/utopia font collection : utopia texmf font root : /usr/local/tetex/share/texmf.local pdftex map file : texnansi-adobe-utopia.map processing files : all in pattern putr8a locating afm files : using pattern /usr/local/teTeX/share/ texmf.gwtex/fonts/afm/adobe/utopia/putr8a.afm locating afm files : using pattern putr8a extending map file : /usr/local/teTeX/share/texmf.local/fonts/ map/pdftex/context/texnansi-adobe-utopia.map font identifier : Utopia-Regular-Caps -> text -> tfm + vf generating raw tfm/vpl : texnansi-raw-putr8a-capitalized-800 (from putr8a) generating new vf : texnansi-putr8a-capitalized-800 (from texnansi-raw-putr8a) updating map file : texnansi-adobe-utopia.map generating : ls-r databases mktexlsr: Updating /usr/local/teTeX/share/texmf.local/ls-R... mktexlsr: Done. batch line : --en=texnansi --ve=adobe --co=utopia -- so=auto --sl=* putr8a --ro=TEXMFMAIN,TEXMFTE,TEXMFGW TeXFont 2.2.1 - ConTeXt / PRAGMA ADE 2000-2004 slant factor : 0.167 checking root : TEXMFMAIN checking root : TEXMFTE checking root : TEXMFGW mktexlsr: Updating /usr/local/teTeX/share/texmf.local/ls-R... mktexlsr: Done. encoding vector : texnansi vendor name : adobe source path : /usr/local/teTeX/share/texmf.gwtex/fonts/ afm/adobe/utopia font collection : utopia texmf font root : /usr/local/tetex/share/texmf.local pdftex map file : texnansi-adobe-utopia.map processing files : all in pattern putr8a locating afm files : using pattern /usr/local/teTeX/share/ texmf.gwtex/fonts/afm/adobe/utopia/putr8a.afm locating afm files : using pattern putr8a extending map file : /usr/local/teTeX/share/texmf.local/fonts/ map/pdftex/context/texnansi-adobe-utopia.map font identifier : Utopia-Regular-Slanted -> text -> tfm + vf generating raw tfm/vpl : texnansi-raw-putr8a-slanted-167 (from putr8a) generating new vf : texnansi-putr8a-slanted-167 (from texnansi- raw-putr8a) updating map file : texnansi-adobe-utopia.map generating : ls-r databases mktexlsr: Updating /usr/local/teTeX/share/texmf.local/ls-R... mktexlsr: Done. batch line : --en=texnansi --ve=adobe --co=utopia -- so=auto --sl=* putb8a --ro=TEXMFMAIN,TEXMFTE,TEXMFGW TeXFont 2.2.1 - ConTeXt / PRAGMA ADE 2000-2004 slant factor : 0.167 checking root : TEXMFMAIN checking root : TEXMFTE checking root : TEXMFGW mktexlsr: Updating /usr/local/teTeX/share/texmf.local/ls-R... mktexlsr: Done. encoding vector : texnansi vendor name : adobe source path : /usr/local/teTeX/share/texmf.gwtex/fonts/ afm/adobe/utopia font collection : utopia texmf font root : /usr/local/tetex/share/texmf.local pdftex map file : texnansi-adobe-utopia.map processing files : all in pattern putb8a locating afm files : using pattern /usr/local/teTeX/share/ texmf.gwtex/fonts/afm/adobe/utopia/putb8a.afm locating afm files : using pattern putb8a extending map file : /usr/local/teTeX/share/texmf.local/fonts/ map/pdftex/context/texnansi-adobe-utopia.map font identifier : Utopia-Bold-Slanted -> text -> tfm + vf generating raw tfm/vpl : texnansi-raw-putb8a-slanted-167 (from putb8a) generating new vf : texnansi-putb8a-slanted-167 (from texnansi- raw-putb8a) updating map file : texnansi-adobe-utopia.map generating : ls-r databases mktexlsr: Updating /usr/local/teTeX/share/texmf.local/ls-R... mktexlsr: Done. batch line : --en=texnansi --ve=adobe --co=utopia -- so=auto --ro=TEXMFEXTRA TeXFont 2.2.1 - ConTeXt / PRAGMA ADE 2000-2004 checking root : TEXMFEXTRA processing aborted : unknown subpath ../fonts/afm/adobe/utopia --help : show some more info batch line : --en=texnansi --ve=adobe --co=utopia -- so=auto --ca=* putr8a --ro=TEXMFEXTRA TeXFont 2.2.1 - ConTeXt / PRAGMA ADE 2000-2004 caps factor : 0.800 checking root : TEXMFEXTRA processing aborted : unknown subpath ../fonts/afm/adobe/utopia --help : show some more info batch line : --en=texnansi --ve=adobe --co=utopia -- so=auto --sl=* putr8a --ro=TEXMFEXTRA TeXFont 2.2.1 - ConTeXt / PRAGMA ADE 2000-2004 slant factor : 0.167 checking root : TEXMFEXTRA processing aborted : unknown subpath ../fonts/afm/adobe/utopia --help : show some more info batch line : --en=texnansi --ve=adobe --co=utopia -- so=auto --sl=* putb8a --ro=TEXMFEXTRA TeXFont 2.2.1 - ConTeXt / PRAGMA ADE 2000-2004 slant factor : 0.167 checking root : TEXMFEXTRA processing aborted : unknown subpath ../fonts/afm/adobe/utopia --help : show some more info batch line : --en=texnansi --ve=bitstrea --co=charter -- so=auto --ro=TEXMFMAIN,TEXMFTE,TEXMFGW TeXFont 2.2.1 - ConTeXt / PRAGMA ADE 2000-2004 checking root : TEXMFMAIN checking root : TEXMFTE mktexlsr: Updating /usr/local/teTeX/share/texmf.local/ls-R... mktexlsr: Done. encoding vector : texnansi vendor name : bitstrea source path : /usr/local/teTeX/share/texmf.tetex/fonts/ afm/bitstrea/charter font collection : charter texmf font root : /usr/local/tetex/share/texmf.local pdftex map file : texnansi-bitstrea-charter.map processing files : all on afm path locating afm files : using pattern /usr/local/teTeX/share/ texmf.tetex/fonts/afm/bitstrea/charter/*.afm locating afm files : using pattern * extending map file : /usr/local/teTeX/share/texmf.local/fonts/ map/pdftex/context/texnansi-bitstrea-charter.map font identifier : CharterBT-Bold -> text -> tfm + vf generating raw tfm/vpl : texnansi-raw-bchb8a (from bchb8a) generating new vf : texnansi-bchb8a (from texnansi-raw-bchb8a) font identifier : CharterBT-BoldItalic -> text -> tfm + vf generating raw tfm/vpl : texnansi-raw-bchbi8a (from bchbi8a) generating new vf : texnansi-bchbi8a (from texnansi-raw-bchbi8a) font identifier : CharterBT-Roman -> text -> tfm + vf generating raw tfm/vpl : texnansi-raw-bchr8a (from bchr8a) generating new vf : texnansi-bchr8a (from texnansi-raw-bchr8a) font identifier : CharterBT-Italic -> text -> tfm + vf generating raw tfm/vpl : texnansi-raw-bchri8a (from bchri8a) generating new vf : texnansi-bchri8a (from texnansi-raw-bchri8a) updating map file : texnansi-bitstrea-charter.map generating : ls-r databases mktexlsr: Updating /usr/local/teTeX/share/texmf.local/ls-R... mktexlsr: Done. batch line : --en=texnansi --ve=bitstrea --co=charter -- so=auto --ca=* bchr8a --ro=TEXMFMAIN,TEXMFTE,TEXMFGW TeXFont 2.2.1 - ConTeXt / PRAGMA ADE 2000-2004 caps factor : 0.800 checking root : TEXMFMAIN checking root : TEXMFTE mktexlsr: Updating /usr/local/teTeX/share/texmf.local/ls-R... mktexlsr: Done. encoding vector : texnansi vendor name : bitstrea source path : /usr/local/teTeX/share/texmf.tetex/fonts/ afm/bitstrea/charter font collection : charter texmf font root : /usr/local/tetex/share/texmf.local pdftex map file : texnansi-bitstrea-charter.map processing files : all in pattern bchr8a locating afm files : using pattern /usr/local/teTeX/share/ texmf.tetex/fonts/afm/bitstrea/charter/bchr8a.afm locating afm files : using pattern bchr8a extending map file : /usr/local/teTeX/share/texmf.local/fonts/ map/pdftex/context/texnansi-bitstrea-charter.map font identifier : CharterBT-Roman-Caps -> text -> tfm + vf generating raw tfm/vpl : texnansi-raw-bchr8a-capitalized-800 (from bchr8a) generating new vf : texnansi-bchr8a-capitalized-800 (from texnansi-raw-bchr8a) updating map file : texnansi-bitstrea-charter.map generating : ls-r databases mktexlsr: Updating /usr/local/teTeX/share/texmf.local/ls-R... mktexlsr: Done. batch line : --en=texnansi --ve=bitstrea --co=charter -- so=auto --sl=* bchr8a --ro=TEXMFTE TeXFont 2.2.1 - ConTeXt / PRAGMA ADE 2000-2004 slant factor : 0.167 checking root : TEXMFTE mktexlsr: Updating /usr/local/teTeX/share/texmf.local/ls-R... mktexlsr: Done. encoding vector : texnansi vendor name : bitstrea source path : /usr/local/teTeX/share/texmf.tetex/fonts/ afm/bitstrea/charter font collection : charter texmf font root : /usr/local/tetex/share/texmf.local pdftex map file : texnansi-bitstrea-charter.map processing files : all in pattern bchr8a locating afm files : using pattern /usr/local/teTeX/share/ texmf.tetex/fonts/afm/bitstrea/charter/bchr8a.afm locating afm files : using pattern bchr8a extending map file : /usr/local/teTeX/share/texmf.local/fonts/ map/pdftex/context/texnansi-bitstrea-charter.map font identifier : CharterBT-Roman-Slanted -> text -> tfm + vf generating raw tfm/vpl : texnansi-raw-bchr8a-slanted-167 (from bchr8a) generating new vf : texnansi-bchr8a-slanted-167 (from texnansi- raw-bchr8a) updating map file : texnansi-bitstrea-charter.map generating : ls-r databases mktexlsr: Updating /usr/local/teTeX/share/texmf.local/ls-R... mktexlsr: Done. batch line : --en=texnansi --ve=bitstrea --co=charter -- so=auto --sl=* bchb8a --ro=TEXMFTE TeXFont 2.2.1 - ConTeXt / PRAGMA ADE 2000-2004 slant factor : 0.167 checking root : TEXMFTE mktexlsr: Updating /usr/local/teTeX/share/texmf.local/ls-R... mktexlsr: Done. encoding vector : texnansi vendor name : bitstrea source path : /usr/local/teTeX/share/texmf.tetex/fonts/ afm/bitstrea/charter font collection : charter texmf font root : /usr/local/tetex/share/texmf.local pdftex map file : texnansi-bitstrea-charter.map processing files : all in pattern bchb8a locating afm files : using pattern /usr/local/teTeX/share/ texmf.tetex/fonts/afm/bitstrea/charter/bchb8a.afm locating afm files : using pattern bchb8a extending map file : /usr/local/teTeX/share/texmf.local/fonts/ map/pdftex/context/texnansi-bitstrea-charter.map font identifier : CharterBT-Bold-Slanted -> text -> tfm + vf generating raw tfm/vpl : texnansi-raw-bchb8a-slanted-167 (from bchb8a) generating new vf : texnansi-bchb8a-slanted-167 (from texnansi- raw-bchb8a) updating map file : texnansi-bitstrea-charter.map generating : ls-r databases mktexlsr: Updating /usr/local/teTeX/share/texmf.local/ls-R... mktexlsr: Done. batch line : --en=texnansi --ve=urw --co=bookman -- so=auto --ro=TEXMFMAIN,TEXMFTE,TEXMFGW TeXFont 2.2.1 - ConTeXt / PRAGMA ADE 2000-2004 checking root : TEXMFMAIN checking root : TEXMFTE mktexlsr: Updating /usr/local/teTeX/share/texmf.local/ls-R... mktexlsr: Done. encoding vector : texnansi vendor name : urw source path : /usr/local/teTeX/share/texmf.tetex/fonts/ afm/urw/bookman font collection : bookman texmf font root : /usr/local/tetex/share/texmf.local pdftex map file : texnansi-urw-bookman.map processing files : all on afm path locating afm files : using pattern /usr/local/teTeX/share/ texmf.tetex/fonts/afm/urw/bookman/*.afm locating afm files : using pattern * extending map file : /usr/local/teTeX/share/texmf.local/fonts/ map/pdftex/context/texnansi-urw-bookman.map font identifier : URWBookmanL-DemiBold -> text -> tfm + vf generating raw tfm/vpl : texnansi-raw-ubkd8a (from ubkd8a) generating new vf : texnansi-ubkd8a (from texnansi-raw-ubkd8a) font identifier : URWBookmanL-DemiBoldItal -> text -> tfm + vf generating raw tfm/vpl : texnansi-raw-ubkdi8a (from ubkdi8a) generating new vf : texnansi-ubkdi8a (from texnansi-raw-ubkdi8a) font identifier : URWBookmanL-Ligh -> text -> tfm + vf generating raw tfm/vpl : texnansi-raw-ubkl8a (from ubkl8a) generating new vf : texnansi-ubkl8a (from texnansi-raw-ubkl8a) font identifier : URWBookmanL-LighItal -> text -> tfm + vf generating raw tfm/vpl : texnansi-raw-ubkli8a (from ubkli8a) generating new vf : texnansi-ubkli8a (from texnansi-raw-ubkli8a) updating map file : texnansi-urw-bookman.map generating : ls-r databases mktexlsr: Updating /usr/local/teTeX/share/texmf.local/ls-R... mktexlsr: Done. batch line : --en=texnansi --ve=urw --co=bookman -- so=auto --ca=* ubkl8a --ro=TEXMFMAIN,TEXMFTE,TEXMFGW TeXFont 2.2.1 - ConTeXt / PRAGMA ADE 2000-2004 caps factor : 0.800 checking root : TEXMFMAIN checking root : TEXMFTE mktexlsr: Updating /usr/local/teTeX/share/texmf.local/ls-R... mktexlsr: Done. encoding vector : texnansi vendor name : urw source path : /usr/local/teTeX/share/texmf.tetex/fonts/ afm/urw/bookman font collection : bookman texmf font root : /usr/local/tetex/share/texmf.local pdftex map file : texnansi-urw-bookman.map processing files : all in pattern ubkl8a locating afm files : using pattern /usr/local/teTeX/share/ texmf.tetex/fonts/afm/urw/bookman/ubkl8a.afm locating afm files : using pattern ubkl8a extending map file : /usr/local/teTeX/share/texmf.local/fonts/ map/pdftex/context/texnansi-urw-bookman.map font identifier : URWBookmanL-Ligh-Caps -> text -> tfm + vf generating raw tfm/vpl : texnansi-raw-ubkl8a-capitalized-800 (from ubkl8a) generating new vf : texnansi-ubkl8a-capitalized-800 (from texnansi-raw-ubkl8a) updating map file : texnansi-urw-bookman.map generating : ls-r databases mktexlsr: Updating /usr/local/teTeX/share/texmf.local/ls-R... mktexlsr: Done. batch line : --en=texnansi --ve=urw --co=bookman -- so=auto --sl=* ubkl8a --ro=TEXMFMAIN,TEXMFTE,TEXMFGW TeXFont 2.2.1 - ConTeXt / PRAGMA ADE 2000-2004 slant factor : 0.167 checking root : TEXMFMAIN checking root : TEXMFTE mktexlsr: Updating /usr/local/teTeX/share/texmf.local/ls-R... mktexlsr: Done. encoding vector : texnansi vendor name : urw source path : /usr/local/teTeX/share/texmf.tetex/fonts/ afm/urw/bookman font collection : bookman texmf font root : /usr/local/tetex/share/texmf.local pdftex map file : texnansi-urw-bookman.map processing files : all in pattern ubkl8a locating afm files : using pattern /usr/local/teTeX/share/ texmf.tetex/fonts/afm/urw/bookman/ubkl8a.afm locating afm files : using pattern ubkl8a extending map file : /usr/local/teTeX/share/texmf.local/fonts/ map/pdftex/context/texnansi-urw-bookman.map font identifier : URWBookmanL-Ligh-Slanted -> text -> tfm + vf generating raw tfm/vpl : texnansi-raw-ubkl8a-slanted-167 (from ubkl8a) generating new vf : texnansi-ubkl8a-slanted-167 (from texnansi- raw-ubkl8a) updating map file : texnansi-urw-bookman.map generating : ls-r databases mktexlsr: Updating /usr/local/teTeX/share/texmf.local/ls-R... mktexlsr: Done. batch line : --en=texnansi --ve=urw --co=bookman -- so=auto --sl=* ubkd8a --ro=TEXMFMAIN,TEXMFTE,TEXMFGW TeXFont 2.2.1 - ConTeXt / PRAGMA ADE 2000-2004 slant factor : 0.167 checking root : TEXMFMAIN checking root : TEXMFTE mktexlsr: Updating /usr/local/teTeX/share/texmf.local/ls-R... mktexlsr: Done. encoding vector : texnansi vendor name : urw source path : /usr/local/teTeX/share/texmf.tetex/fonts/ afm/urw/bookman font collection : bookman texmf font root : /usr/local/tetex/share/texmf.local pdftex map file : texnansi-urw-bookman.map processing files : all in pattern ubkd8a locating afm files : using pattern /usr/local/teTeX/share/ texmf.tetex/fonts/afm/urw/bookman/ubkd8a.afm locating afm files : using pattern ubkd8a extending map file : /usr/local/teTeX/share/texmf.local/fonts/ map/pdftex/context/texnansi-urw-bookman.map font identifier : URWBookmanL-DemiBold-Slanted -> text -> tfm + vf generating raw tfm/vpl : texnansi-raw-ubkd8a-slanted-167 (from ubkd8a) generating new vf : texnansi-ubkd8a-slanted-167 (from texnansi- raw-ubkd8a) updating map file : texnansi-urw-bookman.map generating : ls-r databases mktexlsr: Updating /usr/local/teTeX/share/texmf.local/ls-R... mktexlsr: Done. batch line : --en=texnansi --ve=urw --co=ncntrsbk -- so=auto --ro=TEXMFMAIN,TEXMFTE,TEXMFGW TeXFont 2.2.1 - ConTeXt / PRAGMA ADE 2000-2004 checking root : TEXMFMAIN checking root : TEXMFTE mktexlsr: Updating /usr/local/teTeX/share/texmf.local/ls-R... mktexlsr: Done. encoding vector : texnansi vendor name : urw source path : /usr/local/teTeX/share/texmf.tetex/fonts/ afm/urw/ncntrsbk font collection : ncntrsbk texmf font root : /usr/local/tetex/share/texmf.local pdftex map file : texnansi-urw-ncntrsbk.map processing files : all on afm path locating afm files : using pattern /usr/local/teTeX/share/ texmf.tetex/fonts/afm/urw/ncntrsbk/*.afm locating afm files : using pattern * extending map file : /usr/local/teTeX/share/texmf.local/fonts/ map/pdftex/context/texnansi-urw-ncntrsbk.map font identifier : CenturySchL-Bold -> text -> tfm + vf generating raw tfm/vpl : texnansi-raw-uncb8a (from uncb8a) generating new vf : texnansi-uncb8a (from texnansi-raw-uncb8a) font identifier : CenturySchL-BoldItal -> text -> tfm + vf generating raw tfm/vpl : texnansi-raw-uncbi8a (from uncbi8a) generating new vf : texnansi-uncbi8a (from texnansi-raw-uncbi8a) font identifier : CenturySchL-Roma -> text -> tfm + vf generating raw tfm/vpl : texnansi-raw-uncr8a (from uncr8a) generating new vf : texnansi-uncr8a (from texnansi-raw-uncr8a) font identifier : CenturySchL-Ital -> text -> tfm + vf generating raw tfm/vpl : texnansi-raw-uncri8a (from uncri8a) generating new vf : texnansi-uncri8a (from texnansi-raw-uncri8a) updating map file : texnansi-urw-ncntrsbk.map generating : ls-r databases mktexlsr: Updating /usr/local/teTeX/share/texmf.local/ls-R... mktexlsr: Done. batch line : --en=texnansi --ve=urw --co=ncntrsbk -- so=auto --ca=* uncr8a --ro=TEXMFMAIN,TEXMFTE,TEXMFGW TeXFont 2.2.1 - ConTeXt / PRAGMA ADE 2000-2004 caps factor : 0.800 checking root : TEXMFMAIN checking root : TEXMFTE mktexlsr: Updating /usr/local/teTeX/share/texmf.local/ls-R... mktexlsr: Done. encoding vector : texnansi vendor name : urw source path : /usr/local/teTeX/share/texmf.tetex/fonts/ afm/urw/ncntrsbk font collection : ncntrsbk texmf font root : /usr/local/tetex/share/texmf.local pdftex map file : texnansi-urw-ncntrsbk.map processing files : all in pattern uncr8a locating afm files : using pattern /usr/local/teTeX/share/ texmf.tetex/fonts/afm/urw/ncntrsbk/uncr8a.afm locating afm files : using pattern uncr8a extending map file : /usr/local/teTeX/share/texmf.local/fonts/ map/pdftex/context/texnansi-urw-ncntrsbk.map font identifier : CenturySchL-Roma-Caps -> text -> tfm + vf generating raw tfm/vpl : texnansi-raw-uncr8a-capitalized-800 (from uncr8a) generating new vf : texnansi-uncr8a-capitalized-800 (from texnansi-raw-uncr8a) updating map file : texnansi-urw-ncntrsbk.map generating : ls-r databases mktexlsr: Updating /usr/local/teTeX/share/texmf.local/ls-R... mktexlsr: Done. batch line : --en=texnansi --ve=urw --co=ncntrsbk -- so=auto --sl=* uncr8a --ro=TEXMFMAIN,TEXMFTE,TEXMFGW TeXFont 2.2.1 - ConTeXt / PRAGMA ADE 2000-2004 slant factor : 0.167 checking root : TEXMFMAIN checking root : TEXMFTE mktexlsr: Updating /usr/local/teTeX/share/texmf.local/ls-R... mktexlsr: Done. encoding vector : texnansi vendor name : urw source path : /usr/local/teTeX/share/texmf.tetex/fonts/ afm/urw/ncntrsbk font collection : ncntrsbk texmf font root : /usr/local/tetex/share/texmf.local pdftex map file : texnansi-urw-ncntrsbk.map processing files : all in pattern uncr8a locating afm files : using pattern /usr/local/teTeX/share/ texmf.tetex/fonts/afm/urw/ncntrsbk/uncr8a.afm locating afm files : using pattern uncr8a extending map file : /usr/local/teTeX/share/texmf.local/fonts/ map/pdftex/context/texnansi-urw-ncntrsbk.map font identifier : CenturySchL-Roma-Slanted -> text -> tfm + vf generating raw tfm/vpl : texnansi-raw-uncr8a-slanted-167 (from uncr8a) generating new vf : texnansi-uncr8a-slanted-167 (from texnansi- raw-uncr8a) updating map file : texnansi-urw-ncntrsbk.map generating : ls-r databases mktexlsr: Updating /usr/local/teTeX/share/texmf.local/ls-R... mktexlsr: Done. batch line : --en=texnansi --ve=urw --co=ncntrsbk -- so=auto --sl=* uncb8a --ro=TEXMFMAIN,TEXMFTE,TEXMFGW TeXFont 2.2.1 - ConTeXt / PRAGMA ADE 2000-2004 slant factor : 0.167 checking root : TEXMFMAIN checking root : TEXMFTE mktexlsr: Updating /usr/local/teTeX/share/texmf.local/ls-R... mktexlsr: Done. encoding vector : texnansi vendor name : urw source path : /usr/local/teTeX/share/texmf.tetex/fonts/ afm/urw/ncntrsbk font collection : ncntrsbk texmf font root : /usr/local/tetex/share/texmf.local pdftex map file : texnansi-urw-ncntrsbk.map processing files : all in pattern uncb8a locating afm files : using pattern /usr/local/teTeX/share/ texmf.tetex/fonts/afm/urw/ncntrsbk/uncb8a.afm locating afm files : using pattern uncb8a extending map file : /usr/local/teTeX/share/texmf.local/fonts/ map/pdftex/context/texnansi-urw-ncntrsbk.map font identifier : CenturySchL-Bold-Slanted -> text -> tfm + vf generating raw tfm/vpl : texnansi-raw-uncb8a-slanted-167 (from uncb8a) generating new vf : texnansi-uncb8a-slanted-167 (from texnansi- raw-uncb8a) updating map file : texnansi-urw-ncntrsbk.map generating : ls-r databases mktexlsr: Updating /usr/local/teTeX/share/texmf.local/ls-R... mktexlsr: Done. 011-101:~/tmp davidarnold$ ls GentiumItalic.ttf mliu GentiumRegular.ttf mpartnof Quiz Four.tex texnansi-adobe-utopia.tex QuizFour.aux texnansi-bitstrea-charter.tex QuizFour.log texnansi-public-antp.tex QuizFour.pdf texnansi-urw-bookman.tex QuizFour.tex texnansi-urw-courier.tex StroyPractice texnansi-urw-helvetica.tex calc texnansi-urw-ncntrsbk.tex de texnansi-urw-palatino.tex junk.log texnansi-urw-times.tex junk.m texnansi-urw-zapfchan.tex junk.pdf type-tmf-gw.dat junk.tex type-tmf-gw.dat~ makeFilter.m type-tmf.dat memoize.m type-tmf.dat~ memoize.m~ 011-101:~/tmp davidarnold$ David Arnold College of the Redwoods Mathematics Department Eureka, CA 95501 (707) 476-4222 http://online.redwoods.edu/instruct/darnold/
David Arnold wrote:
Hans et al,
Changing each occurrence of TEXMFMAIN in type-tmf.dat to TEXMFMAIN,TEXMFTE,TEXMFGW produces the following result:
At a first glance, that looked fine. But I still have to catch up on a lot of e-mail ;-) Taco
David Arnold wrote:
Changing each occurrence of TEXMFMAIN in type-tmf.dat to TEXMFMAIN,TEXMFTE,TEXMFGW produces the following result:
....
Quiz Four.tex texnansi-adobe-utopia.tex QuizFour.aux texnansi-bitstrea-charter.tex QuizFour.log texnansi-public-antp.tex QuizFour.pdf texnansi-urw-bookman.tex QuizFour.tex texnansi-urw-courier.tex StroyPractice texnansi-urw-helvetica.tex calc texnansi-urw-ncntrsbk.tex de texnansi-urw-palatino.tex junk.log texnansi-urw-times.tex junk.m texnansi-urw-zapfchan.tex junk.pdf type-tmf-gw.dat junk.tex type-tmf-gw.dat~ makeFilter.m type-tmf.dat
looks ok to me; the final test is to process those tex files ... Hans
Adam, Hans, Taco, et al, Here's the result (GWTeX on Mac Tiger) of replacing TEXMFMAIN with TEXMFTE: 011-101:~/tmp davidarnold$ texfont type-tmf-gw.dat TeXFont 2.2.1 - ConTeXt / PRAGMA ADE 2000-2004 processing batch file : type-tmf-gw.dat batch line : --en=texnansi --ve=public --co=antp -- so=auto --ro=TEXMFMAIN TeXFont 2.2.1 - ConTeXt / PRAGMA ADE 2000-2004 checking root : TEXMFMAIN processing aborted : unknown subpath ../fonts/afm/public/antp --help : show some more info batch line : --en=texnansi --ve=urw --co=helvetica -- so=auto --ro=TEXMFMAIN TeXFont 2.2.1 - ConTeXt / PRAGMA ADE 2000-2004 checking root : TEXMFMAIN processing aborted : unknown subpath ../fonts/afm/urw/helvetica --help : show some more info batch line : --en=texnansi --ve=urw --co=courier -- so=auto --ro=TEXMFMAIN TeXFont 2.2.1 - ConTeXt / PRAGMA ADE 2000-2004 checking root : TEXMFMAIN processing aborted : unknown subpath ../fonts/afm/urw/courier --help : show some more info batch line : --en=texnansi --ve=urw --co=zapfchan -- so=auto --ro=TEXMFMAIN TeXFont 2.2.1 - ConTeXt / PRAGMA ADE 2000-2004 checking root : TEXMFMAIN processing aborted : unknown subpath ../fonts/afm/urw/zapfchan --help : show some more info batch line : --en=texnansi --ve=urw --co=times --so=auto --ro=TEXMFMAIN TeXFont 2.2.1 - ConTeXt / PRAGMA ADE 2000-2004 checking root : TEXMFMAIN processing aborted : unknown subpath ../fonts/afm/urw/times --help : show some more info batch line : --en=texnansi --ve=urw --co=times --so=auto --ca=* utmr8a --ro=TEXMFMAIN TeXFont 2.2.1 - ConTeXt / PRAGMA ADE 2000-2004 caps factor : 0.800 checking root : TEXMFMAIN processing aborted : unknown subpath ../fonts/afm/urw/times --help : show some more info batch line : --en=texnansi --ve=urw --co=times --so=auto --sl=* utmr8a --ro=TEXMFMAIN TeXFont 2.2.1 - ConTeXt / PRAGMA ADE 2000-2004 slant factor : 0.167 checking root : TEXMFMAIN processing aborted : unknown subpath ../fonts/afm/urw/times --help : show some more info batch line : --en=texnansi --ve=urw --co=times --so=auto --sl=* utmb8a --ro=TEXMFMAIN TeXFont 2.2.1 - ConTeXt / PRAGMA ADE 2000-2004 slant factor : 0.167 checking root : TEXMFMAIN processing aborted : unknown subpath ../fonts/afm/urw/times --help : show some more info batch line : --en=texnansi --ve=urw --co=palatino -- so=auto --ro=TEXMFMAIN TeXFont 2.2.1 - ConTeXt / PRAGMA ADE 2000-2004 checking root : TEXMFMAIN processing aborted : unknown subpath ../fonts/afm/urw/palatino --help : show some more info batch line : --en=texnansi --ve=urw --co=palatino -- so=auto --ca=* uplr8a --ro=TEXMFMAIN TeXFont 2.2.1 - ConTeXt / PRAGMA ADE 2000-2004 caps factor : 0.800 checking root : TEXMFMAIN processing aborted : unknown subpath ../fonts/afm/urw/palatino --help : show some more info batch line : --en=texnansi --ve=urw --co=palatino -- so=auto --sl=* uplr8a --ro=TEXMFMAIN TeXFont 2.2.1 - ConTeXt / PRAGMA ADE 2000-2004 slant factor : 0.167 checking root : TEXMFMAIN processing aborted : unknown subpath ../fonts/afm/urw/palatino --help : show some more info batch line : --en=texnansi --ve=urw --co=palatino -- so=auto --sl=* uplb8a --ro=TEXMFMAIN TeXFont 2.2.1 - ConTeXt / PRAGMA ADE 2000-2004 slant factor : 0.167 checking root : TEXMFMAIN processing aborted : unknown subpath ../fonts/afm/urw/palatino --help : show some more info batch line : --en=texnansi --ve=adobe --co=utopia -- so=auto --ro=TEXMFMAIN TeXFont 2.2.1 - ConTeXt / PRAGMA ADE 2000-2004 checking root : TEXMFMAIN processing aborted : unknown subpath ../fonts/afm/adobe/utopia --help : show some more info batch line : --en=texnansi --ve=adobe --co=utopia -- so=auto --ca=* putr8a --ro=TEXMFMAIN TeXFont 2.2.1 - ConTeXt / PRAGMA ADE 2000-2004 caps factor : 0.800 checking root : TEXMFMAIN processing aborted : unknown subpath ../fonts/afm/adobe/utopia --help : show some more info batch line : --en=texnansi --ve=adobe --co=utopia -- so=auto --sl=* putr8a --ro=TEXMFMAIN TeXFont 2.2.1 - ConTeXt / PRAGMA ADE 2000-2004 slant factor : 0.167 checking root : TEXMFMAIN processing aborted : unknown subpath ../fonts/afm/adobe/utopia --help : show some more info batch line : --en=texnansi --ve=adobe --co=utopia -- so=auto --sl=* putb8a --ro=TEXMFMAIN TeXFont 2.2.1 - ConTeXt / PRAGMA ADE 2000-2004 slant factor : 0.167 checking root : TEXMFMAIN processing aborted : unknown subpath ../fonts/afm/adobe/utopia --help : show some more info batch line : --en=texnansi --ve=adobe --co=utopia -- so=auto --ro=TEXMFEXTRA TeXFont 2.2.1 - ConTeXt / PRAGMA ADE 2000-2004 checking root : TEXMFEXTRA processing aborted : unknown subpath ../fonts/afm/adobe/utopia --help : show some more info batch line : --en=texnansi --ve=adobe --co=utopia -- so=auto --ca=* putr8a --ro=TEXMFEXTRA TeXFont 2.2.1 - ConTeXt / PRAGMA ADE 2000-2004 caps factor : 0.800 checking root : TEXMFEXTRA processing aborted : unknown subpath ../fonts/afm/adobe/utopia --help : show some more info batch line : --en=texnansi --ve=adobe --co=utopia -- so=auto --sl=* putr8a --ro=TEXMFEXTRA TeXFont 2.2.1 - ConTeXt / PRAGMA ADE 2000-2004 slant factor : 0.167 checking root : TEXMFEXTRA processing aborted : unknown subpath ../fonts/afm/adobe/utopia --help : show some more info batch line : --en=texnansi --ve=adobe --co=utopia -- so=auto --sl=* putb8a --ro=TEXMFEXTRA TeXFont 2.2.1 - ConTeXt / PRAGMA ADE 2000-2004 slant factor : 0.167 checking root : TEXMFEXTRA processing aborted : unknown subpath ../fonts/afm/adobe/utopia --help : show some more info batch line : --en=texnansi --ve=bitstrea --co=charter -- so=auto --ro=TEXMFMAIN TeXFont 2.2.1 - ConTeXt / PRAGMA ADE 2000-2004 checking root : TEXMFMAIN processing aborted : unknown subpath ../fonts/afm/bitstrea/charter --help : show some more info batch line : --en=texnansi --ve=bitstrea --co=charter -- so=auto --ca=* bchr8a --ro=TEXMFMAIN TeXFont 2.2.1 - ConTeXt / PRAGMA ADE 2000-2004 caps factor : 0.800 checking root : TEXMFMAIN processing aborted : unknown subpath ../fonts/afm/bitstrea/charter --help : show some more info batch line : --en=texnansi --ve=bitstrea --co=charter -- so=auto --sl=* bchr8a --ro=TEXMFTE TeXFont 2.2.1 - ConTeXt / PRAGMA ADE 2000-2004 slant factor : 0.167 checking root : TEXMFTE mktexlsr: /usr/local/teTeX/share/texmf.local: directory not writable. Skipping... mktexlsr: Done. processing aborted : unknown tfm path /usr/local/teTeX/share/ texmf.local/fonts/tfm/bitstrea/charter --help : show some more info batch line : --en=texnansi --ve=bitstrea --co=charter -- so=auto --sl=* bchb8a --ro=TEXMFTE TeXFont 2.2.1 - ConTeXt / PRAGMA ADE 2000-2004 slant factor : 0.167 checking root : TEXMFTE mktexlsr: /usr/local/teTeX/share/texmf.local: directory not writable. Skipping... mktexlsr: Done. processing aborted : unknown tfm path /usr/local/teTeX/share/ texmf.local/fonts/tfm/bitstrea/charter --help : show some more info batch line : --en=texnansi --ve=urw --co=bookman -- so=auto --ro=TEXMFTE TeXFont 2.2.1 - ConTeXt / PRAGMA ADE 2000-2004 checking root : TEXMFTE mktexlsr: /usr/local/teTeX/share/texmf.local: directory not writable. Skipping... mktexlsr: Done. processing aborted : unknown tfm path /usr/local/teTeX/share/ texmf.local/fonts/tfm/urw/bookman --help : show some more info batch line : --en=texnansi --ve=urw --co=bookman -- so=auto --ca=* ubkl8a --ro=TEXMFTE TeXFont 2.2.1 - ConTeXt / PRAGMA ADE 2000-2004 caps factor : 0.800 checking root : TEXMFTE mktexlsr: /usr/local/teTeX/share/texmf.local: directory not writable. Skipping... mktexlsr: Done. processing aborted : unknown tfm path /usr/local/teTeX/share/ texmf.local/fonts/tfm/urw/bookman --help : show some more info batch line : --en=texnansi --ve=urw --co=bookman -- so=auto --sl=* ubkl8a --ro=TEXMFTE TeXFont 2.2.1 - ConTeXt / PRAGMA ADE 2000-2004 slant factor : 0.167 checking root : TEXMFTE mktexlsr: /usr/local/teTeX/share/texmf.local: directory not writable. Skipping... mktexlsr: Done. processing aborted : unknown tfm path /usr/local/teTeX/share/ texmf.local/fonts/tfm/urw/bookman --help : show some more info batch line : --en=texnansi --ve=urw --co=bookman -- so=auto --sl=* ubkd8a --ro=TEXMFTE TeXFont 2.2.1 - ConTeXt / PRAGMA ADE 2000-2004 slant factor : 0.167 checking root : TEXMFTE mktexlsr: /usr/local/teTeX/share/texmf.local: directory not writable. Skipping... mktexlsr: Done. processing aborted : unknown tfm path /usr/local/teTeX/share/ texmf.local/fonts/tfm/urw/bookman --help : show some more info batch line : --en=texnansi --ve=urw --co=ncntrsbk -- so=auto --ro=TEXMFTE TeXFont 2.2.1 - ConTeXt / PRAGMA ADE 2000-2004 checking root : TEXMFTE mktexlsr: /usr/local/teTeX/share/texmf.local: directory not writable. Skipping... mktexlsr: Done. processing aborted : unknown tfm path /usr/local/teTeX/share/ texmf.local/fonts/tfm/urw/ncntrsbk --help : show some more info batch line : --en=texnansi --ve=urw --co=ncntrsbk -- so=auto --ca=* uncr8a --ro=TEXMFTE TeXFont 2.2.1 - ConTeXt / PRAGMA ADE 2000-2004 caps factor : 0.800 checking root : TEXMFTE mktexlsr: /usr/local/teTeX/share/texmf.local: directory not writable. Skipping... mktexlsr: Done. processing aborted : unknown tfm path /usr/local/teTeX/share/ texmf.local/fonts/tfm/urw/ncntrsbk --help : show some more info batch line : --en=texnansi --ve=urw --co=ncntrsbk -- so=auto --sl=* uncr8a --ro=TEXMFTE TeXFont 2.2.1 - ConTeXt / PRAGMA ADE 2000-2004 slant factor : 0.167 checking root : TEXMFTE mktexlsr: /usr/local/teTeX/share/texmf.local: directory not writable. Skipping... mktexlsr: Done. processing aborted : unknown tfm path /usr/local/teTeX/share/ texmf.local/fonts/tfm/urw/ncntrsbk --help : show some more info batch line : --en=texnansi --ve=urw --co=ncntrsbk -- so=auto --sl=* uncb8a --ro=TEXMFTE TeXFont 2.2.1 - ConTeXt / PRAGMA ADE 2000-2004 slant factor : 0.167 checking root : TEXMFTE mktexlsr: /usr/local/teTeX/share/texmf.local: directory not writable. Skipping... mktexlsr: Done. processing aborted : unknown tfm path /usr/local/teTeX/share/ texmf.local/fonts/tfm/urw/ncntrsbk --help : show some more info 011-101:~/tmp davidarnold$ sudo texfont type-tmf-gw.dat Password: TeXFont 2.2.1 - ConTeXt / PRAGMA ADE 2000-2004 processing batch file : type-tmf-gw.dat batch line : --en=texnansi --ve=public --co=antp -- so=auto --ro=TEXMFMAIN TeXFont 2.2.1 - ConTeXt / PRAGMA ADE 2000-2004 checking root : TEXMFMAIN processing aborted : unknown subpath ../fonts/afm/public/antp --help : show some more info batch line : --en=texnansi --ve=urw --co=helvetica -- so=auto --ro=TEXMFMAIN TeXFont 2.2.1 - ConTeXt / PRAGMA ADE 2000-2004 checking root : TEXMFMAIN processing aborted : unknown subpath ../fonts/afm/urw/helvetica --help : show some more info batch line : --en=texnansi --ve=urw --co=courier -- so=auto --ro=TEXMFMAIN TeXFont 2.2.1 - ConTeXt / PRAGMA ADE 2000-2004 checking root : TEXMFMAIN processing aborted : unknown subpath ../fonts/afm/urw/courier --help : show some more info batch line : --en=texnansi --ve=urw --co=zapfchan -- so=auto --ro=TEXMFMAIN TeXFont 2.2.1 - ConTeXt / PRAGMA ADE 2000-2004 checking root : TEXMFMAIN processing aborted : unknown subpath ../fonts/afm/urw/zapfchan --help : show some more info batch line : --en=texnansi --ve=urw --co=times --so=auto --ro=TEXMFMAIN TeXFont 2.2.1 - ConTeXt / PRAGMA ADE 2000-2004 checking root : TEXMFMAIN processing aborted : unknown subpath ../fonts/afm/urw/times --help : show some more info batch line : --en=texnansi --ve=urw --co=times --so=auto --ca=* utmr8a --ro=TEXMFMAIN TeXFont 2.2.1 - ConTeXt / PRAGMA ADE 2000-2004 caps factor : 0.800 checking root : TEXMFMAIN processing aborted : unknown subpath ../fonts/afm/urw/times --help : show some more info batch line : --en=texnansi --ve=urw --co=times --so=auto --sl=* utmr8a --ro=TEXMFMAIN TeXFont 2.2.1 - ConTeXt / PRAGMA ADE 2000-2004 slant factor : 0.167 checking root : TEXMFMAIN processing aborted : unknown subpath ../fonts/afm/urw/times --help : show some more info batch line : --en=texnansi --ve=urw --co=times --so=auto --sl=* utmb8a --ro=TEXMFMAIN TeXFont 2.2.1 - ConTeXt / PRAGMA ADE 2000-2004 slant factor : 0.167 checking root : TEXMFMAIN processing aborted : unknown subpath ../fonts/afm/urw/times --help : show some more info batch line : --en=texnansi --ve=urw --co=palatino -- so=auto --ro=TEXMFMAIN TeXFont 2.2.1 - ConTeXt / PRAGMA ADE 2000-2004 checking root : TEXMFMAIN processing aborted : unknown subpath ../fonts/afm/urw/palatino --help : show some more info batch line : --en=texnansi --ve=urw --co=palatino -- so=auto --ca=* uplr8a --ro=TEXMFMAIN TeXFont 2.2.1 - ConTeXt / PRAGMA ADE 2000-2004 caps factor : 0.800 checking root : TEXMFMAIN processing aborted : unknown subpath ../fonts/afm/urw/palatino --help : show some more info batch line : --en=texnansi --ve=urw --co=palatino -- so=auto --sl=* uplr8a --ro=TEXMFMAIN TeXFont 2.2.1 - ConTeXt / PRAGMA ADE 2000-2004 slant factor : 0.167 checking root : TEXMFMAIN processing aborted : unknown subpath ../fonts/afm/urw/palatino --help : show some more info batch line : --en=texnansi --ve=urw --co=palatino -- so=auto --sl=* uplb8a --ro=TEXMFMAIN TeXFont 2.2.1 - ConTeXt / PRAGMA ADE 2000-2004 slant factor : 0.167 checking root : TEXMFMAIN processing aborted : unknown subpath ../fonts/afm/urw/palatino --help : show some more info batch line : --en=texnansi --ve=adobe --co=utopia -- so=auto --ro=TEXMFMAIN TeXFont 2.2.1 - ConTeXt / PRAGMA ADE 2000-2004 checking root : TEXMFMAIN processing aborted : unknown subpath ../fonts/afm/adobe/utopia --help : show some more info batch line : --en=texnansi --ve=adobe --co=utopia -- so=auto --ca=* putr8a --ro=TEXMFMAIN TeXFont 2.2.1 - ConTeXt / PRAGMA ADE 2000-2004 caps factor : 0.800 checking root : TEXMFMAIN processing aborted : unknown subpath ../fonts/afm/adobe/utopia --help : show some more info batch line : --en=texnansi --ve=adobe --co=utopia -- so=auto --sl=* putr8a --ro=TEXMFMAIN TeXFont 2.2.1 - ConTeXt / PRAGMA ADE 2000-2004 slant factor : 0.167 checking root : TEXMFMAIN processing aborted : unknown subpath ../fonts/afm/adobe/utopia --help : show some more info batch line : --en=texnansi --ve=adobe --co=utopia -- so=auto --sl=* putb8a --ro=TEXMFMAIN TeXFont 2.2.1 - ConTeXt / PRAGMA ADE 2000-2004 slant factor : 0.167 checking root : TEXMFMAIN processing aborted : unknown subpath ../fonts/afm/adobe/utopia --help : show some more info batch line : --en=texnansi --ve=adobe --co=utopia -- so=auto --ro=TEXMFEXTRA TeXFont 2.2.1 - ConTeXt / PRAGMA ADE 2000-2004 checking root : TEXMFEXTRA processing aborted : unknown subpath ../fonts/afm/adobe/utopia --help : show some more info batch line : --en=texnansi --ve=adobe --co=utopia -- so=auto --ca=* putr8a --ro=TEXMFEXTRA TeXFont 2.2.1 - ConTeXt / PRAGMA ADE 2000-2004 caps factor : 0.800 checking root : TEXMFEXTRA processing aborted : unknown subpath ../fonts/afm/adobe/utopia --help : show some more info batch line : --en=texnansi --ve=adobe --co=utopia -- so=auto --sl=* putr8a --ro=TEXMFEXTRA TeXFont 2.2.1 - ConTeXt / PRAGMA ADE 2000-2004 slant factor : 0.167 checking root : TEXMFEXTRA processing aborted : unknown subpath ../fonts/afm/adobe/utopia --help : show some more info batch line : --en=texnansi --ve=adobe --co=utopia -- so=auto --sl=* putb8a --ro=TEXMFEXTRA TeXFont 2.2.1 - ConTeXt / PRAGMA ADE 2000-2004 slant factor : 0.167 checking root : TEXMFEXTRA processing aborted : unknown subpath ../fonts/afm/adobe/utopia --help : show some more info batch line : --en=texnansi --ve=bitstrea --co=charter -- so=auto --ro=TEXMFMAIN TeXFont 2.2.1 - ConTeXt / PRAGMA ADE 2000-2004 checking root : TEXMFMAIN processing aborted : unknown subpath ../fonts/afm/bitstrea/charter --help : show some more info batch line : --en=texnansi --ve=bitstrea --co=charter -- so=auto --ca=* bchr8a --ro=TEXMFMAIN TeXFont 2.2.1 - ConTeXt / PRAGMA ADE 2000-2004 caps factor : 0.800 checking root : TEXMFMAIN processing aborted : unknown subpath ../fonts/afm/bitstrea/charter --help : show some more info batch line : --en=texnansi --ve=bitstrea --co=charter -- so=auto --sl=* bchr8a --ro=TEXMFTE TeXFont 2.2.1 - ConTeXt / PRAGMA ADE 2000-2004 slant factor : 0.167 checking root : TEXMFTE mktexlsr: Updating /usr/local/teTeX/share/texmf.local/ls-R... mktexlsr: Done. encoding vector : texnansi vendor name : bitstrea source path : /usr/local/teTeX/share/texmf.tetex/fonts/ afm/bitstrea/charter font collection : charter texmf font root : /usr/local/tetex/share/texmf.local pdftex map file : texnansi-bitstrea-charter.map processing files : all in pattern bchr8a locating afm files : using pattern /usr/local/teTeX/share/ texmf.tetex/fonts/afm/bitstrea/charter/bchr8a.afm locating afm files : using pattern bchr8a no map file at : /usr/local/teTeX/share/texmf.local/fonts/ map/pdftex/context/texnansi-bitstrea-charter.map font identifier : CharterBT-Roman-Slanted -> text -> tfm + vf generating raw tfm/vpl : texnansi-raw-bchr8a-slanted-167 (from bchr8a) generating new vf : texnansi-bchr8a-slanted-167 (from texnansi- raw-bchr8a) updating map file : texnansi-bitstrea-charter.map generating : ls-r databases mktexlsr: Updating /usr/local/teTeX/share/texmf.local/ls-R... mktexlsr: Done. batch line : --en=texnansi --ve=bitstrea --co=charter -- so=auto --sl=* bchb8a --ro=TEXMFTE TeXFont 2.2.1 - ConTeXt / PRAGMA ADE 2000-2004 slant factor : 0.167 checking root : TEXMFTE mktexlsr: Updating /usr/local/teTeX/share/texmf.local/ls-R... mktexlsr: Done. encoding vector : texnansi vendor name : bitstrea source path : /usr/local/teTeX/share/texmf.tetex/fonts/ afm/bitstrea/charter font collection : charter texmf font root : /usr/local/tetex/share/texmf.local pdftex map file : texnansi-bitstrea-charter.map processing files : all in pattern bchb8a locating afm files : using pattern /usr/local/teTeX/share/ texmf.tetex/fonts/afm/bitstrea/charter/bchb8a.afm locating afm files : using pattern bchb8a extending map file : /usr/local/teTeX/share/texmf.local/fonts/ map/pdftex/context/texnansi-bitstrea-charter.map font identifier : CharterBT-Bold-Slanted -> text -> tfm + vf generating raw tfm/vpl : texnansi-raw-bchb8a-slanted-167 (from bchb8a) generating new vf : texnansi-bchb8a-slanted-167 (from texnansi- raw-bchb8a) updating map file : texnansi-bitstrea-charter.map generating : ls-r databases mktexlsr: Updating /usr/local/teTeX/share/texmf.local/ls-R... mktexlsr: Done. batch line : --en=texnansi --ve=urw --co=bookman -- so=auto --ro=TEXMFTE TeXFont 2.2.1 - ConTeXt / PRAGMA ADE 2000-2004 checking root : TEXMFTE mktexlsr: Updating /usr/local/teTeX/share/texmf.local/ls-R... mktexlsr: Done. encoding vector : texnansi vendor name : urw source path : /usr/local/teTeX/share/texmf.tetex/fonts/ afm/urw/bookman font collection : bookman texmf font root : /usr/local/tetex/share/texmf.local pdftex map file : texnansi-urw-bookman.map processing files : all on afm path locating afm files : using pattern /usr/local/teTeX/share/ texmf.tetex/fonts/afm/urw/bookman/*.afm locating afm files : using pattern * no map file at : /usr/local/teTeX/share/texmf.local/fonts/ map/pdftex/context/texnansi-urw-bookman.map font identifier : URWBookmanL-DemiBold -> text -> tfm + vf generating raw tfm/vpl : texnansi-raw-ubkd8a (from ubkd8a) generating new vf : texnansi-ubkd8a (from texnansi-raw-ubkd8a) font identifier : URWBookmanL-DemiBoldItal -> text -> tfm + vf generating raw tfm/vpl : texnansi-raw-ubkdi8a (from ubkdi8a) generating new vf : texnansi-ubkdi8a (from texnansi-raw-ubkdi8a) font identifier : URWBookmanL-Ligh -> text -> tfm + vf generating raw tfm/vpl : texnansi-raw-ubkl8a (from ubkl8a) generating new vf : texnansi-ubkl8a (from texnansi-raw-ubkl8a) font identifier : URWBookmanL-LighItal -> text -> tfm + vf generating raw tfm/vpl : texnansi-raw-ubkli8a (from ubkli8a) generating new vf : texnansi-ubkli8a (from texnansi-raw-ubkli8a) updating map file : texnansi-urw-bookman.map generating : ls-r databases mktexlsr: Updating /usr/local/teTeX/share/texmf.local/ls-R... mktexlsr: Done. batch line : --en=texnansi --ve=urw --co=bookman -- so=auto --ca=* ubkl8a --ro=TEXMFTE TeXFont 2.2.1 - ConTeXt / PRAGMA ADE 2000-2004 caps factor : 0.800 checking root : TEXMFTE mktexlsr: Updating /usr/local/teTeX/share/texmf.local/ls-R... mktexlsr: Done. encoding vector : texnansi vendor name : urw source path : /usr/local/teTeX/share/texmf.tetex/fonts/ afm/urw/bookman font collection : bookman texmf font root : /usr/local/tetex/share/texmf.local pdftex map file : texnansi-urw-bookman.map processing files : all in pattern ubkl8a locating afm files : using pattern /usr/local/teTeX/share/ texmf.tetex/fonts/afm/urw/bookman/ubkl8a.afm locating afm files : using pattern ubkl8a extending map file : /usr/local/teTeX/share/texmf.local/fonts/ map/pdftex/context/texnansi-urw-bookman.map font identifier : URWBookmanL-Ligh-Caps -> text -> tfm + vf generating raw tfm/vpl : texnansi-raw-ubkl8a-capitalized-800 (from ubkl8a) generating new vf : texnansi-ubkl8a-capitalized-800 (from texnansi-raw-ubkl8a) updating map file : texnansi-urw-bookman.map generating : ls-r databases mktexlsr: Updating /usr/local/teTeX/share/texmf.local/ls-R... mktexlsr: Done. batch line : --en=texnansi --ve=urw --co=bookman -- so=auto --sl=* ubkl8a --ro=TEXMFTE TeXFont 2.2.1 - ConTeXt / PRAGMA ADE 2000-2004 slant factor : 0.167 checking root : TEXMFTE mktexlsr: Updating /usr/local/teTeX/share/texmf.local/ls-R... mktexlsr: Done. encoding vector : texnansi vendor name : urw source path : /usr/local/teTeX/share/texmf.tetex/fonts/ afm/urw/bookman font collection : bookman texmf font root : /usr/local/tetex/share/texmf.local pdftex map file : texnansi-urw-bookman.map processing files : all in pattern ubkl8a locating afm files : using pattern /usr/local/teTeX/share/ texmf.tetex/fonts/afm/urw/bookman/ubkl8a.afm locating afm files : using pattern ubkl8a extending map file : /usr/local/teTeX/share/texmf.local/fonts/ map/pdftex/context/texnansi-urw-bookman.map font identifier : URWBookmanL-Ligh-Slanted -> text -> tfm + vf generating raw tfm/vpl : texnansi-raw-ubkl8a-slanted-167 (from ubkl8a) generating new vf : texnansi-ubkl8a-slanted-167 (from texnansi- raw-ubkl8a) updating map file : texnansi-urw-bookman.map generating : ls-r databases mktexlsr: Updating /usr/local/teTeX/share/texmf.local/ls-R... mktexlsr: Done. batch line : --en=texnansi --ve=urw --co=bookman -- so=auto --sl=* ubkd8a --ro=TEXMFTE TeXFont 2.2.1 - ConTeXt / PRAGMA ADE 2000-2004 slant factor : 0.167 checking root : TEXMFTE mktexlsr: Updating /usr/local/teTeX/share/texmf.local/ls-R... mktexlsr: Done. encoding vector : texnansi vendor name : urw source path : /usr/local/teTeX/share/texmf.tetex/fonts/ afm/urw/bookman font collection : bookman texmf font root : /usr/local/tetex/share/texmf.local pdftex map file : texnansi-urw-bookman.map processing files : all in pattern ubkd8a locating afm files : using pattern /usr/local/teTeX/share/ texmf.tetex/fonts/afm/urw/bookman/ubkd8a.afm locating afm files : using pattern ubkd8a extending map file : /usr/local/teTeX/share/texmf.local/fonts/ map/pdftex/context/texnansi-urw-bookman.map font identifier : URWBookmanL-DemiBold-Slanted -> text -> tfm + vf generating raw tfm/vpl : texnansi-raw-ubkd8a-slanted-167 (from ubkd8a) generating new vf : texnansi-ubkd8a-slanted-167 (from texnansi- raw-ubkd8a) updating map file : texnansi-urw-bookman.map generating : ls-r databases mktexlsr: Updating /usr/local/teTeX/share/texmf.local/ls-R... mktexlsr: Done. batch line : --en=texnansi --ve=urw --co=ncntrsbk -- so=auto --ro=TEXMFTE TeXFont 2.2.1 - ConTeXt / PRAGMA ADE 2000-2004 checking root : TEXMFTE mktexlsr: Updating /usr/local/teTeX/share/texmf.local/ls-R... mktexlsr: Done. encoding vector : texnansi vendor name : urw source path : /usr/local/teTeX/share/texmf.tetex/fonts/ afm/urw/ncntrsbk font collection : ncntrsbk texmf font root : /usr/local/tetex/share/texmf.local pdftex map file : texnansi-urw-ncntrsbk.map processing files : all on afm path locating afm files : using pattern /usr/local/teTeX/share/ texmf.tetex/fonts/afm/urw/ncntrsbk/*.afm locating afm files : using pattern * no map file at : /usr/local/teTeX/share/texmf.local/fonts/ map/pdftex/context/texnansi-urw-ncntrsbk.map font identifier : CenturySchL-Bold -> text -> tfm + vf generating raw tfm/vpl : texnansi-raw-uncb8a (from uncb8a) generating new vf : texnansi-uncb8a (from texnansi-raw-uncb8a) font identifier : CenturySchL-BoldItal -> text -> tfm + vf generating raw tfm/vpl : texnansi-raw-uncbi8a (from uncbi8a) generating new vf : texnansi-uncbi8a (from texnansi-raw-uncbi8a) font identifier : CenturySchL-Roma -> text -> tfm + vf generating raw tfm/vpl : texnansi-raw-uncr8a (from uncr8a) generating new vf : texnansi-uncr8a (from texnansi-raw-uncr8a) font identifier : CenturySchL-Ital -> text -> tfm + vf generating raw tfm/vpl : texnansi-raw-uncri8a (from uncri8a) generating new vf : texnansi-uncri8a (from texnansi-raw-uncri8a) updating map file : texnansi-urw-ncntrsbk.map generating : ls-r databases mktexlsr: Updating /usr/local/teTeX/share/texmf.local/ls-R... mktexlsr: Done. batch line : --en=texnansi --ve=urw --co=ncntrsbk -- so=auto --ca=* uncr8a --ro=TEXMFTE TeXFont 2.2.1 - ConTeXt / PRAGMA ADE 2000-2004 caps factor : 0.800 checking root : TEXMFTE mktexlsr: Updating /usr/local/teTeX/share/texmf.local/ls-R... mktexlsr: Done. encoding vector : texnansi vendor name : urw source path : /usr/local/teTeX/share/texmf.tetex/fonts/ afm/urw/ncntrsbk font collection : ncntrsbk texmf font root : /usr/local/tetex/share/texmf.local pdftex map file : texnansi-urw-ncntrsbk.map processing files : all in pattern uncr8a locating afm files : using pattern /usr/local/teTeX/share/ texmf.tetex/fonts/afm/urw/ncntrsbk/uncr8a.afm locating afm files : using pattern uncr8a extending map file : /usr/local/teTeX/share/texmf.local/fonts/ map/pdftex/context/texnansi-urw-ncntrsbk.map font identifier : CenturySchL-Roma-Caps -> text -> tfm + vf generating raw tfm/vpl : texnansi-raw-uncr8a-capitalized-800 (from uncr8a) generating new vf : texnansi-uncr8a-capitalized-800 (from texnansi-raw-uncr8a) updating map file : texnansi-urw-ncntrsbk.map generating : ls-r databases mktexlsr: Updating /usr/local/teTeX/share/texmf.local/ls-R... mktexlsr: Done. batch line : --en=texnansi --ve=urw --co=ncntrsbk -- so=auto --sl=* uncr8a --ro=TEXMFTE TeXFont 2.2.1 - ConTeXt / PRAGMA ADE 2000-2004 slant factor : 0.167 checking root : TEXMFTE mktexlsr: Updating /usr/local/teTeX/share/texmf.local/ls-R... mktexlsr: Done. encoding vector : texnansi vendor name : urw source path : /usr/local/teTeX/share/texmf.tetex/fonts/ afm/urw/ncntrsbk font collection : ncntrsbk texmf font root : /usr/local/tetex/share/texmf.local pdftex map file : texnansi-urw-ncntrsbk.map processing files : all in pattern uncr8a locating afm files : using pattern /usr/local/teTeX/share/ texmf.tetex/fonts/afm/urw/ncntrsbk/uncr8a.afm locating afm files : using pattern uncr8a extending map file : /usr/local/teTeX/share/texmf.local/fonts/ map/pdftex/context/texnansi-urw-ncntrsbk.map font identifier : CenturySchL-Roma-Slanted -> text -> tfm + vf generating raw tfm/vpl : texnansi-raw-uncr8a-slanted-167 (from uncr8a) generating new vf : texnansi-uncr8a-slanted-167 (from texnansi- raw-uncr8a) updating map file : texnansi-urw-ncntrsbk.map generating : ls-r databases mktexlsr: Updating /usr/local/teTeX/share/texmf.local/ls-R... mktexlsr: Done. batch line : --en=texnansi --ve=urw --co=ncntrsbk -- so=auto --sl=* uncb8a --ro=TEXMFTE TeXFont 2.2.1 - ConTeXt / PRAGMA ADE 2000-2004 slant factor : 0.167 checking root : TEXMFTE mktexlsr: Updating /usr/local/teTeX/share/texmf.local/ls-R... mktexlsr: Done. encoding vector : texnansi vendor name : urw source path : /usr/local/teTeX/share/texmf.tetex/fonts/ afm/urw/ncntrsbk font collection : ncntrsbk texmf font root : /usr/local/tetex/share/texmf.local pdftex map file : texnansi-urw-ncntrsbk.map processing files : all in pattern uncb8a locating afm files : using pattern /usr/local/teTeX/share/ texmf.tetex/fonts/afm/urw/ncntrsbk/uncb8a.afm locating afm files : using pattern uncb8a extending map file : /usr/local/teTeX/share/texmf.local/fonts/ map/pdftex/context/texnansi-urw-ncntrsbk.map font identifier : CenturySchL-Bold-Slanted -> text -> tfm + vf generating raw tfm/vpl : texnansi-raw-uncb8a-slanted-167 (from uncb8a) generating new vf : texnansi-uncb8a-slanted-167 (from texnansi- raw-uncb8a) updating map file : texnansi-urw-ncntrsbk.map generating : ls-r databases mktexlsr: Updating /usr/local/teTeX/share/texmf.local/ls-R... mktexlsr: Done. 011-101:~/tmp davidarnold$ ls GentiumItalic.ttf junk.tex GentiumRegular.ttf makeFilter.m Quiz Four.tex memoize.m QuizFour.aux memoize.m~ QuizFour.log mliu QuizFour.pdf mpartnof QuizFour.tex texnansi-bitstrea-charter.tex StroyPractice texnansi-urw-bookman.tex calc texnansi-urw-ncntrsbk.tex de type-tmf-gw.dat junk.log type-tmf-gw.dat~ junk.m type-tmf.dat junk.pdf type-tmf.dat~ 011-101:~/tmp davidarnold$ On Nov 23, 2005, at 6:16 AM, Adam Lindsay wrote:
David,
Sorry I've been quiet on this front. I've been busy with other, non- ConTeXt things for a while, and am in the process of re-engaging with it.
In order to run type-tmf.dat, you need a way around the hard-coded -- rootlist=TEXMFMAIN that's in the .dat file. gwTeX keeps the fonts we need in what it calls the TEXMFTE directory. My brutish workaround is as follows:
1) Go to some temp directory. 2) copy type-tmf into that directory: cp /usr/local/teTeX/share/texmf.local/context/data/type-tmf.dat . 3) munge type-tmf to something more gwTeX friendly: sed "s/TEXMFMAIN/TEXMFTE/" type-tmf.dat > type-tmf-gw.dat (literally: replace every occurrence of TEXMFMAIN with TEXMFTE and put it in type-tmf-gw.dat) 4) run texfont (prepend with sudo if you have errors): texfont type-tmf-gw.dat 5) run it again, if you want the ec encoding: texfont --en=ec type-tmf-gw.dat 6) process one or two test files to see if it really worked: texexec --once --mode=compact texnansi-urw-bookman.tex
I hope that works for you. Gerben, Hans, can you think of a way to make this workaround unnecessary?
adam
David Arnold said this at Tue, 22 Nov 2005 09:08:17 -0800:
Hans,
When I try:
011-101:/usr/local/teTeX/share/texmf.local/context/data davidarnold$ sudo texfont --encoding=texnansi -batch type-tmf.dat
I get a slew of messages similar to this last one:
TeXFont 2.2.1 - ConTeXt / PRAGMA ADE 2000-2004
slant factor : 0.167 checking root : TEXMFMAIN processing aborted : unknown subpath ../fonts/afm/urw/ncntrsbk
--help : show some more info
Some extra information:
texexec --verbose reports:
applications will use : /usr/local/teTeX/texmf.cnf
This last file is attached.
On Nov 22, 2005, at 7:32 AM, Hans Hagen wrote:
David Arnold wrote:
Taco et al,
OK, this didn't work. Log file attached.
? ?\usetypescript[palatino][texnansi] ? \switchtobodyfont[palatino] ? \starttext ? Hello World! ? \stoptext
no logfile -)
for that one you need to run
texfont --encoding=texnansi --batch type-tmf.dat
(since you are familiar with texnansi .... although better than ec, this encoding was never really supported in distributions, only by mouh, which is why you need to generate metrics yourself)
This one worked.
?\usetypescript[adobekb][8r,ec] ? \usetypescript[palatino][ec] ? \switchtobodyfont[palatino] ? \starttext ? Hello World! ? \stoptext
Two questions:
1. I don't know why one worked and the other didn't. What files could I look at in my tex tree that would give a hint as to which to use?
2. How can I make the first one work?
use texfont (or take cont-fnt from the website)
Hans _______________________________________________ ntg-context mailing list ntg-context@ntg.nl http://www.ntg.nl/mailman/listinfo/ntg-context
David Arnold College of the Redwoods Mathematics Department Eureka, CA 95501 (707) 476-4222 http://online.redwoods.edu/instruct/darnold/
_______________________________________________ ntg-context mailing list ntg-context@ntg.nl http://www.ntg.nl/mailman/listinfo/ntg-context
-- =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= Adam T. Lindsay, Computing Dept. atl@comp.lancs.ac.uk Lancaster University, InfoLab21 +44(0)1524/510.514 Lancaster, LA1 4WA, UK Fax:+44(0)1524/510.492 -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
David Arnold College of the Redwoods Mathematics Department Eureka, CA 95501 (707) 476-4222 http://online.redwoods.edu/instruct/darnold/
David Arnold wrote:
Adam, Hans, Taco, et al,
Here's the result (GWTeX on Mac Tiger) of replacing TEXMFMAIN with TEXMFTE:
011-101:~/tmp davidarnold$ texfont type-tmf-gw.dat
TeXFont 2.2.1 - ConTeXt / PRAGMA ADE 2000-2004
processing batch file : type-tmf-gw.dat batch line : --en=texnansi --ve=public --co=antp -- so=auto --ro=TEXMFMAIN
are you sure that you replaced it? Hans
participants (6)
-
Adam Lindsay
-
David Arnold
-
David Arnold
-
Gerben Wierda
-
Hans Hagen
-
Taco Hoekwater