The problem: Latex running on sun produces a dvi file. THis file is to be
printed on the Apple printer. I have installed a public domain driver
"dvi2ps"
for the job. Once the conversion takes place the file is transfered to a
Vax
system where it is printed using the command
print/que = <quename> <filename>.ps
Unfortunately the Mac prints it as a text file. ALl the postscript commands
are
printed as if they were text.
I read that in order to print a latex/tex generated file on the printer a
header file has to be included, This is either "tex.ps" or "tex.pro". I
have
tried including both( dvi2ps automatically includes if you specify which
one
during the make stage of creating dvi2ps). THis still does not help.
Can anybody out there figure out what the probem may be.
Postscript files created by DEC-WRITE and queued to the printer work fine.
I am including the postscript file for inspection. It is actually just a
test
file and contains only one page of actual information, the rest is just
controll stuff.
This file has tex.pro as its header
PLease send replies to ram...@arco.com
Thanks in advance
******************************BEGIN
HERE**************************************
%! for use by dvi2ps Version 2.00
% a start (Ha!) at a TeX mode for PostScript.
% The following defines procedures assumed and used by program "dvi2ps"
% and must be downloaded or sent as a header file for all TeX jobs.
% By: Neal Holtz, Carleton University, Ottawa, Canada
% <ho...@cascade.carleton.cdn>
% <holtz%cascade.ca...@ubc.csnet>
% June, 1985
% Last Modified: Aug 25/85
% To convert this file into a downloaded file instead of a header
% file, uncomment all of the lines beginning with %-%
%-%0000000 % Server loop exit password
%-%serverdict begin exitserver
%-% systemdict /statusdict known
%-% {statusdict begin 9 0 3 setsccinteractive /waittimeout 300 def end}
%-% if
/TeXDict 200 dict def % define a working dictionary
TeXDict begin % start using it.
% units are in "dots" (300/inch)
/Resolution 300 def
/Inch {Resolution mul} def % converts inches to internal units
/Mtrx 6 array def
%%%%%%%%%%%%%%%%%%%%% Page setup (user) options %%%%%%%%%%%%%%%%%%%%%%%%
% dvi2ps will output coordinates in the TeX system ([0,0] 1" down and in
% from top left, with y +ive downward). The default PostScript system
% is [0,0] at bottom left, y +ive up. The Many Matrix Machinations in
% the following code are an attempt to reconcile that. The intent is to
% specify the scaling as 1 and have only translations in the matrix to
% properly position the text. Caution: the default device matrices are
% *not* the same in all PostScript devices; that should not matter in most
% of the code below (except for lanscape mode -- in that, rotations of
% -90 degrees resulted in the the rotation matrix [ e 1 ]
% [ 1 e ]
% where the "e"s were almost exactly but not quite unlike zeros.
% KLUDGE --- To get around lack of letter, note, and legal on QMS
printers
% YUCK!!! wood@cascade
%
/letter where {pop} {/letter{}def} ifelse
/legal where {pop} {/legal {}def} ifelse
/note where {pop} {/note {}def} ifelse
/@letter
{ letter initmatrix
72 Resolution div dup neg scale % set scaling to 1.
310 -3005 translate % move origin to top (these are not exactly
1"
Mtrx currentmatrix pop % and -10" because margins aren't set exactly
right)
} def
% note mode is like letter, except it uses less VM
/@note
{ note initmatrix
72 Resolution div dup neg scale % set scaling to 1.
310 -3005 translate % move origin to top
Mtrx currentmatrix pop
} def
/@landscape
{ letter initmatrix
72 Resolution div dup neg scale % set scaling to 1.
% -90 rotate % it would be nice to be able
to do this
Mtrx currentmatrix 0 0.0 put % but instead we have to do
things like this because what
Mtrx 1 -1.0 put % should be zero terms aren't
(and text comes out wobbly)
Mtrx 2 1.0 put % Fie! This likely will not
work on QMS printers
Mtrx 3 0.0 put % (nor on others where the
device matrix is not like
Mtrx setmatrix % like it is on the
LaserWriter).
300 310 translate % move origin to top
Mtrx currentmatrix pop
} def
/@legal
{ legal initmatrix
72 Resolution div dup neg scale % set scaling to 1.
295 -3880 translate % move origin to top
Mtrx currentmatrix pop
} def
/@manualfeed
{ statusdict /manualfeed true put
} def
% n @copies - set number of copies
/@copies
{ /#copies exch def
} def
%%%%%%%%%%%%%%%%%%%% Procedure Defintions %%%%%%%%%%%%%%%%%%%%%%%%%%
/@newfont % id @newfont - -- initialize a new font
dictionary
{ /newname exch def
pop
newname 7 dict def % allocate new font dictionary
newname load begin
/FontType 3 def
/FontMatrix [1 0 0 -1 0 0] def
/FontBBox [0 0 1 1] def
/BitMaps 128 array def
/BuildChar {CharBuilder} def
/Encoding 128 array def
0 1 127 {Encoding exch /.undef put} for
end
newname newname load definefont pop
} def
% the following is the only character builder we need. it looks up the
% char data in the BitMaps array, and paints the character if possible.
% char data -- a bitmap descriptor -- is an array of length 6, of
% which the various slots are:
/ch-image {ch-data 0 get} def % the hex string image
/ch-width {ch-data 1 get} def % the number of pixels across
/ch-height {ch-data 2 get} def % the number of pixels tall
/ch-xoff {ch-data 3 get} def % number of pixels below origin
/ch-yoff {ch-data 4 get} def % number of pixels to left of origin
/ch-tfmw {ch-data 5 get} def % spacing to next character
/CharBuilder % fontdict ch Charbuilder - -- image one character
{ /ch-code exch def % save the char code
/font-dict exch def % and the font dict.
/ch-data font-dict /BitMaps get ch-code get def % get the bitmap
descriptor for char
ch-data null eq not
{ ch-tfmw 0 ch-xoff neg ch-yoff neg ch-width ch-xoff sub
ch-height ch-yoff sub
setcachedevice
ch-width ch-height true [1 0 0 1 ch-xoff ch-yoff]
{ch-image} imagemask
}
if
} def
/@sf % fontdict @sf - -- make that the current font
{ setfont() pop
} def
% in the following, the font-cacheing mechanism requires
that
% a name unique in the particular font be generated
/@dc % char-data ch @dc - -- define a new character bitmap in
current font
{ /ch-code exch def
/ch-data exch def
currentfont /BitMaps get ch-code ch-data put
currentfont /Encoding get ch-code
dup ( ) cvs cvn % generate a unique name simply from the
character code
put
} def
/@bop0 % n @bop0 - -- begin the char def section of
a new page
{
} def
/@bop1 % n @bop1 - -- begin a brand new page
{ pop
erasepage initgraphics
Mtrx setmatrix
/SaveImage save def() pop
} def
/@eop % - @eop - -- end a page
{ showpage
SaveImage restore() pop
} def
/@start % - @start - -- start everything
{ @letter % (there is not much to do)
} def
/@end % - @end - -- done the whole shebang
{ end
} def
/p % x y p - -- move to position
{ moveto
} def
/r % x r - -- move right
{ 0 rmoveto
} def
/s % string s - -- show the string
{ show
} def
/c % ch c - -- show the character (code given)
{ c-string exch 0 exch put
c-string show
} def
/c-string ( ) def
/ru % dx dy ru - -- set a rule (rectangle)
{ /dy exch neg def % because dy is height up from bottom
/dx exch def
/x currentpoint /y exch def def % remember current point
newpath x y moveto
dx 0 rlineto
0 dy rlineto
dx neg 0 rlineto
closepath fill
x y moveto
} def
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% the \special command junk
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% The structure of the PostScript produced by dvi2ps for \special is:
% @beginspecial
% - any number of @hsize, @hoffset, @hscale, etc., commands
% @setspecial
% - the users file of PostScript commands
% @endspecial
% The @beginspecial command recognizes whether the Macintosh Laserprep
% has been loaded or not, and redfines some Mac commands if so.
% The @setspecial handles the users shifting, scaling, clipping commands
% The following are user settable options from the \special command.
/@SpecialDefaults
{ /hs 8.5 Inch def
/vs 11 Inch def
/ho 0 def
/vo 0 def
/hsc 1 def
/vsc 1 def
/CLIP false def
} def
% d @hsize - specify a horizontal clipping dimension
% these 2 are executed before the MacDraw
initializations
/@hsize {/hs exch def /CLIP true def} def
/@vsize {/vs exch def /CLIP true def} def
% d @hoffset - specify a shift for the drwgs
/@hoffset {/ho exch def} def
/@voffset {/vo exch def} def
% s @hscale - set scale factor
/@hscale {/hsc exch def} def
/@vscale {/vsc exch def} def
/@setclipper
{ hsc vsc scale
CLIP
{ newpath 0 0 moveto hs 0 rlineto 0 vs rlineto hs neg 0 rlineto
closepath clip }
if
} def
% this will be invoked as the result of a \special command (for the
% inclusion of PostScript graphics). The basic idea is to change all
% scaling and graphics back to defaults, but to shift the origin
% to the current position on the page. Due to TeXnical difficulties,
% we only set the y-origin. The x-origin is set at the left edge of
% the page.
/@beginspecial % - @beginspecial - -- enter special mode
{ gsave /SpecialSave save def
% the following magic incantation establishes the current point
as
% the users origin, and reverts back to default scalings,
rotations
currentpoint transform initgraphics itransform translate
@SpecialDefaults % setup default offsets, scales, sizes
@MacSetUp % fix up Mac stuff
} def
/@setspecial % to setup user specified offsets, scales, sizes (for
clipping)
{
MacDrwgs
{md begin /pxt ho def /pyt vo neg def end}
{ho vo translate @setclipper}
ifelse
} def
/@endspecial % - @endspecial - -- leave special mode
{ SpecialSave restore
grestore
} def
/MacDrwgs false def % will get set if we think the Mac LaserPrep file
has been loaded
% - @MacSetUp - turn-off/fix-up all the MacDraw stuff that might
hurt us
% we depend on 'psu' being the first procedure
executed
% by a Mac document. We redefine 'psu' to adjust
page
% translations, and to do all other the fixups
required.
% This stuff will not harm other included PS files
/@MacSetUp
{ userdict /md known % if md is defined
{ userdict /md get type /dicttype eq % and if it is a
dictionary
{ /MacDrwgs true def
md begin % then redefine some stuff
/psu % redfine psu to set
origins, etc.
/psu load
% this procedure contains almost all the fixup
code
{ /letter {} def % it is bad manners to execute the
real
/note {} def % versions of these (clears page
image, etc.)
/legal {} def
statusdict /waittimeout 300 put
/page {pop} def % no printing of pages
/pyt vo neg def % x & y pixel translations
/pxt ho def
}
concatprocs
def
/od % redefine od to set
clipping region
/od load
{ @setclipper }
concatprocs
def
end }
if }
if
} def
% p1 p2 concatprocs p - concatenate procedures
/concatprocs
{ /p2 exch cvlit def
/p1 exch cvlit def
/p p1 length p2 length add array def
p 0 p1 putinterval
p p1 length p2 putinterval
p cvx
} def
end % revert to previous dictionary
TeXDict begin @start
%%Title: test.dvi
%%Creator: dvi2ps
%%EndProlog
1 @bop0
[ 622 ] /ambx10.622 @newfont
ambx10.622 @sf
[<000FC0000070380001C0040003800200070001000E0000801E0000801C0000403C000040
7C0000407C00004078000000F8000000F8000000F8000000F8000000F8000000F8000000
F8000000F8000000F8000000780000407C0000407C0000403C0000C01C0000C01E0000C0
0E0001C0070003C0038005C001C009C0007030C0000FC040> 26 33 -3 1 62.177] 67
@dc
[<FFC03FFE1F0007E00E0003C0040003C002000780020007800200078001000F0001000F00
01000F0000FFFE0000801E0000801E0000403C0000403C0000403C000020780000207800
002078000010F0000010F0000010F0000009E0000009E0000009E0000007C0000007C000
0007C00000038000000380000003800000010000> 31 32 -1 0 64.569] 65 @dc
[<81F800CE0C00F00600E00300C00380C001808001C08001C08001C08001C00001C00003C0
0003C0000780001F8003FF000FFE001FFC003FF0007F0000780000F00000F00000E00080
E00080E00080E001806001806001803003801007800C198007E080> 18 33 -3 1
47.829] 83 @dc
[<FFFFE0000F803C0007800E000780070007800380078003C0078001E0078001E0078000F0
078000F0078000F0078000F8078000F8078000F8078000F8078000F8078000F8078000F8
078000F8078000F8078000F0078000F0078001F0078001E0078001E0078003C007800380
0780070007801E000F803C00FFFFE000> 29 31 -2 0 65.765] 68 @dc
[<FFFFFF800F800F8007800180078000C0078000C007800040078000400780004007800020
0780002007800020078080000780800007808000078080000781800007FF800007818000
078080000780800007808000078080800780008007800080078000800780018007800100
07800300078003000F800F00FFFFFF00> 27 31 -2 0 58.590] 69 @dc
[<FFF8FFF80F800F8007800F0007800F0007800F0007800F0007800F0007800F0007800F00
07800F0007800F0007800F0007800F0007800F0007800F0007800F0007FFFF0007800F00
07800F0007800F0007800F0007800F0007800F0007800F0007800F0007800F0007800F00
07800F0007800F000F800F80FFF8FFF8> 29 31 -2 0 64.569] 72 @dc
[<000003E0FFFC0F100FC01E0807803E0407807E0407807C0407807C0007807C0007807C00
078078000780780007807800078070000780F0000780E0000781C00007FF80000780F000
0780780007803C0007801E0007801E0007801F0007801F0007801F0007801F0007801E00
07801E0007803C00078078000F80F000FFFF8000> 30 32 -2 1 63.373] 82 @dc
[<000FE0000078182000E00460038002E0070001E00F0001E01E0001E01E0001E03C0001E0
3C0001E07C0001E0780001E0F80003E0F8007FFCF8000000F8000000F8000000F8000000
F8000000F8000000F8000000780000207C0000203C0000203C0000601E0000601E000060
0F0000E0070001E0038002E000E004E000781860000FE020> 30 33 -3 1 67.558] 71
@dc
[<FFC0FFC0> 10 2 -1 -9 28.697] 45 @dc
[<001F800000F0F00001C0380007801E000F000F000E0007001E0007803C0003C03C0003C0
7C0003E07C0003E0780001E0F80001F0F80001F0F80001F0F80001F0F80001F0F80001F0
F80001F0F80001F0F80001F0780001E0780001E07C0003E03C0003C03C0003C01E000780
0E0007000F000F0007801E0001C0380000F0F000001F8000> 28 33 -3 1 66.960] 79
@dc
[<000FC000003820000070180000E0080001C0040001C00200038002000380020007800100
078001000780010007800100078001000780010007800100078001000780010007800100
078001000780010007800100078001000780010007800100078001000780010007800100
0780010007800100078003800FC007C0FFFC3FF8> 29 32 -2 1 64.569] 85 @dc
[<FFFC00000FC0000007800000078000000780000007800000078000000780000007800000
07800000078000000780000007800000078000000780000007FFE0000780780007801C00
07801E0007800F0007800F8007800F8007800F8007800F8007800F8007800F8007800F00
07801E0007801C000F807800FFFFE000> 25 31 -2 0 58.590] 80 @dc
[<FFFFFC0F807C07801C07800C078004078004078006078002078002078002078002078000
078000078000078000078000078000078000078000078000078000078000078000078000
0780000780000780000780000780000FC000FFFE00> 23 31 -2 0 53.807] 76 @dc
[<000100000003800000038000000380000007C0000007C0000007C000000F2000000F2000
001F3000001E1000001E1000003C0800003C0800003C0800007804000078040000F80600
00F0020000F0020001F0010001E0010001E0010003C0008003C0008003C0008007800040
078000400F8000600F0000601F8000F8FFF003FE> 31 32 -1 1 64.569] 86 @dc
[<FFFC0FC00780078007800780078007800780078007800780078007800780078007800780
078007800780078007800780078007800780078007800FC0FFFC> 14 31 -1 0 31.089]
73 @dc
[<FFFE00000FC0000007800000078000000780000007800000078000000780000007800000
07800000078080000780800007808000078080000781800007FF80000781800007808000
078080000780800007808000078000800780008007800080078000800780018007800100
07800300078003000F800F00FFFFFF00> 25 31 -2 0 56.199] 70 @dc
[<007FFE000007C0000003C0000003C0000003C0000003C0000003C0000003C0000003C000
0003C0000003C0000003C0000003C0000007C0000007A000000FB000001F1000001E0800
003E0800003C0400007C040000F8020000F0030001F0010001E0008003E0008007C00040
078000400F8000601F8000F8FFF003FF> 32 31 -1 0 64.569] 89 @dc
[<07FFFE00001F8000000F0000000F0000000F0000000F0000000F0000000F0000000F0000
000F0000000F0000000F0000000F0000000F0000000F0000000F0000000F0000000F0000
000F0000000F0000000F0000800F0010800F0010800F0010800F0010C00F0030400F0020
400F0020600F0060780F01E07FFFFFE0> 28 31 -2 0 62.177] 84 @dc
[<FFE001001F0003000E000300040007000400070004000F0004001F0004001F0004003D00
04003D00040079000400F1000400F1000401E1000401E1000403C1000407810004078100
040F0100040F0100041E0100043C0100043C0100047801000478010004F0010005E00100
05E0010007C0038007C007C0FF803FF8> 29 31 -2 0 64.569] 78 @dc
[<FFE0C1FFF81F00C01F800E00C00F000401E00F000401E00F000401E00F000403900F0004
03900F000407080F000407080F000407080F00040E040F00040E040F00040E040F00041C
020F00041C020F00041C020F000438010F000438010F000438010F000470008F00047000
8F000470008F0004E0004F0004E0004F0005C0002F0005C0002F0005C0002F000780001F
000F80001F80FF80001FF8> 37 31 -2 0 78.918] 77 @dc
[ 432 ] /amr10.432 @newfont
amr10.432 @sf
[<083E000CC3000D01C00F00E00E00E00E00700E00700E00780E00780E00780E00780E0078
0E00780E00700E00700E00E00F00E00F01C00EC3800E3E000E00000E00000E00000E0000
0E00000E00000E00000E00000E00000E0000FE00000E0000> 21 32 -1 0 33.208] 98
@dc
[<3C0000620000F10000F08000F08000004000004000004000002000002000007000007000
00700000E80000E80001EC0001C40001C4000382000382000382000701000701000E0080
0E00800E00801C00C01E01E0FF83F8> 21 29 -1 9 31.548] 121 @dc
[<FFFFFF800F800F8007800180078000C0078000C007800040078000400780004007800020
0780002007800020078080000780800007808000078080000781800007FF800007818000
078080000780800007808000078080800780008007800080078000800780018007800100
07800300078003000F800F00FFFFFF00> 27 31 -2 0 40.680] 69 @dc
[<FFE00E000E000E000E000E000E000E000E000E000E000E000E000E000E000F0C0F1E0F1E
FE8C0E78> 15 20 -1 0 23.412] 114 @dc
[<FFE7FC0E01C00E01C00E01C00E01C00E01C00E01C00E01C00E01C00E01C00E01C00E01C0
0E01C00E01C00E01C00F01C00F01C00E8180FE43000E3E00> 22 20 -1 0 33.208] 110
@dc
[<01F8000706000C0100180080380080700000700000F00000F00000F00000FFFF80F00380
F003807003807007003807003807001C0E000E1C0003F000> 17 20 -1 0 26.566] 101
@dc
[<8F80D060E030C018C01880188018803800700FF03FE07F807800E000C010C010C0104030
30701F90> 13 20 -2 0 23.578] 115 @dc
[<01E0031006100E080E080E080E080E080E000E000E000E000E000E000E000E000E000E00
0E00FFF83E000E000E0006000600020002000200> 13 28 -1 0 23.246] 116 @dc
[<0F800030E000407000407800F03800F83C00F83C00F83C00203C00003C00003C00003C00
003C00003C00003C00003C00003C00003C00003C00003C00003C00003C00003C00003C00
003C00003C00003C00003C00003C00003C00007C000FFFC0> 18 32 -2 1 30.717] 74
@dc
[<01F800070E001C03803801C03801C07000E07000E0F000F0F000F0F000F0F000F0F000F0
F000F07000E07000E03801C03801C01C0380070E0001F800> 20 20 -1 0 29.887] 111
@dc
[<FFE7FC0E01C00E01C00E01C00E01C00E01C00E01C00E01C00E01C00E01C00E01C00E01C0
0E01C00E01C00E01C00F01C00F01C00E81800E43000E3E000E00000E00000E00000E0000
0E00000E00000E00000E00000E00000E0000FE00000E0000> 22 32 -1 0 33.208] 104
@dc
[<000400020000000C00030000000E00070000000E00070000001E00078000001F000F8000
001F000F8000001F000F8000003C801E4000003C801E4000003C801E40000078C03E2000
0078403C20000078403C200000F0403C100000F02078100000F02078100001F020780800
01E010F0080001E010F0080003E010F00C0003C009E0040003C009E0040003C009E00400
078007C00200078007C00200078007C002000F0007C001000F00078001000F0007800380
1F800FC007C0FFF07FF81FF0> 44 32 -1 1 61.435] 87 @dc
[<03E3F80E1B801C0780380780380380700380700380F00380F00380F00380F00380F00380
F003807003807003803803803803801C0780061B8003E380000380000380000380000380
000380000380000380000380000380000380003F80000380> 21 32 -2 0 33.208] 100
@dc
[<001F800000F0F00001C0380007801E000F000F000E0007001E0007803C0003C03C0003C0
7C0003E07C0003E0780001E0F80001F0F80001F0F80001F0F80001F0F80001F0F80001F0
F80001F0F80001F0F80001F0780001E0780001E07C0003E03C0003C03C0003C01E000780
0E0007000F000F0007801E0001C0380000F0F000001F8000> 28 33 -3 1 46.491] 79
@dc
[<03F00E0C1C023801380170007000F000F000F000F000F000F00070007000380C381E1C1E
0E0C03F8> 16 20 -2 0 26.566] 99 @dc
[<FFFE07C00380038003800380038003800380038003800380038003800380038003800380
03800380038003800380038003800380F3800F8003800180> 15 30 -4 0 29.887] 49
@dc
[<0FC000107000201800700C00780E0078060030070000070000038000038000038003E3C0
0E13C0180BC03807C07007C07007C0F003C0F003C0F003C0F003C0F003C0F00380F00380
7003807007003807003806001C0C000E180003F000> 18 31 -2 1 29.887] 57 @dc
[<03F0000C0C00100200200100600180C00080C000C0C000C0C000C0C001C04001C0600380
300F80103F000C7E0007FC0003F8000FF0001FC8003F06003E0300780300700180600180
6001806001802001803003001006000C0C0003F000> 18 31 -2 1 29.887] 56 @dc
[<03E0000C3800100E00200600400700400380E00380F003C0F003C07003C00003C00003C0
0003C0000380000380100780100700180E00161C0011F000100000100000100000100000
1000001000001FE0001FF8001FFC001FFE00180300> 18 31 -2 1 29.887] 53 @dc
[ 518 ] /ambx10.518 @newfont
ambx10.518 @sf
[<07FFFE00001F8000000F0000000F0000000F0000000F0000000F0000000F0000000F0000
000F0000000F0000000F0000000F0000000F0000000F0000000F0000000F0000000F0000
000F0000000F0000000F0000800F0010800F0010800F0010800F0010C00F0030400F0020
400F0020600F0060780F01E07FFFFFE0> 28 31 -2 0 51.805] 84 @dc
[<01F8000706000C0100180080380080700000700000F00000F00000F00000FFFF80F00380
F003807003807007003807003807001C0E000E1C0003F000> 17 20 -1 0 31.880] 101
@dc
[<03F00E0C1C023801380170007000F000F000F000F000F000F00070007000380C381E1C1E
0E0C03F8> 16 20 -2 0 31.880] 99 @dc
[<FFE7FC0E01C00E01C00E01C00E01C00E01C00E01C00E01C00E01C00E01C00E01C00E01C0
0E01C00E01C00E01C00F01C00F01C00E81800E43000E3E000E00000E00000E00000E0000
0E00000E00000E00000E00000E00000E0000FE00000E0000> 22 32 -1 0 39.850] 104
@dc
[<FFE7FC0E01C00E01C00E01C00E01C00E01C00E01C00E01C00E01C00E01C00E01C00E01C0
0E01C00E01C00E01C00F01C00F01C00E8180FE43000E3E00> 22 20 -1 0 39.850] 110
@dc
[<FFC00E000E000E000E000E000E000E000E000E000E000E000E000E000E000E000E000E00
7E000E000000000000000000000000001C003E003E003E001C00> 10 31 0 0 19.925]
105 @dc
[<0F83C0386720781E10F01E10F00E10F00E10F00E10780E00380E001E0E00078E0000FE00
000E00000E00000E00300E00781C007818003030001FE000> 20 20 -2 0 35.865] 97
@dc
[<FFE00E000E000E000E000E000E000E000E000E000E000E000E000E000E000E000E000E00
0E000E000E000E000E000E000E000E000E000E000E000E00FE000E00> 11 32 0 0
19.925] 108 @dc
[<000003E0FFFC0F100FC01E0807803E0407807E0407807C0407807C0007807C0007807C00
078078000780780007807800078070000780F0000780E0000781C00007FF80000780F000
0780780007803C0007801E0007801E0007801F0007801F0007801F0007801F0007801E00
07801E0007803C00078078000F80F000FFFF8000> 30 32 -2 1 52.801] 82 @dc
[<FFE0000E00000E00000E00000E00000E00000E00000E00000E00000E3E000EC3000F01C0
0F01E00E00E00E00F00E00700E00780E00780E00780E00780E00780E00780E00700E00F0
0E00E00F00E00F01C0FEC3800E3E00> 21 29 -1 9 39.850] 112 @dc
[<01F800070E001C03803801C03801C07000E07000E0F000F0F000F0F000F0F000F0F000F0
F000F07000E07000E03801C03801C01C0380070E0001F800> 20 20 -1 0 35.865] 111
@dc
[<FFE00E000E000E000E000E000E000E000E000E000E000E000E000E000E000F0C0F1E0F1E
FE8C0E78> 15 20 -1 0 28.094] 114 @dc
[<01E0031006100E080E080E080E080E080E000E000E000E000E000E000E000E000E000E00
0E00FFF83E000E000E0006000600020002000200> 13 28 -1 0 27.895] 116 @dc
[<FFE001001F0003000E000300040007000400070004000F0004001F0004001F0004003D00
04003D00040079000400F1000400F1000401E1000401E1000403C1000407810004078100
040F0100040F0100041E0100043C0100043C0100047801000478010004F0010005E00100
05E0010007C0038007C007C0FF803FF8> 29 31 -2 0 53.797] 78 @dc
[<70F8F8F870> 5 5 -4 0 19.925] 46 @dc
[<000FE0000078182000E00460038002E0070001E00F0001E01E0001E01E0001E03C0001E0
3C0001E07C0001E0780001E0F80003E0F8007FFCF8000000F8000000F8000000F8000000
F8000000F8000000F8000000780000207C0000203C0000203C0000601E0000601E000060
0F0000E0070001E0038002E000E004E000781860000FE020> 30 33 -3 1 56.288] 71
@dc
[<03E0000C3800100E00200600400700400380E00380F003C0F003C07003C00003C00003C0
0003C0000380000380100780100700180E00161C0011F000100000100000100000100000
1000001000001FE0001FF8001FFC001FFE00180300> 18 31 -2 1 35.865] 53 @dc
[<01F000061C000C0E001807003807003803807003807003C07003C0F003C0F003C0F003C0
F003C0F003C0F80380F80380F80700F40600F21C00F1F000700000700000780000380000
3803001C07800C07800E0380070100018200007C00> 18 31 -2 1 35.865] 54 @dc
[<FFC0FFC0> 10 2 -1 -9 23.910] 45 @dc
[ 360 ] /amr10.360 @newfont
amr10.360 @sf
[<FFFC00000FC0000007800000078000000780000007800000078000000780000007800000
07800000078000000780000007800000078000000780000007FFE0000780780007801C00
07801E0007800F0007800F8007800F8007800F8007800F8007800F8007800F8007800F00
07801E0007801C000F807800FFFFE000> 25 31 -2 0 33.900] 80 @dc
[<FFE00E000E000E000E000E000E000E000E000E000E000E000E000E000E000F0C0F1E0F1E
FE8C0E78> 15 20 -1 0 19.510] 114 @dc
[<01F8000706000C0100180080380080700000700000F00000F00000F00000FFFF80F00380
F003807003807007003807003807001C0E000E1C0003F000> 17 20 -1 0 22.139] 101
@dc
[<FFE0000E00000E00000E00000E00000E00000E00000E00000E00000E3E000EC3000F01C0
0F01E00E00E00E00F00E00700E00780E00780E00780E00780E00780E00780E00700E00F0
0E00E00F00E00F01C0FEC3800E3E00> 21 29 -1 9 27.673] 112 @dc
[<0F83C0386720781E10F01E10F00E10F00E10F00E10780E00380E001E0E00078E0000FE00
000E00000E00000E00300E00781C007818003030001FE000> 20 20 -2 0 24.906] 97
@dc
[<03E3F80E1B801C0780380780380380700380700380F00380F00380F00380F00380F00380
F003807003807003803803803803801C0780061B8003E380000380000380000380000380
000380000380000380000380000380000380003F80000380> 21 32 -2 0 27.673] 100
@dc
[<01F1FC030DC00603C00E03C00E01C00E01C00E01C00E01C00E01C00E01C00E01C00E01C0
0E01C00E01C00E01C00E01C00E01C00E01C0FE1FC00E01C0> 22 20 -1 0 27.673] 117
@dc
[<FFE7FC0E01C00E01C00E01C00E01C00E01C00E01C00E01C00E01C00E01C00E01C00E01C0
0E01C00E01C00E01C00F01C00F01C00E8180FE43000E3E00> 22 20 -1 0 27.673] 110
@dc
[<FFE001001F0003000E000300040007000400070004000F0004001F0004001F0004003D00
04003D00040079000400F1000400F1000401E1000401E1000403C1000407810004078100
040F0100040F0100041E0100043C0100043C0100047801000478010004F0010005E00100
05E0010007C0038007C007C0FF803FF8> 29 31 -2 0 37.359] 78 @dc
[<01E0031006100E080E080E080E080E080E000E000E000E000E000E000E000E000E000E00
0E00FFF83E000E000E0006000600020002000200> 13 28 -1 0 19.371] 116 @dc
[<FFC00E000E000E000E000E000E000E000E000E000E000E000E000E000E000E000E000E00
7E000E000000000000000000000000001C003E003E003E001C00> 10 31 0 0 13.837]
105 @dc
[<01F800070E001C03803801C03801C07000E07000E0F000F0F000F0F000F0F000F0F000F0
F000F07000E07000E03801C03801C01C0380070E0001F800> 20 20 -1 0 24.906] 111
@dc
[<FFE00E000E000E000E000E000E000E000E000E000E000E000E000E000E000E000E000E00
0E000E000E000E000E000E000E000E000E000E000E000E00FE000E00> 11 32 0 0
13.837] 108 @dc
[<FFFC0FC00780078007800780078007800780078007800780078007800780078007800780
078007800780078007800780078007800780078007800FC0FFFC> 14 31 -1 0 17.988]
73 @dc
[<8F80D060E030C018C01880188018803800700FF03FE07F807800E000C010C010C0104030
30701F90> 13 20 -2 0 19.648] 115 @dc
[<7FF007000700070007000700070007000700070007000700070007000700070007000700
0700FFF007000700070007000700070007000706038F018F00C6007C> 16 32 0 0
15.220] 102 @dc
[<FFF8FFF80F800F8007800F0007800F0007800F0007800F0007800F0007800F0007800F00
07800F0007800F0007800F0007800F0007800F0007800F0007800F0007FFFF0007800F00
07800F0007800F0007800F0007800F0007800F0007800F0007800F0007800F0007800F00
07800F0007800F000F800F80FFF8FFF8> 29 31 -2 0 37.359] 72 @dc
[<FFE7FC0E01C00E01C00E01C00E01C00E01C00E01C00E01C00E01C00E01C00E01C00E01C0
0E01C00E01C00E01C00F01C00F01C00E81800E43000E3E000E00000E00000E00000E0000
0E00000E00000E00000E00000E00000E0000FE00000E0000> 22 32 -1 0 27.673] 104
@dc
[<000FE0000078182000E00460038002E0070001E00F0001E01E0001E01E0001E03C0001E0
3C0001E07C0001E0780001E0F80003E0F8007FFCF8000000F8000000F8000000F8000000
F8000000F8000000F8000000780000207C0000203C0000203C0000601E0000601E000060
0F0000E0070001E0038002E000E004E000781860000FE020> 30 33 -3 1 39.089] 71
@dc
[<03E0000C3800100E00200600400700400380E00380F003C0F003C07003C00003C00003C0
0003C0000380000380100780100700180E00161C0011F000100000100000100000100000
1000001000001FE0001FF8001FFC001FFE00180300> 18 31 -2 1 24.906] 53 @dc
[<03F0000E1C001C0E00180600380700780780700380700380700380F003C0F003C0F003C0
F003C0F003C0F003C0F003C0F003C0F003C0F003C0F003C0F003C0F003C0700380700380
7003807003803807001806001C0E000E1C0003F000> 18 31 -2 1 24.906] 48 @dc
[<FFFE07C00380038003800380038003800380038003800380038003800380038003800380
03800380038003800380038003800380F3800F8003800180> 15 30 -4 0 24.906] 49
@dc
[<FFE0C1FFF81F00C01F800E00C00F000401E00F000401E00F000401E00F000403900F0004
03900F000407080F000407080F000407080F00040E040F00040E040F00040E040F00041C
020F00041C020F00041C020F000438010F000438010F000438010F000470008F00047000
8F000470008F0004E0004F0004E0004F0005C0002F0005C0002F0005C0002F000780001F
000F80001F80FF80001FF8> 37 31 -2 0 45.661] 77 @dc
[<030000078000078000078000078000078000078000078000038000038000038000038000
01800001C00000C00000C000004000004000002000002000001000000800000800800400
8002008002004001007FFF807FFF807FFFC0400000> 18 31 -3 1 24.906] 55 @dc
[<0FC000107000201800700C00780E0078060030070000070000038000038000038003E3C0
0E13C0180BC03807C07007C07007C0F003C0F003C0F003C0F003C0F003C0F00380F00380
7003807007003807003806001C0C000E180003F000> 18 31 -2 1 24.906] 57 @dc
[<00FFE0000E00000E00000E00000E00000E00000E00000E00FFFFF0C00E00400E00200E00
200E00100E00080E00080E00040E00020E00020E00010E00008E00008E00004E00002E00
002E00001E00000E00000E00000600000600> 20 30 -1 0 24.906] 52 @dc
1 @bop1
ambx10.622 @sf
150 604 p (CASCADED) s
33 r (CHAR) s
-2 r (GE-COUPLED) s
150 707 p (DEVICES) s
33 r 70 c
-2 r (OR) s
32 r (PHASED-ARRA) s
-7 r 89 c
150 811 p (UL) s
-7 r (TRASONIC) s
32 r (IMA) s
-2 r (GING) s
amr10.432 @sf
150 1186 p 98 c
-1 r 121 c
150 1336 p (Ernest) s
20 r (John) s
20 r 87 c
-4 r 111 c
1 r 111 c
1 r 100 c
150 1710 p (Octob) s
2 r (er) s
20 r (1985) s
ambx10.518 @sf
150 2102 p 84 c
-6 r (ec) s
-2 r (hnical) s
26 r (Rep) s
3 r (ort) s
27 r (No.) s
37 r (G556-5) s
amr10.360 @sf
150 2537 p (Prepared) s
17 r (under) s
150 2597 p (National) s
17 r (Institute) s
16 r (of) s
17 r (Health) s
150 2657 p (Gran) s
0 r 116 c
15 r (5P01) s
17 r (GM17940) s
@eop
@end