emacs-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

GNU Emacs as a lightweight LaTex IDE


From: Anand Tamariya
Subject: GNU Emacs as a lightweight LaTex IDE
Date: Tue, 5 May 2020 14:55:43 +0700

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

reply via email to

[Prev in Thread] Current Thread [Next in Thread]