Have you considered LyX? Designed for people with a problem like yours - wanting the benefit of TeX output without the effort needed to learn something new. It's also a pretty good structure oriented (rather than WYSIWYG) editor.
Isn't LyX WYSIWYG ? Personally I would say it is. (and also @vancomycin below). Sure there is also the "WYSIWYM" category, but it's more of a pun and not broadly known.
Ask HN: MS Word alternatives for writing academic reports
31–40 of 41 posts
Re: Ask HN: MS Word alternatives for writing academic reports
#32I've used it for two papers for arXiv, with equations and tables. It can write any math formula you can write on paper. You don't need to learn Latex at all to use it. It's very clear and intuitive. It's not WYSIWIG, but it's clear what you're going to get, and what you need to do on-screen to get what you want.
And,if you're on Linux, you should be able to get it running with no sweat.
Re: Ask HN: MS Word alternatives for writing academic reports
#33Earlier quoted context omitted.
Isn't LyX WYSIWYG ? Personally I would say it is. (and also @vancomycin below). Sure there is also the "WYSIWYM" category, but it's more of a pun and not broadly known.
LyX is not WYSIWYG and I'm not sure how to argue this point. What you see in the editor window doesn't look like the paginated output - it's not really up to someone's opinion to decide.
Re: Ask HN: MS Word alternatives for writing academic reports
#341. Draft in Scrivener. 2. Export to rtf. 3. Open the file in Open Office. 4. Export to LaTex. 5. Typeset pdf. You can also export directly from Scrivener to LaTex, but a thesis is going to require a good deal of back and forth and revisions before it is ready for typesetting. If you don't want to have a typeset final product, you can write in Scrivener and export to many different formats. If you want to write using…
it looks like a very nice application, but i forgot to mention that i am now mainly using linux and it seems there is no linux version? (and also free (as in free lunch version) :D)
http://literatureandlatte.com/forum/viewtopic.php?f=33&t=252...
Re: Ask HN: MS Word alternatives for writing academic reports
#35Re: Ask HN: MS Word alternatives for writing academic reports
#36However, LaTeX has features designed for academic writing (e.g. you can have references to sections / bibliography entries, so when you insert or delete new ones, the numbers in the text are updated automatically.)
You don't mention what subject your thesis is in, but if it involves mathematical notation, you will likely have a lot more work and poorer results if you use anything but LaTeX.
Specifically related to the question of using LaTeX's mathematical typesetting capabilities in documentation or webpages, MathJax [1] is a popular solution. The Python-based static blog generator Nikola [2] has support for MathJax.
As for being intimidated by LaTeX, and being too unfamiliar with alternatives to make a comparison, I suggest spending a day or so trying to write a small part of your report in LaTeX, then deciding after you've used it.
Re: Ask HN: MS Word alternatives for writing academic reports
#37As to my particular setup, I write Pandoc markdown in Vim using a plugin which I wrote for that purpose.[2] Nothing fancy, mind you, just light syntax highlighting, some keyboard shortcuts for (1) exporting to html or pdf (via-LaTeX) and (2) jumping between headers, and document folding, the latter of which is especially useful for outlining and organizing lengthy documents.
Re: Ask HN: MS Word alternatives for writing academic reports
#38here are some factors that drive my decision:
- i can start writing content right away without much initial learning
- rst can be read/revised by my other peers with more ease than full blown latex document.
- i can use latex parts (equations, typesetting, etc) inline with rst, and i can learn latex bit-by-bit on the way
- there some libraries/program that can make attractive presentations using rst (http://regebro.github.io/hovercraft/#/step-1)
so i will use rst and learn latex on the way.
Re: Ask HN: MS Word alternatives for writing academic reports
#39It's like markdown but more mature and scales to large documents.
Re: Ask HN: MS Word alternatives for writing academic reports
#40Earlier quoted context omitted.
LaTex is not a writing application, it is a typesetting application. LaTex should be your last stop before publication. You can, of course, write natively in LaTex but the program wasn't designed for that.
> You can, of course, write natively in LaTex but the program wasn't designed for that. Hard to know precisely what you mean by this, but if you mean that you shouldn't be writing things like \documentclass{article} \begin{document} Hello world. \end{document} then you are mistaken; the LaTeX book (and many other documents) describes what to do. If what you mean is that a person is somehow meant to use a front end su…