Solved What is the difference between pkg enscript-letterdj and pkg enscript-letter?

They all point to the same port. The difference is the paper size. Although I cannot seem to find what the (size) difference between 'letter' and 'letterdj' is. I know what the difference between 'A4' and 'letter' is, A4 is the standard size used in Europe.

Code:
.if (${PAPERSIZE} != a4 && ${PAPERSIZE} != letter && ${PAPERSIZE} != letterdj)
.BEGIN:
	@${ECHO} "Error: invalid value for PAPERSIZE: \"${PAPERSIZE}\""
	@${ECHO} "Possible values are:  a4, letter, or letterdj"
	@${FALSE}
.endif
 
They all point to the same port. The difference is the paper size. Although I cannot seem to find what the (size) difference between 'letter' and 'letterdj' is. I know what the difference between 'A4' and 'letter' is, A4 is the standard size used in Europe.

Code:
.if (${PAPERSIZE} != a4 && ${PAPERSIZE} != letter && ${PAPERSIZE} != letterdj)
.BEGIN:
    @${ECHO} "Error: invalid value for PAPERSIZE: \"${PAPERSIZE}\""
    @${ECHO} "Possible values are:  a4, letter, or letterdj"
    @${FALSE}
.endif
Yes, I am aware of, and sometimes use, iso standard paper sizes. I am just curious as to what the dj stands for and how letterdj paper size differs from straight letter .
 
DeskJet, right. Here I was thinking it was some stupid standard just to mess with everyone :D
 
Back
Top