Saturday 18 July 2015

www.eqlatex.com

Hi,

I just recently created a site

EqLateX

to those of you who need an online Equation tester. Is free and dynamically updated editor.

Enjoy!

Thursday 28 April 2011

Installing LaTeX on W.indows!

LaTeX Beginner's Guide
Guide to LaTeX (4th Edition)
The LaTeX Companion (Tools and Techniques for Computer Typesetting)
First, you need software: (I recomended use my link all-in-one, see comments!)

MikTeX,    this contain packages and more stuffs.
Ghostview, this is an interpreter for the PostScript language and for PDF, and related software and          documentation.
GSview,     previewer for Windows.
Texmaker or TeXnicCenter,  these are features rich and easy-to-use integrated environment for creating LaTeX documents on the Windows platform.

Sunday 30 January 2011

A Hello world! in LaTeX

To start a new document, just put in a blank document the following sentences:

\documentclass{article}

\begin{document}

Hello world!

\end{document}

The LaTeX Companion (Tools and Techniques for Computer Typesetting)Save as: latex_example.tex. The extension *.tex is relative to LaTeX documents.

Preferable to save the document in a separate folder, it works better for you because probably you will have a lot archives very soon, like other files, pics(*.eps, *.jpeg, *.png), pdf's, etc.

To compile in linux put in a terminal:

pdflatex your_archive.tex

and the system create a pdf version of your latex file.