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

Lab Program 1&2

The document contains two LaTeX scripts for creating simple documents. The first script outlines a document with two sections discussing LaTeX, including its features and applications, while the second script presents an abstract summarizing a hand gesture-based virtual mouse system. Both documents include titles, headers, and footers formatted according to specified requirements.

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)
1 views3 pages

Lab Program 1&2

The document contains two LaTeX scripts for creating simple documents. The first script outlines a document with two sections discussing LaTeX, including its features and applications, while the second script presents an abstract summarizing a hand gesture-based virtual mouse system. Both documents include titles, headers, and footers formatted according to specified requirements.

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

Lab Program 1

1.Develop a LaTeX script to create a simple document that consists of 2 sections [Section1,
Section2], and a paragraph with dummy text in each section. And also include header
[title of document] and footer [institute name, page number] in the document.

\documentclass{article}
\usepackage{fancyhdr}

\fancyhead{}
\fancyfoot{}
\fancypagestyle{plain}{
\fancyhead{}
\fancyhead[C]{Technical writing using LATEX}
\fancyfoot{}
\fancyfoot[L]{GMIT,Davanagere}
\fancyfoot[R]{\thepage}
}
\pagestyle{fancy}
\title{ LATEX}

\begin{document}
\maketitle
\section{Introduction to LATEX}
LaTeX is pronounced as 'lah-tech' or 'lay-tech.' which is distributed under the LPPL
(Latex Project Public License). It is based on TEX, a typesetting language designed for science
and math. Both LATEX and TEX contain a variety of font styles, such as serif, typewriter, and
a set of mathematical functions. It is an open-source and powerful document preparation
system. It is high-quality typesetting, which can be used for any publishing. It is often used for
scientific publications and medium to large technical documents. It is not a word processor or
any word document, but it is an efficient way for the publishers and the authors to organize
their materials. It gives a unique appearance to the system. It saves the time for designing as
well as the efforts used for the documents.

\vspace{5mm}
The Latex system handles the layout and formatting of the structures using familiar
concepts of the section, table, figure, chapter, etc. It follows the philosophy of separate
presentation, i.e., separating the writing contents and the visual appearance so that the authors
can focus more on the content rather than its appearance. It is named as the standard for the
communication and publication of the technical or scientific documents.
\section{Features of LATEX}
1.Latex is a markup language and free license software. It includes a set of built-in
commands.\\
2.It is a mode of mathematical and special symbols.\\
3.LaTeX is generally distributed along with plain TEX, i.e., it provides a set of macros for TEX
to interpret. The other macros for TEX are Plain TEX, GNU Texinfo, etc.\newline
4.LaTeX is not compatible with the GNU (General Public License). It is available on most of
the operating systems like UNIX, BSD, Linux, Windows, DOS, etc.

\end{document}
Lab Program 2
2. Develop a LaTeX script to create a document that displays the sample
Abstract/Summary

\documentclass[12pt]{article}
\usepackage{ragged2e}

\title{\textbf{Abstract}}
\date{}
\begin{document}
\maketitle
\thispagestyle{empty}
\justify{The constant advancement of technology has led to new ways for humans to
interact with computers, focusing on improving user experience and productivity. One such
innovation is a system that allows users to control a virtual mouse using hand gestures,
removing the necessity for traditional input tools like a mouse or touchpad. This system utilizes
computer vision and machine learning to accurately identify and understand hand movements
in real-time, allowing individuals to interact with their computers or other devices through
natural gestures. The main features consist of hand tracking, gesture recognition, and cursor
control, allowing for a smooth and intuitive way of interacting.}
\vspace{1mm}
\justify{The hand gesture-based virtual mouse not only provides a more comfortable
and hands free interface but also shows potential for various uses, such as in virtual reality,
gaming, and accessibility aids for those with physical limitations. The system's effectiveness
in terms of precision, speed, and user- friendliness, showcasing its potential as a unique and
creative input approach. This study adds to the continuous evolution of human-computer
interaction methods, paving the way for more natural and immersive computing experiences.}
\justify{\textbf{Keywords:} Human-Computer Interaction (HCI), Gesture Recognition
System,Computer Vision Technology, Virtual Mouse, Hand Gesture Recognition.}

\end{document}

You might also like