summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/latex/grid-system/README
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/doc/latex/grid-system/README')
-rw-r--r--Master/texmf-dist/doc/latex/grid-system/README40
1 files changed, 40 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/latex/grid-system/README b/Master/texmf-dist/doc/latex/grid-system/README
new file mode 100644
index 00000000000..367db0e2431
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/grid-system/README
@@ -0,0 +1,40 @@
+latex-grid-system
+=================
+
+latex-grid-system is a package for the LaTeX typesetting system implementing a grid system as known from CSS grid systems. This is useful for creating box layouts as used in brochures.
+
+Usage:
+
+```latex
+\begin{row}{<Columns>}{<Cells in row>}
+ \begin{cell}{<Columns for this cell>}
+ Some text using 2/3 of the width.
+ \end{cell}
+ \begin{cell}{<Columns for this cell>}
+ Some text using 1/3 of the width.
+ \end{cell}
+\end{row}
+```
+
+
+Example:
+
+```latex
+\begin{row}{3}{2}
+ \begin{cell}{2}
+ Some text using 2/3 of the width.
+ \end{cell}
+ \begin{cell}{1}
+ Some text using 1/3 of the width.
+ \end{cell}
+\end{row}
+````
+
+Contribute
+==========
+
+This package is developed a GitHub:
+
+ https://github.com/bitzl/latex-grid-system
+
+Please feel free to fork and contribute. \ No newline at end of file