I'm trying to create a title page in LaTeX. Here is my code:
\begin{titlepage}
\begin{center}
\vspace*{1cm}
\large
\includegraphics[width=0.10\textwidth]{FIGURE1.jpg}
\textbf{AUTHOR'S NAME}\hfill
\vfill
\textbf{TITLE}\\
\vfill
\centering
ADRESS\\
DATE\\
\end{center}
\end{titlepage}
The problem is this way FIGURE1.jpg is a member of the same line as AUTHOR'S NAME is placed just before it and changes the alignment as push AUTHOR'S NAME to the right.
I don't want that. I want FIGURE1.jpg to be placed at the very left in this line and AUTHOR'S NAME to be centered.
How can I do that?
