Using the grid-system package http://www.ctan.org/tex-archive/macros/latex/contrib/grid-system
Very little documentation on it. When I tried adding a \figure in a cell, I get Latex error.
\documentclass[12pt,notitlepage]{article}%
\usepackage{float}
\usepackage{grid-system}
\begin{document}
\begin{Row}%
\begin{Cell}{2}
test
\end{Cell}
\begin{Cell}{1}
\begin{figure}
test
\end{figure}
\end{Cell}
\end{Row}
\end{document}
now, when I compile this using texstudio on windows (Miktex 2.9) I get the error:

when I compile on Linux, using texlive 2013, I get:

floatin one of theseCellenvironments; just use the relevant image code without the\begin{figure}...\end{figure}– cmhughes Mar 18 '14 at 02:35[H]postition specifier as you are already loadingfloatpackage. – Mar 18 '14 at 02:35! LaTeX Error: Not in outer par mode.which means you can't use figure there (but it wouldn't make sense to use figure there anyway.) – David Carlisle Mar 18 '14 at 02:36