21 comments

[ 2.1 ms ] story [ 63.8 ms ] thread
Interesting how they made a Tutorial out of a pdf file. Does anyone know how this is done?
You mean the buttons on the right side? Acrobat can do that. Although it would be fitting if they did it using LaTeX.
It says so right on the frontpage: This document is generated from LTEX sources compiled with pdfLTEX v. 14e in an INTEL Pentium III 700 MHz system running Linux kernel version 2.2.14-12. The packages used are hyperref.sty and pdfscreen.sty
(comment deleted)
I'm pretty sure your TOC is put there automatically if you use pdflatex.
(comment deleted)
I have just started using LaTex for documentation at work, after years struggling with Word, its a real revelation.
I was just forced to start using it for one project, and once I got over the learning curve (which is a lot shorter than it first appears) I love it. Now I'm using it for projects where it is not necessary but is a superior solution to word. The only thing I still really struggle with is the placement of figures exactly where you want them.

  \usepackage{float}
  ...
  \begin{document}
  ...
  \begin{figure}[H]
But LaTeX is often better at determining where a figure should go. There is usually no reason it has to be right after a certain paragraph - books and magazines certainly don't do that. It's just another thing to get used to coming from Word.
Every time someone brings up LaTeX I bring up Pandoc. It's an awesome conversion tool written in Haskell that converts between a number of input and output languages, most notably from markdown to LaTeX or a PDF made with LaTeX. I've been using it for all my assignments and papers since I got it, and it's really nice to write in markdown, but be able to use LaTeX for things markdown can't handle.

Link: http://johnmacfarlane.net/pandoc/

Emacs Muse is another project that is worth looking at for this kind of work:

http://mwolson.org/projects/EmacsMuse.html

It's basically a markup language not too different from markdown, but which is much more flexible and translates to LaTeX, HTML, PDF, etc.

Yes. It's great to be able to use a LaTeX-formatted equation into a regular Pandoc Markdown document.

BTW, for those wanting to learn more about how to use LaTeX, you might try writing your doc in Markdown, pandoc it into LaTeX, and then look at that LaTeX output in your editor.

I'll add though, that with LaTeX I had to write markup. With Markdown I just write.

I have been looking at LyX. Link: www.lyx.org

It's a WYSIWYM, What You See Is What You Mean editor which uses LaTeX/TeX with a graphical editor.

It's cross-platform, documentation is first rate and IMHO is an excellent contender to Word, let alone writing LaTex.