I am creating a title page and I would like the title page to consist of a picture left justifed and the title on the right hand side opposite the picture. It works fine with this code:
Code: Select all
\begin{titlepage}
\vspace*{\stretch{1}}
\begin{tabular}[t]{m{0.50\textwidth}m{0.50\textwidth}}
\toprule
\includegraphics[scale=0.15]{ewbunb.png}& {\Large JF Interview Exchange Program} \\
\bottomrule
\end{tabular}
\vspace*{\stretch{2}}
\begin{center}
\today
\end{center}
\end{titlepage}
Hello:
I am creating a title page and I would like the title page to consist of a picture left justifed and the title on the right hand side opposite the picture. It works fine with this code:
Code: Select all
\begin{titlepage}
\vspace*{\stretch{1}}
\begin{tabular}[t]{m{0.50\textwidth}m{0.50\textwidth}}
\toprule
\multirow{2}{*}{\includegraphics[scale=0.15]{ewbunb.png}} & {\Large JF Interview Exchange Program} \\
& 2007 Pilot Project Proposal \\
\bottomrule
\end{tabular}
\vspace*{\stretch{2}}
\begin{center}
\today
\end{center}
\end{titlepage}