LaTeX for Beginners

Aus Wiki
Zur Navigation springen Zur Suche springen

LaTeX 101 - Intro for Newbies

[Bearbeiten | Quelltext bearbeiten]

Local (a big download!):

Online/web: no setup, use Overleaf in your browser.

Source file (.tex) passes (multiple times!) through engine to create PDF:

  1. Write .tex markup - save to document.tex.
  2. Run pdflatex document.tex in terminal.
  3. Output document.pdf generated.
\documentclass[a4paper]{article}
\begin{document}
Hello World!
\end{document}

www.overleaf.com

  • No local installation.
  • Needs Internet though...
  • Allows for real-time collaboration.
  • Auto-compiles PDF preview on save.