latex
Differences
This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revision | |||
| latex [February 18, 2026 at 03:53] – yanevskiv | latex [August 22, 2026 at 15:22] (current) – external edit 127.0.0.1 | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| + | # TexLive | ||
| + | **TexLive** is a LaTeX distribution for scientific and technical typesetting. Write markup in `.tex` files, compile to PDF with `pdflatex` or `xelatex`. Professional alternative to Word for papers, theses, and technical documentation—version-controllable, | ||
| + | |||
| + | LaTeX is markup language where commands start with backslash: `\command{arg}` or `\command[option]{arg}`. Bold text is `\textbf{text}`, | ||
| + | |||
| + | ```latex | ||
| + | % Compile: pdflatex main.tex | ||
| + | |||
| + | \documentclass{article} | ||
| + | \title{My Paper} | ||
| + | \author{Me} | ||
| + | \begin{document} | ||
| + | \maketitle | ||
| + | Hello, world! | ||
| + | \end{document} | ||
| + | ``` | ||
| + | |||
| + | Compile with `pdflatex main.tex` and open `main.pdf`. LaTeX is powerful for mathematics, | ||
| + | |||
| + | ## Concepts | ||
| + | |||
| + | 1. [[texlive-installation|Installation]] | ||
| + | 2. [[texlive-basics|Basics]] | ||
| + | 3. [[texlive-formatting|Formatting]] | ||
| + | 4. [[texlive-math|Math]] | ||
| + | 5. [[texlive-documents|Documents]] | ||
| + | 6. [[texlive-packages|Packages]] | ||
| + | 7. [[texlive-sections|Sections and lists]] | ||
| + | 8. [[texlive-tables|Tables]] | ||
| + | 9. [[texlive-figures|Figures]] | ||
| + | 10. [[texlive-references|References]] | ||
| + | 11. [[texlive-tikz|TikZ graphics]] | ||
| + | 12. [[texlive-headers-footers|Headers and footers]] | ||
| + | 13. [[texlive-beamer|Presentations]] | ||
| + | 14. [[texlive-compilers|Compilers]] | ||
| + | 15. [[texlive-debugging|Debugging]] | ||
