• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.9.5/emacs-92/emacs/lisp/textmodes/

Lines Matching +defs:print +defs:level

175 (defcustom tex-dvi-print-command "lpr -d"
176 "*Command used by \\[tex-print] to print a .dvi file.
183 (defcustom tex-alt-dvi-print-command "lpr -d"
184 "*Command used by \\[tex-print] with a prefix arg to print a .dvi file.
189 `tex-alt-dvi-print-command' to an expression that asks what you want;
192 (setq tex-alt-dvi-print-command
195 would tell \\[tex-print] with a prefix argument to ask you which printer to
218 "*Command used by \\[tex-show-print-queue] to show the print queue.
219 Should show the queue(s) that \\[tex-print] puts jobs on."
282 (defvar tex-print-file nil
283 "File name that \\[tex-print] prints.
339 ;; Find the top-most level in this file but don't allow it to be
340 ;; any deeper than "section" (which is top-level in an article).
406 (defun latex-outline-level ()
722 (define-key keymap "\C-c\C-q" 'tex-show-print-queue)
723 (define-key keymap "\C-c\C-p" 'tex-print)
733 (define-key keymap [menu-bar tex tex-show-print-queue]
734 '("Show Print Queue" . tex-show-print-queue))
735 (define-key keymap [menu-bar tex tex-alt-print]
736 '(menu-item "Tex Print (alt printer)" tex-alt-print
737 :enable (stringp tex-print-file)))
738 (define-key keymap [menu-bar tex tex-print]
739 '(menu-item "Tex Print" tex-print :enable (stringp tex-print-file)))
741 '(menu-item "Tex View" tex-view :enable (stringp tex-print-file))))
874 ;; AUCTeX to provide a fully functional user-level replacement. So
896 \\[tex-print] prints the .dvi file made by any of these.
912 tex-dvi-print-command
913 Command string used by \\[tex-print] to print a .dvi file.
914 tex-alt-dvi-print-command
915 Alternative command string used by \\[tex-print] (when given a prefix
916 argument) to print a .dvi file.
920 Command string used by \\[tex-show-print-queue] to show the print
921 queue that \\[tex-print] put your job on.
942 \\[tex-print] prints the .dvi file made by any of these.
958 tex-dvi-print-command
959 Command string used by \\[tex-print] to print a .dvi file.
960 tex-alt-dvi-print-command
961 Alternative command string used by \\[tex-print] (when given a prefix
962 argument) to print a .dvi file.
966 Command string used by \\[tex-show-print-queue] to show the print
967 queue that \\[tex-print] put your job on.
1009 (set (make-local-variable 'outline-level) 'latex-outline-level)
1024 \\[tex-print] prints the .dvi file made by any of these.
1040 tex-dvi-print-command
1041 Command string used by \\[tex-print] to print a .dvi file.
1042 tex-alt-dvi-print-command
1043 Alternative command string used by \\[tex-print] (when given a prefix
1044 argument) to print a .dvi file.
1048 Command string used by \\[tex-show-print-queue] to show the print
1049 queue that \\[tex-print] put your job on.
2171 (setq tex-print-file tex-out-file)))
2193 (setq tex-print-file (expand-file-name source-file))))
2258 (defun tex-print (&optional alt)
2260 Runs the shell command defined by `tex-dvi-print-command'. If prefix argument
2261 is provided, use the alternative command, `tex-alt-dvi-print-command'."
2263 (let ((print-file-name-dvi (tex-append tex-print-file ".dvi"))
2271 (setq print-file-name-dvi test-name))
2272 (if (not (file-exists-p print-file-name-dvi))
2278 (if alt tex-alt-dvi-print-command tex-dvi-print-command)
2279 print-file-name-dvi
2282 (defun tex-alt-print ()
2284 Runs the shell command defined by `tex-alt-dvi-print-command'."
2286 (tex-print t))
2300 (let ((tex-dvi-print-command (eval tex-dvi-view-command)))
2301 (tex-print)))
2330 (defun tex-show-print-queue ()
2331 "Show the print queue that \\[tex-print] put your job on.