On Fri, 31 Jan 2003 10:40:43 -0500
"Bruce D'Arcus"
On Friday, January 31, 2003, at 07:58 AM, Hans Hagen wrote:
At 11:58 PM 1/30/2003 -0500, you wrote:
A familiar issue, but I'm still a bit confused about how to set up a proper typescript, and how to access it in a document. Can someone please look at the enclosed?
What I don't understand is how to name these files and typescripts, where to put them, and how to access them in a document.
for project i always use the name typescript.tex
So you just use a single typescript file for all of your fonts, then, and a bunch of environment files to access them?
My type-scripts are placed all in $TEXMFLOCAL/tex/context/user/. Here a type-script file contains in most cases the font-declaration for fonts of a specific font vendor. Some type-scripts are collections of some funny single fonts (not a complete font family). and then: %%% env-s.tex >>> \enableregime[il1] \setupencoding[default=ec] \usetypescriptfile[ts-larabie] \definetypeface[BlueHighway][ss][sans][BlueHighway][default] [rscale=1.16,encoding=ec] \usetypescriptfile[ts-misc-ttf] \definetypeface[Binky][rm][serif][Binky][default][encoding=texnansi] \usetypescriptfile[ts-lucidaso] \usetypescript[berry][ec] \definetypeface[BodyFont][rm][serif][palatino][default] [encoding=ec] \definetypeface[BodyFont][ss][sans][helvetica][default] [encoding=ec] \definetypeface[BodyFont][tt][mono][LucidaSO][default] [rscale=0.9,encoding=ec] \setupbodyfont[BodyFont,10pt] %%% env-s.tex <<< %%% piechartmp-s.tex >>> \startproduct piechartmp-s \project pc-master \environment env-s \component titel-s %%% piechartmp-s.tex <<< this works here. Jens