Wie platziere ich die Abbildung ausgerichtet am Text?
\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:}
Antwort1
Ich bin nicht sicher, ob ich Sie richtig verstanden habe, da Sie nicht so viele Informationen gegeben haben. Aber vielleicht haben Sie nach den [b]
Parametern der tabular
Umgebung gesucht.
documentclass
So wie es jetzt ist, ist es zu breit für die Seite, aber da ich Ihre Randeinstellungen nicht kenne , lasse ich es einfach so wie es ist.
% 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}
Antwort2
Sie können das Paket wrapfig wie folgt nutzen:
\begin{wrapfigure}{r}{0.5\textwidth}
\begin{center}
\includegraphics[width=0.48\textwidth]{fig}
\end{center}
\caption{}
\end{wrapfigure}