SlideShare a Scribd company logo
1 of 41
Download to read offline
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

What's hot

Spreadsheet text functions
Spreadsheet text functionsSpreadsheet text functions
Spreadsheet text functionsAnjan Mahanta
 
RANDOM TESTS COMBINING MATHEMATICA PACKAGE AND LATEX COMPILER
RANDOM TESTS COMBINING MATHEMATICA PACKAGE AND LATEX COMPILERRANDOM TESTS COMBINING MATHEMATICA PACKAGE AND LATEX COMPILER
RANDOM TESTS COMBINING MATHEMATICA PACKAGE AND LATEX COMPILERijseajournal
 
Conduct an analysis and hypothesis test of your choice on the data y
Conduct an analysis and hypothesis test of your choice on the data yConduct an analysis and hypothesis test of your choice on the data y
Conduct an analysis and hypothesis test of your choice on the data ymehek4
 
Application of Mathematics in Mechanical Engineering
Application of Mathematics in Mechanical EngineeringApplication of Mathematics in Mechanical Engineering
Application of Mathematics in Mechanical Engineeringijtsrd
 
Using spreadsheets in the classroom
Using spreadsheets in the classroomUsing spreadsheets in the classroom
Using spreadsheets in the classroomPatricia McCauley
 
Formulas and functions - By Amresh Tiwari
Formulas and functions - By Amresh TiwariFormulas and functions - By Amresh Tiwari
Formulas and functions - By Amresh TiwariAmresh Tiwari
 
Spreadsheets Concepts and Vocab
Spreadsheets Concepts and VocabSpreadsheets Concepts and Vocab
Spreadsheets Concepts and VocabDanny Ambrosio
 
Starting With Microsoft Excel
Starting With Microsoft ExcelStarting With Microsoft Excel
Starting With Microsoft Excelponchoelimon
 
20 Unique Uses of Excel Spreadsheets
20 Unique Uses of Excel Spreadsheets20 Unique Uses of Excel Spreadsheets
20 Unique Uses of Excel SpreadsheetsNick Weisenberger
 
S Y D E 462 Conference Summary Template
S Y D E 462    Conference  Summary  TemplateS Y D E 462    Conference  Summary  Template
S Y D E 462 Conference Summary Templateguest9c68abc
 
Math Editing and display using Microsoft Office 2007 System
Math Editing and display using Microsoft Office 2007 System Math Editing and display using Microsoft Office 2007 System
Math Editing and display using Microsoft Office 2007 System Severus Prime
 

What's hot (18)

Spreadsheet text functions
Spreadsheet text functionsSpreadsheet text functions
Spreadsheet text functions
 
Lect10
Lect10Lect10
Lect10
 
RANDOM TESTS COMBINING MATHEMATICA PACKAGE AND LATEX COMPILER
RANDOM TESTS COMBINING MATHEMATICA PACKAGE AND LATEX COMPILERRANDOM TESTS COMBINING MATHEMATICA PACKAGE AND LATEX COMPILER
RANDOM TESTS COMBINING MATHEMATICA PACKAGE AND LATEX COMPILER
 
Conduct an analysis and hypothesis test of your choice on the data y
Conduct an analysis and hypothesis test of your choice on the data yConduct an analysis and hypothesis test of your choice on the data y
Conduct an analysis and hypothesis test of your choice on the data y
 
Spreadhsheets 1
Spreadhsheets 1Spreadhsheets 1
Spreadhsheets 1
 
Latex Notes
Latex NotesLatex Notes
Latex Notes
 
Application of Mathematics in Mechanical Engineering
Application of Mathematics in Mechanical EngineeringApplication of Mathematics in Mechanical Engineering
Application of Mathematics in Mechanical Engineering
 
Using spreadsheets in the classroom
Using spreadsheets in the classroomUsing spreadsheets in the classroom
Using spreadsheets in the classroom
 
Formulas and functions - By Amresh Tiwari
Formulas and functions - By Amresh TiwariFormulas and functions - By Amresh Tiwari
Formulas and functions - By Amresh Tiwari
 
Ac+2003 paper754
Ac+2003 paper754Ac+2003 paper754
Ac+2003 paper754
 
Spreadsheets Concepts and Vocab
Spreadsheets Concepts and VocabSpreadsheets Concepts and Vocab
Spreadsheets Concepts and Vocab
 
Functions in MS Excel
Functions in MS ExcelFunctions in MS Excel
Functions in MS Excel
 
Starting With Microsoft Excel
Starting With Microsoft ExcelStarting With Microsoft Excel
Starting With Microsoft Excel
 
20 Unique Uses of Excel Spreadsheets
20 Unique Uses of Excel Spreadsheets20 Unique Uses of Excel Spreadsheets
20 Unique Uses of Excel Spreadsheets
 
S Y D E 462 Conference Summary Template
S Y D E 462    Conference  Summary  TemplateS Y D E 462    Conference  Summary  Template
S Y D E 462 Conference Summary Template
 
20190310 - SQL Course - JOIN
20190310 - SQL Course - JOIN20190310 - SQL Course - JOIN
20190310 - SQL Course - JOIN
 
Ms excel ppt
Ms   excel pptMs   excel ppt
Ms excel ppt
 
Math Editing and display using Microsoft Office 2007 System
Math Editing and display using Microsoft Office 2007 System Math Editing and display using Microsoft Office 2007 System
Math Editing and display using Microsoft Office 2007 System
 

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

Typesetting Theses / Reports with LaTeX : Workshop Day 3
Typesetting Theses / Reports with LaTeX : Workshop Day 3Typesetting Theses / Reports with LaTeX : Workshop Day 3
Typesetting Theses / Reports with LaTeX : Workshop Day 3Suddhasheel GHOSH, PhD
 
Brightspace and Math Formulae: Making Friends - 2014 Brightspace Ignite Wisco...
Brightspace and Math Formulae: Making Friends - 2014 Brightspace Ignite Wisco...Brightspace and Math Formulae: Making Friends - 2014 Brightspace Ignite Wisco...
Brightspace and Math Formulae: Making Friends - 2014 Brightspace Ignite Wisco...D2L Barry
 
R18B.Tech.CSESyllabus.pdf
R18B.Tech.CSESyllabus.pdfR18B.Tech.CSESyllabus.pdf
R18B.Tech.CSESyllabus.pdfKANDE ARCHANA
 
IT Skill Lab Manual 20CS01P.pdf
IT Skill Lab Manual 20CS01P.pdfIT Skill Lab Manual 20CS01P.pdf
IT Skill Lab Manual 20CS01P.pdfTHANMAY JS
 
Tutorial on LATEX: A Computer Program for Typesetting Documents
Tutorial on LATEX: A Computer Program for Typesetting DocumentsTutorial on LATEX: A Computer Program for Typesetting Documents
Tutorial on LATEX: A Computer Program for Typesetting DocumentsDr. Mehar Chand
 
Introduction to MATLAB
Introduction to MATLABIntroduction to MATLAB
Introduction to MATLABRavikiran A
 
La tex basics
La tex basicsLa tex basics
La tex basicsawverret
 
Creating Formulae - R.D.Sivakumar
Creating Formulae - R.D.SivakumarCreating Formulae - R.D.Sivakumar
Creating Formulae - R.D.SivakumarSivakumar R D .
 
Report finger print
Report finger printReport finger print
Report finger printEshaan Verma
 
LaTeX_tutorial_Syed_Jan09.ppt
LaTeX_tutorial_Syed_Jan09.pptLaTeX_tutorial_Syed_Jan09.ppt
LaTeX_tutorial_Syed_Jan09.pptMichalis33
 
Introduction to matlab
Introduction to matlabIntroduction to matlab
Introduction to matlabVidhyaSenthil
 

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

Typesetting Theses / Reports with LaTeX : Workshop Day 3
Typesetting Theses / Reports with LaTeX : Workshop Day 3Typesetting Theses / Reports with LaTeX : Workshop Day 3
Typesetting Theses / Reports with LaTeX : Workshop Day 3
 
Basics of LaTeX
Basics of LaTeXBasics of LaTeX
Basics of LaTeX
 
Programming with Mathcad Prime
Programming with Mathcad PrimeProgramming with Mathcad Prime
Programming with Mathcad Prime
 
Lecture 1.pptx
Lecture 1.pptxLecture 1.pptx
Lecture 1.pptx
 
Brightspace and Math Formulae: Making Friends - 2014 Brightspace Ignite Wisco...
Brightspace and Math Formulae: Making Friends - 2014 Brightspace Ignite Wisco...Brightspace and Math Formulae: Making Friends - 2014 Brightspace Ignite Wisco...
Brightspace and Math Formulae: Making Friends - 2014 Brightspace Ignite Wisco...
 
Intro_LaTeX
Intro_LaTeXIntro_LaTeX
Intro_LaTeX
 
R18B.Tech.CSESyllabus.pdf
R18B.Tech.CSESyllabus.pdfR18B.Tech.CSESyllabus.pdf
R18B.Tech.CSESyllabus.pdf
 
R18B.Tech.CSESyllabus.pdf
R18B.Tech.CSESyllabus.pdfR18B.Tech.CSESyllabus.pdf
R18B.Tech.CSESyllabus.pdf
 
IT Skill Lab Manual 20CS01P.pdf
IT Skill Lab Manual 20CS01P.pdfIT Skill Lab Manual 20CS01P.pdf
IT Skill Lab Manual 20CS01P.pdf
 
Tutorial on LATEX: A Computer Program for Typesetting Documents
Tutorial on LATEX: A Computer Program for Typesetting DocumentsTutorial on LATEX: A Computer Program for Typesetting Documents
Tutorial on LATEX: A Computer Program for Typesetting Documents
 
Introduction to MATLAB
Introduction to MATLABIntroduction to MATLAB
Introduction to MATLAB
 
Latex Tutorial by Dr. M. C. Hanumantharaju
Latex Tutorial by Dr. M. C. HanumantharajuLatex Tutorial by Dr. M. C. Hanumantharaju
Latex Tutorial by Dr. M. C. Hanumantharaju
 
Matlab
MatlabMatlab
Matlab
 
La tex basics
La tex basicsLa tex basics
La tex basics
 
Creating Formulae - R.D.Sivakumar
Creating Formulae - R.D.SivakumarCreating Formulae - R.D.Sivakumar
Creating Formulae - R.D.Sivakumar
 
Report finger print
Report finger printReport finger print
Report finger print
 
Technical writing using LaTeX
Technical writing using LaTeXTechnical writing using LaTeX
Technical writing using LaTeX
 
LaTeX_tutorial_Syed_Jan09.ppt
LaTeX_tutorial_Syed_Jan09.pptLaTeX_tutorial_Syed_Jan09.ppt
LaTeX_tutorial_Syed_Jan09.ppt
 
Quick start learn dax basics in 30 minutes
Quick start   learn dax basics in 30 minutesQuick start   learn dax basics in 30 minutes
Quick start learn dax basics in 30 minutes
 
Introduction to matlab
Introduction to matlabIntroduction to matlab
Introduction to matlab
 

More from Dr. Ramchandra Mangrulkar

Lecture #32: Digital Forensics : Evidence Handling, Validation and Reporting
Lecture #32: Digital Forensics : Evidence Handling, Validation and ReportingLecture #32: Digital Forensics : Evidence Handling, Validation and Reporting
Lecture #32: Digital Forensics : Evidence Handling, Validation and ReportingDr. Ramchandra Mangrulkar
 
Lecture #24 : Cross Site Request Forgery (CSRF)
Lecture #24 : Cross Site Request Forgery (CSRF)Lecture #24 : Cross Site Request Forgery (CSRF)
Lecture #24 : Cross Site Request Forgery (CSRF)Dr. Ramchandra Mangrulkar
 
Lecture #18 - #20: Web Browser and Web Application Security
Lecture #18 - #20: Web Browser and Web Application SecurityLecture #18 - #20: Web Browser and Web Application Security
Lecture #18 - #20: Web Browser and Web Application SecurityDr. Ramchandra Mangrulkar
 
Lecture #15: Buffer Overflow Attack (Non Malicious Attack)
Lecture #15: Buffer Overflow Attack (Non Malicious Attack)Lecture #15: Buffer Overflow Attack (Non Malicious Attack)
Lecture #15: Buffer Overflow Attack (Non Malicious Attack)Dr. Ramchandra Mangrulkar
 
Lecture # 14: Salami and Linearization Attacks
Lecture # 14: Salami and Linearization Attacks Lecture # 14: Salami and Linearization Attacks
Lecture # 14: Salami and Linearization Attacks Dr. Ramchandra Mangrulkar
 
Lecture #12,#13 : Program and OS Security -Part I
Lecture #12,#13 : Program and OS Security -Part ILecture #12,#13 : Program and OS Security -Part I
Lecture #12,#13 : Program and OS Security -Part IDr. Ramchandra Mangrulkar
 
Lecture #9 : Single Sign on and Federation Identity Management
Lecture #9 :  Single Sign on and Federation Identity ManagementLecture #9 :  Single Sign on and Federation Identity Management
Lecture #9 : Single Sign on and Federation Identity ManagementDr. Ramchandra Mangrulkar
 
Lecture #8: Clark-Wilson & Chinese Wall Model for Multilevel Security
Lecture #8: Clark-Wilson & Chinese Wall Model for Multilevel SecurityLecture #8: Clark-Wilson & Chinese Wall Model for Multilevel Security
Lecture #8: Clark-Wilson & Chinese Wall Model for Multilevel SecurityDr. Ramchandra Mangrulkar
 
Lecture #7: Bell Lapdula and Biba Model of Multilevel Security
Lecture #7: Bell Lapdula and Biba Model of Multilevel SecurityLecture #7: Bell Lapdula and Biba Model of Multilevel Security
Lecture #7: Bell Lapdula and Biba Model of Multilevel SecurityDr. Ramchandra Mangrulkar
 

More from Dr. Ramchandra Mangrulkar (20)

Blockchain#2.pdf
Blockchain#2.pdfBlockchain#2.pdf
Blockchain#2.pdf
 
Blockchain#1.pdf
Blockchain#1.pdfBlockchain#1.pdf
Blockchain#1.pdf
 
Blockchain#3.pdf
Blockchain#3.pdfBlockchain#3.pdf
Blockchain#3.pdf
 
Lecture #32: Forensic Duplication
Lecture #32: Forensic DuplicationLecture #32: Forensic Duplication
Lecture #32: Forensic Duplication
 
Lecture #32: Digital Forensics : Evidence Handling, Validation and Reporting
Lecture #32: Digital Forensics : Evidence Handling, Validation and ReportingLecture #32: Digital Forensics : Evidence Handling, Validation and Reporting
Lecture #32: Digital Forensics : Evidence Handling, Validation and Reporting
 
LEcture #28-#30
LEcture #28-#30LEcture #28-#30
LEcture #28-#30
 
Lecture #31 : Windows Forensics
Lecture #31 : Windows ForensicsLecture #31 : Windows Forensics
Lecture #31 : Windows Forensics
 
Lecture #25 : Oauth 2.0
Lecture #25 : Oauth 2.0Lecture #25 : Oauth 2.0
Lecture #25 : Oauth 2.0
 
Lecture #24 : Cross Site Request Forgery (CSRF)
Lecture #24 : Cross Site Request Forgery (CSRF)Lecture #24 : Cross Site Request Forgery (CSRF)
Lecture #24 : Cross Site Request Forgery (CSRF)
 
Lecture #22: Web Privacy & Security Breach
Lecture #22: Web Privacy & Security BreachLecture #22: Web Privacy & Security Breach
Lecture #22: Web Privacy & Security Breach
 
Lecture #22 : Web Privacy & Security Breach
Lecture #22 : Web Privacy & Security BreachLecture #22 : Web Privacy & Security Breach
Lecture #22 : Web Privacy & Security Breach
 
Lecture #21: HTTPS , SSL & TLS
Lecture #21: HTTPS , SSL & TLSLecture #21: HTTPS , SSL & TLS
Lecture #21: HTTPS , SSL & TLS
 
Lecture #18 - #20: Web Browser and Web Application Security
Lecture #18 - #20: Web Browser and Web Application SecurityLecture #18 - #20: Web Browser and Web Application Security
Lecture #18 - #20: Web Browser and Web Application Security
 
Lecture #15: Buffer Overflow Attack (Non Malicious Attack)
Lecture #15: Buffer Overflow Attack (Non Malicious Attack)Lecture #15: Buffer Overflow Attack (Non Malicious Attack)
Lecture #15: Buffer Overflow Attack (Non Malicious Attack)
 
Lecture # 14: Salami and Linearization Attacks
Lecture # 14: Salami and Linearization Attacks Lecture # 14: Salami and Linearization Attacks
Lecture # 14: Salami and Linearization Attacks
 
Lecture #12,#13 : Program and OS Security -Part I
Lecture #12,#13 : Program and OS Security -Part ILecture #12,#13 : Program and OS Security -Part I
Lecture #12,#13 : Program and OS Security -Part I
 
Lecture #9 : Single Sign on and Federation Identity Management
Lecture #9 :  Single Sign on and Federation Identity ManagementLecture #9 :  Single Sign on and Federation Identity Management
Lecture #9 : Single Sign on and Federation Identity Management
 
Lecture #8: Clark-Wilson & Chinese Wall Model for Multilevel Security
Lecture #8: Clark-Wilson & Chinese Wall Model for Multilevel SecurityLecture #8: Clark-Wilson & Chinese Wall Model for Multilevel Security
Lecture #8: Clark-Wilson & Chinese Wall Model for Multilevel Security
 
Lecture #6: Multilevel Security Models
Lecture #6: Multilevel Security ModelsLecture #6: Multilevel Security Models
Lecture #6: Multilevel Security Models
 
Lecture #7: Bell Lapdula and Biba Model of Multilevel Security
Lecture #7: Bell Lapdula and Biba Model of Multilevel SecurityLecture #7: Bell Lapdula and Biba Model of Multilevel Security
Lecture #7: Bell Lapdula and Biba Model of Multilevel Security
 

Recently uploaded

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...ranjana rawat
 
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...ranjana rawat
 
KubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghlyKubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghlysanyuktamishra911
 
PVC VS. FIBERGLASS (FRP) GRAVITY SEWER - UNI BELL
PVC VS. FIBERGLASS (FRP) GRAVITY SEWER - UNI BELLPVC VS. FIBERGLASS (FRP) GRAVITY SEWER - UNI BELL
PVC VS. FIBERGLASS (FRP) GRAVITY SEWER - UNI BELLManishPatel169454
 
Unit 1 - Soil Classification and Compaction.pdf
Unit 1 - Soil Classification and Compaction.pdfUnit 1 - Soil Classification and Compaction.pdf
Unit 1 - Soil Classification and Compaction.pdfRagavanV2
 
AKTU Computer Networks notes --- Unit 3.pdf
AKTU Computer Networks notes ---  Unit 3.pdfAKTU Computer Networks notes ---  Unit 3.pdf
AKTU Computer Networks notes --- Unit 3.pdfankushspencer015
 
Thermal Engineering Unit - I & II . ppt
Thermal Engineering  Unit - I & II . pptThermal Engineering  Unit - I & II . ppt
Thermal Engineering Unit - I & II . pptDineshKumar4165
 
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756dollysharma2066
 
Call Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance BookingCall Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance Bookingroncy bisnoi
 
Thermal Engineering -unit - III & IV.ppt
Thermal Engineering -unit - III & IV.pptThermal Engineering -unit - III & IV.ppt
Thermal Engineering -unit - III & IV.pptDineshKumar4165
 
Double rodded leveling 1 pdf activity 01
Double rodded leveling 1 pdf activity 01Double rodded leveling 1 pdf activity 01
Double rodded leveling 1 pdf activity 01KreezheaRecto
 
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.pptxfenichawla
 
Online banking management system project.pdf
Online banking management system project.pdfOnline banking management system project.pdf
Online banking management system project.pdfKamal Acharya
 
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.pdfKamal Acharya
 
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...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)

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...
 
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
 
Roadmap to Membership of RICS - Pathways and Routes
Roadmap to Membership of RICS - Pathways and RoutesRoadmap to Membership of RICS - Pathways and Routes
Roadmap to Membership of RICS - Pathways and Routes
 
KubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghlyKubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghly
 
PVC VS. FIBERGLASS (FRP) GRAVITY SEWER - UNI BELL
PVC VS. FIBERGLASS (FRP) GRAVITY SEWER - UNI BELLPVC VS. FIBERGLASS (FRP) GRAVITY SEWER - UNI BELL
PVC VS. FIBERGLASS (FRP) GRAVITY SEWER - UNI BELL
 
Unit 1 - Soil Classification and Compaction.pdf
Unit 1 - Soil Classification and Compaction.pdfUnit 1 - Soil Classification and Compaction.pdf
Unit 1 - Soil Classification and Compaction.pdf
 
AKTU Computer Networks notes --- Unit 3.pdf
AKTU Computer Networks notes ---  Unit 3.pdfAKTU Computer Networks notes ---  Unit 3.pdf
AKTU Computer Networks notes --- Unit 3.pdf
 
Thermal Engineering Unit - I & II . ppt
Thermal Engineering  Unit - I & II . pptThermal Engineering  Unit - I & II . ppt
Thermal Engineering Unit - I & II . ppt
 
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
 
(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
 
Call Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance BookingCall Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance Booking
 
Thermal Engineering -unit - III & IV.ppt
Thermal Engineering -unit - III & IV.pptThermal Engineering -unit - III & IV.ppt
Thermal Engineering -unit - III & IV.ppt
 
Double rodded leveling 1 pdf activity 01
Double rodded leveling 1 pdf activity 01Double rodded leveling 1 pdf activity 01
Double rodded leveling 1 pdf activity 01
 
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
 
Water Industry Process Automation & Control Monthly - April 2024
Water Industry Process Automation & Control Monthly - April 2024Water Industry Process Automation & Control Monthly - April 2024
Water Industry Process Automation & Control Monthly - April 2024
 
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
 
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
 
Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar ≼🔝 Delhi door step de...
Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar  ≼🔝 Delhi door step de...Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar  ≼🔝 Delhi door step de...
Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar ≼🔝 Delhi door step de...
 
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...
 

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