我是 Latex 的新手,我不知道如何在两张图片之间添加文字,我试了一下,但没有成功
我希望文本位于 A 和 B 图像之间
这是我的尝试:
\begin{table}[h]
\centering
\begin{tabular}{m{10cm} m{1cm} m{3cm}}
\vspace{0.2cm}
\includegraphics[width=45mm]{images/style/jakai.PNG} & & \vspace{1.52mm}
\centering \large{Universite de Kairouan ´Institut Superieur ´ d’informatique et de Gestion }
\includegraphics[width=45mm]{images/style/isiglogo.PNG} \\
\end{tabular}
\end{table}
答案1
您希望文本部分居中,尽管两幅图像的宽度不同。下图中的效果可能看起来不对,但您的例子中右侧图像没有边框,因此不会出现这种“不平衡效果”。
\documentclass{article}
\usepackage{graphicx}
\begin{document}
\noindent
\makebox[0pt][l]{%
\begin{tabular}{@{}c@{}}
\includegraphics[width=2.5cm,height=2cm]{example-image}
\end{tabular}%
}\hfill
\textbf{\begin{tabular}{@{}c@{}}
Université de Karouan \\
Institut Supérieur \\
d'Informatique et de \\
Gestion
\end{tabular}%
}\hfill
\makebox[0pt][r]{%
\begin{tabular}{@{}c@{}}
\includegraphics[width=3cm,height=2cm]{example-image}
\end{tabular}%
}
\end{document}
对于我添加的图片,\usepackage{showframe}
可以看到与页面框架相关的线条。
答案2
\documentclass{article}
\usepackage[demo]{graphicx}
\usepackage[export]{adjustbox}
\begin{document}
\noindent
\includegraphics[width=0.3\linewidth,valign=c]{images/style/jakai.PNG}
\hfill
\begin{minipage}{0.3\textwidth}
\centering Universite de Kairouan
Institut Superieur d’informatique et de Gestion
\end{minipage}\hfill
\includegraphics[width=0.3\linewidth,valign=c]{images/style/isiglogo.PNG}
\end{document}