EclTex calls dvips main.dvi to generate the ps file.
under linux, by default, that command sends the file to the printer.
One should use dvips main.dvi -o instead.
Logged In: YES user_id=328016
okay good to know, ill change it asap. thanks.
Logged In: YES user_id=1328669
Here's a little perl script to use as a temporary fix: just move dvips to .dvips and save this as dvips (with chmod +x)
#!/usr/bin/perl if (@ARGV) { my $dvi = $ARGV[0]; my $ps = "$dvi.ps"; $_ = $dvi; if (/.dvi$/) { s/\.dvi/\.ps/; $ps = $_; } system ".dvips -o $ps $dvi"; }
Log in to post a comment.
Logged In: YES
user_id=328016
okay good to know, ill change it asap. thanks.
Logged In: YES
user_id=1328669
Here's a little perl script to use as a temporary fix: just
move dvips to .dvips and save this as dvips (with chmod +x)
#!/usr/bin/perl
if (@ARGV) {
my $dvi = $ARGV[0];
my $ps = "$dvi.ps";
$_ = $dvi;
if (/.dvi$/) {
s/\.dvi/\.ps/;
$ps = $_;
}
system ".dvips -o $ps $dvi";
}