I'm having some trouble with getting the format right on my report, which is using Tikz to put a frame around the title page.
I'd like to "remove" the blank space denoted in the following image (the red arrow!), and the one between the date and the frame, as well:
Here's the code:
\documentclass{report}
\usepackage{tikz}
\usetikzlibrary{calc}
\usepackage[portuguese]{babel}
\usepackage[utf8]{inputenc}
\newcommand\HRule{\rule{\textwidth}{1pt}}
\begin{document}
\begin{titlepage}
\begin{tikzpicture}[remember picture, overlay]
\draw[line width = 2pt] ($(current page.north west) + (1in,-1in)$) rectangle ($(current page.south east) + (-1in,1in)$);
\end{tikzpicture}
\begin{center}
\textsc{Agrupamento de Escolas Domingos Sequeira}\\[0.2cm]
\textbf{\LARGE Escola Secundária Domingos Sequeira}\\[4.5cm]
% Title
\textbf{\huge Relatório}\\[1.4cm]
\begin{flushright}
\textbf{ Biologia e Geologia 11º ano\\
Prof. Paulo Renato Parreira}
\end{flushright}\\[4cm]
\textbf{\large José Henriques, nº11376\\
Rodrigo António Catarino Ferreira, º24\\
Turma D, 11º ano}
\vfill
% Bottom of the page
{\bf \large \today}
\end{center}
\end{titlepage}



\centeringinstead of\begin{center}(remove\end{center}, too). – egreg Feb 24 '18 at 00:15