What LaTeX editor do you suggest? Could you please give me some links?
-
11Sounds like an Editor war question (http://en.wikipedia.org/wiki/Editor_war) ^_^ – afewcc Aug 05 '09 at 18:52
-
Duplicate of http://stackoverflow.com/questions/1017055/get-started-with-latex-on-linux and probably others... – dmckee --- ex-moderator kitten Aug 05 '09 at 18:52
-
1I don't think this is a duplicate of http://stackoverflow.com/questions/1017055/get-started-with-latex-on-linux. That question is more general and this question is specifically looking at LaTeX editors and their advantages or disadvantages. – D W Feb 25 '11 at 00:23
-
3Closed as not constructive but I served. Think TeX editor> Google> StackOverflow> SOLUTION in only four click, thanks! – RTOSkit Jan 07 '13 at 19:29
-
2See [LaTeX Editors/IDEs](http://goo.gl/3f1mL). – Werner Nov 23 '14 at 05:29
-
[TeXstudio](http://www.texstudio.org) – frogatto Sep 28 '15 at 10:35
-
Not constructuve? 135 upvotes for the question, dozens of upvotes in the answers indicates otherwise. – jvriesem May 12 '16 at 20:30
-
https://en.wikipedia.org/wiki/Comparison_of_TeX_editors – PersianGulf Oct 25 '16 at 21:18
7 Answers
I use TeXMaker. If you're using Ubuntu, it should be in the apt-get repository. To install texmaker
, run:
sudo apt-get install texmaker

- 71,951
- 46
- 188
- 305

- 93,612
- 16
- 138
- 200
-
10... or TeXMakerX (http://texmakerx.sourceforge.net/) which is mainly TeXMaker with spell checking and some other features. – ubuntudroid Jan 08 '11 at 13:39
-
if you install texmaker using apt-get, then it will install the whole texlive distribution, what if someone uses a vanilla texlive from ctan? – ramgorur Jan 31 '16 at 02:31
-
8
Gummi is the best LaTeX editor. It is a free, open source, cross-platform, program, featuring a live preview pane.
http://gummi.midnightcoding.org/
e4 http://gummi.midnightcoding.org/wp-content/uploads/20091012-1large(1).png

- 2,979
- 4
- 34
- 45
-
2
-
1Gummi looks nice and may be promising, but its still lacking some crucial functionality (like tabs to switch opened files without having to use the menu). – Emanuel Ey May 31 '11 at 09:31
-
12lack of auto-completion sucks big time. else it would have been a top-notch editor. – Aug 04 '12 at 06:20
-
2Gummi is good but has still many shortcomings. For example when you start it up it opens up a default latex document which is truly annoying. – Jubei Aug 25 '13 at 06:24
-
-
like gummi, but miss to be able to jump curser in preveiw document to meta and back again. – Soren Havelund Welling Aug 23 '15 at 19:56
I normally use Emacs (it has everything you need included).
Of course, there are other options available:
- Kile is KDE's LaTeX editor; it's excellent if you're just learning or if you prefer the integrated environment approach;
- Lyx is a WYSIWYG editor that uses LaTeX as a backend; i.e. you tell it what the text should look like and it generates the corresponding LaTeX
Cheers.

- 14,931
- 2
- 34
- 43
-
Anyone have recent experiences with LyX? Back when I tried, it felt really awkward to the point that I'd rather work with the LaTeX source. I don't know if it was poorly implemented or I just have a fundamental aversion to WYSIWYG LaTeX. – Joel Wietelmann Aug 05 '09 at 19:04
-
@Joel: It's much better now. I tried it out with version 1.3, hated it, and recently started using 1.7. The change tracking facility is very good, and is integrated with its built in version control. LyX's native format is sane, you can meaninfully do diffs by hand on it. Sometimes I use in it preference to Emacs/Auctex. – Charles Stewart May 28 '10 at 06:34
In Linux it's more likely that extensions to existing editors will be more mature than entirely new ones. Thus, the two stalwarts (vi and emacs) are likely to have packages available.
EDIT: Indeed, here's the vi one:
http://vim-latex.sourceforge.net/
... and here's the emacs one:
http://www.gnu.org/software/auctex/
I have to say, I'm a vi man, but the emacs package looks rather spiffy: it includes the ability to embed preview images of formulas in your emacs buffer.

- 7,267
- 4
- 28
- 25
-
For someone less hardcore but used to IDE-like editors I would suggest using Atom + packages{ latex_plus, pdf_view, tree_view }. You would have to 'sudo apt-get install latexmk'. On the bright side, you get a sleek editor without Lyx clumsiness with responsive interface, spellcheck and easy ctrl+alt+b build – y.selivonchyk Feb 03 '17 at 09:56
Honestly, I've always been happy with emacs. Then again, I started out using emacs, so I've no doubt that it colours my perceptions. Still, it gives syntax highlighting and formatting, and can easily be configured to build the LaTeX. Check out the TeX mode.

- 233,004
- 25
- 132
- 111
There is a pretty good list at linuxappfinder.com.
My personal preference for LaTeX on Linux has been the KDE-based editor Kile.

- 1,447
- 1
- 9
- 16
When I started to use Latex, I used Eclipse with the texlipse plugin. That allowed me to use the same environment in Linux and Windows, has some auto completion features and runs all tools (latex, bibtex, makeindex, ...) automatically to fully build the project.
But now I switched. Eclipse is large and slow on my PCs, crashes often and shows some weird behaviour here and there. Now I use vim for editing and make in collaboration with a self written perl script to build my projects. Using cygwin I am still able to use the same work flows under Linux and Windows.