vote up 3 vote down star
1

Is LaTeX used outside of academia and if not, what is used ?

So far I've seen LaTeX only used commonly by mathematicians, but not so much by programmers and engineers. What are the alternative options, specially in engineering fields ? What do you use in your line of work, and for what exactly. I guess Word or some kind of DTP package comes to mind, but I don't quite "see" engineers using DTP packages for producing reports ;-)

Feel free to skip the last part if you think I'm being too obtrusive with asking.

I know there was a question of relatively similar title, but the question is not quite the same.

Lada's EDIT: Why am I interested? I'm a new engineer in a company (not programming company, but half eng. half programming), and for quite a while from now I'll be doing reports for everything I do. Generally, reports are what we sell. Reports = results. These reports include a lot of equations, a lot of graphs (well, pictures of all kinds, actually), and they have to be standardized looking.

I've been given a choice. I can use whatever I like (nobody's gonna edit it afterwards), as long as they satisfy those above demands (PDF goes in the archive, so they don't care whether it is word file or TeX that produced it). So, for those, I was in dilemma, is TeX a good choice ? Does it still have the problems with inserting pictures it had when I was in high school ? I don't remember the details about that one, just that it had some problems. I'm trying to stay away from DTP packages as long as I can, but for now I see only word/TeX groups.

Btw, are TeX files in any way convertible to word?

flag
It is the same question. – ShreevatsaR Mar 30 at 5:52
stackoverflow.com/questions/39029/… – derobert Mar 30 at 6:06
Please, keep this open a little more. I'm not gaining reputation, or anything. I just need some information. – Lada Kugis Mar 30 at 6:20
Lada: then comment on the duplicate question and tell us what the difference is. – Joachim Sauer Mar 30 at 8:49

closed as exact duplicate by ShreevatsaR, derobert, Quintin Robinson, Joachim Sauer, jalf Mar 30 at 15:23

10 Answers

vote up 3 vote down

Most of the world uses Word, and then Marketing might get their hands on it to sex it up a bit, DTP or otherwise.

I use latex in academic work, but outside that world everyone expects everything to be in Word format, and if you use latex you'll get a lot of 'why are your margins so big?'.

Edit after modification of question: If your company allows it, use Latex. It is the best suited tool for the task (a good argument in an engineering context) and for every possible question you have about formulae, columns and so on, there are hundreds of webpages on Latex to help.

As per my original point, however, be wary of interoperability issues. If your managers will only read things in Word, you will quickly tire of converting between them. On the upside, however, they will give you any corrections as notes on the pdf they printed out, instead of editing your report in Word.

link|flag
I don't understand. You cannot set margins in latex ? Please, would you be so kind to explain ? – Lada Kugis Mar 30 at 6:31
He probably talks about the default amrgins that are used if you don't define the margins yourself. – Treb Mar 30 at 8:09
I use the (included) fullpage package to fix the margins. fullpage + 12pt + double-spacing will result in a document that people think you wrote in Word, except that it doesn't look like shit. – jrockway Mar 30 at 8:56
Yes, the default margins are significantly larger than Word. They can be changed, but as with everything in Latex, they make complete sense - not too much on a page, plenty of space for annotation. – Phil H Mar 30 at 8:57
Edited to respond to the changed question (it was originally just about usage, not advice). – Phil H Mar 30 at 9:35
show 3 more comments
vote up 2 vote down

My dad wrote a book on information security using LaTeX, and I've also seen industrial reports using it. However, even if I use latex for everything I produce privately or academically, there is no way possible for me to use it in my work, because as just Phil says, people tend to expect something like word when working on a collaborate document.

Edit: To answer your edit, if you've been given a choice, and the expected result are neat reports, I would definitly recommend latex. Templates might be a bit tricky to write if you're not comfotable with using emacs lisp, but there are a ton of good ones you can find online. The only issue is that if you need images to appear exactly where you want them, you might be in for a bit of frustration, as tex places images based on a set of rules that at least I have not yet managed to work around. A more accomplished emacs lisper might be able to help with that, though.

link|flag
vote up 0 vote down

Latex is used by programmers to write their resumes. Check this! ;)

Indeed rest of the most of the world uses doc format.

To me the simplest solution seems to be write HTML (preferably using Markdown) and convert to PDF.

link|flag
How do you, for example, write formulas (uhmm, equations) in HTML ? – Lada Kugis Mar 30 at 5:58
Also, for printing, I've always found HTML a little not good. You cannot format pages (in reports) nicely. Always had that problem with word with pictures as well. – Lada Kugis Mar 30 at 5:58
You know, there is pdflatex. Which produces output that looks about 3 bajillion times better than html->pdf. – derobert Mar 30 at 6:06
vote up 1 vote down

For writing, Word is the most used format.

For reading, PDF is the most used format, followed by HTML when documentation is online.

This means that if you are the only writer, you can use whatever you want and produce a PDF for delivery. If the documentation is updated by multiple people, Word is the most common text processor.

For code documentation, another trend is to extract documentation from code with tools like Doxygen, which generates several formats like HTML, RTF or LaTeX (which is used to produce PDF).

link|flag
vote up 1 vote down

Adobe Framemaker has a devoted, if not a particularly large, market share.

For any technical stuff, you should use a system that:

  • uses styles of some kind to separate content from presentation, and
  • allows you to export to multiple formats, PDF and HTML being the absolute minimum.

Word, when used properly, can do both, but it just isn't stable enough for me - when doing anything slightly complex, it would crash.

DocBook is promising, and many a technical book has been written in it, but editing in a XML editor? And no WYSIWYG editors? No way. And the workflow is not particularly user-friendly.

PrinceXML could be good, but it costs money. Far too much money for what it is, IMO.

link|flag
vote up 6 vote down

If you can use whatever you like, why does it matter whether LaTeX is used by others?

Seems to me that you should simply write in the format you find easiest.

I prefer writing in TeX, because it forces me to focus on the text, rather than margins, choice of font, bold versus italic and all those other presentation issues.

As for "those issues with images it had when you were a student", TeX has always been able to include images. However, it is picky with image formats. The plain latex compiler only accepts .eps images. pdflatex only accepts common formats like png, jpg, gif. Both can be used to produce pdf output though.

link|flag
Hello jalf. Thanks for answering. I wasn't interested that much whether how much latex is used by others, as much in for what is it exactly used. I've used word so far, and always had a problem with images (in accurate positioning), and getting help wherever there is a less common problem. – Lada Kugis Mar 30 at 6:38
In pdflatex, you can also include other pdf's as pictures. Worked very well for me in my final thesis. – Treb Mar 30 at 8:11
@Lada: You're not supposed to do accurate positioning in LaTeX. That's pretty much the point. It is a typesetting system, it will typeset your document to make it look professional. You should never have to do more than provide hints. Using Tex means giving up some control. – jalf Mar 30 at 15:22
@previous comment: Of course not. TeX lets you have control over every pixel/point on the page. It is a typesetting system after all. Most of this control is possible even in LaTeX. – ShreevatsaR Apr 8 at 15:51
vote up 1 vote down

If you are editing lots of formulas, LaTeX is still the king. I know of no other product that can produce formulas of similar quality, and once you get to know the syntax, it's also a hell of a lot faster than any formula editor in Word or whatever.

Including images in the usual formats (jpeg, gif, png, don't know about tif) is not a problem, the last time I tried it (2003), I was also able to include pdf's as graphics in pdflatex. That was a great way to get good scalability: I was using graphics created in Excel. Printing them into a pdf meant that most objects were not converted from vector format to bitmaps.

Conclusion: If you have to write many formulas, I would always recommend LaTeX/pdflatex. If most of the images to include are vector based, look into a workflow with pdf graphics.

link|flag
vote up 1 vote down

If you are interested in the print quality of LaTeX, but want an easier tool to work with I recommend taking a look at LyX.

link|flag
vote up 0 vote down

Kyle is a nice frontend to latex also, you can quickly compile-view-change-compile-view cycle.

I did my thesis in latex. Thankfully at work I don't have to document much, plain text files and occassionally openoffice documents suffice.

link|flag
vote up 1 vote down

Since you will be creating a lot of reports containing calculations, I'd strongly suggest you think ahead to how to reproduce those reports. The client just called at 4 PM. "We need you to change this one input and rerun the reports. You can do that before you leave, right?" It's been six months since you worked on the report last. Your report is in one file, your data in another, and your number crunching code in another file. Can you you find them all? Are they in sync? Can you remember what tweaks you may have done that aren't part of the code?

One way to solve this problem is to use something like Sweave that lets you embed your code in your document. You embed R code for producing numbers, tables, graphs etc. into your LaTeX file. When Sweave runs, it executes the embedded code and puts the results into your document. Everything is in one file, it all stays in sync.

I'm not a big fan of R, but I'll live with it so I can use LaTeX and Sweave. There are alternatives that let you do something similar to embed C# or Matlab code in Word documents.

If you have many equations to write, LaTeX will be easier to produce and will look better. And it's easier to store LaTeX documents in version control: they're just text files, so you can easily see diffs between versions. But far more people know Word than LaTeX. It will be easier to exchange documents with others if you use Word.

link|flag

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