From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Fabian.Braennstroem@t-online.de (Fabian =?ISO-8859-1?Q?Br=E4nnstr=F6m?=) Newsgroups: gmane.emacs.help Subject: preview-latex and reftex not active!? Date: 01 Nov 2003 08:15:27 +0100 Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Message-ID: <1067670927.5737.26.camel@rechner1> NNTP-Posting-Host: deer.gmane.org Mime-Version: 1.0 Content-Type: text/plain Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1067671745 32513 80.91.224.253 (1 Nov 2003 07:29:05 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Sat, 1 Nov 2003 07:29:05 +0000 (UTC) Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Sat Nov 01 08:29:03 2003 Return-path: Original-Received: from monty-python.gnu.org ([199.232.76.173]) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1AFqBz-00031P-00 for ; Sat, 01 Nov 2003 08:29:03 +0100 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.24) id 1AFq9W-00073W-AC for geh-help-gnu-emacs@m.gmane.org; Sat, 01 Nov 2003 02:26:30 -0500 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.24) id 1AFq94-0006yB-UD for help-gnu-emacs@gnu.org; Sat, 01 Nov 2003 02:26:02 -0500 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.24) id 1AFq8Y-0006t5-Qm for help-gnu-emacs@gnu.org; Sat, 01 Nov 2003 02:26:01 -0500 Original-Received: from [194.25.134.19] (helo=mailout06.sul.t-online.com) by monty-python.gnu.org with esmtp (Exim 4.24) id 1AFq8Y-0006sx-Cu for help-gnu-emacs@gnu.org; Sat, 01 Nov 2003 02:25:30 -0500 Original-Received: from fwd07.aul.t-online.de by mailout06.sul.t-online.com with smtp id 1AFq8X-0003nW-03; Sat, 01 Nov 2003 08:25:29 +0100 Original-Received: from localhost.localdomain (VUgmscZYge9SVJSZ+uarucXCbirNOTirZeyN7G4nGQNMvrebT1XIQP@[62.227.143.216]) by fwd07.sul.t-online.com with esmtp id 1AFq8T-0jewV60; Sat, 1 Nov 2003 08:25:25 +0100 Original-To: help-gnu-emacs@gnu.org X-Mailer: Ximian Evolution 1.0.5 X-Seen: false X-ID: VUgmscZYge9SVJSZ+uarucXCbirNOTirZeyN7G4nGQNMvrebT1XIQP X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.2 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: main.gmane.org gmane.emacs.help:13714 X-Report-Spam: http://spam.gmane.org/gmane.emacs.help:13714 Hello, right now I have three different distributions running. debian stable, debian testing and gentoo. I installed emacs, auctex, reftex and preview-latex on each system. stable: emacs 21.2-1, auctex 11.06-1, preview-latex 0.6.1-1 testing: emacs 21.2-1 auctex 11.13, preview-latex 0.7.8 and preview-latex-style 0.7.8 gentoo: emacs 21.3, auctex 11.13 , preview-latex 0.7.8 I'm using for all systems the same .emacs-file, but just for the debian testing system reftex and preview-latex is activated in the menu when opening a tex-file. Does anyone have an idea how to solve that problem? Thanks! Greetings Fabian _______________________ P.S. My .emacs: _______________________ (custom-set-variables ;; custom-set-variables was added by Custom -- don't edit or cut/paste it! ;; Your init file should contain only one such instance. '(case-fold-search t) '(current-language-environment "English") '(global-font-lock-mode t nil (font-lock)) '(gnuserv-program (concat exec-directory "/gnuserv")) '(load-home-init-file t t) '(transient-mark-mode t) '(uniquify-buffer-name-style (quote forward) nil (uniquify))) '(auto-save-timeout 1) (custom-set-faces ;; custom-set-faces was added by Custom -- don't edit or cut/paste it! ;; Your init file should contain only one such instance. ) (require 'tex-site) (setq outline-minor-mode t) (setq latex-mode) (setq latex-math-mode) (add-hook 'LaTeX-mode-hook 'turn-on-reftex) (setq reftex-plug-into-AUCTeX t) ;; =================================================================== ;; Preview LaTeX ;; =================================================================== (cond ((file-readable-p "/usr/share/emacs/site-lisp/preview-latex/preview.el") (if (and window-system (x-display-color-p)) (progn (require 'preview))))) ;; =================================================================== ;; Preview LaTeX End ;; =================================================================== ;(load "/usr/share/emacs/site-lisp/preview-latex/preview-latex.el" nil t t) (add-hook 'LaTeX-mode-hook 'LaTeX-preview-setup) (autoload 'LaTeX-preview-setup "preview") (add-to-list 'load-path "/usr/share/emacs/site-lisp/preview-latex/")