Re: Why LaTeX is such a bloated system?
I just use gedit. It has syntax coloring and spell checking. The only hassle is that I have to turn on Tools -> Autocheck Spelling every time I start gedit. I wish there were a way to make this the default. (I find it easier to see my spelling errors with autocheck.)
I then wrote a Makefile:
Code:
# Makefile for my book
default:
latex book.tex
makeindex book.idx
latex book.tex
dvips book.dvi
clean:
rm *.aux
rm *~
So I open a terminal window, and when I want to view my work, I simply type "make" and wait 1/2 minute.
As you can see, my Makefile creates a postscript file, which I view with evince.
I make changes in the source (in gedit), save, hit the up arrow key in the terminal window to recall my "make" command, and hit return. 1/2 minute later I hit ctrl-r in the evince window.
I don't know how this compares to using winedit since I've never used it.
Intel i7-920; Nvidia GT 220, 1GB; MSI X58 Pro-E; 6GB DDR; 64-bit mode.