SlideShare a Scribd company logo
Overleaf and LATEX Sections and Subsections Inserting Figures Inserting Tables Math Mode Math Mode Page Numbering and S
Manuscript Preparation using LATEX
A Cloud Based Approach(Overleaf)
Dr. Ramchandra Mangrulkar
Associate Professor, Department of Computer Engineering,
DJSCE Mumbai.
ramchandra.mangrulkar@djsce.ac.in
October 10, 2020
Dr. Ramchandra Mangrulkar Associate Professor, Department of Computer Engineering, DJSCE Mumbai. ramchandra.mangrulkar@
Manuscript Preparation using LATEX
Overleaf and LATEX Sections and Subsections Inserting Figures Inserting Tables Math Mode Math Mode Page Numbering and S
Outline of presentation
1 Overleaf and LATEX
2 Sections and Subsections
3 Inserting Figures
4 Inserting Tables
5 Math Mode
6 Math Mode
7 Page Numbering and Style
8 Bullets
Dr. Ramchandra Mangrulkar Associate Professor, Department of Computer Engineering, DJSCE Mumbai. ramchandra.mangrulkar@
Manuscript Preparation using LATEX
Overleaf and LATEX Sections and Subsections Inserting Figures Inserting Tables Math Mode Math Mode Page Numbering and S
What is Overleaf?
Online resource for creating and maintaining LATEX documents with
lots of cool features.
Real-time updates for document editor
Dropbox capabilities
Collaboration
Github compatibility (new)
Dr. Ramchandra Mangrulkar Associate Professor, Department of Computer Engineering, DJSCE Mumbai. ramchandra.mangrulkar@
Manuscript Preparation using LATEX
Overleaf and LATEX Sections and Subsections Inserting Figures Inserting Tables Math Mode Math Mode Page Numbering and S
Why Use Overleaf?
Organized and user-friendly.
Microsoft Word is easier, so it’s better, right?
No.
Microsoft Word Version (very lame)
lim [1 +
a
n
+ o(n 1
)]n
= ea
LATEX Version (very awesome!)
lim
n3I
"
1 +
a
n
+ o

n 1

#n
= ea
Dr. Ramchandra Mangrulkar Associate Professor, Department of Computer Engineering, DJSCE Mumbai. ramchandra.mangrulkar@
Manuscript Preparation using LATEX
Overleaf and LATEX Sections and Subsections Inserting Figures Inserting Tables Math Mode Math Mode Page Numbering and S
How to Use Overleaf
Find a template you like ! “Open a Copy”/“Rename”
Dr. Ramchandra Mangrulkar Associate Professor, Department of Computer Engineering, DJSCE Mumbai. ramchandra.mangrulkar@
Manuscript Preparation using LATEX
Overleaf and LATEX Sections and Subsections Inserting Figures Inserting Tables Math Mode Math Mode Page Numbering and S
Advantages and Disadvantages of LATEX
ADVANTAGES
Fastest Delivery
Reduced Proof Reading.
Shorter Publication Time.
Reliability.
DISADVANTAGES
Processing Burden
Investment in Learning
Dr. Ramchandra Mangrulkar Associate Professor, Department of Computer Engineering, DJSCE Mumbai. ramchandra.mangrulkar@
Manuscript Preparation using LATEX
Overleaf and LATEX Sections and Subsections Inserting Figures Inserting Tables Math Mode Math Mode Page Numbering and S
Example 2
Dr. Ramchandra Mangrulkar 1 Dr. Mangesh Ghonge 2
1 D.J. Sanghvi College of Engineering, 2 Sandip Institute Nashik
1ramchandra.mangrulkar@djsce.ac.in,
2mangesh.ghonge@gmail.com
Dr. Ramchandra Mangrulkar Associate Professor, Department of Computer Engineering, DJSCE Mumbai. ramchandra.mangrulkar@
Manuscript Preparation using LATEX
Overleaf and LATEX Sections and Subsections Inserting Figures Inserting Tables Math Mode Math Mode Page Numbering and S
Example 3
% to be copied to package section
usepackage{lipsum}
% Till This line section{Introduction}
lipsum[n]
section{Literature Survey}
lipsum[n]
section{Proposed Methodology}
lipsum[n]
section{ Results}
lipsum[n]
Dr. Ramchandra Mangrulkar Associate Professor, Department of Computer Engineering, DJSCE Mumbai. ramchandra.mangrulkar@
Manuscript Preparation using LATEX
Overleaf and LATEX Sections and Subsections Inserting Figures Inserting Tables Math Mode Math Mode Page Numbering and S
Inserting Figure
begin{figure}[t]
centering
includegraphics{tetra0.jpg}
caption{Tetra Devices}
label{f1}
end{figure}
Dr. Ramchandra Mangrulkar Associate Professor, Department of Computer Engineering, DJSCE Mumbai. ramchandra.mangrulkar@
Manuscript Preparation using LATEX
Overleaf and LATEX Sections and Subsections Inserting Figures Inserting Tables Math Mode Math Mode Page Numbering and S
Crossreferencing Figure
% type following line in any section
The figure ref{f1} represents the various tetra devices used for
radio communication.
Dr. Ramchandra Mangrulkar Associate Professor, Department of Computer Engineering, DJSCE Mumbai. ramchandra.mangrulkar@
Manuscript Preparation using LATEX
Overleaf and LATEX Sections and Subsections Inserting Figures Inserting Tables Math Mode Math Mode Page Numbering and S
Table Creation
begin{table }[t]
centering
caption{My First Table}
label {t1 }
begin{tabular}[rrr]
destination next hop  hopcount
D  A  2 
G  B  3
end{tabular }
end {table }
Dr. Ramchandra Mangrulkar Associate Professor, Department of Computer Engineering, DJSCE Mumbai. ramchandra.mangrulkar@
Manuscript Preparation using LATEX
Overleaf and LATEX Sections and Subsections Inserting Figures Inserting Tables Math Mode Math Mode Page Numbering and S
Crossreferencing Table
% type following line in any section
The table ref{t1} represents the xxxx.
Dr. Ramchandra Mangrulkar Associate Professor, Department of Computer Engineering, DJSCE Mumbai. ramchandra.mangrulkar@
Manuscript Preparation using LATEX
Overleaf and LATEX Sections and Subsections Inserting Figures Inserting Tables Math Mode Math Mode Page Numbering and S
Merging of rows in Table
begin{table }[t]
centering
caption{My First Table}
label {t1 }
begin{tabular}[c c c c]
hline
First  Second  Third  Fourth 
hline
multicolumn{2 }{c}{Source } multicolumn{2 }{c}{Destination
}
hline multicolumn{2 }{c}{A } multicolumn {2 }{c}{B }
hline
end{tabular}
end{table }
Dr. Ramchandra Mangrulkar Associate Professor, Department of Computer Engineering, DJSCE Mumbai. ramchandra.mangrulkar@
Manuscript Preparation using LATEX
Overleaf and LATEX Sections and Subsections Inserting Figures Inserting Tables Math Mode Math Mode Page Numbering and S
Contd..
output
Dr. Ramchandra Mangrulkar Associate Professor, Department of Computer Engineering, DJSCE Mumbai. ramchandra.mangrulkar@
Manuscript Preparation using LATEX
Overleaf and LATEX Sections and Subsections Inserting Figures Inserting Tables Math Mode Math Mode Page Numbering and S
Spacing: double spacing in doc
Add following command in preamble section
usepackagesetspace
doublespacing
Note: manuscript should be in doublespacing if you want to
submit it to reputed journal such as elsevier willey for review
Dr. Ramchandra Mangrulkar Associate Professor, Department of Computer Engineering, DJSCE Mumbai. ramchandra.mangrulkar@
Manuscript Preparation using LATEX
Overleaf and LATEX Sections and Subsections Inserting Figures Inserting Tables Math Mode Math Mode Page Numbering and S
Math Mode
Sample Code
$(a+b)= (b+a) $
$ a2 = b2 + c2 $
$ a2 = b2 + c2 $
Dr. Ramchandra Mangrulkar Associate Professor, Department of Computer Engineering, DJSCE Mumbai. ramchandra.mangrulkar@
Manuscript Preparation using LATEX
Overleaf and LATEX Sections and Subsections Inserting Figures Inserting Tables Math Mode Math Mode Page Numbering and S
Fontsize
tiny scriptsize footnotesize
small normalsize
large Large
LARGE huge
Huge
Dr. Ramchandra Mangrulkar Associate Professor, Department of Computer Engineering, DJSCE Mumbai. ramchandra.mangrulkar@
Manuscript Preparation using LATEX
Overleaf and LATEX Sections and Subsections Inserting Figures Inserting Tables Math Mode Math Mode Page Numbering and S
Page Numbering
Add these lines below maketitle
Various Styles
thispagestyle{empty}
newpage
pagenumbering{arabic}
Replace above pagenumbering command by
pagenumbering{Roman}for I,II,III,IV
or
pagenumbering{roman}for I,ii,iii,iv
Dr. Ramchandra Mangrulkar Associate Professor, Department of Computer Engineering, DJSCE Mumbai. ramchandra.mangrulkar@
Manuscript Preparation using LATEX
Overleaf and LATEX Sections and Subsections Inserting Figures Inserting Tables Math Mode Math Mode Page Numbering and S
Page Style
pagestyle{plainemptyheadingsmyheadings}
plain: No headings, Page no. at centre and bottom
empty: Neither page no. nor headings
headings:provide page no. and headings from current section
heading on particular page
myheadings: provide page no. and custom heading
{markboth}
thispagestyle{empty}: viz. for front page,certifcate
Dr. Ramchandra Mangrulkar Associate Professor, Department of Computer Engineering, DJSCE Mumbai. ramchandra.mangrulkar@
Manuscript Preparation using LATEX
Overleaf and LATEX Sections and Subsections Inserting Figures Inserting Tables Math Mode Math Mode Page Numbering and S
Example lab5.tex
Various Styles
Try these lines below lab5
thispagestyle{empty}
newpage
pagestyle{myheadings}
markboth{}{R.S.Mangrulkar and Dr. Amol Porganwar }
markright{Session 2013-14}
Dr. Ramchandra Mangrulkar Associate Professor, Department of Computer Engineering, DJSCE Mumbai. ramchandra.mangrulkar@
Manuscript Preparation using LATEX
Overleaf and LATEX Sections and Subsections Inserting Figures Inserting Tables Math Mode Math Mode Page Numbering and S
Important Packages
write following commands below documentclass
usepackage{amsmath}
usepackage{graphicx}
usepackage{amssymb}
OR
usepackage{amsmath,graphicx,amssymb}
Dr. Ramchandra Mangrulkar Associate Professor, Department of Computer Engineering, DJSCE Mumbai. ramchandra.mangrulkar@
Manuscript Preparation using LATEX
Overleaf and LATEX Sections and Subsections Inserting Figures Inserting Tables Math Mode Math Mode Page Numbering and S
Matrices
$ begin{matrix}
x  y 
p  q end{matrix}
$ 
$ begin{vmatrix}
x  y 
p  q end{vmatrix}
$ 
output
Dr. Ramchandra Mangrulkar Associate Professor, Department of Computer Engineering, DJSCE Mumbai. ramchandra.mangrulkar@
Manuscript Preparation using LATEX
Overleaf and LATEX Sections and Subsections Inserting Figures Inserting Tables Math Mode Math Mode Page Numbering and S
Description
begin{description}
item[CS]CS Computer Science
item[EXTC] Electronics and comm
item[EXPO]Electronics and Power
end{description}
output
Dr. Ramchandra Mangrulkar Associate Professor, Department of Computer Engineering, DJSCE Mumbai. ramchandra.mangrulkar@
Manuscript Preparation using LATEX
Overleaf and LATEX Sections and Subsections Inserting Figures Inserting Tables Math Mode Math Mode Page Numbering and S
Add these lines below maketitle
thispagestyle{empty}
pagenumbering{Roman}
newpage
tableofcontents
newpage
listoffigures
newpage
listoftables
newpage
pagenumbering{arabic}
Dr. Ramchandra Mangrulkar Associate Professor, Department of Computer Engineering, DJSCE Mumbai. ramchandra.mangrulkar@
Manuscript Preparation using LATEX
Overleaf and LATEX Sections and Subsections Inserting Figures Inserting Tables Math Mode Math Mode Page Numbering and S
Bibliographic Databases
Bibliographic database is a database in which all the useful
bibliographic entries can be stored.
The information about the various publications is stored in
one or more files with the extension .bib.
For each publication, there is a key that identifies it and which
may be used in the text document to refer to it. And this is
available for all documents with a list of reference in the field.
Dr. Ramchandra Mangrulkar Associate Professor, Department of Computer Engineering, DJSCE Mumbai. ramchandra.mangrulkar@
Manuscript Preparation using LATEX
Overleaf and LATEX Sections and Subsections Inserting Figures Inserting Tables Math Mode Math Mode Page Numbering and S
Contd..
Insert these lines above end{document}
newpage
bibliographystyle{plain/alpha/unsrt/abbrv/acm }
bibliography{biblio}end{document}
Dr. Ramchandra Mangrulkar Associate Professor, Department of Computer Engineering, DJSCE Mumbai. ramchandra.mangrulkar@
Manuscript Preparation using LATEX
Overleaf and LATEX Sections and Subsections Inserting Figures Inserting Tables Math Mode Math Mode Page Numbering and S
Contd..
plain/unsrt/alpha/abbrv/acm
plain Standard BIBTEX style. Entries sorted alphabetically
with numeric labels.
unsrt Standard BIBTEX style. Similar to plain, but entries
are printed in order of citation, rather than sorted. Numeric
labels are used.
alpha Standard BIBTEX style. Similar to plain, but the labels
of the entries are formed from the author’s name and the year
of publication.
abbrv Standard BIBTEX style. Similar to plain, but entries
are more compact, since first names, month, and journal
names are abbreviated.
acm Alternative BIBTEX style, used for the journals of the
Association for Computing Machinery. It has the author name
(surname and first name) in small caps and numbers as labels.
Dr. Ramchandra Mangrulkar Associate Professor, Department of Computer Engineering, DJSCE Mumbai. ramchandra.mangrulkar@
Manuscript Preparation using LATEX
Overleaf and LATEX Sections and Subsections Inserting Figures Inserting Tables Math Mode Math Mode Page Numbering and S
contd...
Dr. Ramchandra Mangrulkar Associate Professor, Department of Computer Engineering, DJSCE Mumbai. ramchandra.mangrulkar@
Manuscript Preparation using LATEX
Overleaf and LATEX Sections and Subsections Inserting Figures Inserting Tables Math Mode Math Mode Page Numbering and S
contd...
Dr. Ramchandra Mangrulkar Associate Professor, Department of Computer Engineering, DJSCE Mumbai. ramchandra.mangrulkar@
Manuscript Preparation using LATEX
Overleaf and LATEX Sections and Subsections Inserting Figures Inserting Tables Math Mode Math Mode Page Numbering and S
contd...
Create file as biblio.bib using file new option of editor
@ARTICLE {f0,
AUTHOR=”R.S.Mangrulkar and Y. Gurav ”,
TITLE=”Research Methodology : A Practical Review”,
JOURNAL=”Advanced Computing”,
YEAR=”2012”,
PAGES=”201-210”,
VOLUME=”10” }
Dr. Ramchandra Mangrulkar Associate Professor, Department of Computer Engineering, DJSCE Mumbai. ramchandra.mangrulkar@
Manuscript Preparation using LATEX
Overleaf and LATEX Sections and Subsections Inserting Figures Inserting Tables Math Mode Math Mode Page Numbering and S
Contd..
Types of Documents BibTex can handle :
ARTICLE
BOOK
BOOKLET
INBOOK
INCOLLECTION
INPROCEEDINGS
MANUAL
MISC
PHDTHESIS
PROCEEDINGS
TECHREPORT
UNPUBLISHEDDr. Ramchandra Mangrulkar Associate Professor, Department of Computer Engineering, DJSCE Mumbai. ramchandra.mangrulkar@
Manuscript Preparation using LATEX
Overleaf and LATEX Sections and Subsections Inserting Figures Inserting Tables Math Mode Math Mode Page Numbering and S
Contd..
@ARTICLE {f1,
AUTHOR=”R.S.Mangrulkar Dr. Mohammad Atique”,
TITLE=” Routing Protocols for Delay Tolerant Network: A Survey
and Comparison”,
JOURNAL=” In IEEE Proceeding ”,
YEAR=”2010”,
PAGES=”21-27”,
VOLUME=”1” }
Dr. Ramchandra Mangrulkar Associate Professor, Department of Computer Engineering, DJSCE Mumbai. ramchandra.mangrulkar@
Manuscript Preparation using LATEX
Overleaf and LATEX Sections and Subsections Inserting Figures Inserting Tables Math Mode Math Mode Page Numbering and S
Contd....
Each Document type can have the following entries:
address
author
booktitle
chapter
crossref
edition
editor
howpublished
institution
journal
key
languag
month
note
Dr. Ramchandra Mangrulkar Associate Professor, Department of Computer Engineering, DJSCE Mumbai. ramchandra.mangrulkar@
Manuscript Preparation using LATEX
Overleaf and LATEX Sections and Subsections Inserting Figures Inserting Tables Math Mode Math Mode Page Numbering and S
Contd...
pages
publisher
school
series
title
type=”Ph.D. dissertation”
volume
year
Dr. Ramchandra Mangrulkar Associate Professor, Department of Computer Engineering, DJSCE Mumbai. ramchandra.mangrulkar@
Manuscript Preparation using LATEX
Overleaf and LATEX Sections and Subsections Inserting Figures Inserting Tables Math Mode Math Mode Page Numbering and S
Thank you...
Lets Promote use of Latex for Research Writing
Feedback: https:
//docs.google.com/forms/d/e/1FAIpQLSdpMJnqUiwBdDFvxzhk6PfPa1ew4FSqUpxE_oynmFpa8DWwEg/viewform
Contact:
Dr. Ramchandra Mangrulkar
Associate Professor
Department of Computer Engineering
D.J. Sanghvi College of Engineering, Vile Parle (W)
Mumbai
Email: ramchandra.mangrulkar@djsce.ac.in,
“A Journey with Happiness..Not for Happiness ”
Dr. Ramchandra Mangrulkar Associate Professor, Department of Computer Engineering, DJSCE Mumbai. ramchandra.mangrulkar@
Manuscript Preparation using LATEX
Overleaf and LATEX Sections and Subsections Inserting Figures Inserting Tables Math Mode Math Mode Page Numbering and S
Assignment : IEEE Paper Format
Dr. Ramchandra Mangrulkar Associate Professor, Department of Computer Engineering, DJSCE Mumbai. ramchandra.mangrulkar@
Manuscript Preparation using LATEX
Overleaf and LATEX Sections and Subsections Inserting Figures Inserting Tables Math Mode Math Mode Page Numbering and S
IEEE Paper Format
Download IEEEtran Folder from net
Right now open MY IEEEPaper Folder
Class file IEEEtran.cls IEEE Class File
Open My IEEE Paper.tex
Read this line by line and perform changes as per your need
Dr. Ramchandra Mangrulkar Associate Professor, Department of Computer Engineering, DJSCE Mumbai. ramchandra.mangrulkar@
Manuscript Preparation using LATEX
Overleaf and LATEX Sections and Subsections Inserting Figures Inserting Tables Math Mode Math Mode Page Numbering and S
My IEEE Paper.tex
documentclass[conference]{IEEEtran}
usepackage{cite}
usepackage[dvips]{graphicx}
bibliographystyle{plain}
begin{document}
title{PERFORMANCE TRADEOFFS BETWEEN DELAY
TOLERANT ROUTING STRATEGIES: MAXPROP AND
PROPHET}
author {
IEEEauthorblockN {R.S.Mangrulkar}
IEEEauthorblockA{Research Scholar,P.G. Department of
Computer Science,
Sant Gadge Baba Amravati University,
Amravati, Maharashtra-442001, India ,
Associate Professor, B.D.C.E Sevagram.
Dr. Ramchandra Mangrulkar Associate Professor, Department of Computer Engineering, DJSCE Mumbai. ramchandra.mangrulkar@
Manuscript Preparation using LATEX
Overleaf and LATEX Sections and Subsections Inserting Figures Inserting Tables Math Mode Math Mode Page Numbering and S
Contd..
and
IEEEauthorblockN {Dr. Mohammad Atique}
IEEEauthorblockA{Associate Professor,P.G. Department of
Computer Science,
Sant Gadge Baba Amravati University,
Amravati, Maharashtra-442001, India.
Email-mohd.atique@gmail.com 
}}
Dr. Ramchandra Mangrulkar Associate Professor, Department of Computer Engineering, DJSCE Mumbai. ramchandra.mangrulkar@
Manuscript Preparation using LATEX
Overleaf and LATEX Sections and Subsections Inserting Figures Inserting Tables Math Mode Math Mode Page Numbering and S
Contd...
begin{abstract}
Basic moto of the workshop is to make researchers aware about
the LaTex and its capability.
end{abstract}
section{Introduction}
Most of the journals reject papers because of the reason that
researchers are not using Latex
section{Simulations}label{Sim}
subsection{Simulation Setup}
subsection{Simulation Parameters}
section{Performance Evaluation}
section{Conclusion}
Dr. Ramchandra Mangrulkar Associate Professor, Department of Computer Engineering, DJSCE Mumbai. ramchandra.mangrulkar@
Manuscript Preparation using LATEX
Overleaf and LATEX Sections and Subsections Inserting Figures Inserting Tables Math Mode Math Mode Page Numbering and S
Contd..
begin{thebibliography}{99}
bibitem{p1}Akadet Mathurapoj, Chotipat
Pornavalai,emph{”Fuzz-Spray: Efficient Routing in Delay
Tolerant ad-hoc network based on Fuzzy Mechanism,”}in
Proceeding of FUZZ-IEEE 2009, pp. 104-109,2009.
bibitem{p2}R.S.Mangrulkar and Dr. Mohammad Atique
,emph{” Routing Protocols for Delay Tolerant Network: Survey
and Comparison ”,}in proceeding of IEEE Communication Control
and Computing Technologies (ICCCCT).
end{thebibliography}
end{document}
Dr. Ramchandra Mangrulkar Associate Professor, Department of Computer Engineering, DJSCE Mumbai. ramchandra.mangrulkar@
Manuscript Preparation using LATEX

More Related Content

PDF
3691 major or_minor_project_report_guidelines_and_formats
DOCX
Database system the final assignment for this course is an eight to
PPT
Excel 2003 formulas
PPTX
Elementary Data Analysis with MS Excel_Day-6
DOCX
Create a set of uml and data flow diagrams. details on the proje
PDF
Spreadsheet Package
3691 major or_minor_project_report_guidelines_and_formats
Database system the final assignment for this course is an eight to
Excel 2003 formulas
Elementary Data Analysis with MS Excel_Day-6
Create a set of uml and data flow diagrams. details on the proje
Spreadsheet Package

What's hot (18)

PDF
Spreadsheet text functions
PPTX
PDF
RANDOM TESTS COMBINING MATHEMATICA PACKAGE AND LATEX COMPILER
DOCX
Conduct an analysis and hypothesis test of your choice on the data y
PPT
Spreadhsheets 1
PDF
Latex Notes
PDF
Application of Mathematics in Mechanical Engineering
PPS
Using spreadsheets in the classroom
PDF
Formulas and functions - By Amresh Tiwari
PDF
Ac+2003 paper754
PPTX
Spreadsheets Concepts and Vocab
PPTX
Functions in MS Excel
PPTX
Starting With Microsoft Excel
PDF
20 Unique Uses of Excel Spreadsheets
DOC
S Y D E 462 Conference Summary Template
PPTX
20190310 - SQL Course - JOIN
PPTX
Ms excel ppt
PPT
Math Editing and display using Microsoft Office 2007 System
Spreadsheet text functions
RANDOM TESTS COMBINING MATHEMATICA PACKAGE AND LATEX COMPILER
Conduct an analysis and hypothesis test of your choice on the data y
Spreadhsheets 1
Latex Notes
Application of Mathematics in Mechanical Engineering
Using spreadsheets in the classroom
Formulas and functions - By Amresh Tiwari
Ac+2003 paper754
Spreadsheets Concepts and Vocab
Functions in MS Excel
Starting With Microsoft Excel
20 Unique Uses of Excel Spreadsheets
S Y D E 462 Conference Summary Template
20190310 - SQL Course - JOIN
Ms excel ppt
Math Editing and display using Microsoft Office 2007 System
Ad

Similar to Manuscript Preparation using Latex: A Cloud Based Approach(Overleaf) (20)

PDF
Technical Writing Using LaTeX Manual for 4th CSE VTU
PDF
Typesetting Theses / Reports with LaTeX : Workshop Day 3
PDF
An brief training report on MATLAB software
PDF
Basics of LaTeX
PDF
Programming with Mathcad Prime
PDF
Computer Aided Engineering Design Anupam Saxena Birendra Sahay
PDF
MATLAB_Introduction RS&GIS training geomatics
PPTX
Lecture 1.pptx
PPTX
Brightspace and Math Formulae: Making Friends - 2014 Brightspace Ignite Wisco...
PDF
Intro_LaTeX
PDF
R18B.Tech.CSESyllabus.pdf
PDF
R18B.Tech.CSESyllabus.pdf
PDF
R18B.Tech.CSESyllabus computer science and engineering.pdf
PDF
IT Skill Lab Manual 20CS01P.pdf
PDF
Tutorial on LATEX: A Computer Program for Typesetting Documents
PDF
Numerical Methods in Engineering with MATLAB - Jaan Kiusalaas.pdf
PPTX
Introduction to MATLAB
PDF
Latex Tutorial by Dr. M. C. Hanumantharaju
PDF
La tex basics
Technical Writing Using LaTeX Manual for 4th CSE VTU
Typesetting Theses / Reports with LaTeX : Workshop Day 3
An brief training report on MATLAB software
Basics of LaTeX
Programming with Mathcad Prime
Computer Aided Engineering Design Anupam Saxena Birendra Sahay
MATLAB_Introduction RS&GIS training geomatics
Lecture 1.pptx
Brightspace and Math Formulae: Making Friends - 2014 Brightspace Ignite Wisco...
Intro_LaTeX
R18B.Tech.CSESyllabus.pdf
R18B.Tech.CSESyllabus.pdf
R18B.Tech.CSESyllabus computer science and engineering.pdf
IT Skill Lab Manual 20CS01P.pdf
Tutorial on LATEX: A Computer Program for Typesetting Documents
Numerical Methods in Engineering with MATLAB - Jaan Kiusalaas.pdf
Introduction to MATLAB
Latex Tutorial by Dr. M. C. Hanumantharaju
La tex basics
Ad

More from Dr. Ramchandra Mangrulkar (20)

PDF
Gibbs sampling is a Markov Chain Monte Carlo (MCMC)
PDF
Introduction to Research and Publications Tools.pdf
PDF
Blockchain#2.pdf
PDF
Blockchain#1.pdf
PDF
Blockchain#3.pdf
PDF
Lecture #32: Forensic Duplication
PDF
Lecture #32: Digital Forensics : Evidence Handling, Validation and Reporting
PDF
LEcture #28-#30
PDF
Lecture #31 : Windows Forensics
PDF
Lecture #25 : Oauth 2.0
PDF
Lecture #24 : Cross Site Request Forgery (CSRF)
PDF
Lecture #22: Web Privacy & Security Breach
PDF
Lecture #22 : Web Privacy & Security Breach
PDF
Lecture #21: HTTPS , SSL & TLS
PDF
Lecture #18 - #20: Web Browser and Web Application Security
PDF
Lecture #15: Buffer Overflow Attack (Non Malicious Attack)
PDF
Lecture # 14: Salami and Linearization Attacks
PDF
Lecture #12,#13 : Program and OS Security -Part I
PDF
Lecture #9 : Single Sign on and Federation Identity Management
PDF
Lecture #8: Clark-Wilson & Chinese Wall Model for Multilevel Security
Gibbs sampling is a Markov Chain Monte Carlo (MCMC)
Introduction to Research and Publications Tools.pdf
Blockchain#2.pdf
Blockchain#1.pdf
Blockchain#3.pdf
Lecture #32: Forensic Duplication
Lecture #32: Digital Forensics : Evidence Handling, Validation and Reporting
LEcture #28-#30
Lecture #31 : Windows Forensics
Lecture #25 : Oauth 2.0
Lecture #24 : Cross Site Request Forgery (CSRF)
Lecture #22: Web Privacy & Security Breach
Lecture #22 : Web Privacy & Security Breach
Lecture #21: HTTPS , SSL & TLS
Lecture #18 - #20: Web Browser and Web Application Security
Lecture #15: Buffer Overflow Attack (Non Malicious Attack)
Lecture # 14: Salami and Linearization Attacks
Lecture #12,#13 : Program and OS Security -Part I
Lecture #9 : Single Sign on and Federation Identity Management
Lecture #8: Clark-Wilson & Chinese Wall Model for Multilevel Security

Recently uploaded (20)

PDF
The CXO Playbook 2025 – Future-Ready Strategies for C-Suite Leaders Cerebrai...
PPTX
CH1 Production IntroductoryConcepts.pptx
PDF
Mohammad Mahdi Farshadian CV - Prospective PhD Student 2026
PPTX
OOP with Java - Java Introduction (Basics)
PPT
Mechanical Engineering MATERIALS Selection
PDF
keyrequirementskkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkk
PDF
Embodied AI: Ushering in the Next Era of Intelligent Systems
PDF
Model Code of Practice - Construction Work - 21102022 .pdf
PPTX
Engineering Ethics, Safety and Environment [Autosaved] (1).pptx
PPTX
UNIT 4 Total Quality Management .pptx
DOCX
ASol_English-Language-Literature-Set-1-27-02-2023-converted.docx
PDF
Mitigating Risks through Effective Management for Enhancing Organizational Pe...
PDF
Digital Logic Computer Design lecture notes
PPTX
Sustainable Sites - Green Building Construction
PPTX
IOT PPTs Week 10 Lecture Material.pptx of NPTEL Smart Cities contd
PDF
Operating System & Kernel Study Guide-1 - converted.pdf
PPTX
Recipes for Real Time Voice AI WebRTC, SLMs and Open Source Software.pptx
PDF
SM_6th-Sem__Cse_Internet-of-Things.pdf IOT
PPTX
Internet of Things (IOT) - A guide to understanding
PPTX
web development for engineering and engineering
The CXO Playbook 2025 – Future-Ready Strategies for C-Suite Leaders Cerebrai...
CH1 Production IntroductoryConcepts.pptx
Mohammad Mahdi Farshadian CV - Prospective PhD Student 2026
OOP with Java - Java Introduction (Basics)
Mechanical Engineering MATERIALS Selection
keyrequirementskkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkk
Embodied AI: Ushering in the Next Era of Intelligent Systems
Model Code of Practice - Construction Work - 21102022 .pdf
Engineering Ethics, Safety and Environment [Autosaved] (1).pptx
UNIT 4 Total Quality Management .pptx
ASol_English-Language-Literature-Set-1-27-02-2023-converted.docx
Mitigating Risks through Effective Management for Enhancing Organizational Pe...
Digital Logic Computer Design lecture notes
Sustainable Sites - Green Building Construction
IOT PPTs Week 10 Lecture Material.pptx of NPTEL Smart Cities contd
Operating System & Kernel Study Guide-1 - converted.pdf
Recipes for Real Time Voice AI WebRTC, SLMs and Open Source Software.pptx
SM_6th-Sem__Cse_Internet-of-Things.pdf IOT
Internet of Things (IOT) - A guide to understanding
web development for engineering and engineering

Manuscript Preparation using Latex: A Cloud Based Approach(Overleaf)

  • 1. Overleaf and LATEX Sections and Subsections Inserting Figures Inserting Tables Math Mode Math Mode Page Numbering and S Manuscript Preparation using LATEX A Cloud Based Approach(Overleaf) Dr. Ramchandra Mangrulkar Associate Professor, Department of Computer Engineering, DJSCE Mumbai. ramchandra.mangrulkar@djsce.ac.in October 10, 2020 Dr. Ramchandra Mangrulkar Associate Professor, Department of Computer Engineering, DJSCE Mumbai. ramchandra.mangrulkar@ Manuscript Preparation using LATEX
  • 2. Overleaf and LATEX Sections and Subsections Inserting Figures Inserting Tables Math Mode Math Mode Page Numbering and S Outline of presentation 1 Overleaf and LATEX 2 Sections and Subsections 3 Inserting Figures 4 Inserting Tables 5 Math Mode 6 Math Mode 7 Page Numbering and Style 8 Bullets Dr. Ramchandra Mangrulkar Associate Professor, Department of Computer Engineering, DJSCE Mumbai. ramchandra.mangrulkar@ Manuscript Preparation using LATEX
  • 3. Overleaf and LATEX Sections and Subsections Inserting Figures Inserting Tables Math Mode Math Mode Page Numbering and S What is Overleaf? Online resource for creating and maintaining LATEX documents with lots of cool features. Real-time updates for document editor Dropbox capabilities Collaboration Github compatibility (new) Dr. Ramchandra Mangrulkar Associate Professor, Department of Computer Engineering, DJSCE Mumbai. ramchandra.mangrulkar@ Manuscript Preparation using LATEX
  • 4. Overleaf and LATEX Sections and Subsections Inserting Figures Inserting Tables Math Mode Math Mode Page Numbering and S Why Use Overleaf? Organized and user-friendly. Microsoft Word is easier, so it’s better, right? No. Microsoft Word Version (very lame) lim [1 + a n + o(n 1 )]n = ea LATEX Version (very awesome!) lim n3I " 1 + a n + o n 1 #n = ea Dr. Ramchandra Mangrulkar Associate Professor, Department of Computer Engineering, DJSCE Mumbai. ramchandra.mangrulkar@ Manuscript Preparation using LATEX
  • 5. Overleaf and LATEX Sections and Subsections Inserting Figures Inserting Tables Math Mode Math Mode Page Numbering and S How to Use Overleaf Find a template you like ! “Open a Copy”/“Rename” Dr. Ramchandra Mangrulkar Associate Professor, Department of Computer Engineering, DJSCE Mumbai. ramchandra.mangrulkar@ Manuscript Preparation using LATEX
  • 6. Overleaf and LATEX Sections and Subsections Inserting Figures Inserting Tables Math Mode Math Mode Page Numbering and S Advantages and Disadvantages of LATEX ADVANTAGES Fastest Delivery Reduced Proof Reading. Shorter Publication Time. Reliability. DISADVANTAGES Processing Burden Investment in Learning Dr. Ramchandra Mangrulkar Associate Professor, Department of Computer Engineering, DJSCE Mumbai. ramchandra.mangrulkar@ Manuscript Preparation using LATEX
  • 7. Overleaf and LATEX Sections and Subsections Inserting Figures Inserting Tables Math Mode Math Mode Page Numbering and S Example 2 Dr. Ramchandra Mangrulkar 1 Dr. Mangesh Ghonge 2 1 D.J. Sanghvi College of Engineering, 2 Sandip Institute Nashik 1ramchandra.mangrulkar@djsce.ac.in, 2mangesh.ghonge@gmail.com Dr. Ramchandra Mangrulkar Associate Professor, Department of Computer Engineering, DJSCE Mumbai. ramchandra.mangrulkar@ Manuscript Preparation using LATEX
  • 8. Overleaf and LATEX Sections and Subsections Inserting Figures Inserting Tables Math Mode Math Mode Page Numbering and S Example 3 % to be copied to package section usepackage{lipsum} % Till This line section{Introduction} lipsum[n] section{Literature Survey} lipsum[n] section{Proposed Methodology} lipsum[n] section{ Results} lipsum[n] Dr. Ramchandra Mangrulkar Associate Professor, Department of Computer Engineering, DJSCE Mumbai. ramchandra.mangrulkar@ Manuscript Preparation using LATEX
  • 9. Overleaf and LATEX Sections and Subsections Inserting Figures Inserting Tables Math Mode Math Mode Page Numbering and S Inserting Figure begin{figure}[t] centering includegraphics{tetra0.jpg} caption{Tetra Devices} label{f1} end{figure} Dr. Ramchandra Mangrulkar Associate Professor, Department of Computer Engineering, DJSCE Mumbai. ramchandra.mangrulkar@ Manuscript Preparation using LATEX
  • 10. Overleaf and LATEX Sections and Subsections Inserting Figures Inserting Tables Math Mode Math Mode Page Numbering and S Crossreferencing Figure % type following line in any section The figure ref{f1} represents the various tetra devices used for radio communication. Dr. Ramchandra Mangrulkar Associate Professor, Department of Computer Engineering, DJSCE Mumbai. ramchandra.mangrulkar@ Manuscript Preparation using LATEX
  • 11. Overleaf and LATEX Sections and Subsections Inserting Figures Inserting Tables Math Mode Math Mode Page Numbering and S Table Creation begin{table }[t] centering caption{My First Table} label {t1 } begin{tabular}[rrr] destination next hop hopcount D A 2 G B 3 end{tabular } end {table } Dr. Ramchandra Mangrulkar Associate Professor, Department of Computer Engineering, DJSCE Mumbai. ramchandra.mangrulkar@ Manuscript Preparation using LATEX
  • 12. Overleaf and LATEX Sections and Subsections Inserting Figures Inserting Tables Math Mode Math Mode Page Numbering and S Crossreferencing Table % type following line in any section The table ref{t1} represents the xxxx. Dr. Ramchandra Mangrulkar Associate Professor, Department of Computer Engineering, DJSCE Mumbai. ramchandra.mangrulkar@ Manuscript Preparation using LATEX
  • 13. Overleaf and LATEX Sections and Subsections Inserting Figures Inserting Tables Math Mode Math Mode Page Numbering and S Merging of rows in Table begin{table }[t] centering caption{My First Table} label {t1 } begin{tabular}[c c c c] hline First Second Third Fourth hline multicolumn{2 }{c}{Source } multicolumn{2 }{c}{Destination } hline multicolumn{2 }{c}{A } multicolumn {2 }{c}{B } hline end{tabular} end{table } Dr. Ramchandra Mangrulkar Associate Professor, Department of Computer Engineering, DJSCE Mumbai. ramchandra.mangrulkar@ Manuscript Preparation using LATEX
  • 14. Overleaf and LATEX Sections and Subsections Inserting Figures Inserting Tables Math Mode Math Mode Page Numbering and S Contd.. output Dr. Ramchandra Mangrulkar Associate Professor, Department of Computer Engineering, DJSCE Mumbai. ramchandra.mangrulkar@ Manuscript Preparation using LATEX
  • 15. Overleaf and LATEX Sections and Subsections Inserting Figures Inserting Tables Math Mode Math Mode Page Numbering and S Spacing: double spacing in doc Add following command in preamble section usepackagesetspace doublespacing Note: manuscript should be in doublespacing if you want to submit it to reputed journal such as elsevier willey for review Dr. Ramchandra Mangrulkar Associate Professor, Department of Computer Engineering, DJSCE Mumbai. ramchandra.mangrulkar@ Manuscript Preparation using LATEX
  • 16. Overleaf and LATEX Sections and Subsections Inserting Figures Inserting Tables Math Mode Math Mode Page Numbering and S Math Mode Sample Code $(a+b)= (b+a) $ $ a2 = b2 + c2 $ $ a2 = b2 + c2 $ Dr. Ramchandra Mangrulkar Associate Professor, Department of Computer Engineering, DJSCE Mumbai. ramchandra.mangrulkar@ Manuscript Preparation using LATEX
  • 17. Overleaf and LATEX Sections and Subsections Inserting Figures Inserting Tables Math Mode Math Mode Page Numbering and S Fontsize tiny scriptsize footnotesize small normalsize large Large LARGE huge Huge Dr. Ramchandra Mangrulkar Associate Professor, Department of Computer Engineering, DJSCE Mumbai. ramchandra.mangrulkar@ Manuscript Preparation using LATEX
  • 18. Overleaf and LATEX Sections and Subsections Inserting Figures Inserting Tables Math Mode Math Mode Page Numbering and S Page Numbering Add these lines below maketitle Various Styles thispagestyle{empty} newpage pagenumbering{arabic} Replace above pagenumbering command by pagenumbering{Roman}for I,II,III,IV or pagenumbering{roman}for I,ii,iii,iv Dr. Ramchandra Mangrulkar Associate Professor, Department of Computer Engineering, DJSCE Mumbai. ramchandra.mangrulkar@ Manuscript Preparation using LATEX
  • 19. Overleaf and LATEX Sections and Subsections Inserting Figures Inserting Tables Math Mode Math Mode Page Numbering and S Page Style pagestyle{plainemptyheadingsmyheadings} plain: No headings, Page no. at centre and bottom empty: Neither page no. nor headings headings:provide page no. and headings from current section heading on particular page myheadings: provide page no. and custom heading {markboth} thispagestyle{empty}: viz. for front page,certifcate Dr. Ramchandra Mangrulkar Associate Professor, Department of Computer Engineering, DJSCE Mumbai. ramchandra.mangrulkar@ Manuscript Preparation using LATEX
  • 20. Overleaf and LATEX Sections and Subsections Inserting Figures Inserting Tables Math Mode Math Mode Page Numbering and S Example lab5.tex Various Styles Try these lines below lab5 thispagestyle{empty} newpage pagestyle{myheadings} markboth{}{R.S.Mangrulkar and Dr. Amol Porganwar } markright{Session 2013-14} Dr. Ramchandra Mangrulkar Associate Professor, Department of Computer Engineering, DJSCE Mumbai. ramchandra.mangrulkar@ Manuscript Preparation using LATEX
  • 21. Overleaf and LATEX Sections and Subsections Inserting Figures Inserting Tables Math Mode Math Mode Page Numbering and S Important Packages write following commands below documentclass usepackage{amsmath} usepackage{graphicx} usepackage{amssymb} OR usepackage{amsmath,graphicx,amssymb} Dr. Ramchandra Mangrulkar Associate Professor, Department of Computer Engineering, DJSCE Mumbai. ramchandra.mangrulkar@ Manuscript Preparation using LATEX
  • 22. Overleaf and LATEX Sections and Subsections Inserting Figures Inserting Tables Math Mode Math Mode Page Numbering and S Matrices $ begin{matrix} x y p q end{matrix} $ $ begin{vmatrix} x y p q end{vmatrix} $ output Dr. Ramchandra Mangrulkar Associate Professor, Department of Computer Engineering, DJSCE Mumbai. ramchandra.mangrulkar@ Manuscript Preparation using LATEX
  • 23. Overleaf and LATEX Sections and Subsections Inserting Figures Inserting Tables Math Mode Math Mode Page Numbering and S Description begin{description} item[CS]CS Computer Science item[EXTC] Electronics and comm item[EXPO]Electronics and Power end{description} output Dr. Ramchandra Mangrulkar Associate Professor, Department of Computer Engineering, DJSCE Mumbai. ramchandra.mangrulkar@ Manuscript Preparation using LATEX
  • 24. Overleaf and LATEX Sections and Subsections Inserting Figures Inserting Tables Math Mode Math Mode Page Numbering and S Add these lines below maketitle thispagestyle{empty} pagenumbering{Roman} newpage tableofcontents newpage listoffigures newpage listoftables newpage pagenumbering{arabic} Dr. Ramchandra Mangrulkar Associate Professor, Department of Computer Engineering, DJSCE Mumbai. ramchandra.mangrulkar@ Manuscript Preparation using LATEX
  • 25. Overleaf and LATEX Sections and Subsections Inserting Figures Inserting Tables Math Mode Math Mode Page Numbering and S Bibliographic Databases Bibliographic database is a database in which all the useful bibliographic entries can be stored. The information about the various publications is stored in one or more files with the extension .bib. For each publication, there is a key that identifies it and which may be used in the text document to refer to it. And this is available for all documents with a list of reference in the field. Dr. Ramchandra Mangrulkar Associate Professor, Department of Computer Engineering, DJSCE Mumbai. ramchandra.mangrulkar@ Manuscript Preparation using LATEX
  • 26. Overleaf and LATEX Sections and Subsections Inserting Figures Inserting Tables Math Mode Math Mode Page Numbering and S Contd.. Insert these lines above end{document} newpage bibliographystyle{plain/alpha/unsrt/abbrv/acm } bibliography{biblio}end{document} Dr. Ramchandra Mangrulkar Associate Professor, Department of Computer Engineering, DJSCE Mumbai. ramchandra.mangrulkar@ Manuscript Preparation using LATEX
  • 27. Overleaf and LATEX Sections and Subsections Inserting Figures Inserting Tables Math Mode Math Mode Page Numbering and S Contd.. plain/unsrt/alpha/abbrv/acm plain Standard BIBTEX style. Entries sorted alphabetically with numeric labels. unsrt Standard BIBTEX style. Similar to plain, but entries are printed in order of citation, rather than sorted. Numeric labels are used. alpha Standard BIBTEX style. Similar to plain, but the labels of the entries are formed from the author’s name and the year of publication. abbrv Standard BIBTEX style. Similar to plain, but entries are more compact, since first names, month, and journal names are abbreviated. acm Alternative BIBTEX style, used for the journals of the Association for Computing Machinery. It has the author name (surname and first name) in small caps and numbers as labels. Dr. Ramchandra Mangrulkar Associate Professor, Department of Computer Engineering, DJSCE Mumbai. ramchandra.mangrulkar@ Manuscript Preparation using LATEX
  • 28. Overleaf and LATEX Sections and Subsections Inserting Figures Inserting Tables Math Mode Math Mode Page Numbering and S contd... Dr. Ramchandra Mangrulkar Associate Professor, Department of Computer Engineering, DJSCE Mumbai. ramchandra.mangrulkar@ Manuscript Preparation using LATEX
  • 29. Overleaf and LATEX Sections and Subsections Inserting Figures Inserting Tables Math Mode Math Mode Page Numbering and S contd... Dr. Ramchandra Mangrulkar Associate Professor, Department of Computer Engineering, DJSCE Mumbai. ramchandra.mangrulkar@ Manuscript Preparation using LATEX
  • 30. Overleaf and LATEX Sections and Subsections Inserting Figures Inserting Tables Math Mode Math Mode Page Numbering and S contd... Create file as biblio.bib using file new option of editor @ARTICLE {f0, AUTHOR=”R.S.Mangrulkar and Y. Gurav ”, TITLE=”Research Methodology : A Practical Review”, JOURNAL=”Advanced Computing”, YEAR=”2012”, PAGES=”201-210”, VOLUME=”10” } Dr. Ramchandra Mangrulkar Associate Professor, Department of Computer Engineering, DJSCE Mumbai. ramchandra.mangrulkar@ Manuscript Preparation using LATEX
  • 31. Overleaf and LATEX Sections and Subsections Inserting Figures Inserting Tables Math Mode Math Mode Page Numbering and S Contd.. Types of Documents BibTex can handle : ARTICLE BOOK BOOKLET INBOOK INCOLLECTION INPROCEEDINGS MANUAL MISC PHDTHESIS PROCEEDINGS TECHREPORT UNPUBLISHEDDr. Ramchandra Mangrulkar Associate Professor, Department of Computer Engineering, DJSCE Mumbai. ramchandra.mangrulkar@ Manuscript Preparation using LATEX
  • 32. Overleaf and LATEX Sections and Subsections Inserting Figures Inserting Tables Math Mode Math Mode Page Numbering and S Contd.. @ARTICLE {f1, AUTHOR=”R.S.Mangrulkar Dr. Mohammad Atique”, TITLE=” Routing Protocols for Delay Tolerant Network: A Survey and Comparison”, JOURNAL=” In IEEE Proceeding ”, YEAR=”2010”, PAGES=”21-27”, VOLUME=”1” } Dr. Ramchandra Mangrulkar Associate Professor, Department of Computer Engineering, DJSCE Mumbai. ramchandra.mangrulkar@ Manuscript Preparation using LATEX
  • 33. Overleaf and LATEX Sections and Subsections Inserting Figures Inserting Tables Math Mode Math Mode Page Numbering and S Contd.... Each Document type can have the following entries: address author booktitle chapter crossref edition editor howpublished institution journal key languag month note Dr. Ramchandra Mangrulkar Associate Professor, Department of Computer Engineering, DJSCE Mumbai. ramchandra.mangrulkar@ Manuscript Preparation using LATEX
  • 34. Overleaf and LATEX Sections and Subsections Inserting Figures Inserting Tables Math Mode Math Mode Page Numbering and S Contd... pages publisher school series title type=”Ph.D. dissertation” volume year Dr. Ramchandra Mangrulkar Associate Professor, Department of Computer Engineering, DJSCE Mumbai. ramchandra.mangrulkar@ Manuscript Preparation using LATEX
  • 35. Overleaf and LATEX Sections and Subsections Inserting Figures Inserting Tables Math Mode Math Mode Page Numbering and S Thank you... Lets Promote use of Latex for Research Writing Feedback: https: //docs.google.com/forms/d/e/1FAIpQLSdpMJnqUiwBdDFvxzhk6PfPa1ew4FSqUpxE_oynmFpa8DWwEg/viewform Contact: Dr. Ramchandra Mangrulkar Associate Professor Department of Computer Engineering D.J. Sanghvi College of Engineering, Vile Parle (W) Mumbai Email: ramchandra.mangrulkar@djsce.ac.in, “A Journey with Happiness..Not for Happiness ” Dr. Ramchandra Mangrulkar Associate Professor, Department of Computer Engineering, DJSCE Mumbai. ramchandra.mangrulkar@ Manuscript Preparation using LATEX
  • 36. Overleaf and LATEX Sections and Subsections Inserting Figures Inserting Tables Math Mode Math Mode Page Numbering and S Assignment : IEEE Paper Format Dr. Ramchandra Mangrulkar Associate Professor, Department of Computer Engineering, DJSCE Mumbai. ramchandra.mangrulkar@ Manuscript Preparation using LATEX
  • 37. Overleaf and LATEX Sections and Subsections Inserting Figures Inserting Tables Math Mode Math Mode Page Numbering and S IEEE Paper Format Download IEEEtran Folder from net Right now open MY IEEEPaper Folder Class file IEEEtran.cls IEEE Class File Open My IEEE Paper.tex Read this line by line and perform changes as per your need Dr. Ramchandra Mangrulkar Associate Professor, Department of Computer Engineering, DJSCE Mumbai. ramchandra.mangrulkar@ Manuscript Preparation using LATEX
  • 38. Overleaf and LATEX Sections and Subsections Inserting Figures Inserting Tables Math Mode Math Mode Page Numbering and S My IEEE Paper.tex documentclass[conference]{IEEEtran} usepackage{cite} usepackage[dvips]{graphicx} bibliographystyle{plain} begin{document} title{PERFORMANCE TRADEOFFS BETWEEN DELAY TOLERANT ROUTING STRATEGIES: MAXPROP AND PROPHET} author { IEEEauthorblockN {R.S.Mangrulkar} IEEEauthorblockA{Research Scholar,P.G. Department of Computer Science, Sant Gadge Baba Amravati University, Amravati, Maharashtra-442001, India , Associate Professor, B.D.C.E Sevagram. Dr. Ramchandra Mangrulkar Associate Professor, Department of Computer Engineering, DJSCE Mumbai. ramchandra.mangrulkar@ Manuscript Preparation using LATEX
  • 39. Overleaf and LATEX Sections and Subsections Inserting Figures Inserting Tables Math Mode Math Mode Page Numbering and S Contd.. and IEEEauthorblockN {Dr. Mohammad Atique} IEEEauthorblockA{Associate Professor,P.G. Department of Computer Science, Sant Gadge Baba Amravati University, Amravati, Maharashtra-442001, India. Email-mohd.atique@gmail.com }} Dr. Ramchandra Mangrulkar Associate Professor, Department of Computer Engineering, DJSCE Mumbai. ramchandra.mangrulkar@ Manuscript Preparation using LATEX
  • 40. Overleaf and LATEX Sections and Subsections Inserting Figures Inserting Tables Math Mode Math Mode Page Numbering and S Contd... begin{abstract} Basic moto of the workshop is to make researchers aware about the LaTex and its capability. end{abstract} section{Introduction} Most of the journals reject papers because of the reason that researchers are not using Latex section{Simulations}label{Sim} subsection{Simulation Setup} subsection{Simulation Parameters} section{Performance Evaluation} section{Conclusion} Dr. Ramchandra Mangrulkar Associate Professor, Department of Computer Engineering, DJSCE Mumbai. ramchandra.mangrulkar@ Manuscript Preparation using LATEX
  • 41. Overleaf and LATEX Sections and Subsections Inserting Figures Inserting Tables Math Mode Math Mode Page Numbering and S Contd.. begin{thebibliography}{99} bibitem{p1}Akadet Mathurapoj, Chotipat Pornavalai,emph{”Fuzz-Spray: Efficient Routing in Delay Tolerant ad-hoc network based on Fuzzy Mechanism,”}in Proceeding of FUZZ-IEEE 2009, pp. 104-109,2009. bibitem{p2}R.S.Mangrulkar and Dr. Mohammad Atique ,emph{” Routing Protocols for Delay Tolerant Network: Survey and Comparison ”,}in proceeding of IEEE Communication Control and Computing Technologies (ICCCCT). end{thebibliography} end{document} Dr. Ramchandra Mangrulkar Associate Professor, Department of Computer Engineering, DJSCE Mumbai. ramchandra.mangrulkar@ Manuscript Preparation using LATEX