SlideShare a Scribd company logo
1 of 96
“LATEX- EFFECTIVE
DOCUMENT WRITING”
Prof.R.N.Mahind
Prof.R.S.Shinde
Assistant Professor, Computer Science & Engg.
DACOE,Karad.
Email : mahindrupali@gmail.com
rajanishinde13@gmail.com
Contents
 Getting Started with Latex
 Installation ofLatex
 Basic Programming
 Typesetting Mathematical Equations
 Report Writing
GETTING STARTED WITH LATEX
WHY LATEX ?
• Modification in big docs is easy
• Separation of content and style
• Portability
• Open Source
• Page Numbers auto
• Generates list
• Scientific features
Advantages
History
• Donald Knuth – January 10, 1938
• “father "of analysis of algorithms
• Asymptotic Notations
• TeX – (1978)
• Typesetting Mathematics & Scientific
Articles.
• Knowledge of symbols & characters
• LATEX input files - *.tex
COMPILATION PROCESS
ps2pdf
dvips
tex
WHAT IS LATEX ?
• L. B. Lamport -
• Document preparation system
• LaTeX – not editing program
• LATEX is a TEX macro package
• LATEX provides several standard
document classes
• Free s/w distributed under LPPL
• LATEX input files - *.tex
LATEX
COMPILATION PROCESS
*.tex File
tex
*.dvi File *.ps file
*.pdf File *.pdf file
dvips
pdflatex
dvi2pdf
ps2pdf
simple.DVI
simple.ps
simple.pdf
• Install MikTex (Base System)
• Install Editor – TexMaker
• Install GhostScript & GS View
Install MikTex
MIKTEX IS A FREE LATEX COMPILER.
• Typesetting Tool
• Free
• Available – www.miktex.org/ download
• Current Version – MiKTex2.9
• LEd
• Emac
• Vim
• Texmaker
• Kile
• TexStudio
• TexShop
• TeXnicCenter
INSTALLING EDITOR
• TexMaker -
http://www.xm1math.net/texmaker/down
load.html
INSTALLING GHOST SCRIPT & GS VIEW
• Ghost Script – gs813win32
• GS View - gsv46win32
BASIC PROGRAMMING
39
documentclass[. . . ]{ . . . }
begin{document}
.
.
.
.
.
end{document}
40
Environment
documentclass[<option-list>]{<classname>}
41
Article
Report
Book
Letter
Slides
• 10pt| 11pt| 12pt
• letterpaper| legalpaper|
executivepaper| a4paper|
a5paper| b5paper
• oneside| twoside
• onecolumn| twocolumn
FIRST SIMPLE PROGRAM
documentclass[]{letter}
begin{document}
Computer Science and Engineering
end{document}
42
43
Save program with
“Program_name.tex”
Eg. 1.tex
OUTPUT
FONT STYLE
47
Command Font Style Output
textbf{. . . } Bold Text
textit{. . . } Italic Text
texttt{. . .} teletypefont Text
uppercase{...
}
Upper case TEXT
emph{...} Typically Italic Text
textsc Small caps TEXT
3.Tex
FONT SIZE
48
4.tex
49
Font Type
fontfamily{Code}selectfont{TEXT}
5.tex
FONT COLOR
Package -  usepackage{color}
File - color.sty
51
TEXT COLORING
 textcolor{color_name}{text}
6.tex
COLOR BOX FOR TEXT
52
 colorbox{color_name}{Text}
7.tex
BOX BOUNDARY COLOR
53
fcolorbox{Textcolor}{Backcolor}{Text}
8.tex
COLORING PAGE
54
pagecolor{color_name} – page color
9.tex
SOME COLORS
55
UNDERLINE & QUOTES
Underline (text)
u nderline{ Text }
Single Quote (‘text’)-
 lq text  rq
Double Quotes (“text”)
lqlq text rqrq
56
10.tex
SPECIAL SYMBOLS
textbackslash

textless
<
textgreater
>
textquoteright
’
ldots
…
$
$
57
11.tex
58
• New Line

newline
• New Page
newpage
12.tex
PARAGRAPH FORMATTING
 Alignment
centering
flushleft
flushright
 Spacing
package - u sepackage{setspace}
file – setspace.sty
 hspace{ . .. cm}
 vspace{. . . cm}
  r enewcommand{baselinestretch}{1.5}
like line spacing 59
13.tex
LIST
 itemize - unordered lists ( )
 enumerate - for ordered lists (1,2,3,….)
 description - lists where you want to specify your own
label (∆,*)
60
61
itemize
1st Output
2nd Output
14.tex
15.tex
62
enumerate
1st Output
2nd Output
16.tex
17.tex
63
description
18.tex
64
• Package - usepackage{graphicx}
includegraphics[scale= • ]{imageFile_name }
Eg. begin{figure}[h]
includegraphics[width=4cm,height=4cm]{1.p
ng}
end{figure}
Inserting Image
19.tex
[h] - here
[b] - bottom
[t] - top
[p] – separate page
65
Eg. rotatebox{48}{have a nice day}
65
rotatebox{angle}{Text}
Rotating Text
includegraphics[angle=45,width=1in,heig
ht=2in]{1.png}
Rotating image
includegraphics[angle,width,height]
{imageFile_name}
20.tex
REFLECTING TEXT
reflectbox{Text}
Eg. reflectbox{Pune} newline
Eg. reflectbox{231} 231 --- Horizontal
Eg. raisebox{depth}{scalebox{1}[-1]{WOW}}
---Vertical
66
21.tex
67
scalebox{<h scale>}[<v scale>]{<text>}
scalebox{2}[5]{Satara}
resizebox{hlength}{vlength}{some text}
resizebox{20mm}{1.7cm}{some text}
22.tex
INSERTING TABLE
begin{table}
begin{tabular}{|c|c|c|c|}
hline roll no & name & address & phone no 
hline 3245 & Nitin & karad & 1234567 hline
end{tabular}
caption{Student record}
end{table}
68
24.tex
INSERTING MULTI COLUMN TABLE
69
hline roll no & name & multicolumn{2}{c|}{contact
detail}
25.tex
TABLE ALIGNMENT
centering
flushleft
flushright
70
INSERTING MULTI ROW
71
Package - usepackage{multirow}
begin{tabular}{|c|c|c|c|}
hline
1 & 2 & multicolumn{2}{c|}{Course}
hline
multicolumn{1}{|c}{multirow{2}{*}{Powers} } &
multicolumn{1}{ |c| }{504} & 3 & 2  cline{2-4}
multicolumn{1}{ |c }{} &
multicolumn{1}{|c|}{540} & 2 & 3  cline{1-4}
hline
end{tabular}
26.tex
CHANGING SIZE OF TABLE
72
% horizontal size(height) i.e. size of row
renewcommand{arraystretch}{2}
%vertical size(width)i.e. size of column
begin{tabular}{|p{3cm}|p{4cm}|}
hline name & roll 
hline abc & 324 
hline end{tabular}
27.tex
ASSIGNMENT
73
Department Information
Dept. No. of
Student
Result Year
CSE
IT
60
60
80
80
2015
2015
28.tex
74
Package - usepackage{fancyheadings}
File – fancyheading.sty
pagestyle{fancy}
lhead{}
chead{}
rhead{}
lfoot{}
cfoot{}
rfoot{}
Header & Footer
29.tex
75
 pagenumbering{ . . . }
Roman
Arabic
roman
Alph
alph
Page Numbering
MARGIN
 evensidemargin . .pt
 oddsidemargin . . pt
 topmargin . . pt
 headheight . . pt
 paperwidth . . pt
 paperheight . . pt
76
TO SET PAR INDENT
77
setlength{parindent}{28pt}
30.tex
PAGE BORDER
78
Package - u sepackage{fancybox}
 t hisfancyput(-0.6in,-9.8in)
{
 setlength{ unitlength}{1in}
framebox(7.5,10)
}
31.tex
MATHEMATICAL FORMULA
79
Donald Knuth says that his aim in
creating TEX is to beautifullytypeset
technical documents especiallythose containing a
lot of Mathematics. It is verydifficult to
produce complex mathematical formulas
using a word processor.
80
Package -
usepackage{amsmath,amsthm}
Symbols
➢Relation - >, < , =, Π, ∑ ,∩ ……
➢Arrow - ↑, ↔ , ← …..
➢Miscellaneous - √ , ∆, ̸ …..
➢Delimiters - [ , ] ,{ ,} ,|
➢Greek Letters – Ø, ø, α. Β, γ, η …..
Eg. y = mx + c
begin{displaymath}
y = mx + c
end{displaymath}
Eg. y = mx +c --------- (1)
begin{equation}
y = mx + c
end{equation}
81
SIMPLE EQUATION
32.tex
82
a = int_{i}^{j}+frac{x}{ysqrt{z}}
Sigma_{i}^{j}=(a+b)*c
33.tex
83
numberwithin{equation}{section}
begin{equation}
a = int_{i}^{j}+frac{x}{ysqrt{z}}
end{equation}
According to section & Chapter
34.tex
MATRIX
84
• vmatrix –
• Vmatrix –
• bmatrix –
• Bmatrix –
• pmatrix
$begin{vmatrix}
1 & 2 & 3
4 & 5 & 6
7 & 8 & 9
end{vmatrix}$
85
Report Writing
CONTENTS IN REPORT
 Title page
 Declaration
 Abstract
 Index – Content, Table, Figure
 Nomenclature
 Abbreviations
 Chapter
 Section
 Bibliography
CLASSES
Class Chapter Section
Book Yes Yes
Report Yes Yes
Article No Yes
Paper No Yes
88
title{. . . . .}
author{. . . .}
date{ . . . }
maketitle
begin{titlepage}
end{titlepage}
Title page
36.tex
Package - usepackage{titlesec}
File - titlesec.sty
titleformat{chapter}[display]
{normalfonthugebfseriescentering}
{chaptertitlename
thechapter}{20pt}{Huge}
Chapter Alignment
37.tex
Section Alignment
titleformat{section}
{normalfontLargebfseriesflushright}
{thesection}{1em}{}
Section Alignment
38.tex
INDEX
tableofcontents
listoftables
listoffigures
RPackage -
usepackage[english]{babel}
begin{thebibliography}{31}
bibitem{…} author list,paper name
end{thebibliography}
Bibliography
HYPERLINKS
 Table reference
 Figure reference
 Equation reference
Hyperlinks
Package - usepackage{hyperref}[]
It’s not the design of your template, it’s what you do with it that counts
Beyond Bullet Points
PowerPoint Slides
PowerPoint Training
m62 visualcommunications is the global leader in presentation effectiveness, from offices in the UK, USA, and Singapore

More Related Content

What's hot

More on Lex
More on LexMore on Lex
More on Lex
Tech_MX
 

What's hot (20)

Introduction Latex
Introduction LatexIntroduction Latex
Introduction Latex
 
LaTex Tutorial
LaTex TutorialLaTex Tutorial
LaTex Tutorial
 
documents writing with LATEX
documents writing with LATEXdocuments writing with LATEX
documents writing with LATEX
 
Research 101 - Paper Writing with LaTeX
Research 101 - Paper Writing with LaTeXResearch 101 - Paper Writing with LaTeX
Research 101 - Paper Writing with LaTeX
 
Latex Introduction for Beginners
Latex Introduction for BeginnersLatex Introduction for Beginners
Latex Introduction for Beginners
 
Introduction to LaTeX - Workshop Day 1
Introduction to LaTeX - Workshop Day 1Introduction to LaTeX - Workshop Day 1
Introduction to LaTeX - Workshop Day 1
 
Latex slides
Latex slidesLatex slides
Latex slides
 
LaTeX Basics
LaTeX BasicsLaTeX Basics
LaTeX Basics
 
Latex Notes
Latex NotesLatex Notes
Latex Notes
 
Matlab Introduction
Matlab IntroductionMatlab Introduction
Matlab Introduction
 
Advanced latex
Advanced latexAdvanced latex
Advanced latex
 
Matlab Tutorial for Beginners - I
Matlab Tutorial for Beginners - IMatlab Tutorial for Beginners - I
Matlab Tutorial for Beginners - I
 
LaTex tutorial with Texstudio
LaTex tutorial with TexstudioLaTex tutorial with Texstudio
LaTex tutorial with Texstudio
 
Academic writing in LaTeX
Academic writing in LaTeX Academic writing in LaTeX
Academic writing in LaTeX
 
Chain rule
Chain ruleChain rule
Chain rule
 
How to make boxed text with LaTeX
How to make boxed text with LaTeXHow to make boxed text with LaTeX
How to make boxed text with LaTeX
 
LaTeX Cheat Sheet
LaTeX Cheat Sheet LaTeX Cheat Sheet
LaTeX Cheat Sheet
 
Python If Else | If Else Statement In Python | Edureka
Python If Else | If Else Statement In Python | EdurekaPython If Else | If Else Statement In Python | Edureka
Python If Else | If Else Statement In Python | Edureka
 
More on Lex
More on LexMore on Lex
More on Lex
 
Predicates and Quantifiers
Predicates and QuantifiersPredicates and Quantifiers
Predicates and Quantifiers
 

Viewers also liked

Miniproject report receiver
Miniproject report receiverMiniproject report receiver
Miniproject report receiver
GAURAV SINHA
 
Powerpoint Mini Project.Pdf
Powerpoint  Mini Project.PdfPowerpoint  Mini Project.Pdf
Powerpoint Mini Project.Pdf
Sanea
 

Viewers also liked (13)

scientific writing 01 - latex
scientific writing   01 - latexscientific writing   01 - latex
scientific writing 01 - latex
 
LaTeX for beginners
LaTeX for beginnersLaTeX for beginners
LaTeX for beginners
 
Willem-Jan van Elk: De leermiddelenmarkt beweegt...
Willem-Jan van Elk: De leermiddelenmarkt beweegt...Willem-Jan van Elk: De leermiddelenmarkt beweegt...
Willem-Jan van Elk: De leermiddelenmarkt beweegt...
 
English---and LaTeX---Writing Tips
English---and LaTeX---Writing TipsEnglish---and LaTeX---Writing Tips
English---and LaTeX---Writing Tips
 
Latex - Minicurso Básico
Latex - Minicurso BásicoLatex - Minicurso Básico
Latex - Minicurso Básico
 
Miniproject report receiver
Miniproject report receiverMiniproject report receiver
Miniproject report receiver
 
How to use LaTeX and Beamer to prepare presentation for Slideshare
How to use LaTeX and Beamer to prepare presentation for SlideshareHow to use LaTeX and Beamer to prepare presentation for Slideshare
How to use LaTeX and Beamer to prepare presentation for Slideshare
 
ELECTRONICS PROJECT REPORT OF HOME AUTOMATION CUM BUILDING SECUIRITY
ELECTRONICS PROJECT REPORT OF HOME AUTOMATION CUM BUILDING SECUIRITYELECTRONICS PROJECT REPORT OF HOME AUTOMATION CUM BUILDING SECUIRITY
ELECTRONICS PROJECT REPORT OF HOME AUTOMATION CUM BUILDING SECUIRITY
 
Introduction to LaTeX (For Word users)
 Introduction to LaTeX (For Word users) Introduction to LaTeX (For Word users)
Introduction to LaTeX (For Word users)
 
Powerpoint Mini Project.Pdf
Powerpoint  Mini Project.PdfPowerpoint  Mini Project.Pdf
Powerpoint Mini Project.Pdf
 
Steampunk + Latex: Do Steampunk aesthetics influence other alternative lifest...
Steampunk + Latex: Do Steampunk aesthetics influence other alternative lifest...Steampunk + Latex: Do Steampunk aesthetics influence other alternative lifest...
Steampunk + Latex: Do Steampunk aesthetics influence other alternative lifest...
 
Complete-Mini-Project-Report
Complete-Mini-Project-ReportComplete-Mini-Project-Report
Complete-Mini-Project-Report
 
Mini project ppt
Mini project pptMini project ppt
Mini project ppt
 

Similar to Latex for beginner

Introduction to LaTeX - Dumitrescu.ppt
Introduction to LaTeX - Dumitrescu.pptIntroduction to LaTeX - Dumitrescu.ppt
Introduction to LaTeX - Dumitrescu.ppt
rajinooka
 
Introduction to LaTeX - Dumitrescu.ppt
Introduction to LaTeX - Dumitrescu.pptIntroduction to LaTeX - Dumitrescu.ppt
Introduction to LaTeX - Dumitrescu.ppt
TaraLeander
 
Introduction to LaTeX - Dumitrescu (1).ppt
Introduction to LaTeX - Dumitrescu (1).pptIntroduction to LaTeX - Dumitrescu (1).ppt
Introduction to LaTeX - Dumitrescu (1).ppt
Amit Bairwa
 

Similar to Latex for beginner (20)

Latex ppt copy
Latex ppt   copyLatex ppt   copy
Latex ppt copy
 
Introduction to latex by Rouhollah Nabati
Introduction to latex by Rouhollah NabatiIntroduction to latex by Rouhollah Nabati
Introduction to latex by Rouhollah Nabati
 
Latex g.pradeep reddy
Latex g.pradeep reddyLatex g.pradeep reddy
Latex g.pradeep reddy
 
Head first latex
Head first latexHead first latex
Head first latex
 
latex.pptx
latex.pptxlatex.pptx
latex.pptx
 
LaTeX for B.Sc. Mathematics,an introduction
LaTeX for B.Sc. Mathematics,an introductionLaTeX for B.Sc. Mathematics,an introduction
LaTeX for B.Sc. Mathematics,an introduction
 
La tex basics
La tex basicsLa tex basics
La tex basics
 
Latex intro
Latex introLatex intro
Latex intro
 
LaTeX Survival Guide
LaTeX Survival Guide LaTeX Survival Guide
LaTeX Survival Guide
 
Keeping Up! with LaTeX
Keeping Up! with LaTeXKeeping Up! with LaTeX
Keeping Up! with LaTeX
 
Latex - now it is easy!
Latex - now it is easy!Latex - now it is easy!
Latex - now it is easy!
 
Latex for beginners
Latex for beginnersLatex for beginners
Latex for beginners
 
Introduction to LaTeX - Dumitrescu.ppt
Introduction to LaTeX - Dumitrescu.pptIntroduction to LaTeX - Dumitrescu.ppt
Introduction to LaTeX - Dumitrescu.ppt
 
Introduction to LaTeX - Dumitrescu.ppt
Introduction to LaTeX - Dumitrescu.pptIntroduction to LaTeX - Dumitrescu.ppt
Introduction to LaTeX - Dumitrescu.ppt
 
Introduction to LaTeX - Dumitrescu.ppt - It is a slide on the internet explai...
Introduction to LaTeX - Dumitrescu.ppt - It is a slide on the internet explai...Introduction to LaTeX - Dumitrescu.ppt - It is a slide on the internet explai...
Introduction to LaTeX - Dumitrescu.ppt - It is a slide on the internet explai...
 
Introduction to LaTeX - Dumitrescu.ppt
Introduction to LaTeX - Dumitrescu.pptIntroduction to LaTeX - Dumitrescu.ppt
Introduction to LaTeX - Dumitrescu.ppt
 
Introduction to LaTeX - Dumitrescu.ppt
Introduction to LaTeX - Dumitrescu.pptIntroduction to LaTeX - Dumitrescu.ppt
Introduction to LaTeX - Dumitrescu.ppt
 
Introduction to LaTeX - Dumitrescu (1).ppt
Introduction to LaTeX - Dumitrescu (1).pptIntroduction to LaTeX - Dumitrescu (1).ppt
Introduction to LaTeX - Dumitrescu (1).ppt
 
LaTeX for Engineer.ppt
LaTeX for Engineer.pptLaTeX for Engineer.ppt
LaTeX for Engineer.ppt
 
latex document for IT workshop Lab . B.Tech
latex document for IT workshop Lab . B.Techlatex document for IT workshop Lab . B.Tech
latex document for IT workshop Lab . B.Tech
 

Recently uploaded

VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
dharasingh5698
 
result management system report for college project
result management system report for college projectresult management system report for college project
result management system report for college project
Tonystark477637
 
UNIT-V FMM.HYDRAULIC TURBINE - Construction and working
UNIT-V FMM.HYDRAULIC TURBINE - Construction and workingUNIT-V FMM.HYDRAULIC TURBINE - Construction and working
UNIT-V FMM.HYDRAULIC TURBINE - Construction and working
rknatarajan
 
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Christo Ananth
 
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Dr.Costas Sachpazis
 

Recently uploaded (20)

(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINEMANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
 
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCollege Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
 
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
 
result management system report for college project
result management system report for college projectresult management system report for college project
result management system report for college project
 
UNIT-V FMM.HYDRAULIC TURBINE - Construction and working
UNIT-V FMM.HYDRAULIC TURBINE - Construction and workingUNIT-V FMM.HYDRAULIC TURBINE - Construction and working
UNIT-V FMM.HYDRAULIC TURBINE - Construction and working
 
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
 
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service Nashik
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service NashikCall Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service Nashik
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service Nashik
 
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
 
BSides Seattle 2024 - Stopping Ethan Hunt From Taking Your Data.pptx
BSides Seattle 2024 - Stopping Ethan Hunt From Taking Your Data.pptxBSides Seattle 2024 - Stopping Ethan Hunt From Taking Your Data.pptx
BSides Seattle 2024 - Stopping Ethan Hunt From Taking Your Data.pptx
 
Online banking management system project.pdf
Online banking management system project.pdfOnline banking management system project.pdf
Online banking management system project.pdf
 
ONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdf
ONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdfONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdf
ONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdf
 
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
 
Porous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingPorous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writing
 
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
 
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 
The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...
The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...
The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...
 
Extrusion Processes and Their Limitations
Extrusion Processes and Their LimitationsExtrusion Processes and Their Limitations
Extrusion Processes and Their Limitations
 
Coefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxCoefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptx
 
(INDIRA) Call Girl Aurangabad Call Now 8617697112 Aurangabad Escorts 24x7
(INDIRA) Call Girl Aurangabad Call Now 8617697112 Aurangabad Escorts 24x7(INDIRA) Call Girl Aurangabad Call Now 8617697112 Aurangabad Escorts 24x7
(INDIRA) Call Girl Aurangabad Call Now 8617697112 Aurangabad Escorts 24x7
 

Latex for beginner