如何在 Latex 中並排顯示文字和圖像

如何在 Latex 中並排顯示文字和圖像

您好,我需要使用 minipage 來顯示 2 個圖像之間的文本,但它顯示不正確!

你們能告訴我需要添加什麼修改來對齊我的所有組件嗎?

\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}

相關內容