答案1
你怎么可能在这里发布很好的答案,却连 MWE 都没有?(抱歉,我没心情从你的屏幕截图中输入内容,所以我只是添加了一些随机文本。)
\documentclass{article}
\usepackage{tikz}
\usetikzlibrary{positioning}
\definecolor{innerblue}{RGB}{134,159,202}
\definecolor{middleblue}{RGB}{213,222,236}
\definecolor{outerblue}{RGB}{173,190,220}
\definecolor{bggray}{RGB}{215,215,215}
\tikzset{pics/.cd,
triple circle/.style={code={
\fill[outerblue] (4,0) circle (4);
\fill[middleblue] (3.1,0) circle (3.1);
\fill[innerblue] (2.2,0) circle (2.2);
}}}
\begin{document}
\thispagestyle{empty}
\begin{tikzpicture}[overlay,remember picture]
\fill[bggray] (current page.north west) rectangle (current page.south east);
\draw[blue!60] ([xshift=-1cm]current page.north)
-- ++ (-60:9) pic[rotate=90-60,scale=0.7] {triple circle};
\draw[blue!60] (current page.north west)
-- ++ (-40:20) pic[rotate=90-40,scale=0.3] {triple circle};
\draw[blue!60] ([yshift=-11cm]current page.north east)
-- ++ (-110:15) pic[rotate=90-110,scale=0.8] {triple circle};
\node[above right=8cm and 2cm of current page.south west,font=\Huge\bfseries,blue!90] (H)
{Hamanostoros};
\node[below=2mm of H.south west,anchor=north west,font=\sffamily]{Master of
Philosophy};
\end{tikzpicture}
\clearpage
\end{document}