在封面上添加垂直线和图形

在封面上添加垂直线和图形

我正在读这篇文章如何在标题页上添加垂直线和数字?,我需要像这样处理图像(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}

在此处输入图片描述

相关内容