Como fazer (figura e texto)

Como fazer (figura e texto)

Como coloco a figura alinhada ao texto?

\begin{tabular}{cc} 
\includegraphics[width=0.25\linewidth]{IFSPMTO} & \begin{tabular}{cc}\hline \textbf{Instituto Federal de Educação Ciência e Tecnologia}\\ 
\textbf{ \bf 1$^{\underline a}$ Avaliação de Estatística Básica - Licenciatura em Química}\\ 
\textbf{Professor: Rodrigo Dantas de Lucas - Digão} \\ 
\hline 
\end{tabular}% 
\end{tabular} 
\textbf{Aluno:} \hspace{7cm} \textbf{RA:}

insira a descrição da imagem aqui

Responder1

Não tenho certeza se acertei, pois você não forneceu tantas informações. Mas talvez você esteja procurando o [b]parâmetro do tabularambiente.

Como está agora, é muito largo para a página, mas como não conheço suas documentclassconfigurações e margens, apenas deixo como está.

% arara: pdflatex    

\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage[demo]{graphicx}
\usepackage{booktabs}

\begin{document}
\noindent
\begin{tabular}{@{}cc@{}} 
    \includegraphics[width=0.25\linewidth]{IFSPMTO} & 
    \begin{tabular}[b]{@{}c@{}}\toprule \textbf{Instituto Federal de Educação Ciência e Tecnologia}\\ 
        \textbf{ \bf 1$^{\underline a}$ Avaliação de Estatística Básica - Licenciatura em Química}\\ 
        \textbf{Professor: Rodrigo Dantas de Lucas - Digão} \\ 
        \bottomrule 
    \end{tabular} 
\end{tabular} 
\textbf{Aluno:} \hspace{7cm} \textbf{RA:}
\end{document}

insira a descrição da imagem aqui

Responder2

Você pode usar o pacote wrapfig assim:

\begin{wrapfigure}{r}{0.5\textwidth}
\begin{center}
\includegraphics[width=0.48\textwidth]{fig}
\end{center}
\caption{}
\end{wrapfigure}

informação relacionada