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
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
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
how to embed a coverpage before the titlepage
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
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
- 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?
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10