Deprecated:  The each() function is deprecated. This message will be suppressed on further calls in /home/zhenxiangba/zhenxiangba.com/public_html/phproxy-improved-master/index.php on line 456
;;; yatex-init.el --- yatex init file
;; Copyright (C) 1999,2000 YAMASHITA Junji
;; Author: YAMASHITA Junji 
;; Keywords: init, tex
;; Version: $Id: yatex-init.el,v 1.8 2002/02/04 08:18:43 ysjj Exp $
;;; Commentary:
;;; Code:
(setq tex-command (concat "platex" (and (eq system-type 'windows-nt) ".bat"))
      dvi2-command (if (eq window-system 'w32) "dviout" "dvips")
      dviprint-command-format "dvips -f %f %t %s | ~/bin/hazuki-print"
      dviprint-from-format "-p %b"
      dviprint-to-format "-l %e"
      makeindex-command "mendex")
;;
(setq section-name "documentclass")
;;
(setq YaTeX-user-completion-table (my-edata-file "yatextbl.el"))
(setq YaTeX-nervous nil
      YaTeX-background-mode 'light
      YaTeX-use-LaTeX2e t
      YaTeX-use-font-lock t
      YaTeX-use-hilit19 nil)
(setq YaTeX-typeset-buffer " *YaTeX-typesetting*")
;;
(add-hook 'yatex-mode-hook #'(lambda () (auto-fill-mode -1)))
;; hack
(and (string= "1.69.1" YaTeX-revision-number)
     (defadvice YaTeX-font-lock-recenter (after recenter activate)
       (recenter)))
;;; yatex-init.el ends here