GeneralFloating figures in titlepage env

LaTeX specific issues not fitting into one of the other forums of this category.
Post Reply
betyaros
Posts: 9
Joined: Thu May 01, 2008 10:02 pm

Floating figures in titlepage env

Post by betyaros »

Hi all!

I need some help. I'm writing my thesis and the title page must to be in form:

Code: Select all

*                                          *
                            University
figure                     Faculty
                            Department


              title
             author
          consultant



              date
*                                           *
Where page corners are marked with stars. My code is there:

Code: Select all

\begin{titlepage}
  \center
  \resizebox{5cm}{!}{\includegraphics{images/figure.eps}}\hfill  
  {\large University \\ Faculty \\ Department}
  \vfill
  {\LARGE \bf The titel of my thesis} \\[20pt]
  {\Large It's me} \vfill {\bf Consultant}:\\ My consultant \vfill
  {Here, 2008}
\end{titlepage}
I don't know how to put the figure and the three-lines-long text next to each other.

Thank you in advance

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p

Stefan Kottwitz
Site Admin
Posts: 10335
Joined: Mon Mar 10, 2008 9:44 pm

Floating figures in titlepage env

Post by Stefan Kottwitz »

Hi betyaros,

welcome to the LaTeX Community board!
You could put two minipages next to each other, or parboxes. For example with \parbox:

Code: Select all

\begin{titlepage}
\centering
\parbox{5cm}{\includegraphics[width=5cm]{images/figure.eps}}\hfill
\parbox{4cm}{\large University \\ Faculty \\ Department}
...
Btw: don't use \bf, that's old, use \bfseries or \textbf{...}.

Stefan
LaTeX.org admin
betyaros
Posts: 9
Joined: Thu May 01, 2008 10:02 pm

Re: Floating figures in titlepage env

Post by betyaros »

Thank you, it's working now :) I didn't believe that it will be that easy...
User avatar
Stefan Kottwitz
Site Admin
Posts: 10335
Joined: Mon Mar 10, 2008 9:44 pm

Re: Floating figures in titlepage env

Post by Stefan Kottwitz »

Good to hear!
By the way I will move that topic from LaTeX/ Packages & Document Classes to LaTeX/General, because it's not depending on any package or class.

Stefan
LaTeX.org admin
Post Reply