GeneralCant get image to appear on title page

LaTeX specific issues not fitting into one of the other forums of this category.
Post Reply
rwinston
Posts: 2
Joined: Thu Jul 03, 2008 3:06 pm

Cant get image to appear on title page

Post by rwinston »

Hi all

I a having a really annoying issue: I am using the book class and trying to insert an image on the title page. When I insert the image, it doesnt appear on the title page, but appears on the first page on its own, followed by an empty page, and then the title page (with no image). The image is not especially large. Does anyone know what might be going on here?


\newcommand{\bigsize}{\fontsize{35pt}{20pt}\selectfont}

Code: Select all

\begin{document}
\begin{titlepage}
\centering
\includegraphics[width=.1\textwidth]{images/System}
\title{{\bigsize Test Book Document}}
\author{Rory  \\
{\small\em \copyright \  Draft date \today }}
\end{titlepage}
Cheers
Rory
\maketitle

Recommended reading 2024:

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

Learn LaTeX easily with newest books:

The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis

The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more

LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis

User avatar
Stefan Kottwitz
Site Admin
Posts: 10360
Joined: Mon Mar 10, 2008 9:44 pm

Cant get image to appear on title page

Post by Stefan Kottwitz »

Hi Rory,

welcome to the forum!

Have a look at this modified example, where I didn't use \maketitle:

Code: Select all

\documentclass[a4paper,10pt]{book}
\usepackage{graphicx}
\usepackage{fix-cm}
\newcommand{\bigsize}{\fontsize{35pt}{20pt}\selectfont}
\begin{document}
\begin{titlepage}
\centering
\includegraphics[width=.1\textwidth]{logo}

{\bigsize Test Book Document}

Rory  \\
{\small\em \copyright \  Draft date \today }
\end{titlepage}
\end{document}
Btw. I used the fix-cm package because of the font size.

Stefan
LaTeX.org admin
rwinston
Posts: 2
Joined: Thu Jul 03, 2008 3:06 pm

Cant get image to appear on title page

Post by rwinston »

Thanks a lot Stefan! I appreciate the help! All looks good now!

Cheers
Rory
Stefan_K wrote:Hi Rory,

welcome to the forum!

Have a look at this modified example, where I didn't use \maketitle:

Code: Select all

\documentclass[a4paper,10pt]{book}
\usepackage{graphicx}
\usepackage{fix-cm}
\newcommand{\bigsize}{\fontsize{35pt}{20pt}\selectfont}
\begin{document}
\begin{titlepage}
\centering
\includegraphics[width=.1\textwidth]{logo}

{\bigsize Test Book Document}

Rory  \\
{\small\em \copyright \  Draft date \today }
\end{titlepage}
\end{document}
Btw. I used the fix-cm package because of the font size.

Stefan
Post Reply