/usr/sww
As of 6/98, the latest version was in /usr/eesww/share/frame/frame-5.5.
However, there is no departmental site license, to use Frame, you must
purchase a license. For academic use, this runs about $1000/seat, and
yearly support runs about $300/year.
To use framemaker, you should:
FMHOME environment variable to point
to the Framemaker distribution
setenv FMHOME /usr/eesww/share/frame/frame-5.5
set path = ($FMHOME/bin $path)
FM_FLS_HOST environment variable to point
to the server that your framemaker license process is running on.
/usr/cluster/bin/setpath
Aladdin Ghostscript: Unrecoverable error, exit code 1 Error: /undefined in currentdistillerparams Operand stack: Execution stack: %interp_exit --nostringval-- --nostringval-- --nostringval-- false --nostringval-- --nostringval-- --nostringval-- --nostringval-- Dictionary stack: --dict:596/631-- --dict:0/20-- --dict:69/200-- --dict:105/400-- Current allocation mode is local Current file position is 8348The
fixframeps perl script below fixes this problem and
a problem that causes printing to fail on non-US paper.
You will need perl to run this script, you should change the first line to the location of your perl binary.
#!/usr/sww/bin/perl -pi.bak
# This script is filters framemaker files so that:
# - files with EPS figures will print correctly if the
# printer has a small amount of memory for it's dictionary
# - allow printing of files to printers w/o the exact paper
# size requested in the print dialog box.
#
# Frame overrides the postscript definitions for
# illegal EPS postscript commands. This may overload the definition
# memory space on some older laser printers. Overloading the definition
# stack causes the printer to dynamically invoke the cleardictstack
# printer command inside of EPS portions of the frame ps code.
# cleardickstack is illegal in EPS and causes the print job to fail
#
# Added a filter, so that file will print even if the paper size is
# not available. (say printing on A4 if U.S. Letter was specified)
#
# Author: Jose Luis Pino
#
# @(#)fixframeps 1.4 11/6/95
if ((/^systemdict \/pdfmark known/ .. /^} ifelse$/) &&
! (/^\t\/fMAcrobat false/ .. /pop\}FmBD$/)) {print "% "; }
if (/^\t.+FMBADEPSF} def/) { print "% "; }
# These were needed with frame 4... they don't appear necessary now
#if (/^\t\tsetpapername/ .. /Can't select requested paper/) { print "% "; }
#if (/^\t\t.+PageSize \[paperwidth paperheight\]/ .. /^\tifelse/) { print "% "; }
To fix a postscript file, do
fixframeps myfile.ps
The "TimesNewRoman" Font Family is not available. "Times" will be used in this session. The "Balogna" Font is not available. "Times-Bold" will be used in this session. The "TimesNewRoman Bold" Font is not available. "Times-Bold" will be used in this session. The "TimesNewRoman Italic" Font is not available. "Times-Italic" will be used in this session. The "Balogna" Font is not available. "Times-Bold" will be used in this session. The "TimesNewRoman" Font is not available. "Times-Roman" will be used in this session. The "TimesNewRoman Bold" Font is not available. "Times-Bold" will be used in this session. The "TimesNewRoman Italic" Font is not available. "Times-Italic" will be used in this session.