summaryrefslogtreecommitdiff
path: root/macros/latex/contrib/lipsum/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'macros/latex/contrib/lipsum/README.md')
-rw-r--r--macros/latex/contrib/lipsum/README.md26
1 files changed, 26 insertions, 0 deletions
diff --git a/macros/latex/contrib/lipsum/README.md b/macros/latex/contrib/lipsum/README.md
new file mode 100644
index 0000000000..6f527351b1
--- /dev/null
+++ b/macros/latex/contrib/lipsum/README.md
@@ -0,0 +1,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}
+```