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:}
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 tabular
ambiente.
Como está agora, é muito largo para a página, mas como não conheço suas documentclass
configuraçõ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}
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}