Estaba leyendo esta publicación¿Cómo agregar una línea vertical y figuras en la página de título?, y necesito hacer como esta imagen (3 imágenes: una en el lado izquierdo de la línea vertical, una en el lado derecho y otra en la parte inferior del lado izquierdo; centering
el texto; lengthen
la línea vertical en toda la 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}