Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

This seems like an interesting forum to ask if anyone's come across semi-serious LaTeX usage outside of its traditional fields like mathematics, computer science, and other academic disciplines.

While the learning curve is rather steep (for some people), it seems in many cases like it could be a very useful tool in the real world for producing high-quality, semi-automated documents.

So, have you seen LaTeX used in the real world? If so, how? If not, why?

Edit:

Wow, still surprised by the feedback speed of this site!

Lehane writes:

the drawbacks of Word aren't enough to outweigh the cost of learning LaTeX. Also, I actually don't think the review mechanism in Word is that bad.

Yes, whenever collaboration is required then basically all parties must be using the same software. I've never really used Word's change tracking, but I do hear it's very good. In fact, Word 2007's mathematics handling (which is unfortunately incompatible with Word 2008 -- !) is also very good by all accounts, although again I haven't used it myself.

Personally, I hope to continue using LaTeX (or a similar system like ConTeXt), well, forever. The ability to define ad-hoc semantic markup makes my life so much easier when I change my mind about how things should look (or, more importantly, behave) later on.


@Konrad Rudolph:

While I agree with you that the quality of TeX is better compared to something like Adobe InDesign, the comparison to a tool like Word is apt in that if you're writing a paper or a thesis, then Word is often the only choice for many people. And these days it can do a passable job.

If you're talking about complex image arrangement that some DTPs do, then I'm not sure the comparison to LaTeX really works any more.

Personally, I think of LaTeX as "HTML for real-life documents".

share|improve this question
I agree. The contents matter more than form. But still, for commercial work (books and such) latex still has the advantage of releasing the publishing guy of the process of choosing the adequate design. – ldigas Feb 7 '09 at 4:12
@robertson You wrote that Word is the *only* choice for many people if they want to write a thesis; actually, I disagree with this statement since there is now an internet based service notex.ch that allows you to write in reStructuredText which is the translated to LaTex or directly to PDF. My problem with LaTex is it mixes content with representation as much as Word does (LaTex on the markup level, and Word on the visual level). LaTex should only be used to design the document, but there are far better/natural markups for content: reStructuredText, markdown are examples. – hsk81 Feb 12 at 9:52

19 Answers

up vote 52 down vote accepted

Myth: LaTeX has a learning curve. Bull. A one-hour teaching session is enough to get people producing basic documents. After that you give them "A Guide to LaTeX" (Kopka & Daly) and/or "The LaTeX companion" (Mittelbach) and you tell them about comp.text.tex and ctan.org. In the 80s my secretary used plain TeX to typeset math reports. Really. It's much easier than you think.

Outside of science, TeX/LaTeX is used in languages, especially where strange alphabets are used.

A good reason for using TeX/LaTeX is the separation of content and layout. I had written 200 pages of a book before I ever talked to a designer. Since all layout decisions were captured in macros, incorporating her layout was simply a matter of rewriting the macros. Easy.

Another reason for using TeX/LaTeX for anything is its programmability. I'll give a few examples.

  1. A report has sections that are Open, Confidential, or Secret. Every page has to have a marking at the top that is the maximum of the rankings of all the sections on it. It would take me less than an afternoon to write the macros for that. A friend of mine did this for the dept. of defense.

  2. Shakespeare's plays are in iambic pentameters, and sometimes one character finishes the line of another. I wrote a macro in about an hour that will automatically indent the second line to where the previous one stopped.

  3. A sociologist friend had large numbers of automatically generated tables in his thesis. He dumped the numbers from a database, had a script that transformed them into LaTeX figure environment, and generated the LaTeX code to include them.

Et cetera.

share|improve this answer
2  
Separation of content and layout and programmability are also things that Word has (styles and VBA respectively). Styles are less powerful than LaTeX's macro system, but do cover 95% of typical requirements. If you are looking for a point of separation, I'd suggest stability on large documents. – j_random_hacker Mar 4 '09 at 10:19
"strange alphabets" - particularly Indian languages. – Charles Stewart Dec 27 '09 at 1:35

Wow, people actually compare LaTeX to MS Word? This is just wrong. Word is basically a text editor that knows about formatting. LaTeX is a desktop publishing system (DTP).

To see the distinction, it's enough to have a look at Word's fonts menu. Good fonts, such as Hoefler Text, have a host of variants for different characters, depending on the context in the text. They also add metrics to calculate kerning and other fancy stuff (so as information whether two characters intersect). DTP software takes these information into account to enhance the type face. MS Word doesn't. Software like Word or OOo even struggle with basic features such as common ligatures. A DTP goes much further in that it allows the user to edit these font features selectively.

Additionally, Word even lacks basics such as correct small caps (instead, it just uses the uppercase letters and scales them down to approximately match lowercase letters).

Another huge aspect is the algorithm to determine a good black/white ratio in the document, i.e. how words are distributed in a paragraph to make it look balanced. Word has a very basic grasp of how to do it, not at all comparable to a professional DTP.

So, LaTeX shouldn't be compared to MS Word but to other DTP systems. Actually, I can't speak for those. The only DTP that I've used except LaTeX was Aldus PageMaker. Not exactly a modern software. I imagine that in professional type setting, they don't use LaTeX very often because until very recently, handling of different fonts was quite complicated, along with a few other things. While (La)TeX knows all these things, they're not easily configurable. This might be enough for technical publications but most non-technical publications desire a certain level of individuality which is hard to reach using LaTeX.

However, recent distribitions are much better behaved. For example, take the XeTeX settings system which comes with Unicode support switched on by default. In fact, working with anything other than Unicode isn't well supported any more. It also comes with a very good fonts and colour support provided by the fontspec package.

So, in closing let me once again emphasize that MS Word might be a good software but it was never intended to act in place of a professional DTP. While it's actually true that some books are created using Word, this is a shame, for crying out loud. Many modern books are not set by professional typographers any more. I guess they want too much money, greedy bastards, just because they think they know more than we.

share|improve this answer
@Konrad Rudolph: I quite agree with your answer, and I'm not trying to compare LaTeX with Word. I'm just saying that for some tasks (documentation writing in my example), some people typically choose between LaTeX -outputting in PDF- and Word. – OysterD Sep 2 '08 at 12:02
i am one of two or three people in my company that knows LaTeX. I love it. Its not hard to learn, I picked it up in about a week. Conversely, I have been using micrsoft word on and off for a long while (over 10 years i think) and I still can't do half the stuff in that foul program. for me, in the latex vs ms word debate, its a question of precision vs almost-there: with latex, i tell it to do exactly what i want, and that is what is done. in word, i tell it about what i want to do, and it kind of does that... which is annoying. – Mica Aug 26 '09 at 0:32
1  
-1 : I may be blind but it seems the answer completely misses the question and just does some Word bashing – Martin Ba Sep 3 '10 at 19:45
3  
@Martin: the “answer” was written before comments were implemented … it’s more a comment to existing answers. But I don’t see any bashing. Word just doesn’t cut it as a professional DTP – few (no?) people with publishing experience actually contest that. Word is good at what it does but that’s not professional DTP. – Konrad Rudolph Sep 5 '10 at 21:03
1  
@KR - Ah OK. Need to remember that when browsing old answers. Cheers. – Martin Ba Sep 6 '10 at 6:37

Still quite mathematical, but also in the industry: I work in a bank, and we use LaTeX to

  • write internal documentation (some use LaTeX, some use Word);
  • write description of financial products (the LaTeX code is generated automatically, so typically the user only sees a PDF).

Note that lots of people use LaTeX to write books (not necessarily technical books!).

share|improve this answer

I have personally used LaTeX when writing detailed customer specifications at work. You basically don't have to think about layout and it gives the document a "professional look". In addition the LaTeX source fits nicely into any source control system.

share|improve this answer

I use it for customer documentation too, just like Thomas. The main advantage over MS Word files is latex sources are text only and thus diff-able in CVS/SVN.

share|improve this answer
TortoiseSVN can be used to easily diff Word documents. In general, Word 2003+ has a fairly decent way of comparing two documents for changes. – Garo Yeriazarian Aug 18 '10 at 0:04
2  
TortoiseSVN != SVN. – alternative Sep 3 '10 at 20:36

Since the question title is

Is LaTeX used outside mathematics and academia?

I'll skip the feature and Word bashing discussion and come to the point:

Long story short: I know it's used because we use it and we are very far from academia or professional publishing. And we are not even Linux geeks; we use only Windows :-)

We now use LaTeX exclusively to produce our customer documentation related to our software products. We are on Windows and use MikTeX with TeXniccenter.

We used MS Word in the past but had troubles with broken document layouts and lot's of images in documents and collaboration. (Not saying it can't be solved -- it just seemed even more work than switching to LaTeX.)

We basically never need LaTeXs highly regarded math ability, but here's some of the relevant points:

  • Easy to handle (merge, compare) in source control (simple text files)
  • Automated+scripted document generation from source control
  • 100% reproducible document layout
  • 100% fixed document layout (The document class defines a fixed title page, fixed copyright disclaimer, etc.)
  • (Limited) ability to detect layout/content "errors" that developers make during document generation
  • Custom macros - For example, our customer docs will contain warning or info boxes with an icon like you find in books. This can be automated so that the developer just has to write \OurInfoBox{Text goes here ...}

And here come the negatives :-)

  • Tables. Oh god. I hate LaTeX tables. (See also next bullet.)
  • Learning effort for anything but simple text insertion. (You have to take into account that these documents also get edited by people for whom using LaTeX/writing customer docs is just a tiny fraction of their work time. If someone only has to edit a LaTeX document once a month - for example to add just one line to a table - then it can become frustrating. Especially as we do not really have a dedicated LaTeX power user on site to quickly ask if something is broken.)
  • Error output of LaTeX is often completely incomprehensible, so it can take literally hours to fix a broken document.
share|improve this answer

I use LaTeX for almost every written output I produce.

The main advantage for me is reproducibility: I don't have to remember where to click, what option to choose, what pitfall to avoid, I just write the same instructions and it behaves the same. If I don't remember how I did something, I can just take a look at how I did it.

The other great advantage is the completeness of the language and the wealth of mostly well-documented packages to do anything you want.

There is a big difference to HTML, by the way: the display of HTML-"formatted" text is dependent on many things like the user's browser, window geometry, resolution etc., and the HTML coder has little influence on that.

share|improve this answer

I tried LaTeX after getting more and more fed up with Word doing seemingly random things with tables and bullets. I haven't looked back. Sure, Word might be easier for really quick documents, but for reports, dissertations, etc. there's no contest.

share|improve this answer

I've used LaTeX to programmatically produce PDFs from a website.

share|improve this answer

Real world? I'm the only LaTeX user in the company I work for, but as head of my department, all my reports (both internal and external), data sheets, technical news items, form letters, etc. are done in LaTeX. Some require very rudimentary math typesetting, most require none at all. I've used it for everything from a internal training manual (240+ pages) to our annual Xmas letter.

Why LaTeX?

They look great, it is easy to set a stock format for a particular series of pieces, SVN control, easy control of tables and overall formatting. (For the person who hates doing tables in LaTeX, checkout the booktabs package.) I have learned much about typography just through reading some of the package manuals.

The standardized formatting is a real plus for a small business. Once you decide upon a format for Technical Bulletins (for example), they will all look the same -- very professional, very crisp.

For a small business like ours, a free, open-source product like LaTeX is indispensable.

I finally got smart and started using the TeXLive! versions, as well (big plus for upgrading and future compatibility).

share|improve this answer

I don't know whether you would call this the real world, but Wikipedia uses LaTeX markup for presentation of mathematical equations. See Quadratic Equation for simple examples.

More information can be found at the MediaWiki Math Markup page.

Edit: I suppose you were asking about instances of its use outside mathematics, so MediaWiki wouldn't count. I can't think of any other instances where I've noticed the use of LaTeX outside the technical sciences.

share|improve this answer

Not from what I've seen. I've been working ouside academia (where I used LaTeX a lot) for about a year and a half now and my guess is most people haven't even heard of it. Where I am, most documents that are produced will also need to be reviewed/edited by non-technical people, and I guess for this purpose the drawbacks of Word aren't enough to outweigh the cost of learning LaTeX. Also, I actually don't think the review mechanism in Word is that bad.

share|improve this answer
1  
That is just because nobody really does the cost-benefit calculation. – Stephan Eggermont Dec 7 '08 at 18:57

Word is just fine for authoring, just as Latex is. Neither is excellent for typesetting, where they have different weaknesses: Context is well-suited to typesetting, as is Indesign.

The toolchain around Word is better for collaborative editing (track changes, macros for stripping foolish formatting, macros for checking every style issue under the sun, tools for migrating from edited document to document ready for typesetting, etc.) although there is no reason besides developer effort why a better toolset could not be constructed around Latex/Context. Latex's killer feature, for the next few years, could be distributed version control for concurrent editing: I know of a publisher who has good experiences with this. Word is horrible at this.

An important weakness of Latex in publishing is the relative scarcity of editors who know Latex well. There is useful software for converting between Word and Latex: docx2tex and latex2rtf. Getting these to work smoothly in the context of a typical publisher's workflow could make a big difference to the degree of acceptance of Latex as a authoring format by publishers.

share|improve this answer

I use LaTeX to produce an 80 page colour catalogue of products that I sell through my business.

share|improve this answer

LaTeX is often used as part of other programs. For example, in the Inkscape drawing package you can insert any LaTeX output as vector graphics. That gives you access to an enormous number of symbols.

share|improve this answer

LaTeX is especially convenient for typesetting formulae, but is definitely not restricted to mathematics in terms of actual usage.

Most printed books go through TeX at some stage of their typesetting process. So, it is not only academia either. This remains somewhat hidden from the reader, unfortunately, therefore many people have the same observations as you.

share|improve this answer
1  
"Most printed books go through TeX at some stage" ?! I'm afraid not. – Will Robertson Oct 7 '08 at 7:08
2  
And yet neither of you have provided any evidence to your argument. – jcollum Oct 28 '08 at 19:46
2  
Well, uh, to say "most" implies that major publishers such as Penguin, Harpers-Collins, whoever, actually use TeX. And there's absolutely no evidence that I know of that they do so. – Will Robertson Oct 29 '08 at 13:00
3  
Yeah, I'd love to see some source to this statement. – Oddmund Dec 14 '08 at 3:14
My impression is that major publishers' workflows nowadays tend to start in Word for editorial work and wind up in Quark for typesetting. I'm basing this on things that people like Patrick Nielsen Hayden have said in casual public online conversation, so it's perhaps not to be generalized too far, but it's at least anecdata. – Zack Sep 3 '10 at 20:50
show 1 more comment

I frequently want to write something without doing any fiddling with the format at the time of writing. I want a compact representation that will do well in a cross-platform (Linux, MacOSX, Windows 7) environment and fit into standard version control systems (I'm currently using Mercurial at home). I sometimes want to have it in a format where I can easily make something halfway professional-looking out of it. These are my requirements; yours of course might vary.

For these purposes, I know of nothing better than LaTeX. I generally don't even care about the math typesetting, since I typically don't put math into my writing.

Besides, this allows me to write in the text editor of my choice (vim), rather than somebody's idea of a word processor. (FWIW, my spelling and grammar are usually good, so I don't benefit much from online spill and grandma checkers.)

share|improve this answer

Thank you for the clear comparison and the objective opinion, I believe that Microsoft word is better than LaTEX when it comes to writing simple documents with graphics. And when writing technical documents such software and IT documentation. I think LaTEX is better for research houses and mathematical documents. Anyway I did an analysis about LaTEX and Microsoft Word for IT organization please have a look on it : http://www.jaftalks.com/wp/index.php/latex-or-microsoft-word-in-it-organization/ I will be waiting for your opinion, kindly post your agreement in the comment. Thank you

share|improve this answer

Hi My opinion on Latex is that it is an academic thing, its one of those things academics like so they can say, "hey, we use this program that requires you to write 600lines of code just to say hello, oh you should see the algorithm is 900 pages long, no body else knows about this and so we are smarter because we have this tool that requires complication that really isnt of any point" wank wank wank wank. Seriously the only people that need to write 30 pages of equations are maths lectures that are not involved in normal life. If you need only a few equations then MS word works well. Im at university now in a maths department, teaching mathematical finance, yes they have no idea about the actual markets. They force this program onto us, make us do assignments and wont mark them unless they are set in this program. When you can write it up in word, with equations and its fine. To me the format looks crap, it looks like an 80s type writer, no matter what setting, a 70s book that is hard to read. As far as I am aware, the only books that I know which may use this program is Springer. Apart from that? I asked my lectures, why do we use this program? What are its benefits? Why couldnt you type in word like they do in banks? where we are being educated to work? They couldnt give me a straight answer. I have never seen a job advertised in a bank that required me to know latex to type documents. Other coding like VBA, C ++, Matlab, etc are always mentioned in job ads. To sum up, if you are typing equations and sending them to journals like mathematica etc then this program may be helpfull to write up all those equations and your hypothetical model based world. Really is it easier to type 7 characters to make a letter bold? or just to click the button..................................

share|improve this answer
4  
Hi John. I think the easiest thing is to click the button to bold text -- in TeXnicCenter or similar. You don't have to write LaTeX in notepad. No wonder you don't like it! – progo May 29 '11 at 8:10
+1 because I slightly agree with what you are saying, even though I am a major latex fan myself. I believe that people use latex because it makes documents look better; when I read a document set in latex it is much easier to read than one set in microsoft word (because of the fact that latex uses special algorithms to space letters and lines). Microsoft word is expensive, and math isn't compatible from the 2007 version to the 2008 version (have to rewrite the entire equation!). It's free, and I believe it has a lot more flexibility than any other word processor I've ever used. – alexy13 Sep 8 '12 at 0:55
When you mean normal life, do you mean mathematics such as complex numbers or Laplace transforms? This kind of mathematics is just for academics, there is no point in it etc </s>. I think you're not suited for higher education, your horizon is very narrow. I would recommend you leave and find a job, you'll be happier.. – rhody May 7 at 18:18

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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