to enhance the looks of my front page I would like to add wavy forms. I tried using Tikz but I could not make it work.
I am looking to make a design that looks like this:
The code I use to make my front page is as following:
\documentclass[letterpaper]{article}
\usepackage{amsmath}
\usepackage{tikz}
\usepackage{epigraph}
\usepackage{lipsum}
\renewcommand\epigraphflush{flushright}
\renewcommand\epigraphsize{\normalsize}
\setlength\epigraphwidth{0.7\textwidth}
\DeclareFixedFont{\titlefont}{T1}{ppl}{b}{it}{0.5in}
\makeatletter
\def\printauthor{%
{\large \@author}}
\makeatother
\author{%
Author 1 name \\
Department name \\
\texttt{[email protected]}\vspace{20pt} \\
Author 2 name \\
Department name \\
\texttt{[email protected]}
}
\begin{document}
\begin{titlepage}
\noindent
\titlefont \center PROFIBUS \\of\\ PROFINET?\par
\Large{Argumenten voor de implementatie van communicatie protocollen}%
\null\vfill
\vspace*{1cm}
\noindent
\hfill
\begin{minipage}{0.35\linewidth}
\begin{flushright}
\printauthor
\end{flushright}
\end{minipage}
%
\begin{minipage}{0.02\linewidth}
\rule{1pt}{125pt}
\end{minipage}
\end{titlepage}
\end{document}
Can anyone help me realize the image I have in my head?
Thanks in advance
\center
but\centering
or put it inside acenter
-environment (\begin{center} ... \end{center}
).