> Are you using AUCTeX or not? I'm using AUCTeX 10.0g. I have added a bit of my .emacs file below. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ; LaTeX setup ; AUC TeX (add-to-list 'load-path "W:/emacs 21.2/emacs-21.2-fullbin-i386/emacs-21.2/lisp/auctex-10.0g/") (add-to-list 'Info-default-directory-list "W:/emacs 21.2/emacs-21.2-fullbin-i386/emacs-21.2/lisp/auctex-10.0g/doc/") (require 'tex-site) ; Reftex (følger med Emacs 21.1) (autoload 'reftex-mode "reftex" "RefTeX Minor Mode" t) (autoload 'turn-on-reftex "reftex" "RefTeX Minor Mode" nil) (autoload 'reftex-citation "reftex-cite" "Make citation" nil) (autoload 'reftex-index-phrase-mode "reftex-index" "Phrase mode" t) (add-hook 'LaTeX-mode-hook 'turn-on-reftex) ; with AUCTeX LaTeX mode (add-hook 'latex-mode-hook 'turn-on-reftex) ; with Emacs latex mode ; (setq reftex-enable-partial-scans t) ; (setq reftex-save-parse-info t) ; (setq reftex-use-multiple-selection-buffers t) (setq reftex-plug-into-AUCTeX t) > Is main.tex properly known as a master > document of your chapter to Emacs (that is, will its preamble and > stuff get used when you TeX the document from within your chapter's > buffer?). > I would love to anser your question, but at the present time I have no idea what to say :-) How to I check/enable main.tex as my master document? Thanks for your reply! JP