Como você obtém o lpr no os X para imprimir com margens e uma fonte menor?

3

Imprimir um arquivo de texto com lpr produz saída com uma grande fonte Monaco e margens muito finas. Existe uma maneira de alterar a fonte e as margens quando você usa lpr no OS X?

    
por dan 05.01.2011 / 18:15

2 respostas

5

lp permite especificar margens e tamanho do texto. De acordo com o man lp :

-o cpi=N
     Sets the number of characters per inch to use when printing a text file. The default is 10.

-o lpi=N
     Sets the number of lines per inch to use when printing a text file. The default is 6.

-o page-bottom=N

-o page-left=N

-o page-right=N

-o page-top=N
     Sets the page margins when printing text files. The values are in points - there are 72 points to the inch.

EXAMPLES

Print a double-sided legal document to a printer called "foo":
    lp -d foo -o media=legal -o sides=two-sided-long-edge filename

Print an image across 4 pages:
    lp -d bar -o scaling=200 filename

Print a text file with 12 characters per inch, 8 lines per inch, and a 1 inch left margin:
    lp -d bar -o cpi=12 -o lpi=8 -o page-left=72 filename
    
por 05.01.2011 / 20:47
4

Eu defini um comando mylpr (em ~ / bin) da seguinte forma:

#!/bin/bash
ENSCRIPT="--no-header --margins=36:36:36:36 --font=Courier11 --word-wrap --media=Letter"
export ENSCRIPT
/usr/bin/enscript -p - $1 | /usr/bin/lpr

então eu também adicionei linhas

(require 'lpr)
(setq my-print-command "~/bin/mylpr")
(setq lpr-command my-print-command)

para meus arquivos ~/.emacs e ~/.xemacs/custom.el . Isso cuidou de todas as minhas instâncias de impressão em 12-pt Monaco sem margens.

    
por 19.02.2012 / 20:59

Tags