Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

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.