Variable: ps-header-title-font-size

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

Value

(12 . 14)

Documentation

Font size, in points, for the top line of text in header, in 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-title-font-size '(12 . 14)
  "Font size, in points, for the top line of text in header, in PostScript.
Either a float or a cons of floats (LANDSCAPE-SIZE . PORTRAIT-SIZE)."
  :type '(choice :menu-tag "Header Title Font Size"
		 :tag "Header Title Font Size"
		 (number :tag "Header Title Size")
		 (cons :tag "Landscape/Portrait"
		       (number :tag "Landscape Header Title Size")
		       (number :tag "Portrait Header Title Size")))
  :version "20"
  :group 'ps-print-font)