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.


Config (.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/"))

Demo:
Part 1 (Auto-suggest): https://youtu.be/CrYbG3c35TI

Features:
- Auto-suggest using company

Regards,
Anand