I'm trying to make a header for my title page in my thesis. It contains two small images, between which there is a four-line text. It looks like in the attachment. Images are roughly to take about 0.15 of textwidth each.
I was trying to accomplish this by tables or minipages, or by combining them, but it doesn't give me the expected result. Can you please help?

This is my current code I'm working with.
Code: Select all
\documentclass[a4paper,11pt]{article}
\usepackage{polski}
\usepackage[utf8]{inputenc}
\usepackage{graphicx}
\usepackage{anysize}
\marginsize{3.5cm}{2.5cm}{2.5cm}{2.5cm}
\begin{document}
\begin{figure}
\centering
\begin{minipage}{.1\textwidth}
\includegraphics[width=40pt]{PK_logo.jpg}
\end{minipage}\
POLITECHNIKA KRAKOWSKA im. T. Kosciuszki\\Wydzial Mechaniczny\\Instytut Pojazdow Samochodowych i Silnikow\\Spalinowych
\begin{minipage}{0.1\textwidth}
\includegraphics[width=40pt]{WM_logo.jpg}
\end{minipage}
\end{figure}
\end{document}