vote up 20 vote down star
8

TeX/LaTeX is great, I use it in many ways. Some of it's advantages are:

  • it uses text files, this way the input-files can be diffed and many tools exist to work with text
  • it is very flexible
  • it has a stable layout: if I change something at the start of the document, it doesn't affect other things at the end of the document
  • it has many extensions to reach different goals (a successor would start without extensions, but would have a good extension-system)
  • you can use standard build control tools to support complicated documents (thanks dmckee)
  • you can encapsulate solutions and copy&paste them to new documents or send them to others to learn from (thanks dmckee)

But on the other hand some little things are not so good:

  • it is hard to learn at the beginning
  • it is complicated to control position of images
  • a few things are a little counter-intuitive
  • sometimes you have to type too much (begin{itemize} ... \end{itemize})

So, does there exist a successor/alternative to LaTeX or at least is some hot candidate for an alternative in development. A real successor/good alternative would keep the advantages and fix the disadvantages, or at least some of them.

flag

1  
Add to your list of advantages: "You can use standard build control tools to support complicated documents---and indeed to supply two formats (say the one the graduate school insists on, and the one that looks good and kills fewer trees) of a single document." – dmckee Nov 21 '08 at 1:34
1  
Another: "You have the power to encapsulate things that you learn for others who might find them useful." – dmckee Nov 21 '08 at 1:35
@dmckee: How do you use standard build tools (make et al.) when you don't know in advance how many times (pdf)latex needs to be run to produce its final output? – j_random_hacker Mar 4 at 10:00
@j_r_h: Take a look at latexmk and rubber: pps.jussieu.fr/~beffara/soft/rubber – ShreevatsaR Jun 7 at 4:05
@j_random_hacker: make refs bib pdf or something similar where the first two force a spare pass... Not elegant, but it works. – dmckee Jul 10 at 18:25

16 Answers

vote up 43 vote down check

There is a LaTeX3 project that has been going on for basically forever. In that sense, it is a successor to the current LaTeX2e.

You forget/ignore the primary goal for TeX when it was created -- "TeX is a new typesetting system intended for the creation of beautiful books". The goal of TeX was typesetting, and its primary concerns were things like "Breaking Paragraphs Into Lines" (Donald E. Knuth and Michael F. Plass, Software--Practice and Experience, Vol. 11, pp. 1119-1184, 1981), ligatures, kerning, beautiful fonts (Knuth worked with Hermann Zapf in creating typefaces like AMS Euler), and precise control over layout of text on a page.

LaTeX was a later set of macros built on top of TeX that introduced "document management" capabilities like automatic numbering of equations and sections, cross-referencing, and so on. It goes by "LaTeX: a document preparation system".

One can very well imagine successors to LaTeX, alternatives that offer LaTeX's document management capabilities, and perhaps do it better -- like DocBook. (Well it's based on XML, but...) But it is hard to imagine alternatives that will replace TeX, the typesetting engine itself. TeX is probably among the programs with the least number of bugs in it -- Knuth offers $327.68 for every bug found in TeX, and has done so for a long time. A lot of thought has gone into it, with Knuth's characteristic pursuit of perfection. Every aspect of it is configurable, the code is public domain (well except for the restriction that if you make modifications you must call it by some other name -- this is because of TeX's goal that the same TeX file typeset on any machine anywhere in the world should produce an exactly identical-looking document forever into the future), and books have been written about TeX: The Program itself, and also about all the bugs that were discovered in TeX.

Some of TeX's ideas have been incorporated into Adobe's Indesign (for example), and those typesetting engines too have some innovative ideas, but TeX still remains superior. [Note: Knuth didn't intend TeX to be the standard forever, only "for the next 100 years or so" until something better comes along. For all we know, one might.]

There are TeX-based alternatives to LaTeX, such as ConTeXt and LuaTeX. It is possible that there are tasks for which they are better suited.

To answer your other objections: Although LaTeX has possibly introduced more complexity than is necessary, the TeX part of the learning is unavoidable -- if you want to create beautiful books there are some things you have to know, no matter what. And it is not hard to control position of images; TeX was designed to give you control over every point on the page, but to exercise that control you may have to go beyond the simple constructs (although I've never had to...) And if you use a good editor or macros, you won't have to type too much \begin{itemize} ... \end{itemize}; that's just a lame complaint :P

link|flag
Great answer. One quibble, though: LuaTeX is replacement for TeX, which ConTeXt is an alternative to LaTeX (and may well replace it). – Will Robertson Nov 20 '08 at 4:16
vote up 1 vote down

TeX is not a general purpose typesetting system: its core proficiency is in typesetting long texts with lots of math. In that it doesn't have any competition, I can imagine several reasons:

  • Donald Knuth was smart. He did amazing job with, for example, spacing in formulas.
  • Math notation changes across periods of time like centuries. There's a limited set of features that is necessary and thus no market for new typesetting systems.
  • Network effects. The only purpose of paper is to be read. Most papers advance on some others' research and are using their notation. With TeX you're sure you get the same fonts and the same spacing, and you have a technical ability to copy complex formulas from their papers.
  • In TeX it's trivial to define new macro, it's usually easy to say what a simple macros does from its definition and there many standard macro libraries. Any GUI-based system would likely make this process much less transparent.

While the drawbacks you quoted are real, it's much easier to look around for a decent editor/GUI shell built on top of TeX, of which are many, than to typeset in a different language. If you're into math, and want your articles to be preserved for decades, that is. For the general purpose typesetting, again, the programs you mentioned could well be a better choice.

link|flag
vote up 0 vote down

XSL-FO might suit your needs. While it's not nearly as powerful as TeX, it does play well with XML formats like DocBook. A popular open source implementation is Apache FOP: http://xmlgraphics.apache.org/fop/.

If you need very fine control over typography, you're better off with TeX or a proprietary tool like FrameMaker or InDesign*.

*beware: InDesign currently has weak XML support IMO

link|flag
vote up 4 vote down

You might also be interested in XeTeX, which is a modern version of LaTeX in that it supports Unicode and many fonts. You can use it to directly input Japanese, Arabic etc. in one document. (This doesn't address the disadvantages that you gave, but it's still relevant to the discussion about LaTeX' shortcomings and alternative systems! )

link|flag
vote up 13 vote down

The short answer is 'No' as LaTeX is the incumbent and quite good at its job. It's also free, so there is relatively little commercial incentive to attempt to replace it. In fact, TeX is sufficiently good at technical publishing that the commerical market for technical publishing tools is rather squeezed between TeX at the 'geek' end and word at the 'great unwashed' end.

The longer answer is 'There are alternatives'. LaTeX and other packages suffer heavily from leaky abstraction issues and often require technical intervention to get what you want out of it. This puts you in the business of understanding how it works behind the scenes, which is actually fairly technical. Thus, you can only really use it for non-casual applications if you have access to someone with that level of technical skill. Writing a report or book is fine. Building a single-source technical documentation workflow with LaTeX is quite a different proposition - possible, but not trivial.

Alternatives to LaTeX

  • Commerical technical publication tools. There is really only one left standing: Framemaker. This is a mature product but somewhat stagnant. However, it does have an open document and segment interchange format called MIF, a comprehensive API and extensive support for structured documentation. It's quite widely used in aerospace circles (for example) where reference documents for aircraft run to tens of thousands of pages. Additionally, there are several also-rans in this space: Ventura Publisher, Arbortext (which is based on a TeX derived back-end IIRC), and Interleaf, which is now known as Quicksilver.
    Adobe claim to be implementing technical publishing functionality in InDesign but I have not really evaluated its capabilities for this.

  • Lout A markup language with a completely different underlying architecture to TeX. I've never worked with Lout but I believe that it is somewhat easier to work on behind the scenes than TeX.

  • DocBook. This is an XML tag based format for structure documentation, and tends to work by rendering through foreign engines. I've never used DocBook, so I can't really comment on its usage in practice.

  • Wordperfect. This is a venerable word processing system that is considerably better at documentation-in-the-large than MS-Word. Although viewed as something of an also-ran it retains several niche markets such as law offices and is reasonably good (at least significantly better then Word) for large, complex and heavily cross-referenced documents.

  • Microsoft Word. Not recommended for serious technical publication tasks due to its instability on complex documents. However, as often as not it is the only choice due to political constraints. Indexing is especially painful.

EDIT: See this Stackoverflow post for a more in-depth rundown on Framemaker and other technical documentation tools. It's an answer to a question about technical documentation tools for someone who specifically didn't want to use a markup lanaugage based system.

link|flag
WP&Word: not to mention that documents created with both look ugly – Aaron Digulla Mar 5 at 10:27
Word 2007 with mathtype can create tex format. And take it in, also. – ldigas Mar 25 at 22:14
That doesn't really absolve word from its other sins - Word (in particular) has many flaws that make it somewhat fraught to use for large technical documents. – ConcernedOfTunbridgeWells Mar 26 at 10:45
vote up 4 vote down

I have already published five books typeset in ConTeXt four of which were museum catalogues with high-quality colour illustrations. It is definitely production ready.

link|flag
vote up 9 vote down

Have you had a look at ConTeXt? It's a set of macros for TeX that can be used instead of LaTeX.

I haven't used it myself but the syntax in the example documents looks simpler than LaTeX in a number of cases.

link|flag
I use it a lot and much prefer it to LaTeX. Excellent. – janm Mar 11 at 13:04
vote up 1 vote down

That doesn't really cut into the main disadvantages of LaTeX, but no matter :) Regarding your point

  • "sometimes you have to type too much (begin{itemize} ... \end{itemize})"

this is entirely by design. There is a tradeoff between terse (and easier to type) and understandable (and longer to type). Longer names also have fewer collisions, since TeX and LaTeX don't support namespaces (unfortunately).

Anyway, a good editor will obviate the complaint above. Set up key-bindings or tab-completions or whatever else takes your fancy and you never have to write

\begin{whatever}...\end{whatever}

ever again.

link|flag
vote up 6 vote down

TeX is actually a fairly special purpose typsetting system. It does what it does well, but there isn't a large enough need for something better. "When he designed TeX, Donald Knuth did not believe that a single typesetting system would fit everyone's needs" (wikipedia)

Most of the "newer" systems build guis and extend TeX, which I believe is the right approach.

There are very good reasons for the 'issues' you are facing, so if you want to propose that it be done differently please research those reasons first.

Second, you yourself indicate that TeX is great except for a few minor quibbles. Knuth built it expressly knowing that it wouldn't be suitable for all uses and all people, but he released the source code and built an extension API so that anyone could adapt it for their needs.

You have all the tools you need to make the changes you propose, and it will be far easier to update TeX than to start from scratch, or even adapt any other system. Truly, nothing comes close to TeX. That's not to say that it's the best, but merely to drive home the point that it would be a monumental effort to implement all the good things you mention and somehow overcome the bad (although by the time you get to the bad you may better understand why it exists).

Regardless, I hope you pursue this, even as an advocate, and get others interested in it. It would be great to see take up of TeX in other fields, but that does require modification and update for ease of use and a better support of other technical entities than mathematical equations.

-Adam

link|flag
vote up 1 vote down

You may want to check out Wikipedia's categories Typesetting programming languages and Free typesetting software. Lout in particular sounds nice.

link|flag
vote up 4 vote down

You have LuaTex.

Quote: "LuaTeX is an extended version of pdfTeX using Lua as an embedded scripting language. The LuaTeX projects main objective is to provide an open and configurable variant of TeX while at the same time offering downward compatibility."

Lua is very easy and fast, so hopefully LuaTex will not be as hard anymore... hopefully :)

link|flag
There seem to be some changes in perspective in the LaTeX world: XeTeX for font rendering and utf8, ConTeXt with more homogenous language constructs. If LuaTeX merges all that and is more hackable, there should be a bright future for a better LaTeX! – Piotr Lesnicki Nov 20 '08 at 1:55
vote up 0 vote down

Not really a successor, but you may want to look at *roff (groff, troff, nroff). I don't know much about it but I remember its format being terse. It is the tool used for man pages. Since I have only ever heard of it in passing, I can't give you any more help with it.

For example:

		.pl 10.0i
		.po 0
		.ll 7.2i
		.lt 7.2i
		.nr LL 7.2i
		.nr LT 7.2i
		.ds RF FORMFEED[Page %]
		.ds LH Internet Draft
		.\"   --> Header/footers: Set short title, author(s), and dates:
		.ds CH 2-nroff.template                  \" <Short title>
		.ds LF Postel, Braden                    \" <Authors>
		.ds RH October 25, 2006                  \" <Submission date>
		.ds CF Expires April 2007                \" <Expiration date>
		.hy 0
		.ad l
		.nf
		.\" 5678901234567 check 72 column width 12345678901234567890123456789012
		Internet Draft                                                 J. Postel
		<draft-rfc-editor-nroff-template-00.txt>                      RFC Editor
		Category: Informational                                          USC ISI
		Expires April 2007                                      October 25, 2006

		.ce
		Nroff Template for Internet Drafts and RFCs
		.ce
		<draft-rfc-editor-nroff.template-00.txt>

		.in 3              \"  Basic indent for text is 3 spaces
		.ti 0              \"  "Temporary indent" for next line: 0 spaces
		Status of this Memo

		Distribution of this memo is unlimited.

		By submitting this Internet-Draft, each author represents that any
		applicable patent or other IPR claims of which he or she is aware
		have been or will be disclosed, and any of which he or she becomes
		aware will be disclosed, in accordance with Section 6 of BCP 79.

		Internet-Drafts are working documents of the Internet Engineering Task
		Force (IETF), its areas, and its working groups. Note that other groups
		may also distribute working documents as Internet-Drafts.

		Internet-Drafts are draft documents valid for a maximum of six months
		and may be updated, replaced, or obsoleted by other documents at any
link|flag
4  
He asked for successor, not predecessor ;-) [Whatever "market" the *roffs had -- beyond manpages -- now entirely belong to the TeXs.] – ShreevatsaR Nov 20 '08 at 1:12
Couldn't agree more, LaTex and DocBook are the weapons of choice, but it is terse you gotta give it that. And s/he did want to type less. – vfilby Nov 20 '08 at 1:58
Much as I like troff, I don't think it is a successor to TeX/LaTeX. – Jonathan Leffler Nov 20 '08 at 2:41
vote up 3 vote down

Apart from the issue of graphics being hard to position, your other criticisms of LaTeX are more to do with its UI or lack thereof.

If you want to use LaTeX to produce your documents but want an easier way to use it then you should really check out LyX. It's a GUI front-end to LaTeX and address several of your issues: it makes LaTeX easier to learn (in fact, you don't have to even know LaTeX to create a simple, mathless document), it's more intuitive, and it saves you typing. It also adds spell-checking, better graphics handling, navigation, and more.

Because LyX is merely a front-end to LaTeX you still get beautifully presented documents. LyX documents are also plain text so version control works well. In fact, LyX has support for subversion built-in.

If you haven't already guessed, I heartily recommend LyX. I wrote my entire PhD thesis using it and found it very worthwhile.

link|flag
I really have no problem using a good text-editor. One of the advantages I mentioned is the text-based format for teX-documents. I don't need an UI, but I wish sometimes a clearer, simpler syntax. – Mnementh Nov 20 '08 at 9:37
vote up 2 vote down

Your four disadvantages can be summarized as "It's too hard", "It's too hard", "It's too hard" and finally, "It's too hard". I think the solution then is to learn how to use the system properly.

Any system that is designed for a novice will show deficiencies in other ways, loss of control or loss of flexibility. Try MS Word if you want it to be easier to place images. There's no way around simplicity without effort of learning the program. TeX supports definition macros, so you can change that \begin{itemize} tag into something more palatable like \bi if you so choose. Once you have sufficiently learned your nook of the LaTex world, it's just as fast as regular typing.

I used to practice taking notes in a math class by writing in TeX, because it was faster to write in \sum_{n=1}^i than trying to find the symbols in MS Word.

link|flag
3  
Placing images is a somewhat unfortunate choice of example for MS-word ;-} – ConcernedOfTunbridgeWells Dec 3 '08 at 11:44
I'm not sure it's that hard. But there is just too many existing documents and users, too much functionality in LaTeX packages, and the underlying technologies are not that well documented or even standardized (font formats...). The amount of work needed to duplicate that is immense, and there is not enough need nor skilled individuals to undertake it. But I believe LuaTeX is a nice path for evolution. – Damien Pollet Apr 18 at 21:43
...placing images in MS word/openoffice is just as bad as latex in my opinion... I was trying to put a bunch of graphics in an already written document in word and openoffice... god, what a waste of time. At least i know what latex is capable of and can work around it. i guess i just don't know word/oo that well. – Mica Aug 8 at 0:32
vote up 5 vote down

You cannot retain "it has many extensions to reach different goals" with something new. By definition something new that is not TeX/LaTeX will start with no extension.

Having been a core contributor to the GNU TeXmacs project, which aims to be something like "TeX except for the 21st century", I think have some good insight on the succession of LaTeX.

I am not aware of anything on the horizon that is any likely of dethroning LaTeX. The people of influence in the mathematical community are just too used to using LaTeX to seriously consider the effort required to learn any tool that could be equally flexible.

Maybe in 20 years, when all the folks that got their PhD when LaTeX was cool are retired will something else replace it. Hopefully, it will be something like TeXmacs, but without the unnecessary complexity.

link|flag
1  
"Maybe in 20 years" will only happen if the students of tomorrow have a tool that's better than tex now. If we wait until 20 years to start on the successor, they will all be using tex and it'll be another 20 years. – Adam Davis Nov 20 '08 at 1:43
1  
Right. There is a chiken and egg problem. – ddaa Nov 20 '08 at 9:59
4  
I'm 34, wrote my PhD thesis using LaTeX, and everyday when I have to use word I'm really happy that I could use LaTeX for my thesis... – Gilles Dec 3 '08 at 15:00
Hey, "people of influence" are actually way more democratically minded and wouldn't mind if you write in some other good math typesetting system... if only there was one :^) – ilya n. Jun 10 at 2:55
vote up 2 vote down

I think docbook is supposed to be an open xml based replacement for LateX.

"DocBook provides a system for writing structured documents using SGML or XML. It is particularly well-suited to books and papers about computer hardware and software, though it is by no means limited to them.

"In short, DocBook is an easy-to-understand and widely used DTD. Dozens of organizations use DocBook for millions of pages of documentation, in various print and online formats, worldwide."

-- From the doc book faq

link|flag
1  
I say that one downside of LaTeX is too much typing and you present me a XML-based language as alternative? Docbook has it's advantages, but I prefer to generate docbook-sources from something else. – Mnementh Nov 20 '08 at 0:05
1  
For trying to write a book or documentation, you can't beat docbook. It's a different field than TeX, which is for typesetting and TeX is wonderful for math writing, but for prose this xml based format is better. – Karl Nov 20 '08 at 0:12
+1 to Mnementh's comment. – Svante Nov 20 '08 at 1:28
Shmeh, 'twas just an offer. Scorn it if you will. – vfilby Nov 20 '08 at 1:56
It really shouldn't be a big jump from those used to writing in LateX to DocBook. Disagree that DocBook should be generated from something else; what else is there that has the same degree of semantic expressiveness as DocBook? (besides LateX obviously :) – Alastair Nov 20 '08 at 4:34
show 1 more comment

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.