0% found this document useful (0 votes)
72 views

L TEX For Students, Engineers, and Scientists: Department of Computer Science and Engineering IIT Bombay

The document introduces LaTeX and teaches how to create a basic LaTeX document. It explains how to define the document class, provide document information like title, author and date. It demonstrates how to specify the document content between \begin{document} and \end{document} tags and use the \maketitle command to display the document information. After learning these basics, readers will be able to create and view their first LaTeX document.
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
72 views

L TEX For Students, Engineers, and Scientists: Department of Computer Science and Engineering IIT Bombay

The document introduces LaTeX and teaches how to create a basic LaTeX document. It explains how to define the document class, provide document information like title, author and date. It demonstrates how to specify the document content between \begin{document} and \end{document} tags and use the \maketitle command to display the document information. After learning these basics, readers will be able to create and view their first LaTeX document.
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 9

You will learn to ... Document class Document Information Document Now, you can ...

LATEX for Students, Engineers, and Scientists

Firuza Karmali
Nagesh Karmali

Department of Computer Science and Engineering


IIT Bombay

Session: Create First LATEX Document

1/9
Firuza, Nagesh IIT Bombay
LATEX for Students, Engineers, and Scientists
You will learn to ... Document class Document Information Document Now, you can ...

You will learn to ...

• Define document class


• Provide document information
• Create your first LATEX document

2/9
Firuza, Nagesh IIT Bombay
LATEX for Students, Engineers, and Scientists
You will learn to ... Document class Document Information Document Now, you can ...

Document class

• Type of document
• Use of appropriate class
• Syntax
\documentclass{article}

3/9
Firuza, Nagesh IIT Bombay
LATEX for Students, Engineers, and Scientists
You will learn to ... Document class Document Information Document Now, you can ...

Document Information

• Title
\title{Creating first document in \LaTeX}
• Author
\author{Firuza}
• Date
\date{\today}

4/9
Firuza, Nagesh IIT Bombay
LATEX for Students, Engineers, and Scientists
You will learn to ... Document class Document Information Document Now, you can ...

Document

• Write content
\begin{document}
content...
\end{document}

L
Demo

5/9
Firuza, Nagesh IIT Bombay
LATEX for Students, Engineers, and Scientists
You will learn to ... Document class Document Information Document Now, you can ...

All in One

\documentclass{article}

\title{Creating first document in \LaTeX}


\author{Firuza}
\date{\today}

\begin{document}
My first document
\end{document}

6/9
Firuza, Nagesh IIT Bombay
LATEX for Students, Engineers, and Scientists
You will learn to ... Document class Document Information Document Now, you can ...

maketitle

\maketitle

7/9
Firuza, Nagesh IIT Bombay
LATEX for Students, Engineers, and Scientists
You will learn to ... Document class Document Information Document Now, you can ...

Now, you can ...

• create a basic LATEX document


• build and view it

8/9
Firuza, Nagesh IIT Bombay
LATEX for Students, Engineers, and Scientists
You will learn to ... Document class Document Information Document Now, you can ...

Thank you
1

9/9
Firuza, Nagesh IIT Bombay
LATEX for Students, Engineers, and Scientists

You might also like