Here's my next installment of "GNU Emacs as a lightweight IDE" series for editing LaTex document. This uses some semantic enhancement and company package for auto-completion. Hope this will help newbies getting started with LaTex using Emacs.
(global-ede-mode 1)
(semantic-mode 1)
(srecode-minor-mode 1)
;; Install company for inline completion with dropdown
(require 'company)
(global-company-mode)
(setq semantic-dependency-system-include-path '("/usr/share/texlive/texmf-dist/tex/"))
- Auto-suggest using company
Regards,
Anand