I've managed to design the titlepage using only the textpos package. However, since all the text and images in the titlepage are inside textblocks, LaTeX seems to treat it as empty and what should be on the second page is placed on top of the titlepage. Here's a minimal example of what I mean
Code: Select all
\documentclass[a4paper,12pt,oneside,titlepage]{article}
\usepackage[absolute,showboxes]{textpos}
\setlength{\TPHorizModule}{1mm}
\setlength{\TPVertModule}{1mm}
\begin{document}
\begin{titlepage}
\begin{textblock}{52}(79,10)
this should be alone in the titlepage
\end{textblock}
\end{titlepage}
this should be the second page but is printed on top of the titlepage instead
\end{document}
I tried a \newpage after the end of titlepage but it doesn't work. Any help is appreciated.