ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
* Still font issues with I-Installer Mac OSX
@ 2006-06-28 12:27 Frank
  2006-06-28 12:44 ` Taco Hoekwater
  0 siblings, 1 reply; 10+ messages in thread
From: Frank @ 2006-06-28 12:27 UTC (permalink / raw)


[-- Attachment #1: Type: text/plain, Size: 575 bytes --]

Hello,

I know that the font problems are a FAQ, but after reading the mail 
archives and manuals I am still having problems. I did a clean install 
of the I-Installer base installation (2005 default) yesterday and still 
get pixel fonts instead of outline fonts. Also I have problems using 
the adobe type1 fonts which worked before. I would like some pointers 
to resolve the problems as a lot of my older documents are typeset with 
ConTeXt using the old way of including adobekb file.

Below are two examples of the problems encountererd

When I create a very simple test

[-- Attachment #2: test.pdf --]
[-- Type: application/pdf, Size: 10344 bytes --]

[-- Attachment #3: Type: text/plain, Size: 424 bytes --]

  file:

\starttext
\input knuth
\stoptext

# texexec --pdf test

I get the pixel result attached. The output from texexec shows the 
inclusion of the font:

</var/tmp/texfonts/pk/modeless/public/lm/ec-lmr12.72pk>
Output written on test.pdf (1 page, 10344 bytes).
Transcript written on test.log.

The font maps are now set correctly per instructions of Hans Hagen 
automatically by the installer. See attached texmf.cnf file

[-- Attachment #4: texmf.cnf --]
[-- Type: application/octet-stream, Size: 3577 bytes --]

% Our directory setup as explained in $SELFAUTOPARENT/share/README.gwtex
% TEXMFMAIN contains the TEXMF tree installed by make install of the programs
TEXMFMAIN = $SELFAUTOPARENT/share/texmf
% TEXMFTE contains the main TEXMF tree from teTeX
TEXMFTE = $SELFAUTOPARENT/share/texmf.tetex
% TEXMFGW contains GW specific defaults and additions
TEXMFGW = $SELFAUTOPARENT/share/texmf.gwtex
% TEXMFLOCAL contains any local system TeXadmin overrides
TEXMFLOCAL = $SELFAUTOPARENT/share/texmf.local
% $VARTEXMF is where texconfig writes its local settings
VARTEXMF = $TEXMFLOCAL
% User texmf trees can be catered for like this...
HOMETEXMF = $HOME/Library/texmf

% Our complete search path, the last three are searched through
% ls-R exclusively, which means that you have to run texhash
% after you have added, moved or deleted files in the tree
TEXMF={$HOMETEXMF,!!$TEXMFLOCAL,!!$TEXMFGW,!!$TEXMFTE,!!$TEXMFMAIN}

% If you want to disable the HOME trees, use this:
% TEXMF=!!{$TEXMFLOCAL,$TEXMFGW,$TEXMFTE,$TEXMFMAIN}

% The system trees.  These are the trees that are shared by all the users.
SYSTEXMF = $TEXMFLOCAL;$TEXMFGW;$TEXMFTE;$TEXMFMAIN

% Where generated fonts may be written.  This tree is used when the sources
% were found in a system tree and either that tree wasn't writable, or the
% varfonts feature was enabled in MT_FEATURES in mktex.cnf.
VARTEXFONTS = /var/tmp/texfonts

% teTeX-3.0 and TL2005 require these. Note, if you want pre-2005 behaviour,
% set GWTEXVAR to VARTEXMF. That makes foo and foo-sys behave the same
% roughly and close to old-style). Setting GWTEXVAR to HOMETEXMF gives you
% new (incompatible) behaviour
GWTEXVAR=$VARTEXMF
TEXMFVAR = $GWTEXVAR
TEXMFCONFIG = $GWTEXVAR
TEXMFSYSCONFIG = $VARTEXMF
TEXMFSYSVAR = $VARTEXMF

% Where to look for ls-R files.  There need not be an ls-R in the
% directories in this path, but if there is one, Kpathsea will use it.
% This is default set to TEXMF+VARTEXFONTS but without HOMETEXMF 
TEXMFDBS = $TEXMFLOCAL;$TEXMFGW;$TEXMFTE;$TEXMFMAIN;$VARTEXFONTS

% Make font tfm files is mf files are available
MKTEXTFM = 1

% Make fonts when unavailable (not all fonts are available for pdf directly)
% Useful when using non-pdf-available fonts and going the tex->dvi->ps->pdf route
MKTEXPK.pdftex = 1
MKTEXPK.pdflatex = 1
MKTEXPK.pdfetex = 1
MKTEXPK.pdfelatex = 1

% Enable \write18 (run shell processes from within TeX job)
% Set to t if needed
% (I think this might have security implications, especially if you
% run tex jobs as administrator, so I keep it turned off by default
shell_escape = f

% Fixes for mixing old and new style locations in TL2004 (according to
% Hans Hagen), adapted in 2006
TEXPSHEADERS		= .;$TEXMF/{fonts/{enc,map,type1,truetype},dvips,pdftex,tex}//;$TEXMF/{etex,tex,pdftex,dvips,fonts/type1}//
TEXFONTMAPS.dvipdfm	= .;$TEXMF/fonts/map/{dvipdfm,dvips,}//
TEXFONTMAPS.dvipdfmx	= .;$TEXMF/fonts/map/{dvipdfm,dvips,}//
TEXFONTMAPS.pdftex	= .;$TEXMF/fonts/map/{pdftex,dvips,}//
TEXFONTMAPS.pdfetex	= .;$TEXMF/fonts/map/{pdftex,dvips,}//
TEXFONTMAPS.xetex	= .;$TEXMF/fonts/map/{xetex,pdftex,dvips,}//
TEXFONTMAPS.dvips	= .;$TEXMF/fonts/map/{dvips,pdftex,}//
TEXFONTMAPS		= .;$TEXMF/fonts/map/{$progname,pdftex,dvips,}//;$TEXMF/{$progname,pdftex,dvips}/{config,}//
TEXCONFIG		= .;$TEXMF/{fonts/map,dvips,pdftex,dvipdfmx,dvipdfm}//
PDFTEXCONFIG		= .;$TEXMF/pdftex/{$progname,}//
DVIPDFMINPUTS		= .;$TEXMF/{fonts/map,dvips,pdftex,dvipdfmx,dvipdfm}//

% XeTeX
TEXINPUTS.xelatex =			.;$TEXMF/{xetex,tex}/{xelatex,latex,generic,}//
TEXINPUTS.xetex   =			.;$TEXMF/{xetex,tex}/{xetex,plain,generic,}//

[-- Attachment #5: Type: text/plain, Size: 7466 bytes --]



On a second test I tried to use the postscript fonts:

\usetypescript[pos]
%\usetypescript[modern]

\setupbodyfont[pos,ss,12pt]

\starttext
\input knuth
\blank

Some ligatures: ffi, ffl.
\stoptext

Resulting in the output below.

zoe:~/context frank$ texexec --pdf type1

  TeXExec 5.2.4 - ConTeXt / PRAGMA ADE 1997-2005

             executable : pdfetex
                 format : cont-en
              inputfile : type1
                 output : pdftex
              interface : en
           current mode : none
                TeX run : 1

This is pdfeTeX, Version 3.141592-1.30.4-2.2 (Web2C 7.5.5)
  (/usr/local/teTeX/share/texmf.tetex/web2c/natural.tcx)
entering extended mode
(./type1.tex

ConTeXt  ver: 2006.06.09 13:05  fmt: 2006.6.26  int: english  mes:  
english

language        : language en is active
<protectionstate 0>
system          : cont-new loaded
(/usr/local/teTeX/share/texmf.tetex/tex/context/base/cont-new.tex
systems         : beware: some patches loaded from cont-new.tex!
color           : palette rollover is available
)
system          : cont-old loaded
(/usr/local/teTeX/share/texmf.tetex/tex/context/base/cont-old.tex
loading         : Context Old Macros
)
system          : cont-fil loaded
(/usr/local/teTeX/share/texmf.tetex/tex/context/base/cont-fil.tex
loading         : Context File Synonyms
)
system          : cont-sys.rme loaded
(/usr/local/teTeX/share/texmf.tetex/tex/context/user/cont-sys.rme
(/usr/local/teTeX/share/texmf.tetex/tex/context/base/type-exa.tex)
(/usr/local/teTeX/share/texmf.tetex/tex/context/base/type-syn.tex)
(/usr/local/teTeX/share/texmf.tetex/tex/context/base/type-enc.tex)
(/usr/local/teTeX/share/texmf.tetex/tex/context/base/type-siz.tex)
(/usr/local/teTeX/share/texmf.tetex/tex/context/base/type-map.tex)
(/usr/local/teTeX/share/texmf.tetex/tex/context/base/type-spe.tex)
(/usr/local/teTeX/share/texmf.tetex/tex/context/base/type-akb.tex))
bodyfont        : 12pt rm is loaded
language        : patterns en->ec:ec->1->2:3 uk->ec:ec->2->2:3  
de->texnansi:tex
nansi->3->2:3 de->ec:ec->4->2:3 fr->texnansi:texnansi->5->2:3  
fr->ec:ec->6->2:3
  es->ec:ec->7->2:3 pt->texnansi:texnansi->8->2:3 pt->ec:ec->9->2:3  
it->texnansi
:texnansi->10->2:3 it->ec:ec->11->2:3 nl->texnansi:texnansi->12->2:3  
nl->ec:ec-
 >13->2:3 cz->il2:il2->14->2:3 cz->ec:ec->15->2:3 sk->il2:il2->16->2:3  
sk->ec:ec
->17->2:3 pl->pl0:pl0->18->2:3 pl->ec:ec->19->2:3 pl->qx:qx->20->2:3  
loaded
specials        : tex,postscript,rokicki loaded
system          : type1.top loaded
(./type1.top
specials        : loading definition file tpd
(/usr/local/teTeX/share/texmf.tetex/tex/context/base/spec-tpd.tex
specials        : loading definition file fdf
(/usr/local/teTeX/share/texmf.tetex/tex/context/base/spec-fdf.tex)
specials        : fdf loaded
)
specials        : fdf,tpd loaded
)
systems         : system commands are disabled
(/usr/local/teTeX/share/texmf.tetex/tex/context/base/type-exa.tex)
(/usr/local/teTeX/share/texmf.tetex/tex/context/base/type-syn.tex)
(/usr/local/teTeX/share/texmf.tetex/tex/context/base/type-enc.tex)
(/usr/local/teTeX/share/texmf.tetex/tex/context/base/type-siz.tex)
(/usr/local/teTeX/share/texmf.tetex/tex/context/base/type-map.tex)
(/usr/local/teTeX/share/texmf.tetex/tex/context/base/type-spe.tex)
(/usr/local/teTeX/share/texmf.tetex/tex/context/base/type-akb.tex)
(/usr/local/teTeX/share/texmf.tetex/tex/context/base/type-pre.tex)
(/usr/local/teTeX/share/texmf.tetex/tex/context/base/type-exa.tex)
(/usr/local/teTeX/share/texmf.tetex/tex/context/base/type-syn.tex)
(/usr/local/teTeX/share/texmf.tetex/tex/context/base/type-enc.tex)
(/usr/local/teTeX/share/texmf.tetex/tex/context/base/type-siz.tex)
(/usr/local/teTeX/share/texmf.tetex/tex/context/base/type-map.tex)
(/usr/local/teTeX/share/texmf.tetex/tex/context/base/type-spe.tex)
(/usr/local/teTeX/share/texmf.tetex/tex/context/base/type-akb.tex)
(/usr/local/teTeX/share/texmf.tetex/tex/context/base/type-exa.tex)
(/usr/local/teTeX/share/texmf.tetex/tex/context/base/type-syn.tex)
(/usr/local/teTeX/share/texmf.tetex/tex/context/base/type-enc.tex)
(/usr/local/teTeX/share/texmf.tetex/tex/context/base/type-siz.tex)
(/usr/local/teTeX/share/texmf.tetex/tex/context/base/type-map.tex)
(/usr/local/teTeX/share/texmf.tetex/tex/context/base/type-spe.tex)
(/usr/local/teTeX/share/texmf.tetex/tex/context/base/type-akb.tex)
(/usr/local/teTeX/share/texmf.tetex/tex/context/base/type-exa.tex)
(/usr/local/teTeX/share/texmf.tetex/tex/context/base/type-syn.tex)
(/usr/local/teTeX/share/texmf.tetex/tex/context/base/type-enc.tex)
(/usr/local/teTeX/share/texmf.tetex/tex/context/base/type-siz.tex)
(/usr/local/teTeX/share/texmf.tetex/tex/context/base/type-map.tex)
(/usr/local/teTeX/share/texmf.tetex/tex/context/base/type-spe.tex)
(/usr/local/teTeX/share/texmf.tetex/tex/context/base/type-akb.tex)
(/usr/local/teTeX/share/texmf.tetex/tex/context/base/type-exa.tex)
(/usr/local/teTeX/share/texmf.tetex/tex/context/base/type-syn.tex)
(/usr/local/teTeX/share/texmf.tetex/tex/context/base/type-enc.tex)
(/usr/local/teTeX/share/texmf.tetex/tex/context/base/type-siz.tex)
(/usr/local/teTeX/share/texmf.tetex/tex/context/base/type-map.tex)
(/usr/local/teTeX/share/texmf.tetex/tex/context/base/type-spe.tex)
(/usr/local/teTeX/share/texmf.tetex/tex/context/base/type-akb.tex)
(/usr/local/teTeX/share/texmf.tetex/tex/context/base/type-exa.tex)
(/usr/local/teTeX/share/texmf.tetex/tex/context/base/type-syn.tex)
(/usr/local/teTeX/share/texmf.tetex/tex/context/base/type-enc.tex)
(/usr/local/teTeX/share/texmf.tetex/tex/context/base/type-siz.tex)
(/usr/local/teTeX/share/texmf.tetex/tex/context/base/type-map.tex)
(/usr/local/teTeX/share/texmf.tetex/tex/context/base/type-spe.tex)
(/usr/local/teTeX/share/texmf.tetex/tex/context/base/type- 
akb.tex)kpathsea: Running mktextfm ec-uhvr8a
/usr/local/teTeX/share/texmf/web2c/mktexnam: Could not map typeface  
abbreviation c- for ec-uhvr8a.
/usr/local/teTeX/share/texmf/web2c/mktexnam: Need to update  
/usr/local/teTeX/share/texmf.tetex/fonts/map/fontname/special.map?
mktextfm: Running mf-nowin -progname=mf \mode:=ljfour; mag:=1;  
nonstopmode; input ec-uhvr8a
This is METAFONT, Version 2.71828 (Web2C 7.5.5)

kpathsea: Running mktexmf ec-uhvr8a
! I can't find file `ec-uhvr8a'.
<*> ...jfour; mag:=1; nonstopmode; input ec-uhvr8a

Please type another input file name
! Emergency stop.
<*> ...jfour; mag:=1; nonstopmode; input ec-uhvr8a

Transcript written on mfput.log.
grep: ec-uhvr8a.log: No such file or directory
mktextfm: `mf-nowin -progname=mf \mode:=ljfour; mag:=1; nonstopmode;  
input ec-uhvr8a' failed to make ec-uhvr8a.tfm.
kpathsea: Appending font creation commands to missfont.log.

! Font \*12ptsstf*=ec-uhvr8a at 12.0pt not loadable: Metric (TFM) file  
not foun
d.
<to be read again>
                    \relax
\xxdododefinefont ...tspec {#4}\newfontidentifier
                                                   \let  
\localrelativefontsiz...

\fontstrategy ...ame #1\csname #2#3#4#5\endcsname
                                                   \tryingfontfalse \fi
<inserted text> ...yle \fontalternative \fontsize
                                                   \fi \iftryingfont  
\fontstr...

\synchronizefont ...strategy \the \fontstrategies
                                                   \relax \fi  
\ifskipfontchar...
<argument> \getvalue {\@style@ \fontstyle }
                                            \edef \fontstyle {\fontstyle  
}\if...
...
l.5 \setupbodyfont[pos,ss,12pt]

?


[-- Attachment #6: Type: text/plain, Size: 139 bytes --]

_______________________________________________
ntg-context mailing list
ntg-context@ntg.nl
http://www.ntg.nl/mailman/listinfo/ntg-context

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: Still font issues with I-Installer Mac OSX
  2006-06-28 12:27 Still font issues with I-Installer Mac OSX Frank
@ 2006-06-28 12:44 ` Taco Hoekwater
  2006-06-28 16:13   ` Frank
  0 siblings, 1 reply; 10+ messages in thread
From: Taco Hoekwater @ 2006-06-28 12:44 UTC (permalink / raw)




Frank wrote:
> I get the pixel result attached. The output from texexec shows the 
> inclusion of the font:
> 
> </var/tmp/texfonts/pk/modeless/public/lm/ec-lmr12.72pk>
> Output written on test.pdf (1 page, 10344 bytes).
> Transcript written on test.log.

Something is still wrong, because it is downloading the bitmap.
Can you post the test.log?

> The font maps are now set correctly per instructions of Hans Hagen 
> automatically by the installer. See attached texmf.cnf file
> 
> 
> On a second test I tried to use the postscript fonts:
> 
> \usetypescript[pos]

Make that

   \usetypescript[pos][ec]

and it should work ok.

Cheers, taco

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: Still font issues with I-Installer Mac OSX
  2006-06-28 12:44 ` Taco Hoekwater
@ 2006-06-28 16:13   ` Frank
  2006-06-28 16:34     ` Taco Hoekwater
  0 siblings, 1 reply; 10+ messages in thread
From: Frank @ 2006-06-28 16:13 UTC (permalink / raw)


[-- Attachment #1: Type: text/plain, Size: 432 bytes --]


On 28-jun-06, at 14:44, Taco Hoekwater wrote:

>
>
> Frank wrote:
>> I get the pixel result attached. The output from texexec shows the
>> inclusion of the font:
>>
>> </var/tmp/texfonts/pk/modeless/public/lm/ec-lmr12.72pk>
>> Output written on test.pdf (1 page, 10344 bytes).
>> Transcript written on test.log.
>
> Something is still wrong, because it is downloading the bitmap.
> Can you post the test.log?
>

Here is the log:



[-- Attachment #2: test.log --]
[-- Type: application/octet-stream, Size: 5319 bytes --]

This is pdfeTeX, Version 3.141592-1.30.4-2.2 (Web2C 7.5.5) (format=cont-en 2006.6.26)  28 JUN 2006 14:12
entering extended mode
 (/usr/local/teTeX/share/texmf.tetex/web2c/natural.tcx)
**&cont-en test.tex
(./test.tex

ConTeXt  ver: 2006.06.09 13:05  fmt: 2006.6.26  int: english  mes: english

language        : language en is active
<protectionstate 0>
system          : cont-new loaded
(/usr/local/teTeX/share/texmf.tetex/tex/context/base/cont-new.tex
systems         : beware: some patches loaded from cont-new.tex!
color           : palette rollover is available
)
system          : cont-old loaded
(/usr/local/teTeX/share/texmf.tetex/tex/context/base/cont-old.tex
loading         : Context Old Macros
)
system          : cont-fil loaded
(/usr/local/teTeX/share/texmf.tetex/tex/context/base/cont-fil.tex
loading         : Context File Synonyms
)
system          : cont-sys.rme loaded
(/usr/local/teTeX/share/texmf.tetex/tex/context/user/cont-sys.rme
(/usr/local/teTeX/share/texmf.tetex/tex/context/base/type-exa.tex)
(/usr/local/teTeX/share/texmf.tetex/tex/context/base/type-syn.tex)
(/usr/local/teTeX/share/texmf.tetex/tex/context/base/type-enc.tex)
(/usr/local/teTeX/share/texmf.tetex/tex/context/base/type-siz.tex)
(/usr/local/teTeX/share/texmf.tetex/tex/context/base/type-map.tex)
(/usr/local/teTeX/share/texmf.tetex/tex/context/base/type-spe.tex)
(/usr/local/teTeX/share/texmf.tetex/tex/context/base/type-akb.tex))
bodyfont        : 12pt rm is loaded
language        : patterns en->ec:ec->1->2:3 uk->ec:ec->2->2:3 de->texnansi:tex
nansi->3->2:3 de->ec:ec->4->2:3 fr->texnansi:texnansi->5->2:3 fr->ec:ec->6->2:3
 es->ec:ec->7->2:3 pt->texnansi:texnansi->8->2:3 pt->ec:ec->9->2:3 it->texnansi
:texnansi->10->2:3 it->ec:ec->11->2:3 nl->texnansi:texnansi->12->2:3 nl->ec:ec-
>13->2:3 cz->il2:il2->14->2:3 cz->ec:ec->15->2:3 sk->il2:il2->16->2:3 sk->ec:ec
->17->2:3 pl->pl0:pl0->18->2:3 pl->ec:ec->19->2:3 pl->qx:qx->20->2:3 loaded
specials        : tex,postscript,rokicki loaded
\openout2 = `test.tui'.

system          : test.top loaded
(./test.top
specials        : loading definition file tpd
(/usr/local/teTeX/share/texmf.tetex/tex/context/base/spec-tpd.tex
specials        : loading definition file fdf
(/usr/local/teTeX/share/texmf.tetex/tex/context/base/spec-fdf.tex)
specials        : fdf loaded
)
specials        : fdf,tpd loaded
)
\openout0 = `test-mpgraph.mp'.

\openout0 = `mpgraph.mp'.


systems         : system commands are disabled
(./test.tuo) (./test.tuo) (./test.tuo) (./test.tuo) (./test.tuo) (./test.tuo)
(./test.tuo) (./test.tuo) (./test.tuo) (./test.tuo) (./test.tuo) (./test.tuo)
systems         : begin file test at line 1
(/usr/local/teTeX/share/texmf.tetex/tex/context/sample/knuth.tex)
fonts           : resetting map file list
fonts           : using map file: original-base
fonts           : using map file: ec-public-lm
fonts           : using map file: ec-base
fonts           : using map file: 8r-base
fonts           : using map file: qx-base
fonts           : using map file: t5-base
fonts           : using map file: texnansi-base
fonts           : using map file: original-ams-cmr
fonts           : using map file: original-ams-euler
fonts           : using map file: original-public-lm
fonts           : using map file: original-public-plr
fonts           : using map file: original-public-csr
fonts           : using map file: original-public-vnr
fonts           : using map file: texnansi-public-lm
[1.1{/usr/local/teTeX/share/texmf.tetex/fonts/map/dvips/context/original-empty.
map}{/usr/local/teTeX/share/texmf.tetex/fonts/map/dvips/context/original-base.m
ap}{/usr/local/teTeX/share/texmf.tetex/fonts/map/dvips/context/ec-public-lm.map
}{/usr/local/teTeX/share/texmf.tetex/fonts/map/dvips/context/ec-base.map}{/usr/
local/teTeX/share/texmf.tetex/fonts/map/dvips/context/8r-base.map}{/usr/local/t
eTeX/share/texmf.tetex/fonts/map/dvips/context/qx-base.map}{/usr/local/teTeX/sh
are/texmf.tetex/fonts/map/dvips/context/t5-base.map}{/usr/local/teTeX/share/tex
mf.tetex/fonts/map/dvips/context/texnansi-base.map}{/usr/local/teTeX/share/texm
f.tetex/fonts/map/dvips/context/original-ams-cmr.map}{/usr/local/teTeX/share/te
xmf.tetex/fonts/map/dvips/context/original-ams-euler.map}{/usr/local/teTeX/shar
e/texmf.tetex/fonts/map/dvips/context/original-public-lm.map}{/usr/local/teTeX/
share/texmf.tetex/fonts/map/dvips/context/original-public-plr.map}{/usr/local/t
eTeX/share/texmf.tetex/fonts/map/dvips/context/original-public-csr.map}{/usr/lo
cal/teTeX/share/texmf.tetex/fonts/map/dvips/context/original-public-vnr.map}{/u
sr/local/teTeX/share/texmf.tetex/fonts/map/dvips/context/texnansi-public-lm.map
}]
systems         : end file test at line 5
 ) 
Here is how much of TeX's memory you used:
 993 strings out of 58710
 16363 string characters out of 560562
 4582523 words of memory out of 6026065
 39629 multiletter control sequences out of 10000+50000
 75018 words of font info for 37 fonts, out of 2000000 for 2000
 192 hyphenation exceptions out of 5000
 47i,18n,51p,227b,536s stack positions out of 5000i,500n,6000p,200000b,40000s
PDF statistics:
 6 PDF objects out of 300000
 0 named destinations out of 131072
 1 words of extra memory for PDF output out of 10000
 </var/tmp/texfonts/pk/modeless/public/lm/ec-lmr12.72pk>
Output written on test.pdf (1 page, 10344 bytes).

[-- Attachment #3: Type: text/plain, Size: 2384 bytes --]


>> The font maps are now set correctly per instructions of Hans Hagen
>> automatically by the installer. See attached texmf.cnf file
>>
>>
>> On a second test I tried to use the postscript fonts:
>>
>> \usetypescript[pos]
>
> Make that
>
>    \usetypescript[pos][ec]
>
> and it should work ok.

Unfortunately no. It has trouble with the font metrics. The log shows:

(/usr/local/teTeX/share/texmf.tetex/tex/context/base/type-spe.tex)
(/usr/local/teTeX/share/texmf.tetex/tex/context/base/type- 
akb.tex)kpathsea: Running mktextfm ec-uhvr8a
/usr/local/teTeX/share/texmf/web2c/mktexnam: Could not map typeface  
abbreviation c- for ec-uhvr8a.
/usr/local/teTeX/share/texmf/web2c/mktexnam: Need to update  
/usr/local/teTeX/share/texmf.tetex/fonts/map/fontname/special.map?
mktextfm: Running mf-nowin -progname=mf \mode:=ljfour; mag:=1;  
nonstopmode; input ec-uhvr8a
This is METAFONT, Version 2.71828 (Web2C 7.5.5)

kpathsea: Running mktexmf ec-uhvr8a
! I can't find file `ec-uhvr8a'.
<*> ...jfour; mag:=1; nonstopmode; input ec-uhvr8a

Please type another input file name
! Emergency stop.
<*> ...jfour; mag:=1; nonstopmode; input ec-uhvr8a

Transcript written on mfput.log.
grep: ec-uhvr8a.log: No such file or directory
mktextfm: `mf-nowin -progname=mf \mode:=ljfour; mag:=1; nonstopmode;  
input ec-uhvr8a' failed to make ec-uhvr8a.tfm.
kpathsea: Appending font creation commands to missfont.log.

! Font \*12ptsstf*=ec-uhvr8a at 12.0pt not loadable: Metric (TFM) file  
not foun
d.
<to be read again>
                    \relax
\xxdododefinefont ...tspec {#4}\newfontidentifier
                                                   \let  
\localrelativefontsiz...

\fontstrategy ...ame #1\csname #2#3#4#5\endcsname
                                                   \tryingfontfalse \fi
<inserted text> ...yle \fontalternative \fontsize
                                                   \fi \iftryingfont  
\fontstr...

\synchronizefont ...strategy \the \fontstrategies
                                                   \relax \fi  
\ifskipfontchar...
<argument> \getvalue {\@style@ \fontstyle }
                                            \edef \fontstyle {\fontstyle  
}\if...
...
l.5 \setupbodyfont[pos,ss,12pt]

?

>
> Cheers, taco
> _______________________________________________
> ntg-context mailing list
> ntg-context@ntg.nl
> http://www.ntg.nl/mailman/listinfo/ntg-context

[-- Attachment #4: Type: text/plain, Size: 139 bytes --]

_______________________________________________
ntg-context mailing list
ntg-context@ntg.nl
http://www.ntg.nl/mailman/listinfo/ntg-context

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: Still font issues with I-Installer Mac OSX
  2006-06-28 16:13   ` Frank
@ 2006-06-28 16:34     ` Taco Hoekwater
  2006-06-28 21:13       ` Frank
  2006-06-28 21:43       ` Gerben Wierda
  0 siblings, 2 replies; 10+ messages in thread
From: Taco Hoekwater @ 2006-06-28 16:34 UTC (permalink / raw)


Frank wrote:
> 
>>
> 
> Here is the log:
> 

 From your log:

[1.1{/usr/local/teTeX/share/texmf.tetex/fonts/map/dvips/context/original-empty.
map}{/usr/local/teTeX/share/texmf.tetex/fonts/map/dvips/context/original-base.m
ap}{/usr/local/teTeX/share/texmf.tetex/fonts/map/dvips/context/ec-public-lm.map
}{/usr/local/teTeX/share/texmf.tetex/fonts/map/dvips/context/ec-base.map}{/usr/
local/teTeX/share/texmf.tetex/fonts/map/dvips/context/8r-base.map}{/usr/local/t
eTeX/share/texmf.tetex/fonts/map/dvips/context/qx-base.map}{/usr/local/teTeX/sh
are/texmf.tetex/fonts/map/dvips/context/t5-base.map}{/usr/local/teTeX/share/tex
mf.tetex/fonts/map/dvips/context/texnansi-base.map}{/usr/local/teTeX/share/texm
f.tetex/fonts/map/dvips/context/original-ams-cmr.map}{/usr/local/teTeX/share/te
xmf.tetex/fonts/map/dvips/context/original-ams-euler.map}{/usr/local/teTeX/shar
e/texmf.tetex/fonts/map/dvips/context/original-public-lm.map}{/usr/local/teTeX/
share/texmf.tetex/fonts/map/dvips/context/original-public-plr.map}{/usr/local/t
eTeX/share/texmf.tetex/fonts/map/dvips/context/original-public-csr.map}{/usr/lo
cal/teTeX/share/texmf.tetex/fonts/map/dvips/context/original-public-vnr.map}{/u
sr/local/teTeX/share/texmf.tetex/fonts/map/dvips/context/texnansi-public-lm.map


You are using pdftex, so I assume it should load the font map files
in "map/pdftex", not in "map/dvips". But I do not know what package
supplied those map/dvips font files in the first place, so I cannot
help you any further. (that whole folder does not exist on my system)

Good luck,

Taco

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: Still font issues with I-Installer Mac OSX
  2006-06-28 16:34     ` Taco Hoekwater
@ 2006-06-28 21:13       ` Frank
  2006-06-28 21:24         ` Taco Hoekwater
  2006-06-28 21:43       ` Gerben Wierda
  1 sibling, 1 reply; 10+ messages in thread
From: Frank @ 2006-06-28 21:13 UTC (permalink / raw)


Taco Hoekwater wrote:
> Frank wrote:
>   
>> Here is the log:
>>
>>     
>
>  From your log:
>
> [1.1{/usr/local/teTeX/share/texmf.tetex/fonts/map/dvips/context/original-empty.
> map}{/usr/local/teTeX/share/texmf.tetex/fonts/map/dvips/context/original-base.m
> ap}{/usr/local/teTeX/share/texmf.tetex/fonts/map/dvips/context/ec-public-lm.map
> }{/usr/local/teTeX/share/texmf.tetex/fonts/map/dvips/context/ec-base.map}{/usr/
> local/teTeX/share/texmf.tetex/fonts/map/dvips/context/8r-base.map}{/usr/local/t
> eTeX/share/texmf.tetex/fonts/map/dvips/context/qx-base.map}{/usr/local/teTeX/sh
> are/texmf.tetex/fonts/map/dvips/context/t5-base.map}{/usr/local/teTeX/share/tex
> mf.tetex/fonts/map/dvips/context/texnansi-base.map}{/usr/local/teTeX/share/texm
> f.tetex/fonts/map/dvips/context/original-ams-cmr.map}{/usr/local/teTeX/share/te
> xmf.tetex/fonts/map/dvips/context/original-ams-euler.map}{/usr/local/teTeX/shar
> e/texmf.tetex/fonts/map/dvips/context/original-public-lm.map}{/usr/local/teTeX/
> share/texmf.tetex/fonts/map/dvips/context/original-public-plr.map}{/usr/local/t
> eTeX/share/texmf.tetex/fonts/map/dvips/context/original-public-csr.map}{/usr/lo
> cal/teTeX/share/texmf.tetex/fonts/map/dvips/context/original-public-vnr.map}{/u
> sr/local/teTeX/share/texmf.tetex/fonts/map/dvips/context/texnansi-public-lm.map
>
>
> You are using pdftex, so I assume it should load the font map files
> in "map/pdftex", not in "map/dvips". But I do not know what package
> supplied those map/dvips font files in the first place, so I cannot
> help you any further. (that whole folder does not exist on my system)
>
> Good luck,
>
> Taco
>
> _______________________________________________
> ntg-context mailing list
> ntg-context@ntg.nl
> http://www.ntg.nl/mailman/listinfo/ntg-context
>   
My guess is that some files are missing from map/pdftex and it then uses 
map/dvips as a fallback. It would be interesting to know what you have 
on your system in map/pdftex

Frank

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: Still font issues with I-Installer Mac OSX
  2006-06-28 21:13       ` Frank
@ 2006-06-28 21:24         ` Taco Hoekwater
  0 siblings, 0 replies; 10+ messages in thread
From: Taco Hoekwater @ 2006-06-28 21:24 UTC (permalink / raw)


Frank wrote:
> My guess is that some files are missing from map/pdftex and it then uses 
> map/dvips as a fallback. It would be interesting to know what you have 
> on your system in map/pdftex

lots and lots of map files ;-)

8r-base.map           el-public-lm.map 
original-context-symbol.map       original-public-plr.map    qx-base.map 
          texnansi-base.map
8r-urw-urwgothic.map  original-adobe-euro.map  original-dummy.map 
          original-public-vnr.map    qx-os-public-lm.map 
texnansi-os-public-lm.map
ec-base.map           original-ams-base.map    original-empty.map 
          original-vogel-symbol.map  qx-public-lm.map 
texnansi-public-lm.map
ec-os-public-lm.map   original-ams-cmr.map 
original-micropress-informal.map  original-wasy.map          t5-base.map 
          texnansi-urw-urwgothic.map
ec-public-lm.map      original-ams-euler.map   original-public-csr.map 
          original-youngryu-px.map   t5-os-public-lm.map
ec-urw-urwgothic.map  original-base.map        original-public-lm.map 
          original-youngryu-tx.map   t5-public-lm.map

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: Still font issues with I-Installer Mac OSX
  2006-06-28 16:34     ` Taco Hoekwater
  2006-06-28 21:13       ` Frank
@ 2006-06-28 21:43       ` Gerben Wierda
  2006-06-29  8:23         ` Frank
  2006-06-29  8:28         ` Frank
  1 sibling, 2 replies; 10+ messages in thread
From: Gerben Wierda @ 2006-06-28 21:43 UTC (permalink / raw)


On Jun 28, 2006, at 18:34, Taco Hoekwater wrote:

> [1.1{/usr/local/teTeX/share/texmf.tetex/fonts/map/dvips/context/ 
> original-empty.
> map}{/usr/local/teTeX/share/texmf.tetex/fonts/map/dvips/context/ 
> original-base.m
> ap}{/usr/local/teTeX/share/texmf.tetex/fonts/map/dvips/context/ec- 
> public-lm.map
> }{/usr/local/teTeX/share/texmf.tetex/fonts/map/dvips/context/ec- 
> base.map}{/usr/
> local/teTeX/share/texmf.tetex/fonts/map/dvips/context/8r-base.map}{/ 
> usr/local/t
> eTeX/share/texmf.tetex/fonts/map/dvips/context/qx-base.map}{/usr/ 
> local/teTeX/sh
> are/texmf.tetex/fonts/map/dvips/context/t5-base.map}{/usr/local/teTeX/ 
> share/tex
> mf.tetex/fonts/map/dvips/context/texnansi-base.map}{/usr/local/teTeX/ 
> share/texm
> f.tetex/fonts/map/dvips/context/original-ams-cmr.map}{/usr/local/ 
> teTeX/share/te
> xmf.tetex/fonts/map/dvips/context/original-ams-euler.map}{/usr/local/ 
> teTeX/shar
> e/texmf.tetex/fonts/map/dvips/context/original-public-lm.map}{/usr/ 
> local/teTeX/
> share/texmf.tetex/fonts/map/dvips/context/original-public-plr.map}{/ 
> usr/local/t
> eTeX/share/texmf.tetex/fonts/map/dvips/context/original-public- 
> csr.map}{/usr/lo
> cal/teTeX/share/texmf.tetex/fonts/map/dvips/context/original-public- 
> vnr.map}{/u
> sr/local/teTeX/share/texmf.tetex/fonts/map/dvips/context/texnansi- 
> public-lm.map
>
>
> You are using pdftex, so I assume it should load the font map files
> in "map/pdftex", not in "map/dvips". But I do not know what package
> supplied those map/dvips font files in the first place, so I cannot
> help you any further. (that whole folder does not exist on my system)

The ConTeXt updater writes to texmf.local which takes precedence over  
texmf.tetex which contains a very old ConTeXt. It seems you installed  
the TeX i-Package but you did not install the ConTeXt updater.

G

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: Still font issues with I-Installer Mac OSX
  2006-06-28 21:43       ` Gerben Wierda
@ 2006-06-29  8:23         ` Frank
  2006-06-29  8:28         ` Frank
  1 sibling, 0 replies; 10+ messages in thread
From: Frank @ 2006-06-29  8:23 UTC (permalink / raw)


I did install the updater. Output from texexec is as follows:

texexec --version

  TeXExec 5.2.4 - ConTeXt / PRAGMA ADE 1997-2005

                texexec : TeXExec 5.2.4 - ConTeXt / PRAGMA ADE 1997-2005
                texutil : TeXUtil 9.0.0 - ConTeXt / PRAGMA ADE 1992-2004
                    tex : pdfeTeX, 3.141592-1.30.4-2.2 (Web2C 7.5.5)
                context : ver: 2005.01.31
                cont-en : ver: 2006.06.09 13:05  fmt: 2006.6.26  mes: 
english
                cont-nl : ver: 2006.06.09 13:05  fmt: 2006.6.26  mes: 
dutch

         total run time : 15 seconds


I'm not sure what the meaning is of the context:ver:2005.01.31

Maybe not all of ConTeXt is updated by the updater on my system?

Regards,

Frank
On 28-jun-06, at 23:43, Gerben Wierda wrote:

> On Jun 28, 2006, at 18:34, Taco Hoekwater wrote:
>
>> [1.1{/usr/local/teTeX/share/texmf.tetex/fonts/map/dvips/context/
>> original-empty.
>> map}{/usr/local/teTeX/share/texmf.tetex/fonts/map/dvips/context/
>> original-base.m
>> ap}{/usr/local/teTeX/share/texmf.tetex/fonts/map/dvips/context/ec-
>> public-lm.map
>> }{/usr/local/teTeX/share/texmf.tetex/fonts/map/dvips/context/ec-
>> base.map}{/usr/
>> local/teTeX/share/texmf.tetex/fonts/map/dvips/context/8r-base.map}{/
>> usr/local/t
>> eTeX/share/texmf.tetex/fonts/map/dvips/context/qx-base.map}{/usr/
>> local/teTeX/sh
>> are/texmf.tetex/fonts/map/dvips/context/t5-base.map}{/usr/local/teTeX/
>> share/tex
>> mf.tetex/fonts/map/dvips/context/texnansi-base.map}{/usr/local/teTeX/
>> share/texm
>> f.tetex/fonts/map/dvips/context/original-ams-cmr.map}{/usr/local/
>> teTeX/share/te
>> xmf.tetex/fonts/map/dvips/context/original-ams-euler.map}{/usr/local/
>> teTeX/shar
>> e/texmf.tetex/fonts/map/dvips/context/original-public-lm.map}{/usr/
>> local/teTeX/
>> share/texmf.tetex/fonts/map/dvips/context/original-public-plr.map}{/
>> usr/local/t
>> eTeX/share/texmf.tetex/fonts/map/dvips/context/original-public-
>> csr.map}{/usr/lo
>> cal/teTeX/share/texmf.tetex/fonts/map/dvips/context/original-public-
>> vnr.map}{/u
>> sr/local/teTeX/share/texmf.tetex/fonts/map/dvips/context/texnansi-
>> public-lm.map
>>
>>
>> You are using pdftex, so I assume it should load the font map files
>> in "map/pdftex", not in "map/dvips". But I do not know what package
>> supplied those map/dvips font files in the first place, so I cannot
>> help you any further. (that whole folder does not exist on my system)
>
> The ConTeXt updater writes to texmf.local which takes precedence over
> texmf.tetex which contains a very old ConTeXt. It seems you installed
> the TeX i-Package but you did not install the ConTeXt updater.
>
> G
>
> _______________________________________________
> ntg-context mailing list
> ntg-context@ntg.nl
> http://www.ntg.nl/mailman/listinfo/ntg-context

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: Still font issues with I-Installer Mac OSX
  2006-06-28 21:43       ` Gerben Wierda
  2006-06-29  8:23         ` Frank
@ 2006-06-29  8:28         ` Frank
  2006-06-29 13:47           ` Frank
  1 sibling, 1 reply; 10+ messages in thread
From: Frank @ 2006-06-29  8:28 UTC (permalink / raw)


I did some more digging around in my system.

Previously I used Darwinports TeTeX 3.0 which installs in 
/opt/local/....

I deinstalled and deleted the old tetex distro, but found a texmf in 
~/Library. I am not sure if this directory was created by the old tetex 
installation or from I-installer.

Would this cause issues with the updater?

Regards,

Frank

On 28-jun-06, at 23:43, Gerben Wierda wrote:

> On Jun 28, 2006, at 18:34, Taco Hoekwater wrote:
>
>> [1.1{/usr/local/teTeX/share/texmf.tetex/fonts/map/dvips/context/
>> original-empty.
>> map}{/usr/local/teTeX/share/texmf.tetex/fonts/map/dvips/context/
>> original-base.m
>> ap}{/usr/local/teTeX/share/texmf.tetex/fonts/map/dvips/context/ec-
>> public-lm.map
>> }{/usr/local/teTeX/share/texmf.tetex/fonts/map/dvips/context/ec-
>> base.map}{/usr/
>> local/teTeX/share/texmf.tetex/fonts/map/dvips/context/8r-base.map}{/
>> usr/local/t
>> eTeX/share/texmf.tetex/fonts/map/dvips/context/qx-base.map}{/usr/
>> local/teTeX/sh
>> are/texmf.tetex/fonts/map/dvips/context/t5-base.map}{/usr/local/teTeX/
>> share/tex
>> mf.tetex/fonts/map/dvips/context/texnansi-base.map}{/usr/local/teTeX/
>> share/texm
>> f.tetex/fonts/map/dvips/context/original-ams-cmr.map}{/usr/local/
>> teTeX/share/te
>> xmf.tetex/fonts/map/dvips/context/original-ams-euler.map}{/usr/local/
>> teTeX/shar
>> e/texmf.tetex/fonts/map/dvips/context/original-public-lm.map}{/usr/
>> local/teTeX/
>> share/texmf.tetex/fonts/map/dvips/context/original-public-plr.map}{/
>> usr/local/t
>> eTeX/share/texmf.tetex/fonts/map/dvips/context/original-public-
>> csr.map}{/usr/lo
>> cal/teTeX/share/texmf.tetex/fonts/map/dvips/context/original-public-
>> vnr.map}{/u
>> sr/local/teTeX/share/texmf.tetex/fonts/map/dvips/context/texnansi-
>> public-lm.map
>>
>>
>> You are using pdftex, so I assume it should load the font map files
>> in "map/pdftex", not in "map/dvips". But I do not know what package
>> supplied those map/dvips font files in the first place, so I cannot
>> help you any further. (that whole folder does not exist on my system)
>
> The ConTeXt updater writes to texmf.local which takes precedence over
> texmf.tetex which contains a very old ConTeXt. It seems you installed
> the TeX i-Package but you did not install the ConTeXt updater.
>
> G
>
> _______________________________________________
> ntg-context mailing list
> ntg-context@ntg.nl
> http://www.ntg.nl/mailman/listinfo/ntg-context

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: Still font issues with I-Installer Mac OSX
  2006-06-29  8:28         ` Frank
@ 2006-06-29 13:47           ` Frank
  0 siblings, 0 replies; 10+ messages in thread
From: Frank @ 2006-06-29 13:47 UTC (permalink / raw)


Finally resolved by:

sudo rm -rf /usr/local/tetex
sudo rm -rf ~/Library/texmf

complete reinstall including ghostscript and cm-super

Regards,

FS
On 29-jun-06, at 10:28, Frank wrote:

> I did some more digging around in my system.
>
> Previously I used Darwinports TeTeX 3.0 which installs in
> /opt/local/....
>
> I deinstalled and deleted the old tetex distro, but found a texmf in
> ~/Library. I am not sure if this directory was created by the old tetex
> installation or from I-installer.
>
> Would this cause issues with the updater?
>
> Regards,
>
> Frank
>
> On 28-jun-06, at 23:43, Gerben Wierda wrote:
>
>> On Jun 28, 2006, at 18:34, Taco Hoekwater wrote:
>>
>>> [1.1{/usr/local/teTeX/share/texmf.tetex/fonts/map/dvips/context/
>>> original-empty.
>>> map}{/usr/local/teTeX/share/texmf.tetex/fonts/map/dvips/context/
>>> original-base.m
>>> ap}{/usr/local/teTeX/share/texmf.tetex/fonts/map/dvips/context/ec-
>>> public-lm.map
>>> }{/usr/local/teTeX/share/texmf.tetex/fonts/map/dvips/context/ec-
>>> base.map}{/usr/
>>> local/teTeX/share/texmf.tetex/fonts/map/dvips/context/8r-base.map}{/
>>> usr/local/t
>>> eTeX/share/texmf.tetex/fonts/map/dvips/context/qx-base.map}{/usr/
>>> local/teTeX/sh
>>> are/texmf.tetex/fonts/map/dvips/context/t5-base.map}{/usr/local/ 
>>> teTeX/
>>> share/tex
>>> mf.tetex/fonts/map/dvips/context/texnansi-base.map}{/usr/local/teTeX/
>>> share/texm
>>> f.tetex/fonts/map/dvips/context/original-ams-cmr.map}{/usr/local/
>>> teTeX/share/te
>>> xmf.tetex/fonts/map/dvips/context/original-ams-euler.map}{/usr/local/
>>> teTeX/shar
>>> e/texmf.tetex/fonts/map/dvips/context/original-public-lm.map}{/usr/
>>> local/teTeX/
>>> share/texmf.tetex/fonts/map/dvips/context/original-public-plr.map}{/
>>> usr/local/t
>>> eTeX/share/texmf.tetex/fonts/map/dvips/context/original-public-
>>> csr.map}{/usr/lo
>>> cal/teTeX/share/texmf.tetex/fonts/map/dvips/context/original-public-
>>> vnr.map}{/u
>>> sr/local/teTeX/share/texmf.tetex/fonts/map/dvips/context/texnansi-
>>> public-lm.map
>>>
>>>
>>> You are using pdftex, so I assume it should load the font map files
>>> in "map/pdftex", not in "map/dvips". But I do not know what package
>>> supplied those map/dvips font files in the first place, so I cannot
>>> help you any further. (that whole folder does not exist on my system)
>>
>> The ConTeXt updater writes to texmf.local which takes precedence over
>> texmf.tetex which contains a very old ConTeXt. It seems you installed
>> the TeX i-Package but you did not install the ConTeXt updater.
>>
>> G
>>
>> _______________________________________________
>> ntg-context mailing list
>> ntg-context@ntg.nl
>> http://www.ntg.nl/mailman/listinfo/ntg-context
>
> _______________________________________________
> ntg-context mailing list
> ntg-context@ntg.nl
> http://www.ntg.nl/mailman/listinfo/ntg-context

^ permalink raw reply	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2006-06-29 13:47 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2006-06-28 12:27 Still font issues with I-Installer Mac OSX Frank
2006-06-28 12:44 ` Taco Hoekwater
2006-06-28 16:13   ` Frank
2006-06-28 16:34     ` Taco Hoekwater
2006-06-28 21:13       ` Frank
2006-06-28 21:24         ` Taco Hoekwater
2006-06-28 21:43       ` Gerben Wierda
2006-06-29  8:23         ` Frank
2006-06-29  8:28         ` Frank
2006-06-29 13:47           ` Frank

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).