Variable: ps-header-font-size

ps-header-font-size is a customizable variable defined in ps-print.el.gz.

Value

(10 . 12)

Documentation

Font size, in points, for text in the header, when generating PostScript.

Either a float or a cons of floats (LANDSCAPE-SIZE . PORTRAIT-SIZE).

This variable was added, or its default value changed, in Emacs 20.

Source Code

;; Defined in /usr/src/emacs/lisp/ps-print.el.gz
(defcustom ps-header-font-size       '(10 . 12)
  "Font size, in points, for text in the header, when generating PostScript.
Either a float or a cons of floats (LANDSCAPE-SIZE . PORTRAIT-SIZE)."
  :type '(choice :menu-tag "Header Font Size"
		 :tag "Header Font Size"
		 (number :tag "Header Size")
		 (cons :tag "Landscape/Portrait"
		       (number :tag "Landscape Header Size")
		       (number :tag "Portrait Header Size")))
  :version "20"
  :group 'ps-print-font)