Sie sind auf Seite 1von 5

AIM: WORKING WITH LATEX

THEORY:
Define LATEX:
LaTeX is a document markup language and a text preparation system to create
documents. LaTeX is recommended to create technical or scientific articles,
papers, reports, books and other documents like PhDs.
Steps to Install LaTeX on Ubuntu Linux:
1. Open the ubuntu software center
Use it to download synaptic package manager. After installing synaptic package
manager, use it to download tex live and texmaker.
2. Open your terminal
A terminal is a Command Line Interface (CLI) where you type commands to tell
the computer what to do. Make sure you've opened the terminal, if so, continues in
the next step.
3. Install TeX Live
TeX Live is a TeX distribution to get up and running with the TeX document
production system. To install it, once you're in the terminal, enter the following
command:
sudo apt-get install texlive-full
Then, type your 'sudo' password and you'll have installed Tex Live. This operation
may take some time.

4. Install Texmaker
Now you need a text editor. I recommend using a specific editor for LaTeX. There
are many text editors for LaTeX on the Internet as Kile, TeXworks, JLatexEditor,
Gedit LaTeX Plugin, etc. My favorite text editor for Latex is Texmaker. Texmaker
is a cross-platform open source LaTeX editor. To install it, go to the Ubuntu
terminal and enter the following command:
sudo apt-get install texmaker
In a few minutes you'll have installed Texmaker.
5. Create your first document
To check that everything is working properly, create a LaTeX blank document.
Open Texmaker and click on File, New. Then write the following code:
\documentclass{article}
\begin{document}
Hello world!
\end{document}
Now save the document as a 'tex' file going to File, Save. Finally, compile the
document clicking on Tools, PDFLaTeX. Make sure the 'pdf' file has been created
and it's working. And that's it! You've created your first LaTeX document!
OUTPUT:

CONCLUSION : Thus we have studied implementation of latex in ubuntu linux.

Das könnte Ihnen auch gefallen