blob: 6f527351b17646bc3864f2324fb80f5d329c0167 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# lipsum
150 paragraphs of Lorem ipsum dummy text for LaTeX.
## Install
In most cases it is not requried to install this package manually, it is
included in the major tex-distributions. If, for some reason, you want install
it manually, run lipsum.ins through (pdf)latex to generate the style file. To
generate the documentation, run lispum.dtx through a latex program that
understands utf8 input (XeLaTeX or lualatex).
## Usage
See the documentation.
## Quick'n'dirty
```latex
\documentclass{article}
\usepackage{lipsum}
\begin{document}
\lipsum
\end {document}
```
|