Page Layout ⇒ how to embed a coverpage before the titlepage
-
- Posts: 7
- Joined: Thu Mar 18, 2010 11:20 pm
how to embed a coverpage before the titlepage
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.
NEW: TikZ book now 40% off at Amazon.com for a short time.
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
how to embed a coverpage before the titlepage
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.
Note that this needs compilation with pdflatex.
Thorsten
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}
Thorsten
How to make a "Minimal Example"
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
-
- Posts: 7
- Joined: Thu Mar 18, 2010 11:20 pm
Re: how to embed a coverpage before the titlepage
I will give it a try when I'm back at home. What is the function of \usepackage{blindtext} in the example?
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
how to embed a coverpage before the titlepage
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.dennis1982 wrote:[...] What is the function of \usepackage{blindtext} in the example?
How to make a "Minimal Example"
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10