23 lines
539 B
TeX
23 lines
539 B
TeX
\documentclass[a4paper]{article}
|
|
\usepackage{lmodern}
|
|
\usepackage{amssymb,amsmath}
|
|
\usepackage[T1]{fontenc}
|
|
\usepackage[utf8]{inputenc}
|
|
\usepackage{hyperref}
|
|
\begin{document}
|
|
\thispagestyle{empty}
|
|
\section*{paragraphs}
|
|
Continous text can be written directly
|
|
in the source code.
|
|
Simple line breaks
|
|
are ignored,
|
|
just as multiple space characters.
|
|
|
|
An empty line creates a new paragraph
|
|
which has an indentation by default.
|
|
Manual line breaks can be forced
|
|
using two backslashes,
|
|
but this use \\
|
|
is strongly discouraged.
|
|
\end{document}
|