-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathReportFormat.tex
65 lines (54 loc) · 2.19 KB
/
ReportFormat.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
\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}