This is just my little collaboration. It's not as professional as some examples and the code is far from elegant. So feel free to edit/adapt and improve.
First a more traditional style. Many old books have a title page that look similar to this. I'v used tcolorbox and tikz with calligra font just for fancy.

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % This template has been done collecting multiple entries from: % http://tex.stackexchange.com % % Author: % Graciano Bay % % License: % CC BY-SA 3.0 (https://creativecommons.org/licenses/by-sa/3.0/) % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%% \documentclass[b4paper]{memoir} \usepackage[margin=1.5cm,top=2cm,bottom=2cm]{geometry} \usepackage[usenames,dvipsnames,svgnames,table]{xcolor} \usepackage{calligra} \usepackage{tikz} \usetikzlibrary{matrix,fit,chains,calc,scopes} \usepackage{tcolorbox} \tcbuselibrary{skins} \usepackage{auto-pst-pdf} %To compile psvectorian directly \usepackage{psvectorian} \renewcommand*{\psvectorianDefaultColor}{Green}% \tcbset{ Baystyle/.style={ sharp corners, enhanced, boxrule=6pt, colframe=OliveGreen, height=\textheight, width=\textwidth, borderline={8pt}{-11pt}{}, } } \pagestyle{empty} \begin{document} \centering \begin{tcolorbox}[Baystyle,] {\begin{center} \vspace*{0.14\textheight} \fontsize{45}{45}\scshape Book Title\\ \vspace*{0.018\textheight} \vspace*{0.2\textheight} % Big Logo\\ \vspace*{0.2\textheight} {\fontsize{12}{12}\calligra A original story of\\} \fontsize{28}{28}\scshape Author Name\\ \vspace*{0.1\textheight} \centering \begin{tikzpicture}[ start chain=main going right, ] \node[on chain,align=center,draw=none] (a1){{\fontsize{12}{12}\calligra Illustrations by} \\ {\Large Designer} }; { [start branch=A going below] \node[on chain,align=center,draw=none,scale=0.01](d1){}; \node[on chain,align=center,draw=none,](d2){\Huge Press logo}; %\node[on chain,align=center,draw=none,scale=0.01](d3){}; } \node[on chain,align=center,draw=none] (a2){\psvectorian[]{148}}; { [start branch=B going below] \node[on chain,align=center,draw=none,scale=0.01](s1){}; \node[on chain,align=center,draw=none,](s2){}; %\node[on chain,align=center,draw=none,scale=0.01](s3){}; } \node[on chain,align=center,draw=none] (a3){{\fontsize{12}{12}\calligra Final review by} \\ {\Large Revisor} }; { [start branch=C going below] \node[on chain,align=center,draw=none,scale=0.01](e1){}; \node[on chain,align=center,draw=none,](e2){\Huge Other Logo}; %\node[on chain,align=center,draw=none,scale=0.01](e3){}; } \draw[black] (s2.north) -- (s2.south); \end{tikzpicture} \end{center}} \end{tcolorbox} \end{document}
My second is certainly not classic looking. Here i've used only tikz.

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % This template has been done collecting multiple entries from: % http://tex.stackexchange.com % % Author: % Graciano Bay % % License: % CC BY-SA 3.0 (https://creativecommons.org/licenses/by-sa/3.0/) % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%% \documentclass[b4paper]{memoir} \usepackage[margin=1cm,]{geometry} \usepackage[scaled]{helvet} \usepackage[usenames,dvipsnames,svgnames,table]{xcolor} %\setlength{\parindent}{0pt} \usepackage{tikz} \usetikzlibrary{calc,scopes,positioning,backgrounds} \usepackage{lipsum} \usepackage{microtype} \pagestyle{empty} \begin{document} \begin{tikzpicture}[local bounding box=picture, baseline=(picture.south)] \node [draw=none] (A) at (0,0) {}; \node [draw=none] (B) at (15,5) {}; \node [draw=none] (C) at (5,-5) {}; \foreach \s/\col in {1.5/ProcessBlue, 1/SkyBlue, 0/ProcessBlue}{ \path [draw,\col, line width=40] ($(A.west)-(0,\s cm)$) to ($(C.west)-(0,\s cm)$) to ($(B.west)-(0,\s cm)$); } % \node [draw=none] (A2) at (0,-20) {}; \node [draw=none] (B2) at (22,-8) {}; \node [draw=none] (C2) at (5,-25) {}; \foreach \s/\col in {1.5/ProcessBlue!20!white, 1/SkyBlue!20!white, 0/ProcessBlue!20!white}{ \path [draw,\col, line width=40] ($(A2.west)-(0,\s cm)$) to ($(C2.west)-(0,\s cm)$) to ($(B2.west)-(0,\s cm)$); } % \node [draw=none,text width=\textwidth/1.7] (T1) at (10,0) {\fontsize{50}{50}\MakeUppercase{\textsf{\textbf{A Book Title}}}}; % \node [draw=none,text width=\textwidth/1.7] (T2) at (10,-14) { \fontsize{20}{20}\textsf{\textbf{\textcolor{ProcessBlue}{Subtitle}}}\\ \vspace*{0.02\textheight} \LARGE{\lipsum[1]} }; % \end{tikzpicture} \end{document}