I am new to Latex and I start with a default template. But I would like to design a cover like this, but I could not find a way of adding a table in the cover page. (Not in the content). May someone told me how to do it? or any documentation I can refer to ?
The expecting cover page is shown as the screenshot below
Notes: Currently what i am starting to use the blank project in overleaf.
\documentclass{article}
\usepackage[utf8]{inputenc}
\title{My Proj Name}
\author{My Name}
\date{March 2021}
\begin{document}
\maketitle
\newpage
\section{Introduction}
\end{document}

title,authoranddatein the cover page. It should be the simplest one. I am wondering how can I begin to design. eg. add a table below it. – Leo Li Mar 07 '21 at 17:03\maketitleyou could use thetitlepageenvironment. See also: https://tex.stackexchange.com/a/210280/134144 – leandriis Mar 07 '21 at 17:03articlewill let you put a table after the\maketitlecommand. If you're aiming for a longer work, then you might want thebookclass, and thetitlepageenvironment that leandriis pointed out could be useful. – Teepeemm Mar 07 '21 at 18:40