Печать текстового файла с помощью lpr
приводит к выводу с крупным шрифтом Monaco и очень тонкими полями. Есть ли способ изменить шрифт и поля при использовании lpr
на OS X?
2 ответа
5
lp
позволяет указывать поля и размер текста. По словам 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
4
Я определил команду mylpr
(в ~/bin) следующим образом:
#!/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
тогда я также добавил строки
(require 'lpr)
(setq my-print-command "~/bin/mylpr")
(setq lpr-command my-print-command)
в мои файлы ~/.emacs
и ~/.xemacs/custom.el
. Это позаботилось обо всех моих экземплярах печати в 12-пт Монако без полей.