図をテキストに合わせて配置するにはどうすればいいでしょうか?
\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:}
答え1
あまり多くの情報を提供していないので、私が正しく理解できたかどうかはわかりません。しかし、おそらく環境[b]
のパラメータを検索していたのでしょうtabular
。
現状では、ページに対して幅が広すぎますが、余白の設定が分からないためdocumentclass
、そのままにしておきます。
% 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}
答え2
wrapfig パッケージは次のように使用できます。
\begin{wrapfigure}{r}{0.5\textwidth}
\begin{center}
\includegraphics[width=0.48\textwidth]{fig}
\end{center}
\caption{}
\end{wrapfigure}