Installing LaTeX on Ubuntu
LaTeX is a markup language for describing a document. It can also be
defined as a document preparation system. LaTeX is mainly used to create
technical or scientific articles, papers, reports, books or PhD thesis.
There are number of LaTeX distributions you can install on Ubuntu. One such distribution is TeX Live.
Published at DZone with permission of Pavithra Gunasekara, author and DZone MVB. (source)There are number of LaTeX distributions you can install on Ubuntu. One such distribution is TeX Live.
-
To install Tex Live LaTeX distribution on ubuntu use the following command.
sudo apt-get install texlive-full
-
To edit LaTeX documents we need an editor. There are number of LaTeX
editors you can find. I recommend Texmaker, a cross platform LaTeX
editor. To install Texmaker on Ubuntu use following command.
sudo apt-get install texmaker
-
To open Texmaker on Ubuntu use following command.
texmaker
-
Now Let's create a simple document using Texmaker. Click on File -> New and insert following lines in the blank document.
\documentclass{article} \begin{document} Hello world! \end{document} -
Now save the document as a 'tex' file by clicking File -> Save. Compile the document clicking the arrow Quick Build.
(Note: Opinions expressed in this article and its replies are the opinions of their respective authors and not those of DZone, Inc.)
Tags:





