I am trying to make a template for my master's homework. This master is organised by a university and a research center. So I thought of having on top of page(left and right) their logos. Bellow those logos I want to place their names.
I didn't have any trouble creating the logos. For their names I thought of using a table with left and right alignment so as to write their names, but despite the fact that I am teling it to place it [H] exactly here, it goes to the next page.
I also tried with multicols but I don't seem to be able to manipulate it either.
My code is
\documentclass[a4paper,11pt]{article}
\usepackage[greek,english]{babel}
\setcounter{secnumdepth}{3}
\usepackage[iso-8859-7]{inputenc}
\usepackage{kerkis}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{amsfonts}
\usepackage{amsthm}
\usepackage[margin=2.8cm]{geometry}
\usepackage{subfigure}
\usepackage{multicol}
\newtheorem{exe}{¢óêçóç}
\newcolumntype{C}[1]{>{\centering\let\newline\\\arraybackslash\hspace{0pt}}m{#1}}
\begin{document}
\begin{figure}%
\subfigure{\includegraphics[width=0.1\columnwidth]{ntua-logo}}\hfill
\subfigure{\includegraphics[width=0.1\columnwidth]{demokritos-logo}}
\end{figure}
\begin{table}[H]
\begin{center}
\begin{tabular}{lC{1cm}r}
National Technical University of Athens & ${}$ &National Research Center of Physical Sciences\\
School of Applied Mathematics and Physical Sciences & ${}$ & Demokritos\\
\end{tabular}
\end{center}
\end{table}
%\begin{multicols}{2}
%National Technical University of Athens \columnbreak National Research Center of Physical Sciences\\
%School of Applied Mathematics and Physical Sciences \columnbreak Demokritos
%\end{multicols}
\begin{center}\textbf{Master Title}\end{center}
\begin{exe}
$1+1=2$
\end{exe}
\end{document}
My output is

Any ideas on that?
pictureandputand is working fine! Thank you for that! My problem is though, institute's names which I am trying to place just bellow logos. Any suggestion on that will be more than welcomed! – Thanos Oct 21 '12 at 10:12\put{the name of the institute}in the same picture environment at a coordinate that puts the text at the right place relative to the image – David Carlisle Oct 21 '12 at 10:15putandpictureto add text at the exact position I want...I'll try it! – Thanos Oct 21 '12 at 10:15