[OS X TeX] TeX i-Package updated, Easy Mac font support for PDFTeX

Paul Vickers paul.vickers at unn.ac.uk
Tue Dec 6 07:27:05 EST 2005


Urm, I must have something wrong here. I updated the TeX i package. I 
already had Fondu installed (/usr/local/bin/fondu). The directory 
/usr/local/teTeX/share/texmf.gwtex/fonts/truetype/gtamacfonts/hoefler is 
populated with a number of .ttf fonts.

I took the following LaTeX file:

\documentclass[11pt]{article}
\usepackage{geometry}
\title{Test}
\author{Paul Vickers}
\date{December}

\begin{document}
\maketitle

\section{Waist high}
\subsection{Walking through}
I've always found it difficult to walk through treacle.
\end{document}

and added
   \usepackage[T1]{fontenc}
   \usepackage{gtamachoefler}

to the preamble, thus:
\documentclass[11pt]{article}
\usepackage{geometry}
\usepackage[T1]{fontenc}
\usepackage{gtamachoefler}
\title{Test}
\author{Paul Vickers}
\date{December}

\begin{document}
\maketitle

\section{Waist high}
\subsection{Walking through}
I've always found it difficult to walk through treacle.
\end{document}

Now when I run the .tex file through LaTeX (under TeXShop), I get lots 
of font creation errors and the PDF output is blank. Here's the console log:

"This is pdfeTeX, Version 3.141592-1.30.4-2.2 (Web2C 7.5.5)
  \write18 enabled.
entering extended mode
(./test.tex
LaTeX2e <2003/12/01>
Babel <v3.8d> and hyphenation patterns for american, british, 
nohyphenation, lo
aded.
(/usr/local/teTeX/share/texmf.tetex/tex/latex/base/article.cls
Document Class: article 2004/02/16 v1.4f Standard LaTeX document class
(/usr/local/teTeX/share/texmf.tetex/tex/latex/base/size11.clo))
(/usr/local/teTeX/share/texmf.tetex/tex/latex/geometry/geometry.sty
(/usr/local/teTeX/share/texmf.tetex/tex/latex/graphics/keyval.sty)
(/usr/local/teTeX/share/texmf.tetex/tex/latex/geometry/geometry.cfg))
(/usr/local/teTeX/share/texmf.tetex/tex/latex/base/fontenc.sty
(/usr/local/teTeX/share/texmf.tetex/tex/latex/base/t1enc.def))
(/usr/local/teTeX/share/texmf.gwtex/tex/latex/gtamacfonts/gtamachoefler.sty)
(./test.aux)
(/usr/local/teTeX/share/texmf.gwtex/tex/latex/gtamacfonts/t1gtamachoefler.fd)
[1{/Users/paulvickers/Library/texmf/fonts/map/pdftex/updmap/pdftex.map}]
(./test.aux)kpathsea: Running mktexpk --mfmode / --bdpi 600 --mag 
1+57/600 --dpi 657 ec-hoefler-raw-HoeflerText
mktexpk: don't know how to create bitmap font for 
ec-hoefler-raw-HoeflerText.
kpathsea: Appending font creation commands to missfont.log.
  )
Warning: /usr/local/teTeX/bin/powerpc-apple-darwin-current/pdflatex 
(file ec-ho
efler-raw-HoeflerText): kpathsea: Running mktexpk --mfmode / --bdpi 600 
--mag 1+120/600 --dpi 720 ec-hoefler-raw-HoeflerTextBlack
mktexpk: don't know how to create bitmap font for 
ec-hoefler-raw-HoeflerTextBlack.
Font ec-hoefler-raw-HoeflerText at 657 not found

Warning: /usr/local/teTeX/bin/powerpc-apple-darwin-current/pdflatex 
(file ec-ho
efler-raw-HoeflerTextBlack): kpathsea: Running mktexpk --mfmode / --bdpi 
600 --mag 1+264/600 --dpi 864 ec-hoefler-raw-HoeflerTextBlack
mktexpk: don't know how to create bitmap font for 
ec-hoefler-raw-HoeflerTextBlack.
Font ec-hoefler-raw-HoeflerTextBlack at 720 not fo
und

Warning: /usr/local/teTeX/bin/powerpc-apple-darwin-current/pdflatex 
(file ec-ho
efler-raw-HoeflerTextBlack): kpathsea: Running mktexpk --mfmode / --bdpi 
600 --mag 1+120/600 --dpi 720 ec-hoefler-raw-HoeflerText
mktexpk: don't know how to create bitmap font for 
ec-hoefler-raw-HoeflerText.
Font ec-hoefler-raw-HoeflerTextBlack at 864 not fo
und

Warning: /usr/local/teTeX/bin/powerpc-apple-darwin-current/pdflatex 
(file ec-ho
efler-raw-HoeflerText): kpathsea: Running mktexpk --mfmode / --bdpi 600 
--mag 1+437/600 --dpi 1037 ec-hoefler-raw-HoeflerText
mktexpk: don't know how to create bitmap font for 
ec-hoefler-raw-HoeflerText.
Font ec-hoefler-raw-HoeflerText at 720 not found

Warning: /usr/local/teTeX/bin/powerpc-apple-darwin-current/pdflatex 
(file ec-ho
efler-raw-HoeflerText): Font ec-hoefler-raw-HoeflerText at 1037 not found
Output written on test.pdf (1 page, 1295 bytes).
Transcript written on test.log."

any clues as to what I'm missing?

Paul

Gerben Wierda wrote:
> The TeX i-Package has been updated. It now contains support for several 
> Mac fonts using the gtamacfonts package. Both LaTeX and ConTeXt are 
> supported. Note: only PDFTeX (not TeX+dvips) is supported. PS trickery 
> like font expansion and pstricks is not supported. This is all because 
> of the formats of the fonts (truetype).
> 
> Apple ships the fonts packed in socalled "font suit cases". PDFTeX can 
> only use the fonts unpacked. To unpack them a tool called fondu can be 
> used. There is an i-Package for fondu. If fondu is installed *before* 
> TeX is installed, the TeX i-Package will automatically unpack the Mac 
> fonts in the right TeX directory. Note that distributing the Apple fonts 
> (packed or unpacked) is a breach of copyright, hence I do not distribute 
> the fonts and nor should you.
> 
> After installing fondu and TeX, you can us it like this:
> 
> To use these fonts with LaTeX, put e.g. the following in your file:
> 
>     \usepackage[T1]{fontenc}
>     \usepackage{gtamachoefler}
> 
> Such a style file will make Hoefler Text the serif (roman) text font and 
> Gill Sans the sans serif font. The following basic styles are available:
>     gtamacbaskerville.sty
>     gtamacdidot.sty
>     gtamacgeorgia.sty
>     gtamachoefler.sty
> 
> There are more. See the manual for details. For the same effect using 
> ConTeXt, enter e.g.:
> 
>     \usetypescriptfile[type-gtamacfonts]
>     \usetypescript[Hoefler][ec]
>     \setupbodyfont[Hoefler,12pt]
> 
> Support for ConTeXt is better than support for LaTeX for the simple 
> reason that ConTeXt is more powerful.
> 
> Example documents and a manual can be found in the 
> texmf.gwtex/doc/fonts/gtamacfonts subdirectory. To get the manual you 
> can type "texdoc gtamacfonts" in a Terminal window. Also check out 
> "texdoc GTAHoeflerSymbols" in a Terminal window.
> 
> G
> 
> PS. I expect to do one more update with this with some changes to the 
> manual and such, but nothing fundamental.
> ------------------------- Info --------------------------
> Mac-TeX Website: http://www.esm.psu.edu/mac-tex/
>          & FAQ: http://latex.yauh.de/faq/
> TeX FAQ: http://www.tex.ac.uk/faq
> List Archive: http://tug.org/pipermail/macostex-archives/
> 
> 
> --This message has been scanned for viruses and dangerous
> content by the NorMAN MailScanner Service and is believed
> to be clean.
> 
> The NorMAN MailScanner Service is operated by Information
> Systems and Services, University of Newcastle upon Tyne.

-- 
____________________________________
Dr P. Vickers BSc PhD CEng MIEE ILTM
Reader in Human-Computer Interaction &
Visiting Research Fellow of Loughborough University

School of Computing, Engineering, & Information Sciences
Northumbria University
Pandon Building, Camden Street
Newcastle-upon-Tyne
NE2 1XE

Tel +44 (0)191 243-7614
Fax +44 (0)870 133-9127
e-mail: paul.vickers at northumbria.ac.uk
web: www.paulvickers.com/northumbria

Any views expressed in this message are those of the individual sender,
except where the sender specifically states them to be the views of
Northumbria University.

====

This e-mail is intended solely for the addressee. It may contain private
and confidential information. If you are not the intended addressee,
please take no action based on it nor show a copy to anyone. Please
reply to this e-mail to highlight the error. You should also be aware
that all electronic mail from, to, or within Northumbria University may
be the subject of a request under the Freedom of Information Act 2000
and related legislation, and therefore may be required to be disclosed
to third parties.

This e-mail and attachments have been scanned for viruses prior to
leaving Northumbria University. Northumbria University will not be
liable for any losses as a result of any viruses being passed on.
------------------------- Info --------------------------
Mac-TeX Website: http://www.esm.psu.edu/mac-tex/
          & FAQ: http://latex.yauh.de/faq/
TeX FAQ: http://www.tex.ac.uk/faq
List Archive: http://tug.org/pipermail/macostex-archives/




More information about the MacOSX-TeX mailing list