ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
* Installing Garamond
@ 2003-11-18  1:39 John Culleton
  2003-11-18  6:45 ` Guy Worthington
  2003-11-18  9:26 ` Adam Lindsay
  0 siblings, 2 replies; 3+ messages in thread
From: John Culleton @ 2003-11-18  1:39 UTC (permalink / raw)


I tried to install my newly purchased Adobe AGaramond following the 
example in Bill McCLain's _Beginner's Guide_.  I keep getting warning 
messages like:

Warning: pdfetex (file texnansi-raw-LT50567): Font 
texnansi-raw-LT50567 at 600
not found

Warning: pdfetex (file texnansi-raw-LT50566): Font 
texnansi-raw-LT50566 at 600
not found
</u/usr/TeX/texmf/fonts/type1/bluesky/cm/cmr6.pfb>
Warning: pdfetex (file texnansi-raw-gdsc): Font texnansi-raw-gdsc at 
600 not found

the only change I made ot the fonts was to change the suffixes from 
AFM to afm and PFB to pfb (I run LInux.)  then I ran texfont with the 
following statement:
texfont.pl \
--fontroot=/u/usr/TeX/texmf-local  \
--sourcepath=/tmp/fonts \
--vendor=adobe \
--collection=agaramond \
--makepath --install

I put a reference to the generated map file in pdftex.cfg and linked 
that mapfile to the same directory as pdftex.map. The tfm, vf etc 
files all exist. 

Any hints? any debugging tricks? 
-- 
John Culleton
Able Typesetters and Indexers
http://wexfordpress.com

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

* Re: Installing Garamond
  2003-11-18  1:39 Installing Garamond John Culleton
@ 2003-11-18  6:45 ` Guy Worthington
  2003-11-18  9:26 ` Adam Lindsay
  1 sibling, 0 replies; 3+ messages in thread
From: Guy Worthington @ 2003-11-18  6:45 UTC (permalink / raw)


John Culleton wrote:

Hello John

> I tried to install my newly purchased Adobe AGaramond

AGaramond needs some manual tweaking.  You may get better results if
you download the support files from Walter Schmidt home page:

http://home.vr-web.de/was/fonts.html

Install the following typescript file in a permanent place (I use the
already installed directory /texmf-local/tex/context/user/).  Don't
worry this script was written by someone with more clues than me.

% -- type-agaramond.tex ------------------------------------------
\usetypescriptfile[type-buy]
%
\starttypescript [serif] [agaramond] [ec]
  \definefontsynonym [AGaramond-Regular]        [padr9e]  [encoding=ec]
  \definefontsynonym [AGaramond-Italic]         [padri9e] [encoding=ec]
  \definefontsynonym [AGaramond-Bold]           [padb9e]  [encoding=ec]
  \definefontsynonym [AGaramond-BoldItalic]     [padbi9e] [encoding=ec]
%  
  \definefontsynonym [AGaramond-Regular-OSF]        [padr9d]  [encoding=ec]
  \definefontsynonym [AGaramond-Italic-OSF]         [padri9d] [encoding=ec]
  \definefontsynonym [AGaramond-Bold-OSF]           [padb9d]  [encoding=ec]
  \definefontsynonym [AGaramond-BoldItalic-OSF]     [padbi9d] [encoding=ec]
%
  \definefontsynonym [AGaramond-Semibold]       [pads9e]  [encoding=ec]
  \definefontsynonym [AGaramond-SemiboldItalic] [padsi9e] [encoding=ec]
  \definefontsynonym [AGaramond-Semibold-OSF]       [pads9d]  [encoding=ec]
  \definefontsynonym [AGaramond-SemiboldItalic-OSF] [padsi9d] [encoding=ec]
%
  \definefontsynonym [AGaramond-RegularSC]         [padrc9e]  [encoding=ec]
  \definefontsynonym [AGaramond-SemiboldSC]        [padsc9e]  [encoding=ec]
  \definefontsynonym [AGaramond-RegularSC-OSF]         [padrc9d]  [encoding=ec]
  \definefontsynonym [AGaramond-SemiboldSC-OSF]        [padsc9d]  [encoding=ec]
\stoptypescript
%
\starttypescript [serif] [agaramond] [name]
  \usetypescript[serif][fallback]  
  \definefontsynonym [Serif]             [AGaramond-Regular]  
  \definefontsynonym [SerifBold]         [AGaramond-Bold]
  \definefontsynonym [SerifItalic]       [AGaramond-Italic]
  \definefontsynonym [SerifBoldItalic]   [AGaramond-BoldItalic]
  \definefontsynonym [SemiBold]          [AGaramond-Semibold]
  \definefontsynonym [SemiBoldItalic]    [AGaramond-SemiboldItalic]
  \definefontsynonym [SerifCaps]         [AGaramond-RegularSC]
  \definefontsynonym [SerifSemiCaps]     [AGaramond-SemiboldSC]
  % the regular old-style figures are in the small-caps file
  \definefontsynonym [OldStyle]          [AGaramond-RegularSC-OSF]
\stoptypescript
%
\starttypescript [AGaramond] 
  \definetypeface [AGaramond] [rm] [serif] [agaramond] [default] [encoding=ec]
\stoptypescript
% - end of type-agaramond.tex -----------------------------------------

and then try it on a test file (worry, this is my contribution)

% - tryAGaramond.tex ------------------------------
%% you can of course make a minimal typescript file and then load only
%% that one by setting:
\def\typescriptfiles{type-agaramond.tex}
%
\usetypescriptfile[type-agaramond]
\usetypescript[AGaramond]
\setupencoding[default=ec]
\setupbodyfont[AGaramond,10.5pt]%
\setupfootnotes[bodyfont=8.8pt]%

\starttext
W619Q
\stoptext
% ----------------------------------------

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

* Re: Installing Garamond
  2003-11-18  1:39 Installing Garamond John Culleton
  2003-11-18  6:45 ` Guy Worthington
@ 2003-11-18  9:26 ` Adam Lindsay
  1 sibling, 0 replies; 3+ messages in thread
From: Adam Lindsay @ 2003-11-18  9:26 UTC (permalink / raw)


John Culleton said this at Mon, 17 Nov 2003 20:39:05 -0500:

>texfont.pl \
>--fontroot=/u/usr/TeX/texmf-local  \
>--sourcepath=/tmp/fonts \
>--vendor=adobe \
>--collection=agaramond \
>--makepath --install

John, 

I'm not sure... I tend to use texfont one given way, and don't change my
use patterns much, so it's hard to debug other people's work here...

Try running texfont from within /tmp/fonts and without the --sourcepath
option.


Cheers,
adam
-- 
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
 Adam T. Lindsay                      atl@comp.lancs.ac.uk
 Computing Dept, Lancaster University   +44(0)1524/594.537
 Lancaster, LA1 4YR, UK             Fax:+44(0)1524/593.608
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-

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

end of thread, other threads:[~2003-11-18  9:26 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-11-18  1:39 Installing Garamond John Culleton
2003-11-18  6:45 ` Guy Worthington
2003-11-18  9:26 ` Adam Lindsay

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).