Graphics, Figures & TablesFigures in Title page

Information and discussion about graphics, figures & tables in LaTeX documents.
Post Reply
sladicg
Posts: 7
Joined: Mon Dec 21, 2009 2:42 pm

Figures in Title page

Post by sladicg »

Hi!

I want to place something like this on top of my title page:

figure1 some_tex figure2

The figure1 is aligned left
The some_text is aligned center and contains 3 lines
The figure2 is aligned right

Can someone help me with this?

Thanks 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

localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

Figures in Title page

Post by localghost »

A short example for a complete title page.

Code: Select all

\documentclass[11pt,a4paper,english]{report}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{babel}
\usepackage[includeheadfoot,margin=2cm]{geometry}
\usepackage{lmodern}
\usepackage{blindtext}

\begin{document}
  \begin{titlepage}
    \rule{4cm}{3cm}\hfill
    \begin{minipage}[b][3cm][t]{6cm}
      \centering
      Line 1

      Line 2

      Line 3
    \end{minipage}
    \hfill\rule{4cm}{3cm}\\[1cm]

    \centering
    \large
    Institution Name\\ in two lines\\
    \vfill
    Thesis about\\[0.5\baselineskip]
    \huge
    The Title\\ in two lines\\
    \vfill
    \large
    by \\ Author Name\\[0.5\baselineskip]
    Decmber 2009  \end{titlepage}
\end{document}
Consider this as a very basic structure and replace the \rule commands with your graphics.


Best regards and welcome to the board
Thorsten
Post Reply