So I have this table with an image and a table
\cleardoublepage
\thispagestyle{empty}
\bgroup
\noindent\begin{tabularx}{\textwidth}{@{}c@{}X}
\includegraphics[width=1.02in]{img/uaqlogo.eps} &
\centering
\begin{tabular}[b]{@{}l@{}}
\LARGE Universidad Autónoma de Querétaro \\[0.15in]
\Large Facultad de Ingeniería \\[0.15in]
\large Maestría en Ciencias en Inteligencia Artificial
\end{tabular}
\end{tabularx}
That produces this:
Is there a way to align it horizontally? I dont know why they are using b, whenever I use h or t it moves the text even lower.



adjustboxpackage:\usepackage[export]{adjustbox}in the preamble,\includegraphics[valign=t]{...}in the document. – Skillmon Jun 11 '19 at 14:49