3. Develop a LaTeX script to create a simple title page of the VTU project Report [Use suitable Logos and text formatting].
\documentclass[12pt, a4paper]{report} % Document class with font size 12pt and paper size A4
\usepackage{graphicx} % Package to include images
\usepackage{geometry} % Package to customize page layout
\geometry{a4paper, total={170mm, 257mm}, left=20mm, right=20mm, top=30mm, bottom=30mm} % Customizing page margins
\thispagestyle{empty} % Suppressing page numbers for the title page
\begin{document}
\begin{titlepage} % Starting the title page environment
\begin{center} % Centering content
% University Details
\textbf{{\large VISVESVARAYA TECHNOLOGICAL UNIVERSITY}}\\
{\normalsize Jnana Sangama, Belgaum-590018}\\
\vspace{0.3in}
\includegraphics[scale=0.2]{vtu-logo.png}\\
\vspace{0.3in}
% Title and Project Details
\textbf{A PROJECT REPORT} \\
ON \\
\vspace{0.2in}
\textbf{{\large "Create Report Format Using LaTeX"}}\\
\vspace{0.1in}
{\small Submitted in partial fulfillment of the requirements for the Fifth Semester degree of
Bachelor of Engineering in Computer Science Engineering of Visvesvaraya Technological
University, Belagavi}\\
\vspace{0.1in}
\textbf{BACHELOR OF ENGINEERING\\IN\\COMPUTER SCIENCE AND ENGINEERING}\\
\vspace{0.2in}
% Student Details
Submitted by\\
\vspace{0.08in}
\begin{tabular}{ll}
\textbf{1ME21CS017} & \textbf{Braham Kumar Sah}\\
\textbf{1ME21AI015} & \textbf{Shoaib Akhtar}\\
\textbf{1ME21CS005} & \textbf{Aman Kumar}\\
\textbf{1ME21CS015} & \textbf{Bikash Kumar Singh}\\
\end{tabular}
\vspace{0.2in}
% Guide Details
\textbf{Under the Guidance of}\\
Mrs. Mala\\
Asst. Professor Department of CSE\\
\vspace{0.2in}
% College Details
\includegraphics[scale=0.4]{msec.jpg}\\
\vspace{0.01in}
{\small DEPARTMENT OF COMPUTER SCIENCE AND ENGINEERING}\\
\vspace{0.1in}
\textbf{MS ENGINEERING COLLEGE}\\
{\small NAAC accredited Approved by AICTE, New Delhi, Affiliated to VTU, Belagavi, Navarathna
Agrahara, Off International Airport Road, Bengaluru -562110}\\
\vspace{0.1in}
{\small 2023-2024}\\
\end{center} % Ending the center environment
\end{titlepage} % Ending the title page environment
\end{document}