33 lines
1.0 KiB
Plaintext
33 lines
1.0 KiB
Plaintext
--- latex.el
|
|
+++ latex.el 2006-06-29 18:40:59.000000000 +0200
|
|
@@ -1557,6 +1557,7 @@ ELSE as an argument list."
|
|
",")))))
|
|
(if (zerop (length style))
|
|
(setq style LaTeX-default-style))
|
|
+ (TeX-run-style-hooks style)
|
|
(if (not (zerop (length options)))
|
|
(insert LaTeX-optop options LaTeX-optcl))
|
|
(insert TeX-grop style TeX-grcl))
|
|
--- tex-site.el.in
|
|
+++ tex-site.el.in 2006-06-29 18:44:29.000000000 +0200
|
|
@@ -64,6 +64,8 @@ shared by all users of a site."
|
|
:group 'TeX-file
|
|
:type 'directory)
|
|
|
|
+(setq-default TeX-macro-global '("/usr/share/texmf/tex/"))
|
|
+
|
|
(defconst TeX-mode-alist
|
|
'((tex-mode . tex-mode)
|
|
(plain-tex-mode . tex-mode)
|
|
--- tex.el
|
|
+++ tex.el 2013-06-06 10:47:43.941439046 +0000
|
|
@@ -326,7 +326,7 @@ string."
|
|
;; TeX-print-command.
|
|
|
|
(defcustom TeX-print-command
|
|
- "{ test -e %s.dvi && %(o?)dvips -P%p %r %s; } || lpr -P%p %o"
|
|
+ "{ test -e %s.dvi && %(o?)dvips %r -f %s | lpr -P%p; } || lpr -P%p %o"
|
|
"Command used to print a file.
|
|
|
|
First `%p' is expanded to the printer name, then ordinary expansion is
|