Bug 3379

Summary: dvi files print by default on a4 paper
Product: [Retired] Red Hat Linux Reporter: rychlik
Component: tetexAssignee: Tim Waugh <twaugh>
Status: CLOSED NEXTRELEASE QA Contact:
Severity: medium Docs Contact:
Priority: medium    
Version: 6.0CC: gafton
Target Milestone: ---   
Target Release: ---   
Hardware: All   
OS: Linux   
Whiteboard:
Fixed In Version: Doc Type: Bug Fix
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: 1999-08-12 22:31:49 UTC Type: ---
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Embargoed:

Description rychlik 1999-06-10 03:39:43 UTC
When printer is PostScript, and a .dvi file is printed,
the PostScript file produced by dvips has paper size set
to a4 by default, and incorrectly printed on letter size
paper. The user can fix the problem by doing
	export DVIPS_OPTIONS='-t letter'
at command line or putting this line in .bashrc.
The variable DVIPS_OPTIONS seems to be undocumented and
it is used in /usr/lib/rhs/rhs-printfilters/dvi-to-ps.fpi.
It is nowhere set. I think it was meant to be set based
on /var/spool/lpd/lp/postscript.cfg. This is a modified
dvi-to-ps.fpi which does the trick:


#!/bin/sh
#
# convert TeX dvi to Postscript
#
#

#
# read in PostScript configuration settings
#
source ${SPOOLDIR}/postscript.cfg

DVIPS_OPTIONS="-t $PAPERSIZE"

#
# will want to source print options for dvips
#
TMP_FILE=`mktemp /tmp/rhsprintfilter.XXXXXX` || exit 1
cat > $TMP_FILE
dvips -f $DVIPS_OPTIONS < $TMP_FILE

if [ -f "$TMP_FILE" ]; then
      rm -f $TMP_FILE
fi

exit 0

Comment 1 Jay Turner 1999-06-29 15:13:59 UTC
This issue has been forwarded to a developer for further action.

Comment 2 Cristian Gafton 1999-07-28 23:06:59 UTC
assigned to jbj

Comment 3 Jeff Johnson 1999-08-12 22:31:59 UTC
Fixed in Raw Hide tetex-1.0.6-1. Thanks for the script.

Comment 4 Jeff Johnson 1999-08-12 22:34:59 UTC
*** Bug 3512 has been marked as a duplicate of this bug. ***

     The default paper size is A4, with the result that when
using standard
American letter paper Tex output is not centered.  The
manual should instruct
people to add a line   t letter  to the
/usr/share/texmf/dvips/config/config.ps
file, which fixes it.

Comment 5 Jeff Johnson 2000-01-15 21:15:59 UTC
*** Bug 5192 has been marked as a duplicate of this bug. ****** Bug 6900 has been marked as a duplicate of this bug. ***