Я читал этот постКак добавить вертикальную линию и цифры на титульный лист?, и мне нужно сделать как на этом изображении (3 изображения: одно слева от вертикальной линии, одно справа и одно внизу слева; centering
текст; lengthen
вертикальная линия по всей странице).
\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}