latex-grid-system icon indicating copy to clipboard operation
latex-grid-system copied to clipboard

latex-grid-system is a package for the LaTeX typesetting system implementing a grid system as known from CSS grid systems.

Results 8 latex-grid-system issues
Sort by recently updated
recently updated
newest added

\begin{row}[cellsep=0.75cm]{3}{3} \begin{cell}{1} \href{http://ignifiresportswear.com/}{\includegraphics[width=\textwidth]{ignifiresportswear}} \href{http://ignifiresportswear.com/}{\texttt{ignifiresportswear.com}} \end{cell} \begin{cell}{1} \href{http://gillsportspk.com/}{\includegraphics[width=\textwidth]{gillsportspk}} \href{http://gillsportspk.com/}{\texttt{gillsportspk.com}} \end{cell} \begin{cell}{1} \href{http://wellshadeindustries.com/}{\includegraphics[width=\textwidth]{wellshadeindustries}} \href{http://wellshadeindustries.com/}{\texttt{wellshadeindustries.com}} \end{cell} \end{row} // here, new row should start....however, the new images get attached to previous row \begin{row}[cellsep=0.75cm]{3}{3} \begin{cell}{1}...

I've struggled to make a pair of environments that would extend `Row` and `Cell` environments, but also employing `\lrbox` (aka LaTeX's `\savebox`) for the `Cell` contents. I have tried multiple...

The meaning of the parameters of the row environment is difficult to understand. Some illustrations would help to make it easier.

enhancement
documentation

It is necessary to add `%` to avoid extra spaces: ``` latex \begin{row}{3}% ... \end{row} ``` Better would be: ``` latex \begin{row}{3} ... \end{row} ```

enhancement

The user should be able to choose a background color and a border for each cell.

enhancement

All cells are created using minipages. To enable switching to other methods, like _parbox_, we need to enable pluggable backends. This will change the architecture to something like: ``` latex...

enhancement
architecture

At the moment cells are created using minipages. As a consequence, footnotes will be set inside the cell. Using parbox as a backend would enable footnotes at the bottom of...

enhancement