如何將圖形與文字對齊?
\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
您可以像這樣使用套件wrappig:
\begin{wrapfigure}{r}{0.5\textwidth}
\begin{center}
\includegraphics[width=0.48\textwidth]{fig}
\end{center}
\caption{}
\end{wrapfigure}