Page Layouthow to embed a coverpage before the titlepage

Information and discussion about page layout specific issues (e.g. header and footer lines, page formats, page numbers).
Post Reply
dennis1982
Posts: 7
Joined: Thu Mar 18, 2010 11:20 pm

how to embed a coverpage before the titlepage

Post by dennis1982 »

My thesis must be accompanied by a coverpage besides the titlepage. I know that I have the use commands \ begin (title page) and \ end (title) to create a title page. But how can I embed a coverpage before the titlepage in a clean Latex way? I want to add a fullpage image to the coverpage. The used documentclass is report.
Last edited by dennis1982 on Fri May 28, 2010 11:36 am, edited 1 time in total.

Recommended reading 2024:

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

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

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

how to embed a coverpage before the titlepage

Post by localghost »

I didn't test it, but it should be possible to include a title in PDF format before the actual title page by means of the pdfpages package.

Code: Select all

\documentclass[11pt,a4paper,english]{report}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{babel}
\usepackage{pdfpages}
\usepackage{blindtext}

\begin{document}
  \includepdf{<filename>}   % Single page PDF document as title
  \begin{titlepage}
  % Title page content
  \end{titlepage}

  \blinddocument
\end{document}
Note that this needs compilation with pdflatex.


Thorsten
dennis1982
Posts: 7
Joined: Thu Mar 18, 2010 11:20 pm

Re: how to embed a coverpage before the titlepage

Post by dennis1982 »

I will give it a try when I'm back at home. What is the function of \usepackage{blindtext} in the example?
User avatar
localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

how to embed a coverpage before the titlepage

Post by localghost »

dennis1982 wrote:[...] What is the function of \usepackage{blindtext} in the example?
Oh, I thought this would be self-explanatory (at the latest when looking at the manual). The blindtext package is for producing longer passages of text or even whole documents without great effort.
Post Reply