LaTeX Installation

Installing basically means preparing the tools needed to run the system. To start creating documents, we usually need:
- a distribution, such as Mik, Live, or MacTeX;
- a document viewer, such as Adobe Reader, Foxit Reader, or Sumatra PDF;
- a editor, such as works or studio.
Two Ways to Use LaTeX
After those programs are installed, you can start using . In general, there are two ways to work with it: online and offline.
1. Online Mode
When using online, the system is already installed on the service provider’s server, usually together with an editor. Some services you can use are:
To use those services, you need to create an account first.

2. Offline Mode
is available on different operating systems with different distributions:
- Windows: Mik, Live, Pro, PC, and BaKom
- Mac: Live and Mac
- Linux: Live
LaTeX Editors for Offline Mode
Some editors that can be used for are TeXmaker, LyX, TeXworks, TeXstudio, and Gummi.
Download links:
- Mik: miktex.org
- Live: tug.org/texlive/acquire-iso.html
- TeXstudio: texstudio.org
Choose the distribution and editor that match your operating system, then follow the installation instructions carefully.
A Simple LaTeX Test
After installation, try writing the following simple document in your editor, then compile it and see the result.
\documentclass{article}
\begin{document}
Hello, world!
This is my first document written in \LaTeX.
\end{document}If you run the code in Overleaf, the result will look like this.

Closing
Once the system, editor, and PDF viewer are installed, you are ready to start writing documents. The next step is to learn document structure, packages, and the most common commands.




