What LaTeX Editor do you suggest for Linux?

LatexEditor

Latex Problem Overview


What LaTeX editor do you suggest? Could you please give me some links?

Latex Solutions


Solution 1 - Latex

I use http://www.xm1math.net/texmaker/">TeXMaker</a>;. If you're using Ubuntu, it should be in the apt-get repository. To install texmaker, run:

sudo apt-get install texmaker

Solution 2 - Latex

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

Solution 3 - Latex

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.

Solution 4 - Latex

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.

Solution 5 - Latex

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.

Solution 6 - Latex

There is a pretty good list at linuxappfinder.com.

My personal preference for LaTeX on Linux has been the KDE-based editor Kile.

Solution 7 - Latex

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.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionProgress ProgrammerView Question on Stackoverflow
Solution 1 - LatexMichael Aaron SafyanView Answer on Stackoverflow
Solution 2 - LatexD WView Answer on Stackoverflow
Solution 3 - LatexscvalexView Answer on Stackoverflow
Solution 4 - LatexmaxaposterioriView Answer on Stackoverflow
Solution 5 - LatexBlair ConradView Answer on Stackoverflow
Solution 6 - LatexJoel WietelmannView Answer on Stackoverflow
Solution 7 - LatexskorgonView Answer on Stackoverflow