3.
Develop a LaTeX script to create a simple title page of the VTU project Report [Use
suitable Logos and text formatting]
\documentclass{report}
\usepackage{graphicx}
\usepackage{geometry}
% adjust margins if needed
\geometry{left=1in, right=1in, top=1in, bottom=1in}
\begin{document}
\begin{titlepage}
\begin{center}
{\Huge \textbf {Visvesvaraya Technological University}}\\
\centering Belagavi-560091\\
\vspace{1cm}
\includegraphics[width=0.4\textwidth]{[Link]} % Replace [Link] with the actual VTU
logo file name
\vspace{1cm}
\Huge \centering{A}\\
\Huge \textbf{Project Report}\\
\centering{on}
\vspace{0.5cm}
\Large {Soft Computing}
\vspace{0.5cm}
\Large {Submitted by}
\vspace{0.5cm}
{\large YOUR NAME (1KTCS000)}
\vspace{1.0cm}
{\Large Under the guidance of}
\vspace{0.3cm}
{\Large Prof. Gnaneshwari T R }\\
\centering{Assistant Professor}\\
\centering{Dept of CSE}
% \vfill
{\large \today}
\end{center}
\end{titlepage}
\end{document}