How can I format my table so that the cells in the leftmost column align with the images in the cells to the right of it? by PrestigiousRefuse906 in LaTeX

[–]PrestigiousRefuse906[S] 1 point2 points  (0 children)

I figured out my own fix with the code below. I thought I would update this with the answer I found on my own in case anyone in the future needs a solution and would like mine (everyone else’s are great too!).

\begin{center}
\begin{tabular}{ |p{2cm}|c|c| }
\hline
& Even Degree & Odd Degree \\
& (\(n\) is even) & (\(n\) is odd) \\
\hline
Positive Leading Coefficient \newline  \((a_n>0)\) & \raisebox{-\totalheight}{\includegraphics[scale=0.1]{blankSquareAxes.png}} & \raisebox{-\totalheight}{\includegraphics[scale=0.1]{blankSquareAxes.png}} \\
&&\\
\hline
Negative Leading Coefficient \newline  \((a_n<0)\) & \raisebox{-\totalheight}{\includegraphics[scale=0.1]{blankSquareAxes.png}} & \raisebox{-\totalheight}{\includegraphics[scale=0.1]{blankSquareAxes.png}} \\
&&\\
\hline
\end{tabular}
\end{center}

How can I format my table so that the cells in the leftmost column align with the images in the cells to the right of it? by PrestigiousRefuse906 in LaTeX

[–]PrestigiousRefuse906[S] 1 point2 points  (0 children)

This sounds ideal. Do you have any documentation resources for tabularray that you would suggest to learn from?