0% found this document useful (0 votes)
5 views3 pages

Lab Program 3

The document is a LaTeX script for creating a title page for a project report at Visvesvaraya Technological University. It includes sections for the university logo, project title, student details, guide information, and college details. The layout is customized for A4 paper with specific margins and formatting.

Uploaded by

manjulabanavar
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
5 views3 pages

Lab Program 3

The document is a LaTeX script for creating a title page for a project report at Visvesvaraya Technological University. It includes sections for the university logo, project title, student details, guide information, and college details. The layout is customized for A4 paper with specific margins and formatting.

Uploaded by

manjulabanavar
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

PROGRAM-3

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}
\usepackage{graphicx}
\usepackage{epstopdf} % 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
\graphicspath{{./images/}}
\begin{document}
\begin{titlepage} % Starting the title page environment
\begin{center} % Centering content
\textbf{{\large VISVESVARAYA TECHNOLOGICAL
UNIVERSITY}}\\
{\normalsize Jnana Sangama, Belgaum-590018}\\
\vspace{0.3in}
\includegraphics[scale=0.1]{vtu-logo.PNG}

\label{fig:vtu-logo}
\vspace{0.3in}
\textbf{A PROJECT REPORT} \\
ON \\
\vspace{0.2in}
\textbf{{\large "Virtual Mouse using Hand Gesture"}}\\
\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{4GM23CS044} & \textbf{xxxxxxxx}\\
\textbf{4GM23CS045} & \textbf{xxxxxxxx}\\
\textbf{4GM23CS082} & \textbf{yyyyyyyy}\\
\textbf{4GM23CS064} & \textbf{yyyyyyyy}\\
\end{tabular}

\vspace{0.2in}
% Guide Details
\textbf{Under the Guidance of}\\
Ms. Ranjitha D S\\
Asst. Professor Department of CSE\\
\vspace{0.2in}
% College Details
\includegraphics[scale=0.5]{gmitlogo.PNG}

\label{fig:gmitlogo.PNG}
\vspace{0.01in}
{\small 2024-2025}\\
\vspace{0.0in}
{\textbf DEPARTMENT OF COMPUTER SCIENCE AND
ENGINEERING}\\
\vspace{0.1in}
{\small Accredited by NBA,New Delhi(Valid upto 30.06.2026)}\\
\vspace{0.01in}
\textbf{GM INSTITUTE OF TECHNOLOGY}\\
\textbf{DAVANAGERE-577006}
\vspace{0.1in}
\end{center} % Ending the center environment
\end{titlepage} % Ending the title page environment
\end{document}

You might also like