eu estava lendo esse postComo adicionar linha vertical e figuras na página de título?, e preciso fazer como esta imagem (3 imagens: uma no lado esquerdo da linha vertical, uma no lado direito e uma na parte inferior do lado esquerdo; centering
o texto; lengthen
a linha vertical em toda a página).
\documentclass{article}
\usepackage{graphicx,xcolor}
\usepackage[pass]{geometry}
\begin{document}
\newgeometry{left=4cm}
\begin{titlepage}
\hspace*{-2cm}%\includegraphics[width=5cm]{example-image-a}
\vfill
\begin{tabular}[t]{l@{\hspace{1cm}}l}
\textcolor{black!70!black}{\rule[-0.9\textheight]{1pt}{0.9\textheight}} % Vertical line
&
\begin{tabular}[t]{p{0.85\textwidth}}
\\
{\Huge\bfseries My title} \\[3cm]
{\Large Some more text}\\[6cm]
{\fbox{\begin{minipage}{15em}
The quick brown fox jumps right over the lazy dog. the quick brown fox
jumps right over the lazy dog. the quick brown fox jumps right over the lazy
dog. the quick brown fox jumps right over the lazy dog. the quick brown fox
jumps right over the lazy dog. the quick brown fox jumps right over the lazy
dog. the quick brown fox jumps right over the lazy dog. the quick brown fox
jumps right over the lazy dog.
\end{minipage}}}
\end{tabular}
\end{tabular}
\end{titlepage}
\restoregeometry
\end{document}