Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bitzl/latex-grid-system
latex-grid-system is a package for the LaTeX typesetting system implementing a grid system as known from CSS grid systems.
https://github.com/bitzl/latex-grid-system
Last synced: 17 days ago
JSON representation
latex-grid-system is a package for the LaTeX typesetting system implementing a grid system as known from CSS grid systems.
- Host: GitHub
- URL: https://github.com/bitzl/latex-grid-system
- Owner: bitzl
- License: apache-2.0
- Created: 2013-08-02T21:22:27.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2022-07-22T17:55:25.000Z (over 2 years ago)
- Last Synced: 2024-10-28T05:14:00.095Z (about 2 months ago)
- Language: TeX
- Homepage:
- Size: 20.5 KB
- Stars: 16
- Watchers: 4
- Forks: 2
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
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}
\begin{Cell}{}
Some text using 2/3 of the width.
\end{Cell}
\begin{Cell}{}
Some text using 1/3 of the width.
\end{Cell}
\end{Row}\begin{row}{}{}%
\begin{cell}{}
Some text using 2/3 of the width.
\end{cell}
\begin{cell}{}
Some text using 1/3 of the width.
\end{cell}
\end{row}
```Example:
```latex
\begin{Row}%
\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}\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 on GitHub:
https://github.com/bitzl/latex-grid-system
Please feel free to fork and contribute.