您好,我需要使用 minipage 在两张图片之间显示文字,但是显示不正确!!
你们能告诉我需要添加什么修改才能对齐我的所有组件吗?
\begin{document}
\begin{titlepage}
\begin{sffamily}
\begin{center}
\begin{figure}[h!]
\begin{minipage}[t]{3cm}
\centering \includegraphics[width=3cm,height=3cm]{univ.png}
\end{minipage}\hfill
\begin{minipage}[t]{7cm}
\center{Université Hassan II }
\center{Faculté des sciences et techniques }
\center{Mohammedia}\\
\end{minipage}\hfill
\begin{minipage}[t]{2cm}
\includegraphics[width=3cm,height=3cm]{fstm.jpg}
\end{minipage}
\end{figure}
答案1
你可以将这些元素放在一条常规的行中,并使用valign=c
(来自adjustbox
):
\documentclass{report}
\usepackage[export]{adjustbox}
\usepackage{inputenc}
\begin{document}
\noindent
\includegraphics[width=3cm,valign=c]{example-image-a}\hfill
{\sffamily\begin{tabular}{c}
Université Hassan II \\ \\
Faculté des sciences et techniques \\ \\
Mohammedia
\end{tabular}}\hfill
\includegraphics[width=3cm,valign=c]{example-image-b}%
\bigskip
More content here\ldots
\end{document}