0% found this document useful (0 votes)
30 views4 pages

Latex Lab Experiment 4

The document provides a LaTeX script to create a Certificate Page for a report from Visvesvaraya Technological University. It includes placeholders for user entry such as student name, university seat number, project title, and signatures of the guide and head of the department. The script is formatted for A4 paper and includes a university logo.

Uploaded by

postbox4203a
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)
30 views4 pages

Latex Lab Experiment 4

The document provides a LaTeX script to create a Certificate Page for a report from Visvesvaraya Technological University. It includes placeholders for user entry such as student name, university seat number, project title, and signatures of the guide and head of the department. The script is formatted for A4 paper and includes a university logo.

Uploaded by

postbox4203a
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
You are on page 1/ 4

Program 4

Develop a LaTeX script to create the Certificate Page of the Report [Use
suitable commands to leave the blank spaces for user entry]

Code:
\documentclass[12pt, a4paper]{report}
\usepackage{graphicx}
\usepackage{geometry}
\geometry{a4paper, total={170mm, 257mm}, left=20mm, right=20mm,
top=20mm, bottom=20mm}
\thispagestyle{empty}
\begin{document}
\begin{titlepage}
\begin{center}
\textbf{{\large VISVESVARAYA TECHNOLOGICAL
UNIVERSITY}}\\
{\normalsize Jnana Sangama, Belgaum-590018}\\
\vspace{0.3in}
\includegraphics[scale=0.45]{vtulogo.jpg}\\
\vspace{0.3in}
\textbf{CERTIFICATE}\\
\vspace{0.3in}
This is to certify that \\
\vspace{0.2in}
Student Name \\
\underline{\hspace{10cm}}\\
\vspace{0.2in}
bearing University Seat Number \\
\vspace{0.2in}
Student USN\\
\underline{\hspace{10cm}}\\
\vspace{0.2in}
has satisfactorily completed the project work entitled \\
\vspace{0.2in}
LaTeX Program 4\\
\underline{\hspace{10cm}}\\
\vspace{0.2in}
towards the partial fulfillment of the requirements for the award
of the degree of\\
\vspace{0.2in}
\textbf{BACHELOR OF ENGINEERING\\IN\\COMPUTER
SCIENCE AND ENGINEERING}\\
\vspace{0.3in}
\begin{tabular}{c@{\hskip 2in}c}
\textbf{Guide} & \textbf{Head of the Department} \\
\underline{\hspace{6cm}} & \underline{\hspace{6cm}} \\
\vspace{0.1in}
\textbf{(Mrs. M.Ranjani Devi)} & \textbf{(Dr. Krishna Kumar P R)} \\
\vspace{0.1in}
\textbf{(Assistant Prof.)} & \textbf{(Head of
Department)} \\
\textbf{(Department of CSE)} & \textbf{(Department of
CSE)} \\
\vspace{0.15in}
\end{tabular}
\vspace{0.1in}
\textbf{S.E.A COLLEGE OF ENGINEERING AND TECHNOLOGY}\\
\vspace{0.1in}
\textbf{KR PURAM, BANGALORE}\\
\vspace{0.1in}
\textbf{FEB 2025} % Replace with current month and year
\end{center}
\end{titlepage}
\end{document}
Output:

You might also like