Variable: ps-footer-font-size

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

Value

(10 . 12)

Documentation

Font size, in points, for text in the footer, 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 21.1.

Probably introduced at or before Emacs version 20.1.

Source Code

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