Problem
Unable to get table and text boxes to share the same page.
Minimum Working Example
\documentclass{article}
\usepackage{amsmath, amssymb}
\usepackage[paperheight=11in, paperwidth=17in, margin = 0.25cm]{geometry}
\usepackage{float}
\usepackage{graphicx}
\usepackage[dvipsnames]{xcolor}
\usepackage[absolute,overlay]{textpos}
\definecolor{patriarch}{rgb}{0.5, 0.0, 0.5}
\def\isize{0.80in}
\def\cpath{../graphics/zeros/checkers/}
\begin{document}
%
\def\arraystretch{7.3}
\begin{table}[ht]
\begin{center}
\begin{tabular}{ccccc ccccc ccccc ccc}
%
&&&&&&&&
\includegraphics[ width = \isize ]{\cpath "n08-m02-re"} \
%
&&&&&&&
\includegraphics[ width = \isize ]{\cpath "n08-m02-re"} &&
\includegraphics[ width = \isize ]{\cpath "n08-m02-re"} \
%
&&&&&&
\includegraphics[ width = \isize ]{\cpath "n08-m02-re"} &&
\includegraphics[ width = \isize ]{\cpath "n08-m02-re"} &&
\includegraphics[ width = \isize ]{\cpath "n08-m02-re"} \
%
&&&&&
\includegraphics[ width = \isize ]{\cpath "n08-m02-re"} &&
\includegraphics[ width = \isize ]{\cpath "n08-m02-re"} &&
\includegraphics[ width = \isize ]{\cpath "n08-m02-re"} &&
\includegraphics[ width = \isize ]{\cpath "n08-m02-re"} \
%
&&&&
\includegraphics[ width = \isize ]{\cpath "n08-m02-re"} &&
\includegraphics[ width = \isize ]{\cpath "n08-m02-re"} &&
\includegraphics[ width = \isize ]{\cpath "n08-m02-re"} &&
\includegraphics[ width = \isize ]{\cpath "n08-m02-re"} &&
\includegraphics[ width = \isize ]{\cpath "n08-m02-re"} \
%
&&&
\includegraphics[ width = \isize ]{\cpath "n08-m02-re"} &&
\includegraphics[ width = \isize ]{\cpath "n08-m02-re"} &&
\includegraphics[ width = \isize ]{\cpath "n08-m02-re"} &&
\includegraphics[ width = \isize ]{\cpath "n08-m02-re"} &&
\includegraphics[ width = \isize ]{\cpath "n08-m02-re"} &&
\includegraphics[ width = \isize ]{\cpath "n08-m02-re"} \
%
&&
\includegraphics[ width = \isize ]{\cpath "n08-m02-re"} &&
\includegraphics[ width = \isize ]{\cpath "n08-m02-re"} &&
\includegraphics[ width = \isize ]{\cpath "n08-m02-re"} &&
\includegraphics[ width = \isize ]{\cpath "n08-m02-re"} &&
\includegraphics[ width = \isize ]{\cpath "n08-m02-re"} &&
\includegraphics[ width = \isize ]{\cpath "n08-m02-re"} &&
\includegraphics[ width = \isize ]{\cpath "n08-m02-re"} \
%
&
\includegraphics[ width = \isize ]{\cpath "n08-m02-re"} &&
\includegraphics[ width = \isize ]{\cpath "n08-m02-re"} &&
\includegraphics[ width = \isize ]{\cpath "n08-m02-re"} &&
\includegraphics[ width = \isize ]{\cpath "n08-m02-re"} &&
\includegraphics[ width = \isize ]{\cpath "n08-m02-re"} &&
\includegraphics[ width = \isize ]{\cpath "n08-m02-re"} &&
\includegraphics[ width = \isize ]{\cpath "n08-m02-re"} &&
\includegraphics[ width = \isize ]{\cpath "n08-m02-re"} \
%
\includegraphics[ width = \isize ]{\cpath "n08-m02-re"} &&
\includegraphics[ width = \isize ]{\cpath "n08-m02-re"} &&
\includegraphics[ width = \isize ]{\cpath "n08-m02-re"} &&
\includegraphics[ width = \isize ]{\cpath "n08-m02-re"} &&
\includegraphics[ width = \isize ]{\cpath "n08-m02-re"} &&
\includegraphics[ width = \isize ]{\cpath "n08-m02-re"} &&
\includegraphics[ width = \isize ]{\cpath "n08-m02-re"} &&
\includegraphics[ width = \isize ]{\cpath "n08-m02-re"} &&
\includegraphics[ width = \isize ]{\cpath "n08-m02-re"} \
%
\end{tabular}
\end{center}
\end{table}
%
\begin{textblock}{5in}(0.0in, 0.35in) % {block width} (x, y coords)
\begin{center}
\huge{\color{patriarch}{\bf{My Table}}}
\end{center}
\end{textblock}
%
\begin{textblock}{5in}(11.7in, 0.5in)
\Large{$a+b=c$}
\end{textblock}
%
\end{document}
Questions consulted
Force table* to stay in the current page
Get a table and figure on the same page with captions & labels
Force figure placement in text
How to force a figure and a table to stay on the same page in LaTeX?


tabularin atableenvironment? – Jasper Habicht Mar 28 '21 at 19:52\Large{$a+b=c$}shoule be\Large $a+b=c$(same for\Huge) – David Carlisle Mar 28 '21 at 20:43