[Tex/LaTex] How to include an array in cell of a tabular environment

arraystables

For an equation that has an array we use \\ for new row as well, and \newline didn't work, and this is understood by the tabular environment as a new row! Would appreciate all the help!

Best Answer

For smaller (single column) inclusions of an array/tabular-style object in your table, you may also consider using the the makecell package in the following way:

\documentclass{minimal}
\usepackage{makecell}
\begin{document}
  \begin{tabular}{ccc}
    A & B & C \\
    D & \makecell[c]{$E$ \\ F} & G \\
    H & I & J
  \end{tabular}
\end{document}
Related Question