我正在閱讀這篇文章如何在扉頁上新增垂直線和圖形?,我需要像這張圖片一樣(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}