Variable: TeX-print-style
TeX-print-style is a customizable variable defined in tex.el.
Value
(("^landscape$" "-t landscape"))
Documentation
List of style options and print options.
If the first element (a regular expression) matches the name of one of
the style files, any occurrence of the string %r in a command in
TeX-command-list will be replaced with the second element. The first
match is used, if no match is found the %r is replaced with the empty
string.
Source Code
;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/tex.el
(defcustom TeX-print-style '(("^landscape$" "-t landscape"))
"List of style options and print options.
If the first element (a regular expression) matches the name of one of
the style files, any occurrence of the string `%r' in a command in
`TeX-command-list' will be replaced with the second element. The first
match is used, if no match is found the `%r' is replaced with the empty
string."
:group 'TeX-command
:type '(repeat (group regexp (string :tag "Command"))))